From c9bb5ab4b6cde9269518cd2054d9d391498bee67 Mon Sep 17 00:00:00 2001 From: iamrosada Date: Fri, 10 Nov 2023 16:25:01 +0300 Subject: [PATCH 01/36] feat: init project --- test/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/test/index.ts b/test/index.ts index 2fa2fed0..b60ad921 100644 --- a/test/index.ts +++ b/test/index.ts @@ -222,6 +222,7 @@ import Node from "../src/server/services/database/Node"; await data.synchronize(path, true); + //console.log(new Date().toLocaleString("pt-BR")); //console.log(new Date().toLocaleString("pt-BR")); // data.setNode("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/currency_id", "USD- test"); From 03bc9634767da72e1abcba42c5c3f41684e9321f Mon Sep 17 00:00:00 2001 From: Pedro Henrique Feitosa <50965091+pedrofeitosa97@users.noreply.github.com> Date: Fri, 10 Nov 2023 10:34:47 -0300 Subject: [PATCH 02/36] feat: added app.ts test --- test/test.ts | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 test/test.ts diff --git a/test/test.ts b/test/test.ts new file mode 100644 index 00000000..75726074 --- /dev/null +++ b/test/test.ts @@ -0,0 +1,29 @@ +import { MongoClient } from "mongodb"; + +async function main() { + const uri = "mongodb://manager:9Hq91q5oExU9biOZ7yq98I8P1DU1ge@ivipcoin-api.com:4048/?authMechanism=DEFAULT"; + const client = new MongoClient(uri); + + try { + await client.connect(); + const collection = client.db("root").collection("teste"); + + const result = await collection.find().toArray(); + // const result2 = await collection.findOne() + console.log(result); + // console.log(result2) + + if (result) { + // Acessar o campo "path" + // const pathValue = result.path + // Agora você pode ver o valor de "path" + // console.log(pathValue) + } else { + console.log("Documento não encontrado"); + } + } finally { + await client.close(); + } +} + +main().catch(console.error); From a2e1d34fd5d58b744a2aa615213bbda5a596dcab Mon Sep 17 00:00:00 2001 From: iamrosada Date: Fri, 10 Nov 2023 16:40:50 +0300 Subject: [PATCH 03/36] docs: change the way to run the test file, that is called test, inside of folder test --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 16907943..67108abd 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "private": false, "repository": "github:ivipcoin/ivipbase", "scripts": { - "dev": "nodemon ./test", + "dev": "nodemon ./test/test.ts", "build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:packages && echo Done!", "build:clean": "rimraf dist", "build:esm": "tsc -p tsconfig.json && npx tsc-esm-fix ---target='dist/esm'", @@ -42,7 +42,7 @@ "dotenv": "^16.0.3", "express": "^4.17.1", "ivipbase-core": "^1.5.2", - "mongodb": "^5.5.0", + "mongodb": "^5.9.1", "proper-lockfile": "^4.1.2", "socket.io": "^4.5.0", "swagger-jsdoc": "^6.1.0", @@ -79,4 +79,4 @@ "exec": "node --loader ts-node/esm", "ext": "js,ts" } -} +} \ No newline at end of file From 8f554780659b0dbfeef299928c2b06a46364c947 Mon Sep 17 00:00:00 2001 From: iamrosada Date: Fri, 10 Nov 2023 18:01:28 +0300 Subject: [PATCH 04/36] feat: created the first function --- test/test.ts | 64 ++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 57 insertions(+), 7 deletions(-) diff --git a/test/test.ts b/test/test.ts index 75726074..4b922012 100644 --- a/test/test.ts +++ b/test/test.ts @@ -1,5 +1,26 @@ import { MongoClient } from "mongodb"; +interface Balance { + available: string; + symbol: string; + value: number; +} + +interface HistoryEntry { + type: string; + wallet_type: string; +} + +interface WalletData { + dataModificacao: number; + dateValidity: number; + totalValue: number; + currencyType: string; + balancesModificacao: string; + balances: Record; + history: Record; +} + async function main() { const uri = "mongodb://manager:9Hq91q5oExU9biOZ7yq98I8P1DU1ge@ivipcoin-api.com:4048/?authMechanism=DEFAULT"; const client = new MongoClient(uri); @@ -9,15 +30,44 @@ async function main() { const collection = client.db("root").collection("teste"); const result = await collection.find().toArray(); - // const result2 = await collection.findOne() - console.log(result); - // console.log(result2) + + const transformedData: Record = {}; + + result.forEach((entry) => { + const pathComponents = entry.path.split("/"); + const walletId = pathComponents[2]; + const symbol = entry.content.value.symbol; + const available = entry.content.value.available; + const value = entry.content.value.value; + + if (!transformedData[walletId]) { + transformedData[walletId] = { + dataModificacao: entry.content.modified, + dateValidity: entry.content.created, + totalValue: 0, + currencyType: "USD", + balancesModificacao: new Date(entry.content.modified).toISOString(), + balances: {}, + history: {}, + }; + } + + transformedData[walletId].balances[symbol] = { + available, + symbol, + value, + }; + + if (entry.content.history) { + Object.keys(entry.content.history).forEach((historyId) => { + transformedData[walletId].history[historyId] = entry.content.history[historyId]; + }); + } + }); + + console.log(transformedData); if (result) { - // Acessar o campo "path" - // const pathValue = result.path - // Agora você pode ver o valor de "path" - // console.log(pathValue) } else { console.log("Documento não encontrado"); } From ed01067fd8f7633382abc946cdfcb4583571202e Mon Sep 17 00:00:00 2001 From: Pedro Henrique Feitosa <50965091+pedrofeitosa97@users.noreply.github.com> Date: Fri, 10 Nov 2023 16:40:53 -0300 Subject: [PATCH 05/36] Feat: Update Branch --- test/test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test.ts b/test/test.ts index 75726074..d804ee90 100644 --- a/test/test.ts +++ b/test/test.ts @@ -14,6 +14,7 @@ async function main() { // console.log(result2) if (result) { + // console.log(result.path); // Acessar o campo "path" // const pathValue = result.path // Agora você pode ver o valor de "path" From 02ab98ead6bc292945e023314fd1fd3b532dcbd7 Mon Sep 17 00:00:00 2001 From: iamrosada Date: Tue, 14 Nov 2023 00:17:44 +0300 Subject: [PATCH 06/36] feat: done first part of code --- test/test.ts | 159 ++++++++++++++++++++++++++++++++++----------------- 1 file changed, 107 insertions(+), 52 deletions(-) diff --git a/test/test.ts b/test/test.ts index 4b922012..00987137 100644 --- a/test/test.ts +++ b/test/test.ts @@ -6,21 +6,20 @@ interface Balance { value: number; } -interface HistoryEntry { - type: string; - wallet_type: string; +interface BalanceInfo { + [symbol: string]: Balance; } -interface WalletData { - dataModificacao: number; - dateValidity: number; - totalValue: number; - currencyType: string; - balancesModificacao: string; - balances: Record; - history: Record; +interface OriginalBalance { + path: string; + content: { + value: Balance; + }; } +interface RestructuredResult { + balances: BalanceInfo; +} async function main() { const uri = "mongodb://manager:9Hq91q5oExU9biOZ7yq98I8P1DU1ge@ivipcoin-api.com:4048/?authMechanism=DEFAULT"; const client = new MongoClient(uri); @@ -29,48 +28,104 @@ async function main() { await client.connect(); const collection = client.db("root").collection("teste"); - const result = await collection.find().toArray(); - - const transformedData: Record = {}; - - result.forEach((entry) => { - const pathComponents = entry.path.split("/"); - const walletId = pathComponents[2]; - const symbol = entry.content.value.symbol; - const available = entry.content.value.available; - const value = entry.content.value.value; - - if (!transformedData[walletId]) { - transformedData[walletId] = { - dataModificacao: entry.content.modified, - dateValidity: entry.content.created, - totalValue: 0, - currencyType: "USD", - balancesModificacao: new Date(entry.content.modified).toISOString(), - balances: {}, - history: {}, - }; - } - - transformedData[walletId].balances[symbol] = { - available, - symbol, - value, - }; - - if (entry.content.history) { - Object.keys(entry.content.history).forEach((historyId) => { - transformedData[walletId].history[historyId] = entry.content.history[historyId]; - }); - } - }); - - console.log(transformedData); - - if (result) { - } else { - console.log("Documento não encontrado"); + // const result = await collection.find().toArray(); + + const KEY_THAT_MUST_BE_ARRAY = ["costs"]; + + function restructJson(entries) { + const result = {}; + + entries.forEach((entry) => { + const { path, content } = entry; + const parts = path.split("/"); + let current = result; + + for (let i = 0; i < parts.length; i++) { + const part = parts[i]; + + if (i === parts.length - 1) { + let key = part.replace(/__+/g, "_").replace(/^_+|_+$/g, ""); + // console.log({ key }); + const { value } = content; + + if (!current[key]) { + key = key.split("[")[0]; + if (KEY_THAT_MUST_BE_ARRAY.includes(key)) { + current[key] = []; + + if (Object.keys(value).length) { + current[key].push(value); + } + } else { + current[key] = value; + } + } + + // current[key].values.push(value); + } else { + if (!current[part]) { + current[part] = {}; + } + + current = current[part]; + } + } + }); + + return result; } + + const entries = [ + { + path: "ivipcoin-db::__movement_wallet__/000523147298669313/balances/BRL", + content: { + type: 1, + value: { + available: "2528.00700001", + symbol: "BRL", + value: 494.23, + }, + revision: "lnt02q7v0006oohx1hd4856x", + revision_nr: 1, + created: 1697467086139, + modified: 1697467086139, + }, + }, + { + path: "ivipcoin-db::__movement_wallet__/000523147298669313/balances/IVIP", + content: { + type: 1, + value: { + available: "1499269.00000000", + symbol: "IVIP", + value: 158.48, + }, + revision: "lnt02q7v0007oohx37705737", + revision_nr: 1, + created: 1697467086139, + modified: 1697467086139, + }, + }, + { + path: "ivipcoin-db::__movement_wallet__/000523147298669313/balances", + content: { + type: 1, + value: {}, + revision: "lnt02q7v0005oohx3xm7c536", + revision_nr: 1, + created: 1697467086139, + modified: 1697467086139, + }, + }, + ]; + + const resultPathx = restructJson(entries); + console.log(JSON.stringify(resultPathx, null, 2)); + + // if (result) { + // } else { + // console.log("Documento não encontrado"); + // } } finally { await client.close(); } From d409186d20953821d59650de7d845b6a5cff7792 Mon Sep 17 00:00:00 2001 From: iamrosada Date: Fri, 17 Nov 2023 23:48:20 +0300 Subject: [PATCH 07/36] feat: did the second part of our task --- package.json | 1 + test/example.ts | 145 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 146 insertions(+) create mode 100644 test/example.ts diff --git a/package.json b/package.json index 67108abd..6927f9b0 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,7 @@ "repository": "github:ivipcoin/ivipbase", "scripts": { "dev": "nodemon ./test/test.ts", + "dev2": "nodemon ./test/example.ts", "build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:packages && echo Done!", "build:clean": "rimraf dist", "build:esm": "tsc -p tsconfig.json && npx tsc-esm-fix ---target='dist/esm'", diff --git a/test/example.ts b/test/example.ts new file mode 100644 index 00000000..fec41c3f --- /dev/null +++ b/test/example.ts @@ -0,0 +1,145 @@ +type Result = { + path: string; + content: { + type: number; + value: Record | string | number; + revision: string; + revision_nr: number; + created: number; + modified: number; + }; +}; + +function transform(json: Record, prefix: string = ""): Result[] { + const results: Result[] = []; + const nonObjectKeys: Record = {}; + + for (const key in json) { + const currentPath = `${prefix}/${key.replace(/\*\*/g, "")}`; + const currentValue = json[key]; + + if (typeof currentValue === "object" && currentValue !== null) { + // Se for objeto, chama recursivamente transform para processar objetos aninhados + results.push(...transform(currentValue as Record, currentPath)); + } else { + // Se não for objeto, adiciona ao objeto de chaves não-objeto + nonObjectKeys[key] = currentValue; + } + } + + // Adiciona um único resultado para chaves não-objeto + if (Object.keys(nonObjectKeys).length > 0) { + const nonObjectResult: Result = { + path: `ivipcoin-db::movement_wallet${prefix}`, + content: { + type: 1, + value: nonObjectKeys as any, + revision: "lnt02q7v0007oohx37705737", + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(nonObjectResult); + } + + return results; +} + +const inputJson = { + "000523147298669313": { + balances: { + BRL: { + available: "2528.00700001", + BRL: { available: "2528.00700001", symbol: "BRL", value: 494.23 }, + IVIP: { available: "1499269.00000000", symbol: "IVIP", value: 158.48 }, + symbol: "BRL", + value: 494.23, + }, + IVIP: { available: "1499269.00000000", symbol: "IVIP", value: 158.48 }, + }, + }, + "147006993684782200": { + dataModificacao: 1678651931786, + dateValidity: 1678669931823, + balances: {}, + totalValue: 0, + currencyType: "USD", + history: { + "1678652275580": { + type: "deposit", + wallet_type: "IVIPCOIN", + payment_method: "pix", + original_amount: 100, + total_amount: 100.99, + history_id: 1678652275580, + id: 55661848873, + date_created: "2023-03-12T16:17:56.428-04:00", + date_last_updated: "2023-03-13T16:21:02.000-04:00", + date_of_expiration: "2023-03-13T16:17:56.084-04:00", + operation_type: "regular_payment", + payment_type: "bank_transfer", + status: "cancelled", + status_detail: "expired", + currency_id: "BRL", + history: { + "1678652275580": { + type: "deposit", + wallet_type: "IVIPCOIN", + payment_method: "pix", + original_amount: 100, + total_amount: 100.99, + history_id: 1678652275580, + id: 55661848873, + history: { + "1678652275580": { + type: "deposit", + wallet_type: "IVIPCOIN", + payment_method: "pix", + original_amount: 100, + total_amount: 100.99, + history_id: 1678652275580, + id: 55661848873, + date_created: "2023-03-12T16:17:56.428-04:00", + date_last_updated: "2023-03-13T16:21:02.000-04:00", + date_of_expiration: "2023-03-13T16:17:56.084-04:00", + operation_type: "regular_payment", + payment_type: "bank_transfer", + status: "cancelled", + status_detail: "expired", + currency_id: "BRL", + }, + }, + date_created: "2023-03-12T16:17:56.428-04:00", + date_last_updated: "2023-03-13T16:21:02.000-04:00", + date_of_expiration: "2023-03-13T16:17:56.084-04:00", + operation_type: "regular_payment", + payment_type: "bank_transfer", + status: "cancelled", + status_detail: "expired", + currency_id: "BRL", + }, + }, + }, + }, + }, +}; + +const result = transform(inputJson); +console.log(JSON.stringify(result, null, 2)); + +interface ResultWithPath { + path: string; + content: { + type: number; + value: any; + revision: string; + revision_nr: number; + created: number; + modified: number; + }; +} + +function isObject(value: any): value is Record { + return typeof value === "object" && value !== null; +} From 9bc712116d03d9bf74f7e3255ebf6dc1aea86b01 Mon Sep 17 00:00:00 2001 From: iamrosada Date: Mon, 20 Nov 2023 20:09:43 +0300 Subject: [PATCH 08/36] feat: created template for github PR --- .github/PULL_REQUEST_TEMPLATE.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..e8e700aa --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,30 @@ +## Legibilidade do Código + +- [ ] O código está legível e segue as boas práticas de codificação? +- [ ] Foram utilizadas convenções de nomenclatura compreensíveis? +- [ ] A formatação do código está consistente e segue as diretrizes do linter? + +## Revisores + +- @revisor1 +- @revisor2 + +## Descrição + + + +## Tarefas + +- [ ] Tarefa 1 +- [ ] Tarefa 2 + +## Screenshots (se aplicável) + + + +## Checklist + +- [ ] Eu testei as alterações localmente. +- [ ] Todos os testes passaram. +- [ ] Eu atualizei a documentação. +- [ ] Eu segui as diretrizes de estilo de código. From 7b601f7dd88ed526b5157fe3e19ede4e51fc75e5 Mon Sep 17 00:00:00 2001 From: Pedro Henrique Feitosa <50965091+pedrofeitosa97@users.noreply.github.com> Date: Mon, 20 Nov 2023 18:06:05 -0300 Subject: [PATCH 09/36] feat: created function to write json files --- test/file.json | 124 ++++++++++++++++++++++++++++++++++ test/test.ts | 165 ++++++++++++++++++++++++++++++++-------------- test/testPedro.ts | 71 -------------------- 3 files changed, 241 insertions(+), 119 deletions(-) create mode 100644 test/file.json delete mode 100644 test/testPedro.ts diff --git a/test/file.json b/test/file.json new file mode 100644 index 00000000..939c69d8 --- /dev/null +++ b/test/file.json @@ -0,0 +1,124 @@ +{ + "ivipcoin-db::__movement_wallet__": { + "000523147298669313": { + "balances": { + "BRL": { + "available": "2528.00700001", + "symbol": "BRL", + "value": 494.23 + }, + "IVIP": { + "available": "1499269.00000000", + "symbol": "IVIP", + "value": 158.48 + } + }, + "history": { + "1677138262468": { + "description": "Deposito de um valor R$ 603,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", + "details": { + "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1311772470/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772470&payment_method_reference_id=10194042832&hash=af674271-1e58-4fd7-be5a-99a2285e1e5a", + "barcode": { + "content": "23796927400000606493380261019404283200633330" + }, + "costs": [ + { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + } + ] + } + }, + "1677138655788": { + "description": "Deposito de um valor R$ 592,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", + "details": { + "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1311772488/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772488&payment_method_reference_id=10194043809&hash=73ef0e48-e863-4567-bdcb-8711a40d76b2", + "barcode": { + "content": "23799927400000595493380261019404380900633330" + }, + "costs": [ + { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + } + ] + } + }, + "1677139564865": { + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0005.2314.7298.6693-13", + "details": { + "qr_code": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406504.955802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter1312722165630407FD", + "ticket_url": "https://www.mercadopago.com.br/sandbox/payments/1312722165/ticket?caller_id=1310149122&hash=db7e8cb4-20ed-4664-aa3c-fa50b3f2d6e8", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dQY7kNgwFUN3A97+lb+Agi8zY4qeqkgyCjPxq0ehu29Jz7QhS5Lh+o885aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXbMn+PP/x0/Lhw/7vvrwp/P3y78XOX+2znGc8fxc9H7Ao8LE4OWlpaWlpaWlpaWlvYl2mnbn4s8ANN9d0V6q2nb826cLty/h6SipaWlpaWlpaWlpaV9gXYKIHN02ER9047liRqBtvtmBi0tLS0tLS0tLS0t7Uu1Ics25++mz6d0Xo1Kyw9aWlpaWlpaWlpaWlraEAlO/7vn6prPnXeWMHRa4FMwS0tLS0tLS0tLS0tL+wJtwi9qMq+QpjtK2WZ5qyMcwDuWxZ+0tLS0tLS0tLS0tLSv0LZdSv7bH/+2pwotLS0tLS0tLS0tLe1vqs2f81lIeZaeI/mo25UbTKbeJPcfnyy0tLS0tLS0tLS0tLR7a5tjbevDbDkCnV5oPFN8R/4y2vejpaWlpaWlpaWlpaV9hTb1F8ld+Ef5szQjaUoq7xulw3GpWPOipaWlpaWlpaWlpaV9ibYEhnWo2lQgOe29ePYM6bwrD9luT9fR0tLS0tLS0tLS0tLurk2bpXNx7adN8U15vil5OBlLAvCipaWlpaWlpaWlpaV9jbaumZJ9ZQp2msp2lsb/Ye+xrLD81FOFlpaWlpaWlpaWlpZ2P2065XaU5Fx7Gi49kfN8o0sFnuFbumhpaWlpaWlpaWlpaV+jPT6tubil7jM1N0lZu9RMsgSzBy0tLS0tLS0tLS0t7Wu0NZ3XduFPQWWeeD3Kn+U10m4jtpqkpaWlpaWlpaWlpaXdWZvSdCkwTJ3578+eZbM8FqDpNzlZaGlpaWlpaWlpaWlpX6bN09FS/u7MOb3y9ke5uf0KpndeVl3S0tLS0tLS0tLS0tJuqi1ptWaI9RQdLppEHiEgrWfq0hf0dcxLS0tLS0tLS0tLS0u7mzYHhmmlx3Ipp9fGiWWjM2T8TlpaWlpaWlpaWlpa2hdqp+aPI/+WaiMnQGo3kjpK5rEAX9aI0tLS0tLS0tLS0tLSbqQtgeGj50hJyR0hvJwyfmWzUbqepBizHbdNS0tLS0tLS0tLS0u7u/ZYpvhSV5EUcrah5JGPun0Rn9LS0tLS0tLS0tLS0r5Hm0+lHTlX1xZStqOw8xG7Ky/1OYqkpaWlpaWlpaWlpaXdSpvrL5uyyHSOLeXq8ty1qepy5MReiGNpaWlpaWlpaWlpaWm3164XTiFnexBukeKrlZiL16WlpaWlpaWlpaWlpX2fNrlbYyrHvC9Vo8gSqVZy/qpoaWlpaWlpaWlpaWl315Ym+nUK9tFVTp5d3Fl7nZSrV5iWXVOLtLS0tLS0tLS0tLS0u2vzEOsRyieP/GrpSFzp5d/MyJ4C13SVlpaWlpaWlpaWlpZ2f+0oLfsXFZFpYPUo8V9bZpneOQ3U7rJ7tLS0tLS0tLS0tLS0+2nzwOrpXNy5GHFdjE3VZTk6t4o7P+QiaWlpaWlpaWlpaWlpt9JeeUL1p6b8q+nW5Thd09ekxJPjb/RUoaWlpaWlpaWlpaWl3UWbKidHmLvW1GSmksopTkypu3U55jcxLy0tLS0tLS0tLS0t7Uba8ttVyixLsq/J33Wd+furqUXKMoqkpaWlpaWlpaWlpaXdStsOQbvHhFNHyatk8iZ3KrMsTxyh9HI8T83R0tLS0tLS0tLS0tK+QJsUOeo7+/RbvHkq6pxyeuXmdkoALS0tLS0tLS0tLS3tC7Rl4vVRXqPk4K5FW5JplfI9fNfun5aWlpaWlpaWlpaW9iXaqzu4dpVHU+VkygKW0PQMj6W+lDnnSEtLS0tLS0tLS0tLu7N2WjNHkRWQ84FpbNr5VYVlO4uNlpaWlpaWlpaWlpZ2d20bRZY2kM3s62mL+31Xzt/lqstHtElLS0tLS0tLS0tLS/sm7Zll6ZBaORw3wkG46eoR0nln19KkTm+jpaWlpaWlpaWlpaXdXVvuOEO3xyNUSY7liOv0Vov83Zji0+eL09LS0tLS0tLS0tLS7qxN7nSY7dM+TWQZeo6MnCMcoU8KLS0tLS0tLS0tLS3tC7S5IvIqW5Szclf5reQIR6nEzK/R9jChpaWlpaWlpaWlpaV9gTZPrT5LcLfoQ1ILOMu5uLOUcpZw9QwlmrS0tLS0tLS0tLS0tK/QXiH91tRftquHLebQdHq/dhZb+B8tLS0tLS0tLS0tLe322qnm8f7olRvwT6HkPQKt75fXezyRelDS0tLS0tLS0tLS0tK+QrvIra06O5aYMF04ywG3FEpOGcTPNaK0tLS0tLS0tLS0tLRbaVM4OG0xBZppslpeYHRdSo4wKLuJVGlpaWlpaWlpaWlpaV+ibeol2xHXKZ23OFiXcn9fFGHS0tLS0tLS0tLS0tK+RztCEm+UtiQ5/jvKzLaSzrsyJceOpbckLS0tLS0tLS0tLS3tztoUMaZh1xMvB5/JWDcqzUjOUqfZRZG0tLS0tLS0tLS0tLTbaseTlxqKtA39z9F8ju7mo3Sj/LLqkpaWlpaWlpaWlpaWdj9t+qTYcb1w7ihZe/6nTij5xN1FS0tLS0tLS0tLS0v7Em0O/Y6culs0k2zGXi+iyFWJ5ueYl5aWlpaWlpaWlpaWdh9tivVSQ5F6c+rCPzUomRZt8V9HkbS0tLS0tLS0tLS0tFtqPwWQj8LMdFaujUVzGNo0opwstLS0tLS0tLS0tLS0b9ee4SBc8y6pOnPqOZLx1z/I7tHS0tLS0tLS0tLS0r5AW/9Myb42z1dCydrSJM3c7r4RWlpaWlpaWlpaWlra7bUL/Hgea0s7HlmbajKnVyvNJHPISUtLS0tLS0tLS0tLu7e2Fj7mCC/Ff+f3wWeKNu//mzpU0tLS0tLS0tLS0tLSvkX7///Q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v4y7R8J/gb3YnjEPQAAAABJRU5ErkJggg==", + "bank_info": { + "collector": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + } + }, + "costs": [ + { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 4.95 + } + ] + } + }, + "1677140212667": { + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", + "details": { + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dW27kNhAFUO5A+9+ldqAgQGZGYl1S7ckgiMmjD8NttcRD/xXqwXZ9o+tstLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLR/Xtv66/j7b8fPG8fP7/24cX/s8fHn29s/P67w5R93f328r/Zg0NLS0tLS0tLS0tLSbqI97iHb/SUPQLfYfdm0q7xsS/ju/1BUtLS0tLS0tLS0tLS0G2i7ALKL/7rny4bOZ/B5PIPKX295hJdp3cygpaWlpaWlpaWlpaXdVPsrDixB4HEHFEoXGJ7hBS3sj5aWlpaWlpaWlpaWlrYPAs9nJebjt1yx2UoNZcoHpn8GLS0tLS0tLS0tLS3t3tqELwWX6eOgTa7ri0vbTcWav1cjSktLS0tLS0tLS0tL+921wykl/+2PfztThZaWlpaWlpaWlpaW9ptq83XeH0zFlfMpk+m3bjZJmjI5stDS0tLS0tLS0tLS0q6tPUsEV3rW6o151WXe7lGWvO/qHCX7aGlpaWlpaWlpaWlp19Z2lDTjcRg25sBwWJ1Zw9A8TLK1NooiaWlpaWlpaWlpaWlp19PmlNyZZ/mXprc0UbILTRPqmJyMPZ1SQktLS0tLS0tLS0tLu542fSN9DEm3Nlx7fqVTtcsLaGlpaWlpaWlpaWlpd9S20vQ2nB45Kam88p675GFXdTmZUElLS0tLS0tLS0tLS7u2NiXnym/1nLS3pOCXmuNqtvC96pKWlpaWlpaWlpaWlnYdbRcxpla369kX192YFVcOz2dLLXHp9bS0tLS0tLS0tLS0tKtrS07v8VQJDI9yN405SXdLpHqMJlSetLS0tLS0tLS0tLS0O2k/emcNKifjImub3Hx/af4JLS0tLS0tLS0tLS3tZtpUV3nHH9NmtpoF7Io1S6BZt1vuXrS0tLS0tLS0tLS0tDtpu6s0uA2rKWeZwTzpf76rt+mRtLS0tLS0tLS0tLS0a2vToMcr83Jz3Bn6565R11ydUPm1qktaWlpaWlpaWlpaWtpVtFeZG5J627qALw+EHD6W1vhgV7S0tLS0tLS0tLS0tPtou2VTH9tVetaGtZspKk3VmTlvOK26pKWlpaWlpaWlpaWlXU1bjp9uZchIV1eZe+Vqh1yZQVkzefOKTVpaWlpaWlpaWlpa2n204Rv9kdRdg9t9Q0d4Vcudb4lX4ti3KJKWlpaWlpaWlpaWlnYpbZehK9HhIKdXUoHH6FUtjyDpUobTvCEtLS0tLS0tLS0tLe3y2hLDnaFoMgWQLYSDx+QF5fVnmFX5lRpRWlpaWlpaWlpaWlra1bSlSnIWReYmulrFOT8tO9+lpaWlpaWlpaWlpaXdR9s91VVEDgK+ble5L+4Mg0xqrWVZqISctLS0tLS0tLS0tLS0K2vzUWrtGeu1Fp9I8/2HvXLd/6YLTfPoE1paWlpaWlpaWlpa2i20Lcdw8863kufr1j7y/2EeMY6CT1paWlpaWlpaWlpa2pW1RXHkHZSQMw2OPEJM2N7GRZbFj09ykbS0tLS0tLS0tLS0tOtoaxtaTr8NjqnOUWQbnc82G4fSpRFpaWlpaWlpaWlpaWk30Q4qJ/Oh2IPjsXPlZP1KnjI5L9akpaWlpaWlpaWlpaXdQtv91m2jDoQcbu2KVz1jbb7kSxRJS0tLS0tLS0tLS0u7kLbLt5XgbliEeZZuuBxUHmXjKdBMh7nR0tLS0tLS0tLS0tJups3npF35ALVSOdnKMMlyDsAxChbPcsDbexRJS0tLS0tLS0tLS0u7inZY+JgW62K9roWtVE4OdlDWOHMoSUtLS0tLS0tLS0tLu4W2C/i6vxVZnR45aaJr4ZC2Wo7Zvfk95qWlpaWlpaWlpaWlpV1KmyonC6o9z10bJOzejseeHbed/kZLS0tLS0tLS0tLS7uJNlVJ1jxfurrosMyMHCQPJ7HjRzNVaGlpaWlpaWlpaWlpl9KmGsoUDnbZuKy4cjtdkdWQcxqf0tLS0tLS0tLS0tLSbqCtEV5O+6U8X03dDXeVizDPEne+RJG0tLS0tLS0tLS0tLQLaRMqhX4f1GSWDF06B+AMZZb17Ouv1IjS0tLS0tLS0tLS0tJ+b223dq6IPMuM/py/m62dyjG732hpaWlpaWlpaWlpaXfUlhRfC3Mk65Wm/3eyHE/Wj+XQgIOWlpaWlpaWlpaWlnYnbcnQnWEOSVdhWW/MtzachBIqLN+mlNDS0tLS0tLS0tLS0q6mHSbY8hKzrF1J3Q0mnJRA88rnuNHS0tLS0tLS0tLS0u6jLSMkj7e/TcZFDuo0U9ovhbAfV13S0tLS0tLS0tLS0tKuon2sU16XxkqeoentnI6V7FZL7kEnHS0tLS0tLS0tLS0t7era8s6zLFHe1M19rDm9e7KvfpxUXeaKTVpaWlpaWlpaWlpa2pW1d08CpPjvEQSmx8r3BlWXOXYshwHQ0tLS0tLS0tLS0tKurC2FlOeoLPLMvDTkf5j2++B8tg9jXlpaWlpaWlpaWlpa2sW0LRx41g0eSUWTVx5VkvKBJXBNj31YdUlLS0tLS0tLS0tLS7uQNl3DEDEflF03+ZYUvJ7pweGztLS0tLS0tLS0tLS0G2iHgVw6q3r49mHEmA9zS2cD1NCUlpaWlpaWlpaWlpZ2E+2RA8huQ8MQsexguJf2nFdyTXY/jiJpaWlpaWlpaWlpaWmX1KYqyRRA3uPOo8R/k8fSSMph1WWbTSmhpaWlpaWlpaWlpaXdSFujvtCpFmf0lwGT9bHSdvd5do+WlpaWlpaWlpaWlnYPbVo29cWlu3ny5FWeyC1xBy0tLS0tLS0tLS0t7XbaCb5m3roJ/rnqsg7qHxZXFt5FS0tLS0tLS0tLS0u7l7YWPqZmtnsA2XW0XWWuSZ5NMpiEUg54m1Zd0tLS0tLS0tLS0tLSrqb9/1+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+xf7jbt53CJCnQAAAABJRU5ErkJggg==", + "qr_code": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b61520400005303986540520.205802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131177255663042F4F", + "ticket_url": "https://www.mercadopago.com.br/sandbox/payments/1311772556/ticket?caller_id=1310149122&hash=317c7ec8-4131-44a3-a5d4-81d3bd707a5f", + "costs": [ + { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + } + ], + "bank_info": { + "collector": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + } + } + } + }, + "1677141074675": { + "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", + "details": { + "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1311772574/ticket?caller_id=1310149122&payment_method_id=pec&payment_id=1311772574&payment_method_reference_id=6003381638&hash=676a5569-4884-42d3-9e67-bfdb72450090", + "barcode": { + "content": "23791927400000051993380260600338163800633330" + }, + "costs": [ + { + "title": "Taxa de serviço", + "label": "Taxa de 3.99%", + "amount": 1.9949999999999999 + } + ] + } + }, + "1677143332353": { + "description": "Deposito de um valor R$ 72,00 para a carteira iVip 0005.2314.7298.6693-13", + "details": { + "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1312722387/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1312722387&payment_method_reference_id=10194052159&hash=0fea3a36-6354-4019-aec5-950b140fc21c", + "barcode": { + "content": "23792927400000075493380261019405215900633330" + }, + "costs": [ + { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + } + ] + } + } + } + } + } +} \ No newline at end of file diff --git a/test/test.ts b/test/test.ts index 00987137..9da3a0c6 100644 --- a/test/test.ts +++ b/test/test.ts @@ -1,4 +1,6 @@ import { MongoClient } from "mongodb"; +import fs from "fs"; +import { after } from "node:test"; interface Balance { available: string; @@ -27,8 +29,13 @@ async function main() { try { await client.connect(); const collection = client.db("root").collection("teste"); + const limit = 50; - // const result = await collection.find().toArray(); + console.log(new Date().getSeconds(), "antes da busca"); + const resultData = await collection.find().toArray(); + const afterLimit = resultData.slice(0, limit); + + console.log(new Date().getSeconds(), "depois da busca"); const KEY_THAT_MUST_BE_ARRAY = ["costs"]; @@ -45,11 +52,11 @@ async function main() { if (i === parts.length - 1) { let key = part.replace(/__+/g, "_").replace(/^_+|_+$/g, ""); - // console.log({ key }); const { value } = content; if (!current[key]) { key = key.split("[")[0]; + if (KEY_THAT_MUST_BE_ARRAY.includes(key)) { current[key] = []; @@ -60,8 +67,6 @@ async function main() { current[key] = value; } } - - // current[key].values.push(value); } else { if (!current[part]) { current[part] = {}; @@ -75,52 +80,116 @@ async function main() { return result; } - const entries = [ - { - path: "ivipcoin-db::__movement_wallet__/000523147298669313/balances/BRL", - content: { - type: 1, - value: { - available: "2528.00700001", - symbol: "BRL", - value: 494.23, - }, - revision: "lnt02q7v0006oohx1hd4856x", - revision_nr: 1, - created: 1697467086139, - modified: 1697467086139, - }, - }, - { - path: "ivipcoin-db::__movement_wallet__/000523147298669313/balances/IVIP", - content: { - type: 1, - value: { - available: "1499269.00000000", - symbol: "IVIP", - value: 158.48, - }, - revision: "lnt02q7v0007oohx37705737", - revision_nr: 1, - created: 1697467086139, - modified: 1697467086139, - }, - }, - { - path: "ivipcoin-db::__movement_wallet__/000523147298669313/balances", - content: { - type: 1, - value: {}, - revision: "lnt02q7v0005oohx3xm7c536", - revision_nr: 1, - created: 1697467086139, - modified: 1697467086139, - }, - }, - ]; + const entries = afterLimit; + // const entries = [ + // { + // path: "ivipcoin-db::__movement_wallet__/000523147298669313/balances/BRL", + // content: { + // type: 1, + // value: { + // available: "2528.00700001", + // symbol: "BRL", + // value: 494.23, + // }, + // revision: "lnt02q7v0006oohx1hd4856x", + // revision_nr: 1, + // created: 1697467086139, + // modified: 1697467086139, + // }, + // }, + // { + // path: "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/costs[0]", + // content: { + // type: 1, + // value: { title: "Taxa de serviço", label: "Taxa de R$ 3,49", amount: 3.49 }, + // revision: "lnt02q7y000moohxbtckd7dc", + // revision_nr: 1, + // created: 1697467086142, + // modified: 1697467086142, + // }, + // }, + // { + // path: "ivipcoin-db::__movement_wallet__/000523147298669313/balances/IVIP", + // content: { + // type: 1, + // value: { + // available: "1499269.00000000", + // symbol: "IVIP", + // value: 158.48, + // }, + // revision: "lnt02q7v0007oohx37705737", + // revision_nr: 1, + // created: 1697467086139, + // modified: 1697467086139, + // }, + // }, + // { + // path: "ivipcoin-db::__movement_wallet__/000523147298669313/balances", + // content: { + // type: 1, + // value: {}, + // revision: "lnt02q7v0005oohx3xm7c536", + // revision_nr: 1, + // created: 1697467086139, + // modified: 1697467086139, + // }, + // }, + // { + // path: "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details", + // content: { + // type: 1, + // value: { + // installments: 1, + // payment_method_reference_id: "10194042832", + // acquirer_reference: "", + // verification_code: "10194042832", + // net_received_amount: 0, + // total_paid_amount: 606.49, + // overpaid_amount: 0, + // installment_amount: 0, + // financial_institution: "bradesco", + // }, + // revision: "lnt02q7w000boohx9oufgquj", + // revision_nr: 1, + // created: 1697467086141, + // modified: 1697467086141, + // }, + // }, + // { + // path: "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/description", + // content: { + // type: 5, + // value: "Deposito de um valor R$ 592,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", + // revision: "lnt02q7x000hoohx4hktecqo", + // revision_nr: 1, + // created: 1697467086141, + // modified: 1697467086141, + // }, + // }, + // ]; const resultPathx = restructJson(entries); - console.log(JSON.stringify(resultPathx, null, 2)); + + const jsonPath = JSON.stringify(resultPathx, null, 2); + + function createJson(resultPathsParams) { + console.log(resultPathsParams); + const fileAddress: any = "./test/file.json"; + fs.writeFile(fileAddress, resultPathsParams, (error) => { + if (error) { + console.error("Algum erro aconteceu", error); + } else { + console.log(fileAddress); + } + }); + + return resultPathsParams; + } + + console.log(createJson(jsonPath)); + + // console.log(JSON.stringify(resultPathx, null, 2)); + console.log(new Date().getSeconds(), "final da busca"); // if (result) { // } else { diff --git a/test/testPedro.ts b/test/testPedro.ts deleted file mode 100644 index 9b87e498..00000000 --- a/test/testPedro.ts +++ /dev/null @@ -1,71 +0,0 @@ -import { MongoClient } from "mongodb"; - -interface Balance { - available: string; - symbol: string; - value: number; -} - -interface HistoryEntry { - type: string; - wallet_type: string; -} - -interface WalletData { - dataModificacao: number; - dateValidity: number; - totalValue: number; - currencyType: string; - balancesModificacao: string; - balances: Record; - history: Record; -} - -async function main() { - const uri = "mongodb://manager:9Hq91q5oExU9biOZ7yq98I8P1DU1ge@ivipcoin-api.com:4048/?authMechanism=DEFAULT"; - const client = new MongoClient(uri); - - try { - await client.connect(); - const collection = client.db("root").collection("teste"); - - const result = await collection.find().toArray(); - - const transformedData = result.reduce((acc, entry) => { - const { path, content } = entry; - const pathComponents = path.split("/"); - const walletId = pathComponents[2]; - const { symbol, available, value, history } = content.value; - - if (!acc[walletId]) { - acc[walletId] = { - dataModificacao: content.modified, - dateValidity: content.created, - totalValue: 0, - currencyType: "USD", - balancesModificacao: new Date(content.modified).toISOString(), - balances: {}, - history: {}, - }; - } - - acc[walletId].balances[symbol] = { available, symbol, value }; - - if (history) { - Object.assign(acc[walletId].history, history); - } - - return acc; - }, {}); - - console.log(transformedData); - - if (result.length === 0) { - console.log("Documento não encontrado"); - } - } finally { - await client.close(); - } -} - -main().catch(console.error); From 9eb73c154cdbe54f005eae2dc40c5b55a4dc3e70 Mon Sep 17 00:00:00 2001 From: iamrosada Date: Tue, 21 Nov 2023 16:19:02 +0300 Subject: [PATCH 10/36] feat: created a path to save the json data, for task 2. --- test/example.ts | 40 ++++++-- test/outputResultWithPathJSON.json | 159 +++++++++++++++++++++++++++++ 2 files changed, 189 insertions(+), 10 deletions(-) create mode 100644 test/outputResultWithPathJSON.json diff --git a/test/example.ts b/test/example.ts index fec41c3f..63ed34ce 100644 --- a/test/example.ts +++ b/test/example.ts @@ -1,3 +1,5 @@ +import fs from "fs"; + type Result = { path: string; content: { @@ -9,6 +11,17 @@ type Result = { modified: number; }; }; +interface ResultWithPath { + path: string; + content: { + type: number; + value: any; + revision: string; + revision_nr: number; + created: number; + modified: number; + }; +} function transform(json: Record, prefix: string = ""): Result[] { const results: Result[] = []; @@ -128,18 +141,25 @@ const inputJson = { const result = transform(inputJson); console.log(JSON.stringify(result, null, 2)); -interface ResultWithPath { - path: string; - content: { - type: number; - value: any; - revision: string; - revision_nr: number; - created: number; - modified: number; - }; +const dataJSONModel = JSON.stringify(result, null, 2); + +function afterRestructureSaveIntoJSONFile(dataWithOutPathFromMongodb) { + console.log(dataWithOutPathFromMongodb); + + const fileAddress: any = "./test/outputResultWithPathJSON.json"; + fs.writeFile(fileAddress, dataWithOutPathFromMongodb, (error) => { + if (error) { + console.error("Algum erro aconteceu", error); + } else { + console.log(fileAddress); + } + }); + + return dataWithOutPathFromMongodb; } +console.log(afterRestructureSaveIntoJSONFile(dataJSONModel)); + function isObject(value: any): value is Record { return typeof value === "object" && value !== null; } diff --git a/test/outputResultWithPathJSON.json b/test/outputResultWithPathJSON.json new file mode 100644 index 00000000..a7422197 --- /dev/null +++ b/test/outputResultWithPathJSON.json @@ -0,0 +1,159 @@ +[ + { + "path": "ivipcoin-db::movement_wallet/000523147298669313/balances/BRL/BRL", + "content": { + "type": 1, + "value": { + "available": "2528.00700001", + "symbol": "BRL", + "value": 494.23 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700572664929, + "modified": 1700572664929 + } + }, + { + "path": "ivipcoin-db::movement_wallet/000523147298669313/balances/BRL/IVIP", + "content": { + "type": 1, + "value": { + "available": "1499269.00000000", + "symbol": "IVIP", + "value": 158.48 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700572664929, + "modified": 1700572664929 + } + }, + { + "path": "ivipcoin-db::movement_wallet/000523147298669313/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "2528.00700001", + "symbol": "BRL", + "value": 494.23 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700572664929, + "modified": 1700572664929 + } + }, + { + "path": "ivipcoin-db::movement_wallet/000523147298669313/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "1499269.00000000", + "symbol": "IVIP", + "value": 158.48 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700572664929, + "modified": 1700572664929 + } + }, + { + "path": "ivipcoin-db::movement_wallet/147006993684782200/history/1678652275580/history/1678652275580/history/1678652275580", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 100, + "total_amount": 100.99, + "history_id": 1678652275580, + "id": 55661848873, + "date_created": "2023-03-12T16:17:56.428-04:00", + "date_last_updated": "2023-03-13T16:21:02.000-04:00", + "date_of_expiration": "2023-03-13T16:17:56.084-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "cancelled", + "status_detail": "expired", + "currency_id": "BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700572664929, + "modified": 1700572664929 + } + }, + { + "path": "ivipcoin-db::movement_wallet/147006993684782200/history/1678652275580/history/1678652275580", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 100, + "total_amount": 100.99, + "history_id": 1678652275580, + "id": 55661848873, + "date_created": "2023-03-12T16:17:56.428-04:00", + "date_last_updated": "2023-03-13T16:21:02.000-04:00", + "date_of_expiration": "2023-03-13T16:17:56.084-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "cancelled", + "status_detail": "expired", + "currency_id": "BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700572664929, + "modified": 1700572664929 + } + }, + { + "path": "ivipcoin-db::movement_wallet/147006993684782200/history/1678652275580", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 100, + "total_amount": 100.99, + "history_id": 1678652275580, + "id": 55661848873, + "date_created": "2023-03-12T16:17:56.428-04:00", + "date_last_updated": "2023-03-13T16:21:02.000-04:00", + "date_of_expiration": "2023-03-13T16:17:56.084-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "cancelled", + "status_detail": "expired", + "currency_id": "BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700572664929, + "modified": 1700572664929 + } + }, + { + "path": "ivipcoin-db::movement_wallet/147006993684782200", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678651931786, + "dateValidity": 1678669931823, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700572664929, + "modified": 1700572664929 + } + } +] \ No newline at end of file From 6abdb7322827dd988e687e0894fc1c62938efa19 Mon Sep 17 00:00:00 2001 From: iamrosada Date: Tue, 21 Nov 2023 17:13:39 +0300 Subject: [PATCH 11/36] feat: this code --- package.json | 2 +- test/example.ts | 28 ++- ...{file.json => outputRestructuredJSON.json} | 0 test/outputResultWithPathJSON.json | 32 +-- test/restructureJson.ts | 111 ++++++++++ test/test.ts | 203 ------------------ 6 files changed, 154 insertions(+), 222 deletions(-) rename test/{file.json => outputRestructuredJSON.json} (100%) create mode 100644 test/restructureJson.ts delete mode 100644 test/test.ts diff --git a/package.json b/package.json index 6927f9b0..dcb03a28 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "private": false, "repository": "github:ivipcoin/ivipbase", "scripts": { - "dev": "nodemon ./test/test.ts", + "dev": "nodemon ./test/restructureJson.ts", "dev2": "nodemon ./test/example.ts", "build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:packages && echo Done!", "build:clean": "rimraf dist", diff --git a/test/example.ts b/test/example.ts index 63ed34ce..ef0fbb92 100644 --- a/test/example.ts +++ b/test/example.ts @@ -1,4 +1,5 @@ import fs from "fs"; +import path from "path"; type Result = { path: string; @@ -58,6 +59,29 @@ function transform(json: Record, prefix: string = ""): Result[] return results; } +function readPath() { + const fileName = "__movement_wallet__.json"; + + const filePath = path.join(__dirname, fileName); + + fs.readFile(filePath, "utf8", (err, data) => { + if (err) { + console.error("Error reading the file:", err); + return; + } + + try { + var dataToArray = JSON.parse(data); + console.log(dataToArray); + return dataToArray; + } catch (parseError) { + console.error("Error parsing JSON:", parseError); + } + }); +} +const gettingTheJson: any = readPath(); +console.log(gettingTheJson); +// const afterLimit = gettingTheJson?.slice(0, 1); const inputJson = { "000523147298669313": { @@ -139,7 +163,6 @@ const inputJson = { }; const result = transform(inputJson); -console.log(JSON.stringify(result, null, 2)); const dataJSONModel = JSON.stringify(result, null, 2); @@ -158,7 +181,8 @@ function afterRestructureSaveIntoJSONFile(dataWithOutPathFromMongodb) { return dataWithOutPathFromMongodb; } -console.log(afterRestructureSaveIntoJSONFile(dataJSONModel)); +// console.log(afterRestructureSaveIntoJSONFile(dataJSONModel)); +// console.log(JSON.stringify(result, null, 2)); function isObject(value: any): value is Record { return typeof value === "object" && value !== null; diff --git a/test/file.json b/test/outputRestructuredJSON.json similarity index 100% rename from test/file.json rename to test/outputRestructuredJSON.json diff --git a/test/outputResultWithPathJSON.json b/test/outputResultWithPathJSON.json index a7422197..1ed25379 100644 --- a/test/outputResultWithPathJSON.json +++ b/test/outputResultWithPathJSON.json @@ -10,8 +10,8 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700572664929, - "modified": 1700572664929 + "created": 1700575282780, + "modified": 1700575282780 } }, { @@ -25,8 +25,8 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700572664929, - "modified": 1700572664929 + "created": 1700575282780, + "modified": 1700575282780 } }, { @@ -40,8 +40,8 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700572664929, - "modified": 1700572664929 + "created": 1700575282780, + "modified": 1700575282780 } }, { @@ -55,8 +55,8 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700572664929, - "modified": 1700572664929 + "created": 1700575282780, + "modified": 1700575282780 } }, { @@ -82,8 +82,8 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700572664929, - "modified": 1700572664929 + "created": 1700575282781, + "modified": 1700575282781 } }, { @@ -109,8 +109,8 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700572664929, - "modified": 1700572664929 + "created": 1700575282781, + "modified": 1700575282781 } }, { @@ -136,8 +136,8 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700572664929, - "modified": 1700572664929 + "created": 1700575282781, + "modified": 1700575282781 } }, { @@ -152,8 +152,8 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700572664929, - "modified": 1700572664929 + "created": 1700575282781, + "modified": 1700575282781 } } ] \ No newline at end of file diff --git a/test/restructureJson.ts b/test/restructureJson.ts new file mode 100644 index 00000000..4db4a468 --- /dev/null +++ b/test/restructureJson.ts @@ -0,0 +1,111 @@ +import { MongoClient } from "mongodb"; +import fs from "fs"; + +interface Balance { + available: string; + symbol: string; + value: number; +} + +interface BalanceInfo { + [symbol: string]: Balance; +} + +interface OriginalBalance { + path: string; + content: { + value: Balance; + }; +} + +interface RestructuredResult { + balances: BalanceInfo; +} +async function main() { + const uri = "mongodb://manager:9Hq91q5oExU9biOZ7yq98I8P1DU1ge@ivipcoin-api.com:4048/?authMechanism=DEFAULT"; + const client = new MongoClient(uri); + + try { + await client.connect(); + const collection = client.db("root").collection("teste"); + const limit = 50; + + console.log(new Date().getSeconds(), "antes da busca"); + const resultData = await collection.find().toArray(); + const afterLimit = resultData.slice(0, limit); + + console.log(new Date().getSeconds(), "depois da busca"); + + const KEY_THAT_MUST_BE_ARRAY = ["costs"]; + + function restructureJson(entries) { + const result = {}; + + entries.forEach((entry) => { + const { path, content } = entry; + const parts = path.split("/"); + let current = result; + + for (let i = 0; i < parts.length; i++) { + const part = parts[i]; + + if (i === parts.length - 1) { + let key = part.replace(/__+/g, "_").replace(/^_+|_+$/g, ""); + const { value } = content; + + if (!current[key]) { + key = key.split("[")[0]; + + if (KEY_THAT_MUST_BE_ARRAY.includes(key)) { + current[key] = []; + + if (Object.keys(value).length) { + current[key].push(value); + } + } else { + current[key] = value; + } + } + } else { + if (!current[part]) { + current[part] = {}; + } + + current = current[part]; + } + } + }); + + return result; + } + + const entries = afterLimit; + + const dataAfterToBeRestructured = restructureJson(entries); + + const dataFromMongoConvertedToJSON = JSON.stringify(dataAfterToBeRestructured, null, 2); + + function afterRestructureSaveIntoJSONFile(dataWithOutPathFromMongodb) { + console.log(dataWithOutPathFromMongodb); + + const fileAddress: any = "./test/outputRestructuredJSON.json"; + fs.writeFile(fileAddress, dataWithOutPathFromMongodb, (error) => { + if (error) { + console.error("Algum erro aconteceu", error); + } else { + console.log(fileAddress); + } + }); + + return dataWithOutPathFromMongodb; + } + + console.log(afterRestructureSaveIntoJSONFile(dataFromMongoConvertedToJSON)); + + console.log(new Date().getSeconds(), "final da busca"); + } finally { + await client.close(); + } +} + +main().catch(console.error); diff --git a/test/test.ts b/test/test.ts deleted file mode 100644 index 9da3a0c6..00000000 --- a/test/test.ts +++ /dev/null @@ -1,203 +0,0 @@ -import { MongoClient } from "mongodb"; -import fs from "fs"; -import { after } from "node:test"; - -interface Balance { - available: string; - symbol: string; - value: number; -} - -interface BalanceInfo { - [symbol: string]: Balance; -} - -interface OriginalBalance { - path: string; - content: { - value: Balance; - }; -} - -interface RestructuredResult { - balances: BalanceInfo; -} -async function main() { - const uri = "mongodb://manager:9Hq91q5oExU9biOZ7yq98I8P1DU1ge@ivipcoin-api.com:4048/?authMechanism=DEFAULT"; - const client = new MongoClient(uri); - - try { - await client.connect(); - const collection = client.db("root").collection("teste"); - const limit = 50; - - console.log(new Date().getSeconds(), "antes da busca"); - const resultData = await collection.find().toArray(); - const afterLimit = resultData.slice(0, limit); - - console.log(new Date().getSeconds(), "depois da busca"); - - const KEY_THAT_MUST_BE_ARRAY = ["costs"]; - - function restructJson(entries) { - const result = {}; - - entries.forEach((entry) => { - const { path, content } = entry; - const parts = path.split("/"); - let current = result; - - for (let i = 0; i < parts.length; i++) { - const part = parts[i]; - - if (i === parts.length - 1) { - let key = part.replace(/__+/g, "_").replace(/^_+|_+$/g, ""); - const { value } = content; - - if (!current[key]) { - key = key.split("[")[0]; - - if (KEY_THAT_MUST_BE_ARRAY.includes(key)) { - current[key] = []; - - if (Object.keys(value).length) { - current[key].push(value); - } - } else { - current[key] = value; - } - } - } else { - if (!current[part]) { - current[part] = {}; - } - - current = current[part]; - } - } - }); - - return result; - } - - const entries = afterLimit; - // const entries = [ - // { - // path: "ivipcoin-db::__movement_wallet__/000523147298669313/balances/BRL", - // content: { - // type: 1, - // value: { - // available: "2528.00700001", - // symbol: "BRL", - // value: 494.23, - // }, - // revision: "lnt02q7v0006oohx1hd4856x", - // revision_nr: 1, - // created: 1697467086139, - // modified: 1697467086139, - // }, - // }, - // { - // path: "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/costs[0]", - // content: { - // type: 1, - // value: { title: "Taxa de serviço", label: "Taxa de R$ 3,49", amount: 3.49 }, - // revision: "lnt02q7y000moohxbtckd7dc", - // revision_nr: 1, - // created: 1697467086142, - // modified: 1697467086142, - // }, - // }, - // { - // path: "ivipcoin-db::__movement_wallet__/000523147298669313/balances/IVIP", - // content: { - // type: 1, - // value: { - // available: "1499269.00000000", - // symbol: "IVIP", - // value: 158.48, - // }, - // revision: "lnt02q7v0007oohx37705737", - // revision_nr: 1, - // created: 1697467086139, - // modified: 1697467086139, - // }, - // }, - // { - // path: "ivipcoin-db::__movement_wallet__/000523147298669313/balances", - // content: { - // type: 1, - // value: {}, - // revision: "lnt02q7v0005oohx3xm7c536", - // revision_nr: 1, - // created: 1697467086139, - // modified: 1697467086139, - // }, - // }, - // { - // path: "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details", - // content: { - // type: 1, - // value: { - // installments: 1, - // payment_method_reference_id: "10194042832", - // acquirer_reference: "", - // verification_code: "10194042832", - // net_received_amount: 0, - // total_paid_amount: 606.49, - // overpaid_amount: 0, - // installment_amount: 0, - // financial_institution: "bradesco", - // }, - // revision: "lnt02q7w000boohx9oufgquj", - // revision_nr: 1, - // created: 1697467086141, - // modified: 1697467086141, - // }, - // }, - // { - // path: "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/description", - // content: { - // type: 5, - // value: "Deposito de um valor R$ 592,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", - // revision: "lnt02q7x000hoohx4hktecqo", - // revision_nr: 1, - // created: 1697467086141, - // modified: 1697467086141, - // }, - // }, - // ]; - - const resultPathx = restructJson(entries); - - const jsonPath = JSON.stringify(resultPathx, null, 2); - - function createJson(resultPathsParams) { - console.log(resultPathsParams); - const fileAddress: any = "./test/file.json"; - fs.writeFile(fileAddress, resultPathsParams, (error) => { - if (error) { - console.error("Algum erro aconteceu", error); - } else { - console.log(fileAddress); - } - }); - - return resultPathsParams; - } - - console.log(createJson(jsonPath)); - - // console.log(JSON.stringify(resultPathx, null, 2)); - console.log(new Date().getSeconds(), "final da busca"); - - // if (result) { - // } else { - // console.log("Documento não encontrado"); - // } - } finally { - await client.close(); - } -} - -main().catch(console.error); From f8de72fe4326022476f6ee2d9748f6cc85161015 Mon Sep 17 00:00:00 2001 From: iamrosada Date: Tue, 21 Nov 2023 21:08:58 +0300 Subject: [PATCH 12/36] feat: change the example file --- package.json | 2 +- test/example.ts | 189 - test/outputResultWithPathJSON.json | 63377 ++++++++++++++++++++++++++- test/resultWithPath.ts | 92 + 4 files changed, 63413 insertions(+), 247 deletions(-) delete mode 100644 test/example.ts create mode 100644 test/resultWithPath.ts diff --git a/package.json b/package.json index dcb03a28..595c9bae 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "repository": "github:ivipcoin/ivipbase", "scripts": { "dev": "nodemon ./test/restructureJson.ts", - "dev2": "nodemon ./test/example.ts", + "dev2": "nodemon ./test/resultWithPath.ts", "build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:packages && echo Done!", "build:clean": "rimraf dist", "build:esm": "tsc -p tsconfig.json && npx tsc-esm-fix ---target='dist/esm'", diff --git a/test/example.ts b/test/example.ts deleted file mode 100644 index ef0fbb92..00000000 --- a/test/example.ts +++ /dev/null @@ -1,189 +0,0 @@ -import fs from "fs"; -import path from "path"; - -type Result = { - path: string; - content: { - type: number; - value: Record | string | number; - revision: string; - revision_nr: number; - created: number; - modified: number; - }; -}; -interface ResultWithPath { - path: string; - content: { - type: number; - value: any; - revision: string; - revision_nr: number; - created: number; - modified: number; - }; -} - -function transform(json: Record, prefix: string = ""): Result[] { - const results: Result[] = []; - const nonObjectKeys: Record = {}; - - for (const key in json) { - const currentPath = `${prefix}/${key.replace(/\*\*/g, "")}`; - const currentValue = json[key]; - - if (typeof currentValue === "object" && currentValue !== null) { - // Se for objeto, chama recursivamente transform para processar objetos aninhados - results.push(...transform(currentValue as Record, currentPath)); - } else { - // Se não for objeto, adiciona ao objeto de chaves não-objeto - nonObjectKeys[key] = currentValue; - } - } - - // Adiciona um único resultado para chaves não-objeto - if (Object.keys(nonObjectKeys).length > 0) { - const nonObjectResult: Result = { - path: `ivipcoin-db::movement_wallet${prefix}`, - content: { - type: 1, - value: nonObjectKeys as any, - revision: "lnt02q7v0007oohx37705737", - revision_nr: 1, - created: Date.now(), - modified: Date.now(), - }, - }; - results.push(nonObjectResult); - } - - return results; -} -function readPath() { - const fileName = "__movement_wallet__.json"; - - const filePath = path.join(__dirname, fileName); - - fs.readFile(filePath, "utf8", (err, data) => { - if (err) { - console.error("Error reading the file:", err); - return; - } - - try { - var dataToArray = JSON.parse(data); - console.log(dataToArray); - return dataToArray; - } catch (parseError) { - console.error("Error parsing JSON:", parseError); - } - }); -} -const gettingTheJson: any = readPath(); -console.log(gettingTheJson); -// const afterLimit = gettingTheJson?.slice(0, 1); - -const inputJson = { - "000523147298669313": { - balances: { - BRL: { - available: "2528.00700001", - BRL: { available: "2528.00700001", symbol: "BRL", value: 494.23 }, - IVIP: { available: "1499269.00000000", symbol: "IVIP", value: 158.48 }, - symbol: "BRL", - value: 494.23, - }, - IVIP: { available: "1499269.00000000", symbol: "IVIP", value: 158.48 }, - }, - }, - "147006993684782200": { - dataModificacao: 1678651931786, - dateValidity: 1678669931823, - balances: {}, - totalValue: 0, - currencyType: "USD", - history: { - "1678652275580": { - type: "deposit", - wallet_type: "IVIPCOIN", - payment_method: "pix", - original_amount: 100, - total_amount: 100.99, - history_id: 1678652275580, - id: 55661848873, - date_created: "2023-03-12T16:17:56.428-04:00", - date_last_updated: "2023-03-13T16:21:02.000-04:00", - date_of_expiration: "2023-03-13T16:17:56.084-04:00", - operation_type: "regular_payment", - payment_type: "bank_transfer", - status: "cancelled", - status_detail: "expired", - currency_id: "BRL", - history: { - "1678652275580": { - type: "deposit", - wallet_type: "IVIPCOIN", - payment_method: "pix", - original_amount: 100, - total_amount: 100.99, - history_id: 1678652275580, - id: 55661848873, - history: { - "1678652275580": { - type: "deposit", - wallet_type: "IVIPCOIN", - payment_method: "pix", - original_amount: 100, - total_amount: 100.99, - history_id: 1678652275580, - id: 55661848873, - date_created: "2023-03-12T16:17:56.428-04:00", - date_last_updated: "2023-03-13T16:21:02.000-04:00", - date_of_expiration: "2023-03-13T16:17:56.084-04:00", - operation_type: "regular_payment", - payment_type: "bank_transfer", - status: "cancelled", - status_detail: "expired", - currency_id: "BRL", - }, - }, - date_created: "2023-03-12T16:17:56.428-04:00", - date_last_updated: "2023-03-13T16:21:02.000-04:00", - date_of_expiration: "2023-03-13T16:17:56.084-04:00", - operation_type: "regular_payment", - payment_type: "bank_transfer", - status: "cancelled", - status_detail: "expired", - currency_id: "BRL", - }, - }, - }, - }, - }, -}; - -const result = transform(inputJson); - -const dataJSONModel = JSON.stringify(result, null, 2); - -function afterRestructureSaveIntoJSONFile(dataWithOutPathFromMongodb) { - console.log(dataWithOutPathFromMongodb); - - const fileAddress: any = "./test/outputResultWithPathJSON.json"; - fs.writeFile(fileAddress, dataWithOutPathFromMongodb, (error) => { - if (error) { - console.error("Algum erro aconteceu", error); - } else { - console.log(fileAddress); - } - }); - - return dataWithOutPathFromMongodb; -} - -// console.log(afterRestructureSaveIntoJSONFile(dataJSONModel)); -// console.log(JSON.stringify(result, null, 2)); - -function isObject(value: any): value is Record { - return typeof value === "object" && value !== null; -} diff --git a/test/outputResultWithPathJSON.json b/test/outputResultWithPathJSON.json index 1ed25379..80d48e93 100644 --- a/test/outputResultWithPathJSON.json +++ b/test/outputResultWithPathJSON.json @@ -1,6 +1,6 @@ [ { - "path": "ivipcoin-db::movement_wallet/000523147298669313/balances/BRL/BRL", + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/balances/BRL", "content": { "type": 1, "value": { @@ -10,12 +10,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700575282780, - "modified": 1700575282780 + "created": 1700589719302, + "modified": 1700589719302 } }, { - "path": "ivipcoin-db::movement_wallet/000523147298669313/balances/BRL/IVIP", + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/balances/IVIP", "content": { "type": 1, "value": { @@ -25,96 +25,63149 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700575282780, - "modified": 1700575282780 + "created": 1700589719302, + "modified": 1700589719302 } }, { - "path": "ivipcoin-db::movement_wallet/000523147298669313/balances/BRL", + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23796927400000606493380261019404283200633330" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719302, + "modified": 1700589719302 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719302, + "modified": 1700589719302 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "10194042832", + "acquirer_reference": "", + "verification_code": "10194042832", + "net_received_amount": 0, + "total_paid_amount": 606.49, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "bradesco", + "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1311772470/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772470&payment_method_reference_id=10194042832&hash=af674271-1e58-4fd7-be5a-99a2285e1e5a" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719302, + "modified": 1700589719302 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "bolbradesco", + "original_amount": 603, + "total_amount": 606.49, + "id": 1311772470, + "date_created": "2023-02-23T03:44:23.122-04:00", + "date_last_updated": "2023-02-23T03:44:23.122-04:00", + "date_of_expiration": "2023-02-27T22:59:59.000-04:00", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "history_id": "1677138262468", + "description": "Deposito de um valor R$ 603,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719302, + "modified": 1700589719302 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23799927400000595493380261019404380900633330" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719302, + "modified": 1700589719302 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719302, + "modified": 1700589719302 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "10194043809", + "acquirer_reference": "", + "verification_code": "10194043809", + "net_received_amount": 0, + "total_paid_amount": 595.49, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "bradesco", + "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1311772488/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772488&payment_method_reference_id=10194043809&hash=73ef0e48-e863-4567-bdcb-8711a40d76b2" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719302, + "modified": 1700589719302 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "bolbradesco", + "original_amount": 592, + "total_amount": 595.49, + "id": 1311772488, + "date_created": "2023-02-23T03:50:56.477-04:00", + "date_last_updated": "2023-02-23T03:50:56.477-04:00", + "date_of_expiration": "2023-02-27T22:59:59.000-04:00", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "history_id": "1677138655788", + "description": "Deposito de um valor R$ 592,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719302, + "modified": 1700589719302 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719302, + "modified": 1700589719302 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 4.95 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719302, + "modified": 1700589719302 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 504.95, + "overpaid_amount": 0, + "installment_amount": 0, + "qr_code": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406504.955802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter1312722165630407FD", + "ticket_url": "https://www.mercadopago.com.br/sandbox/payments/1312722165/ticket?caller_id=1310149122&hash=db7e8cb4-20ed-4664-aa3c-fa50b3f2d6e8", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dQY7kNgwFUN3A97+lb+Agi8zY4qeqkgyCjPxq0ehu29Jz7QhS5Lh+o885aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXbMn+PP/x0/Lhw/7vvrwp/P3y78XOX+2znGc8fxc9H7Ao8LE4OWlpaWlpaWlpaWlvYl2mnbn4s8ANN9d0V6q2nb826cLty/h6SipaWlpaWlpaWlpaV9gXYKIHN02ER9047liRqBtvtmBi0tLS0tLS0tLS0t7Uu1Ics25++mz6d0Xo1Kyw9aWlpaWlpaWlpaWlraEAlO/7vn6prPnXeWMHRa4FMwS0tLS0tLS0tLS0tL+wJtwi9qMq+QpjtK2WZ5qyMcwDuWxZ+0tLS0tLS0tLS0tLSv0LZdSv7bH/+2pwotLS0tLS0tLS0tLe1vqs2f81lIeZaeI/mo25UbTKbeJPcfnyy0tLS0tLS0tLS0tLR7a5tjbevDbDkCnV5oPFN8R/4y2vejpaWlpaWlpaWlpaV9hTb1F8ld+Ef5szQjaUoq7xulw3GpWPOipaWlpaWlpaWlpaV9ibYEhnWo2lQgOe29ePYM6bwrD9luT9fR0tLS0tLS0tLS0tLurk2bpXNx7adN8U15vil5OBlLAvCipaWlpaWlpaWlpaV9jbaumZJ9ZQp2msp2lsb/Ye+xrLD81FOFlpaWlpaWlpaWlpZ2P2065XaU5Fx7Gi49kfN8o0sFnuFbumhpaWlpaWlpaWlpaV+jPT6tubil7jM1N0lZu9RMsgSzBy0tLS0tLS0tLS0t7Wu0NZ3XduFPQWWeeD3Kn+U10m4jtpqkpaWlpaWlpaWlpaXdWZvSdCkwTJ3578+eZbM8FqDpNzlZaGlpaWlpaWlpaWlpX6bN09FS/u7MOb3y9ke5uf0KpndeVl3S0tLS0tLS0tLS0tJuqi1ptWaI9RQdLppEHiEgrWfq0hf0dcxLS0tLS0tLS0tLS0u7mzYHhmmlx3Ipp9fGiWWjM2T8TlpaWlpaWlpaWlpa2hdqp+aPI/+WaiMnQGo3kjpK5rEAX9aI0tLS0tLS0tLS0tLSbqQtgeGj50hJyR0hvJwyfmWzUbqepBizHbdNS0tLS0tLS0tLS0u7u/ZYpvhSV5EUcrah5JGPun0Rn9LS0tLS0tLS0tLS0r5Hm0+lHTlX1xZStqOw8xG7Ky/1OYqkpaWlpaWlpaWlpaXdSpvrL5uyyHSOLeXq8ty1qepy5MReiGNpaWlpaWlpaWlpaWm3164XTiFnexBukeKrlZiL16WlpaWlpaWlpaWlpX2fNrlbYyrHvC9Vo8gSqVZy/qpoaWlpaWlpaWlpaWl315Ym+nUK9tFVTp5d3Fl7nZSrV5iWXVOLtLS0tLS0tLS0tLS0u2vzEOsRyieP/GrpSFzp5d/MyJ4C13SVlpaWlpaWlpaWlpZ2f+0oLfsXFZFpYPUo8V9bZpneOQ3U7rJ7tLS0tLS0tLS0tLS0+2nzwOrpXNy5GHFdjE3VZTk6t4o7P+QiaWlpaWlpaWlpaWlpt9JeeUL1p6b8q+nW5Thd09ekxJPjb/RUoaWlpaWlpaWlpaWl3UWbKidHmLvW1GSmksopTkypu3U55jcxLy0tLS0tLS0tLS0t7Uba8ttVyixLsq/J33Wd+furqUXKMoqkpaWlpaWlpaWlpaXdStsOQbvHhFNHyatk8iZ3KrMsTxyh9HI8T83R0tLS0tLS0tLS0tK+QJsUOeo7+/RbvHkq6pxyeuXmdkoALS0tLS0tLS0tLS3tC7Rl4vVRXqPk4K5FW5JplfI9fNfun5aWlpaWlpaWlpaW9iXaqzu4dpVHU+VkygKW0PQMj6W+lDnnSEtLS0tLS0tLS0tLu7N2WjNHkRWQ84FpbNr5VYVlO4uNlpaWlpaWlpaWlpZ2d20bRZY2kM3s62mL+31Xzt/lqstHtElLS0tLS0tLS0tLS/sm7Zll6ZBaORw3wkG46eoR0nln19KkTm+jpaWlpaWlpaWlpaXdXVvuOEO3xyNUSY7liOv0Vov83Zji0+eL09LS0tLS0tLS0tLS7qxN7nSY7dM+TWQZeo6MnCMcoU8KLS0tLS0tLS0tLS3tC7S5IvIqW5Szclf5reQIR6nEzK/R9jChpaWlpaWlpaWlpaV9gTZPrT5LcLfoQ1ILOMu5uLOUcpZw9QwlmrS0tLS0tLS0tLS0tK/QXiH91tRftquHLebQdHq/dhZb+B8tLS0tLS0tLS0tLe322qnm8f7olRvwT6HkPQKt75fXezyRelDS0tLS0tLS0tLS0tK+QrvIra06O5aYMF04ywG3FEpOGcTPNaK0tLS0tLS0tLS0tLRbaVM4OG0xBZppslpeYHRdSo4wKLuJVGlpaWlpaWlpaWlpaV+ibeol2xHXKZ23OFiXcn9fFGHS0tLS0tLS0tLS0tK+RztCEm+UtiQ5/jvKzLaSzrsyJceOpbckLS0tLS0tLS0tLS3tztoUMaZh1xMvB5/JWDcqzUjOUqfZRZG0tLS0tLS0tLS0tLTbaseTlxqKtA39z9F8ju7mo3Sj/LLqkpaWlpaWlpaWlpaWdj9t+qTYcb1w7ihZe/6nTij5xN1FS0tLS0tLS0tLS0v7Em0O/Y6culs0k2zGXi+iyFWJ5ueYl5aWlpaWlpaWlpaWdh9tivVSQ5F6c+rCPzUomRZt8V9HkbS0tLS0tLS0tLS0tFtqPwWQj8LMdFaujUVzGNo0opwstLS0tLS0tLS0tLS0b9ee4SBc8y6pOnPqOZLx1z/I7tHS0tLS0tLS0tLS0r5AW/9Myb42z1dCydrSJM3c7r4RWlpaWlpaWlpaWlra7bUL/Hgea0s7HlmbajKnVyvNJHPISUtLS0tLS0tLS0tLu7e2Fj7mCC/Ff+f3wWeKNu//mzpU0tLS0tLS0tLS0tLSvkX7///Q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v4y7R8J/gb3YnjEPQAAAABJRU5ErkJggg==" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719302, + "modified": 1700589719302 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 500, + "total_amount": 504.95, + "id": 1312722165, + "date_created": "2023-02-23T04:06:05.681-04:00", + "date_last_updated": "2023-02-23T04:06:05.681-04:00", + "date_of_expiration": "2023-02-24T04:06:05.440-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL", + "history_id": "1677139564865", + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719302, + "modified": 1700589719302 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0, + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dW27kNhAFUO5A+9+ldqAgQGZGYl1S7ckgiMmjD8NttcRD/xXqwXZ9o+tstLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLR/Xtv66/j7b8fPG8fP7/24cX/s8fHn29s/P67w5R93f328r/Zg0NLS0tLS0tLS0tLSbqI97iHb/SUPQLfYfdm0q7xsS/ju/1BUtLS0tLS0tLS0tLS0G2i7ALKL/7rny4bOZ/B5PIPKX295hJdp3cygpaWlpaWlpaWlpaXdVPsrDixB4HEHFEoXGJ7hBS3sj5aWlpaWlpaWlpaWlrYPAs9nJebjt1yx2UoNZcoHpn8GLS0tLS0tLS0tLS3t3tqELwWX6eOgTa7ri0vbTcWav1cjSktLS0tLS0tLS0tL+921wykl/+2PfztThZaWlpaWlpaWlpaW9ptq83XeH0zFlfMpk+m3bjZJmjI5stDS0tLS0tLS0tLS0q6tPUsEV3rW6o151WXe7lGWvO/qHCX7aGlpaWlpaWlpaWlp19Z2lDTjcRg25sBwWJ1Zw9A8TLK1NooiaWlpaWlpaWlpaWlp19PmlNyZZ/mXprc0UbILTRPqmJyMPZ1SQktLS0tLS0tLS0tLu542fSN9DEm3Nlx7fqVTtcsLaGlpaWlpaWlpaWlpd9S20vQ2nB45Kam88p675GFXdTmZUElLS0tLS0tLS0tLS7u2NiXnym/1nLS3pOCXmuNqtvC96pKWlpaWlpaWlpaWlnYdbRcxpla369kX192YFVcOz2dLLXHp9bS0tLS0tLS0tLS0tKtrS07v8VQJDI9yN405SXdLpHqMJlSetLS0tLS0tLS0tLS0O2k/emcNKifjImub3Hx/af4JLS0tLS0tLS0tLS3tZtpUV3nHH9NmtpoF7Io1S6BZt1vuXrS0tLS0tLS0tLS0tDtpu6s0uA2rKWeZwTzpf76rt+mRtLS0tLS0tLS0tLS0a2vToMcr83Jz3Bn6565R11ydUPm1qktaWlpaWlpaWlpaWtpVtFeZG5J627qALw+EHD6W1vhgV7S0tLS0tLS0tLS0tPtou2VTH9tVetaGtZspKk3VmTlvOK26pKWlpaWlpaWlpaWlXU1bjp9uZchIV1eZe+Vqh1yZQVkzefOKTVpaWlpaWlpaWlpa2n204Rv9kdRdg9t9Q0d4Vcudb4lX4ti3KJKWlpaWlpaWlpaWlnYpbZehK9HhIKdXUoHH6FUtjyDpUobTvCEtLS0tLS0tLS0tLe3y2hLDnaFoMgWQLYSDx+QF5fVnmFX5lRpRWlpaWlpaWlpaWlra1bSlSnIWReYmulrFOT8tO9+lpaWlpaWlpaWlpaXdR9s91VVEDgK+ble5L+4Mg0xqrWVZqISctLS0tLS0tLS0tLS0K2vzUWrtGeu1Fp9I8/2HvXLd/6YLTfPoE1paWlpaWlpaWlpa2i20Lcdw8863kufr1j7y/2EeMY6CT1paWlpaWlpaWlpa2pW1RXHkHZSQMw2OPEJM2N7GRZbFj09ykbS0tLS0tLS0tLS0tOtoaxtaTr8NjqnOUWQbnc82G4fSpRFpaWlpaWlpaWlpaWk30Q4qJ/Oh2IPjsXPlZP1KnjI5L9akpaWlpaWlpaWlpaXdQtv91m2jDoQcbu2KVz1jbb7kSxRJS0tLS0tLS0tLS0u7kLbLt5XgbliEeZZuuBxUHmXjKdBMh7nR0tLS0tLS0tLS0tJups3npF35ALVSOdnKMMlyDsAxChbPcsDbexRJS0tLS0tLS0tLS0u7inZY+JgW62K9roWtVE4OdlDWOHMoSUtLS0tLS0tLS0tLu4W2C/i6vxVZnR45aaJr4ZC2Wo7Zvfk95qWlpaWlpaWlpaWlpV1KmyonC6o9z10bJOzejseeHbed/kZLS0tLS0tLS0tLS7uJNlVJ1jxfurrosMyMHCQPJ7HjRzNVaGlpaWlpaWlpaWlpl9KmGsoUDnbZuKy4cjtdkdWQcxqf0tLS0tLS0tLS0tLSbqCtEV5O+6U8X03dDXeVizDPEne+RJG0tLS0tLS0tLS0tLQLaRMqhX4f1GSWDF06B+AMZZb17Ouv1IjS0tLS0tLS0tLS0tJ+b223dq6IPMuM/py/m62dyjG732hpaWlpaWlpaWlpaXfUlhRfC3Mk65Wm/3eyHE/Wj+XQgIOWlpaWlpaWlpaWlnYnbcnQnWEOSVdhWW/MtzachBIqLN+mlNDS0tLS0tLS0tLS0q6mHSbY8hKzrF1J3Q0mnJRA88rnuNHS0tLS0tLS0tLS0u6jLSMkj7e/TcZFDuo0U9ovhbAfV13S0tLS0tLS0tLS0tKuon2sU16XxkqeoentnI6V7FZL7kEnHS0tLS0tLS0tLS0t7era8s6zLFHe1M19rDm9e7KvfpxUXeaKTVpaWlpaWlpaWlpa2pW1d08CpPjvEQSmx8r3BlWXOXYshwHQ0tLS0tLS0tLS0tKurC2FlOeoLPLMvDTkf5j2++B8tg9jXlpaWlpaWlpaWlpa2sW0LRx41g0eSUWTVx5VkvKBJXBNj31YdUlLS0tLS0tLS0tLS7uQNl3DEDEflF03+ZYUvJ7pweGztLS0tLS0tLS0tLS0G2iHgVw6q3r49mHEmA9zS2cD1NCUlpaWlpaWlpaWlpZ2E+2RA8huQ8MQsexguJf2nFdyTXY/jiJpaWlpaWlpaWlpaWmX1KYqyRRA3uPOo8R/k8fSSMph1WWbTSmhpaWlpaWlpaWlpaXdSFujvtCpFmf0lwGT9bHSdvd5do+WlpaWlpaWlpaWlnYPbVo29cWlu3ny5FWeyC1xBy0tLS0tLS0tLS0t7XbaCb5m3roJ/rnqsg7qHxZXFt5FS0tLS0tLS0tLS0u7l7YWPqZmtnsA2XW0XWWuSZ5NMpiEUg54m1Zd0tLS0tLS0tLS0tLSrqb9/1+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+xf7jbt53CJCnQAAAABJRU5ErkJggg==", + "qr_code": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b61520400005303986540520.205802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131177255663042F4F", + "ticket_url": "https://www.mercadopago.com.br/sandbox/payments/1311772556/ticket?caller_id=1310149122&hash=317c7ec8-4131-44a3-a5d4-81d3bd707a5f" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 20, + "total_amount": 20.2, + "id": 1311772556, + "date_created": "2023-02-23T04:16:53.522-04:00", + "date_last_updated": "2023-02-23T04:16:53.522-04:00", + "date_of_expiration": "2023-02-24T04:16:53.246-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL", + "history_id": "1677140212667", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23791927400000051993380260600338163800633330" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3.99%", + "amount": 1.9949999999999999 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "6003381638", + "acquirer_reference": "", + "verification_code": "6003381638", + "net_received_amount": 0, + "total_paid_amount": 51.99, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "10850221", + "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1311772574/ticket?caller_id=1310149122&payment_method_id=pec&payment_id=1311772574&payment_method_reference_id=6003381638&hash=676a5569-4884-42d3-9e67-bfdb72450090" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pec", + "original_amount": 50, + "total_amount": 51.99, + "id": 1311772574, + "date_created": "2023-02-23T04:31:15.312-04:00", + "date_last_updated": "2023-02-23T04:31:15.312-04:00", + "date_of_expiration": "2023-02-27T22:59:59.000-04:00", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "history_id": "1677141074675", + "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23792927400000075493380261019405215900633330" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "10194052159", + "acquirer_reference": "", + "verification_code": "10194052159", + "net_received_amount": 0, + "total_paid_amount": 75.49, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "bradesco", + "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1312722387/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1312722387&payment_method_reference_id=10194052159&hash=0fea3a36-6354-4019-aec5-950b140fc21c" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "bolbradesco", + "total_amount": 75.49, + "id": 1312722387, + "date_created": "2023-02-23T05:08:54.435-04:00", + "date_last_updated": "2023-02-23T05:08:54.435-04:00", + "date_of_expiration": "2023-02-27T22:59:59.000-04:00", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "original_amount": 72, + "history_id": "1677143332353", + "description": "Deposito de um valor R$ 72,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23791927400000803493380261019405351400633330" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "10194053514", + "acquirer_reference": "", + "verification_code": "10194053514", + "net_received_amount": 0, + "total_paid_amount": 803.49, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "bradesco", + "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1311772850/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772850&payment_method_reference_id=10194053514&hash=7f37a98d-46a5-4410-9837-bd450923e2de" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "bolbradesco", + "original_amount": 800, + "total_amount": 803.49, + "id": 1311772850, + "date_created": "2023-02-23T05:59:23.578-04:00", + "date_last_updated": "2023-02-23T05:59:23.578-04:00", + "date_of_expiration": "2023-02-27T22:59:59.000-04:00", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "history_id": "1677146361537", + "description": "Deposito de um valor R$ 800,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0, + "ticket_url": "https://www.mercadopago.com.br/payments/55087284163/ticket?caller_id=1310149122&hash=d505f218-1883-4e4e-8be7-431e65cdf030", + "qr_code": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter55087284163630456C0", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dW27kNhAFUO2A+98ld6BgkMlAzbpF2cggyEhHH4bt1uOo/wpVvDzOP+iYBy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS3t79ce6zF+/G/8+uCf335cVU9ZPh1/3/349ZxjecbP/32cfH3aB4OWlpaWlpaWlpaWlvYl2nEt2ZY/r8YKvZ4yPnkfpywvdPXM600zg5aWlpaWlpaWlpaW9gXahXK9YH6WkktNeG7IbaVaysuxYdDS0tLS0tLS0tLS0r5TO0OXrQKKp3ndpTAs7UFaWlpaWlpaWlpaWlraUM1tysGlqBybOvFu9DLdhZaWlpaWlpaWlpaW9n3ajN/NWrbV5rV2nJ9v0HxBd8OftLS0tLS0tLS0tLS0T9fuZP/hj3+bqUJLS0tLS0tLS0tLS/uHavMxSyMuhYws6SPLOGbrWW56b6GlpaWlpaWlpaWlpX22dpYKrtxp5v7dVdscJcZ/WU5X8/233T1aWlpaWlpaWlpaWtqHaq+/LSvVZhcSuVSbZ4klWd55uV877RkeSUtLS0tLS0tLS0tL+2RtucnxCTg+e3pHADTQJY2ydPxSj/AI70JLS0tLS0tLS0tLS/sCbYkROUL6yNGVg0eoLEferq3UiU22JC0tLS0tLS0tLS0t7cu0eV/qNFI58pxmqRjbVW4zr5UrXxUtLS0tLS0tLS0tLe1btIW8iyXJaf2z1H8Z0NaJZ1dj0tLS0tLS0tLS0tLSvkI7w01SEVgTJZdUkTRmmffSbr6CvFaOlpaWlpaWlpaWlpb22dpl4DJNYpbCcG7GMcsL1ePqmZvKkpaWlpaWlpaWlpaW9iXakYvAtEyuZEvW6vB67Qhfxixzmnnp3KClpaWlpaWlpaWlpX2N9sg5+0tzbgGkXJN2W4D84u3b36f609LS0tLS0tLS0tLSPkibhiH3lWAOLakpJeXa2hTcfDpoaWlpaWlpaWlpaWlfo505aSQFPS43Tp6lz5c6iPs4lO3UJS0tLS0tLS0tLS0t7WO1bZk3Sjcuhfen3t+SBdmuritF6ritImlpaWlpaWlpaWlpaR+kLVGOZ9fOG6XubBfHlfvVkvOu0DxpaWlpaWlpaWlpaWlfoz1KJZgS/EspeeQlbItsKSXLF3R0tx+0tLS0tLS0tLS0tLQv0YYPY4uvLQJzvkjaGXvXLdwGmdDS0tLS0tLS0tLS0r5AWxfClaMlN+OY+dlnecn9ECYtLS0tLS0tLS0tLe3TtUtmZLnTcs9js2F1WQ13my3Z5prQ0tLS0tLS0tLS0tK+R5sDHJt68voGcztNmWY3P85rZze3q+FoaWlpaWlpaWlpaWmfqD1LW61NJGnDSNpqs/Da2vHbe8PR0tLS0tLS0tLS0tI+Q7s8cTlyKH9tBd6NaM6u2XeG5w5aWlpaWlpaWlpaWto3ab+wIG3pt7W85eTvV4yl2UdLS0tLS0tLS0tLS/sW7UIuq9fO/L9rFZnKxmMzdZlLzu/0ImlpaWlpaWlpaWlpaZ+hTR21Am0rxjqnWYYw6zhmu/wth6DQ0tLS0tLS0tLS0tK+QFtQI3f8yrP3k5N16VyZ4pz5MlpaWlpaWlpaWlpa2vdo27nKtsbM6f/Lp81dSm5/jvGnpaWlpaWlpaWlpaV9kXbpqKW+XOrBlXbe0rqrm2LnhmLTMqSlpaWlpaWlpaWlpX2PdsntL8XdzO28zZbZM3QBF1TztK4qpaWlpaWlpaWlpaWlfbJ2mXQso5IjLHBb4vmbYc3rmGWb6r9swT3i10JLS0tLS0tLS0tLS/ts7VGqyLJr9VnuXk5O/cAj9/TS1GV+NVpaWlpaWlpaWlpa2ldpU0ZILhG/usptaQC2+2anzQBoaWlpaWlpaWlpaWlfpj1LvGOuE0dY0Za3SOtl7c7YX64iaWlpaWlpaWlpaWlpH6UdeZBynzRSZjLH198lT13WK2hpaWlpaWlpaWlpaV+hzZR5twPbUhNuFsKdYe/rWnJuvhZaWlpaWlpaWlpaWtoXaHMof02ALKvcaubIdllb7PilBXjbrEtaWlpaWlpaWlpaWtrnadto/9KSa7t2M6ypO8KfR958rR30pKWlpaWlpaWlpaWlfbo2FYupMCwF31mMeSbzCCvfmqd9OdWflpaWlpaWlpaWlpb2Udr0nKPbFPsMbzBD+shRYiCXtl+qVO+nLmlpaWlpaWlpaWlpaZ+oXarIXbRIKgJT2biZxFzOS6Xpd7p7tLS0tLS0tLS0tLS0f7y2DD6mxx6liZemKUsYySy7st1NXebKkpaWlpaWlpaWlpaW9vHa3LA7SuZIUdQaM62Gy6c0G2rfpJTQ0tLS0tLS0tLS0tI+Tbvwypjl7R5ry5hlvvPI7cH2e7iZuqSlpaWlpaWlpaWlpX2QdnlYmoNMvb99ZH/aULudukzn3fciaWlpaWlpaWlpaWlpn6JNq9dKx2+ELuDIOZKpb7gY2z23v5jqT0tLS0tLS0tLS0tL+0RtjSpJbbq2qCxl6PKms1sDt2yKPUKcJS0tLS0tLS0tLS0t7bO16UgjlblYnLkVuFyRCsjUIyx5JbS0tLS0tLS0tLS0tC/QluTHFB7S/jnK++XtrOdd+n/eMpuWlpaWlpaWlpaWlvYV2hEKyCZupHTjUkhkbdOV7dWaXbC/UkXS0tLS0tLS0tLS0tI+UltKuo96MidFtrutfVwWnl0ftL+WlpaWlpaWlpaWlpb2jdrRzVrOLkcyLadLxeIMG2ofZZ0dLS0tLS0tLS0tLS0tbb8NW0kfqfgUaVJ4MzT7zttdsGlpaWlpaWlpaWlpaR+pzfhaRS53b1+tnHfkD5YMk2VOk5aWlpaWlpaWlpaW9iXatKxtlmT+pWxMc5ppJjPtwFbuN8NiO1paWlpaWlpaWlpa2rdo//8HLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLe1v0/4FnajhovaFiOwAAAAASUVORK5CYII=" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 20, + "total_amount": 20.2, + "history_id": 1677340892851, + "id": 55087284163, + "date_created": "2023-02-25T12:01:36.928-04:00", + "date_last_updated": "2023-02-25T12:01:36.000-04:00", + "date_of_expiration": "2023-02-26T12:01:36.705-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0, + "ticket_url": "https://www.mercadopago.com.br/payments/55094059932/ticket?caller_id=1310149122&hash=bd1d3d80-d457-4eee-a797-cd6306ae8561", + "qr_code": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter550940599326304816F", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI6UlEQVR42u3dWw7bNhAFUO5A+9+ldqAiRR8S5w7toEXRUEcfQRLL4pH/BvMa1y90nYOWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaW9t/Xjvk6fvzf8dcHf/7tx7dut/z+z78f8Menjw+mW/6+b7r5ftp4nkFLS0tLS0tLS0tLS/sK7XEP2aZ/3o3TuxzPW6Y3eNwyvdD0zuV51/x4WlpaWlpaWlpaWlra7bUT5f6F8xlKXvnmHEU2kWoJL48Fg5aWlpaWlpaWlpaW9p3aM2TZKqB4mtedAsMpFqWlpaWlpaWlpaWlpaWN0dwiHJyCymMRJ+bSy0fecB3M0tLS0tLS0tLS0tLSvkKb8bXWsnytRpv32PF8vkHzA30q/qSlpaWlpaWlpaWlpd1dOxb9bv/hH/90pgotLS0tLS0tLS0tLe0vqs3X+UzTnXnIyDR9ZCrHbD3TQz9baGlpaWlpaWlpaWlp99aeJYIrLWxnCS+nF2qvMsZ/aqer8/2X2T1aWlpaWlpaWlpaWtpNtfe/1YgxdcOtO9rK867SYtdWe5bIkpaWlpaWlpaWlpaWdm9tecgI0WFKzl05u3d/jSOPkFwv2f7cDUdLS0tLS0tLS0tLS7ufNgeLo6umTOQEHaFYc3yeLXl+07tHS0tLS0tLS0tLS0u7lTbvpU4llUeo0zzCo5okXo4nazkmLS0tLS0tLS0tLS3te7T5nGYsyWJa//SNBGjjxKuLMWlpaWlpaWlpaWlpaV+gzWMg01DHOlFymiqSyizzLu3mJ8jBJy0tLS0tLS0tLS0t7e7aMWJQWaaPHKWuMpVjlheq191zLiJLWlpaWlpaWlpaWlraV2jXI/tzeHmW/rkESOMny6fp3OPjDgJaWlpaWlpaWlpaWtrdtCWjdnVFk8dirkmp2BxdieZ0+BkKOC9aWlpaWlpaWlpaWtrXaNv6y/G5ty2Ffu26tpoUXHx60NLS0tLS0tLS0tLSvkabor5pRdoYq3zgCDP6py63K/fKTUd2gSYtLS0tLS0tLS0tLe0LtI+KyHuY12y3LpSa+8sJwKu85BSpfll1SUtLS0tLS0tLS0tLu4t2McpxSucdJe5sm+Pa3F+aUjIZww9ES0tLS0tLS0tLS0u7tzaFjXWCfwkl0xtMx46SKFz8QClSpaWlpaWlpaWlpaWlfYE2fFh71togsKYHS6Iw7dKu13KQCS0tLS0tLS0tLS0t7Qu0YzG8/1vyF4P/c3nnVHU5Psy6pKWlpaWlpaWlpaWl3Uo7zYxMLXHlmc2gx9IN93G2ZJ5rcq2qLmlpaWlpaWlpaWlpaXfT5in8Z6m/vH/QlGOmasr7zdfz/dIatjMORqGlpaWlpaWlpaWlpd1be5XyyXYiSTuMJI+GrCHiInb8yd1wtLS0tLS0tLS0tLS0u2inE6crrVxLqcByHWGrdkr2XeHcg5aWlpaWlpaWlpaW9k3aLxrSpnxby0tFmD8VMeZRJbS0tLS0tLS0tLS0tC/QTuTSvXZ13XDnMmwci6rLHHJ+n4ukpaWlpaWlpaWlpaXdRZsyagWa0n5XniNZijBrOWbb/lZSgbS0tLS0tLS0tLS0tG/RFtSRM35TweUi43eEHGGq4jzz12hpaWlpaWlpaWlpad+jbcPGNsZMa6/Tp+kpZW5/HuNPS0tLS0tLS0tLS0v7Iu0XqbuUgyslmnW4ydT+lhOKzbm0tLS0tLS0tLS0tLTv0eaR/U2cOAWLhVdzf20TXT5jxKiUlpaWlpaWlpaWlpZ2Z+1U6VhKJY/Q4DaN55+CwKMrs0xT/acV3Ef8WWhpaWlpaWlpaWlpaffWNqFfnr1/Lm+e8oEj5/QWAeT53ZQSWlpaWlpaWlpaWlraLbVpRkieXLLucqt5vkTJI00eWwJoaWlpaWlpaWlpaWnfpK3ZuE9B5Xim6a4wquQMnXarzdhfR5G0tLS0tLS0tLS0tLRbaY9cSJm61+4Pubq92R/fJVdd1m/Q0tLS0tLS0tLS0tK+QpvGO+YF2Efun8vNbKNsVkt9dvd84NFbaGlpaWlpaWlpaWlpt9eWcSMrQGl6O0JLXE7TxYxfyiAuZ13S0tLS0tLS0tLS0tLup03TR6arTJlsxpe0rW7Tj5HqPrut2rS0tLS0tLS0tLS0tDtrp0CueM4u4LsW5ZjT88pbNad9PdWflpaWlpaWlpaWlpZ2K206p5lXcs/ppZhwXaw5QqTaJAC7qktaWlpaWlpaWlpaWtr9tCXqO8Im61UQ+MWe63TfIjRd5iJpaWlpaWlpaWlpaWm31KYJItMckrQUe1FXmYLKI8Sn9fDlVH9aWlpaWlpaWlpaWtr9tNP0kfLPKfN2lVAy/a0dOlnmn4zwQp9rRGlpaWlpaWlpaWlpabfSTjm4WmaZY8xmvVr+HY6cHkxFmCXrSEtLS0tLS0tLS0tLu7f2flhTB5krIlcj+9NC7bbqMt33ORdJS0tLS0tLS0tLS0u7izaNi7xXP05puvN5xHq+SIo7m/65Nm9IS0tLS0tLS0tLS0v7Eu14RnhNmm6R7Btd2ebIe9zSfelwWlpaWlpaWlpaWlra3bXrqK/wzm6M/5HffvHONUeYvkZLS0tLS0tLS0tLS7u7dszXsTi7DTkXf6Rxke0C7PF1do+WlpaWlpaWlpaWlnYf7bEIIEv811ZiHl0V5xXWqzVbsL+JImlpaWlpaWlpaWlpabfUppCuPbvdcz3NHCnlk/W7OYQdqykltLS0tLS0tLS0tLS079COUFzZ7FhbtNOlYDEt1B6lz46WlpaWlpaWlpaWlvbt2qOMEbkfO55nT4nCM480KbwzJPuub7Zg09LS0tLS0tLS0tLS7qfN+DqbJG2yTq9WJpKM/EG5JS14o6WlpaWlpaWlpaWl3V07coNb3qxWn17mizzKJ9MGtvK8MzTb0dLS0tLS0tLS0tLSvkX7/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817W9Rdol/1PnhcgAAAABJRU5ErkJggg==" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 20, + "total_amount": 20.2, + "history_id": 1677340905412, + "id": 55094059932, + "date_created": "2023-02-25T12:01:49.292-04:00", + "date_last_updated": "2023-02-25T12:04:00.000-04:00", + "date_of_expiration": "2023-02-26T12:01:49.106-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-02-25T12:03:11.000-04:00", + "money_release_date": "2023-02-25T12:03:11.000-04:00", + "wasDebited": true, + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0, + "ticket_url": "https://www.mercadopago.com.br/payments/55095321700/ticket?caller_id=1310149122&hash=6c50eaaf-2a5f-4be4-a6b8-fd6340b379a5", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dW47cNhAFUO5A+9+ldqDAiB8t1i12T2IEsXj0YXhGI+lIfxdVLI7rDzrOQUtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v7+7VjPo5vvzt+nvjxv29XzX/36wbfzx5/3338fM6YnvH9d7c/fn1avT0tLS0tLS0tLS0tLe3ztcdrZJt+TMbpXRL019+lF0rXLhi0tLS0tLS0tLS0tLQbaCfK6wXnPUpe94dNbzWlyCaplnh5LBi0tLS0tLS0tLS0tLR7as9QZauA4mledwqGr7zpH1paWlpaWlpaWlpaWtp7m2WOg1OoPBY58bXN8tfZqRPzoqWlpaWlpaWlpaWl3V2b8anXMtX+psVxRzAeIUWmy/5JjygtLS0tLS0tLS0tLe2frl3J/sN//u1MFVpaWlpaWlpaWlpa2j9Um4/zXqY7uw7LcZ8FeYWyX/W83rRWEIOFlpaWlpaWlpaWlpb22dqzJLhykzOU+G4v1B5ljP+0nK7O919W92hpaWlpaWlpaWlpaR+qnRaupZmRU4AsafMqY0mmnDh9h7bbM3wqWlpaWlpaWlpaWlraJ2vLTUZIh6k4d5V3maBT5CwVv1QjHOFdaGlpaWlpaWlpaWlpN9C+C4tX2W1tTS5VwOZ1F1+JlpaWlpaWlpaWlpZ2K23elzq1VB6hT7O2Y7a9ljlP1s9CS0tLS0tLS0tLS0u7j7aQm9bLPK2/JssFoM2JV5cxaWlpaWlpaWlpaWlpN9DmMZC1fTJNlCwbqB3dkrgrr3xLufNN1yUtLS0tLS0tLS0tLe3TtOnIK9+O0leZ2jHLC9Xj9X7nIlnS0tLS0tLS0tLS0tJuol2N7C9r5c4yUGRKh2m4SXlabdYsS+cOWlpaWlpaWlpaWlranbQlJ14xzdVxI6u2zbScLt20vP1HexDQ0tLS0tLS0tLS0tI+R9v2X6YRJNd9bVuKfu12bbUouDh70NLS0tLS0tLS0tLSbqNNqW/aIm2MVT1whBn97R5rzUbZuRRIS0tLS0tLS0tLS0u7j/bWEfka845c4itTRUap/ZXldOOObx70YdclLS0tLS0tLS0tLS3tU7RllGNtfMxnU4dlc0WKnO+C5kVLS0tLS0tLS0tLS7uNdiw2wJ7C4pQ2U8FukpVy3vSB0jK5c/42tLS0tLS0tLS0tLS0T9aGk6PU6toQeIUeyqlQmPbSrqXF5SATWlpaWlpaWlpaWlraDbRpIdw02j8lxjqqZD34P7d31iEotLS0tLS0tLS0tLS0+2hTOS9vcf31qt3b2ZLtXBNaWlpaWlpaWlpaWtp9tHmA43l/2LgHzZHbMdO7TKNKJlmp6Z2xAEhLS0tLS0tLS0tLS/tsbT3aiSR537WjGw1ZI+IiO35xbzhaWlpaWlpaWlpaWtqnaMvKt1FiY6nzjTI4shxH2FU7Ffuu8NyDlpaWlpaWlpaWlpZ2J+0HC9KmelvLm/7464kxjyqhpaWlpaWlpaWlpaXdQDuR19P605DIHBvHousyR87Pa5G0tLS0tLS0tLS0tLRP0aaKWh4SOcrqtanXsnRdXrkds13+VkqBtLS0tLS0tLS0tLS0+2jbpslUeUsDStINxqjbbZ+ldzNdRktLS0tLS0tLS0tLu4+2jY1txkzbXqez6S5lbn8e409LS0tLS0tLS0tLS7uRto1+6xpcSptT0JyWv+WCYlMypKWlpaWlpaWlpaWl3Ufb7XAWc2Ia9587LJtey/wG56KLk5aWlpaWlpaWlpaW9unaqdOxtEoeYYHbNJ4/5cm65dr0bdIwydTtSUtLS0tLS0tLS0tL+3xtXeBWdq2+yt1Tw+V0q1IeHN390rW0tLS0tLS0tLS0tLT7adOMkNxh+XaVW3p2ftAIZwctLS0tLS0tLS0tLe2G2itU49ahso4vaXsyc9dlG01PWlpaWlpaWlpaWlravbRHbqRMi+OmVXNtq+T6XXLXZb2ClpaWlpaWlpaWlpZ2C20a77gOgaUKeOY5kmkb7elNpxVynYWWlpaWlpaWlpaWlvbx2jyUP/VaplVuUwxdLGuLnyBVEN/PuqSlpaWlpaWlpaWlpX2UNk0fmY40KTJ1TrZL3aaPkfo+u121aWlpaWlpaWlpaWlpn6ydglzxnF3gayuD9f3KWzVP+3iqPy0tLS0tLS0tLS0t7aO0R3hOM6/ktaZXGylTm2U78780XF6fdF3S0tLS0tLS0tLS0tI+UTulyPW4kRoC2ymTuRNzCpBjMf+ElpaWlpaWlpaWlpZ2H22aIJJaJcsEyJFX0uVQeYR8euVZlbS0tLS0tLS0tLS0tPtoc8Eu1e8+2IZtXd1LoyZHeKHllBJaWlpaWlpaWlpaWtqHa5MsPTZXAUdIh+eiPJiaMAONlpaWlpaWlpaWlpb28dpSybvy/tU5O16vjy3GugauHTDZbQZAS0tLS0tLS0tLS0v7ZG273q0t8ZUrrhAHr/J+LX5RN6SlpaWlpaWlpaWlpd1HW0eVpDLd648TZSzbNs+8Bq4cRxhnSUtLS0tLS0tLS0tL+2ztOvUV3tnNIWn7L888oCTVCMu8ElpaWlpaWlpaWlpa2g20bZDLs/fTj80m1rlkeC03wB4fV/doaWlpaWlpaWlpaWmfoz1CgGzGjUxVuzYJlhi6Gvz/tRRJS0tLS0tLS0tLS0v7SG2JdLfhISUONvtcp8vCs0cKqYtraWlpaWlpaWlpaWlpd9Qei17LvIFaWk6XwuIZNtQeZZ0dLS0tLS0tLS0tLS0t7TWNG3l97Lg/+yr4NNKk8M5Q7Lve7IJNS0tLS0tLS0tLS0v7UG3G1xSZJo2kVyt/N/KJ9L3ep0haWlpaWlpaWlpaWtqHaUde4JZ3Vju7ASVpcsnIO7ClLs70SFpaWlpaWlpaWlpa2i20//+DlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlva3af8CP/KbUvmRbJkAAAAASUVORK5CYII=", + "qr_code": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter550953217006304FF73" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 20, + "total_amount": 20.2, + "history_id": 1677342602434, + "id": 55095321700, + "date_created": "2023-02-25T12:30:06.615-04:00", + "date_last_updated": "2023-02-25T12:32:35.000-04:00", + "date_of_expiration": "2023-02-26T12:30:06.238-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-02-25T12:32:20.000-04:00", + "money_release_date": "2023-02-25T12:32:20.000-04:00", + "wasDebited": true, + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 3.9600000000000004 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 403.96, + "overpaid_amount": 0, + "installment_amount": 0, + "ticket_url": "https://www.mercadopago.com.br/payments/55103336998/ticket?caller_id=1310149122&hash=9ef20da2-8e33-4bd3-baa0-734357868736", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2ElEQVR42u3dW47jNhAFUO6A+9+ldqBgkJnYZl1SBjIIMuTxR6PdtqTD/ivUq91/0OtqtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/X9vGV//xt/7PB79++3HV3z9eH7xu8PODX9e+vvf+jF8fvL78flll0NLS0tLS0tLS0tLSHqLt7yHb8DY/7H5/zvtv6ysmn74fMjFoaWlpaWlpaWlpaWkP0A4B5HDBEEpmxfUZWdZnvwLE17WLwJWWlpaWlpaWlpaWlvZs7fV5k/dLWwkbP9J+JQH4kg2nTz9oaWlpaWlpaWlpaWlpQ5llSrrl+K991lAO2hYO1N7PQktLS0tLS0tLS0tLe6x2ik8fvJ6diiZLD1zK6fWv8oG0tLS0tLS0tLS0tLSHaKdTSv7bH/92pgotLS0tLS0tLS0tLe0fqs2vOtSxjCVJH9yha27aDVeThzMLLS0tLS0tLS0tLS3t3tqrRHDlduvmuHtRdZnwOY04TfbR0tLS0tLS0tLS0tLurn09NvGGtrYrvM0tbLXWMpVeTpKMDzEvLS0tLS0tLS0tLS3tVtorzNmvwV0ZX3LPVrOltrbVM57uQktLS0tLS0tLS0tLu7v2fh8tMtwuJeLeE3YtTylJNZlpXknau/ZcI0pLS0tLS0tLS0tLS7uZ9grQaeatf6bu7hJormPM9fK14X60tLS0tLS0tLS0tLRHaHMP3HCTSa1lSQ+miPFezPdfMG5aWlpaWlpaWlpaWtpDtENtZIoEp8Mfywa2XqLDLJv02eUIlJaWlpaWlpaWlpaWdm/t8LChmjLtuU6zIN9vdX2m/eqrxJ1D8nBRdUlLS0tLS0tLS0tLS7ufNi9Lu/Pw/pLdG1ripn+rTyvxaRpuQktLS0tLS0tLS0tLe4o2vc0tcauSynLcVuLElFDMVZw3LS0tLS0tLS0tLS3tIdpSNNmWI0juvNi6TCm5QhR5LQ755RZsWlpaWlpaWlpaWlraHbXDQMi67Lpk6Ca8HCLeJZOXp/qnVCAtLS0tLS0tLS0tLe0B2pK/a8s914/1lyWdd5W0X8kW9och/7S0tLS0tLS0tLS0tDtrU0Naejtk6PJEkskVKU5cBJr9IealpaWlpaWlpaWlpaXdTJsok2H7aTRkDkj7YoHa8A9aCGhpaWlpaWlpaWlpaQ/Qln63K6yuXg96bGFmZF/sC0jZwjTIhJaWlpaWlpaWlpaW9iRtK1McB22unOwhsuzLESRXeFAagkJLS0tLS0tLS0tLS3uKdnr3EiL2vIutPHaV8UtDUPLBaWlpaWlpaWlpaWlpT9EOdZWlK22IMXvIy/Ulqi1mS+aqy05LS0tLS0tLS0tLS3uWdrhJieHiMMnhVKUws4V/QfuccHKXSf/P29ZoaWlpaWlpaWlpaWn30w7TQhZTSuoGttIIt6JMg89ydaelpaWlpaWlpaWlpT1JO5Dz2z4rmqwpuTybpIaXKWLMo0poaWlpaWlpaWlpaWmP0qaqy4JaD5gcAs3a5ZZi1rQKm5aWlpaWlpaWlpaW9ghtHhI52VC9GDWZIsGhG+4qCcDF8uyblpaWlpaWlpaWlpb2QO1jXDeUaE7PXFazTSLQp1iUlpaWlpaWlpaWlpb2AG1qXCt3mmT8Sudbmgo5rMdueeb/4kVLS0tLS0tLS0tLS7u3drGcuoXt1n3WK9cKqsw6STWerWT8HmJeWlpaWlpaWlpaWlra/bRDHeT9HifmU915gv9wvkVl55UnSqaj0dLS0tLS0tLS0tLS7q4t6bc0oGQSba4DyHS+ISAtGwFSApCWlpaWlpaWlpaWlnZ37b2cuF9vkrJ7QxA4fGWaLUwFnOGmtLS0tLS0tLS0tLS0O2un4WDebl3zcnn6f3seF1lLOWfL3GhpaWlpaWlpaWlpaXfWTm9SEnF3ifoWW9laGA35bdVlodHS0tLS0tLS0tLS0u6sLWFjzxP3Q5Nay1P479xil+aaLKo4Oy0tLS0tLS0tLS0t7SHaVPM4TeKVbFx9pfOVkHMVwj5MKaGlpaWlpaWlpaWlpd1Pe4UCySs0s/XcNVeCxfaZ3etZlr6XL6OlpaWlpaWlpaWlpT1AW1rdrtL5thj+OGy87uHZqacuhbAXLS0tLS0tLS0tLS3tmdoSJ/Ywxr9WWE6XYq+P+xSVdlpaWlpaWlpaWlpa2rO0H+T3O/VFbWTpaFtfe+cvh0mRX9SI0tLS0tLS0tLS0tLS7qi9P1vdegjzpum3aWFmSh5OvpdXZtPS0tLS0tLS0tLS0h6gnXa0DQ9bJ/FKSeU1m1KyrrrMkSUtLS0tLS0tLS0tLe3O2oQqabrJdrRy0iu0v9XzPTXMfVV1SUtLS0tLS0tLS0tLu6l2msQrPXC9RIepTjPv0r7D8uzpi5aWlpaWlpaWlpaW9gBtGe9Yo770nJLOu0v+Ln2lBK49JBQ7LS0tLS0tLS0tLS3tIdo8LrKWQA7GlJybVk6WqZCTbOE33XC0tLS0tLS0tLS0tLSbalv8Wu1Zq2fJYei0Q+7OQ1BywSUtLS0tLS0tLS0tLe0B2vQanrg4Ri2pLI1w07RfD9Fma+2bGlFaWlpaWlpaWlpaWtqNtDmQS7/12aLsO28ESEHq+5cnd/4yu0dLS0tLS0tLS0tLS7uPtra6Tfvi3mPHNBryzk8sg0yu3Pn2TRRJS0tLS0tLS0tLS0u7pTaFdDkITAP9rxKJpuEmJYPYn0JYWlpaWlpaWlpaWlra07U1bEwdcjkvV68oe7NT3PlVdo+WlpaWlpaWlpaWlvYobR3ePx01mf82OeS02W65BZuWlpaWlpaWlpaWlnZTbcH3PKg/xX8lxVfn9peJJCkWnVRx0tLS0tLS0tLS0tLS7q+thY9DAFnuNJlSkkLTcshpGHqFM9PS0tLS0tLS0tLS0h6g/f+/aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/m/Yv5+S5wPHlkOQAAAAASUVORK5CYII=", + "qr_code": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d127175204000053039865406403.965802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter551033369986304804E" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 400, + "total_amount": 403.96, + "history_id": 1677356987387, + "id": 55103336998, + "date_created": "2023-02-25T16:29:48.037-04:00", + "date_last_updated": "2023-02-25T16:29:48.037-04:00", + "date_of_expiration": "2023-02-26T16:29:47.844-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 9.9 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 1009.9, + "overpaid_amount": 0, + "installment_amount": 0, + "ticket_url": "https://www.mercadopago.com.br/payments/55096573577/ticket?caller_id=1310149122&hash=90c37e8f-66e2-44f0-8c67-647e232f6bda", + "qr_code": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d1271752040000530398654071009.905802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter5509657357763045E7D", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIy0lEQVR42u3dW47jNhAFUO5A+9+ldqBgkMdYrFu0ggRBRjz+MNwtSzry30UVi+P6hV7noKWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaX997Vjfh0//nf8deDPTz/OGj8/TRf44+jxeZfpQLnU8TtlfN7txqClpaWlpaWlpaWlpd1EO93iKDFuhNcn+ZyvfrvjmZ+vaFsGLS0tLS0tLS0tLS3tBtopQE4npK/8Qb7uxp+86/PTlBM/D7TBlZaWlpaWlpaWlpaWdm/tVHS7RcTQFplKcnNlsNwyvdHS0tLS0tLS0tLS0tLGiHiFZJnyX1P7m5owP59vhKBJS0tLS0tLS0tLS0u7n3aBn5bETaedy6LgKKhy4Pje/ElLS0tLS0tLS0tLS/t2bTul5L99+6czVWhpaWlpaWlpaWlpaX9RbX6dechIeapbce6ziNcup6ur4b5baGlpaWlpaWlpaWlp3609u9GQ6cCtsLd+jHKp1cz/6St9iqSlpaWlpaWlpaWlpX2bdrpmu1wtxcv2MfIDPVtnVyah0NLS0tLS0tLS0tLSbqD9vOPIC9zKLMjbpth5oH86cHWbbN9+jO89orS0tLS0tLS0tLS0tO/RphEkqaaXPrVbZh+lfpe6LtO+a19SJC0tLS0tLS0tLS0t7cu1paaX2iKnrFf/nAp7U3mwjau5RZOWlpaWlpaWlpaWlvbd2nKlqUuylt/C5UY6d51Kv4XPi5aWlpaWlpaWlpaWdhPtVFabCmwlLI6QDpNxasycZEco56Vb0tLS0tLS0tLS0tLSbqDNFz5zw+V0NFUG21kni+GUR6gqXrS0tLS0tLS0tLS0tJto00bUZQlbbalMS+LKWMlcqxupnJcbOGlpaWlpaWlpaWlpabfQNtNHEjQHvpaXNgg4855tJYFetLS0tLS0tLS0tLS022iPsCBtGv44RtyfrcjSmrrRjew/l8W+g5aWlpaWlpaWlpaWdhtt0yo5DSNpJ/gvlrqNbhfsZq7Jk65LWlpaWlpaWlpaWlrat2nTfUrGTGNJmjmSZeVbKiMe4c+65zYtLS0tLS0tLS0tLe0m2tWMx6nsl0dIpqGT4/4YjTHvIXCsUiQtLS0tLS0tLS0tLe3btNNquPDdftRk6qFM6+emq0wFwJQ2H04poaWlpaWlpaWlpaWlfYF2mj4yVe0WK+S+7oJdfof0Y0zG712XtLS0tLS0tLS0tLS0L9WOMOOxBsM8VjKR0+5tzbjI0nU5+umRtLS0tLS0tLS0tLS079MuAuTRLWE7w9z+o8TB1FeZF9Fd3bI7WlpaWlpaWlpaWlraDbSpLjedP5Xp2iklKVmW57u6qf5T2qSlpaWlpaWlpaWlpd1He93LapPiDLHxKrzUmFmGljTJMrVyPpl1SUtLS0tLS0tLS0tL+w7tZw/luLdZtrc98qSRcoFUD7zCGP/mXFpaWlpaWlpaWlpa2i207fltWMxr2+q5i6n+TWLMo0poaWlpaWlpaWlpaWm30ibZt0VvdZDJYvTJFRJo+2PQ0tLS0tLS0tLS0tJuoF3kujpfJCS8kZLg8+3VUgKlpaWlpaWlpaWlpaXdT/stE14hVF6LzslUqys/wbjvHDA1f9LS0tLS0tLS0tLS0u6i/Uxz436lq6yVa8eXlH3XGk+e279+0dLS0tLS0tLS0tLSvl17ho7II5BH2Rk7nVGSYJ08mQej1B+IlpaWlpaWlpaWlpZ2C+1Uzitj/Nedk81ebFN3Zn6Cupd23iOblpaWlpaWlpaWlpb23dqyB/XtmikYFsqDPs2rjCBJ4yfTVWhpaWlpaWlpaWlpad+vXbQ7jgcZMzVcliR4dRW/K2+eTUtLS0tLS0tLS0tLu5N2de+2LTJFztTKWRbCnSGVHuG+tLS0tLS0tLS0tLS0u2gnSm6GrI+WNrGeLpqeOf1A6Za0tLS0tLS0tLS0tLQ7aWt8+0yMqxVy5Su1kle2UrvyJtvpDFpaWlpaWlpaWlpa2u20tThXHqNds3aVQSZ5XGRzt+VO27S0tLS0tLS0tLS0tG/WrmtwaTVcHvc/PWTahq0m1RJXc7alpaWlpaWlpaWlpaV9s7Ydtl+S4LGMg+3gkStvBjAJcsmQlpaWlpaWlpaWlpZ2A20pv4379JErZMc6LnIa2Z8y5nrIfzmXlpaWlpaWlpaWlpZ2F23Odc1ytdIleeU7truypQElbY6lpaWlpaWlpaWlpaXdRHssd7Ie93mOaYFbSqAjLHBLhcJ1xqSlpaWlpaWlpaWlpd1A2zZNpkyYym+fDzTKcJP0aE8XzNHS0tLS0tLS0tLS0m6mXUwpScNIUsHuXPRurguA7Y9BS0tLS0tLS0tLS0u7mTYly1Lxm27WNmbeKoNtn2aOkhctLS0tLS0tLS0tLe1O2hIWV/uk5S9PyfIqtb/pbQqay8V2tLS0tLS0tLS0tLS0b9YWzxnqbefzHdjaLs626zL3adLS0tLS0tLS0tLS0m6mHSUE5iVsqSh4hGQ5XfnMe6yluSZhcRwtLS0tLS0tLS0tLe2btelVxpJMc/unhWvNnymVPtif7UmPKC0tLS0tLS0tLS0t7Yu06yA3/a+81dPSWy72pdPG4+oeLS0tLS0tLS0tLS3te7THIkCWjdHOsGZtSoLtp3N5lYcpkpaWlpaWlpaWlpaW9pXaxCsZs50eeYU8OeZJIyONi8wRdqymlNDS0tLS0tLS0tLS0u6hPboxkNdiouSUGNuttVN2/DvVPVpaWlpaWlpaWlpa2q20Zxfurhwqy6iSYzHpf7rHdD1aWlpaWlpaWlpaWtp9tO29fxbn1rP3015suZJXF8fl0Se0tLS0tLS0tLS0tLT7aGvjY7lIPZBkJQmObqD/EaZHTttj09LS0tLS0tLS0tLS7qL9/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817W9ibLveeVntBwAAAABJRU5ErkJggg==" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 1000, + "total_amount": 1009.9, + "history_id": 1677357024740, + "id": 55096573577, + "date_created": "2023-02-25T16:30:25.343-04:00", + "date_last_updated": "2023-02-25T16:30:25.343-04:00", + "date_of_expiration": "2023-02-26T16:30:25.167-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.34650000000000003 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 35.35, + "overpaid_amount": 0, + "installment_amount": 0, + "ticket_url": "https://www.mercadopago.com.br/payments/55102778083/ticket?caller_id=1310149122&hash=732fd12f-b6ab-488b-bf46-c6e842577653", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIyElEQVR42u3dW47jNhAFUO5A+9+ldqAgyMti3aKVTBBkxKOPRnfblg79V6jXuH6i6xy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tP++dszX8ev/jj9f+OO3Xz/1cU03+P3V47e7jz+fM6Zn/P6/25s/n3Zj0NLS0tLS0tLS0tLSbqI9PkO26c/PuzdnSdC/3pcOlD67YNDS0tLS0tLS0tLS0m6gnSjTBz5DySkmvJ2qRJFNpFrCy2PBoKWlpaWlpaWlpaWl3VPbZPJKTm/ypOPeIsspxiw/aGlpaWlpaWlpaWlpae9lluk5kzYVTT4vvUx3oaWlpaWlpaWlpaWl3U+b8bVDrpzgLN1rn+9r++em0svrh2pEaWlpaWlpaWlpaWlpf3ZtO6Xkv/3xozNVaGlpaWlpaWlpaWlpf1Jtvs6SiJsSdmWsZJv2q55804WFlpaWlpaWlpaWlpb23dqzRHA5iXfcp0LeDtReZYz/1E53hhmUi+weLS0tLS0tLS0tLS3tS7Wfv02damc3JHKKNq8wVvIskyJTi91UiRkeSUtLS0tLS0tLS0tL+2ZtuUltf8vJuZZ3lbgzrWH7fNDIQ0toaWlpaWlpaWlpaWn30ZYxIhP5KtvWplhvel+qyUzHbWdL0tLS0tLS0tLS0tLSbqbN+DOUVKYCydF5UqvbmXvl0ldFS0tLS0tLS0tLS0u7hfYzCFwNIynT+o/uaC2gjROvLsakpaWlpaWlpaWlpaXdQJtniaTU3bkIEdMMk1KJOb25fgW5V46WlpaWlpaWlpaWlvbd2nTlzrdpNklTjrnIDI7Q73YuIktaWlpaWlpaWlpaWtottFPn23ST3L12lv65BPhsibvuJ62PTOsDaGlpaWlpaWlpaWlpt9C2c/ZTArDUWrZxZ7OLLYSI9fSPdhDQ0tLS0tLS0tLS0tK+R9vKUnh5lYAvT/A/QxSZhpu0rx60tLS0tLS0tLS0tLTbaFPU16xIS3HndL7pQPku02bs6VbLGlFaWlpaWlpaWlpaWtqXaq8SDrbZuMk4UVLnW5aliDF/N7S0tLS0tLS0tLS0tG/Wrkc5lldrFjA1x5X71TixjVRL8SctLS0tLS0tLS0tLe3btWn44/Vl/1kdCJmG/FdyejUPMjloaWlpaWlpaWlpaWk30YYX458PgsB0lnUsWuLOR1WXtLS0tLS0tLS0tLS0b9SOsvCsRIptM1uaD3l2z66vliLM8WXWJS0tLS0tLS0tLS0t7au0pbftLCm+9L40OLJ0w32dLVnC0PNLFElLS0tLS0tLS0tLS/s+bZ7CP3lGSPGdXa3lkePT6X2L4POgpaWlpaWlpaWlpaXdS5tKII9yllRhmTra2tmS32LHf7IbjpaWlpaWlpaWlpaW9gXa6Yl5+kgTaKZ5JW3ImZN96/JOWlpaWlpaWlpaWlraDbQPGtK+3X3k+O/vR4x5VAktLS0tLS0tLS0tLe0G2gnVdq+FishV2DgWVZc55Hyei6SlpaWlpaWlpaWlpX2LNmXUvg2JbIf8X+GFWo7Ztr+VVCAtLS0tLS0tLS0tLe0u2pK1OxY5vZwATJWT9S3rjQB5KxstLS0tLS0tLS0tLe27tVOaLp/gyJNLUhRZPNcdcI46ujJZaGlpaWlpaWlpaWlpt9KW2SRNTu9btJkWaqfp/2kwSh1JSUtLS0tLS0tLS0tLu4W2PGcK7s6c7GuXpaXwsqCmE9TfaGlpaWlpaWlpaWlp99GmJF472TGP52+KJj/LLJvT5xa7g5aWlpaWlpaWlpaWdidtieueBZDtUuwcXtasXTpzmvlPS0tLS0tLS0tLS0v7fu0oK67bzWqpa650ud1KL/OfKYBMN6WlpaWlpaWlpaWlpd1H2+TvUqBZknh5RVodDTm+3flxFElLS0tLS0tLS0tLS/sq7dGl2q77s+vVlkquz5KXbNdP0NLS0tLS0tLS0tLSbqFN4x1LSJfa1Uboi5vWY59lj1up9ryVd3YWWlpaWlpaWlpaWlra12uncSMpEkxVlylNt2xrixm/3Bx30NLS0tLS0tLS0tLS7qTNhY816is5uBr/LSZKjvtZat3nk6n+tLS0tLS0tLS0tLS0b9Oup5SkWZBTWWT5RD3fFCe2p38y1Z+WlpaWlpaWlpaWlvZ92qP0u6WBkCUfWJ+TyizTzP88avJ6UnVJS0tLS0tLS0tLS0v7Pm0pvTzCArUmCExpupwAHGU/W6rxLN8XLS0tLS0tLS0tLS3tFto6GrItlWyXWOfd12dorGurLuv2bVpaWlpaWlpaWlpa2i20+WFpQ/W5nE3yILuXRk22M1FoaWlpaWlpaWlpaWn30Y7FVMg0N+T5erWpz269ALuJaGlpaWlpaWlpaWlpad+uLVHfCLymra0d2V8Wap+LqsuyeHuZi6SlpaWlpaWlpaWlpX2bNnWvfX5qFFSKGPN8kRqGpqrLdcxKS0tLS0tLS0tLS0u7iXbc71lrKMtjp2TfWJRtprOkas/yFdDS0tLS0tLS0tLS0m6gTVdZfTbK2P1cQ1lPn/N8V+iku8oISVpaWlpaWlpaWlpa2i20Y76OLjC8FqP4203WeVxkuwB7PM7u0dLS0tLS0tLS0tLSvkd7hAAyoc571m6UzrdcxZlu2kzwfxJF0tLS0tLS0tLS0tLSvlKbQ7pjMRUyBZopIA3P7iPV6ZG0tLS0tLS0tLS0tLR7a8vwkDOvwn7QTlfqNJvY8WF2j5aWlpaWlpaWlpaWdg/tZ+pu5JH9efDIdW+TG7lhbrpfasWjpaWlpaWlpaWlpaXdR7uuuiy3G2FtWjNCMnXcrZvjfrQbjpaWlpaWlpaWlpaW9qfTplLJpvNtSsTl+SI3fNrAttjUlhe80dLS0tLS0tLS0tLSvln7/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817S/WesxQ9BOm/QAAAABJRU5ErkJggg==", + "qr_code": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540535.355802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter55102778083630472DE" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 35, + "total_amount": 35.35, + "history_id": 1677366880189, + "id": 55102778083, + "date_created": "2023-02-25T19:14:40.808-04:00", + "date_last_updated": "2023-02-25T19:14:40.808-04:00", + "date_of_expiration": "2023-02-26T19:14:40.616-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 35,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "original_amount": 234.59, + "total_amount": 234.59, + "history_id": 1677710195891, + "id": 1677710195891, + "date_created": "2023-03-01T22:36:35.891Z", + "date_last_updated": "2023-03-01T22:36:35.891Z", + "date_of_expiration": "2023-03-31T22:36:35.891Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "payment_method": "whatsapp", + "description": "Deposito de um valor R$ 234,59 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "original_amount": 35.99, + "total_amount": 35.99, + "history_id": 1677710725908, + "id": 1677710725908, + "date_created": "2023-03-01T22:45:25.908Z", + "date_last_updated": "2023-03-01T22:59:31.236Z", + "date_of_expiration": "2023-03-31T22:45:25.908Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-01T22:59:31.236Z", + "money_release_date": "2023-03-01T22:59:31.236Z", + "money_release_status": "approved", + "wasDebited": true, + "payment_method_id": "whatsapp", + "payment_method": "whatsapp", + "description": "Deposito de um valor R$ 35,99 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "original_amount": 450.32, + "total_amount": 450.32, + "history_id": 1677711669840, + "id": 1677711669840, + "date_created": "2023-03-01T23:01:09.840Z", + "date_last_updated": "2023-03-01T23:09:24.561Z", + "date_of_expiration": "2023-03-31T23:01:09.840Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "money_release_date": "2023-03-01T23:09:24.561Z", + "money_release_status": "approved", + "date_approved": "2023-03-01T23:09:24.561Z", + "wasDebited": true, + "payment_method_id": "whatsapp", + "payment_method": "whatsapp", + "description": "Deposito de um valor R$ 450,32 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 600.2, + "total_amount": 600.2, + "history_id": 1677716372778, + "id": 1677716372778, + "date_created": "2023-03-02T00:19:32.778Z", + "date_last_updated": "2023-03-02T00:20:44.134Z", + "date_of_expiration": "2023-04-01T00:19:32.778Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-03-02T00:20:44.134Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 600,20 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 602.99, + "total_amount": 602.99, + "history_id": 1677721233156, + "id": 1677721233156, + "date_created": "2023-03-02T01:40:33.156Z", + "date_last_updated": "2023-03-02T02:17:46.177Z", + "date_of_expiration": "2023-04-01T01:40:33.156Z", + "operation_type": "regular_payment", + "status": "in_process", + "status_detail": "pending_review_manual", + "currency_id": "BRL", + "money_release_date": "2023-03-02T02:17:46.177Z", + "money_release_status": "in_process", + "description": "Deposito de um valor R$ 602,99 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 34.89, + "total_amount": 34.89, + "history_id": 1677761687105, + "id": 1677761687105, + "date_created": "2023-03-02T12:54:47.105Z", + "date_last_updated": "2023-03-02T12:58:14.846Z", + "date_of_expiration": "2023-04-01T12:54:47.105Z", + "operation_type": "regular_payment", + "status": "cancelled", + "status_detail": "cancelled", + "currency_id": "BRL", + "money_release_date": "2023-03-02T12:58:14.846Z", + "money_release_status": "cancelled", + "description": "Deposito de um valor R$ 34,89 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 43.78, + "total_amount": 43.78, + "history_id": 1677762883870, + "id": 1677762883870, + "date_created": "2023-03-02T13:14:43.870Z", + "date_last_updated": "2023-03-02T13:17:43.393Z", + "date_of_expiration": "2023-04-01T13:14:43.870Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-02T13:17:43.393Z", + "money_release_date": "2023-03-02T13:17:43.393Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 43,78 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 29.91, + "total_amount": 29.91, + "history_id": 1677822431645, + "id": 1677822431645, + "date_created": "2023-03-03T05:47:11.645Z", + "date_last_updated": "2023-03-03T05:48:12.770Z", + "date_of_expiration": "2023-04-02T05:47:11.645Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-03T05:48:12.770Z", + "money_release_date": "2023-03-03T05:48:12.770Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 29,91 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1677831643976, + "id": 1677831643976, + "date_created": "2023-03-03T08:20:43.976Z", + "date_last_updated": "2023-03-03T08:23:18.262Z", + "date_of_expiration": "2023-04-02T08:20:43.976Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-03T08:23:18.262Z", + "money_release_date": "2023-03-03T08:23:18.262Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1677952604160, + "id": 1677952604160, + "date_created": "2023-03-04T17:56:44.160Z", + "date_last_updated": "2023-03-13T13:32:24.731Z", + "date_of_expiration": "2023-04-03T17:56:44.160Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-03-13T13:32:24.731Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033196645/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678033196645, + "acquirer_reference": "", + "verification_code": 1678033196645, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033196645", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 141586, + "total_amount": 141586, + "id": 1678033196645, + "date_created": "2023-03-05T16:19:56.645Z", + "date_last_updated": "2023-03-05T16:19:56.645Z", + "date_of_expiration": "2023-03-05T16:19:56.645Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678033196645, + "description": "Compra de 141586 IVIP por 20 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033334564/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678033334564, + "acquirer_reference": "", + "verification_code": 1678033334564, + "net_received_amount": 0, + "total_paid_amount": 38, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033334564", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 269014, + "total_amount": 269014, + "id": 1678033334564, + "date_created": "2023-03-05T16:22:14.564Z", + "date_last_updated": "2023-03-05T16:22:14.564Z", + "date_of_expiration": "2023-03-05T16:22:14.564Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678033334564, + "description": "Compra de 269014 IVIP por 38 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033849155/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678033849155, + "acquirer_reference": "", + "verification_code": 1678033849155, + "net_received_amount": 0, + "total_paid_amount": 42, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033849155", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 297331, + "total_amount": 297331, + "id": 1678033849155, + "date_created": "2023-03-05T16:30:49.155Z", + "date_last_updated": "2023-03-05T16:30:49.155Z", + "date_of_expiration": "2023-03-05T16:30:49.155Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678033849155, + "description": "Compra de 297331 IVIP por 42 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034274118/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678034274118, + "acquirer_reference": "", + "verification_code": 1678034274118, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034274118", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 141660, + "total_amount": 141660, + "id": 1678034274118, + "date_created": "2023-03-05T16:37:54.118Z", + "date_last_updated": "2023-03-05T16:37:54.118Z", + "date_of_expiration": "2023-03-05T16:37:54.118Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678034274118, + "description": "Compra de 141660 IVIP por 20 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034346295/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678034346295, + "acquirer_reference": "", + "verification_code": 1678034346295, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034346295", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 141586, + "total_amount": 141586, + "id": 1678034346295, + "date_created": "2023-03-05T16:39:06.295Z", + "date_last_updated": "2023-03-05T16:39:06.295Z", + "date_of_expiration": "2023-03-05T16:39:06.295Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678034346295, + "description": "Compra de 141586 IVIP por 20 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034463284/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678034463284, + "acquirer_reference": "", + "verification_code": 1678034463284, + "net_received_amount": 0, + "total_paid_amount": 60, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034463284", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 424981, + "total_amount": 424981, + "id": 1678034463284, + "date_created": "2023-03-05T16:41:03.284Z", + "date_last_updated": "2023-03-05T16:41:03.284Z", + "date_of_expiration": "2023-03-05T16:41:03.284Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678034463284, + "description": "Compra de 424981 IVIP por 60 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034665927/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678034665927, + "acquirer_reference": "", + "verification_code": 1678034665927, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034665927", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 141586, + "total_amount": 141586, + "id": 1678034665927, + "date_created": "2023-03-05T16:44:25.927Z", + "date_last_updated": "2023-03-05T16:44:25.927Z", + "date_of_expiration": "2023-03-05T16:44:25.927Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678034665927, + "description": "Compra de 141586 IVIP por 20 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678041814665/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678041814665, + "acquirer_reference": "", + "verification_code": 1678041814665, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678041814665", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 2000, + "total_amount": 2000, + "id": 1678041814665, + "date_created": "2023-03-05T18:43:34.665Z", + "date_last_updated": "2023-03-05T18:43:34.665Z", + "date_of_expiration": "2023-03-05T18:43:34.665Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1678041814665, + "description": "Ganho 10% na pré-venda ao indicar o nosso aplicativo" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 60, + "total_amount": 60, + "history_id": 1678047987815, + "id": 1678047987815, + "date_created": "2023-03-05T20:26:27.815Z", + "date_last_updated": "2023-03-13T13:43:04.618Z", + "date_of_expiration": "2023-04-04T20:26:27.815Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-03-13T13:43:04.618Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 60,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678160538199/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678160538199, + "acquirer_reference": "", + "verification_code": 1678160538199, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678160538199", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 14306893, + "total_amount": 14306893, + "id": 1678160538199, + "date_created": "2023-03-07T03:42:18.199Z", + "date_last_updated": "2023-03-07T03:42:18.199Z", + "date_of_expiration": "2023-03-07T03:42:18.199Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678160538199, + "description": "Compra de 14306893 IVIP por 2000 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678284807612/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678284807612, + "acquirer_reference": "", + "verification_code": 1678284807612, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678284807612", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 142846, + "total_amount": 142846, + "id": 1678284807612, + "date_created": "2023-03-08T14:13:27.612Z", + "date_last_updated": "2023-03-08T14:13:27.612Z", + "date_of_expiration": "2023-03-08T14:13:27.612Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678284807612, + "description": "Compra de 142846 IVIP por 20 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 32 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 400, + "total_amount": 432, + "history_id": 1678325359354, + "id": 1678325359354, + "date_created": "2023-03-09T01:29:19.354Z", + "date_last_updated": "2023-03-09T01:29:19.354Z", + "date_of_expiration": "2023-04-08T01:29:19.354Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês e liberação final" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 3000, + "total_amount": 3120, + "history_id": 1678400755247, + "id": 1678400755247, + "date_created": "2023-03-09T22:25:55.247Z", + "date_last_updated": "2023-03-09T22:27:52.142Z", + "date_of_expiration": "2023-04-08T22:25:55.247Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-09T22:27:52.142Z", + "money_release_date": "2023-03-09T22:27:52.142Z", + "money_release_status": "approved", + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 3.120,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 16 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 400, + "total_amount": 416, + "history_id": 1678401099895, + "id": 1678401099895, + "date_created": "2023-03-09T22:31:39.895Z", + "date_last_updated": "2023-03-09T22:32:36.010Z", + "date_of_expiration": "2023-04-08T22:31:39.895Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-09T22:32:36.010Z", + "money_release_date": "2023-03-09T22:32:36.010Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 416,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 9 parcela(s) 18.00%", + "amount": 108 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 600, + "total_amount": 708, + "history_id": 1678401292954, + "id": 1678401292954, + "date_created": "2023-03-09T22:34:52.954Z", + "date_last_updated": "2023-03-09T22:35:45.264Z", + "date_of_expiration": "2023-04-08T22:34:52.954Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-03-09T22:35:45.264Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 600,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 9 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 708,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 12 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 300, + "total_amount": 312, + "history_id": 1678401795273, + "id": 1678401795273, + "date_created": "2023-03-09T22:43:15.273Z", + "date_last_updated": "2023-03-21T13:21:47.084Z", + "date_of_expiration": "2023-04-08T22:43:15.273Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-21T13:21:47.084Z", + "money_release_date": "2023-03-21T13:21:47.084Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 300,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 312,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23796929000000023493380261020453727300633330" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "10204537273", + "acquirer_reference": "", + "verification_code": "10204537273", + "net_received_amount": 0, + "total_paid_amount": 23.49, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "bradesco", + "external_resource_url": "https://www.mercadopago.com.br/payments/55645430279/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55645430279&payment_method_reference_id=10204537273&hash=557e269b-6b88-40a8-b95a-ce41d6734e10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "bolbradesco", + "original_amount": 20, + "total_amount": 23.490000000000002, + "history_id": 1678595791470, + "id": 55645430279, + "date_created": "2023-03-12T00:36:32.384-04:00", + "date_last_updated": "2023-03-12T00:36:32.384-04:00", + "date_of_expiration": "2023-03-15T22:59:59.000-04:00", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23791929000000023493380261020453555300633330" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "10204535553", + "acquirer_reference": "", + "verification_code": "10204535553", + "net_received_amount": 0, + "total_paid_amount": 23.49, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "bradesco", + "external_resource_url": "https://www.mercadopago.com.br/payments/55645448309/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55645448309&payment_method_reference_id=10204535553&hash=3a19b388-0268-4177-bbf8-d1aeb0efa481" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "bolbradesco", + "original_amount": 20, + "total_amount": 23.490000000000002, + "history_id": 1678595892940, + "id": 55645448309, + "date_created": "2023-03-12T00:38:13.379-04:00", + "date_last_updated": "2023-03-12T00:38:13.379-04:00", + "date_of_expiration": "2023-03-15T22:59:59.000-04:00", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0, + "ticket_url": "https://www.mercadopago.com.br/payments/55645618353/ticket?caller_id=1310149122&hash=8fcfd6de-ecd4-4d03-89e3-76d87270fb3b", + "qr_code": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540520.205802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter556456183536304B75F", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJgElEQVR42u3dQZLiyA4G4PSKY3BUc1QfYZasyImKnoaUlC6oefEieuyPTRMNtj/XyhJ/Klv/419/NUZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGxj/beG/xdf31P+vvj369WXq//f7o12v5Onj79eb2+z/X13m3dvn6Z/jon/+pRw0nZGRkZGRkZGRkZDyLcfzwC1LfROP6usjXdx7hzrbXRS9fH63jmWeHTxmMjIyMjIyMjIyMZzDefj+tPy/769H+n+v31zP+syB4pKLh8rqzRzAOR9Vr3V8FCiMjIyMjIyMjI+PJjWPTfaBlderHP4YG/DrJwwz3cWdkZGRkZGRkZGRkzM/v3zTUn3XAyG+vwwd1LCzWcjgjIyMjIyMjIyPjyY09JlyWvRLh/srF5MPvqZ1fMzitlBr/Pt/DyMjIyMjIyMjI+F831rWkS+ms/3/e/C/rXRkZGRkZGRkZGRn/y8adV0ijx3Z+L7H0cK/PJaT30sW/9E9fjIyMjIyMjIyMjEc3PlK1cEllxHXsxz/T6I9h/mItNXoMvMcvh3tdPujZMzIyMjIyMjIyMh7UeE3/kyIzS6BtJfCe72ydzjjfCeOsjIyMjIyMjIyMjKc0rmPRkBd6tjKvZXutHM1zX/qkr1/T8ZdXqr0PK1kZGRkZGRkZGRkZz2K8p2DLNjX2WXamxUGMj9K8b+nOLq8qJNI2RkZGRkZGRkZGxnMZc4lQ5yZex3qil907W0ishy7+I015uZcvz34xYGRkZGRkZGRkZDy+cZaLGRvzvfcSkNn2cu6tjGkJsZo+US/phIyMjIyMjIyMjIwnMj7rgCEpcwklQtoFtG5MFC87iOLK0TQt5pMMOyMjIyMjIyMjI+PxjDl7filXG77TAj8/499i0VBnK47lSPtpvoeRkZGRkZGRkZHxMMYe4uRDrXDdG1J+i0GbOtF8Cd+ZlRH3kMpp79e7MjIyMjIyMjIyMh7LmNPoW8G2cVp5D+rZXkP1PHG4S5+OXXyTnWFkZGRkZGRkZGQ8oDE8ttd+fNwjKMTS393i+lEq55PsDCMjIyMjIyMjI+OBjMPz+yMkXIYQek/d99qqv47nyrQ2j+esk+QOIyMjIyMjIyMj41mMO7PJr5Pv7KwunU1b3NIol/ZNh56RkZGRkZGRkZHxbMZ7CrbkNHqA9JJY3yksemnVr9OLzv4ejIyMjIyMjIyMjMc3xtWct8nOQq1Ezp9HzbYPynNf8kfrzpDFhZGRkZGRkZGRkfFMxrH7HsIv9yRqKV+TXjUXM64lbTH5vrPMlJGRkZGRkZGRkfEcxtlGQDkOc3mjTnMTp7MV194nhUUsRxgZGRkZGRkZGRnPYswJl1AHTLfoDK36nrYPuo4LRqeJm9lHW/tsDjsjIyMjIyMjIyPjQYxxEWfAtsncxJYqg/66Wt/LztSPagbnk549IyMjIyMjIyMj44GMsTG/vVIwOdW+pRTMbawe+neRmUfYMnQ44WX+p2JkZGRkZGRkZGQ8g3GWRu8lRFN3+AyP/887260DdjYIrcUHIyMjIyMjIyMj4+GNz4ErS0q15zTN82o5X7N3VP0RYJlh1/e1AiMjIyMjIyMjI+OxjH0yAXHasw+t+ppzj2PL096hvVQY+Vpv1pIyMjIyMjIyMjIyHsuYdxbKU15mj//X3uejXHqMw+yMXQxFw8ezFRkZGRkZGRkZGRkPZawpmJbC7LMpLzuQUCuM5Ui6oRZO+Hb+IyMjIyMjIyMjI+OxjHkfoSG6HmeTt7gd6OPtsPOesjN9jN7EXww2RkZGRkZGRkZGxnMZ89ZA4fl9jK4PwxFDvqalePvuKJc85aWVDA4jIyMjIyMjIyPjWYz5iT5kz7/fq3PIue92329x3Ms4djHVHJ2RkZGRkZGRkZHxZMZeGvNDidBaHXZ+CZVBvY8QmZnt+fn4WXaGkZGRkZGRkZGR8YDG2/erQuN3bmWieZvMdKkZnBqKv5Z6gpGRkZGRkZGRkfF0xpbS6H2SNM8595ymmW1edCmXiBMZGyMjIyMjIyMjI+MpjX0aY8lDFuui0qF5fymrQuuQmEvp4scMDiMjIyMjIyMjI+NZjDXPEs/UJstMr2WAYkjTxMWpITszrR7W+udiZGRkZGRkZGRkPLYxz1YMCZc+e5MWg+ZYzWy0eVw5Wmcr9jSRkZGRkZGRkZGRkfHgxphYv8Uh5d8PMp8VBNveuMS94S7Lz3r2jIyMjIyMjIyMjIcw9kK7h7HlqQ6ou3e+/2g3O1PrEkZGRkZGRkZGRsYTGdOuQdMBim2MzLT5qtA1htkfaVjjffJrwBjPYWRkZGRkZGRkZDyLcbhsbNXXLv42GXbe0u5Dw00/gzY7uxgNtI2RkZGRkZGRkZHxXMaITZmXR+LfS2WQh52HLHwL99qSOpQI94/mzjAyMjIyMjIyMjIexDhcdtl7xm8pBRPGLrb5kMWanelpP6I22eCIkZGRkZGRkZGR8SzGlpaHtnSm2TN+VNcQTRpkvlM9XMtfiJGRkZGRkZGRkfEcxhqiiQMUW6GFO4sR+JBhb2GZaV05enstV20/yc4wMjIyMjIyMjIyHsQ4iPL+P2GA4n2/RBiwS4mu9yH53sZr9TIJhpGRkZGRkZGRkfEMxhxj2UqHPtDqKMRHmQRTh523MuUl/oUYGRkZGRkZGRkZz2kMBUF8kG/jkMU8weXe6muZn2dearSP9vxkZGRkZGRkZGRkPJZxJ0TTxmBL2pBzurHn7pSXIcxex8bE3wcYGRkZGRkZGRkZz2LMD/vX7/LpdZJi3mtotjj1Uhrz98lRCyMjIyMjIyMjI+OZjEuJsbQwiyWE2R8Fm2uF3dmKW+r9/6RWYGRkZGRkZGRkZDyg8Raf+pehMb+OQfVcB1z32/Dh8P5mKWr5WYCRkZGRkZGRkZHxfMadgHmY19JL973G25dhlEtqzD9+lrNnZGRkZGRkZGRkPL5xKY/2O8YtzWtZx1jNrFYYPxpi8ldGRkZGRkZGRkbGExr7zpnia0uP9rfxYb9OK4/Vw62c8BY7/YyMjIyMjIyMjIynMua1pE/s8CZmZ1qacR52+Mxz0LdxlepOKudtdoaRkZGRkZGRkZHxWMY/88XIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyPgHGv8Gg3eEIKcvUa8AAAAASUVORK5CYII=" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 20, + "total_amount": 20.2, + "history_id": 1678596937174, + "id": 55645618353, + "date_created": "2023-03-12T00:55:37.889-04:00", + "date_last_updated": "2023-03-12T00:56:04.000-04:00", + "date_of_expiration": "2023-03-13T00:55:37.650-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-12T00:56:04.000-04:00", + "money_release_date": "2023-03-12T00:56:04.000-04:00", + "wasDebited": true, + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.20790000000000003 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 21.21, + "overpaid_amount": 0, + "installment_amount": 0, + "ticket_url": "https://www.mercadopago.com.br/payments/55660781347/ticket?caller_id=1310149122&hash=d81b289f-e1b7-45ae-9f11-f314a4fdb9e1", + "qr_code": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540521.215802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter5566078134763047D77", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJfklEQVR42u3dQXLbOhIGYGilY+io0lF5hFlyJUxeHFPobtBW5tVUJeTHlUoUiY9eEe0fjdb/+OM/jZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGR8c82ri0et49v7j9PXT5/8+PD4/PUx/Hz1PLx4fH55f3HN9ePa359mJ+KVw03ZGRkZGRkZGRkZDyLcTz5DyR/aD/u/Qz8bZB/flNP/Tp+XnV/YeeXTxmMjIyMjIyMjIyMZzA+Pt/Wt2E/7v1r/O2b9jmN+EUbJg3X15M9k7GFyUcYa31NUBgZGRkZGRkZGRlPbhyL7luJvUd1rcc/hwL8fZKHCZMGRkZGRkZGRkZGRsb0/j4tqKcK/ZadGcMvQR0nFmGGEav4jIyMjIyMjIyMjOc0huzMmgZZUnZmqMeHnHss53+ZwYmn/od8DyMjIyMjIyMjI+PfbqxrSS+lsv7/+fBv1rsyMjIyMjIyMjIy/s3G2TFG11sp5w9PVr/J04hZT5c3DkZGRkZGRkZGRsajG59ptjAM0matXPq0it+Sui5FrU+2vKYI69dzBUZGRkZGRkZGRsZDGm/pZT21VBwT6/dy78dnLH0YrfY4769nzc0aGRkZGRkZGRkZGU9mXEu7xNqSfNZkMdKWBKnNXWq3mMdrrHfyPYyMjIyMjIyMjIwHMsbragfE+TdbhX64/FmK9xG7lN2HWmuleM/IyMjIyMjIyMh4GuNQoW+ltXnvQ3PEPu/70ifrRK+ppWKu0Idmjd/n7BkZGRkZGRkZGRkPZIyR83sJyKRh48SitoTJbVpCrKZP1Jd0Q0ZGRkZGRkZGRsYTGXNTlhp+qbuAhqJ7DrwPorhy9BG7xbyXYWdkZGRkZGRkZGQ8mrGlO9XR1vli0BRvz7X/NumtOE5H2tvZGUZGRkZGRkZGRsajGXt5/Y/G2SAhRLO7j9CWfO/phrdXk8XYRp2RkZGRkZGRkZHxLMadRuYp1R53H7qVenzda2gpc4Vc+09P3xkZGRkZGRkZGRlPZryPTVli55X0HJe9tuVt/oj3neWqz6B+LzvDyMjIyMjIyMjIeBhjTws9l1RrDxX6PmmgeAn9y3u5qgbVl7St6J2RkZGRkZGRkZHxfMbvhl2m7/j5gWYdzadDTCr0jIyMjIyMjIyMjGczrinY0lOIpvZiuU+SMrvHY6dC38J9bvkyRkZGRkZGRkZGxmMbe2rBMivVx60+76+rbpPRKj8uIb3vNFm8MDIyMjIyMjIyMp7J2FOepZdgSw+dFEPgvXZJzLRZqX7dW2bKyMjIyMjIyMjIeA5j3QhoTYtBZ5HzXtq9DM1dam/FWqof4znbjxkZGRkZGRkZGRnPYtx+1UJhflbFX8ace8bGCHyfrkndPbW8UbNnZGRkZGRkZGRkPJAxNym/TdsltnSnmqbJ+wi16cZEcb3pkMF5p2bPyMjIyMjIyMjIeCBjS7mY+No+myu012ZB13CqRmZay03Tww2v5U/FyMjIyMjIyMjIeBrjLI2e3/G/eOtvpeQ/nwfUDUJzpZ+RkZGRkZGRkZHxLMZLaNxSdwRaSlB92Yuup6vqfOIyw96/nyswMjIyMjIyMjIyHsvYJx0Qp63Nh1R7G3u6XNJ8Iv8ToM5LbpOxvllLysjIyMjIyMjIyHgs41pK9dm4G35Jc4XaQHGn7WKYNLzXW5GRkZGRkZGRkZHxWMa4a9Cw0HNJ905dXqbRm/sUu/NAafLByMjIyMjIyMjIeCJj7mg+BNVr38Re9iPqISBT0+h1E9Fe+Pfva/aMjIyMjIyMjIyMhzX2odl5GHYn/NLHruf9dflOK5d8qpUMDiMjIyMjIyMjI+NZjPFlP2XPn6k7y5pq9kO+Zqf6/ojtXsa2i3XOwcjIyMjIyMjIyHgqY5gHxJ6IjxiZybt35shM6M7yTJX+dS+M822+h5GRkZGRkZGRkfGAxsd0LelOCD3NFdoQgQ/YnJ2pofjbZHRGRkZGRkZGRkbGkxljsOU2/uBZ9gUdRXvrRLcb9rJD0WX2DSMjIyMjIyMjI+PJjLde14nGJou91yblW619mURvapOYa6nixwwOIyMjIyMjIyMj41mM614dfQvR1GWmwzv+YIxV/JYaoid13qHoyww7IyMjIyMjIyMj49GMPbRXuccthvL4uTvL8ECzHo3PEKtZUpeXPpmXMDIyMjIyMjIyMp7DGLcGmizrHJ+jzWv2Iah+nZfh95q7XN6q2TMyMjIyMjIyMjIeyxhf9mvb8q2u/2izDYXeObWbnQmrSzsjIyMjIyMjIyPjeYzbXKGF3orhBrlxyzJOHGIKJofZQ7PG3C1mGTcdYmRkZGRkZGRkZDyn8RLyLMP7+5pq7fk5HrEBTA7a7OxiNIvAMzIyMjIyMjIyMp7DGLEt5lkyf51MGuJ8opX+izmVMxT4W/kzMDIyMjIyMjIyMp7DuL6K7pfwjp8hj5Jh7wXSY2/FmJ3ppQ96DtowMjIyMjIyMjIynseYl4cOt2ypt+KwcrSnHYpy28Wtrt/3EuuPcRNRRkZGRkZGRkZGxlMZ42j3SQPFocSejzpp6JMZxnXf2MPTMzIyMjIyMjIyMp7T2Mb3916mCLmlYj7Vp7TYf7FNnv635gqMjIyMjIyMjIyMf79xLW/9ueFKKOdfygrUnezMkmYY97Kt6PAXYmRkZGRkZGRkZDynsZXoeu+1J2Ir04h4hC4vMURT4zltGm9nZGRkZGRkZGRkPIOxHrlmfyu/WEocZrclTAiz59/08e/RGRkZGRkZGRkZGc9jXCex9JYq6190UmxlMWhdnHothfk17VD07nyGkZGRkZGRkZGR8TDGS4mxtNSL5Vo+tFDFD8+x21txyNf89lyBkZGRkZGRkZGR8YDGx+StP2zR2VMcZk0BmfYVNgbVU3Ymp+MZGRkZGRkZGRkZz2r8OvOyleHnl88yOM9SmH/+Xs6ekZGRkZGRkZGR8fjGS3m1z5GZWH1/xLWk2292photNXd5o6cLIyMjIyMjIyMj4wGNfXqnVEePGwrlDUJ76Va+0yt9GCtU+hkZGRkZGRkZGRlPZcxrSTfs8CH2Jl/G0Z5ph89WeqW3kLhJqZzn9O/ByMjIyMjIyMjIeGzjn3kwMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL+gcb/Am9FACpuHEp1AAAAAElFTkSuQmCC" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 21, + "total_amount": 21.21, + "history_id": 1678649850085, + "id": 55660781347, + "date_created": "2023-03-12T15:37:30.913-04:00", + "date_last_updated": "2023-03-13T15:40:52.000-04:00", + "date_of_expiration": "2023-03-13T15:37:30.656-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "cancelled", + "status_detail": "expired", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 21,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 70, + "total_amount": 70, + "history_id": 1679007163675, + "id": 1679007163675, + "date_created": "2023-03-16T22:52:43.675Z", + "date_last_updated": "2023-03-16T22:52:43.675Z", + "date_of_expiration": "2023-04-15T22:52:43.675Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 70,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 22, + "total_amount": 22, + "history_id": 1679010027708, + "id": 1679010027708, + "date_created": "2023-03-16T23:40:27.708Z", + "date_last_updated": "2023-03-16T23:40:27.708Z", + "date_of_expiration": "2023-04-15T23:40:27.708Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 22,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 34.53, + "total_amount": 34.53, + "history_id": 1679010677912, + "id": 1679010677912, + "date_created": "2023-03-16T23:51:17.912Z", + "date_last_updated": "2023-03-16T23:51:17.912Z", + "date_of_expiration": "2023-04-15T23:51:17.912Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 34,53 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719303, + "modified": 1700589719303 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23797929500000053493380261020810012400633330" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "10208100124", + "acquirer_reference": "", + "verification_code": "10208100124", + "net_received_amount": 0, + "total_paid_amount": 53.49, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "bradesco", + "external_resource_url": "https://www.mercadopago.com.br/payments/55844330172/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55844330172&payment_method_reference_id=10208100124&hash=b65fca1f-6eb0-406a-adf2-94d1c5555b8a" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "bolbradesco", + "original_amount": 50, + "total_amount": 53.49, + "history_id": 1679012344229, + "id": 55844330172, + "date_created": "2023-03-16T20:19:04.871-04:00", + "date_last_updated": "2023-03-16T20:19:04.871-04:00", + "date_of_expiration": "2023-03-20T22:59:59.000-04:00", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 23.54, + "total_amount": 23.54, + "history_id": 1679012395493, + "id": 1679012395493, + "date_created": "2023-03-17T00:19:55.493Z", + "date_last_updated": "2023-03-17T00:19:55.493Z", + "date_of_expiration": "2023-04-16T00:19:55.493Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 23,54 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 200, + "total_amount": 224, + "history_id": 1679181025084, + "id": 1679181025084, + "date_created": "2023-03-18T23:10:25.084Z", + "date_last_updated": "2023-03-18T23:10:25.084Z", + "date_of_expiration": "2023-04-17T23:10:25.084Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 425, + "total_amount": 459, + "history_id": 1679181157805, + "id": 1679181157805, + "date_created": "2023-03-18T23:12:37.805Z", + "date_last_updated": "2023-03-18T23:12:37.805Z", + "date_of_expiration": "2023-04-17T23:12:37.805Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 9.200000000000001 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 230, + "total_amount": 239.2, + "history_id": 1679183534080, + "id": 1679183534080, + "date_created": "2023-03-18T23:52:14.080Z", + "date_last_updated": "2023-03-18T23:52:14.080Z", + "date_of_expiration": "2023-04-17T23:52:14.080Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 200, + "total_amount": 208, + "history_id": 1679184046128, + "id": 1679184046128, + "date_created": "2023-03-19T00:00:46.128Z", + "date_last_updated": "2023-03-19T00:00:46.128Z", + "date_of_expiration": "2023-04-18T00:00:46.128Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8.4 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 210, + "total_amount": 218.4, + "history_id": 1679184832424, + "id": 1679184832424, + "date_created": "2023-03-19T00:13:52.424Z", + "date_last_updated": "2023-03-19T00:13:52.424Z", + "date_of_expiration": "2023-04-18T00:13:52.424Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780561471/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679780561471, + "acquirer_reference": "", + "verification_code": 1679780561471, + "net_received_amount": 0, + "total_paid_amount": 0.00017735, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780561471", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 50, + "total_amount": 50, + "id": 1679780561471, + "date_created": "2023-03-25T21:42:41.471Z", + "date_last_updated": "2023-03-25T21:42:41.471Z", + "date_of_expiration": "2023-03-25T21:42:41.471Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1679780561471, + "description": "Compra de 50,00 IVIPAY por 5,00 IVIP estabilizando US$ 0,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780730626/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679780730626, + "acquirer_reference": "", + "verification_code": 1679780730626, + "net_received_amount": 0, + "total_paid_amount": 0.17734999999999998, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780730626", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 50000, + "total_amount": 50000, + "id": 1679780730626, + "date_created": "2023-03-25T21:45:30.626Z", + "date_last_updated": "2023-03-25T21:45:30.626Z", + "date_of_expiration": "2023-03-25T21:45:30.626Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1679780730626, + "description": "Compra de 50.000,00 IVIPAY por 5.000,00 IVIP estabilizando US$ 0,18" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679798199684/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679798199684, + "acquirer_reference": "", + "verification_code": 1679798199684, + "net_received_amount": 0, + "total_paid_amount": 0.32499999999999996, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679798199684", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 100000, + "total_amount": 100000, + "id": 1679798199684, + "date_created": "2023-03-26T02:36:39.684Z", + "date_last_updated": "2023-03-26T02:36:39.684Z", + "date_of_expiration": "2023-03-26T02:36:39.684Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1679798199684, + "description": "Compra de 100.000,00 IVIPAY por 10.000,00 IVIP estabilizando US$ 0,32" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1681764788277/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1681764788277, + "acquirer_reference": "", + "verification_code": 1681764788277, + "net_received_amount": 0, + "total_paid_amount": 700, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1681764788277", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 3964758, + "total_amount": 3964758, + "id": 1681764788277, + "date_created": "2023-04-17T20:53:08.277Z", + "date_last_updated": "2023-04-17T20:53:08.277Z", + "date_of_expiration": "2023-04-17T20:53:08.277Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1681764788277, + "description": "Compra de 3.964.758,00 IVIP por 700,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323304615/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1682323304615, + "acquirer_reference": "", + "verification_code": 1682323304615, + "net_received_amount": 0, + "total_paid_amount": 175.094, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323304615", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 175.094, + "total_amount": 175.094, + "id": 1682323304615, + "date_created": "2023-04-24T08:01:44.615Z", + "date_last_updated": "2023-04-24T08:01:44.615Z", + "date_of_expiration": "2023-04-24T08:01:44.615Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682323304615, + "description": "Pagamento de fatura 1 de 4 no valor de 175,09 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323486538/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1682323486538, + "acquirer_reference": "", + "verification_code": 1682323486538, + "net_received_amount": 0, + "total_paid_amount": 119.6, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323486538", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 119.6, + "total_amount": 119.6, + "id": 1682323486538, + "date_created": "2023-04-24T08:04:46.538Z", + "date_last_updated": "2023-04-24T08:04:46.538Z", + "date_of_expiration": "2023-04-24T08:04:46.538Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682323486538, + "description": "Pagamento de fatura 1 de 2 no valor de 119,60 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324590308/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1682324590308, + "acquirer_reference": "", + "verification_code": 1682324590308, + "net_received_amount": 0, + "total_paid_amount": 104, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324590308", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 104, + "total_amount": 104, + "id": 1682324590308, + "date_created": "2023-04-24T08:23:10.308Z", + "date_last_updated": "2023-04-24T08:23:10.308Z", + "date_of_expiration": "2023-04-24T08:23:10.308Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682324590308, + "description": "Pagamento de fatura 1 de 2 no valor de 104,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324593569/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1682324593569, + "acquirer_reference": "", + "verification_code": 1682324593569, + "net_received_amount": 0, + "total_paid_amount": 109.2, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324593569", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 109.2, + "total_amount": 109.2, + "id": 1682324593569, + "date_created": "2023-04-24T08:23:13.569Z", + "date_last_updated": "2023-04-24T08:23:13.569Z", + "date_of_expiration": "2023-04-24T08:23:13.569Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682324593569, + "description": "Pagamento de fatura 1 de 2 no valor de 109,20 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325423689/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1682325423689, + "acquirer_reference": "", + "verification_code": 1682325423689, + "net_received_amount": 0, + "total_paid_amount": 104, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325423689", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 104, + "total_amount": 104, + "id": 1682325423689, + "date_created": "2023-04-24T08:37:03.689Z", + "date_last_updated": "2023-04-24T08:37:03.689Z", + "date_of_expiration": "2023-04-24T08:37:03.689Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682325423689, + "description": "Pagamento de fatura 1 de 2 no valor de 104,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325428664/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1682325428664, + "acquirer_reference": "", + "verification_code": 1682325428664, + "net_received_amount": 0, + "total_paid_amount": 109.2, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325428664", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 109.2, + "total_amount": 109.2, + "id": 1682325428664, + "date_created": "2023-04-24T08:37:08.664Z", + "date_last_updated": "2023-04-24T08:37:08.664Z", + "date_of_expiration": "2023-04-24T08:37:08.664Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682325428664, + "description": "Pagamento de fatura 1 de 2 no valor de 109,20 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544384/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 5, + "payment_method_reference_id": 1682578544384, + "acquirer_reference": "", + "verification_code": 1682578544384, + "net_received_amount": 0, + "total_paid_amount": 37.333, + "overpaid_amount": 0, + "installment_amount": 37.333, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544384", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 37.333, + "total_amount": 37.333, + "id": 1682578544384, + "contract_id": "1679181025084", + "date_created": "2023-04-27T06:55:44.384Z", + "date_last_updated": "2023-04-27T06:55:44.384Z", + "date_of_expiration": "2023-04-27T06:55:44.384Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682578544384, + "description": "Pagamento de fatura 1 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544557/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 3, + "payment_method_reference_id": 1682578544557, + "acquirer_reference": "", + "verification_code": 1682578544557, + "net_received_amount": 0, + "total_paid_amount": 114.75, + "overpaid_amount": 0, + "installment_amount": 114.75, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544557", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 114.75, + "total_amount": 114.75, + "id": 1682578544557, + "contract_id": "1679181157805", + "date_created": "2023-04-27T06:55:44.557Z", + "date_last_updated": "2023-04-27T06:55:44.557Z", + "date_of_expiration": "2023-04-27T06:55:44.557Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682578544557, + "description": "Pagamento de fatura 1 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984558/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 1, + "payment_method_reference_id": 1682578984558, + "acquirer_reference": "", + "verification_code": 1682578984558, + "net_received_amount": 0, + "total_paid_amount": 119.6, + "overpaid_amount": 0, + "installment_amount": 119.6, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984558", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 119.6, + "total_amount": 119.6, + "id": 1682578984558, + "contract_id": "1679183534080", + "date_created": "2023-04-27T07:03:04.558Z", + "date_last_updated": "2023-04-27T07:03:04.558Z", + "date_of_expiration": "2023-04-27T07:03:04.558Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682578984558, + "description": "Pagamento de fatura 1 de 2 no valor de 119,60 BRL referente ao contrato 1679183534080" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984726/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 1, + "payment_method_reference_id": 1682578984726, + "acquirer_reference": "", + "verification_code": 1682578984726, + "net_received_amount": 0, + "total_paid_amount": 104, + "overpaid_amount": 0, + "installment_amount": 104, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984726", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 104, + "total_amount": 104, + "id": 1682578984726, + "contract_id": "1679184046128", + "date_created": "2023-04-27T07:03:04.726Z", + "date_last_updated": "2023-04-27T07:03:04.726Z", + "date_of_expiration": "2023-04-27T07:03:04.726Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682578984726, + "description": "Pagamento de fatura 1 de 2 no valor de 104,00 BRL referente ao contrato 1679184046128" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984913/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 1, + "payment_method_reference_id": 1682578984913, + "acquirer_reference": "", + "verification_code": 1682578984913, + "net_received_amount": 0, + "total_paid_amount": 109.2, + "overpaid_amount": 0, + "installment_amount": 109.2, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984913", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 109.2, + "total_amount": 109.2, + "id": 1682578984913, + "contract_id": "1679184832424", + "date_created": "2023-04-27T07:03:04.913Z", + "date_last_updated": "2023-04-27T07:03:04.913Z", + "date_of_expiration": "2023-04-27T07:03:04.913Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682578984913, + "description": "Pagamento de fatura 1 de 2 no valor de 109,20 BRL referente ao contrato 1679184832424" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 4 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 200, + "total_amount": 204, + "history_id": 1683665355468, + "id": 1683665355468, + "date_created": "2023-05-09T20:49:15.468Z", + "date_last_updated": "2023-05-09T20:49:15.468Z", + "date_of_expiration": "2023-06-08T20:49:15.468Z", + "operation_type": "regular_payment", + "status": "cancelled", + "status_detail": "cancelled", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 204,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 3 parcela(s) 6.00%", + "amount": 12 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 200, + "total_amount": 212, + "history_id": 1683667472591, + "id": 1683667472591, + "date_created": "2023-05-09T21:24:32.591Z", + "date_last_updated": "2023-05-09T21:24:32.591Z", + "date_of_expiration": "2023-06-08T21:24:32.591Z", + "operation_type": "regular_payment", + "status": "cancelled", + "status_detail": "cancelled", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 250, + "total_amount": 250, + "history_id": 1684303097186, + "id": 1684303097186, + "date_created": "2023-05-17T05:58:17.186Z", + "date_last_updated": "2023-05-17T05:59:31.953Z", + "date_of_expiration": "2023-06-16T05:58:17.186Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-17T05:59:31.953Z", + "money_release_date": "2023-05-17T05:59:31.953Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 250,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684348051817/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684348051817, + "acquirer_reference": "", + "verification_code": 1684348051817, + "net_received_amount": 0, + "total_paid_amount": 630, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684348051817", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 630, + "total_amount": 630, + "id": 1684348051817, + "date_created": "2023-05-17T18:27:31.817Z", + "date_last_updated": "2023-05-17T18:27:31.817Z", + "date_of_expiration": "2023-05-17T18:27:31.817Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684348051817, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739701/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 4, + "payment_method_reference_id": 1684436739701, + "acquirer_reference": "", + "verification_code": 1684436739701, + "net_received_amount": 0, + "total_paid_amount": 37.333, + "overpaid_amount": 0, + "installment_amount": 37.333, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739701", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 37.333, + "total_amount": 37.333, + "id": 1684436739701, + "contract_id": "1679181025084", + "date_created": "2023-05-18T19:05:39.701Z", + "date_last_updated": "2023-05-18T19:05:39.701Z", + "date_of_expiration": "2023-05-18T19:05:39.701Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684436739701, + "description": "Pagamento de fatura 2 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739822/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 2, + "payment_method_reference_id": 1684436739822, + "acquirer_reference": "", + "verification_code": 1684436739822, + "net_received_amount": 0, + "total_paid_amount": 114.75, + "overpaid_amount": 0, + "installment_amount": 114.75, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739822", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 114.75, + "total_amount": 114.75, + "id": 1684436739822, + "contract_id": "1679181157805", + "date_created": "2023-05-18T19:05:39.822Z", + "date_last_updated": "2023-05-18T19:05:39.822Z", + "date_of_expiration": "2023-05-18T19:05:39.822Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684436739822, + "description": "Pagamento de fatura 2 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739934/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 0, + "payment_method_reference_id": 1684436739934, + "acquirer_reference": "", + "verification_code": 1684436739934, + "net_received_amount": 0, + "total_paid_amount": 119.6, + "overpaid_amount": 0, + "installment_amount": 119.6, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739934", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 119.6, + "total_amount": 119.6, + "id": 1684436739934, + "contract_id": "1679183534080", + "date_created": "2023-05-18T19:05:39.934Z", + "date_last_updated": "2023-05-18T19:05:39.934Z", + "date_of_expiration": "2023-05-18T19:05:39.934Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684436739934, + "description": "Pagamento de fatura 2 de 2 no valor de 119,60 BRL referente ao contrato 1679183534080" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740031/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 0, + "payment_method_reference_id": 1684436740031, + "acquirer_reference": "", + "verification_code": 1684436740031, + "net_received_amount": 0, + "total_paid_amount": 104, + "overpaid_amount": 0, + "installment_amount": 104, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740031", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 104, + "total_amount": 104, + "id": 1684436740031, + "contract_id": "1679184046128", + "date_created": "2023-05-18T19:05:40.031Z", + "date_last_updated": "2023-05-18T19:05:40.031Z", + "date_of_expiration": "2023-05-18T19:05:40.031Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684436740031, + "description": "Pagamento de fatura 2 de 2 no valor de 104,00 BRL referente ao contrato 1679184046128" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740155/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 0, + "payment_method_reference_id": 1684436740155, + "acquirer_reference": "", + "verification_code": 1684436740155, + "net_received_amount": 0, + "total_paid_amount": 109.2, + "overpaid_amount": 0, + "installment_amount": 109.2, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740155", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 109.2, + "total_amount": 109.2, + "id": 1684436740155, + "contract_id": "1679184832424", + "date_created": "2023-05-18T19:05:40.155Z", + "date_last_updated": "2023-05-18T19:05:40.155Z", + "date_of_expiration": "2023-05-18T19:05:40.155Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684436740155, + "description": "Pagamento de fatura 2 de 2 no valor de 109,20 BRL referente ao contrato 1679184832424" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790150988/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684790150988, + "acquirer_reference": "", + "verification_code": 1684790150988, + "net_received_amount": 0, + "total_paid_amount": 1200, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790150988", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 5850731, + "total_amount": 5850731, + "id": 1684790150988, + "date_created": "2023-05-22T21:15:50.988Z", + "date_last_updated": "2023-05-22T21:15:50.988Z", + "date_of_expiration": "2023-05-22T21:15:50.988Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684790150988, + "description": "Compra de 5.850.731,00 IVIP por 1.200,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790990972/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684790990972, + "acquirer_reference": "", + "verification_code": 1684790990972, + "net_received_amount": 0, + "total_paid_amount": 1065.7, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790990972", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1065.7, + "total_amount": 1065.7, + "id": 1684790990972, + "date_created": "2023-05-22T21:29:50.972Z", + "date_last_updated": "2023-05-22T21:29:50.972Z", + "date_of_expiration": "2023-05-22T21:29:50.972Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684790990972, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 2337199, + "total_amount": 2337199, + "history_id": 1685376471814, + "id": 1685376471814, + "date_created": "2023-05-29T16:07:51.814Z", + "date_last_updated": "2023-05-29T16:07:51.814Z", + "date_of_expiration": "2023-05-29T16:07:51.814Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 2.337.199,00 IVIP para a carteira 0x0000000000000000000000000000000000000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1357502, + "total_amount": 1357502, + "history_id": 1685376968807, + "id": 1685376968807, + "date_created": "2023-05-29T16:16:08.807Z", + "date_last_updated": "2023-05-29T16:16:08.807Z", + "date_of_expiration": "2023-05-29T16:16:08.807Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 1.357.502,00 IVIP para a carteira 0x0000000000000000000000000000000000000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 754612, + "total_amount": 754612, + "history_id": 1685379763814, + "id": 1685379763814, + "date_created": "2023-05-29T17:02:43.814Z", + "date_last_updated": "2023-05-29T21:52:34.691Z", + "date_of_expiration": "2023-05-29T17:02:43.814Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-05-29T21:52:34.691Z", + "money_release_date": "2023-05-29T21:52:34.691Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 754.612,00 IVIP para a carteira 0x0000000000000000000000000000000000000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1432864, + "total_amount": 1432864, + "history_id": 1685379960399, + "id": 1685379960399, + "date_created": "2023-05-29T17:06:00.399Z", + "date_last_updated": "2023-05-29T17:06:00.399Z", + "date_of_expiration": "2023-05-29T17:06:00.399Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 1.432.864,00 IVIP para a carteira 0x0000000000000000000000000000000000000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2248, + "total_amount": 2248, + "history_id": 1685382789817, + "id": 1685382789817, + "date_created": "2023-05-29T17:53:09.817Z", + "date_last_updated": "2023-05-29T17:53:41.235Z", + "date_of_expiration": "2023-06-28T17:53:09.817Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-05-29T17:53:41.235Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 2.248,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685391703693/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685391703693, + "acquirer_reference": "", + "verification_code": 1685391703693, + "net_received_amount": 0, + "total_paid_amount": 150, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685391703693", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 15, + "total_amount": 15, + "id": 1685391703693, + "date_created": "2023-05-29T20:21:43.693Z", + "date_last_updated": "2023-05-29T20:21:43.693Z", + "date_of_expiration": "2023-05-29T20:21:43.693Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685391703693, + "description": "Compra de 15,00 IVIP por 150,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685392276817/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685392276817, + "acquirer_reference": "", + "verification_code": 1685392276817, + "net_received_amount": 0, + "total_paid_amount": 50000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685392276817", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 5000, + "total_amount": 5000, + "id": 1685392276817, + "date_created": "2023-05-29T20:31:16.817Z", + "date_last_updated": "2023-05-29T20:31:16.817Z", + "date_of_expiration": "2023-05-29T20:31:16.817Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685392276817, + "description": "Compra de 5.000,00 IVIP por 50.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393515405/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685393515405, + "acquirer_reference": "", + "verification_code": 1685393515405, + "net_received_amount": 0, + "total_paid_amount": 5000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393515405", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 500, + "total_amount": 500, + "id": 1685393515405, + "date_created": "2023-05-29T20:51:55.405Z", + "date_last_updated": "2023-05-29T20:51:55.405Z", + "date_of_expiration": "2023-05-29T20:51:55.405Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685393515405, + "description": "Compra de 500,00 IVIP por 5.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393559293/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685393559293, + "acquirer_reference": "", + "verification_code": 1685393559293, + "net_received_amount": 0, + "total_paid_amount": 52000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393559293", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 5200, + "total_amount": 5200, + "id": 1685393559293, + "date_created": "2023-05-29T20:52:39.293Z", + "date_last_updated": "2023-05-29T20:52:39.293Z", + "date_of_expiration": "2023-05-29T20:52:39.293Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685393559293, + "description": "Compra de 5.200,00 IVIP por 52.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685394959774/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685394959774, + "acquirer_reference": "", + "verification_code": 1685394959774, + "net_received_amount": 0, + "total_paid_amount": 42000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685394959774", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 4200, + "total_amount": 4200, + "id": 1685394959774, + "date_created": "2023-05-29T21:15:59.774Z", + "date_last_updated": "2023-05-29T21:15:59.774Z", + "date_of_expiration": "2023-05-29T21:15:59.774Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685394959774, + "description": "Compra de 4.200,00 IVIP por 42.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395256711/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685395256711, + "acquirer_reference": "", + "verification_code": 1685395256711, + "net_received_amount": 0, + "total_paid_amount": 95, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395256711", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 9, + "total_amount": 9, + "id": 1685395256711, + "date_created": "2023-05-29T21:20:56.711Z", + "date_last_updated": "2023-05-29T21:20:56.711Z", + "date_of_expiration": "2023-05-29T21:20:56.711Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685395256711, + "description": "Compra de 9,00 IVIP por 95,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395602952/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685395602952, + "acquirer_reference": "", + "verification_code": 1685395602952, + "net_received_amount": 0, + "total_paid_amount": 0.0914570184167152, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395602952", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 10000, + "total_amount": 10000, + "id": 1685395602952, + "date_created": "2023-05-29T21:26:42.952Z", + "date_last_updated": "2023-05-29T21:26:42.952Z", + "date_of_expiration": "2023-05-29T21:26:42.952Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1685395602952, + "description": "Compra de 10.000,00 IVIPAY por 1.000,00 IVIP estabilizando US$ 0,09" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395698830/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685395698830, + "acquirer_reference": "", + "verification_code": 1685395698830, + "net_received_amount": 0, + "total_paid_amount": 10000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395698830", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1000, + "total_amount": 1000, + "id": 1685395698830, + "date_created": "2023-05-29T21:28:18.830Z", + "date_last_updated": "2023-05-29T21:28:18.830Z", + "date_of_expiration": "2023-05-29T21:28:18.830Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685395698830, + "description": "Compra de 1.000,00 IVIP por 10.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457147497/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685457147497, + "acquirer_reference": "", + "verification_code": 1685457147497, + "net_received_amount": 0, + "total_paid_amount": 0.2150325663918771, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457147497", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 30000, + "total_amount": 30000, + "id": 1685457147497, + "date_created": "2023-05-30T14:32:27.497Z", + "date_last_updated": "2023-05-30T14:32:27.497Z", + "date_of_expiration": "2023-05-30T14:32:27.497Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1685457147497, + "description": "Compra de 30.000,00 IVIPAY por 3.000,00 IVIP estabilizando US$ 0,22" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457225462/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685457225462, + "acquirer_reference": "", + "verification_code": 1685457225462, + "net_received_amount": 0, + "total_paid_amount": 30000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457225462", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 3000, + "total_amount": 3000, + "id": 1685457225462, + "date_created": "2023-05-30T14:33:45.462Z", + "date_last_updated": "2023-05-30T14:33:45.462Z", + "date_of_expiration": "2023-05-30T14:33:45.462Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685457225462, + "description": "Compra de 3.000,00 IVIP por 30.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458042396/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685458042396, + "acquirer_reference": "", + "verification_code": 1685458042396, + "net_received_amount": 0, + "total_paid_amount": 0.4625802662364135, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458042396", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 70000, + "total_amount": 70000, + "id": 1685458042396, + "date_created": "2023-05-30T14:47:22.396Z", + "date_last_updated": "2023-05-30T14:47:22.396Z", + "date_of_expiration": "2023-05-30T14:47:22.396Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1685458042396, + "description": "Compra de 70.000,00 IVIPAY por 7.000,00 IVIP estabilizando US$ 0,46" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458118470/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685458118470, + "acquirer_reference": "", + "verification_code": 1685458118470, + "net_received_amount": 0, + "total_paid_amount": 70000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458118470", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 7000, + "total_amount": 7000, + "id": 1685458118470, + "date_created": "2023-05-30T14:48:38.470Z", + "date_last_updated": "2023-05-30T14:48:38.470Z", + "date_of_expiration": "2023-05-30T14:48:38.470Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685458118470, + "description": "Compra de 7.000,00 IVIP por 70.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719304, + "modified": 1700589719304 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685663081137/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685663081137, + "acquirer_reference": "", + "verification_code": 1685663081137, + "net_received_amount": 0, + "total_paid_amount": 100000, + "overpaid_amount": 0, + "installment_amount": 100000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685663081137", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 100000, + "total_amount": 100000, + "id": 1685663081137, + "date_created": "2023-06-01T23:44:41.137Z", + "date_last_updated": "2023-06-01T23:44:41.137Z", + "date_of_expiration": "2023-07-01T23:44:41.137Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685663081137, + "description": "", + "wasDebited": true + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685732640623/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685732640623, + "acquirer_reference": "", + "verification_code": 1685732640623, + "net_received_amount": 0, + "total_paid_amount": 75, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685732640623", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 0, + "total_amount": 0, + "id": 1685732640623, + "date_created": "2023-06-02T19:04:00.623Z", + "date_last_updated": "2023-06-02T19:04:00.623Z", + "date_of_expiration": "2023-06-02T19:04:00.623Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685732640623, + "description": "Compra de 0,00 IVIP por 75,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 220, + "total_amount": 220, + "history_id": 1686686158496, + "id": 1686686158496, + "date_created": "2023-06-13T19:55:58.496Z", + "date_last_updated": "2023-06-13T19:55:58.496Z", + "date_of_expiration": "2023-07-13T19:55:58.496Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 220,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1687279230710/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 3, + "payment_method_reference_id": 1687279230710, + "acquirer_reference": "", + "verification_code": 1687279230710, + "net_received_amount": 0, + "total_paid_amount": 37.333, + "overpaid_amount": 0, + "installment_amount": 37.333, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1687279230710", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 37.333, + "total_amount": 37.333, + "id": 1687279230710, + "contract_id": "1679181025084", + "date_created": "2023-06-20T16:40:30.710Z", + "date_last_updated": "2023-06-20T16:40:30.710Z", + "date_of_expiration": "2023-06-20T16:40:30.710Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1687279230710, + "description": "Pagamento de fatura 3 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 865324, + "total_amount": 865324, + "history_id": 1687291349985, + "id": 1687291349985, + "date_created": "2023-06-20T20:02:29.985Z", + "date_last_updated": "2023-06-20T20:02:29.985Z", + "date_of_expiration": "2023-06-20T20:02:29.985Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 865.324,00 IVIP para a carteira 0x0000000000000000000000000000000000000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1688400997533/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400997533, + "acquirer_reference": "", + "verification_code": 1688400997533, + "net_received_amount": 0, + "total_paid_amount": 100000, + "overpaid_amount": 0, + "installment_amount": 100000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1688400997533", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 102000, + "total_amount": 102000, + "id": 1688400997533, + "date_created": "2023-07-03T16:16:37.533Z", + "date_last_updated": "2023-07-03T16:16:37.533Z", + "date_of_expiration": "2023-07-03T16:16:37.533Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400997533, + "wasDebited": true, + "description": "Resgate do investimento staking de 100.000,00 IVIP com um rendimento de +2.000,00 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1689203359364/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689203359364, + "acquirer_reference": "", + "verification_code": 1689203359364, + "net_received_amount": 0, + "total_paid_amount": 960, + "overpaid_amount": 0, + "installment_amount": 960, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1689203359364", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 960, + "total_amount": 960, + "id": 1689203359364, + "date_created": "2023-07-12T23:09:19.364Z", + "date_last_updated": "2023-07-12T23:09:19.364Z", + "date_of_expiration": "2024-05-12T23:09:19.364Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1689203359364, + "description": "Investimento de 960,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/12/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-19T18:23:22.188Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1689877402192, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7104, + "installment_amount": 7104, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/extract/000523147298669313/order/1689877402188" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "", + "original_amount": 7104, + "total_amount": 7104, + "id": 1689877402192, + "history_id": 1689877402192, + "date_created": "2023-07-20T18:23:22.192Z", + "date_last_updated": "2023-07-20T18:23:22.192Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor R$ 7.104,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-19T20:01:24.161Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1689883284161, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1391, + "installment_amount": 1391, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1689883284161" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1391, + "total_amount": 1391, + "id": 1689883284161, + "history_id": 1689883284161, + "date_created": "2023-07-20T20:01:24.161Z", + "date_last_updated": "2023-07-20T20:02:07.692Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "rejected", + "money_release_date": "2023-07-20T20:02:07.692Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.391,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3%", + "amount": 145.5 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690566158772, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5000, + "installment_amount": 5000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566158772" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5000, + "total_amount": 4850, + "id": 1690566158772, + "history_id": 1690566158772, + "date_created": "2023-07-28T17:42:38.772Z", + "date_last_updated": "2023-07-28T18:25:14.945Z", + "date_of_expiration": "2023-07-28T17:42:38.772Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "rejected", + "money_release_date": "2023-07-28T18:25:14.945Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Saque de 50,00 IVIP para a carteira 0x0000000000000000000000000000000000000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3%", + "amount": 29.099999999999998 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690566489489, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566489489" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1000, + "total_amount": 970, + "id": 1690566489489, + "history_id": 1690566489489, + "date_created": "2023-07-28T17:48:09.489Z", + "date_last_updated": "2023-07-28T18:25:45.368Z", + "date_of_expiration": "2023-07-28T17:48:09.489Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": "2023-07-28T18:25:45.368Z", + "money_release_date": "2023-07-28T18:25:45.368Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 10,00 IVIP para a carteira 0x0000000000000000000000000000000000000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3%", + "amount": 34.92 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690566618435, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1200, + "installment_amount": 1200, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566618435" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1200, + "total_amount": 1164, + "id": 1690566618435, + "history_id": 1690566618435, + "date_created": "2023-07-28T17:50:18.435Z", + "date_last_updated": "2023-07-28T18:26:54.405Z", + "date_of_expiration": "2023-07-28T17:50:18.435Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "rejected", + "money_release_date": "2023-07-28T18:26:54.405Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Saque de 1164 IVIP para a carteira 0x0000000000000000000000000000000000000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 392.84999999999997 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690568586623, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 13500, + "installment_amount": 13500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690568586623" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 13500, + "total_amount": 13095, + "id": 1690568586623, + "history_id": 1690568586623, + "date_created": "2023-07-28T18:23:06.623Z", + "date_last_updated": "2023-07-28T18:27:14.472Z", + "date_of_expiration": "2023-07-28T18:23:06.623Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "rejected", + "money_release_date": "2023-07-28T18:27:14.472Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Saque de 13.095,00 IVIP para a carteira 0x0000000000000000000000000000000000000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1691685725174/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691685725174, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1691685725174" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1691685725174", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 155950, + "total_amount": 155950, + "id": 1691685725174, + "history_id": 1691685725174, + "date_created": "2023-08-10T16:42:05.174Z", + "date_last_updated": "2023-08-10T16:42:05.174Z", + "date_of_expiration": "2023-08-10T16:42:05.174Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 155.950,00 IVIP por 100,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-16T18:40:23.442Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692297623443, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692297623443" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "id": 1692297623443, + "history_id": 1692297623443, + "date_created": "2023-08-17T18:40:23.443Z", + "date_last_updated": "2023-08-17T18:40:23.443Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 50,00 para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-16T18:42:48.550Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692297768550, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 25, + "installment_amount": 25, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692297768550" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 25, + "total_amount": 25, + "id": 1692297768550, + "history_id": 1692297768550, + "date_created": "2023-08-17T18:42:48.550Z", + "date_last_updated": "2023-08-17T18:43:22.788Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "rejected", + "money_release_date": "2023-08-17T18:43:22.788Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Deposito de um valor 25,00 BRL para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-16T20:37:26.621Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692304646621, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1200, + "installment_amount": 1200, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692304646621" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1200, + "total_amount": 1200, + "id": 1692304646621, + "history_id": 1692304646621, + "date_created": "2023-08-17T20:37:26.621Z", + "date_last_updated": "2023-08-17T20:40:02.388Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "rejected", + "money_release_date": "2023-08-17T20:40:02.388Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Deposito de um valor 1.200,00 IVIP para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-16T20:41:33.953Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692304893954, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 23000, + "installment_amount": 23000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692304893954" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 23000, + "total_amount": 23000, + "id": 1692304893954, + "history_id": 1692304893954, + "date_created": "2023-08-17T20:41:33.954Z", + "date_last_updated": "2023-08-17T20:41:56.494Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "date_approved": "2023-08-17T20:41:56.494Z", + "money_release_date": "2023-08-17T20:41:56.494Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 23.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-16T23:06:58.376Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692313618376, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 10000000, + "installment_amount": 10000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692313618376" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 10000000, + "total_amount": 10000000, + "id": 1692313618376, + "history_id": 1692313618376, + "date_created": "2023-08-17T23:06:58.376Z", + "date_last_updated": "2023-08-17T23:06:58.376Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 10.000.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-17T14:16:26.664Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692368186664, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 125000000, + "installment_amount": 125000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692368186664" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 125000000, + "total_amount": 125000000, + "id": 1692368186664, + "history_id": 1692368186664, + "date_created": "2023-08-18T14:16:26.664Z", + "date_last_updated": "2023-08-18T14:16:26.664Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 125.000.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692651485901, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 114.75, + "installment_amount": 114.75, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 3, + "installments_payable": 1, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651485901" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 114.75, + "total_amount": 114.75, + "id": "1692651485901", + "history_id": "1692651485901", + "date_created": "2023-08-21T20:58:05.901Z", + "date_last_updated": "2023-08-21T20:58:05.901Z", + "date_of_expiration": "2023-08-21T20:58:05.901Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 3 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692651487214, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 37.333333333333336, + "installment_amount": 37.333333333333336, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 4, + "installments_payable": 2, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651487214" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 37.333333333333336, + "total_amount": 37.333333333333336, + "id": "1692651487214", + "history_id": "1692651487214", + "date_created": "2023-08-21T20:58:07.214Z", + "date_last_updated": "2023-08-21T20:58:07.214Z", + "date_of_expiration": "2023-08-21T20:58:07.214Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 4 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692651816060, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 37.333333333333336, + "installment_amount": 37.333333333333336, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 5, + "installments_payable": 1, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651816060" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 37.333333333333336, + "total_amount": 37.333333333333336, + "id": "1692651816060", + "history_id": "1692651816060", + "date_created": "2023-08-21T21:03:36.060Z", + "date_last_updated": "2023-08-21T21:03:36.060Z", + "date_of_expiration": "2023-08-21T21:03:36.060Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 5 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692658113429, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 114.75, + "installment_amount": 114.75, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 4, + "installments_payable": 0, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692658113429" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 114.75, + "total_amount": 114.75, + "id": "1692658113429", + "history_id": "1692658113429", + "date_created": "2023-08-21T22:48:33.429Z", + "date_last_updated": "2023-08-21T22:48:33.429Z", + "date_of_expiration": "2023-08-21T22:48:33.429Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 4 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 660000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692976623136, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 22000000, + "installment_amount": 22000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692976623136" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 22000000, + "total_amount": 21340000, + "id": "1692976623136", + "history_id": "1692976623136", + "date_created": "2023-08-25T15:17:03.136Z", + "date_last_updated": "2023-08-25T15:18:37.836Z", + "date_of_expiration": "2023-08-25T15:17:03.136Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": "2023-08-25T15:18:37.836Z", + "money_release_date": "2023-08-25T15:18:37.836Z", + "money_release_status": "drawee", + "wasDebited": true, + "description": "Saque de 21.340.000,00 IVIP para a carteira 0x15a315a0f6917CA88693fDCCD4B753E051c2d173" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693346357974, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2000000, + "installment_amount": 2000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1693346357974" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 2000000, + "total_amount": 2000000, + "id": "1693346357974", + "history_id": "1693346357974", + "date_created": "2023-08-29T21:59:17.974Z", + "date_last_updated": "2023-08-29T21:59:17.974Z", + "date_of_expiration": "2025-08-29T21:59:17.968Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 2.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 29/08/2025 - P9A02KSL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693765839188, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1693765839188" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": "1693765839188", + "history_id": "1693765839188", + "date_created": "2023-09-03T18:30:39.188Z", + "date_last_updated": "2023-09-03T18:30:39.188Z", + "date_of_expiration": "2023-10-03T18:30:39.188Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694554040120, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 37.333333333333336, + "installment_amount": 37.333333333333336, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 5, + "installments_payable": 1, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554040120" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 37.333333333333336, + "total_amount": 37.333333333333336, + "id": "1694554040120", + "history_id": "1694554040120", + "date_created": "2023-09-12T21:27:20.120Z", + "date_last_updated": "2023-09-12T21:27:20.120Z", + "date_of_expiration": "2023-09-12T21:27:20.120Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 5 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694554040222, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 70.66666666666667, + "installment_amount": 70.66666666666667, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 3, + "installments_payable": 0, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554040222" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 70.66666666666667, + "total_amount": 70.66666666666667, + "id": "1694554040222", + "history_id": "1694554040222", + "date_created": "2023-09-12T21:27:20.222Z", + "date_last_updated": "2023-09-12T21:27:20.222Z", + "date_of_expiration": "2023-09-12T21:27:20.222Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 3 de 3 no valor de 70,67 BRL referente ao contrato 1683667472591" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694554084107, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 37.333333333333336, + "installment_amount": 37.333333333333336, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 6, + "installments_payable": 0, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554084107" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 37.333333333333336, + "total_amount": 37.333333333333336, + "id": "1694554084107", + "history_id": "1694554084107", + "date_created": "2023-09-12T21:28:04.107Z", + "date_last_updated": "2023-09-12T21:28:04.107Z", + "date_of_expiration": "2023-09-12T21:28:04.107Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 6 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696114300558/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696114300558, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100000, + "installment_amount": 100000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696114300558" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696114300558", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "000523147298669313", + "payment_method": "staking", + "original_amount": 100000, + "total_amount": 100000, + "id": "1696114300558", + "history_id": "1696114300558", + "date_created": "2023-09-30T22:51:40.558Z", + "date_last_updated": "2023-09-30T22:51:40.558Z", + "date_of_expiration": "2023-09-30T22:51:40.558Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "description": "Ganho de 100.000,00 IVIP pelo VOUCHER", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696118036096, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100000, + "installment_amount": 100000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696118036096" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "000523147298669313", + "payment_method": "staking", + "original_amount": 100000, + "total_amount": 100000, + "id": "1696118036096", + "history_id": "1696118036096", + "date_created": "2023-09-30T23:53:56.096Z", + "date_last_updated": "2023-09-30T23:53:56.096Z", + "date_of_expiration": "2023-09-30T23:53:56.096Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Ganho de 100.000,00 IVIP pelo VOUCHER com o número 1037" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696118157622, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50000, + "installment_amount": 50000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696118157622" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "000523147298669313", + "payment_method": "staking", + "original_amount": 50000, + "total_amount": 50000, + "id": "1696118157622", + "history_id": "1696118157622", + "date_created": "2023-09-30T23:55:57.622Z", + "date_last_updated": "2023-09-30T23:55:57.622Z", + "date_of_expiration": "2023-09-30T23:55:57.622Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Ganho de 50.000,00 IVIP pelo VOUCHER com o número 0023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696360843684, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696360843684" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "000523147298669313", + "payment_method": "staking", + "original_amount": 1020, + "total_amount": 1020, + "id": "1696360843684", + "history_id": "1696360843684", + "date_created": "2023-10-03T19:20:43.684Z", + "date_last_updated": "2023-10-03T19:20:43.684Z", + "date_of_expiration": "2023-10-03T19:20:43.684Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719305, + "modified": 1700589719305 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696362317186, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696362317186" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "000523147298669313", + "payment_method": "staking", + "original_amount": 1020, + "total_amount": 1020, + "id": "1696362317186", + "history_id": "1696362317186", + "date_created": "2023-10-03T19:45:17.186Z", + "date_last_updated": "2023-10-03T19:45:17.186Z", + "date_of_expiration": "2023-10-03T19:45:17.186Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084", + "content": { + "type": 1, + "value": { + "id": 1679181025084, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 224, + "installments": 6, + "installment_amount": 37.333333333333336, + "date_created": "2023-03-18T23:10:25.084Z", + "history_id": 1679181025084, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805", + "content": { + "type": 1, + "value": { + "id": 1679181157805, + "type": "emprestimo", + "original_amount": 425, + "total_amount": 459, + "installments": 4, + "installment_amount": 114.75, + "date_created": "2023-03-18T23:12:37.805Z", + "history_id": 1679181157805, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 9.200000000000001 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080", + "content": { + "type": 1, + "value": { + "id": 1679183534080, + "type": "emprestimo", + "original_amount": 230, + "total_amount": 239.2, + "installments": 2, + "installment_amount": 119.6, + "date_created": "2023-03-18T23:52:14.080Z", + "history_id": 1679183534080, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128", + "content": { + "type": 1, + "value": { + "id": 1679184046128, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 208, + "installments": 2, + "installment_amount": 104, + "date_created": "2023-03-19T00:00:46.128Z", + "history_id": 1679184046128, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8.4 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424", + "content": { + "type": 1, + "value": { + "id": 1679184832424, + "type": "emprestimo", + "original_amount": 210, + "total_amount": 218.4, + "installments": 2, + "installment_amount": 109.2, + "date_created": "2023-03-19T00:13:52.424Z", + "history_id": 1679184832424, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084", + "content": { + "type": 1, + "value": { + "id": 1679181025084, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 224, + "installments": 6, + "installment_amount": 37.333333333333336, + "date_created": "2023-03-18T23:10:25.084Z", + "history_id": 1679181025084, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805", + "content": { + "type": 1, + "value": { + "id": 1679181157805, + "type": "emprestimo", + "original_amount": 425, + "total_amount": 459, + "installments": 4, + "installment_amount": 114.75, + "date_created": "2023-03-18T23:12:37.805Z", + "history_id": 1679181157805, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 9.200000000000001 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080", + "content": { + "type": 1, + "value": { + "id": 1679183534080, + "type": "emprestimo", + "original_amount": 230, + "total_amount": 239.2, + "installments": 2, + "installment_amount": 119.6, + "date_created": "2023-03-18T23:52:14.080Z", + "history_id": 1679183534080, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128", + "content": { + "type": 1, + "value": { + "id": 1679184046128, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 208, + "installments": 2, + "installment_amount": 104, + "date_created": "2023-03-19T00:00:46.128Z", + "history_id": 1679184046128, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8.4 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424", + "content": { + "type": 1, + "value": { + "id": 1679184832424, + "type": "emprestimo", + "original_amount": 210, + "total_amount": 218.4, + "installments": 2, + "installment_amount": 109.2, + "date_created": "2023-03-19T00:13:52.424Z", + "history_id": 1679184832424, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084", + "content": { + "type": 1, + "value": { + "id": 1679181025084, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 224, + "installments": 6, + "installment_amount": 37.333333333333336, + "date_created": "2023-03-18T23:10:25.084Z", + "history_id": 1679181025084, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805", + "content": { + "type": 1, + "value": { + "id": 1679181157805, + "type": "emprestimo", + "original_amount": 425, + "total_amount": 459, + "installments": 4, + "installment_amount": 114.75, + "date_created": "2023-03-18T23:12:37.805Z", + "history_id": 1679181157805, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 4 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468", + "content": { + "type": 1, + "value": { + "id": 1683665355468, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 204, + "installments": 1, + "installment_amount": 204, + "date_created": "2023-05-09T20:49:15.468Z", + "history_id": 1683665355468, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 204,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 3 parcela(s) 6.00%", + "amount": 12 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591", + "content": { + "type": 1, + "value": { + "id": 1683667472591, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 212, + "installments": 3, + "installment_amount": 70.66666666666667, + "date_created": "2023-05-09T21:24:32.591Z", + "history_id": 1683667472591, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084", + "content": { + "type": 1, + "value": { + "id": 1679181025084, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 224, + "installments": 6, + "installment_amount": 37.333333333333336, + "date_created": "2023-03-18T23:10:25.084Z", + "history_id": 1679181025084, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805", + "content": { + "type": 1, + "value": { + "id": 1679181157805, + "type": "emprestimo", + "original_amount": 425, + "total_amount": 459, + "installments": 4, + "installment_amount": 114.75, + "date_created": "2023-03-18T23:12:37.805Z", + "history_id": 1679181157805, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 3 parcela(s) 6.00%", + "amount": 12 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591", + "content": { + "type": 1, + "value": { + "id": 1683667472591, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 212, + "installments": 3, + "installment_amount": 70.66666666666667, + "date_created": "2023-05-09T21:24:32.591Z", + "history_id": 1683667472591, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084", + "content": { + "type": 1, + "value": { + "id": 1679181025084, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 224, + "installments": 6, + "installment_amount": 37.333333333333336, + "date_created": "2023-03-18T23:10:25.084Z", + "history_id": 1679181025084, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-12T21:27:20.136Z", + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 3 parcela(s) 6.00%", + "amount": 12 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591", + "content": { + "type": 1, + "value": { + "id": 1683667472591, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 212, + "installments": 3, + "installment_amount": 70.66666666666667, + "date_created": "2023-05-09T21:24:32.591Z", + "history_id": 1683667472591, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-12T21:27:20.249Z", + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084", + "content": { + "type": 1, + "value": { + "id": 1679181025084, + "type": "emprestimo", + "original_amount": 200, + "total_amount": 224, + "installments": 6, + "installment_amount": 37.333333333333336, + "date_created": "2023-03-18T23:10:25.084Z", + "history_id": 1679181025084, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-12T21:28:04.147Z", + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1500, + "limitUsed": 312.50000000000006, + "analysisRequested": "2023-03-17T05:24:01.192Z", + "lastReview": "2023-03-17T05:27:11.310Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313", + "content": { + "type": 1, + "value": { + "dataModificacao": 1676677228207, + "dateValidity": 1679011956662, + "totalValue": 12518.651018650135, + "currencyType": "USD", + "balancesModificacao": "2023-10-13T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001286046930633944/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001286046930633944", + "content": { + "type": 1, + "value": { + "dataModificacao": 1695928321328, + "dateValidity": 1695928321874, + "currencyType": "USD", + "balancesModificacao": "2023-10-11T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "-3396779.42000000", + "symbol": "IVIP", + "value": -452.027 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1684093592429, + "id": 1684093592429, + "date_created": "2023-05-14T19:46:32.429Z", + "date_last_updated": "2023-05-14T20:29:22.499Z", + "date_of_expiration": "2023-06-13T19:46:32.429Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-14T20:29:22.499Z", + "money_release_date": "2023-05-14T20:29:22.499Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0013.4542.5233.2609-77" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 10.02 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 501, + "total_amount": 511.02, + "history_id": 1684399661939, + "id": 1684399661939, + "date_created": "2023-05-18T08:47:41.939Z", + "date_last_updated": "2023-05-18T08:47:41.939Z", + "date_of_expiration": "2023-06-17T08:47:41.939Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 501,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 511,02" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 9.98 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 499, + "total_amount": 508.98, + "history_id": 1684612673872, + "id": 1684612673872, + "date_created": "2023-05-20T19:57:53.872Z", + "date_last_updated": "2023-05-20T19:57:53.872Z", + "date_of_expiration": "2023-06-19T19:57:53.872Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 499,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 508,98" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684624250482/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624250482, + "acquirer_reference": "", + "verification_code": 1684624250482, + "net_received_amount": 0, + "total_paid_amount": 1500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684624250482", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 7306097, + "total_amount": 7306097, + "id": 1684624250482, + "date_created": "2023-05-20T23:10:50.482Z", + "date_last_updated": "2023-05-20T23:10:50.482Z", + "date_of_expiration": "2023-05-20T23:10:50.482Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624250482, + "description": "Compra de 7.306.097,00 IVIP por 1.500,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 562, + "total_amount": 562, + "history_id": 1684792076230, + "id": 1684792076230, + "date_created": "2023-05-22T21:47:56.230Z", + "date_last_updated": "2023-05-22T21:47:56.230Z", + "date_of_expiration": "2023-06-21T21:47:56.230Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 562, + "total_amount": 562, + "history_id": 1684942997083, + "id": 1684942997083, + "date_created": "2023-05-24T15:43:17.083Z", + "date_last_updated": "2023-05-24T15:43:17.083Z", + "date_of_expiration": "2023-06-23T15:43:17.083Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 562, + "total_amount": 562, + "history_id": 1684973822893, + "id": 1684973822893, + "date_created": "2023-05-25T00:17:02.893Z", + "date_last_updated": "2023-05-25T11:43:28.165Z", + "date_of_expiration": "2023-06-24T00:17:02.893Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-25T11:43:28.165Z", + "money_release_date": "2023-05-25T11:43:28.165Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 517, + "total_amount": 517, + "history_id": 1685116940519, + "id": 1685116940519, + "date_created": "2023-05-26T16:02:20.519Z", + "date_last_updated": "2023-05-29T14:07:27.276Z", + "date_of_expiration": "2023-06-25T16:02:20.519Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-29T14:07:27.276Z", + "money_release_date": "2023-05-29T14:07:27.276Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 517,00 para a carteira iVip 0013.4542.5233.2609-77" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 329, + "total_amount": 329, + "history_id": 1685202990180, + "id": 1685202990180, + "date_created": "2023-05-27T15:56:30.180Z", + "date_last_updated": "2023-05-29T12:48:37.239Z", + "date_of_expiration": "2023-06-26T15:56:30.180Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-29T12:48:37.239Z", + "money_release_date": "2023-05-29T12:48:37.239Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 329,00 para a carteira iVip 0013.4542.5233.2609-77" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685384470907/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685384470907, + "acquirer_reference": "", + "verification_code": 1685384470907, + "net_received_amount": 0, + "total_paid_amount": 0.4161719170765633, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685384470907", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 45000, + "total_amount": 45000, + "id": 1685384470907, + "date_created": "2023-05-29T18:21:10.907Z", + "date_last_updated": "2023-05-29T18:21:10.907Z", + "date_of_expiration": "2023-05-29T18:21:10.907Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIPAY", + "history_id": 1685384470907, + "description": "Compra de 45.000,00 IVIPAY por 4.500,00 IVIP estabilizando US$ 0,42" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 96, + "total_amount": 96, + "history_id": 1685389853107, + "id": 1685389853107, + "date_created": "2023-05-29T19:50:53.107Z", + "date_last_updated": "2023-06-22T12:16:16.583Z", + "date_of_expiration": "2023-06-28T19:50:53.107Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-06-22T12:16:16.583Z", + "money_release_date": "2023-06-22T12:16:16.583Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 96,00 para a carteira iVip 0013.4542.5233.2609-77" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392262218/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685392262218, + "acquirer_reference": "", + "verification_code": 1685392262218, + "net_received_amount": 0, + "total_paid_amount": 26.953032521201788, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392262218", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 3000000, + "total_amount": 3000000, + "id": 1685392262218, + "date_created": "2023-05-29T20:31:02.218Z", + "date_last_updated": "2023-05-29T20:31:02.218Z", + "date_of_expiration": "2023-05-29T20:31:02.218Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIPAY", + "history_id": 1685392262218, + "description": "Compra de 3.000.000,00 IVIPAY por 300.000,00 IVIP estabilizando US$ 26,95" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392563175/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685392563175, + "acquirer_reference": "", + "verification_code": 1685392563175, + "net_received_amount": 0, + "total_paid_amount": 269.5303252120179, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392563175", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 30000000, + "total_amount": 30000000, + "id": 1685392563175, + "date_created": "2023-05-29T20:36:03.175Z", + "date_last_updated": "2023-05-29T20:36:03.175Z", + "date_of_expiration": "2023-05-29T20:36:03.175Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIPAY", + "history_id": 1685392563175, + "description": "Compra de 30.000.000,00 IVIPAY por 3.000.000,00 IVIP estabilizando US$ 269,53" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685394042885/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685394042885, + "acquirer_reference": "", + "verification_code": 1685394042885, + "net_received_amount": 0, + "total_paid_amount": 33000000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685394042885", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 3300000, + "total_amount": 3300000, + "id": 1685394042885, + "date_created": "2023-05-29T21:00:42.885Z", + "date_last_updated": "2023-05-29T21:00:42.885Z", + "date_of_expiration": "2023-05-29T21:00:42.885Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIP", + "history_id": 1685394042885, + "description": "Compra de 3.300.000,00 IVIP por 33.000.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685450530237/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685450530237, + "acquirer_reference": "", + "verification_code": 1685450530237, + "net_received_amount": 0, + "total_paid_amount": 456.734080852326, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685450530237", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 50000000, + "total_amount": 50000000, + "id": 1685450530237, + "date_created": "2023-05-30T12:42:10.237Z", + "date_last_updated": "2023-05-30T12:42:10.237Z", + "date_of_expiration": "2023-05-30T12:42:10.237Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIPAY", + "history_id": 1685450530237, + "description": "Compra de 50.000.000,00 IVIPAY por 5.000.000,00 IVIP estabilizando US$ 456,73" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685455769977/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685455769977, + "acquirer_reference": "", + "verification_code": 1685455769977, + "net_received_amount": 0, + "total_paid_amount": 50000000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685455769977", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 5000000, + "total_amount": 5000000, + "id": 1685455769977, + "date_created": "2023-05-30T14:09:29.977Z", + "date_last_updated": "2023-05-30T14:09:29.977Z", + "date_of_expiration": "2023-05-30T14:09:29.977Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIP", + "history_id": 1685455769977, + "description": "Compra de 5.000.000,00 IVIP por 50.000.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685743296302/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685743296302, + "acquirer_reference": "", + "verification_code": 1685743296302, + "net_received_amount": 0, + "total_paid_amount": 1408, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685743296302", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 4940350, + "total_amount": 4940350, + "id": 1685743296302, + "date_created": "2023-06-02T22:01:36.302Z", + "date_last_updated": "2023-06-02T22:01:36.302Z", + "date_of_expiration": "2023-06-02T22:01:36.302Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685743296302, + "description": "Compra de 4.940.350,00 IVIP por 1.408,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685744480429/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685744480429, + "acquirer_reference": "", + "verification_code": 1685744480429, + "net_received_amount": 0, + "total_paid_amount": 41.900000000000006, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685744480429", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 41.900000000000006, + "total_amount": 41.900000000000006, + "id": 1685744480429, + "date_created": "2023-06-02T22:21:20.429Z", + "date_last_updated": "2023-06-02T22:21:20.429Z", + "date_of_expiration": "2023-06-02T22:21:20.429Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1685744480429, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685745152104/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685745152104, + "acquirer_reference": "", + "verification_code": 1685745152104, + "net_received_amount": 0, + "total_paid_amount": 41.9, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685745152104", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 147164, + "total_amount": 147164, + "id": 1685745152104, + "date_created": "2023-06-02T22:32:32.104Z", + "date_last_updated": "2023-06-02T22:32:32.104Z", + "date_of_expiration": "2023-06-02T22:32:32.104Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685745152104, + "description": "Compra de 147.164,00 IVIP por 41,90 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1191, + "total_amount": 1191, + "history_id": 1686664360099, + "id": 1686664360099, + "date_created": "2023-06-13T13:52:40.099Z", + "date_last_updated": "2023-06-13T14:00:09.214Z", + "date_of_expiration": "2023-07-13T13:52:40.099Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-06-13T14:00:09.214Z", + "money_release_date": "2023-06-13T14:00:09.214Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.191,00 para a carteira iVip 0013.4542.5233.2609-77" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436781/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 0, + "payment_method_reference_id": 1686844436781, + "acquirer_reference": "", + "verification_code": 1686844436781, + "net_received_amount": 0, + "total_paid_amount": 511.02, + "overpaid_amount": 0, + "installment_amount": 511.02, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436781", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 511.02, + "total_amount": 511.02, + "id": 1686844436781, + "contract_id": "1684399661939", + "date_created": "2023-06-15T15:53:56.781Z", + "date_last_updated": "2023-06-15T15:53:56.781Z", + "date_of_expiration": "2023-06-15T15:53:56.781Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1686844436781, + "description": "Pagamento de fatura 1 de 1 no valor de 511,02 BRL referente ao contrato 1684399661939" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436954/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 0, + "payment_method_reference_id": 1686844436954, + "acquirer_reference": "", + "verification_code": 1686844436954, + "net_received_amount": 0, + "total_paid_amount": 508.98, + "overpaid_amount": 0, + "installment_amount": 508.98, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436954", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 508.98, + "total_amount": 508.98, + "id": 1686844436954, + "contract_id": "1684612673872", + "date_created": "2023-06-15T15:53:56.954Z", + "date_last_updated": "2023-06-15T15:53:56.954Z", + "date_of_expiration": "2023-06-15T15:53:56.954Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1686844436954, + "description": "Pagamento de fatura 1 de 1 no valor de 508,98 BRL referente ao contrato 1684612673872" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1687345768938/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687345768938, + "acquirer_reference": "", + "verification_code": 1687345768938, + "net_received_amount": 0, + "total_paid_amount": 11152973, + "overpaid_amount": 0, + "installment_amount": 11152973, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1687345768938", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 11152973, + "total_amount": 11152973, + "id": 1687345768938, + "date_created": "2023-06-21T11:09:28.938Z", + "date_last_updated": "2023-06-21T11:09:28.938Z", + "date_of_expiration": "2024-06-21T11:09:28.938Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687345768938, + "wasDebited": true, + "description": "Investimento de 11.152.973,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1687393215194/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687393215194, + "acquirer_reference": "", + "verification_code": 1687393215194, + "net_received_amount": 0, + "total_paid_amount": 171, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1687393215194", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 818586, + "total_amount": 818586, + "id": 1687393215194, + "date_created": "2023-06-22T00:20:15.194Z", + "date_last_updated": "2023-06-22T00:20:15.194Z", + "date_of_expiration": "2023-06-22T00:20:15.194Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687393215194, + "description": "Compra de 818.586,00 IVIP por 171,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1687495116294/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687495116294, + "acquirer_reference": "", + "verification_code": 1687495116294, + "net_received_amount": 0, + "total_paid_amount": 96, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1687495116294", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 496157, + "total_amount": 496157, + "id": 1687495116294, + "date_created": "2023-06-23T04:38:36.294Z", + "date_last_updated": "2023-06-23T04:38:36.294Z", + "date_of_expiration": "2023-06-23T04:38:36.294Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687495116294, + "description": "Compra de 496.157,00 IVIP por 96,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1687547056698/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687547056698, + "acquirer_reference": "", + "verification_code": 1687547056698, + "net_received_amount": 0, + "total_paid_amount": 12152954, + "overpaid_amount": 0, + "installment_amount": 12152954, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1687547056698", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 12152954, + "total_amount": 12152954, + "id": 1687547056698, + "date_created": "2023-06-23T19:04:16.698Z", + "date_last_updated": "2023-06-23T19:04:16.698Z", + "date_of_expiration": "2025-06-23T19:04:16.698Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIP", + "history_id": 1687547056698, + "wasDebited": true, + "description": "Investimento de 12.152.954,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 526, + "total_amount": 526, + "history_id": 1688994491622, + "id": 1688994491622, + "date_created": "2023-07-10T13:08:11.622Z", + "date_last_updated": "2023-07-10T13:08:11.622Z", + "date_of_expiration": "2023-08-09T13:08:11.622Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 526,00 para a carteira iVip 0013.4542.5233.2609-77" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2224, + "total_amount": 2224, + "history_id": 1689000633630, + "id": 1689000633630, + "date_created": "2023-07-10T14:50:33.630Z", + "date_last_updated": "2023-07-10T15:21:46.324Z", + "date_of_expiration": "2023-08-09T14:50:33.630Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-10T15:21:46.324Z", + "money_release_date": "2023-07-10T15:21:46.324Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 2.224,00 para a carteira iVip 0013.4542.5233.2609-77" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689082225194/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689082225194, + "acquirer_reference": "", + "verification_code": 1689082225194, + "net_received_amount": 0, + "total_paid_amount": 224, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689082225194", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 180125, + "total_amount": 180125, + "id": 1689082225194, + "date_created": "2023-07-11T13:30:25.194Z", + "date_last_updated": "2023-07-11T13:30:25.194Z", + "date_of_expiration": "2023-07-11T13:30:25.194Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689082225194, + "description": "Compra de 180.125,00 IVIP por 224,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689114929852/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689114929852, + "acquirer_reference": "", + "verification_code": 1689114929852, + "net_received_amount": 0, + "total_paid_amount": 500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689114929852", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 305476, + "total_amount": 305476, + "id": 1689114929852, + "date_created": "2023-07-11T22:35:29.852Z", + "date_last_updated": "2023-07-11T22:35:29.852Z", + "date_of_expiration": "2023-07-11T22:35:29.852Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689114929852, + "description": "Compra de 305.476,00 IVIP por 500,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 726, + "total_amount": 726, + "history_id": 1689115029893, + "id": 1689115029893, + "date_created": "2023-07-11T22:37:09.893Z", + "date_last_updated": "2023-07-12T08:23:29.959Z", + "date_of_expiration": "2023-08-10T22:37:09.893Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-12T08:23:29.959Z", + "money_release_date": "2023-07-12T08:23:29.959Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 726,00 para a carteira iVip 0013.4542.5233.2609-77" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689195736692/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689195736692, + "acquirer_reference": "", + "verification_code": 1689195736692, + "net_received_amount": 0, + "total_paid_amount": 226, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689195736692", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 93754, + "total_amount": 93754, + "id": 1689195736692, + "date_created": "2023-07-12T21:02:16.692Z", + "date_last_updated": "2023-07-12T21:02:16.692Z", + "date_of_expiration": "2023-07-12T21:02:16.692Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689195736692, + "description": "Compra de 93.754,00 IVIP por 226,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204261841/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689204261841, + "acquirer_reference": "", + "verification_code": 1689204261841, + "net_received_amount": 0, + "total_paid_amount": 1904, + "overpaid_amount": 0, + "installment_amount": 1904, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204261841", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1904, + "total_amount": 1904, + "id": 1689204261841, + "date_created": "2023-07-12T23:24:21.841Z", + "date_last_updated": "2023-07-12T23:24:21.841Z", + "date_of_expiration": "2024-05-12T23:24:21.841Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1689204261841, + "wasDebited": true, + "description": "Investimento de 1.904,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/12/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204343069/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689204343069, + "acquirer_reference": "", + "verification_code": 1689204343069, + "net_received_amount": 0, + "total_paid_amount": 96, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204343069", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 40949, + "total_amount": 40949, + "id": 1689204343069, + "date_created": "2023-07-12T23:25:43.069Z", + "date_last_updated": "2023-07-12T23:25:43.069Z", + "date_of_expiration": "2023-07-12T23:25:43.069Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689204343069, + "description": "Compra de 40.949,00 IVIP por 96,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1423, + "total_amount": 1423, + "history_id": 1689347614368, + "id": 1689347614368, + "date_created": "2023-07-14T15:13:34.368Z", + "date_last_updated": "2023-07-14T15:13:34.368Z", + "date_of_expiration": "2023-08-13T15:13:34.368Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.423,00 para a carteira iVip 0013.4542.5233.2609-77" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1379, + "total_amount": 1379, + "history_id": 1689618134136, + "id": 1689618134136, + "date_created": "2023-07-17T18:22:14.136Z", + "date_last_updated": "2023-07-17T18:39:06.304Z", + "date_of_expiration": "2023-08-16T18:22:14.136Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-17T18:39:06.304Z", + "money_release_date": "2023-07-17T18:39:06.304Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.379,00 para a carteira iVip 0013.4542.5233.2609-77" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689619360780/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689619360780, + "acquirer_reference": "", + "verification_code": 1689619360780, + "net_received_amount": 0, + "total_paid_amount": 500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689619360780", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 326875, + "total_amount": 326875, + "id": 1689619360780, + "date_created": "2023-07-17T18:42:40.780Z", + "date_last_updated": "2023-07-17T18:42:40.780Z", + "date_of_expiration": "2023-07-17T18:42:40.780Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689619360780, + "description": "Compra de 326.875,00 IVIP por 500,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1690237331737/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1690237331737, + "acquirer_reference": "", + "verification_code": 1690237331737, + "net_received_amount": 0, + "total_paid_amount": 450, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1690237331737", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 318321, + "total_amount": 318321, + "id": 1690237331737, + "date_created": "2023-07-24T22:22:11.737Z", + "date_last_updated": "2023-07-24T22:22:11.737Z", + "date_of_expiration": "2023-07-24T22:22:11.737Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1690237331737, + "description": "Compra de 318.321,00 IVIP por 450,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1690273510959/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1690273510959, + "acquirer_reference": "", + "verification_code": 1690273510959, + "net_received_amount": 0, + "total_paid_amount": 429, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1690273510959", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 338652, + "total_amount": 338652, + "id": 1690273510959, + "date_created": "2023-07-25T08:25:10.959Z", + "date_last_updated": "2023-07-25T08:25:10.959Z", + "date_of_expiration": "2023-07-25T08:25:10.959Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1690273510959, + "description": "Compra de 338.652,00 IVIP por 429,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-20T11:04:14.014Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692615854014, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 450, + "installment_amount": 450, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1692615854014" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 450, + "total_amount": 450, + "id": 1692615854014, + "history_id": 1692615854014, + "date_created": "2023-08-21T11:04:14.014Z", + "date_last_updated": "2023-08-21T11:04:14.014Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 450,00 BRL para a carteira iVip 0013.4542.5233.2609-77" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693771767267, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3384929, + "installment_amount": 3384929, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1693771767267" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 3384929, + "total_amount": 3384929, + "id": "1693771767267", + "history_id": "1693771767267", + "date_created": "2023-09-03T20:09:27.267Z", + "date_last_updated": "2023-09-03T20:09:27.267Z", + "date_of_expiration": "2023-10-03T20:09:27.265Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 3.384.929,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696371493428, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3384929, + "installment_amount": 3384929, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696371493428" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "001345425233260977", + "payment_method": "staking", + "original_amount": 3452627.58, + "total_amount": 3452627.58, + "id": "1696371493428", + "history_id": "1696371493428", + "date_created": "2023-10-03T22:18:13.428Z", + "date_last_updated": "2023-10-03T22:18:13.428Z", + "date_of_expiration": "2023-10-03T22:18:13.428Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment", + "description": "Resgate do investimento staking de 3.384.929,00 IVIP com um rendimento de +67.698,58 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696371493371, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3384929, + "installment_amount": 3384929, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696371493371" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "001345425233260977", + "payment_method": "staking", + "original_amount": 3452627.58, + "total_amount": 3452627.58, + "id": "1696371493371", + "history_id": "1696371493371", + "date_created": "2023-10-03T22:18:13.371Z", + "date_last_updated": "2023-10-03T22:18:13.371Z", + "date_of_expiration": "2023-10-03T22:18:13.371Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 3.384.929,00 IVIP com um rendimento de +67.698,58 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696459483900, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7624011, + "installment_amount": 7624011, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696459483900" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "001345425233260977", + "payment_method": "staking", + "original_amount": 7624011, + "total_amount": 7624011, + "id": "1696459483900", + "history_id": "1696459483900", + "date_created": "2023-10-04T22:44:43.900Z", + "date_last_updated": "2023-10-04T22:44:43.900Z", + "date_of_expiration": "2023-11-04T22:44:43.861Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 7.624.011,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-05T22:09:19.538Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696630159545", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696630159545" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "001345425233260977", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "id": "1696630159545", + "history_id": "1696630159545", + "date_created": "2023-10-06T22:09:19.545Z", + "date_last_updated": "2023-10-06T22:09:19.545Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0013.4542.5233.2609-77" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 10.02 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939", + "content": { + "type": 1, + "value": { + "id": 1684399661939, + "type": "emprestimo", + "original_amount": 501, + "total_amount": 511.02, + "installments": 1, + "installment_amount": 511.02, + "date_created": "2023-05-18T08:47:41.939Z", + "history_id": 1684399661939, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 501,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 511,02" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 9.98 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872", + "content": { + "type": 1, + "value": { + "id": 1684612673872, + "type": "emprestimo", + "original_amount": 499, + "total_amount": 508.98, + "installments": 1, + "installment_amount": 508.98, + "date_created": "2023-05-20T19:57:53.872Z", + "history_id": 1684612673872, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 499,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 508,98" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 0, + "analysisRequested": "2023-05-17T11:09:17.322Z", + "lastReview": "2023-05-17T13:23:34.101Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684091909123, + "dateValidity": 1684091909123, + "totalValue": 5846.89, + "currencyType": "USD", + "balancesModificacao": "2023-10-09T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/002445768964969286/balances/BRL", + "content": { + "type": 1, + "value": { + "symbol": "BRL", + "available": "100.00000000", + "value": 20.09 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684119457629, + "id": 1684119457629, + "date_created": "2023-05-15T02:57:37.629Z", + "date_last_updated": "2023-05-15T03:02:14.913Z", + "date_of_expiration": "2023-06-14T02:57:37.629Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-15T03:02:14.913Z", + "money_release_date": "2023-05-15T03:02:14.913Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0024.4576.8964.9692-86" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/002445768964969286/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/002445768964969286", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684119427446, + "dateValidity": 1684119427446, + "totalValue": 20.09, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "5324627.00000000", + "symbol": "IVIP", + "value": 1075.36 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719306, + "modified": 1700589719306 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "history_id": 1677798769726, + "id": 1677798769726, + "date_created": "2023-03-02T23:12:49.726Z", + "date_last_updated": "2023-03-13T13:16:05.659Z", + "date_of_expiration": "2023-04-01T23:12:49.726Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-03-13T13:16:05.659Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0037.5729.7582.0925-33" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1678058459792, + "id": 1678058459792, + "date_created": "2023-03-05T23:20:59.792Z", + "date_last_updated": "2023-03-13T13:41:25.155Z", + "date_of_expiration": "2023-04-04T23:20:59.792Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-03-13T13:41:25.155Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0037.5729.7582.0925-33" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1678527306058, + "id": 1678527306058, + "date_created": "2023-03-11T09:35:06.058Z", + "date_last_updated": "2023-03-11T14:22:04.146Z", + "date_of_expiration": "2023-04-10T09:35:06.058Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-11T14:22:04.146Z", + "money_release_date": "2023-03-11T14:22:04.146Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0037.5729.7582.0925-33" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/history/1679908062539/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679908062539, + "acquirer_reference": "", + "verification_code": 1679908062539, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/history/1679908062539", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 5325627, + "total_amount": 5325627, + "id": 1679908062539, + "date_created": "2023-03-27T09:07:42.539Z", + "date_last_updated": "2023-03-27T09:07:42.539Z", + "date_of_expiration": "2023-03-27T09:07:42.539Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679908062539, + "description": "Compra de 5.325.627,00 IVIP por 1.000,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/history/1687109837625/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687109837625, + "acquirer_reference": "", + "verification_code": 1687109837625, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/history/1687109837625", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1687109837625, + "date_created": "2023-06-18T17:37:17.625Z", + "date_last_updated": "2023-06-18T17:37:17.625Z", + "date_of_expiration": "2023-12-18T17:37:17.625Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687109837625, + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/18/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677457152875, + "dateValidity": 1678995120507, + "totalValue": 249.76613748285868, + "currencyType": "USD", + "balancesModificacao": "2023-10-01T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/005753000686812060", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678127212147, + "dateValidity": 1678325697693, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007219693774253022/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "150.00000000", + "symbol": "BRL", + "value": 29.27 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1689373938365, + "id": 1689373938365, + "date_created": "2023-07-14T22:32:18.365Z", + "date_last_updated": "2023-07-26T21:41:01.153Z", + "date_of_expiration": "2023-08-13T22:32:18.365Z", + "operation_type": "regular_payment", + "status": "cancelled", + "status_detail": "cancelled", + "currency_id": "BRL", + "money_release_date": "2023-07-26T21:41:01.153Z", + "money_release_status": "cancelled", + "wasDebited": true, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0072.1969.3774.2530-22" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 130, + "total_amount": 130, + "history_id": 1689719003118, + "id": 1689719003118, + "date_created": "2023-07-18T22:23:23.118Z", + "date_last_updated": "2023-07-26T21:40:36.264Z", + "date_of_expiration": "2023-08-17T22:23:23.118Z", + "operation_type": "regular_payment", + "status": "cancelled", + "status_detail": "cancelled", + "currency_id": "BRL", + "money_release_date": "2023-07-26T21:40:36.264Z", + "money_release_status": "cancelled", + "wasDebited": true, + "description": "Deposito de um valor R$ 130,00 para a carteira iVip 0072.1969.3774.2530-22" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-23T16:27:21.978Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690216041978, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 150, + "installment_amount": 150, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/007219693774253022/history/1690216041978" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 150, + "total_amount": 150, + "id": 1690216041978, + "history_id": 1690216041978, + "date_created": "2023-07-24T16:27:21.978Z", + "date_last_updated": "2023-07-24T17:23:10.794Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-07-24T17:23:10.794Z", + "money_release_date": "2023-07-24T17:23:10.794Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 150,00 para a carteira iVip 0072.1969.3774.2530-22" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007219693774253022/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007219693774253022", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689373828234, + "dateValidity": 1689373828234, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": "2023-10-14T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007971641402707341", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678227735051, + "dateValidity": 1678242135085, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/010022330876236384", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677760347570, + "dateValidity": 1677760347570, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 507, + "total_amount": 507, + "history_id": 1684424340055, + "id": 1684424340055, + "date_created": "2023-05-18T15:39:00.055Z", + "date_last_updated": "2023-05-18T17:02:50.415Z", + "date_of_expiration": "2023-06-17T15:39:00.055Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-18T17:02:50.415Z", + "money_release_date": "2023-05-18T17:02:50.415Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 507,00 para a carteira iVip 0117.2048.7643.9274-14" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1093, + "total_amount": 1093, + "history_id": 1684539875683, + "id": 1684539875683, + "date_created": "2023-05-19T23:44:35.683Z", + "date_last_updated": "2023-05-19T23:57:17.031Z", + "date_of_expiration": "2023-06-18T23:44:35.683Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-19T23:57:17.031Z", + "money_release_date": "2023-05-19T23:57:17.031Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.093,00 para a carteira iVip 0117.2048.7643.9274-14" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1684625025298/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684625025298, + "acquirer_reference": "", + "verification_code": 1684625025298, + "net_received_amount": 0, + "total_paid_amount": 1600, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1684625025298", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 7793170, + "total_amount": 7793170, + "id": 1684625025298, + "date_created": "2023-05-20T23:23:45.298Z", + "date_last_updated": "2023-05-20T23:23:45.298Z", + "date_of_expiration": "2023-05-20T23:23:45.298Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684625025298, + "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5588008, + "total_amount": 5588008, + "history_id": 1685465338404, + "id": 1685465338404, + "date_created": "2023-05-30T16:48:58.404Z", + "date_last_updated": "2023-05-30T18:43:23.347Z", + "date_of_expiration": "2023-05-30T16:48:58.404Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-05-30T18:43:23.347Z", + "money_release_date": "2023-05-30T18:43:23.347Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 5.588.008,00 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720288992/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685720288992, + "acquirer_reference": "", + "verification_code": 1685720288992, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720288992", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1685720288992, + "date_created": "2023-06-02T15:38:08.992Z", + "date_last_updated": "2023-06-02T15:38:08.992Z", + "date_of_expiration": "2023-12-02T15:38:08.992Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685720288992, + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/2/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720363618/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685720363618, + "acquirer_reference": "", + "verification_code": 1685720363618, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720363618", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1685720363618, + "date_created": "2023-06-02T15:39:23.618Z", + "date_last_updated": "2023-06-02T15:39:23.618Z", + "date_of_expiration": "2023-07-02T15:39:23.618Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685720363618, + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/2/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1688400602023/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400602023, + "acquirer_reference": "", + "verification_code": 1688400602023, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1688400602023", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1020, + "total_amount": 1020, + "id": 1688400602023, + "date_created": "2023-07-03T16:10:02.023Z", + "date_last_updated": "2023-07-03T16:10:02.023Z", + "date_of_expiration": "2023-07-03T16:10:02.023Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400602023, + "wasDebited": true, + "description": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1688595538475/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688595538475, + "acquirer_reference": "", + "verification_code": 1688595538475, + "net_received_amount": 0, + "total_paid_amount": 2154096, + "overpaid_amount": 0, + "installment_amount": 2154096, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1688595538475", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 2154096, + "total_amount": 2154096, + "id": 1688595538475, + "date_created": "2023-07-05T22:18:58.475Z", + "date_last_updated": "2023-07-05T22:18:58.475Z", + "date_of_expiration": "2023-08-05T22:18:58.475Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688595538475, + "description": "Investimento de 2.154.096,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691274110792, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2197177.92, + "installment_amount": 2197177.92, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691274110792" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 2197177.92, + "total_amount": 2197177.92, + "id": 1691274110792, + "history_id": 1691274110792, + "date_created": "2023-08-05T22:21:50.792Z", + "date_last_updated": "2023-08-05T22:21:50.792Z", + "date_of_expiration": "2023-08-05T22:21:50.792Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 2.154.096,00 IVIP com um rendimento de +43.081,92 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 36290.1735 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691439593377, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1247085, + "installment_amount": 1247085, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691439593377" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1247085, + "total_amount": 1209672.45, + "id": 1691439593377, + "history_id": 1691439593377, + "date_created": "2023-08-07T20:19:53.377Z", + "date_last_updated": "2023-08-16T13:13:21.115Z", + "date_of_expiration": "2023-08-07T20:19:53.377Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_amount", + "money_release_date": "2023-08-16T13:13:21.115Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Saque de 1.209.672,45 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 36184.977 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691439992266, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1243470, + "installment_amount": 1243470, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691439992266" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1243470, + "total_amount": 1206165.9, + "id": 1691439992266, + "history_id": 1691439992266, + "date_created": "2023-08-07T20:26:32.266Z", + "date_last_updated": "2023-08-16T13:12:57.715Z", + "date_of_expiration": "2023-08-07T20:26:32.266Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_amount", + "money_release_date": "2023-08-16T13:12:57.715Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Saque de 1.206.165,9 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 65395.38 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691447884361, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2247263.92, + "installment_amount": 2247263.92, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691447884361" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 2247263.92, + "total_amount": 2179846, + "id": 1691447884361, + "history_id": 1691447884361, + "date_created": "2023-08-07T22:38:04.361Z", + "date_last_updated": "2023-08-08T13:28:08.315Z", + "date_of_expiration": "2023-08-07T22:38:04.361Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": "2023-08-08T13:28:08.315Z", + "money_release_date": "2023-08-08T13:28:08.315Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 2.179.846,00 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684369387404, + "dateValidity": 1684369387404, + "totalValue": 4.914821489351172, + "currencyType": "USD", + "balancesModificacao": "2023-10-06T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/012415886921139930", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696522229806, + "dateValidity": 1696522229867, + "currencyType": "USD", + "balancesModificacao": "2023-10-05T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1678555308384, + "id": 1678555308384, + "date_created": "2023-03-11T17:21:48.384Z", + "date_last_updated": "2023-03-12T14:35:22.207Z", + "date_of_expiration": "2023-04-10T17:21:48.384Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-12T14:35:22.207Z", + "money_release_date": "2023-03-12T14:35:22.207Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0128.8622.7244.5948-72" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/012886227244594872/history/1679266899414/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679266899414, + "acquirer_reference": "", + "verification_code": 1679266899414, + "net_received_amount": 0, + "total_paid_amount": 50, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/012886227244594872/history/1679266899414", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 291076, + "total_amount": 291076, + "id": 1679266899414, + "date_created": "2023-03-19T23:01:39.414Z", + "date_last_updated": "2023-03-19T23:01:39.414Z", + "date_of_expiration": "2023-03-19T23:01:39.414Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679266899414, + "description": "Compra de 291076 IVIP por 50 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/012886227244594872/history/1685668294321/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685668294321, + "acquirer_reference": "", + "verification_code": 1685668294321, + "net_received_amount": 0, + "total_paid_amount": 291076, + "overpaid_amount": 0, + "installment_amount": 291076, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/012886227244594872/history/1685668294321", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 291076, + "total_amount": 291076, + "id": 1685668294321, + "date_created": "2023-06-02T01:11:34.321Z", + "date_last_updated": "2023-06-02T01:11:34.321Z", + "date_of_expiration": "2025-06-02T01:11:34.321Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685668294321, + "wasDebited": true, + "description": "Investimento de 291.076,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/012886227244594872/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/012886227244594872", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678552860672, + "dateValidity": 1678668725687, + "totalValue": 16.26, + "currencyType": "USD", + "balancesModificacao": "2023-10-06T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "739882.02000000", + "symbol": "IVIP", + "value": 77.94 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 150, + "total_amount": 150, + "history_id": 1684102091531, + "id": 1684102091531, + "date_created": "2023-05-14T22:08:11.531Z", + "date_last_updated": "2023-05-14T22:23:10.115Z", + "date_of_expiration": "2023-06-13T22:08:11.531Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-14T22:23:10.115Z", + "money_release_date": "2023-05-14T22:23:10.115Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 150,00 para a carteira iVip 0150.9473.3487.9762-98" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1684624257232/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624257232, + "acquirer_reference": "", + "verification_code": 1684624257232, + "net_received_amount": 0, + "total_paid_amount": 150, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1684624257232", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 730609, + "total_amount": 730609, + "id": 1684624257232, + "date_created": "2023-05-20T23:10:57.232Z", + "date_last_updated": "2023-05-20T23:10:57.232Z", + "date_of_expiration": "2023-05-20T23:10:57.232Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624257232, + "description": "Compra de 730.609,00 IVIP por 150,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113576960/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687113576960, + "acquirer_reference": "", + "verification_code": 1687113576960, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113576960", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1687113576960, + "date_created": "2023-06-18T18:39:36.960Z", + "date_last_updated": "2023-06-18T18:39:36.960Z", + "date_of_expiration": "2023-12-18T18:39:36.960Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687113576960, + "wasDebited": true, + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/18/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113714689/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687113714689, + "acquirer_reference": "", + "verification_code": 1687113714689, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113714689", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1687113714689, + "date_created": "2023-06-18T18:41:54.689Z", + "date_last_updated": "2023-06-18T18:41:54.689Z", + "date_of_expiration": "2024-06-18T18:41:54.689Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687113714689, + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/18/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113759469/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687113759469, + "acquirer_reference": "", + "verification_code": 1687113759469, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113759469", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1687113759469, + "date_created": "2023-06-18T18:42:39.469Z", + "date_last_updated": "2023-06-18T18:42:39.469Z", + "date_of_expiration": "2025-06-18T18:42:39.469Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687113759469, + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/18/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313544564/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687313544564, + "acquirer_reference": "", + "verification_code": 1687313544564, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313544564", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1687313544564, + "date_created": "2023-06-21T02:12:24.564Z", + "date_last_updated": "2023-06-21T02:12:24.564Z", + "date_of_expiration": "2025-06-21T02:12:24.564Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687313544564, + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313588225/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687313588225, + "acquirer_reference": "", + "verification_code": 1687313588225, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313588225", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1687313588225, + "date_created": "2023-06-21T02:13:08.225Z", + "date_last_updated": "2023-06-21T02:13:08.225Z", + "date_of_expiration": "2024-06-21T02:13:08.225Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687313588225, + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1688595606369/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688595606369, + "acquirer_reference": "", + "verification_code": 1688595606369, + "net_received_amount": 0, + "total_paid_amount": 713651, + "overpaid_amount": 0, + "installment_amount": 713651, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1688595606369", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 713651, + "total_amount": 713651, + "id": 1688595606369, + "date_created": "2023-07-05T22:20:06.369Z", + "date_last_updated": "2023-07-05T22:20:06.369Z", + "date_of_expiration": "2023-08-05T22:20:06.369Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688595606369, + "description": "Investimento de 713.651,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691274110709, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 727924.02, + "installment_amount": 727924.02, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/015094733487976298/history/1691274110709" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 727924.02, + "total_amount": 727924.02, + "id": 1691274110709, + "history_id": 1691274110709, + "date_created": "2023-08-05T22:21:50.709Z", + "date_last_updated": "2023-08-05T22:21:50.709Z", + "date_of_expiration": "2023-08-05T22:21:50.709Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 713.651,00 IVIP com um rendimento de +14.273,02 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684102027321, + "dateValidity": 1684102027322, + "totalValue": 1.39, + "currencyType": "USD", + "balancesModificacao": "2023-10-14T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016159398553157178/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016159398553157178", + "content": { + "type": 1, + "value": { + "dataModificacao": 1688737390323, + "dateValidity": 1688737390323, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/balances/BRL", + "content": { + "type": 1, + "value": { + "symbol": "BRL", + "available": "0.00000000", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/balances/IVIP", + "content": { + "type": 1, + "value": { + "symbol": "IVIP", + "available": "0.00000000", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1684198299992, + "id": 1684198299992, + "date_created": "2023-05-16T00:51:39.992Z", + "date_last_updated": "2023-05-20T04:50:35.747Z", + "date_of_expiration": "2023-06-15T00:51:39.992Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-05-20T04:50:35.747Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0164.7568.6934.0474-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1684201414429, + "id": 1684201414429, + "date_created": "2023-05-16T01:43:34.429Z", + "date_last_updated": "2023-05-16T14:08:50.715Z", + "date_of_expiration": "2023-06-15T01:43:34.429Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-16T14:08:50.715Z", + "money_release_date": "2023-05-16T14:08:50.715Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0164.7568.6934.0474-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 600, + "total_amount": 600, + "history_id": 1684440954255, + "id": 1684440954255, + "date_created": "2023-05-18T20:15:54.255Z", + "date_last_updated": "2023-05-18T21:09:15.806Z", + "date_of_expiration": "2023-06-17T20:15:54.255Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-18T21:09:15.806Z", + "money_release_date": "2023-05-18T21:09:15.806Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 600,00 para a carteira iVip 0164.7568.6934.0474-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1684626826140/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684626826140, + "acquirer_reference": "", + "verification_code": 1684626826140, + "net_received_amount": 0, + "total_paid_amount": 1600, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1684626826140", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 7793170, + "total_amount": 7793170, + "id": 1684626826140, + "date_created": "2023-05-20T23:53:46.140Z", + "date_last_updated": "2023-05-20T23:53:46.140Z", + "date_of_expiration": "2023-05-20T23:53:46.140Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684626826140, + "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 788564, + "total_amount": 788564, + "history_id": 1685396913259, + "id": 1685396913259, + "date_created": "2023-05-29T21:48:33.259Z", + "date_last_updated": "2023-05-29T21:48:33.259Z", + "date_of_expiration": "2023-05-29T21:48:33.259Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 788.564,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 788564, + "total_amount": 788564, + "history_id": 1685470076106, + "id": 1685470076106, + "date_created": "2023-05-30T18:07:56.106Z", + "date_last_updated": "2023-05-31T12:12:11.930Z", + "date_of_expiration": "2023-05-30T18:07:56.106Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "IVIP", + "money_release_date": "2023-05-31T12:12:11.930Z", + "money_release_status": "rejected", + "description": "Saque de 788.564,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 7793170, + "total_amount": 7793170, + "history_id": 1685470615415, + "id": 1685470615415, + "date_created": "2023-05-30T18:16:55.415Z", + "date_last_updated": "2023-05-31T12:45:25.835Z", + "date_of_expiration": "2023-05-30T18:16:55.415Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-05-31T12:45:25.835Z", + "money_release_date": "2023-05-31T12:45:25.835Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 7.793.170,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 7793170, + "total_amount": 7793170, + "history_id": 1685537035322, + "id": 1685537035322, + "date_created": "2023-05-31T12:43:55.322Z", + "date_last_updated": "2023-05-31T12:44:28.819Z", + "date_of_expiration": "2023-05-31T12:43:55.322Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "IVIP", + "money_release_date": "2023-05-31T12:44:28.819Z", + "money_release_status": "rejected", + "description": "Saque de 7.793.170,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684198152404, + "dateValidity": 1684198152404, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017170382309708910/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017170382309708910", + "content": { + "type": 1, + "value": { + "dataModificacao": 1685395419731, + "dateValidity": 1685395419731, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "0.74000000", + "symbol": "IVIP", + "value": 0.000077 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1683998693589, + "id": 1683998693589, + "date_created": "2023-05-13T17:24:53.589Z", + "date_last_updated": "2023-05-13T17:52:34.399Z", + "date_of_expiration": "2023-06-12T17:24:53.589Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-13T17:52:34.399Z", + "money_release_date": "2023-05-13T17:52:34.399Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0176.0919.3050.0250-62" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "history_id": 1684003059388, + "id": 1684003059388, + "date_created": "2023-05-13T18:37:39.388Z", + "date_last_updated": "2023-05-13T18:37:39.388Z", + "date_of_expiration": "2023-06-12T18:37:39.388Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1684018960001/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684018960001, + "acquirer_reference": "", + "verification_code": 1684018960001, + "net_received_amount": 0, + "total_paid_amount": 1500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1684018960001", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 8106588, + "total_amount": 8106588, + "id": 1684018960001, + "date_created": "2023-05-13T23:02:40.001Z", + "date_last_updated": "2023-05-13T23:02:40.001Z", + "date_of_expiration": "2023-05-13T23:02:40.001Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684018960001, + "description": "Compra de 8.106.588,00 IVIP por 1.500,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684106238297, + "id": 1684106238297, + "date_created": "2023-05-14T23:17:18.297Z", + "date_last_updated": "2023-05-16T12:14:40.222Z", + "date_of_expiration": "2023-06-13T23:17:18.297Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-16T12:14:40.222Z", + "money_release_date": "2023-05-16T12:14:40.222Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0176.0919.3050.0250-62" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1684631103258/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684631103258, + "acquirer_reference": "", + "verification_code": 1684631103258, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1684631103258", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 487804, + "total_amount": 487804, + "id": 1684631103258, + "date_created": "2023-05-21T01:05:03.258Z", + "date_last_updated": "2023-05-21T01:05:03.258Z", + "date_of_expiration": "2023-05-21T01:05:03.258Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684631103258, + "description": "Compra de 487.804,00 IVIP por 100,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 4297196, + "total_amount": 4297196, + "history_id": 1685388293760, + "id": 1685388293760, + "date_created": "2023-05-29T19:24:53.760Z", + "date_last_updated": "2023-05-29T19:24:53.760Z", + "date_of_expiration": "2023-05-29T19:24:53.760Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 4.297.196,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 250, + "total_amount": 250, + "history_id": 1686323712726, + "id": 1686323712726, + "date_created": "2023-06-09T15:15:12.726Z", + "date_last_updated": "2023-06-12T17:38:39.918Z", + "date_of_expiration": "2023-07-09T15:15:12.726Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-06-12T17:38:39.918Z", + "money_release_date": "2023-06-12T17:38:39.918Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 250,00 para a carteira iVip 0176.0919.3050.0250-62" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1686591730981/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 3, + "payment_method_reference_id": 1686591730981, + "acquirer_reference": "", + "verification_code": 1686591730981, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1686591730981", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1686591730981, + "contract_id": "1684003059388", + "date_created": "2023-06-12T17:42:10.981Z", + "date_last_updated": "2023-06-12T17:42:10.981Z", + "date_of_expiration": "2023-06-12T17:42:10.981Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1686591730981, + "description": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1688314787645, + "id": 1688314787645, + "date_created": "2023-07-02T16:19:47.645Z", + "date_last_updated": "2023-07-02T16:23:34.952Z", + "date_of_expiration": "2023-08-01T16:19:47.645Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-02T16:23:34.952Z", + "money_release_date": "2023-07-02T16:23:34.952Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0176.0919.3050.0250-62" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1688315152944/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 3, + "payment_method_reference_id": 1688315152944, + "acquirer_reference": "", + "verification_code": 1688315152944, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1688315152944", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1688315152944, + "contract_id": "1684003059388", + "date_created": "2023-07-02T16:25:52.944Z", + "date_last_updated": "2023-07-02T16:25:52.944Z", + "date_of_expiration": "2023-07-02T16:25:52.944Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1688315152944, + "description": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1688426195717/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688426195717, + "acquirer_reference": "", + "verification_code": 1688426195717, + "net_received_amount": 0, + "total_paid_amount": 344736, + "overpaid_amount": 0, + "installment_amount": 344736, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1688426195717", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 344736, + "total_amount": 344736, + "id": 1688426195717, + "date_created": "2023-07-03T23:16:35.717Z", + "date_last_updated": "2023-07-03T23:16:35.717Z", + "date_of_expiration": "2023-08-03T23:16:35.717Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688426195717, + "wasDebited": true, + "description": "Investimento de 344.736,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 430, + "total_amount": 430, + "history_id": 1689095226322, + "id": 1689095226322, + "date_created": "2023-07-11T17:07:06.322Z", + "date_last_updated": "2023-07-11T18:16:10.658Z", + "date_of_expiration": "2023-08-10T17:07:06.322Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-11T18:16:10.658Z", + "money_release_date": "2023-07-11T18:16:10.658Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 430,00 para a carteira iVip 0176.0919.3050.0250-62" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349679189/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689349679189, + "acquirer_reference": "", + "verification_code": 1689349679189, + "net_received_amount": 0, + "total_paid_amount": 440, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349679189", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 284782, + "total_amount": 284782, + "id": 1689349679189, + "date_created": "2023-07-14T15:47:59.189Z", + "date_last_updated": "2023-07-14T15:47:59.189Z", + "date_of_expiration": "2023-07-14T15:47:59.189Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689349679189, + "description": "Compra de 284.782,00 IVIP por 440,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 284782, + "total_amount": 284782, + "history_id": 1689349971065, + "id": 1689349971065, + "date_created": "2023-07-14T15:52:51.065Z", + "date_last_updated": "2023-07-14T15:54:58.919Z", + "date_of_expiration": "2023-07-14T15:52:51.065Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-07-14T15:54:58.919Z", + "money_release_date": "2023-07-14T15:54:58.919Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 284.782,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1689794977578/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689794977578, + "acquirer_reference": "", + "verification_code": 1689794977578, + "net_received_amount": 0, + "total_paid_amount": 500000, + "overpaid_amount": 0, + "installment_amount": 500000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1689794977578", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 500000, + "total_amount": 500000, + "id": 1689794977578, + "date_created": "2023-07-19T19:29:37.578Z", + "date_last_updated": "2023-07-19T19:29:37.578Z", + "date_of_expiration": "2025-07-19T19:29:37.578Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689794977578, + "description": "Investimento de 500.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/19/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 345419, + "total_amount": 345419, + "history_id": 1689796488476, + "id": 1689796488476, + "date_created": "2023-07-19T19:54:48.476Z", + "date_last_updated": "2023-07-19T19:54:48.476Z", + "date_of_expiration": "2023-07-19T19:54:48.476Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 345.419,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690130150231, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1908099, + "installment_amount": 1908099, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1690130150231" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1908099, + "total_amount": 1908099, + "id": 1690130150231, + "history_id": 1690130150231, + "date_created": "2023-07-23T16:35:50.231Z", + "date_last_updated": "2023-07-23T16:35:50.231Z", + "date_of_expiration": "2023-07-23T16:35:50.231Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment", + "description": "Saque de 1.908.099,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690225429559, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1829159, + "installment_amount": 1829159, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1690225429559" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1829159, + "total_amount": 1829159, + "id": 1690225429559, + "history_id": 1690225429559, + "date_created": "2023-07-24T19:03:49.559Z", + "date_last_updated": "2023-07-24T19:03:49.559Z", + "date_of_expiration": "2023-07-24T19:03:49.559Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment", + "description": "Saque de 1.829.159,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691104619419, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 351630.72000000003, + "installment_amount": 351630.72000000003, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1691104619419" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 351630.72000000003, + "total_amount": 351630.72000000003, + "id": 1691104619419, + "history_id": 1691104619419, + "date_created": "2023-08-03T23:16:59.419Z", + "date_last_updated": "2023-08-03T23:16:59.419Z", + "date_of_expiration": "2023-08-03T23:16:59.419Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 344.736,00 IVIP com um rendimento de +6.894,72 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691246155706, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 4123251, + "installment_amount": 4123251, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1691246155706" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 4123251, + "total_amount": 4123251, + "id": 1691246155706, + "history_id": 1691246155706, + "date_created": "2023-08-05T14:35:55.706Z", + "date_last_updated": "2023-08-05T14:35:55.706Z", + "date_of_expiration": "2023-09-05T14:35:55.705Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 4.123.251,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-14T17:56:58.629Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692122218629, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1692122218629" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 220, + "total_amount": 220, + "id": 1692122218629, + "history_id": 1692122218629, + "date_created": "2023-08-15T17:56:58.629Z", + "date_last_updated": "2023-08-15T18:13:29.335Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-15T18:13:29.335Z", + "money_release_date": "2023-08-15T18:13:29.335Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 220,00 para a carteira iVip 0176.0919.3050.0250-62" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1692210661601/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 2, + "payment_method_reference_id": 1692210661601, + "acquirer_reference": "", + "verification_code": 1692210661601, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1692210661601", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1692210661601, + "contract_id": "1684003059388", + "date_created": "2023-08-16T18:31:01.601Z", + "date_last_updated": "2023-08-16T18:31:01.601Z", + "date_of_expiration": "2023-08-16T18:31:01.601Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1692210661601, + "description": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693924607794, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 4123251, + "installment_amount": 4123251, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1693924607794" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 4205716.02, + "total_amount": 4205716.02, + "id": "1693924607794", + "history_id": "1693924607794", + "date_created": "2023-09-05T14:36:47.794Z", + "date_last_updated": "2023-09-05T14:36:47.794Z", + "date_of_expiration": "2023-09-05T14:36:47.794Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 4.123.251,00 IVIP com um rendimento de +82.465,02 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 107596.65 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694019139358, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3586555, + "installment_amount": 3586555, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694019139358" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 3586555, + "total_amount": 3478958.35, + "id": "1694019139358", + "history_id": "1694019139358", + "date_created": "2023-09-06T16:52:19.358Z", + "date_last_updated": "2023-09-11T22:23:22.474Z", + "date_of_expiration": "2023-09-06T16:52:19.358Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": "2023-09-11T22:23:22.474Z", + "money_release_date": "2023-09-11T22:23:22.474Z", + "money_release_status": "drawee", + "wasDebited": true, + "description": "Saque de 3.478.958,35 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694530925477, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 13248, + "installment_amount": 13248, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694530925477" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 13248, + "total_amount": 13248, + "id": "1694530925477", + "history_id": "1694530925477", + "date_created": "2023-09-12T15:02:05.477Z", + "date_last_updated": "2023-10-04T23:31:59.830Z", + "date_of_expiration": "2023-10-12T15:02:05.475Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": "2023-10-04T23:31:59.830Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Investimento de 13.248,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 12/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-12T22:54:09.010Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694559249011, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694559249011" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 220, + "total_amount": 220, + "id": "1694559249011", + "history_id": "1694559249011", + "date_created": "2023-09-12T22:54:09.011Z", + "date_last_updated": "2023-09-12T23:10:55.083Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-09-12T23:10:55.083Z", + "money_release_date": "2023-09-12T23:10:55.083Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 220,00 BRL para a carteira iVip 0176.0919.3050.0250-62" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694560328887, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 4, + "installments_payable": 1, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694560328887" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": "1694560328887", + "history_id": "1694560328887", + "date_created": "2023-09-12T23:12:08.887Z", + "date_last_updated": "2023-09-12T23:12:08.887Z", + "date_of_expiration": "2023-09-12T23:12:08.887Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719307, + "modified": 1700589719307 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695164776163, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 4583948, + "installment_amount": 4583948, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1695164776163" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 4583948, + "total_amount": 4583948, + "id": "1695164776163", + "history_id": "1695164776163", + "date_created": "2023-09-19T23:06:16.163Z", + "date_last_updated": "2023-09-25T21:44:45.837Z", + "date_of_expiration": "2024-03-19T23:06:16.135Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": "2023-09-25T21:44:45.837Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Investimento de 4.583.948,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696551378554, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 4597196, + "installment_amount": 4597196, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1696551378554" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "017609193050025062", + "payment_method": "staking", + "original_amount": 4597196, + "total_amount": 4597196, + "id": "1696551378554", + "history_id": "1696551378554", + "date_created": "2023-10-06T00:16:18.554Z", + "date_last_updated": "2023-10-06T00:16:18.554Z", + "date_of_expiration": "2023-11-06T00:16:18.481Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 4.597.196,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-12T12:26:40.740Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697200000740", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1697200000740" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "017609193050025062", + "payment_method": "whatsapp", + "original_amount": 220, + "total_amount": 220, + "id": "1697200000740", + "history_id": "1697200000740", + "date_created": "2023-10-13T12:26:40.740Z", + "date_last_updated": "2023-10-13T13:19:44.767Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-10-13T13:19:44.767Z", + "money_release_date": "2023-10-13T13:19:44.767Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 220,00 BRL para a carteira iVip 0176.0919.3050.0250-62" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697203305717", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 5, + "installments_payable": 0, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1697203305717" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "017609193050025062", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": "1697203305717", + "history_id": "1697203305717", + "date_created": "2023-10-13T13:21:45.717Z", + "date_last_updated": "2023-10-13T13:21:45.717Z", + "date_of_expiration": "2023-10-13T13:21:45.717Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388", + "content": { + "type": 1, + "value": { + "id": 1684003059388, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": "2023-05-13T18:37:39.388Z", + "history_id": 1684003059388, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388", + "content": { + "type": 1, + "value": { + "id": 1684003059388, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": "2023-05-13T18:37:39.388Z", + "history_id": 1684003059388, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388", + "content": { + "type": 1, + "value": { + "id": 1684003059388, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": "2023-05-13T18:37:39.388Z", + "history_id": 1684003059388, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388", + "content": { + "type": 1, + "value": { + "id": 1684003059388, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": "2023-05-13T18:37:39.388Z", + "history_id": 1684003059388, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-12T23:12:08.902Z", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388", + "content": { + "type": 1, + "value": { + "id": 1684003059388, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": "2023-05-13T18:37:39.388Z", + "history_id": 1684003059388, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-10-13T13:21:45.729Z", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 400, + "analysisRequested": "2023-05-13T18:00:13.915Z", + "lastReview": "2023-05-13T18:03:09.928Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062", + "content": { + "type": 1, + "value": { + "dataModificacao": 1682097646342, + "dateValidity": 1682097646342, + "totalValue": 2544.535, + "currencyType": "USD", + "balancesModificacao": "2023-10-15T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 15000, + "total_amount": 15000, + "history_id": 1684943727392, + "id": 1684943727392, + "date_created": "2023-05-24T15:55:27.392Z", + "date_last_updated": "2023-05-24T15:55:53.725Z", + "date_of_expiration": "2023-06-23T15:55:27.392Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-24T15:55:53.725Z", + "money_release_date": "2023-05-24T15:55:53.725Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 15.000,00 para a carteira iVip 0176.2260.5984.9780-02" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017622605984978002/history/1685471938618/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685471938618, + "acquirer_reference": "", + "verification_code": 1685471938618, + "net_received_amount": 0, + "total_paid_amount": 15000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017622605984978002/history/1685471938618", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 200000000, + "total_amount": 200000000, + "id": 1685471938618, + "date_created": "2023-05-30T18:38:58.618Z", + "date_last_updated": "2023-05-30T18:38:58.618Z", + "date_of_expiration": "2023-05-30T18:38:58.618Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685471938618, + "description": "Compra de 200.000.000,00 IVIP por 15.000,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017622605984978002/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017622605984978002/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "200000000.00000000", + "symbol": "IVIP", + "value": 20332.55 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017622605984978002", + "content": { + "type": 1, + "value": { + "dataModificacao": 1683153627758, + "dateValidity": 1683153627758, + "totalValue": 13477.18, + "currencyType": "USD", + "balancesModificacao": "2023-10-16T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/018061972197789932", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678058024401, + "dateValidity": 1678162416437, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "0.60000000", + "symbol": "IVIP", + "value": 0.000081 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1678138020034, + "id": 1678138020034, + "date_created": "2023-03-06T21:27:00.034Z", + "date_last_updated": "2023-03-06T21:31:53.569Z", + "date_of_expiration": "2023-04-05T21:27:00.034Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-03-06T21:31:53.569Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0192.1172.1108.0322-64" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "history_id": 1677965965594, + "id": 1677965965594, + "date_created": "2023-03-04T21:39:25.594Z", + "date_last_updated": "2023-03-05T00:07:26.209Z", + "date_of_expiration": "2023-04-03T21:39:25.594Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-05T00:07:26.209Z", + "money_release_date": "2023-03-05T00:07:26.209Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0192.1172.1108.0322-64" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1678138148348, + "id": 1678138148348, + "date_created": "2023-03-06T21:29:08.348Z", + "date_last_updated": "2023-03-07T15:01:46.976Z", + "date_of_expiration": "2023-04-05T21:29:08.348Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-07T15:01:46.976Z", + "money_release_date": "2023-03-07T15:01:46.976Z", + "money_release_status": "approved", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0192.1172.1108.0322-64" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1678162119494/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678162119494, + "acquirer_reference": "", + "verification_code": 1678162119494, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1678162119494", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 14292068, + "total_amount": 14292068, + "id": 1678162119494, + "date_created": "2023-03-07T04:08:39.494Z", + "date_last_updated": "2023-03-07T04:08:39.494Z", + "date_of_expiration": "2023-03-07T04:08:39.494Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678162119494, + "description": "Compra de 14292068 IVIP por 2000 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1678201718893/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678201718893, + "acquirer_reference": "", + "verification_code": 1678201718893, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1678201718893", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 7083024, + "total_amount": 7083024, + "id": 1678201718893, + "date_created": "2023-03-07T15:08:38.893Z", + "date_last_updated": "2023-03-07T15:08:38.893Z", + "date_of_expiration": "2023-03-07T15:08:38.893Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678201718893, + "description": "Compra de 7083024 IVIP por 1000 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 15000000, + "total_amount": 15000000, + "history_id": 1687306180932, + "id": 1687306180932, + "date_created": "2023-06-21T00:09:40.932Z", + "date_last_updated": "2023-06-22T13:14:46.349Z", + "date_of_expiration": "2023-06-21T00:09:40.932Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "IVIP", + "money_release_date": "2023-06-22T13:14:46.349Z", + "money_release_status": "rejected", + "description": "Saque de 15.000.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 15000000, + "total_amount": 15000000, + "history_id": 1687306331776, + "id": 1687306331776, + "date_created": "2023-06-21T00:12:11.776Z", + "date_last_updated": "2023-06-22T13:15:07.717Z", + "date_of_expiration": "2023-06-21T00:12:11.776Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-06-22T13:15:07.717Z", + "money_release_date": "2023-06-22T13:15:07.717Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 15.000.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1687525932247/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687525932247, + "acquirer_reference": "", + "verification_code": 1687525932247, + "net_received_amount": 0, + "total_paid_amount": 6375092, + "overpaid_amount": 0, + "installment_amount": 6375092, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1687525932247", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 6375092, + "total_amount": 6375092, + "id": 1687525932247, + "date_created": "2023-06-23T13:12:12.247Z", + "date_last_updated": "2023-06-23T13:12:12.247Z", + "date_of_expiration": "2025-06-23T13:12:12.247Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687525932247, + "wasDebited": true, + "description": "Investimento de 6.375.092,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1688054453004/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688054453004, + "acquirer_reference": "", + "verification_code": 1688054453004, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1688054453004", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1688054453004, + "date_created": "2023-06-29T16:00:53.004Z", + "date_last_updated": "2023-06-29T16:00:53.004Z", + "date_of_expiration": "2024-06-29T16:00:53.004Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688054453004, + "wasDebited": true, + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/29/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1375000, + "total_amount": 1375000, + "history_id": 1688055217395, + "id": 1688055217395, + "date_created": "2023-06-29T16:13:37.395Z", + "date_last_updated": "2023-06-29T16:13:37.395Z", + "date_of_expiration": "2023-06-29T16:13:37.395Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 1.375.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1688400574946/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400574946, + "acquirer_reference": "", + "verification_code": 1688400574946, + "net_received_amount": 0, + "total_paid_amount": 5000000, + "overpaid_amount": 0, + "installment_amount": 5000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1688400574946", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5000000, + "total_amount": 5000000, + "id": 1688400574946, + "date_created": "2023-07-03T16:09:34.946Z", + "date_last_updated": "2023-07-03T16:09:34.946Z", + "date_of_expiration": "2023-08-03T16:09:34.946Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400574946, + "description": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079119787/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1691079119787, + "acquirer_reference": "", + "verification_code": 1691079119787, + "net_received_amount": 0, + "total_paid_amount": 5000000, + "overpaid_amount": 0, + "installment_amount": 5000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079119787", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5100000, + "total_amount": 5100000, + "id": 1691079119787, + "date_created": "2023-08-03T16:11:59.787Z", + "date_last_updated": "2023-08-03T16:11:59.787Z", + "date_of_expiration": "2023-08-03T16:11:59.787Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1691079119787, + "wasDebited": true, + "description": "Resgate do investimento staking de 5.000.000,00 IVIP com um rendimento de +100.000,00 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079120545/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1691079120545, + "acquirer_reference": "", + "verification_code": 1691079120545, + "net_received_amount": 0, + "total_paid_amount": 5000000, + "overpaid_amount": 0, + "installment_amount": 5000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079120545", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5100000, + "total_amount": 5100000, + "id": 1691079120545, + "date_created": "2023-08-03T16:12:00.545Z", + "date_last_updated": "2023-08-03T16:12:00.545Z", + "date_of_expiration": "2023-08-03T16:12:00.545Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1691079120545, + "wasDebited": true, + "description": "Resgate do investimento staking de 5.000.000,00 IVIP com um rendimento de +100.000,00 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691085199409, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5199000, + "installment_amount": 5199000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1691085199409" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 5199000, + "total_amount": 5199000, + "id": 1691085199409, + "history_id": 1691085199409, + "date_created": "2023-08-03T17:53:19.409Z", + "date_last_updated": "2023-08-03T17:53:19.409Z", + "date_of_expiration": "2023-09-03T17:53:19.408Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 5.199.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693763776046, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5199000, + "installment_amount": 5199000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1693763776046" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 5302980, + "total_amount": 5302980, + "id": "1693763776046", + "history_id": "1693763776046", + "date_created": "2023-09-03T17:56:16.046Z", + "date_last_updated": "2023-09-03T17:56:16.046Z", + "date_of_expiration": "2023-09-03T17:56:16.046Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 5.199.000,00 IVIP com um rendimento de +103.980,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693924633176, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5302980, + "installment_amount": 5302980, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1693924633176" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 5302980, + "total_amount": 5302980, + "id": "1693924633176", + "history_id": "1693924633176", + "date_created": "2023-09-05T14:37:13.176Z", + "date_last_updated": "2023-09-05T14:37:13.176Z", + "date_of_expiration": "2023-10-05T14:37:13.174Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 5.302.980,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696516664226, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5302980, + "installment_amount": 5302980, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1696516664226" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "019211721108032264", + "payment_method": "staking", + "original_amount": 5409039.6, + "total_amount": 5409039.6, + "id": "1696516664226", + "history_id": "1696516664226", + "date_created": "2023-10-05T14:37:44.226Z", + "date_last_updated": "2023-10-05T14:37:44.226Z", + "date_of_expiration": "2023-10-05T14:37:44.226Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 5.302.980,00 IVIP com um rendimento de +106.059,6 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696621887766", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5409039, + "installment_amount": 5409039, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1696621887766" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "019211721108032264", + "payment_method": "staking", + "original_amount": 5409039, + "total_amount": 5409039, + "id": "1696621887766", + "history_id": "1696621887766", + "date_created": "2023-10-06T19:51:27.766Z", + "date_last_updated": "2023-10-06T19:51:27.766Z", + "date_of_expiration": "2023-11-06T19:51:27.733Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 5.409.039,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": "2023-07-19T15:26:56.218Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677444787438, + "dateValidity": 1678664927087, + "totalValue": 1001.4056590358118, + "currencyType": "USD", + "balancesModificacao": "2023-10-09T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019965556064975630/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "80.00000000", + "symbol": "BRL", + "value": 16.58 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1679011728068, + "id": 1679011728068, + "date_created": "2023-03-17T00:08:48.068Z", + "date_last_updated": "2023-03-17T12:47:59.547Z", + "date_of_expiration": "2023-04-16T00:08:48.068Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-17T12:47:59.547Z", + "money_release_date": "2023-03-17T12:47:59.547Z", + "money_release_status": "approved", + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0199.6555.6064.9756-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1689901373588, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/019965556064975630/history/1689901373588" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 20, + "total_amount": 20, + "id": 1689901373588, + "history_id": 1689901373588, + "date_created": "2023-07-21T01:02:53.588Z", + "date_last_updated": "2023-07-21T01:02:53.588Z", + "date_of_expiration": "2024-05-21T01:02:53.584Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "description": "Investimento de 20,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/20/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019965556064975630/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019965556064975630", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679011642708, + "dateValidity": 1679026042762, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": 1689822000000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "72120104.00000000", + "symbol": "IVIP", + "value": 10477.68 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 10000, + "total_amount": 10000, + "history_id": 1677725964136, + "id": 1677725964136, + "date_created": "2023-03-02T02:59:24.136Z", + "date_last_updated": "2023-03-02T11:03:26.417Z", + "date_of_expiration": "2023-04-01T02:59:24.136Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-02T11:03:26.417Z", + "money_release_date": "2023-03-02T11:03:26.417Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0219.7710.1011.6756-04" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1678147737654/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678147737654, + "acquirer_reference": "", + "verification_code": 1678147737654, + "net_received_amount": 0, + "total_paid_amount": 10000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1678147737654", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 71386212, + "total_amount": 71386212, + "id": 1678147737654, + "date_created": "2023-03-07T00:08:57.654Z", + "date_last_updated": "2023-03-07T00:08:57.654Z", + "date_of_expiration": "2023-03-07T00:08:57.654Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678147737654, + "description": "Compra de 71386212 IVIP por 10000 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1678160584706/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678160584706, + "acquirer_reference": "", + "verification_code": 1678160584706, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1678160584706", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1000, + "total_amount": 1000, + "id": 1678160584706, + "date_created": "2023-03-07T03:43:04.706Z", + "date_last_updated": "2023-03-07T03:43:04.706Z", + "date_of_expiration": "2023-03-07T03:43:04.706Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1678160584706, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1678162248934/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678162248934, + "acquirer_reference": "", + "verification_code": 1678162248934, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1678162248934", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 7146034, + "total_amount": 7146034, + "id": 1678162248934, + "date_created": "2023-03-07T04:10:48.934Z", + "date_last_updated": "2023-03-07T04:10:48.934Z", + "date_of_expiration": "2023-03-07T04:10:48.934Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678162248934, + "description": "Compra de 7146034 IVIP por 1000 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/barcode", + "content": { + "type": 1, + "value": { + "content": "23797927500010103493380261019562276900633330" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": "10195622769", + "acquirer_reference": "", + "verification_code": "10195622769", + "net_received_amount": 0, + "total_paid_amount": 10103.49, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "bradesco", + "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1311811220/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311811220&payment_method_reference_id=10195622769&hash=8d50adc1-12db-410d-a168-79594db6001b" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "bolbradesco", + "original_amount": 10100, + "total_amount": 10103.49, + "history_id": 1677379209968, + "id": 1311811220, + "date_created": "2023-02-25T22:40:10.662-04:00", + "date_last_updated": "2023-02-25T22:40:10.662-04:00", + "date_of_expiration": "2023-02-28T22:59:59.000-04:00", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 10.100,00 para a carteira iVip 0219.7710.1011.6756-04" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1684348383580/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684348383580, + "acquirer_reference": "", + "verification_code": 1684348383580, + "net_received_amount": 0, + "total_paid_amount": 326, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1684348383580", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 326, + "total_amount": 326, + "id": 1684348383580, + "date_created": "2023-05-17T18:33:03.580Z", + "date_last_updated": "2023-05-17T18:33:03.580Z", + "date_of_expiration": "2023-05-17T18:33:03.580Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684348383580, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1684624810300/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624810300, + "acquirer_reference": "", + "verification_code": 1684624810300, + "net_received_amount": 0, + "total_paid_amount": 326, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1684624810300", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1587858, + "total_amount": 1587858, + "id": 1684624810300, + "date_created": "2023-05-20T23:20:10.300Z", + "date_last_updated": "2023-05-20T23:20:10.300Z", + "date_of_expiration": "2023-05-20T23:20:10.300Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624810300, + "description": "Compra de 1.587.858,00 IVIP por 326,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1685668591211/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685668591211, + "acquirer_reference": "", + "verification_code": 1685668591211, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1685668591211", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1685668591211, + "date_created": "2023-06-02T01:16:31.211Z", + "date_last_updated": "2023-06-02T01:16:31.211Z", + "date_of_expiration": "2024-06-02T01:16:31.211Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685668591211, + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 72120104, + "total_amount": 72120104, + "history_id": 1689198160853, + "id": 1689198160853, + "date_created": "2023-07-12T21:42:40.853Z", + "date_last_updated": "2023-07-12T21:42:40.853Z", + "date_of_expiration": "2023-07-12T21:42:40.853Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 72.120.104,00 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 2098695.0264 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690914468659, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 72120104, + "installment_amount": 72120104, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/021977101011675604/history/1690914468659" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 72120104, + "total_amount": 69956500.88, + "id": 1690914468659, + "history_id": 1690914468659, + "date_created": "2023-08-01T18:27:48.659Z", + "date_last_updated": "2023-08-07T14:42:48.367Z", + "date_of_expiration": "2023-08-01T18:27:48.659Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": "2023-08-07T14:42:48.367Z", + "money_release_date": "2023-08-07T14:42:48.367Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 69.956.500,88 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719308, + "modified": 1700589719308 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 1026103.0443000001 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690914748870, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 35261273, + "installment_amount": 35261273, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/021977101011675604/history/1690914748870" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 35261273, + "total_amount": 34203434.81, + "id": 1690914748870, + "history_id": 1690914748870, + "date_created": "2023-08-01T18:32:28.870Z", + "date_last_updated": "2023-08-16T14:21:59.152Z", + "date_of_expiration": "2023-08-01T18:32:28.870Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "rejected", + "money_release_date": "2023-08-16T14:21:59.152Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Saque de 34.203.434,81 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677376425892, + "dateValidity": 1678341464139, + "totalValue": 3999.180462637249, + "currencyType": "USD", + "balancesModificacao": 1691419368675 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "62553.00000000", + "symbol": "IVIP", + "value": 6.93 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1689290027436, + "id": 1689290027436, + "date_created": "2023-07-13T23:13:47.436Z", + "date_last_updated": "2023-07-14T17:32:15.839Z", + "date_of_expiration": "2023-08-12T23:13:47.436Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-14T17:32:15.839Z", + "money_release_date": "2023-07-14T17:32:15.839Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1689338968555, + "id": 1689338968555, + "date_created": "2023-07-14T12:49:28.555Z", + "date_last_updated": "2023-07-14T12:49:28.555Z", + "date_of_expiration": "2023-08-13T12:49:28.555Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1689345853748, + "id": 1689345853748, + "date_created": "2023-07-14T14:44:13.748Z", + "date_last_updated": "2023-07-14T14:44:13.748Z", + "date_of_expiration": "2023-08-13T14:44:13.748Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/history/1689357674118/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689357674118, + "acquirer_reference": "", + "verification_code": 1689357674118, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/history/1689357674118", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 62553, + "total_amount": 62553, + "id": 1689357674118, + "date_created": "2023-07-14T18:01:14.118Z", + "date_last_updated": "2023-07-14T18:01:14.118Z", + "date_of_expiration": "2023-07-14T18:01:14.118Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689357674118, + "description": "Compra de 62.553,00 IVIP por 100,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690557889809, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 62553, + "installment_amount": 62553, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/023129781601157750/history/1690557889809" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 62553, + "total_amount": 62553, + "id": 1690557889809, + "history_id": 1690557889809, + "date_created": "2023-07-28T15:24:49.809Z", + "date_last_updated": "2023-07-28T15:24:49.809Z", + "date_of_expiration": "2023-07-28T15:24:49.809Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment", + "description": "Saque de 62.553,00 IVIP para a carteira 0x0f58150836c0785C212ea8Eb4eC1Cce6E595CE4a" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689289832519, + "dateValidity": 1689289832519, + "totalValue": 20.68, + "currencyType": "USD", + "balancesModificacao": "2023-10-12T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 62000, + "total_amount": 62000, + "history_id": 1688838966144, + "id": 1688838966144, + "date_created": "2023-07-08T17:56:06.144Z", + "date_last_updated": "2023-07-08T17:56:06.144Z", + "date_of_expiration": "2023-07-08T17:56:06.144Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-08T17:56:06.144Z", + "money_release_date": "2023-07-08T17:56:06.144Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 62.000,00 para a carteira iVip 0255.1405.5020.5792-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1688839141121/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688839141121, + "acquirer_reference": "", + "verification_code": 1688839141121, + "net_received_amount": 0, + "total_paid_amount": 62000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1688839141121", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 100000000, + "total_amount": 100000000, + "id": 1688839141121, + "date_created": "2023-07-08T17:59:01.121Z", + "date_last_updated": "2023-07-08T17:59:01.121Z", + "date_of_expiration": "2023-07-08T17:59:01.121Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688839141121, + "description": "Compra de 100.000.000,00 IVIP por 62.000,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50000000, + "total_amount": 50000000, + "history_id": 1689276795860, + "id": 1689276795860, + "date_created": "2023-07-13T19:33:15.860Z", + "date_last_updated": "2023-07-13T19:33:15.860Z", + "date_of_expiration": "2023-07-13T19:33:15.860Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "date_approved": "2023-07-13T19:33:15.860Z", + "money_release_date": "2023-07-13T19:33:15.860Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 50.000.000,00 IVIP para a carteira iVip 0255.1405.5020.5792-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1689278842357/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689278842357, + "acquirer_reference": "", + "verification_code": 1689278842357, + "net_received_amount": 0, + "total_paid_amount": 149517672, + "overpaid_amount": 0, + "installment_amount": 149517672, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1689278842357", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 149517672, + "total_amount": 149517672, + "id": 1689278842357, + "date_created": "2023-07-13T20:07:22.357Z", + "date_last_updated": "2023-07-13T20:07:22.357Z", + "date_of_expiration": "2024-01-13T20:07:22.357Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689278842357, + "description": "Investimento de 149.517.672,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 1/13/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1689295244660/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689295244660, + "acquirer_reference": "", + "verification_code": 1689295244660, + "net_received_amount": 0, + "total_paid_amount": 450820, + "overpaid_amount": 0, + "installment_amount": 450820, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1689295244660", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 450820, + "total_amount": 450820, + "id": 1689295244660, + "date_created": "2023-07-14T00:40:44.660Z", + "date_last_updated": "2023-07-14T00:40:44.660Z", + "date_of_expiration": "2025-07-14T00:40:44.660Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689295244660, + "description": "Investimento de 450.820,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/13/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 9396, + "total_amount": 9396, + "history_id": 1689350577243, + "id": 1689350577243, + "date_created": "2023-07-14T16:02:57.243Z", + "date_last_updated": "2023-07-14T16:02:57.243Z", + "date_of_expiration": "2023-08-13T16:02:57.243Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 9.396,00 para a carteira iVip 0255.1405.5020.5792-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 30010000, + "total_amount": 30010000, + "history_id": 1690472510945, + "id": 1690472510945, + "date_created": "2023-07-27T15:41:50.945Z", + "date_last_updated": "2023-07-27T15:41:50.945Z", + "date_of_expiration": "2023-07-27T15:41:50.945Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "description": "Deposito de um valor 30.010.000,00 IVIP para a carteira iVip 0255.1405.5020.5792-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691081114647, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 6001475, + "installment_amount": 6001475, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1691081114647" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 6001475, + "total_amount": 6001475, + "id": 1691081114647, + "history_id": 1691081114647, + "date_created": "2023-08-03T16:45:14.647Z", + "date_last_updated": "2023-08-03T16:45:14.647Z", + "date_of_expiration": "2023-09-03T16:45:14.646Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 6.001.475,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 721200.99 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692462419697, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 24040033, + "installment_amount": 24040033, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1692462419697" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 24040033, + "total_amount": 23318832.01, + "id": 1692462419697, + "history_id": 1692462419697, + "date_created": "2023-08-19T16:26:59.697Z", + "date_last_updated": "2023-08-21T10:14:55.779Z", + "date_of_expiration": "2023-08-19T16:26:59.697Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "rejected", + "money_release_date": "2023-08-21T10:14:55.779Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Saque de 23.318.832,01 IVIP para a carteira 0x4BA972D54bb60Db93749D2cf5c4e160a3dd735c8" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693759701053, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 6001475, + "installment_amount": 6001475, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1693759701053" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 6121504.5, + "total_amount": 6121504.5, + "id": "1693759701053", + "history_id": "1693759701053", + "date_created": "2023-09-03T16:48:21.053Z", + "date_last_updated": "2023-09-03T16:48:21.053Z", + "date_of_expiration": "2023-09-03T16:48:21.053Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 6.001.475,00 IVIP com um rendimento de +120.029,5 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693861899974, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7836614, + "installment_amount": 7836614, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1693861899974" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 7836614, + "total_amount": 7836614, + "id": "1693861899974", + "history_id": "1693861899974", + "date_created": "2023-09-04T21:11:39.974Z", + "date_last_updated": "2023-10-04T13:04:00.162Z", + "date_of_expiration": "2023-10-04T21:11:39.973Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": "2023-10-04T13:04:00.162Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Investimento de 7.836.614,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-13T13:17:39.628Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694611059637, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 24582, + "installment_amount": 24582, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694611059637" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 24582, + "total_amount": 24582, + "id": "1694611059637", + "history_id": "1694611059637", + "date_created": "2023-09-13T13:17:39.637Z", + "date_last_updated": "2023-09-13T13:18:06.754Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-09-13T13:18:06.754Z", + "money_release_date": "2023-09-13T13:18:06.754Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 24.582,00 BRL para a carteira iVip 0255.1405.5020.5792-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694612208335/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694612208335, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 24582, + "installment_amount": 24582, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694612208335" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694612208335", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 39021269, + "total_amount": 39021269, + "id": "1694612208335", + "history_id": "1694612208335", + "date_created": "2023-09-13T13:36:48.335Z", + "date_last_updated": "2023-09-13T13:36:48.335Z", + "date_of_expiration": "2023-09-13T13:36:48.335Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 39.021.269,00 IVIP por 24.582,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-13T15:48:27.989Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694620107990, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 168, + "installment_amount": 168, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694620107990" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 168, + "total_amount": 168, + "id": "1694620107990", + "history_id": "1694620107990", + "date_created": "2023-09-13T15:48:27.990Z", + "date_last_updated": "2023-09-13T17:11:03.588Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-09-13T17:11:03.588Z", + "money_release_date": "2023-09-13T17:11:03.588Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 168,00 BRL para a carteira iVip 0255.1405.5020.5792-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694641684988/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694641684988, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 168, + "installment_amount": 168, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694641684988" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694641684988", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 258446, + "total_amount": 258446, + "id": "1694641684988", + "history_id": "1694641684988", + "date_created": "2023-09-13T21:48:04.988Z", + "date_last_updated": "2023-09-13T21:48:04.988Z", + "date_of_expiration": "2023-09-13T21:48:04.988Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 258.446,00 IVIP por 168,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 750000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694692198880, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 25000000, + "installment_amount": 25000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694692198880" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 25000000, + "total_amount": 24250000, + "id": "1694692198880", + "history_id": "1694692198880", + "date_created": "2023-09-14T11:49:58.880Z", + "date_last_updated": "2023-09-18T13:02:22.983Z", + "date_of_expiration": "2023-09-14T11:49:58.880Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": "2023-09-18T13:02:22.983Z", + "money_release_date": "2023-09-18T13:02:22.983Z", + "money_release_status": "drawee", + "wasDebited": true, + "description": "Saque de 24.250.000,00 IVIP para a carteira 0xd3CF5Ea2Dcfb3c96d31AE10BA19cc4c7218b45b1" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696451540047, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1696451540047" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "025514055020579240", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": "1696451540047", + "history_id": "1696451540047", + "date_created": "2023-10-04T20:32:20.047Z", + "date_last_updated": "2023-10-04T20:32:20.047Z", + "date_of_expiration": "2023-11-04T20:32:19.879Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": "2023-09-18T16:29:37.899Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "36441252.50000000", + "symbol": "IVIP", + "value": 4538.39 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240", + "content": { + "type": 1, + "value": { + "dataModificacao": 1688773726146, + "dateValidity": 1688773726146, + "totalValue": 15.572371266885096, + "currencyType": "USD", + "balancesModificacao": "2023-10-11T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "8958033.00000000", + "symbol": "IVIP", + "value": 9273.73 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1681332472707, + "id": 1681332472707, + "date_created": "2023-04-12T20:47:52.707Z", + "date_last_updated": "2023-04-12T21:15:14.528Z", + "date_of_expiration": "2023-05-12T20:47:52.707Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-04-12T21:15:14.528Z", + "money_release_date": "2023-04-12T21:15:14.528Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0266.8515.5320.8373-72" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 350, + "total_amount": 350, + "history_id": 1681334377618, + "id": 1681334377618, + "date_created": "2023-04-12T21:19:37.618Z", + "date_last_updated": "2023-04-12T21:22:27.169Z", + "date_of_expiration": "2023-05-12T21:19:37.618Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-04-12T21:22:27.169Z", + "money_release_date": "2023-04-12T21:22:27.169Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 350,00 para a carteira iVip 0266.8515.5320.8373-72" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1682092492202, + "id": 1682092492202, + "date_created": "2023-04-21T15:54:52.202Z", + "date_last_updated": "2023-04-24T17:30:53.305Z", + "date_of_expiration": "2023-05-21T15:54:52.202Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-04-24T17:30:53.305Z", + "money_release_date": "2023-04-24T17:30:53.305Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0266.8515.5320.8373-72" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1682353441521, + "id": 1682353441521, + "date_created": "2023-04-24T16:24:01.521Z", + "date_last_updated": "2023-04-24T16:24:01.521Z", + "date_of_expiration": "2023-05-24T16:24:01.521Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0266.8515.5320.8373-72" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 20 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1000, + "total_amount": 1020, + "history_id": 1682354342344, + "id": 1682354342344, + "date_created": "2023-04-24T16:39:02.344Z", + "date_last_updated": "2023-04-24T16:39:02.344Z", + "date_of_expiration": "2023-05-24T16:39:02.344Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0266.8515.5320.8373-72 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.020,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1684018921033/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684018921033, + "acquirer_reference": "", + "verification_code": 1684018921033, + "net_received_amount": 0, + "total_paid_amount": 1600, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1684018921033", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 8647027, + "total_amount": 8647027, + "id": 1684018921033, + "date_created": "2023-05-13T23:02:01.033Z", + "date_last_updated": "2023-05-13T23:02:01.033Z", + "date_of_expiration": "2023-05-13T23:02:01.033Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684018921033, + "description": "Compra de 8.647.027,00 IVIP por 1.600,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 400, + "total_amount": 400, + "history_id": 1689084265995, + "id": 1689084265995, + "date_created": "2023-07-11T14:04:25.995Z", + "date_last_updated": "2023-07-13T19:05:38.556Z", + "date_of_expiration": "2023-08-10T14:04:25.995Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-13T19:05:38.556Z", + "money_release_date": "2023-07-13T19:05:38.556Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 400,00 para a carteira iVip 0266.8515.5320.8373-72" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 401.02, + "total_amount": 401.02, + "history_id": 1689095021542, + "id": 1689095021542, + "date_created": "2023-07-11T17:03:41.542Z", + "date_last_updated": "2023-07-11T17:03:41.542Z", + "date_of_expiration": "2023-08-10T17:03:41.542Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 401,02 para a carteira iVip 0266.8515.5320.8373-72" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1689275206669/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689275206669, + "acquirer_reference": "", + "verification_code": 1689275206669, + "net_received_amount": 0, + "total_paid_amount": 400, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1689275206669", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 168630, + "total_amount": 168630, + "id": 1689275206669, + "date_created": "2023-07-13T19:06:46.669Z", + "date_last_updated": "2023-07-13T19:06:46.669Z", + "date_of_expiration": "2023-07-13T19:06:46.669Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689275206669, + "description": "Compra de 168.630,00 IVIP por 400,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-28T03:07:50.124Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690600070124, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 30, + "installment_amount": 30, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690600070124" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 30, + "total_amount": 30, + "id": 1690600070124, + "history_id": 1690600070124, + "date_created": "2023-07-29T03:07:50.124Z", + "date_last_updated": "2023-07-31T13:14:27.089Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-07-31T13:14:27.089Z", + "money_release_date": "2023-07-31T13:14:27.089Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 30,00 para a carteira iVip 0266.8515.5320.8373-72" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690822928470/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690822928470, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 30, + "installment_amount": 30, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690822928470" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690822928470", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 26363, + "total_amount": 26363, + "id": 1690822928470, + "history_id": 1690822928470, + "date_created": "2023-07-31T17:02:08.470Z", + "date_last_updated": "2023-07-31T17:02:08.470Z", + "date_of_expiration": "2023-07-31T17:02:08.470Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 26.363,00 IVIP por 30,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-31T17:04:16.427Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690909456427, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690909456427" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": 1690909456427, + "history_id": 1690909456427, + "date_created": "2023-08-01T17:04:16.427Z", + "date_last_updated": "2023-08-02T11:58:05.678Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-02T11:58:05.678Z", + "money_release_date": "2023-08-02T11:58:05.678Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 100,00 para a carteira iVip 0266.8515.5320.8373-72" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690977815869/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690977815869, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690977815869" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690977815869", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 116013, + "total_amount": 116013, + "id": 1690977815869, + "history_id": 1690977815869, + "date_created": "2023-08-02T12:03:35.869Z", + "date_last_updated": "2023-08-02T12:03:35.869Z", + "date_of_expiration": "2023-08-02T12:03:35.869Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 116.013,00 IVIP por 100,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 20 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344", + "content": { + "type": 1, + "value": { + "id": 1682354342344, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1020, + "installments": 1, + "installment_amount": 1020, + "date_created": "2023-04-24T16:39:02.344Z", + "history_id": 1682354342344, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0266.8515.5320.8373-72 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.020,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 1000, + "analysisRequested": "2023-04-21T15:53:57.620Z", + "lastReview": "2023-04-21T15:54:24.302Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372", + "content": { + "type": 1, + "value": { + "dataModificacao": 1681239500343, + "dateValidity": 1681239500343, + "totalValue": 405.92, + "currencyType": "USD", + "balancesModificacao": "2023-10-02T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027193309143186410", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678237675259, + "dateValidity": 1678252075296, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "7306097.00000000", + "symbol": "IVIP", + "value": 2344.22 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1684115687035, + "id": 1684115687035, + "date_created": "2023-05-15T01:54:47.035Z", + "date_last_updated": "2023-05-15T02:11:26.172Z", + "date_of_expiration": "2023-06-14T01:54:47.035Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-15T02:11:26.172Z", + "money_release_date": "2023-05-15T02:11:26.172Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0275.3660.7098.8736-24" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1684116712162, + "id": 1684116712162, + "date_created": "2023-05-15T02:11:52.162Z", + "date_last_updated": "2023-05-15T02:12:17.988Z", + "date_of_expiration": "2023-06-14T02:11:52.162Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-15T02:12:17.988Z", + "money_release_date": "2023-05-15T02:12:17.988Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0275.3660.7098.8736-24" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/history/1684625508072/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684625508072, + "acquirer_reference": "", + "verification_code": 1684625508072, + "net_received_amount": 0, + "total_paid_amount": 1500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/history/1684625508072", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 7306097, + "total_amount": 7306097, + "id": 1684625508072, + "date_created": "2023-05-20T23:31:48.072Z", + "date_last_updated": "2023-05-20T23:31:48.072Z", + "date_of_expiration": "2023-05-20T23:31:48.072Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684625508072, + "description": "Compra de 7.306.097,00 IVIP por 1.500,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 7306097, + "total_amount": 7306097, + "history_id": 1685398096730, + "id": 1685398096730, + "date_created": "2023-05-29T22:08:16.730Z", + "date_last_updated": "2023-05-29T22:08:16.730Z", + "date_of_expiration": "2023-05-29T22:08:16.730Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 7.306.097,00 IVIP para a carteira 0x5127C3d0B17433E2f03F2bdC96157ca9B00eeD8e" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 7306097, + "total_amount": 7306097, + "history_id": 1685398151765, + "id": 1685398151765, + "date_created": "2023-05-29T22:09:11.765Z", + "date_last_updated": "2023-05-29T22:09:11.765Z", + "date_of_expiration": "2023-05-29T22:09:11.765Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 7.306.097,00 IVIP para a carteira 0x5127C3d0B17433E2f03F2bdC96157ca9B00eeD8e" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684115568267, + "dateValidity": 1684115568267, + "totalValue": 301.2, + "currencyType": "USD", + "balancesModificacao": 1689822000000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/028175815433013172", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678161645477, + "dateValidity": 1678176045916, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/028947617959504292", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678243619498, + "dateValidity": 1678254419535, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-25T23:10:05.269Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690413005269, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1690413005269" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1690413005269, + "history_id": 1690413005269, + "date_created": "2023-07-26T23:10:05.269Z", + "date_last_updated": "2023-07-26T23:10:05.269Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0292.8722.8206.6813-90" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-02T00:11:10.147Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691021470147, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691021470147" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1691021470147, + "history_id": 1691021470147, + "date_created": "2023-08-03T00:11:10.147Z", + "date_last_updated": "2023-08-03T00:11:10.147Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 20,00 para a carteira iVip 0292.8722.8206.6813-90" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-06T13:35:18.336Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691415318336, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 30, + "installment_amount": 30, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691415318336" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 30, + "total_amount": 30, + "id": 1691415318336, + "history_id": 1691415318336, + "date_created": "2023-08-07T13:35:18.336Z", + "date_last_updated": "2023-08-07T13:37:52.035Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-07T13:37:52.035Z", + "money_release_date": "2023-08-07T13:37:52.035Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 30,00 para a carteira iVip 0292.8722.8206.6813-90" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415588273/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691415588273, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 30, + "installment_amount": 30, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691415588273" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415588273", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 41845, + "total_amount": 41845, + "id": 1691415588273, + "history_id": 1691415588273, + "date_created": "2023-08-07T13:39:48.273Z", + "date_last_updated": "2023-08-07T13:39:48.273Z", + "date_of_expiration": "2023-08-07T13:39:48.273Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 41.845,00 IVIP por 30,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 1255.35 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696141267349, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 41845, + "installment_amount": 41845, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1696141267349" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "029287228206681390", + "payment_method": "transfer", + "original_amount": 41845, + "total_amount": 40589.65, + "id": "1696141267349", + "history_id": "1696141267349", + "date_created": "2023-10-01T06:21:07.349Z", + "date_last_updated": "2023-10-03T00:32:36.722Z", + "date_of_expiration": "2023-10-01T06:21:07.349Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": "2023-10-03T00:32:36.722Z", + "money_release_date": "2023-10-03T00:32:36.722Z", + "money_release_status": "drawee", + "wasDebited": true, + "description": "Saque de 40.589,65 IVIP para a carteira 0x8A01aF53Ea3A83B5f89C029a625Bc2B840aa0B17" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 1255.35 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696142296852, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 41845, + "installment_amount": 41845, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1696142296852" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "029287228206681390", + "payment_method": "transfer", + "original_amount": 41845, + "total_amount": 40589.65, + "id": "1696142296852", + "history_id": "1696142296852", + "date_created": "2023-10-01T06:38:16.852Z", + "date_last_updated": "2023-10-03T00:46:17.233Z", + "date_of_expiration": "2023-10-01T06:38:16.852Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_amount", + "money_release_date": "2023-10-03T00:46:17.233Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Saque de 40.589,65 IVIP para a carteira 0x8A01aF53Ea3A83B5f89C029a625Bc2B840aa0B17" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390", + "content": { + "type": 1, + "value": { + "dateValidity": 1690386695913, + "balancesModificacao": "2023-10-14T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029673451892467508", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678135581348, + "dateValidity": 1678166670994, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/030266248194021460", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684104956115, + "dateValidity": 1684104956115, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/031498453118469660", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696478671880, + "dateValidity": 1696478671929, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "5000843.00000000", + "symbol": "IVIP", + "value": 622.94 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1688955478238, + "id": 1688955478238, + "date_created": "2023-07-10T02:17:58.238Z", + "date_last_updated": "2023-07-10T15:24:43.693Z", + "date_of_expiration": "2023-08-09T02:17:58.238Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-10T15:24:43.693Z", + "money_release_date": "2023-07-10T15:24:43.693Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0329.8017.0462.5356-52" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1689002980878/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689002980878, + "acquirer_reference": "", + "verification_code": 1689002980878, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1689002980878", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 145670, + "total_amount": 145670, + "id": 1689002980878, + "date_created": "2023-07-10T15:29:40.878Z", + "date_last_updated": "2023-07-10T15:29:40.878Z", + "date_of_expiration": "2023-07-10T15:29:40.878Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689002980878, + "description": "Compra de 145.670,00 IVIP por 100,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-03T23:36:57.742Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691192217742, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 356, + "installment_amount": 356, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691192217742" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 356, + "total_amount": 356, + "id": 1691192217742, + "history_id": 1691192217742, + "date_created": "2023-08-04T23:36:57.742Z", + "date_last_updated": "2023-08-05T15:26:29.728Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-05T15:26:29.728Z", + "money_release_date": "2023-08-05T15:26:29.728Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 356,00 para a carteira iVip 0329.8017.0462.5356-52" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691277371847/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691277371847, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 356, + "installment_amount": 356, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691277371847" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691277371847", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 505200, + "total_amount": 505200, + "id": 1691277371847, + "history_id": 1691277371847, + "date_created": "2023-08-05T23:16:11.847Z", + "date_last_updated": "2023-08-05T23:16:11.847Z", + "date_of_expiration": "2023-08-05T23:16:11.847Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 505.200,00 IVIP por 356,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-10T00:55:06.900Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691715306900, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1800, + "installment_amount": 1800, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691715306900" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1800, + "total_amount": 1800, + "id": 1691715306900, + "history_id": 1691715306900, + "date_created": "2023-08-11T00:55:06.900Z", + "date_last_updated": "2023-08-12T02:30:44.902Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-12T02:30:44.902Z", + "money_release_date": "2023-08-12T02:30:44.902Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 1.800,00 para a carteira iVip 0329.8017.0462.5356-52" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691847078457/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691847078457, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1800, + "installment_amount": 1800, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691847078457" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691847078457", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 3402797, + "total_amount": 3402797, + "id": 1691847078457, + "history_id": 1691847078457, + "date_created": "2023-08-12T13:31:18.457Z", + "date_last_updated": "2023-08-12T13:31:18.457Z", + "date_of_expiration": "2023-08-12T13:31:18.457Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 3.402.797,00 IVIP por 1.800,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-26T00:10:05.865Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695687005865, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 647176, + "installment_amount": 647176, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1695687005865" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "032980170462535652", + "payment_method": "whatsapp", + "original_amount": 647176, + "total_amount": 647176, + "id": "1695687005865", + "history_id": "1695687005865", + "date_created": "2023-09-26T00:10:05.865Z", + "date_last_updated": "2023-09-26T00:24:38.463Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "date_approved": "2023-09-26T00:24:38.463Z", + "money_release_date": "2023-09-26T00:24:38.463Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 647.176,00 IVIP para a carteira iVip 0329.8017.0462.5356-52" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-27T21:50:32.960Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695851432961, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 300000, + "installment_amount": 300000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1695851432961" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "032980170462535652", + "payment_method": "whatsapp", + "original_amount": 300000, + "total_amount": 300000, + "id": "1695851432961", + "history_id": "1695851432961", + "date_created": "2023-09-27T21:50:32.961Z", + "date_last_updated": "2023-09-28T20:48:07.672Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "date_approved": "2023-09-28T20:48:07.672Z", + "money_release_date": "2023-09-28T20:48:07.672Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 300.000,00 IVIP para a carteira iVip 0329.8017.0462.5356-52" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652", + "content": { + "type": 1, + "value": { + "dataModificacao": 1688955354063, + "dateValidity": 1688955354063, + "totalValue": 20.42, + "currencyType": "USD", + "balancesModificacao": "2023-10-10T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719309, + "modified": 1700589719309 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "62.42718182", + "symbol": "BRL", + "value": 12.2 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "302069023.00000000", + "symbol": "IVIP", + "value": 32205.5 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 5510, + "total_amount": 5510, + "history_id": 1677785461525, + "id": 1677785461525, + "date_created": "2023-03-02T19:31:01.525Z", + "date_last_updated": "2023-03-02T21:53:04.457Z", + "date_of_expiration": "2023-04-01T19:31:01.525Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-02T21:53:04.457Z", + "money_release_date": "2023-03-02T21:53:04.457Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 5.510,00 para a carteira iVip 0331.9555.3972.0461-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 6500, + "total_amount": 6500, + "history_id": 1677785378675, + "id": 1677785378675, + "date_created": "2023-03-02T19:29:38.675Z", + "date_last_updated": "2023-03-02T21:54:03.971Z", + "date_of_expiration": "2023-04-01T19:29:38.675Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-02T21:54:03.971Z", + "money_release_date": "2023-03-02T21:54:03.971Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 6.500,00 para a carteira iVip 0331.9555.3972.0461-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 7700, + "total_amount": 7700, + "history_id": 1677785194938, + "id": 1677785194938, + "date_created": "2023-03-02T19:26:34.938Z", + "date_last_updated": "2023-03-02T21:54:58.990Z", + "date_of_expiration": "2023-04-01T19:26:34.938Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-02T21:54:58.990Z", + "money_release_date": "2023-03-02T21:54:58.990Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 7.700,00 para a carteira iVip 0331.9555.3972.0461-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 9900, + "total_amount": 9900, + "history_id": 1677748547608, + "id": 1677748547608, + "date_created": "2023-03-02T09:15:47.608Z", + "date_last_updated": "2023-03-02T12:35:22.227Z", + "date_of_expiration": "2023-04-01T09:15:47.608Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-02T12:35:22.227Z", + "money_release_date": "2023-03-02T12:35:22.227Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 9.900,00 para a carteira iVip 0331.9555.3972.0461-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1677748489604, + "id": 1677748489604, + "date_created": "2023-03-02T09:14:49.604Z", + "date_last_updated": "2023-03-02T11:11:15.426Z", + "date_of_expiration": "2023-04-01T09:14:49.604Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-02T11:11:15.426Z", + "money_release_date": "2023-03-02T11:11:15.426Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0331.9555.3972.0461-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 12000, + "total_amount": 12000, + "history_id": 1678472649293, + "id": 1678472649293, + "date_created": "2023-03-10T18:24:09.293Z", + "date_last_updated": "2023-03-11T12:56:55.180Z", + "date_of_expiration": "2023-04-09T18:24:09.293Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-11T12:56:55.180Z", + "money_release_date": "2023-03-11T12:56:55.180Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 12.000,00 para a carteira iVip 0331.9555.3972.0461-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153842542/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678153842542, + "acquirer_reference": "", + "verification_code": 1678153842542, + "net_received_amount": 0, + "total_paid_amount": 10000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153842542", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 71460340, + "total_amount": 71460340, + "id": 1678153842542, + "date_created": "2023-03-07T01:50:42.542Z", + "date_last_updated": "2023-03-07T01:50:42.542Z", + "date_of_expiration": "2023-03-07T01:50:42.542Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678153842542, + "description": "Compra de 71460340 IVIP por 10000 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153902578/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678153902578, + "acquirer_reference": "", + "verification_code": 1678153902578, + "net_received_amount": 0, + "total_paid_amount": 10000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153902578", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 71460340, + "total_amount": 71460340, + "id": 1678153902578, + "date_created": "2023-03-07T01:51:42.578Z", + "date_last_updated": "2023-03-07T01:51:42.578Z", + "date_of_expiration": "2023-03-07T01:51:42.578Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678153902578, + "description": "Compra de 71460340 IVIP por 10000 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 19.8 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 2019.8, + "overpaid_amount": 0, + "installment_amount": 0, + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dXYrlNhAGUO1A+9+lduAQCBlb9UnugUAS6/hhmO7rto/uW1F/7fofXaPR0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v7z2jZf/c/f9b8/6Pm+v373+PTPB98+fb6x/brlrx/73x/0zKClpaWlpaWlpaWlpT1E2++PvT/kF6o9n/6Qladfz+M+8OV7GPcvKKtoaWlpaWlpaWlpaWkP0E4BZPm0l2P8+nGKBKc/u8eYV7hlEbjS0tLS0tLS0tLS0tLSXiVNN9oiKdhLdu8eQI6S7CtGWlpaWlpaWlpaWlpa2hDNpfivZO1S0eQj5Fz+kwo4aWlpaWlpaWlpaWlpj9UmfMnk1chy2TVXGuF2mbxN8SctLS0tLS0tLS0tLe0R2lba2v6Vf9qqu46WlpaWlpaWlpaWlvbb2nxNYyDH/PeLGSa13y1Hm6MkD7cWWlpaWlpaWlpaWlrab2tTC9v0pLHtfKtVl2VySTrulNgbq2QfLS0tLS0tLS0tLS3tt7VT+9u9Z21KANa9a2lw5P2h+3rOZTw55rJNWlpaWlpaWlpaWlraL2una3pFPtD1nEOSTpWm/1/PBODIn77EvLS0tLS0tLS0tLS0tN/TjpJ+S6uwU4ZuemOBLq5pl/b+aLS0tLS0tLS0tLS0tF/XpldsSiqn371WTpaodNqbndrkxm6mCi0tLS0tLS0tLS0t7de09xCxlfkiOcas8d9UL5mb49rmHblrjpaWlpaWlpaWlpaW9gBtCd/aCrCINpdFkymyXJ6lfHOdlpaWlpaWlpaWlpb2JO2Uq/vpaMi7dpRRk6X+spcItOzIbj/JRdLS0tLS0tLS0tLS0n5W2zZJvNwNV2PC+//qCoA0LjLHmLS0tLS0tLS0tLS0tEdpy3jHviqGHOXdZb1aiglb0Kap/qOlglBaWlpaWlpaWlpaWtova6d7U05vSZkiwU0UeZUD5RGS/aXqkpaWlpaWlpaWlpaW9nva0v6WEntXHiGZai03C9RqKPm2ho2WlpaWlpaWlpaWlvYcbc/LrsuTrpziy5NGaqBZTt/L9P+XqktaWlpaWlpaWlpaWtqvaROl9MUtE3ujRKDpAUlR8GlYCi0tLS0tLS0tLS0t7QHagppCv0cRZh4IWfdXp1O93XKVp9DS0tLS0tLS0tLS0p6jDRm1lpNuNSW31KaCy1J1uSv+pKWlpaWlpaWlpaWlPUJb/qrnOftTyLlcXZ3mlZTxk/WhZZsALS0tLS0tLS0tLS3tUdo8lqTns2wqMXc9dSlIXQ75p6WlpaWlpaWlpaWlPVN7ldAvxXUTr3S0PUb2/3SZWzkGLS0tLS0tLS0tLS3tOdpR+t1K91oLG9Pa6hVVkaozU/RaZpjQ0tLS0tLS0tLS0tIeoM39blO95DT3Mc0rqTNHSjVlz5Wd6b20tLS0tLS0tLS0tLQnaWurW3ltK0FlPlp6XsrzLSLGPMOElpaWlpaWlpaWlpb229rlfJGUtSvk1Bw3GVvJB26a6HqYk0JLS0tLS0tLS0tLS/t1ba2cXObl7u6pOS5FgmlSZMtVnMuIlpaWlpaWlpaWlpaW9vvaRdZuChYnVA4ql0nB6S+ubbT5NqWElpaWlpaWlpaWlpb2e9rUx5YKJDcx4Xj+r+cg9R5A1igyrxSgpaWlpaWlpaWlpaX9traUWS6u6SGJvOyaW+YDN++jpaWlpaWlpaWlpaU9RZvLLBfvyd1wo0DTerX0jlLFOWIXHi0tLS0tLS0tLS0t7ee1U/ptOX2kLFVLEWjfxKebYZJtnQCkpaWlpaWlpaWlpaU9QFvjxFD9WB/c37J7m0g1zUT5YRRJS0tLS0tLS0tLS0v7Ne1bH1vLYyCXJ97XX07FlfngtLS0tLS0tLS0tLS052jHZgt2nvFYX5bSedNxN+f7napLWlpaWlpaWlpaWlrar2lLDq5WRG4Sdi1QFrwSWdaqy5JQpKWlpaWlpaWlpaWlPUVbCh/rWaZPl0WTG/x0Xw8ZxBEHo9DS0tLS0tLS0tLS0h6kTbFeKZqclq/1cJb2tndtuWQ7jEOhpaWlpaWlpaWlpaX9vHafb0sz+jdh6JUnkkxnfqv7pKWlpaWlpaWlpaWlPUWbSyUXxZClYa6H7F6NRcuXcYU838gtdrS0tLS0tLS0tLS0tF/X3tvfphLIGuaVAsnJvZtD8tYN18PbaGlpaWlpaWlpaWlpz9PmcZFpFfbIQyLvb6y35GTfFcLQTktLS0tLS0tLS0tLe5J2CuRSgWTuWUvNbHXcSG62u2KFZfu9GlFaWlpaWlpaWlpaWtr/vbaQW3hSihh7WAEwvbFtppQU9/jJlBJaWlpaWlpaWlpaWtrPapcj9q9V7Nie/XPXKgJdTvrvscIyNerR0tLS0tLS0tLS0tIeoJ0qLFtegJ0H/9fRIiWdVysxy1VThrS0tLS0tLS0tLS0tEdoy8vGWxHmstby3ttW037LuDMFrqsokpaWlpaWlpaWlpaW9rPaVvZX50kj16qjrb0FhjmhuBuHQktLS0tLS0tLS0tLe4Q2XVMSLy1Gm+6bQs7i6XkzdgpX36suaWlpaWlpaWlpaWlpP6XNoV/tXiuVk6lYsxftJoqsYWM5KS0tLS0tLS0tLS0t7RHangPItGMtzYxMUWRpmOur4srfjiJpaWlpaWlpaWlpaWk/qU2RYH5F3aKW4skQCbbN19Jyix0tLS0tLS0tLS0tLe3B2mWn2uO+zVl2Ryux429m92hpaWlpaWlpaWlpaU/Rpictt6ON5xrtUU41FVwuZ0a+zFShpaWlpaWlpaWlpaX9pDbhSw1lQtUGt2Vx5XL3deFdtLS0tLS0tLS0tLS0Z2lr4ePkya1u1zNX11bbsqd03iizJZfrtmlpaWlpaWlpaWlpaY/Q/vcvWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWtp/TPsHWTbkPnmLk88AAAAASUVORK5CYII=", + "qr_code": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654072019.805802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13128133836304AC44", + "ticket_url": "https://www.mercadopago.com.br/sandbox/payments/1312813383/ticket?caller_id=1310149122&hash=8e6c1cd1-3025-43b0-8279-4a0f2e9a7e7b" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 2000, + "total_amount": 2019.8, + "history_id": 1677379374499, + "id": 1312813383, + "date_created": "2023-02-25T22:42:55.196-04:00", + "date_last_updated": "2023-02-25T22:42:55.196-04:00", + "date_of_expiration": "2023-02-26T22:42:54.972-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0331.9555.3972.0461-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 19.8 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 2019.8, + "overpaid_amount": 0, + "installment_amount": 0, + "qr_code": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654072019.805802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13128133936304E9E4", + "ticket_url": "https://www.mercadopago.com.br/sandbox/payments/1312813393/ticket?caller_id=1310149122&hash=ba695c70-a0ed-49a1-b87f-05224cd38f84", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2UlEQVR42u3dQY7kNgwFUN3A97+lb6BggmRSFj/l7mCAZOznRaHRLstPtSNIkWP+Rtc5aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXas1/Hjf8fPG0f+3o9F1lX+/N9ff5U3Xh47f658/nxlZdDS0tLS0tLS0tLS0r5Ee3wu+7nI36/9fH7xnGH1ed3uGCPfWLSJQUtLS0tLS0tLS0tL+xbtEkCWu0fZxj+PLZHg8thnjHmJNpffYcOgpaWlpaWlpaWlpaV9qbak6Wo6L7t3WcD0E9DS0tLS0tLS0tLS0tLGaC7FfyVrl4omLyFn+7Hk/mhpaWlpaWlpaWlpad+tTfhUUnlXQ9kEn4Uywsr/ukaUlpaWlpaWlpaWlpb2d9fW9iD/yccXu5TQ0tLS0tLS0tLS0tI+TZuv1IzkyHfbKHIJEZfeJDnkzBZaWlpaWlpaWlpaWtpna9MRtmWlM9Rk1n4liyc1Mkm7X57YZvdoaWlpaWlpaWlpaWmfp12Ov32eWZt3c9da1KYR5SjT1tJv00WRtLS0tLS0tLS0tLS0z9Mu1/KKvKF57UMyY+g3UjrvU3bmuzcxLy0tLS0tLS0tLS0t7fO0Z0m/bSZeH+Gxkf9qr+XL+63R0tLS0tLS0tLS0tI+XVumW+9LKpf/LSHnGXpLpq/UKs5lDsBNr0taWlpaWlpaWlpaWtoHaZdsXErTlRjzNv7Lh+PG5h351BwtLS0tLS0tLS0tLe0LtCV8Gzmn10abbdFk6j7S7qX8cgctLS0tLS0tLS0tLe1LtGnY9T7ZV86xLeS2/vIoEWiZkT1us3u0tLS0tLS0tLS0tLTP06a4bpbm/fk0XH32868jr/K5/AxdJgctLS0tLS0tLS0tLe27tDVDt5l/dnY7SAfcRkgZnlfjgj9HKgilpaWlpaWlpaWlpaV9tnbeDbZeCimvKbvm7pHnuKUCznLi7kvZPVpaWlpaWlpaWlpa2qdo0/G3VE051ms5x7bvzD9LZLnkCMuPRktLS0tLS0tLS0tL+zLtcY0E0yjsuqFytm12x+madF4aELCtuqSlpaWlpaWlpaWlpX2etlBmeL5N7C2DslM8uVt0KcJMj9HS0tLS0tLS0tLS0j5dW1AjlF4eoTCzxHqxF2QJNNuv1FVoaWlpaWlpaWlpaWnfo81R33Hdy7KNowxVWyip4LJUXbbFn5OWlpaWlpaWlpaWlvYl2vJUUwdZdtCMrk79Ssp8tnbRmmmkpaWlpaWlpaWlpaV9hTYda8tH4moqsDSdPMIbl/USvmluQktLS0tLS0tLS0tL+ybtLKFfiutK1eWZY8z0lUVWkn3n987u0dLS0tLS0tLS0tLSPkJbh6CV02sjTEwb3SuqIs9Yq9Fr6WFCS0tLS0tLS0tLS0v7Am0+77bUS6YizHP0V66mPLpEYX0vLS0tLS0tLS0tLS3tm7SjlFmW144SVOatpfVSk/8mYsw9TGhpaWlpaWlpaWlpaZ+tbfuLpKxdGmK9RIzFOK75wGWBEV5+fDkXSUtLS0tLS0tLS0tL+whtE9e1ebny5Sb3lztFjlzF2Ua0tLS0tLS0tLS0tLS0z9emuG6ErpBLJeaxqb/MubrUnPLcFlzS0tLS0tLS0tLS0tK+R9u0d0z9HNuOJDkpOMP+moA0jxSgpaWlpaWlpaWlpaV9trZQbhuPlDLLVFd5loC0vOPYvI2WlpaWlpaWlpaWlvY92px5a96zRJZ5bNoyB2DmU25L6WVanpaWlpaWlpaWlpaW9mXaUlw5b5qHNKWXy7Mp93cp4EzlnX3VJS0tLS0tLS0tLS0t7UO1bTx5hADycnAth5y7ULJNFH45iqSlpaWlpaWlpaWlpX2a9u4c29g0hEzXvv4ytSUpRZi0tLS0tLS0tLS0tLTv0Z6bKdipXWR6WUrnLdvd7O87VZe0tLS0tLS0tLS0tLRP05YcXK2ILMvNsKtxxyuRZa26LAlFWlpaWlpaWlpaWlrat2hL4WNbf3lu+khm6BlCztrLP2UQaWlpaWlpaWlpaWlp36hNsV4pmqzD18pext3ctXbIdmiHQktLS0tLS0tLS0tL+3htzrelyHJ289mOLrKc224mcxOa0tLS0tLS0tLS0tLSvkKbSyWbYshyYO62038us5whz3fmI3a0tLS0tLS0tLS0tLRP134ef1tKIGuYVwokZzfYuvkxNqfhjvA2WlpaWlpaWlpaWlraV2jTELQ0VO3Ig9HSAOx9h5OS7KtBZR9F0tLS0tLS0tLS0tLSPk275OU+I8ua2EtH51KaLnU4yT3/Z5i0PWlpaWlpaWlpaWlpad+lPa8tSEbu219SfOmA21KnOTZdSjaLHrS0tLS0tLS0tLS0tO/SznCibamrTLHjuJ6fm9cayhFyf6PI2n4lXdUlLS0tLS0tLS0tLS3tY7XjWmaZmow0d/fdI9Nelh1sUoa0tLS0tLS0tLS0tLQv0JaX1b4hSxJvceezbaPEiTnubALXLoqkpaWlpaWlpaWlpaV9rHaU+dW508jsTrSNu8AwJxTP7omDlpaWlpaWlpaWlpb2Jdp0LUm83Idk5mzc58aPzSm3sujsxgLQ0tLS0tLS0tLS0tI+W5tDv3TKbamcnGVDS8R4F0XWsLHslJaWlpaWlpaWlpaW9hXaIwSQ+4+lpHJXolnC0JF7Rn45iqSlpaWlpaWlpaWlpX2kdlMlWXtB5raSlzA0RIIj/yxtCHvQ0tLS0tLS0tLS0tK+XduulCh3Hzv8t7N7tLS0tLS0tLS0tLS0L9C2K51rhNcPWistKec1idf0jLzpqUJLS0tLS0tLS0tLS/tIbcKXGsqEqgfc2uLKdvZ14U1aWlpaWlpaWlpaWtp3aWsSb/Hko27zmqsb3bTsXdVlSgXeVF3S0tLS0tLS0tLS0tI+Tfv/v2hpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpf5n2D0v667pa5ajGAAAAAElFTkSuQmCC" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 2000, + "total_amount": 2019.8, + "history_id": 1677379588878, + "id": 1312813393, + "date_created": "2023-02-25T22:46:29.568-04:00", + "date_last_updated": "2023-02-25T22:46:29.568-04:00", + "date_of_expiration": "2023-02-26T22:46:29.346-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0331.9555.3972.0461-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1679266944717/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679266944717, + "acquirer_reference": "", + "verification_code": 1679266944717, + "net_received_amount": 0, + "total_paid_amount": 21710, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1679266944717", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 126385600, + "total_amount": 126385600, + "id": 1679266944717, + "date_created": "2023-03-19T23:02:24.717Z", + "date_last_updated": "2023-03-19T23:02:24.717Z", + "date_of_expiration": "2023-03-19T23:02:24.717Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679266944717, + "description": "Compra de 126385600 IVIP por 21710 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 51.1 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 2555, + "total_amount": 2606.1, + "history_id": 1679852406395, + "id": 1679852406395, + "date_created": "2023-03-26T17:40:06.395Z", + "date_last_updated": "2023-03-26T17:40:06.395Z", + "date_of_expiration": "2023-04-25T17:40:06.395Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 2.555,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.606,10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1679872071598/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679872071598, + "acquirer_reference": "", + "verification_code": 1679872071598, + "net_received_amount": 0, + "total_paid_amount": 2555, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1679872071598", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 13606977, + "total_amount": 13606977, + "id": 1679872071598, + "date_created": "2023-03-26T23:07:51.598Z", + "date_last_updated": "2023-03-26T23:07:51.598Z", + "date_of_expiration": "2023-03-26T23:07:51.598Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679872071598, + "description": "Compra de 13.606.977,00 IVIP por 2.555,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 52.2 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 2610, + "total_amount": 2662.2, + "history_id": 1682964262250, + "id": 1682964262250, + "date_created": "2023-05-01T18:04:22.250Z", + "date_last_updated": "2023-05-01T18:04:22.250Z", + "date_of_expiration": "2023-05-31T18:04:22.250Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.662,20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2610, + "total_amount": 2610, + "history_id": 1682964678725, + "id": 1682964678725, + "date_created": "2023-05-01T18:11:18.725Z", + "date_last_updated": "2023-05-01T18:19:36.565Z", + "date_of_expiration": "2023-05-31T18:11:18.725Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-01T18:19:36.565Z", + "money_release_date": "2023-05-01T18:19:36.565Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1682965648718/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 0, + "payment_method_reference_id": 1682965648718, + "acquirer_reference": "", + "verification_code": 1682965648718, + "net_received_amount": 0, + "total_paid_amount": 2606.1, + "overpaid_amount": 0, + "installment_amount": 2606.1, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1682965648718", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 2606.1, + "total_amount": 2606.1, + "id": 1682965648718, + "contract_id": "1679852406395", + "date_created": "2023-05-01T18:27:28.718Z", + "date_last_updated": "2023-05-01T18:27:28.718Z", + "date_of_expiration": "2023-05-01T18:27:28.718Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682965648718, + "description": "Pagamento de fatura 1 de 1 no valor de 2.606,10 BRL referente ao contrato 1679852406395" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1683077498849, + "id": 1683077498849, + "date_created": "2023-05-03T01:31:38.849Z", + "date_last_updated": "2023-05-03T01:44:35.310Z", + "date_of_expiration": "2023-06-02T01:31:38.849Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-03T01:44:35.310Z", + "money_release_date": "2023-05-03T01:44:35.310Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0331.9555.3972.0461-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078471570/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 0, + "payment_method_reference_id": 1683078471570, + "acquirer_reference": "", + "verification_code": 1683078471570, + "net_received_amount": 0, + "total_paid_amount": 2662.2, + "overpaid_amount": 0, + "installment_amount": 2662.2, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078471570", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 2662.2, + "total_amount": 2662.2, + "id": 1683078471570, + "contract_id": "1682964262250", + "date_created": "2023-05-03T01:47:51.570Z", + "date_last_updated": "2023-05-03T01:47:51.570Z", + "date_of_expiration": "2023-05-03T01:47:51.570Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1683078471570, + "description": "Pagamento de fatura 1 de 1 no valor de 2.662,20 BRL referente ao contrato 1682964262250" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "history_id": 1683078539834, + "id": 1683078539834, + "date_created": "2023-05-03T01:48:59.834Z", + "date_last_updated": "2023-05-03T01:48:59.834Z", + "date_of_expiration": "2023-06-02T01:48:59.834Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1684018958577/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684018958577, + "acquirer_reference": "", + "verification_code": 1684018958577, + "net_received_amount": 0, + "total_paid_amount": 10001, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1684018958577", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 54049325, + "total_amount": 54049325, + "id": 1684018958577, + "date_created": "2023-05-13T23:02:38.577Z", + "date_last_updated": "2023-05-13T23:02:38.577Z", + "date_of_expiration": "2023-05-13T23:02:38.577Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684018958577, + "description": "Compra de 54.049.325,00 IVIP por 10.001,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1684158157715/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684158157715, + "acquirer_reference": "", + "verification_code": 1684158157715, + "net_received_amount": 0, + "total_paid_amount": 1380.18281188, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1684158157715", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 369625820, + "total_amount": 369625820, + "id": 1684158157715, + "date_created": "2023-05-15T13:42:37.715Z", + "date_last_updated": "2023-05-15T13:42:37.715Z", + "date_of_expiration": "2023-05-15T13:42:37.715Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1684158157715, + "description": "Compra de 369.625.820,00 IVIPAY por 36.962.582,00 IVIP estabilizando US$ 1.380,18" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924794730/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686924794730, + "acquirer_reference": "", + "verification_code": 1686924794730, + "net_received_amount": 0, + "total_paid_amount": 39891848, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924794730", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 3989184, + "total_amount": 3989184, + "id": 1686924794730, + "date_created": "2023-06-16T14:13:14.730Z", + "date_last_updated": "2023-06-16T14:13:14.730Z", + "date_of_expiration": "2023-06-16T14:13:14.730Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686924794730, + "description": "Compra de 3.989.184,00 IVIP por 39.891.848,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924859436/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686924859436, + "acquirer_reference": "", + "verification_code": 1686924859436, + "net_received_amount": 0, + "total_paid_amount": 359026026, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924859436", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 35902602, + "total_amount": 35902602, + "id": 1686924859436, + "date_created": "2023-06-16T14:14:19.436Z", + "date_last_updated": "2023-06-16T14:14:19.436Z", + "date_of_expiration": "2023-06-16T14:14:19.436Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686924859436, + "description": "Compra de 35.902.602,00 IVIP por 359.026.026,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1735, + "total_amount": 1735, + "history_id": 1688993449178, + "id": 1688993449178, + "date_created": "2023-07-10T12:50:49.178Z", + "date_last_updated": "2023-07-10T20:43:20.593Z", + "date_of_expiration": "2023-08-09T12:50:49.178Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-10T20:43:20.593Z", + "money_release_date": "2023-07-10T20:43:20.593Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.735,00 para a carteira iVip 0331.9555.3972.0461-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689023462249/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 10, + "payment_method_reference_id": 1689023462249, + "acquirer_reference": "", + "verification_code": 1689023462249, + "net_received_amount": 0, + "total_paid_amount": 1209.091, + "overpaid_amount": 0, + "installment_amount": 1209.091, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689023462249", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 1209.091, + "total_amount": 1209.091, + "id": 1689023462249, + "contract_id": "1683078539834", + "date_created": "2023-07-10T21:11:02.249Z", + "date_last_updated": "2023-07-10T21:11:02.249Z", + "date_of_expiration": "2023-07-10T21:11:02.249Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1689023462249, + "description": "Pagamento de fatura 1 de 11 no valor de 1.209,09 BRL referente ao contrato 1683078539834" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689027294801/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689027294801, + "acquirer_reference": "", + "verification_code": 1689027294801, + "net_received_amount": 0, + "total_paid_amount": 26, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689027294801", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 23038, + "total_amount": 23038, + "id": 1689027294801, + "date_created": "2023-07-10T22:14:54.801Z", + "date_last_updated": "2023-07-10T22:14:54.801Z", + "date_of_expiration": "2023-07-10T22:14:54.801Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689027294801, + "description": "Compra de 23.038,00 IVIP por 26,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689119838635/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689119838635, + "acquirer_reference": "", + "verification_code": 1689119838635, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689119838635", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 10892, + "total_amount": 10892, + "id": 1689119838635, + "date_created": "2023-07-11T23:57:18.635Z", + "date_last_updated": "2023-07-11T23:57:18.635Z", + "date_of_expiration": "2023-07-11T23:57:18.635Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689119838635, + "description": "Compra de 10.892,00 IVIP por 20,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689121233961/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689121233961, + "acquirer_reference": "", + "verification_code": 1689121233961, + "net_received_amount": 0, + "total_paid_amount": 80, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689121233961", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 44060, + "total_amount": 44060, + "id": 1689121233961, + "date_created": "2023-07-12T00:20:33.961Z", + "date_last_updated": "2023-07-12T00:20:33.961Z", + "date_of_expiration": "2023-07-12T00:20:33.961Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689121233961, + "description": "Compra de 44.060,00 IVIP por 80,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689164526021/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689164526021, + "acquirer_reference": "", + "verification_code": 1689164526021, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689164526021", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 9455, + "total_amount": 9455, + "id": 1689164526021, + "date_created": "2023-07-12T12:22:06.021Z", + "date_last_updated": "2023-07-12T12:22:06.021Z", + "date_of_expiration": "2023-07-12T12:22:06.021Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689164526021, + "description": "Compra de 9.455,00 IVIP por 20,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689704009270/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689704009270, + "acquirer_reference": "", + "verification_code": 1689704009270, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689704009270", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 12818, + "total_amount": 12818, + "id": 1689704009270, + "date_created": "2023-07-18T18:13:29.270Z", + "date_last_updated": "2023-07-18T18:13:29.270Z", + "date_of_expiration": "2023-07-18T18:13:29.270Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689704009270, + "description": "Compra de 12.818,00 IVIP por 20,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245422296/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1690245422296, + "acquirer_reference": "", + "verification_code": 1690245422296, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245422296", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 82033, + "total_amount": 82033, + "id": 1690245422296, + "date_created": "2023-07-25T00:37:02.296Z", + "date_last_updated": "2023-07-25T00:37:02.296Z", + "date_of_expiration": "2023-07-25T00:37:02.296Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1690245422296, + "description": "Compra de 82.033,00 IVIP por 100,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245659912/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1690245659912, + "acquirer_reference": "", + "verification_code": 1690245659912, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245659912", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 16360, + "total_amount": 16360, + "id": 1690245659912, + "date_created": "2023-07-25T00:40:59.912Z", + "date_last_updated": "2023-07-25T00:40:59.912Z", + "date_of_expiration": "2023-07-25T00:40:59.912Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1690245659912, + "description": "Compra de 16.360,00 IVIP por 20,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690477890638/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690477890638, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 30, + "installment_amount": 30, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690477890638" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690477890638", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 23044, + "total_amount": 23044, + "id": 1690477890638, + "history_id": 1690477890638, + "date_created": "2023-07-27T17:11:30.638Z", + "date_last_updated": "2023-07-27T17:11:30.638Z", + "date_of_expiration": "2023-07-27T17:11:30.638Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 23.044,00 IVIP por 30,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690581074985/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690581074985, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 110, + "installment_amount": 110, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690581074985" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690581074985", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 103259, + "total_amount": 103259, + "id": 1690581074985, + "history_id": 1690581074985, + "date_created": "2023-07-28T21:51:14.985Z", + "date_last_updated": "2023-07-28T21:51:14.985Z", + "date_of_expiration": "2023-07-28T21:51:14.985Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 103.259,00 IVIP por 110,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690912306732/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690912306732, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690912306732" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690912306732", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 55731, + "total_amount": 55731, + "id": 1690912306732, + "history_id": 1690912306732, + "date_created": "2023-08-01T17:51:46.732Z", + "date_last_updated": "2023-08-01T17:51:46.732Z", + "date_of_expiration": "2023-08-01T17:51:46.732Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 55.731,00 IVIP por 50,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691091813497, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7000000, + "installment_amount": 7000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1691091813497" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 7000000, + "total_amount": 7000000, + "id": 1691091813497, + "history_id": 1691091813497, + "date_created": "2023-08-03T19:43:33.497Z", + "date_last_updated": "2023-08-03T19:43:33.497Z", + "date_of_expiration": "2023-09-03T19:43:33.496Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 7.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1691190824646/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691190824646, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1691190824646" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1691190824646", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 61311, + "total_amount": 61311, + "id": 1691190824646, + "history_id": 1691190824646, + "date_created": "2023-08-04T23:13:44.646Z", + "date_last_updated": "2023-08-04T23:13:44.646Z", + "date_of_expiration": "2023-08-04T23:13:44.646Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 61.311,00 IVIP por 50,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-24T19:13:12.970Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692990792970, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2000, + "installment_amount": 2000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1692990792970" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "id": "1692990792970", + "history_id": "1692990792970", + "date_created": "2023-08-25T19:13:12.970Z", + "date_last_updated": "2023-08-25T19:13:12.970Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0331.9555.3972.0461-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693770411115, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7000000, + "installment_amount": 7000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1693770411115" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 7140000, + "total_amount": 7140000, + "id": "1693770411115", + "history_id": "1693770411115", + "date_created": "2023-09-03T19:46:51.115Z", + "date_last_updated": "2023-09-03T19:46:51.115Z", + "date_of_expiration": "2023-09-03T19:46:51.115Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 7.000.000,00 IVIP com um rendimento de +140.000,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-12T10:36:53.081Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694515013082, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2000, + "installment_amount": 2000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694515013082" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "id": "1694515013082", + "history_id": "1694515013082", + "date_created": "2023-09-12T10:36:53.082Z", + "date_last_updated": "2023-09-12T10:36:53.082Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0331.9555.3972.0461-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 30 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694563336129, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694563336129" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1000, + "total_amount": 970, + "id": "1694563336129", + "history_id": "1694563336129", + "date_created": "2023-09-13T00:02:16.129Z", + "date_last_updated": "2023-09-19T13:03:18.738Z", + "date_of_expiration": "2023-09-13T00:02:16.129Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": "2023-09-19T13:03:18.738Z", + "money_release_date": "2023-09-19T13:03:18.738Z", + "money_release_status": "drawee", + "wasDebited": true, + "description": "Saque de 970,00 IVIP para a carteira 0x1250E6646AB77FF3f9708D761091ef1aD60bc9ec" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-13T10:54:06.900Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694602446900, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694602446900" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2500, + "total_amount": 2500, + "id": "1694602446900", + "history_id": "1694602446900", + "date_created": "2023-09-13T10:54:06.900Z", + "date_last_updated": "2023-09-13T14:14:25.688Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-09-13T14:14:25.688Z", + "money_release_date": "2023-09-13T14:14:25.688Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 2.500,00 BRL para a carteira iVip 0331.9555.3972.0461-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694614621977, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1209.090909090909, + "installment_amount": 1209.090909090909, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 2, + "installments_payable": 9, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694614621977" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 1209.090909090909, + "total_amount": 1209.090909090909, + "id": "1694614621977", + "history_id": "1694614621977", + "date_created": "2023-09-13T14:17:01.977Z", + "date_last_updated": "2023-09-13T14:17:01.977Z", + "date_of_expiration": "2023-09-13T14:17:01.977Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 2 de 11 no valor de 1.209,0909 BRL referente ao contrato 1683078539834" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694614622168, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1209.090909090909, + "installment_amount": 1209.090909090909, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 3, + "installments_payable": 8, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694614622168" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 1209.090909090909, + "total_amount": 1209.090909090909, + "id": "1694614622168", + "history_id": "1694614622168", + "date_created": "2023-09-13T14:17:02.168Z", + "date_last_updated": "2023-09-13T14:17:02.168Z", + "date_of_expiration": "2023-09-13T14:17:02.168Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 3 de 11 no valor de 1.209,0909 BRL referente ao contrato 1683078539834" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 942112.9199999999 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694707376145, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 31403764, + "installment_amount": 31403764, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694707376145" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 31403764, + "total_amount": 30461651.08, + "id": "1694707376145", + "history_id": "1694707376145", + "date_created": "2023-09-14T16:02:56.145Z", + "date_last_updated": "2023-09-21T23:31:12.164Z", + "date_of_expiration": "2023-09-14T16:02:56.145Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": "2023-09-21T23:31:12.164Z", + "money_release_date": "2023-09-21T23:31:12.164Z", + "money_release_status": "drawee", + "wasDebited": true, + "description": "Saque de 30.461.651,08 IVIP para a carteira 0x1250E6646AB77FF3f9708D761091ef1aD60bc9ec" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696309633832, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1696309633832" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "033195553972046100", + "payment_method": "staking", + "original_amount": 20, + "total_amount": 20, + "id": "1696309633832", + "history_id": "1696309633832", + "date_created": "2023-10-03T05:07:13.832Z", + "date_last_updated": "2023-10-03T05:07:13.832Z", + "date_of_expiration": "2024-08-03T05:07:13.831Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "description": "Investimento de 20,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 03/08/2024 - D03OS92M" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696433201105, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7000000, + "installment_amount": 7000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1696433201105" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "033195553972046100", + "payment_method": "staking", + "original_amount": 7000000, + "total_amount": 7000000, + "id": "1696433201105", + "history_id": "1696433201105", + "date_created": "2023-10-04T15:26:41.105Z", + "date_last_updated": "2023-10-04T15:26:41.105Z", + "date_of_expiration": "2023-11-04T15:26:41.054Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 7.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 51.1 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395", + "content": { + "type": 1, + "value": { + "id": 1679852406395, + "type": "emprestimo", + "original_amount": 2555, + "total_amount": 2606.1, + "installments": 1, + "installment_amount": 2606.1, + "date_created": "2023-03-26T17:40:06.395Z", + "history_id": 1679852406395, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 2.555,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.606,10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 52.2 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250", + "content": { + "type": 1, + "value": { + "id": 1682964262250, + "type": "emprestimo", + "original_amount": 2610, + "total_amount": 2662.2, + "installments": 1, + "installment_amount": 2662.2, + "date_created": "2023-05-01T18:04:22.250Z", + "history_id": 1682964262250, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.662,20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": "2023-05-03T01:48:59.834Z", + "history_id": 1683078539834, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": "2023-05-03T01:48:59.834Z", + "history_id": 1683078539834, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-13T14:17:02.016Z", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": "2023-05-03T01:48:59.834Z", + "history_id": 1683078539834, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-13T14:17:02.191Z", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": "2023-05-03T01:48:59.834Z", + "history_id": 1683078539834, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": "2023-05-03T01:48:59.834Z", + "history_id": 1683078539834, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": "2023-05-03T01:48:59.834Z", + "history_id": 1683078539834, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": "2023-05-03T01:48:59.834Z", + "history_id": 1683078539834, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": "2023-05-03T01:48:59.834Z", + "history_id": 1683078539834, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": "2023-05-03T01:48:59.834Z", + "history_id": 1683078539834, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": "2023-05-03T01:48:59.834Z", + "history_id": 1683078539834, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834", + "content": { + "type": 1, + "value": { + "id": 1683078539834, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 13300, + "installments": 11, + "installment_amount": 1209.090909090909, + "date_created": "2023-05-03T01:48:59.834Z", + "history_id": 1683078539834, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 10000, + "limitUsed": 9090.90909090909, + "analysisRequested": "2023-03-26T01:06:09.965Z", + "lastReview": "2023-03-26T01:17:09.922Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677378717676, + "dateValidity": 1678943777415, + "totalValue": 13247.575, + "currencyType": "USD", + "balancesModificacao": "2023-10-15T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "38137.00000000", + "symbol": "IVIP", + "value": 3.88 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689115233061, + "id": 1689115233061, + "date_created": "2023-07-11T22:40:33.061Z", + "date_last_updated": "2023-07-12T08:25:46.943Z", + "date_of_expiration": "2023-08-10T22:40:33.061Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-12T08:25:46.943Z", + "money_release_date": "2023-07-12T08:25:46.943Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689278707835, + "id": 1689278707835, + "date_created": "2023-07-13T20:05:07.835Z", + "date_last_updated": "2023-07-13T20:07:08.225Z", + "date_of_expiration": "2023-08-12T20:05:07.835Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-13T20:07:08.225Z", + "money_release_date": "2023-07-13T20:07:08.225Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/history/1689683815156/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689683815156, + "acquirer_reference": "", + "verification_code": 1689683815156, + "net_received_amount": 0, + "total_paid_amount": 40, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/history/1689683815156", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 25268, + "total_amount": 25268, + "id": 1689683815156, + "date_created": "2023-07-18T12:36:55.156Z", + "date_last_updated": "2023-07-18T12:36:55.156Z", + "date_of_expiration": "2023-07-18T12:36:55.156Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689683815156, + "description": "Compra de 25.268,00 IVIP por 40,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689684340625, + "id": 1689684340625, + "date_created": "2023-07-18T12:45:40.625Z", + "date_last_updated": "2023-07-18T14:46:07.863Z", + "date_of_expiration": "2023-08-17T12:45:40.625Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-18T14:46:07.863Z", + "money_release_date": "2023-07-18T14:46:07.863Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/history/1689695209900/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689695209900, + "acquirer_reference": "", + "verification_code": 1689695209900, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/history/1689695209900", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 12869, + "total_amount": 12869, + "id": 1689695209900, + "date_created": "2023-07-18T15:46:49.900Z", + "date_last_updated": "2023-07-18T15:46:49.900Z", + "date_of_expiration": "2023-07-18T15:46:49.900Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689695209900, + "description": "Compra de 12.869,00 IVIP por 20,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936", + "content": { + "type": 1, + "value": { + "dataModificacao": 1681695529045, + "dateValidity": 1681695529045, + "totalValue": 12.39, + "currencyType": "USD", + "balancesModificacao": "2023-10-16T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036609796475115090/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036609796475115090", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689337184637, + "dateValidity": 1689337184638, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "31783.20000000", + "symbol": "IVIP", + "value": 6.74 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689220381451, + "id": 1689220381451, + "date_created": "2023-07-13T03:53:01.451Z", + "date_last_updated": "2023-07-13T03:53:01.451Z", + "date_of_expiration": "2023-08-12T03:53:01.451Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1689220411584, + "id": 1689220411584, + "date_created": "2023-07-13T03:53:31.584Z", + "date_last_updated": "2023-07-13T14:14:45.911Z", + "date_of_expiration": "2023-08-12T03:53:31.584Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-13T14:14:45.911Z", + "money_release_date": "2023-07-13T14:14:45.911Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0367.8180.5197.0763-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689258185846/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689258185846, + "acquirer_reference": "", + "verification_code": 1689258185846, + "net_received_amount": 0, + "total_paid_amount": 50, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689258185846", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 18682, + "total_amount": 18682, + "id": 1689258185846, + "date_created": "2023-07-13T14:23:05.846Z", + "date_last_updated": "2023-07-13T14:23:05.846Z", + "date_of_expiration": "2023-07-13T14:23:05.846Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689258185846, + "description": "Compra de 18.682,00 IVIP por 50,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689488308744, + "id": 1689488308744, + "date_created": "2023-07-16T06:18:28.744Z", + "date_last_updated": "2023-07-16T06:18:28.744Z", + "date_of_expiration": "2023-08-15T06:18:28.744Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689488325765, + "id": 1689488325765, + "date_created": "2023-07-16T06:18:45.765Z", + "date_last_updated": "2023-07-17T17:15:08.067Z", + "date_of_expiration": "2023-08-15T06:18:45.765Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-17T17:15:08.067Z", + "money_release_date": "2023-07-17T17:15:08.067Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689606916771, + "id": 1689606916771, + "date_created": "2023-07-17T15:15:16.771Z", + "date_last_updated": "2023-07-17T15:15:16.771Z", + "date_of_expiration": "2023-08-16T15:15:16.771Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689614163424/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689614163424, + "acquirer_reference": "", + "verification_code": 1689614163424, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689614163424", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 12478, + "total_amount": 12478, + "id": 1689614163424, + "date_created": "2023-07-17T17:16:03.424Z", + "date_last_updated": "2023-07-17T17:16:03.424Z", + "date_of_expiration": "2023-07-17T17:16:03.424Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689614163424, + "description": "Compra de 12.478,00 IVIP por 20,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690673977679, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 31160, + "installment_amount": 31160, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1690673977679" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 31160, + "total_amount": 31160, + "id": 1690673977679, + "history_id": 1690673977679, + "date_created": "2023-07-29T23:39:37.679Z", + "date_last_updated": "2023-07-29T23:39:37.679Z", + "date_of_expiration": "2023-08-29T23:39:37.677Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 31.160,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/29/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-28T23:41:03.331Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690674063331, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1690674063331" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "id": 1690674063331, + "history_id": 1690674063331, + "date_created": "2023-07-29T23:41:03.331Z", + "date_last_updated": "2023-07-29T23:41:03.331Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 50,00 para a carteira iVip 0367.8180.5197.0763-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-11T22:49:28.160Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691880568161, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1691880568161" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1691880568161, + "history_id": 1691880568161, + "date_created": "2023-08-12T22:49:28.161Z", + "date_last_updated": "2023-08-12T22:49:28.161Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 20,00 para a carteira iVip 0367.8180.5197.0763-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693353168151, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 31160, + "installment_amount": 31160, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1693353168151" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 31783.2, + "total_amount": 31783.2, + "id": "1693353168151", + "history_id": "1693353168151", + "date_created": "2023-08-29T23:52:48.151Z", + "date_last_updated": "2023-08-29T23:52:48.151Z", + "date_of_expiration": "2023-08-29T23:52:48.151Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 31.160,00 IVIP com um rendimento de +623,2 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689220270724, + "dateValidity": 1689220270724, + "totalValue": 14.47, + "currencyType": "USD", + "balancesModificacao": "2023-10-02T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039695615525592090", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677455523126, + "dateValidity": 1677455523127, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "150481.00000000", + "symbol": "IVIP", + "value": 16.044 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-04T15:32:38.190Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696519958190, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696519958190" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "039734721775654510", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": "1696519958190", + "history_id": "1696519958190", + "date_created": "2023-10-05T15:32:38.190Z", + "date_last_updated": "2023-10-05T15:32:38.190Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 100,00 BRL para a carteira iVip 0397.3472.1775.6545-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-04T21:32:52.533Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696541572533, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696541572533" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "039734721775654510", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "id": "1696541572533", + "history_id": "1696541572533", + "date_created": "2023-10-05T21:32:52.533Z", + "date_last_updated": "2023-10-05T21:32:52.533Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-05T09:46:24.658Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696585584658, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696585584658" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "039734721775654510", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "id": "1696585584658", + "history_id": "1696585584658", + "date_created": "2023-10-06T09:46:24.658Z", + "date_last_updated": "2023-10-07T14:19:56.574Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-10-07T14:19:56.574Z", + "money_release_date": "2023-10-07T14:19:56.574Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719310, + "modified": 1700589719310 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696706580251/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696706580251", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696706580251" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696706580251", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "039734721775654510", + "payment_method": "swap", + "original_amount": 70156, + "total_amount": 70156, + "id": "1696706580251", + "history_id": "1696706580251", + "date_created": "2023-10-07T19:23:00.251Z", + "date_last_updated": "2023-10-07T19:23:00.251Z", + "date_of_expiration": "2023-10-07T19:23:00.251Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 70.156,00 IVIP por 50,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-08T23:46:10.002Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696895170006", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696895170006" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "039734721775654510", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "id": "1696895170006", + "history_id": "1696895170006", + "date_created": "2023-10-09T23:46:10.006Z", + "date_last_updated": "2023-10-10T12:08:30.416Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-10-10T12:08:30.416Z", + "money_release_date": "2023-10-10T12:08:30.416Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696951453164/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696951453164", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696951453164" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696951453164", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "039734721775654510", + "payment_method": "swap", + "original_amount": 80325, + "total_amount": 80325, + "id": "1696951453164", + "history_id": "1696951453164", + "date_created": "2023-10-10T15:24:13.164Z", + "date_last_updated": "2023-10-10T15:24:13.164Z", + "date_of_expiration": "2023-10-10T15:24:13.164Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 80.325,00 IVIP por 50,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696456086300, + "dateValidity": 1696456087509, + "currencyType": "USD", + "balancesModificacao": "2023-10-16T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041090915252286260", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677897482019, + "dateValidity": 1678002144888, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.9900000000000001 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 100.99, + "overpaid_amount": 0, + "installment_amount": 0, + "ticket_url": "https://www.mercadopago.com.br/payments/55838306631/ticket?caller_id=1310149122&hash=c84a0406-1525-4894-8c96-d700cf2da43d", + "qr_code": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558383066316304189E", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIwElEQVR42u3dW67rNgwFUM3A85+lZ+CiRYsTi5ty+gDaWisfBzfXr+X8EaS2xvU/+pyDlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlvaf1475c/z+fz9Hp6t/O+XXm4zpX58n/xytD/rt6HReYtDS0tLS0tLS0tLS0m6iPQLlhvq5+3Sn35+zJk+8n8v+OPB5l6SipaWlpaWlpaWlpaXdQPtZQE7G815FnvdHTFVfuqKpItNzC4OWlpaWlpaWlpaWlnZb7Y9ses6Vj6a3mm6V6sTyh5aWlpaWlpaWlpaWlvZ+6SeqbcmdZWRyeqHULZxOpqWlpaWlpaWlpaWl3Vubi7vpsdNzahGYxjbTa0yy9fAnLS0tLS0tLS0tLS3t+7UppeRf+PM3MlVoaWlpaWlpaWlpaWn/z9r1pxR8q8Vx7Yjm5EnpkYsPLS0tLS0tLS0tLS3t27VpaPLs+nfNore2Fi0vdJvinMYxc7OPlpaWlpaWlpaWlpb23dqUqZ/y+NMyuUWxWN+vLLGro5w55J+WlpaWlpaWlpaWlnYDbboq5UOmwvCL0Mn8Vs2tQvIkLS0tLS0tLS0tLS3tm7Vt2fh598dAyMWzk/sM+SdX30GkpaWlpaWlpaWlpaV9s/Yz1LGG8k+5/eWyM/xpj9Y5zfJjXLS0tLS0tLS0tLS0tNtp03K1ttWW2nQF0GyAXWrRVJBmPC0tLS0tLS0tLS0t7Zu1U+2YSro8JVlHKr9q4k1r4NIqvOOb3dZoaWlpaWlpaWlpaWnfoi0tuSvsUD0Wrbt02RRkkuJLyv+NgKelpaWlpaWlpaWlpd1CO9Vwj4EiZTbyDNopanJqBU4/xs1Y3LS0tLS0tLS0tLS0tO/WlttdXb9t3MNIajduPYQ5tf1K5v8I05m0tLS0tLS0tLS0tLRbaOvCtfRJJWLpEa7TTKZHnnk685vd1mhpaWlpaWlpaWlpaV+kzVXfKFtXlzqxjl6WLdea4Mg8sXmUP7S0tLS0tLS0tLS0tDtppxJx3AHJk0Yv1/Elx1M/sOy7RktLS0tLS0tLS0tLu4W2NuJSi6+si7vCXGVqFNYi9fMNmnK1m7qkpaWlpaWlpaWlpaV9o/Ysi9RyETh92r3YVgvcuv7dfJfnmpeWlpaWlpaWlpaWlvY92rbqq1tXT0kjix0BJveRD7RF5UPNS0tLS0tLS0tLS0tL+yJtTnEcnewsGf2lzzfC6za80je8vkuPpKWlpaWlpaWlpaWlfZE2l351zVrbzitf6+Rknthsv54P3T1aWlpaWlpaWlpaWtpXaafdqNuycTq5FHxnCJNM7by08i0FTF60tLS0tLS0tLS0tLTbaJsZyvVquBT0WOrOx/5d0aafhZaWlpaWlpaWlpaWdgNtiiCZFKXMO7sXOrqAknT78+nhtLS0tLS0tLS0tLS079ceYXwyrWO75qbbyKOXdSFcKi/Tj1HKS1paWlpaWlpaWlpa2i20zT3DqrRR9sNuVs2V5W+3a6eXTEn/tLS0tLS0tLS0tLS0+2hTMkjp3zUL3HIr8DaxuVj+lp47HjNVaGlpaWlpaWlpaWlp36b9yjNCJTgFj4x7eXl1gZDncuryeNgFm5aWlpaWlpaWlpaW9n3aqelWbnc978B2hfHJo4svGWOk2c3CuGhpaWlpaWlpaWlpaXfSJuhULJaoklHySkrZ2LzaUzDKcy+SlpaWlpaWlpaWlpb2VdpKbrNJ0tK5z6/rVmA7YZn+RUtLS0tLS0tLS0tLu4+23mQagWxPWdwgdfKushAuT10ej71IWlpaWlpaWlpaWlraV2lTKTnVjkf+miMkx2cTb7pznrpMpSQtLS0tLS0tLS0tLe0u2kw5u7iRK2/DlkJGcmjJ1W0kMEajoqWlpaWlpaWlpaWl3UJ7ftmwO/LXMqy5Wv5WytVV4AktLS0tLS0tLS0tLe0W2sVwZTM+mXJGUuBJiTlp3+C6dwZpaWlpaWlpaWlpaWn30TZFYNmwum3i1fZgGq586hGefVYlLS0tLS0tLS0tLS3tm7WtJ6f1X12QSdPEm0Yv20HPchdaWlpaWlpaWlpaWtr9tOtdq9Nua9OBKdo/D2vW5JI8hHnR0tLS0tLS0tLS0tLupJ3unkYlS8jICrqY52y2x05BlLS0tLS0tLS0tLS0tJtob2XjNCWZlqt9FoarGP+Mr+/8XFTS0tLS0tLS0tLS0tK+W9vuRp3SR6be37GY08y5lFcZ4Jx+m9BLpKWlpaWlpaWlpaWlfbP2qbF3ZVl+q+seEnmWPt9TZ7BuzUZLS0tLS0tLS0tLS/t2bRmuHGUEcnq1DDhz22/6CUq5OrroE1paWlpaWlpaWlpa2n20dUFamrBchEke91e/dQtL6y7tlt0Un7S0tLS0tLS0tLS0tJto2xru7NbAjedokaucnGctp9bi9V13j5aWlpaWlpaWlpaW9kXabKz7pLWzkYshzGkRXXMgl7C0tLS0tLS0tLS0tLSbacfTFte5wrvCHmsVn2TrUpKWlpaWlpaWlpaWlnYfbfp8PuLMo5clgiRVlqlh990+bsupS1paWlpaWlpaWlpa2ldpS2jI48P+cp8vrXy7uo3bDlpaWlpaWlpaWlpa2m20617dGM3JaWe1ZrjyKUzyz1SRtLS0tLS0tLS0tLS0r9SmAjLNRuYu4Cqov23npZ8l1ae0tLS0tLS0tLS0tLR7akfIDRkhAfIKefzNnm3t1OX0us/dPVpaWlpaWlpaWlpa2g20i4j9Jpn/CB2/1M67uunMOsBJS0tLS0tLS0tLS0u7j3aN/5ymXPf+0t7Xq3Vx69V1tLS0tLS0tLS0tLS0m2jr4GNepHbOw5CjnJdW0p3h2qv8DmmJHS0tLS0tLS0tLS0t7Rba//6HlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlvYf0/4CTrnpnMA9aVMAAAAASUVORK5CYII=" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 100, + "total_amount": 100.99, + "history_id": 1679068099316, + "id": 55838306631, + "date_created": "2023-03-17T11:48:19.967-04:00", + "date_last_updated": "2023-03-18T11:50:47.000-04:00", + "date_of_expiration": "2023-03-18T11:48:19.697-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "cancelled", + "status_detail": "expired", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0413.9580.8163.2810-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.9900000000000001 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 100.99, + "overpaid_amount": 0, + "installment_amount": 0, + "qr_code": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558382392976304091C", + "ticket_url": "https://www.mercadopago.com.br/payments/55838239297/ticket?caller_id=1310149122&hash=39da82e9-af89-4bbc-a0a8-066f192eab65", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIu0lEQVR42u3dTW7jOBAGUN5A97+lbqDZDDoW6ysqQTcG0+LzIkgcS3r0rlB/4/qLXuegpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpf3z2jG/jn/f+/rvdHV57yyXfb1XLjt//ajXTgxaWlpaWlpaWlpaWtpNtNM9j/tv5+cjPu90/jrQkclfT54+/Pm5r8saBi0tLS0tLS0tLS0t7RbazwCyGqeI8dM9wgnOEZOHEz49tzBoaWlpaWlpaWlpaWm31V73OHGUXF0JG8+c8Vsk+47wg5aWlpaWlpaWlpaWljak33IQOFVY3l7TcVO2cPowLS0tLS0tLS0tLS3t3toc3E2PbXJ6092n39IxJtm6+JOWlpaWlpaWlpaWlvb92hXgP/zxGzNVaGlpaWlpaWlpaWlp/2bt+tVGgmV8yRGa3pq7pOmRixctLS0tLS0tLS0tLe3btalo8szZuLbprY1Fy4GmoZNXGT+5zO7R0tLS0tLS0tLS0tK+T5tm6j/dPbXEXd2g/jOcOYWhoxvyT0tLS0tLS0tLS0tLu4E2XTUNKCknaPekjTLXJCf72ludqxpRWlpaWlpaWlpaWlrat2kztIZ5n+9dIQd33asujxJ3tlWXaaH2suqSlpaWlpaWlpaWlpb2VdoU9bUllSmT91Sieeb2t+m55eujpaWlpaWlpaWlpaXdTHtL3U1PLAWXTRSZrki8coJU1ElLS0tLS0tLS0tLS7uVNod0aW5Is3ft+0m8ZuhkOdpBS0tLS0tLS0tLS0u7ibY0vTV5vtQcN929nPm8D5Mc9w9P742Ap6WlpaWlpaWlpaWl3UqbB0IeIQistZFFe+T3phO0OcLnKJKWlpaWlpaWlpaWlvY92qaGcjrB501Sb9sRPOMeaNb3ptC0VGfS0tLS0tLS0tLS0tJuoE2Na/ksI8iubi3A7bLc+dYMrPzOtjVaWlpaWlpaWlpaWtoXadNYkrS6OsWJJdA87inDZnDkYujkEdZy09LS0tLS0tLS0tLSbqFNPWu3dN6iXe0qgDy+5FjmA6dkHy0tLS0tLS0tLS0t7T7amogrhY9XuXtJ0x1dojAFqVeYWtmOKqGlpaWlpaWlpaWlpX279rw3qbVB4Mh9cWVP2qrBrcvfzXd5jnlpaWlpaWlpaWlpaWnfo03kafhjTd2lwswSHabazZFnUE5f0EPMS0tLS0tLS0tLS0tL+yLtoq5yGiNylkiwzQzm406JwpHvV8i0tLS0tLS0tLS0tLTv1qa8XOpZKwP9cyIuds2tKzbLn+dDdo+WlpaWlpaWlpaWlvZV2mk8fwkbU/y3CPia2s0mimy3tz3EvLS0tLS0tLS0tLS0tK/Sptu13XBHni+S487H/F0KTafvkJaWlpaWlpaWlpaWdgttGkFS9lw3dZqLAzVtcmlxW/twWlpaWlpaWlpaWlra92vrOP22jy3XS6Zrj3uHXA0v05dRwktaWlpaWlpaWlpaWtottM09Q1faKLWWTddcaX87yx63Ms2kDVxpaWlpaWlpaWlpaWnfrU2TQUr+Lg30PxepwKlNbkrdlRMciwpQWlpaWlpaWlpaWlrat2uT57vGhecKUWSNO8tz845sWlpaWlpaWlpaWlraN2vLSuozBIaju+co66yn0stcidk8vPyXlpaWlpaWlpaWlpZ2P227vzqvx75CdeZVosN2OOVicslBS0tLS0tLS0tLS0u7jbbWX6bZJCUVOOHTArUzZAaPnFUsv9HS0tLS0tLS0tLS0u6jPe/B4hTXjfycFEW229YW38jZhZIXLS0tLS0tLS0tLS3tNtqU55tix7rn+vMEdcJJW5OZqy5TKElLS0tLS0tLS0tLS7uLdrHi+ui0o1RipiAwDy25ukUCYzQqWlpaWlpaWlpaWlraDbQp6stTSo6S3ZvqKp9ShiPO7R9pzAktLS0tLS0tLS0tLe1O2tGtXLty+WSaM5IGnpQxJ+0Jrhyf0tLS0tLS0tLS0tLSvl/bBIFPy9Ka7rV2eH/SLuJOWlpaWlpaWlpaWlraHbVXmAC5jv+mIswaVE6ll22hZ7kLLS0tLS0tLS0tLS3tLto8cf8H29bSZWkgZBo6WX7Lf9LS0tLS0tLS0tLS0r5ZWx7RLEtLRZgtdFHPmdZj10GUzzWitLS0tLS0tLS0tLS0b9F+3jgttk6JvbRZLY05Sfi2xW4RVNLS0tLS0tLS0tLS0r5ZWwokx73fbUrJXRk63a9sZWtkU4z5kykltLS0tLS0tLS0tLS079EeXQ9cihhHmFKSqjPrzJEUVGYBLS0tLS0tLS0tLS3tjtqpIrJZhZ1KKqcwdP0VlHB1dKNPaGlpaWlpaWlpaWlpd9FOZZZpSGS6XcnQXaFXLqXu0rbsJvikpaWlpaWlpaWlpaXdR5sKLtPgyDR4JGUB04dzreX0FVwP2T1aWlpaWlpaWlpaWtr3aVP3Woosn2sja9buHCN9I2mMf17wRktLS0tLS0tLS0tLu492PK247iK8+kq9clW2DiVpaWlpaWlpaWlpaWn30abXer7/lLDLOb00VvLIZZaLSf+0tLS0tLS0tLS0tLQbaNdBYHrYYuN1GjCZqi6r+yc7CGhpaWlpaWlpaWlpaV+mrag8GvLIib3pLqm4crG97cdRJC0tLS0tLS0tLS0t7Su1ZdLIyLWRadL/elB/bnBrTpBDWFpaWlpaWlpaWlpa2h21t2AxRXipy61kC49ctllSfGc4KS0tLS0tLS0tLS0tLe2yOa48Z3qv3YJ9ddWZtZ2OlpaWlpaWlpaWlpZ2H+0a/xkdpgXYU+6v1mm2fXHf3BdAS0tLS0tLS0tLS0v7bm0tfMxNaquIcdH0Vj+X+uemFjtaWlpaWlpaWlpaWtp9tP//Fy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS3tH9P+A9AQYpnhsXB9AAAAAElFTkSuQmCC" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 100, + "total_amount": 100.99, + "history_id": 1679068275059, + "id": 55838239297, + "date_created": "2023-03-17T11:51:15.826-04:00", + "date_last_updated": "2023-03-17T11:52:17.000-04:00", + "date_of_expiration": "2023-03-18T11:51:15.577-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-17T11:52:17.000-04:00", + "money_release_date": "2023-03-17T11:52:17.000-04:00", + "wasDebited": true, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0413.9580.8163.2810-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679267870429/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679267870429, + "acquirer_reference": "", + "verification_code": 1679267870429, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679267870429", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 581846, + "total_amount": 581846, + "id": 1679267870429, + "date_created": "2023-03-19T23:17:50.429Z", + "date_last_updated": "2023-03-19T23:17:50.429Z", + "date_of_expiration": "2023-03-19T23:17:50.429Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679267870429, + "description": "Compra de 581846 IVIP por 100 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 581846, + "total_amount": 581846, + "history_id": 1686586586983, + "id": 1686586586983, + "date_created": "2023-06-12T16:16:26.983Z", + "date_last_updated": "2023-06-12T16:16:26.983Z", + "date_of_expiration": "2023-06-12T16:16:26.983Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 581.846,00 IVIP para a carteira 0x37E0fCB4d560966a0564DA6CD53002e1ec1eb98B" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 581846, + "total_amount": 581846, + "history_id": 1686586986320, + "id": 1686586986320, + "date_created": "2023-06-12T16:23:06.320Z", + "date_last_updated": "2023-06-12T16:23:06.320Z", + "date_of_expiration": "2023-06-12T16:23:06.320Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 581.846,00 IVIP para a carteira 0x37E0fCB4d560966a0564DA6CD53002e1ec1eb98B" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690134068779, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 400954, + "installment_amount": 400954, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/041395808163281030/history/1690134068779" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 400954, + "total_amount": 400954, + "id": 1690134068779, + "history_id": 1690134068779, + "date_created": "2023-07-23T17:41:08.779Z", + "date_last_updated": "2023-07-23T17:41:08.779Z", + "date_of_expiration": "2023-07-23T17:41:08.779Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment", + "description": "Saque de 400.954,00 IVIP para a carteira 0x8B2f02C31F9ab77685A7c7546e3768e290DD6394" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "581846.00000000", + "symbol": "IVIP", + "value": 73.41 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679068061044, + "dateValidity": 1679068061044, + "currencyType": "USD", + "totalValue": 18.88, + "balancesModificacao": "2023-10-11T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1689548630515, + "id": 1689548630515, + "date_created": "2023-07-16T23:03:50.515Z", + "date_last_updated": "2023-07-16T23:03:50.515Z", + "date_of_expiration": "2023-08-15T23:03:50.515Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0429.6416.2467.3393-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/042964162467339360/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/042964162467339360", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689548492145, + "dateValidity": 1689548492145, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "127146.00000000", + "symbol": "IVIP", + "value": 13.81 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-01T03:44:50.801Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696218290801, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 150, + "installment_amount": 150, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696218290801" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "044107260739866040", + "payment_method": "whatsapp", + "original_amount": 150, + "total_amount": 150, + "id": "1696218290801", + "history_id": "1696218290801", + "date_created": "2023-10-02T03:44:50.801Z", + "date_last_updated": "2023-10-02T03:44:50.801Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 150,00 BRL para a carteira iVip 0441.0726.0739.8660-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-04T13:24:49.783Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696512289784, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696512289784" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "044107260739866040", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": "1696512289784", + "history_id": "1696512289784", + "date_created": "2023-10-05T13:24:49.784Z", + "date_last_updated": "2023-10-05T13:24:49.784Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 100,00 BRL para a carteira iVip 0441.0726.0739.8660-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-06T13:24:29.126Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696685069127", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696685069127" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "044107260739866040", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": "1696685069127", + "history_id": "1696685069127", + "date_created": "2023-10-07T13:24:29.127Z", + "date_last_updated": "2023-10-07T14:40:38.574Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-10-07T14:40:38.574Z", + "money_release_date": "2023-10-07T14:40:38.574Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 100,00 BRL para a carteira iVip 0441.0726.0739.8660-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696690479419/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696690479419", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696690479419" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696690479419", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "044107260739866040", + "payment_method": "swap", + "original_amount": 127146, + "total_amount": 127146, + "id": "1696690479419", + "history_id": "1696690479419", + "date_created": "2023-10-07T14:54:39.419Z", + "date_last_updated": "2023-10-07T14:54:39.419Z", + "date_of_expiration": "2023-10-07T14:54:39.419Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 127.146,00 IVIP por 100,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696161500774, + "dateValidity": 1696161500803, + "currencyType": "USD", + "balancesModificacao": "2023-10-11T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1678092684774, + "id": 1678092684774, + "date_created": "2023-03-06T08:51:24.774Z", + "date_last_updated": "2023-03-06T08:51:24.774Z", + "date_of_expiration": "2023-04-05T08:51:24.774Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0443.9842.9081.9756-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044398429081975660", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678092570010, + "dateValidity": 1678110570040, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "615.00000000", + "symbol": "IVIP", + "value": 0.094 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "history_id": 1678363004367, + "id": 1678363004367, + "date_created": "2023-03-09T11:56:44.367Z", + "date_last_updated": "2023-03-09T11:57:54.662Z", + "date_of_expiration": "2023-04-08T11:56:44.367Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-09T11:57:54.662Z", + "money_release_date": "2023-03-09T11:57:54.662Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0451.2281.2371.7113-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 150, + "total_amount": 150, + "history_id": 1678578646817, + "id": 1678578646817, + "date_created": "2023-03-11T23:50:46.817Z", + "date_last_updated": "2023-03-11T23:52:26.705Z", + "date_of_expiration": "2023-04-10T23:50:46.817Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-11T23:52:26.705Z", + "money_release_date": "2023-03-11T23:52:26.705Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 150,00 para a carteira iVip 0451.2281.2371.7113-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1679266969508/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679266969508, + "acquirer_reference": "", + "verification_code": 1679266969508, + "net_received_amount": 0, + "total_paid_amount": 1650, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1679266969508", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 9610615, + "total_amount": 9610615, + "id": 1679266969508, + "date_created": "2023-03-19T23:02:49.508Z", + "date_last_updated": "2023-03-19T23:02:49.508Z", + "date_of_expiration": "2023-03-19T23:02:49.508Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679266969508, + "description": "Compra de 9610615 IVIP por 1650 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1681517575873/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1681517575873, + "acquirer_reference": "", + "verification_code": 1681517575873, + "net_received_amount": 0, + "total_paid_amount": 0.003547, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1681517575873", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1000, + "total_amount": 1000, + "id": 1681517575873, + "date_created": "2023-04-15T00:12:55.873Z", + "date_last_updated": "2023-04-15T00:12:55.873Z", + "date_of_expiration": "2023-04-15T00:12:55.873Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1681517575873, + "description": "Compra de 1.000,00 IVIPAY por 100,00 IVIP estabilizando US$ 0,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1685393623279/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685393623279, + "acquirer_reference": "", + "verification_code": 1685393623279, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1685393623279", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 100, + "total_amount": 100, + "id": 1685393623279, + "date_created": "2023-05-29T20:53:43.279Z", + "date_last_updated": "2023-05-29T20:53:43.279Z", + "date_of_expiration": "2023-05-29T20:53:43.279Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685393623279, + "description": "Compra de 100,00 IVIP por 1.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1685666780649/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685666780649, + "acquirer_reference": "", + "verification_code": 1685666780649, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1685666780649", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1685666780649, + "date_created": "2023-06-02T00:46:20.649Z", + "date_last_updated": "2023-06-02T00:46:20.649Z", + "date_of_expiration": "2023-07-02T00:46:20.649Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685666780649, + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1688400356570/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400356570, + "acquirer_reference": "", + "verification_code": 1688400356570, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1688400356570", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": 1688400356570, + "date_created": "2023-07-03T16:05:56.570Z", + "date_last_updated": "2023-07-03T16:05:56.570Z", + "date_of_expiration": "2023-07-03T16:05:56.570Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400356570, + "wasDebited": true, + "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 9770000, + "total_amount": 9770000, + "history_id": 1688402757097, + "id": 1688402757097, + "date_created": "2023-07-03T16:45:57.097Z", + "date_last_updated": "2023-07-04T20:33:31.967Z", + "date_of_expiration": "2023-07-03T16:45:57.097Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-07-04T20:33:31.967Z", + "money_release_date": "2023-07-04T20:33:31.967Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 9.770.000,00 IVIP para a carteira 0xB33c611edEE4ac91638b50464CB3bfd488551499" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 3000, + "limitUsed": 0, + "analysisRequested": "2023-04-04T17:16:15.345Z", + "lastReview": "2023-04-08T18:26:11.033Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678330009291, + "dateValidity": 1678662517584, + "totalValue": 0.17, + "currencyType": "BRL", + "balancesModificacao": "2023-10-06T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "32771309.00000000", + "symbol": "IVIP", + "value": 4296.45 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 4000, + "total_amount": 4000, + "history_id": 1678148520442, + "id": 1678148520442, + "date_created": "2023-03-07T00:22:00.442Z", + "date_last_updated": "2023-03-07T16:04:13.026Z", + "date_of_expiration": "2023-04-06T00:22:00.442Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-07T16:04:13.026Z", + "money_release_date": "2023-03-07T16:04:13.026Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1678207899775/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678207899775, + "acquirer_reference": "", + "verification_code": 1678207899775, + "net_received_amount": 0, + "total_paid_amount": 4000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1678207899775", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 28376575, + "total_amount": 28376575, + "id": 1678207899775, + "date_created": "2023-03-07T16:51:39.775Z", + "date_last_updated": "2023-03-07T16:51:39.775Z", + "date_of_expiration": "2023-03-07T16:51:39.775Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678207899775, + "description": "Compra de 28376575 IVIP por 4000 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 4000, + "total_amount": 4000, + "history_id": 1689022785271, + "id": 1689022785271, + "date_created": "2023-07-10T20:59:45.271Z", + "date_last_updated": "2023-07-10T21:11:29.899Z", + "date_of_expiration": "2023-08-09T20:59:45.271Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-10T21:11:29.899Z", + "money_release_date": "2023-07-10T21:11:29.899Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 4000, + "total_amount": 4000, + "history_id": 1689022932520, + "id": 1689022932520, + "date_created": "2023-07-10T21:02:12.520Z", + "date_last_updated": "2023-07-10T21:02:12.520Z", + "date_of_expiration": "2023-08-09T21:02:12.520Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1689025604196/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689025604196, + "acquirer_reference": "", + "verification_code": 1689025604196, + "net_received_amount": 0, + "total_paid_amount": 4000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1689025604196", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 3621314, + "total_amount": 3621314, + "id": 1689025604196, + "date_created": "2023-07-10T21:46:44.196Z", + "date_last_updated": "2023-07-10T21:46:44.196Z", + "date_of_expiration": "2023-07-10T21:46:44.196Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689025604196, + "description": "Compra de 3.621.314,00 IVIP por 4.000,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "history_id": 1689196978297, + "id": 1689196978297, + "date_created": "2023-07-12T21:22:58.297Z", + "date_last_updated": "2023-07-13T14:12:53.443Z", + "date_of_expiration": "2023-08-11T21:22:58.297Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-13T14:12:53.443Z", + "money_release_date": "2023-07-13T14:12:53.443Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0454.0726.5934.5405-84" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1689258784601/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689258784601, + "acquirer_reference": "", + "verification_code": 1689258784601, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1689258784601", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 773420, + "total_amount": 773420, + "id": 1689258784601, + "date_created": "2023-07-13T14:33:04.601Z", + "date_last_updated": "2023-07-13T14:33:04.601Z", + "date_of_expiration": "2023-07-13T14:33:04.601Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689258784601, + "description": "Compra de 773.420,00 IVIP por 2.000,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678132398712, + "dateValidity": 1678671560774, + "totalValue": 7620.23, + "currencyType": "USD", + "balancesModificacao": "2023-10-09T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045642520706235200", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678565263127, + "dateValidity": 1678579663168, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/046564008100064220/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/046564008100064220", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696462399261, + "dateValidity": 1696462399357, + "currencyType": "USD", + "balancesModificacao": "2023-10-13T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047633761232259040", + "content": { + "type": 1, + "value": { + "dataModificacao": 1692582136079, + "dateValidity": 1692582136128, + "currencyType": "USD", + "balancesModificacao": "2023-08-20T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "8588955.54000000", + "symbol": "IVIP", + "value": 4678.3 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 5000, + "total_amount": 5000, + "history_id": 1683569771704, + "id": 1683569771704, + "date_created": "2023-05-08T18:16:11.704Z", + "date_last_updated": "2023-05-08T18:34:33.225Z", + "date_of_expiration": "2023-06-07T18:16:11.704Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-08T18:34:33.225Z", + "money_release_date": "2023-05-08T18:34:33.225Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 5.000,00 para a carteira iVip 0479.2557.7230.6628-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1684018936403/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684018936403, + "acquirer_reference": "", + "verification_code": 1684018936403, + "net_received_amount": 0, + "total_paid_amount": 5000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1684018936403", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 27021960, + "total_amount": 27021960, + "id": 1684018936403, + "date_created": "2023-05-13T23:02:16.403Z", + "date_last_updated": "2023-05-13T23:02:16.403Z", + "date_of_expiration": "2023-05-13T23:02:16.403Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684018936403, + "description": "Compra de 27.021.960,00 IVIP por 5.000,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1688531798249/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688531798249, + "acquirer_reference": "", + "verification_code": 1688531798249, + "net_received_amount": 0, + "total_paid_amount": 7668365, + "overpaid_amount": 0, + "installment_amount": 7668365, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1688531798249", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 7668365, + "total_amount": 7668365, + "id": 1688531798249, + "date_created": "2023-07-05T04:36:38.249Z", + "date_last_updated": "2023-07-05T04:36:38.249Z", + "date_of_expiration": "2023-08-05T04:36:38.249Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688531798249, + "wasDebited": true, + "description": "Investimento de 7.668.365,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1688647483933, + "id": 1688647483933, + "date_created": "2023-07-06T12:44:43.933Z", + "date_last_updated": "2023-07-07T22:01:16.048Z", + "date_of_expiration": "2023-08-05T12:44:43.933Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-07T22:01:16.048Z", + "money_release_date": "2023-07-07T22:01:16.048Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0479.2557.7230.6628-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1688771723408/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688771723408, + "acquirer_reference": "", + "verification_code": 1688771723408, + "net_received_amount": 0, + "total_paid_amount": 500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1688771723408", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 823634, + "total_amount": 823634, + "id": 1688771723408, + "date_created": "2023-07-07T23:15:23.408Z", + "date_last_updated": "2023-07-07T23:15:23.408Z", + "date_of_expiration": "2023-07-07T23:15:23.408Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688771723408, + "description": "Compra de 823.634,00 IVIP por 500,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1689021558105, + "id": 1689021558105, + "date_created": "2023-07-10T20:39:18.105Z", + "date_last_updated": "2023-07-10T21:07:02.567Z", + "date_of_expiration": "2023-08-09T20:39:18.105Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-10T21:07:02.567Z", + "money_release_date": "2023-07-10T21:07:02.567Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0479.2557.7230.6628-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689023394597/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689023394597, + "acquirer_reference": "", + "verification_code": 1689023394597, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689023394597", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 914949, + "total_amount": 914949, + "id": 1689023394597, + "date_created": "2023-07-10T21:09:54.597Z", + "date_last_updated": "2023-07-10T21:09:54.597Z", + "date_of_expiration": "2023-07-10T21:09:54.597Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689023394597, + "description": "Compra de 914.949,00 IVIP por 1.000,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1689248290301, + "id": 1689248290301, + "date_created": "2023-07-13T11:38:10.301Z", + "date_last_updated": "2023-07-13T13:59:27.203Z", + "date_of_expiration": "2023-08-12T11:38:10.301Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-13T13:59:27.203Z", + "money_release_date": "2023-07-13T13:59:27.203Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0479.2557.7230.6628-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689260053657/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689260053657, + "acquirer_reference": "", + "verification_code": 1689260053657, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689260053657", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 381522, + "total_amount": 381522, + "id": 1689260053657, + "date_created": "2023-07-13T14:54:13.657Z", + "date_last_updated": "2023-07-13T14:54:13.657Z", + "date_of_expiration": "2023-07-13T14:54:13.657Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689260053657, + "description": "Compra de 381.522,00 IVIP por 1.000,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689301547038/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689301547038, + "acquirer_reference": "", + "verification_code": 1689301547038, + "net_received_amount": 0, + "total_paid_amount": 5008550, + "overpaid_amount": 0, + "installment_amount": 5008550, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689301547038", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5008550, + "total_amount": 5008550, + "id": 1689301547038, + "date_created": "2023-07-14T02:25:47.038Z", + "date_last_updated": "2023-07-14T02:25:47.038Z", + "date_of_expiration": "2025-07-14T02:25:47.038Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689301547038, + "description": "Investimento de 5.008.550,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/13/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "history_id": 1689355287691, + "id": 1689355287691, + "date_created": "2023-07-14T17:21:27.691Z", + "date_last_updated": "2023-07-14T17:35:36.387Z", + "date_of_expiration": "2023-08-13T17:21:27.691Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-14T17:35:36.387Z", + "money_release_date": "2023-07-14T17:35:36.387Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0479.2557.7230.6628-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689356922364/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689356922364, + "acquirer_reference": "", + "verification_code": 1689356922364, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689356922364", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1235586, + "total_amount": 1235586, + "id": 1689356922364, + "date_created": "2023-07-14T17:48:42.364Z", + "date_last_updated": "2023-07-14T17:48:42.364Z", + "date_of_expiration": "2023-07-14T17:48:42.364Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689356922364, + "description": "Compra de 1.235.586,00 IVIP por 2.000,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-19T15:43:07.113Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1689867787119, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3000, + "installment_amount": 3000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/extract/047925577230662820/order/1689867787113" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "", + "original_amount": 3000, + "total_amount": 3000, + "id": 1689867787119, + "history_id": 1689867787119, + "date_created": "2023-07-20T15:43:07.119Z", + "date_last_updated": "2023-07-20T15:43:07.119Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0479.2557.7230.6628-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-20T12:25:11.952Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1689942311952, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3000, + "installment_amount": 3000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1689942311952" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 3000, + "total_amount": 3000, + "id": 1689942311952, + "history_id": 1689942311952, + "date_created": "2023-07-21T12:25:11.952Z", + "date_last_updated": "2023-07-21T12:25:38.759Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-07-21T12:25:38.759Z", + "money_release_date": "2023-07-21T12:25:38.759Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0479.2557.7230.6628-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942442311/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689942442311, + "acquirer_reference": "", + "verification_code": 1689942442311, + "net_received_amount": 0, + "total_paid_amount": 3000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942442311", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1849758, + "total_amount": 1849758, + "id": 1689942442311, + "date_created": "2023-07-21T12:27:22.311Z", + "date_last_updated": "2023-07-21T12:27:22.311Z", + "date_of_expiration": "2023-07-21T12:27:22.311Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689942442311, + "description": "Compra de 1.849.758,00 IVIP por 3.000,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-04T01:54:56.983Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691200496984, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2000, + "installment_amount": 2000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691200496984" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "id": 1691200496984, + "history_id": 1691200496984, + "date_created": "2023-08-05T01:54:56.984Z", + "date_last_updated": "2023-08-05T01:54:56.984Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 2.000,00 para a carteira iVip 0479.2557.7230.6628-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691214286883, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7821732.3, + "installment_amount": 7821732.3, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691214286883" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 7821732.3, + "total_amount": 7821732.3, + "id": 1691214286883, + "history_id": 1691214286883, + "date_created": "2023-08-05T05:44:46.883Z", + "date_last_updated": "2023-08-05T05:44:46.883Z", + "date_of_expiration": "2023-08-05T05:44:46.883Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 7.668.365,00 IVIP com um rendimento de +153.367,3 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-04T16:30:25.281Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691253025281, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1500, + "installment_amount": 1500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691253025281" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "id": 1691253025281, + "history_id": 1691253025281, + "date_created": "2023-08-05T16:30:25.281Z", + "date_last_updated": "2023-08-05T16:33:34.508Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-05T16:33:34.508Z", + "money_release_date": "2023-08-05T16:33:34.508Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 1.500,00 para a carteira iVip 0479.2557.7230.6628-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691280221861/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691280221861, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1500, + "installment_amount": 1500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691280221861" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691280221861", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 2127119, + "total_amount": 2127119, + "id": 1691280221861, + "history_id": 1691280221861, + "date_created": "2023-08-06T00:03:41.861Z", + "date_last_updated": "2023-08-06T00:03:41.861Z", + "date_of_expiration": "2023-08-06T00:03:41.861Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 2.127.119,00 IVIP por 1.500,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691283205891, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7769562, + "installment_amount": 7769562, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691283205891" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 7769562, + "total_amount": 7769562, + "id": 1691283205891, + "history_id": 1691283205891, + "date_created": "2023-08-06T00:53:25.891Z", + "date_last_updated": "2023-08-06T00:53:25.891Z", + "date_of_expiration": "2023-09-06T00:53:25.891Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 7.769.562,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693962455688, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7769562, + "installment_amount": 7769562, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1693962455688" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 7924953.24, + "total_amount": 7924953.24, + "id": "1693962455688", + "history_id": "1693962455688", + "date_created": "2023-09-06T01:07:35.688Z", + "date_last_updated": "2023-09-06T01:07:35.688Z", + "date_of_expiration": "2023-09-06T01:07:35.688Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 7.769.562,00 IVIP com um rendimento de +155.391,24 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693962525967, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7931475, + "installment_amount": 7931475, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1693962525967" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 7931475, + "total_amount": 7931475, + "id": "1693962525967", + "history_id": "1693962525967", + "date_created": "2023-09-06T01:08:45.967Z", + "date_last_updated": "2023-10-04T13:04:02.602Z", + "date_of_expiration": "2023-10-06T01:08:45.967Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": "2023-10-04T13:04:02.602Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Investimento de 7.931.475,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695167532103, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 19942224, + "installment_amount": 19942224, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1695167532103" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 19942224, + "total_amount": 19942224, + "id": "1695167532103", + "history_id": "1695167532103", + "date_created": "2023-09-19T23:52:12.103Z", + "date_last_updated": "2023-09-25T21:44:47.175Z", + "date_of_expiration": "2024-03-19T23:52:12.102Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": "2023-09-25T21:44:47.175Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Investimento de 19.942.224,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 30 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695956035041, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1695956035041" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "047925577230662820", + "payment_method": "transfer", + "original_amount": 1000, + "total_amount": 970, + "id": "1695956035041", + "history_id": "1695956035041", + "date_created": "2023-09-29T02:53:55.041Z", + "date_last_updated": "2023-10-03T00:23:57.561Z", + "date_of_expiration": "2023-09-29T02:53:55.041Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": "2023-10-03T00:23:57.561Z", + "money_release_date": "2023-10-03T00:23:57.561Z", + "money_release_status": "drawee", + "wasDebited": true, + "description": "Saque de 970,00 IVIP para a carteira 0x24f07CBa773a4bF9373E50A5694BAb23E5eF5557" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 651697.8461999999 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696003948025, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 21723261.54, + "installment_amount": 21723261.54, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696003948025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "047925577230662820", + "payment_method": "transfer", + "original_amount": 21723261.54, + "total_amount": 21071563.6938, + "id": "1696003948025", + "history_id": "1696003948025", + "date_created": "2023-09-29T16:12:28.025Z", + "date_last_updated": "2023-10-03T00:26:33.604Z", + "date_of_expiration": "2023-09-29T16:12:28.025Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_other_reason", + "date_approved": "2023-10-03T00:26:33.604Z", + "money_release_date": "2023-10-03T00:26:33.604Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Saque de 21.071.563,69 IVIP para a carteira 0x24f07CBa773a4bF9373E50A5694BAb23E5eF5557" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 304593.12 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696207958470, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 10153104, + "installment_amount": 10153104, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696207958470" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "047925577230662820", + "payment_method": "transfer", + "original_amount": 10153104, + "total_amount": 9848510.88, + "id": "1696207958470", + "history_id": "1696207958470", + "date_created": "2023-10-02T00:52:38.470Z", + "date_last_updated": "2023-10-03T00:42:07.841Z", + "date_of_expiration": "2023-10-02T00:52:38.470Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_account_contains_debit_balance", + "money_release_date": "2023-10-03T00:42:07.841Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Saque de 9.848.510,88 IVIP para a carteira 0x8de82EE9234B9dF85A4CBc083E49A0B8Db0D4aD1" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 600892.0499999999 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696471625534, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20029735, + "installment_amount": 20029735, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471625534" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "047925577230662820", + "payment_method": "transfer", + "original_amount": 20029735, + "total_amount": 19428842.95, + "id": "1696471625534", + "history_id": "1696471625534", + "date_created": "2023-10-05T02:07:05.534Z", + "date_last_updated": "2023-10-05T03:03:32.296Z", + "date_of_expiration": "2023-10-05T02:07:05.534Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": "2023-10-05T03:03:32.296Z", + "money_release_date": "2023-10-05T03:03:32.296Z", + "money_release_status": "drawee", + "wasDebited": true, + "description": "Saque de 19.428.842,95 IVIP para a carteira 0x8de82EE9234B9dF85A4CBc083E49A0B8Db0D4aD1" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696471870838, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 7931207, + "installment_amount": 7931207, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471870838" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "047925577230662820", + "payment_method": "staking", + "original_amount": 7931207, + "total_amount": 7931207, + "id": "1696471870838", + "history_id": "1696471870838", + "date_created": "2023-10-05T02:11:10.838Z", + "date_last_updated": "2023-10-05T02:11:10.838Z", + "date_of_expiration": "2023-11-05T02:11:10.607Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_call_for_authorize", + "description": "Investimento de 7.931.207,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696471977293, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1035046, + "installment_amount": 1035046, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471977293" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "047925577230662820", + "payment_method": "staking", + "original_amount": 1035046, + "total_amount": 1035046, + "id": "1696471977293", + "history_id": "1696471977293", + "date_created": "2023-10-05T02:12:57.293Z", + "date_last_updated": "2023-10-05T02:12:57.293Z", + "date_of_expiration": "2023-11-05T02:12:57.200Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 1.035.046,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": "2023-09-29T03:14:47.898Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820", + "content": { + "type": 1, + "value": { + "dataModificacao": 1683569670949, + "dateValidity": 1683569670949, + "totalValue": 48201.8, + "currencyType": "USD", + "balancesModificacao": "2023-10-15T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/049717311460128590", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678063274590, + "dateValidity": 1678170667714, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "1392927.00000000", + "symbol": "IVIP", + "value": 149.3 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 300, + "total_amount": 300, + "history_id": 1679232470571, + "id": 1679232470571, + "date_created": "2023-03-19T13:27:50.571Z", + "date_last_updated": "2023-03-19T22:56:16.805Z", + "date_of_expiration": "2023-04-18T13:27:50.571Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-19T22:56:16.805Z", + "money_release_date": "2023-03-19T22:56:16.805Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 300, + "total_amount": 300, + "history_id": 1679232566671, + "id": 1679232566671, + "date_created": "2023-03-19T13:29:26.671Z", + "date_last_updated": "2023-03-19T13:29:26.671Z", + "date_of_expiration": "2023-04-18T13:29:26.671Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1679871668854/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679871668854, + "acquirer_reference": "", + "verification_code": 1679871668854, + "net_received_amount": 0, + "total_paid_amount": 300, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1679871668854", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1597688, + "total_amount": 1597688, + "id": 1679871668854, + "date_created": "2023-03-26T23:01:08.854Z", + "date_last_updated": "2023-03-26T23:01:08.854Z", + "date_of_expiration": "2023-03-26T23:01:08.854Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679871668854, + "description": "Compra de 1.597.688,00 IVIP por 300,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 300, + "total_amount": 300, + "history_id": 1684190255075, + "id": 1684190255075, + "date_created": "2023-05-15T22:37:35.075Z", + "date_last_updated": "2023-05-16T12:11:16.762Z", + "date_of_expiration": "2023-06-14T22:37:35.075Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-16T12:11:16.762Z", + "money_release_date": "2023-05-16T12:11:16.762Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1684624205744/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624205744, + "acquirer_reference": "", + "verification_code": 1684624205744, + "net_received_amount": 0, + "total_paid_amount": 300, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1684624205744", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1461219, + "total_amount": 1461219, + "id": 1684624205744, + "date_created": "2023-05-20T23:10:05.744Z", + "date_last_updated": "2023-05-20T23:10:05.744Z", + "date_of_expiration": "2023-05-20T23:10:05.744Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624205744, + "description": "Compra de 1.461.219,00 IVIP por 300,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353262267/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686353262267, + "acquirer_reference": "", + "verification_code": 1686353262267, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353262267", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1686353262267, + "date_created": "2023-06-09T23:27:42.267Z", + "date_last_updated": "2023-06-09T23:27:42.267Z", + "date_of_expiration": "2023-07-09T23:27:42.267Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686353262267, + "wasDebited": true, + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/9/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353693526/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686353693526, + "acquirer_reference": "", + "verification_code": 1686353693526, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353693526", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1686353693526, + "date_created": "2023-06-09T23:34:53.526Z", + "date_last_updated": "2023-06-09T23:34:53.526Z", + "date_of_expiration": "2023-12-09T23:34:53.526Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686353693526, + "wasDebited": true, + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/9/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1686657739276/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686657739276, + "acquirer_reference": "", + "verification_code": 1686657739276, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1686657739276", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1686657739276, + "date_created": "2023-06-13T12:02:19.276Z", + "date_last_updated": "2023-06-13T12:02:19.276Z", + "date_of_expiration": "2024-06-13T12:02:19.276Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686657739276, + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/13/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363201264/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687363201264, + "acquirer_reference": "", + "verification_code": 1687363201264, + "net_received_amount": 0, + "total_paid_amount": 500000, + "overpaid_amount": 0, + "installment_amount": 500000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363201264", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 500000, + "total_amount": 500000, + "id": 1687363201264, + "date_created": "2023-06-21T16:00:01.264Z", + "date_last_updated": "2023-06-21T16:00:01.264Z", + "date_of_expiration": "2024-06-21T16:00:01.264Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687363201264, + "description": "Investimento de 500.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363301418/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687363301418, + "acquirer_reference": "", + "verification_code": 1687363301418, + "net_received_amount": 0, + "total_paid_amount": 1000000, + "overpaid_amount": 0, + "installment_amount": 1000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363301418", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000000, + "total_amount": 1000000, + "id": 1687363301418, + "date_created": "2023-06-21T16:01:41.418Z", + "date_last_updated": "2023-06-21T16:01:41.418Z", + "date_of_expiration": "2025-06-21T16:01:41.418Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687363301418, + "description": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1689804806407/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689804806407, + "acquirer_reference": "", + "verification_code": 1689804806407, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1689804806407", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1020, + "total_amount": 1020, + "id": 1689804806407, + "date_created": "2023-07-19T22:13:26.407Z", + "date_last_updated": "2023-07-19T22:13:26.407Z", + "date_of_expiration": "2023-07-19T22:13:26.407Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689804806407, + "wasDebited": true, + "description": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690414261722, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100000, + "installment_amount": 100000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1690414261722" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 100000, + "total_amount": 100000, + "id": 1690414261722, + "history_id": 1690414261722, + "date_created": "2023-07-26T23:31:01.722Z", + "date_last_updated": "2023-07-26T23:31:01.722Z", + "date_of_expiration": "2023-08-26T23:31:01.717Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 100.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/26/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719311, + "modified": 1700589719311 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693093011374, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 102000, + "installment_amount": 102000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693093011374" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 100000, + "total_amount": 100000, + "id": "1693093011374", + "history_id": "1693093011374", + "date_created": "2023-08-26T23:36:51.374Z", + "date_last_updated": "2023-08-26T23:36:51.374Z", + "date_of_expiration": "2023-08-26T23:36:51.374Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 100.000,00 IVIP com um rendimento de +2.000,00 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 3000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693173218030, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100000, + "installment_amount": 100000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693173218030" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 100000, + "total_amount": 97000, + "id": "1693173218030", + "history_id": "1693173218030", + "date_created": "2023-08-27T21:53:38.030Z", + "date_last_updated": "2023-09-04T21:32:36.578Z", + "date_of_expiration": "2023-08-27T21:53:38.030Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": "2023-09-04T21:32:36.578Z", + "money_release_date": "2023-09-04T21:32:36.578Z", + "money_release_status": "drawee", + "wasDebited": true, + "description": "Saque de 97.000,00 IVIP para a carteira 0x984b739d05a74462Ab9171EDF8Be5CDDa7fF8c26" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693228740965, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 800000, + "installment_amount": 800000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693228740965" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 800000, + "total_amount": 800000, + "id": "1693228740965", + "history_id": "1693228740965", + "date_created": "2023-08-28T13:19:00.965Z", + "date_last_updated": "2023-08-28T13:19:00.965Z", + "date_of_expiration": "2023-09-28T13:19:00.964Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 800.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/28/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695907162897, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 800000, + "installment_amount": 800000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1695907162897" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050149211466839150", + "payment_method": "staking", + "original_amount": 816000, + "total_amount": 816000, + "id": "1695907162897", + "history_id": "1695907162897", + "date_created": "2023-09-28T13:19:22.897Z", + "date_last_updated": "2023-09-28T13:19:22.897Z", + "date_of_expiration": "2023-09-28T13:19:22.897Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 800.000,00 IVIP com um rendimento de +16.000,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695925845472, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 80000, + "installment_amount": 80000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1695925845472" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "050149211466839150", + "payment_method": "staking", + "original_amount": 80000, + "total_amount": 80000, + "id": "1695925845472", + "history_id": "1695925845472", + "date_created": "2023-09-28T18:30:45.472Z", + "date_last_updated": "2023-09-28T18:30:45.472Z", + "date_of_expiration": "2023-10-28T18:30:45.420Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 80.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 28/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": "2023-09-28T18:35:16.598Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679096727973, + "dateValidity": 1679096727973, + "totalValue": 488.05285041642975, + "currencyType": "USD", + "balancesModificacao": "2023-10-14T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "48500.00000000", + "symbol": "IVIP", + "value": 7.28 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1678145412146, + "id": 1678145412146, + "date_created": "2023-03-06T23:30:12.146Z", + "date_last_updated": "2023-03-07T20:21:25.124Z", + "date_of_expiration": "2023-04-05T23:30:12.146Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-07T20:21:25.124Z", + "money_release_date": "2023-03-07T20:21:25.124Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0502.9485.5698.2423-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1678043796128, + "id": 1678043796128, + "date_created": "2023-03-05T19:16:36.128Z", + "date_last_updated": "2023-03-07T20:20:39.067Z", + "date_of_expiration": "2023-04-04T19:16:36.128Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-07T20:20:39.067Z", + "money_release_date": "2023-03-07T20:20:39.067Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0502.9485.5698.2423-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "history_id": 1677774543947, + "id": 1677774543947, + "date_created": "2023-03-02T16:29:03.947Z", + "date_last_updated": "2023-03-02T17:25:47.224Z", + "date_of_expiration": "2023-04-01T16:29:03.947Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-02T17:25:47.224Z", + "money_release_date": "2023-03-02T17:25:47.224Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0502.9485.5698.2423-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145303669/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678145303669, + "acquirer_reference": "", + "verification_code": 1678145303669, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145303669", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 14284655, + "total_amount": 14284655, + "id": 1678145303669, + "date_created": "2023-03-06T23:28:23.669Z", + "date_last_updated": "2023-03-06T23:28:23.669Z", + "date_of_expiration": "2023-03-06T23:28:23.669Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678145303669, + "description": "Compra de 14284655 IVIP por 2000 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1678220742550/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678220742550, + "acquirer_reference": "", + "verification_code": 1678220742550, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1678220742550", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 14195700, + "total_amount": 14195700, + "id": 1678220742550, + "date_created": "2023-03-07T20:25:42.550Z", + "date_last_updated": "2023-03-07T20:25:42.550Z", + "date_of_expiration": "2023-03-07T20:25:42.550Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678220742550, + "description": "Compra de 14195700 IVIP por 2000 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14038113, + "total_amount": 14038113, + "history_id": 1686128267183, + "id": 1686128267183, + "date_created": "2023-06-07T08:57:47.183Z", + "date_last_updated": "2023-07-07T23:13:02.648Z", + "date_of_expiration": "2023-06-07T08:57:47.183Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "IVIP", + "money_release_date": "2023-07-07T23:13:02.648Z", + "money_release_status": "rejected", + "description": "Saque de 14.038.113,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 28480355, + "total_amount": 28480355, + "history_id": 1686128970156, + "id": 1686128970156, + "date_created": "2023-06-07T09:09:30.156Z", + "date_last_updated": "2023-07-07T23:13:12.581Z", + "date_of_expiration": "2023-06-07T09:09:30.156Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "IVIP", + "money_release_date": "2023-07-07T23:13:12.581Z", + "money_release_status": "rejected", + "description": "Saque de 28.480.355,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190557366/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686190557366, + "acquirer_reference": "", + "verification_code": 1686190557366, + "net_received_amount": 0, + "total_paid_amount": 50000, + "overpaid_amount": 0, + "installment_amount": 50000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190557366", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 50000, + "total_amount": 50000, + "id": 1686190557366, + "date_created": "2023-06-08T02:15:57.366Z", + "date_last_updated": "2023-06-08T02:15:57.366Z", + "date_of_expiration": "2025-06-08T02:15:57.366Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686190557366, + "description": "Investimento de 50.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/7/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190633022/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686190633022, + "acquirer_reference": "", + "verification_code": 1686190633022, + "net_received_amount": 0, + "total_paid_amount": 30000, + "overpaid_amount": 0, + "installment_amount": 30000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190633022", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 30000, + "total_amount": 30000, + "id": 1686190633022, + "date_created": "2023-06-08T02:17:13.022Z", + "date_last_updated": "2023-06-08T02:17:13.022Z", + "date_of_expiration": "2024-06-08T02:17:13.022Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686190633022, + "description": "Investimento de 30.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/7/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190671429/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686190671429, + "acquirer_reference": "", + "verification_code": 1686190671429, + "net_received_amount": 0, + "total_paid_amount": 50000, + "overpaid_amount": 0, + "installment_amount": 50000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190671429", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 50000, + "total_amount": 50000, + "id": 1686190671429, + "date_created": "2023-06-08T02:17:51.429Z", + "date_last_updated": "2023-06-08T02:17:51.429Z", + "date_of_expiration": "2023-12-08T02:17:51.429Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686190671429, + "description": "Investimento de 50.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/7/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190710908/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686190710908, + "acquirer_reference": "", + "verification_code": 1686190710908, + "net_received_amount": 0, + "total_paid_amount": 30000, + "overpaid_amount": 0, + "installment_amount": 30000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190710908", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 30000, + "total_amount": 30000, + "id": 1686190710908, + "date_created": "2023-06-08T02:18:30.908Z", + "date_last_updated": "2023-06-08T02:18:30.908Z", + "date_of_expiration": "2023-07-08T02:18:30.908Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686190710908, + "description": "Investimento de 30.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/7/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1687472497935/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687472497935, + "acquirer_reference": "", + "verification_code": 1687472497935, + "net_received_amount": 0, + "total_paid_amount": 14524522, + "overpaid_amount": 0, + "installment_amount": 14524522, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1687472497935", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 14524522, + "total_amount": 14524522, + "id": 1687472497935, + "date_created": "2023-06-22T22:21:37.935Z", + "date_last_updated": "2023-06-22T22:21:37.935Z", + "date_of_expiration": "2025-06-22T22:21:37.935Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687472497935, + "description": "Investimento de 14.524.522,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/22/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 13795833, + "total_amount": 13795833, + "history_id": 1688575377865, + "id": 1688575377865, + "date_created": "2023-07-05T16:42:57.865Z", + "date_last_updated": "2023-07-07T23:13:24.088Z", + "date_of_expiration": "2023-07-05T16:42:57.865Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-07-07T23:13:24.088Z", + "money_release_date": "2023-07-07T23:13:24.088Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 13.795.833,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1689804799815/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689804799815, + "acquirer_reference": "", + "verification_code": 1689804799815, + "net_received_amount": 0, + "total_paid_amount": 30000, + "overpaid_amount": 0, + "installment_amount": 30000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1689804799815", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 30600, + "total_amount": 30600, + "id": 1689804799815, + "date_created": "2023-07-19T22:13:19.815Z", + "date_last_updated": "2023-07-19T22:13:19.815Z", + "date_of_expiration": "2023-07-19T22:13:19.815Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689804799815, + "wasDebited": true, + "description": "Resgate do investimento staking de 30.000,00 IVIP com um rendimento de +600,00 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690467644472, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 30600, + "installment_amount": 30600, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1690467644472" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 30600, + "total_amount": 30600, + "id": 1690467644472, + "history_id": 1690467644472, + "date_created": "2023-07-27T14:20:44.472Z", + "date_last_updated": "2023-07-27T14:20:44.472Z", + "date_of_expiration": "2023-08-27T14:20:44.468Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 30.600,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/27/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693147070930, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 31212, + "installment_amount": 31212, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1693147070930" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 30600, + "total_amount": 30600, + "id": "1693147070930", + "history_id": "1693147070930", + "date_created": "2023-08-27T14:37:50.930Z", + "date_last_updated": "2023-08-27T14:37:50.930Z", + "date_of_expiration": "2023-08-27T14:37:50.930Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 30.600,00 IVIP com um rendimento de +612,00 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693780247117, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1693780247117" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 2500, + "total_amount": 2500, + "id": "1693780247117", + "history_id": "1693780247117", + "date_created": "2023-09-03T22:30:47.117Z", + "date_last_updated": "2023-09-03T22:30:47.117Z", + "date_of_expiration": "2023-10-03T22:30:47.116Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 2.500,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696382633982, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696382633982" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050294855698242330", + "payment_method": "staking", + "original_amount": 2550, + "total_amount": 2550, + "id": "1696382633982", + "history_id": "1696382633982", + "date_created": "2023-10-04T01:23:53.982Z", + "date_last_updated": "2023-10-04T01:23:53.982Z", + "date_of_expiration": "2023-10-04T01:23:53.982Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384242905, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242905" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050294855698242330", + "payment_method": "staking", + "original_amount": 2550, + "total_amount": 2550, + "id": "1696384242905", + "history_id": "1696384242905", + "date_created": "2023-10-04T01:50:42.905Z", + "date_last_updated": "2023-10-04T01:50:42.905Z", + "date_of_expiration": "2023-10-04T01:50:42.905Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment", + "description": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384242925, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242925" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050294855698242330", + "payment_method": "staking", + "original_amount": 2550, + "total_amount": 2550, + "id": "1696384242925", + "history_id": "1696384242925", + "date_created": "2023-10-04T01:50:42.925Z", + "date_last_updated": "2023-10-04T01:50:42.925Z", + "date_of_expiration": "2023-10-04T01:50:42.925Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment", + "description": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384242931, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242931" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050294855698242330", + "payment_method": "staking", + "original_amount": 2550, + "total_amount": 2550, + "id": "1696384242931", + "history_id": "1696384242931", + "date_created": "2023-10-04T01:50:42.931Z", + "date_last_updated": "2023-10-04T01:50:42.931Z", + "date_of_expiration": "2023-10-04T01:50:42.931Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment", + "description": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384243125, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384243125" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050294855698242330", + "payment_method": "staking", + "original_amount": 2550, + "total_amount": 2550, + "id": "1696384243125", + "history_id": "1696384243125", + "date_created": "2023-10-04T01:50:43.125Z", + "date_last_updated": "2023-10-04T01:50:43.125Z", + "date_of_expiration": "2023-10-04T01:50:43.125Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment", + "description": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384243425, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384243425" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050294855698242330", + "payment_method": "staking", + "original_amount": 2550, + "total_amount": 2550, + "id": "1696384243425", + "history_id": "1696384243425", + "date_created": "2023-10-04T01:50:43.425Z", + "date_last_updated": "2023-10-04T01:50:43.425Z", + "date_of_expiration": "2023-10-04T01:50:43.425Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment", + "description": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384244783, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384244783" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050294855698242330", + "payment_method": "staking", + "original_amount": 2550, + "total_amount": 2550, + "id": "1696384244783", + "history_id": "1696384244783", + "date_created": "2023-10-04T01:50:44.783Z", + "date_last_updated": "2023-10-04T01:50:44.783Z", + "date_of_expiration": "2023-10-04T01:50:44.783Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment", + "description": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384244885, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384244885" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "050294855698242330", + "payment_method": "staking", + "original_amount": 2550, + "total_amount": 2550, + "id": "1696384244885", + "history_id": "1696384244885", + "date_created": "2023-10-04T01:50:44.885Z", + "date_last_updated": "2023-10-04T01:50:44.885Z", + "date_of_expiration": "2023-10-04T01:50:44.885Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment", + "description": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677774434896, + "dateValidity": 1678238494873, + "totalValue": 9.579933648427893, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050395970230084904", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696468517081, + "dateValidity": 1696468517276, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "812799.00000000", + "symbol": "IVIP", + "value": 263.24 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1678221951810, + "id": 1678221951810, + "date_created": "2023-03-07T20:45:51.810Z", + "date_last_updated": "2023-03-08T13:21:59.635Z", + "date_of_expiration": "2023-04-06T20:45:51.810Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-08T13:21:59.635Z", + "money_release_date": "2023-03-08T13:21:59.635Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0532.9875.7978.5992-90" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1679009072784, + "id": 1679009072784, + "date_created": "2023-03-16T23:24:32.784Z", + "date_last_updated": "2023-03-20T14:29:47.158Z", + "date_of_expiration": "2023-04-15T23:24:32.784Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-20T14:29:47.158Z", + "money_release_date": "2023-03-20T14:29:47.158Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0532.9875.7978.5992-90" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1679009122145, + "id": 1679009122145, + "date_created": "2023-03-16T23:25:22.145Z", + "date_last_updated": "2023-03-20T14:32:34.987Z", + "date_of_expiration": "2023-04-15T23:25:22.145Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-03-20T14:32:34.987Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0532.9875.7978.5992-90" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/history/1680059811857/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1680059811857, + "acquirer_reference": "", + "verification_code": 1680059811857, + "net_received_amount": 0, + "total_paid_amount": 150, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/history/1680059811857", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 812799, + "total_amount": 812799, + "id": 1680059811857, + "date_created": "2023-03-29T03:16:51.857Z", + "date_last_updated": "2023-03-29T03:16:51.857Z", + "date_of_expiration": "2023-03-29T03:16:51.857Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1680059811857, + "description": "Compra de 812.799,00 IVIP por 150,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 812799, + "total_amount": 812799, + "history_id": 1687793732463, + "id": 1687793732463, + "date_created": "2023-06-26T15:35:32.463Z", + "date_last_updated": "2023-06-26T15:35:32.463Z", + "date_of_expiration": "2023-06-26T15:35:32.463Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 812.799,00 IVIP para a carteira 0x76DD50e5E925D29D22251e5b2A71bBB9b5672254" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678221202102, + "dateValidity": 1679026523803, + "totalValue": 28.34, + "currencyType": "USD", + "balancesModificacao": 1689822000000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/054341335642486000/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "51023.00000000", + "symbol": "IVIP", + "value": 6.23 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 120, + "total_amount": 120, + "history_id": 1689173674893, + "id": 1689173674893, + "date_created": "2023-07-12T14:54:34.893Z", + "date_last_updated": "2023-07-12T16:57:39.550Z", + "date_of_expiration": "2023-08-11T14:54:34.893Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-12T16:57:39.550Z", + "money_release_date": "2023-07-12T16:57:39.550Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 120,00 para a carteira iVip 0543.4133.5642.4860-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/054341335642486000/history/1689182033050/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689182033050, + "acquirer_reference": "", + "verification_code": 1689182033050, + "net_received_amount": 0, + "total_paid_amount": 120, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/054341335642486000/history/1689182033050", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 51023, + "total_amount": 51023, + "id": 1689182033050, + "date_created": "2023-07-12T17:13:53.050Z", + "date_last_updated": "2023-07-12T17:13:53.050Z", + "date_of_expiration": "2023-07-12T17:13:53.050Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689182033050, + "description": "Compra de 51.023,00 IVIP por 120,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/054341335642486000/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/054341335642486000", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689173582935, + "dateValidity": 1689173582935, + "totalValue": 24.77, + "currencyType": "USD", + "balancesModificacao": "2023-10-10T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-11T02:45:06.134Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697078706134", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 99635.8518, + "installment_amount": 99635.8518, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697078706134" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "055644012114111740", + "payment_method": "whatsapp", + "original_amount": 99635.8518, + "total_amount": 99635.8518, + "id": "1697078706134", + "history_id": "1697078706134", + "date_created": "2023-10-12T02:45:06.134Z", + "date_last_updated": "2023-10-12T13:47:23.226Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "date_approved": "2023-10-12T13:47:23.226Z", + "money_release_date": "2023-10-12T13:47:23.226Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 99.635,85 IVIP para a carteira iVip 0556.4401.2114.1117-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-11T14:06:48.666Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697119608666", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 25, + "installment_amount": 25, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697119608666" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "055644012114111740", + "payment_method": "whatsapp", + "original_amount": 25, + "total_amount": 25, + "id": "1697119608666", + "history_id": "1697119608666", + "date_created": "2023-10-12T14:06:48.666Z", + "date_last_updated": "2023-10-12T14:33:43.741Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-10-12T14:33:43.741Z", + "money_release_date": "2023-10-12T14:33:43.741Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 25,00 BRL para a carteira iVip 0556.4401.2114.1117-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/history/1697122378430/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697122378430", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 25, + "installment_amount": 25, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697122378430" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/history/1697122378430", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "055644012114111740", + "payment_method": "swap", + "original_amount": 46978, + "total_amount": 46978, + "id": "1697122378430", + "history_id": "1697122378430", + "date_created": "2023-10-12T14:52:58.430Z", + "date_last_updated": "2023-10-12T14:52:58.430Z", + "date_of_expiration": "2023-10-12T14:52:58.430Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 46.978,00 IVIP por 25,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740", + "content": { + "type": 1, + "value": { + "dataModificacao": 1697078617873, + "dateValidity": 1697078617917, + "currencyType": "USD", + "balancesModificacao": "2023-10-12T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "5352934.00000000", + "symbol": "IVIP", + "value": 720.46 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 800, + "total_amount": 800, + "history_id": 1684093509797, + "id": 1684093509797, + "date_created": "2023-05-14T19:45:09.797Z", + "date_last_updated": "2023-05-14T19:50:33.853Z", + "date_of_expiration": "2023-06-13T19:45:09.797Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-14T19:50:33.853Z", + "money_release_date": "2023-05-14T19:50:33.853Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 800,00 para a carteira iVip 0565.4676.9240.3558-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 299, + "total_amount": 299, + "history_id": 1684583054149, + "id": 1684583054149, + "date_created": "2023-05-20T11:44:14.149Z", + "date_last_updated": "2023-05-20T15:08:23.300Z", + "date_of_expiration": "2023-06-19T11:44:14.149Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-20T15:08:23.300Z", + "money_release_date": "2023-05-20T15:08:23.300Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 299,00 para a carteira iVip 0565.4676.9240.3558-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1684624980630/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624980630, + "acquirer_reference": "", + "verification_code": 1684624980630, + "net_received_amount": 0, + "total_paid_amount": 1099, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1684624980630", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 5352934, + "total_amount": 5352934, + "id": 1684624980630, + "date_created": "2023-05-20T23:23:00.630Z", + "date_last_updated": "2023-05-20T23:23:00.630Z", + "date_of_expiration": "2023-05-20T23:23:00.630Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624980630, + "description": "Compra de 5.352.934,00 IVIP por 1.099,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5352934, + "total_amount": 5352934, + "history_id": 1689104056845, + "id": 1689104056845, + "date_created": "2023-07-11T19:34:16.845Z", + "date_last_updated": "2023-07-11T19:34:16.845Z", + "date_of_expiration": "2023-07-11T19:34:16.845Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5352934, + "total_amount": 5352934, + "history_id": 1689104143830, + "id": 1689104143830, + "date_created": "2023-07-11T19:35:43.830Z", + "date_last_updated": "2023-07-11T19:35:43.830Z", + "date_of_expiration": "2023-07-11T19:35:43.830Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5352934, + "total_amount": 5352934, + "history_id": 1689646587803, + "id": 1689646587803, + "date_created": "2023-07-18T02:16:27.803Z", + "date_last_updated": "2023-07-18T02:16:27.803Z", + "date_of_expiration": "2023-07-18T02:16:27.803Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 160588.02 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692620472334, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5352934, + "installment_amount": 5352934, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/056546769240355840/history/1692620472334" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5352934, + "total_amount": 5192345.98, + "id": 1692620472334, + "history_id": 1692620472334, + "date_created": "2023-08-21T12:21:12.334Z", + "date_last_updated": "2023-08-21T12:21:55.386Z", + "date_of_expiration": "2023-08-21T12:21:12.334Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": "2023-08-21T12:21:55.386Z", + "money_release_date": "2023-08-21T12:21:55.386Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 5.192.345,98 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": "2023-08-18T18:47:04.311Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678095088185, + "dateValidity": 1678245807542, + "totalValue": 218.81, + "currencyType": "USD", + "balancesModificacao": "2023-08-21T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057251085848447400", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677956784862, + "dateValidity": 1678334303407, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "561917.00000000", + "symbol": "IVIP", + "value": 59.89 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1679346644168, + "id": 1679346644168, + "date_created": "2023-03-20T21:10:44.168Z", + "date_last_updated": "2023-03-20T21:15:55.591Z", + "date_of_expiration": "2023-04-19T21:10:44.168Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-20T21:15:55.591Z", + "money_release_date": "2023-03-20T21:15:55.591Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1679707462559, + "id": 1679707462559, + "date_created": "2023-03-25T01:24:22.559Z", + "date_last_updated": "2023-03-25T01:45:37.072Z", + "date_of_expiration": "2023-04-24T01:24:22.559Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-25T01:45:37.072Z", + "money_release_date": "2023-03-25T01:45:37.072Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1679871671858/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679871671858, + "acquirer_reference": "", + "verification_code": 1679871671858, + "net_received_amount": 0, + "total_paid_amount": 40, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1679871671858", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 213025, + "total_amount": 213025, + "id": 1679871671858, + "date_created": "2023-03-26T23:01:11.858Z", + "date_last_updated": "2023-03-26T23:01:11.858Z", + "date_of_expiration": "2023-03-26T23:01:11.858Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679871671858, + "description": "Compra de 213.025,00 IVIP por 40,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689132225947, + "id": 1689132225947, + "date_created": "2023-07-12T03:23:45.947Z", + "date_last_updated": "2023-07-12T03:23:45.947Z", + "date_of_expiration": "2023-08-11T03:23:45.947Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1689175940633, + "id": 1689175940633, + "date_created": "2023-07-12T15:32:20.633Z", + "date_last_updated": "2023-07-12T15:32:20.633Z", + "date_of_expiration": "2023-08-11T15:32:20.633Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1689367674517, + "id": 1689367674517, + "date_created": "2023-07-14T20:47:54.517Z", + "date_last_updated": "2023-07-14T20:47:54.517Z", + "date_of_expiration": "2023-08-13T20:47:54.517Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1689622072746, + "id": 1689622072746, + "date_created": "2023-07-17T19:27:52.746Z", + "date_last_updated": "2023-07-17T19:33:11.229Z", + "date_of_expiration": "2023-08-16T19:27:52.746Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-17T19:33:11.229Z", + "money_release_date": "2023-07-17T19:33:11.229Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689623842206/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689623842206, + "acquirer_reference": "", + "verification_code": 1689623842206, + "net_received_amount": 0, + "total_paid_amount": 50, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689623842206", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 32205, + "total_amount": 32205, + "id": 1689623842206, + "date_created": "2023-07-17T19:57:22.206Z", + "date_last_updated": "2023-07-17T19:57:22.206Z", + "date_of_expiration": "2023-07-17T19:57:22.206Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689623842206, + "description": "Compra de 32.205,00 IVIP por 50,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-20T21:23:50.901Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1689974630901, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1689974630901" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1689974630901, + "history_id": 1689974630901, + "date_created": "2023-07-21T21:23:50.901Z", + "date_last_updated": "2023-07-21T21:23:50.901Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-24T00:44:32.747Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690245872747, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1690245872747" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1690245872747, + "history_id": 1690245872747, + "date_created": "2023-07-25T00:44:32.747Z", + "date_last_updated": "2023-07-25T18:21:16.564Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-07-25T18:21:16.564Z", + "money_release_date": "2023-07-25T18:21:16.564Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1690318679149/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1690318679149, + "acquirer_reference": "", + "verification_code": 1690318679149, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1690318679149", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 16406, + "total_amount": 16406, + "id": 1690318679149, + "date_created": "2023-07-25T20:57:59.149Z", + "date_last_updated": "2023-07-25T20:57:59.149Z", + "date_of_expiration": "2023-07-25T20:57:59.149Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1690318679149, + "description": "Compra de 16.406,00 IVIP por 20,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-18T19:33:06.359Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692473586359, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692473586359" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1692473586359, + "history_id": 1692473586359, + "date_created": "2023-08-19T19:33:06.359Z", + "date_last_updated": "2023-08-19T20:22:50.838Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-19T20:22:50.838Z", + "money_release_date": "2023-08-19T20:22:50.838Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692476742525/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692476742525, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692476742525" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692476742525", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 32045, + "total_amount": 32045, + "id": 1692476742525, + "history_id": 1692476742525, + "date_created": "2023-08-19T20:25:42.525Z", + "date_last_updated": "2023-08-19T20:25:42.525Z", + "date_of_expiration": "2023-08-19T20:25:42.525Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 32.045,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-24T20:53:30.545Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692996810545, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692996810545" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1692996810545", + "history_id": "1692996810545", + "date_created": "2023-08-25T20:53:30.545Z", + "date_last_updated": "2023-08-25T20:53:30.545Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-24T20:54:04.899Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692996844899, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692996844899" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1692996844899", + "history_id": "1692996844899", + "date_created": "2023-08-25T20:54:04.899Z", + "date_last_updated": "2023-08-25T21:45:21.567Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-25T21:45:21.567Z", + "money_release_date": "2023-08-25T21:45:21.567Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693000377717/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693000377717, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693000377717" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693000377717", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 40254, + "total_amount": 40254, + "id": "1693000377717", + "history_id": "1693000377717", + "date_created": "2023-08-25T21:52:57.717Z", + "date_last_updated": "2023-08-25T21:52:57.717Z", + "date_of_expiration": "2023-08-25T21:52:57.717Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 40.254,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-01T21:57:07.916Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693605427916, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693605427916" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1693605427916", + "history_id": "1693605427916", + "date_created": "2023-09-01T21:57:07.916Z", + "date_last_updated": "2023-09-01T21:57:07.916Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-01T22:02:42.263Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693605762263, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693605762263" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1693605762263", + "history_id": "1693605762263", + "date_created": "2023-09-01T22:02:42.263Z", + "date_last_updated": "2023-09-01T22:07:13.196Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-09-01T22:07:13.196Z", + "money_release_date": "2023-09-01T22:07:13.196Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693606719867/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693606719867, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693606719867" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693606719867", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 33429, + "total_amount": 33429, + "id": "1693606719867", + "history_id": "1693606719867", + "date_created": "2023-09-01T22:18:39.867Z", + "date_last_updated": "2023-09-01T22:18:39.867Z", + "date_of_expiration": "2023-09-01T22:18:39.867Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 33.429,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-14T01:28:42.996Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694654922996, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694654922996" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1694654922996", + "history_id": "1694654922996", + "date_created": "2023-09-14T01:28:42.996Z", + "date_last_updated": "2023-09-14T01:41:00.738Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-09-14T01:41:00.738Z", + "money_release_date": "2023-09-14T01:41:00.738Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-14T21:52:06.075Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694728326075, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694728326075" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": "1694728326075", + "history_id": "1694728326075", + "date_created": "2023-09-14T21:52:06.075Z", + "date_last_updated": "2023-09-14T22:42:22.567Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-09-14T22:42:22.567Z", + "money_release_date": "2023-09-14T22:42:22.567Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 100,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-14T22:00:59.603Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694728859604, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694728859604" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": "1694728859604", + "history_id": "1694728859604", + "date_created": "2023-09-14T22:00:59.604Z", + "date_last_updated": "2023-09-14T22:00:59.604Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 100,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694731526035/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694731526035, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694731526035" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694731526035", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 121808, + "total_amount": 121808, + "id": "1694731526035", + "history_id": "1694731526035", + "date_created": "2023-09-14T22:45:26.035Z", + "date_last_updated": "2023-09-14T22:45:26.035Z", + "date_of_expiration": "2023-09-14T22:45:26.035Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 121.808,00 IVIP por 100,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694793493188/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694793493188, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694793493188" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694793493188", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 25384, + "total_amount": 25384, + "id": "1694793493188", + "history_id": "1694793493188", + "date_created": "2023-09-15T15:58:13.188Z", + "date_last_updated": "2023-09-15T15:58:13.188Z", + "date_of_expiration": "2023-09-15T15:58:13.188Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 25.384,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-17T15:55:09.290Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694966109291, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694966109291" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1694966109291", + "history_id": "1694966109291", + "date_created": "2023-09-17T15:55:09.291Z", + "date_last_updated": "2023-09-17T17:58:17.859Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-09-17T17:58:17.859Z", + "money_release_date": "2023-09-17T17:58:17.859Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694988703973/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694988703973, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694988703973" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694988703973", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 25302, + "total_amount": 25302, + "id": "1694988703973", + "history_id": "1694988703973", + "date_created": "2023-09-17T22:11:43.973Z", + "date_last_updated": "2023-09-17T22:11:43.973Z", + "date_of_expiration": "2023-09-17T22:11:43.973Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 25.302,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-04T15:33:48.284Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696520028285, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1696520028285" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "057751007037449620", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1696520028285", + "history_id": "1696520028285", + "date_created": "2023-10-05T15:33:48.285Z", + "date_last_updated": "2023-10-05T15:44:10.654Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-10-05T15:44:10.654Z", + "money_release_date": "2023-10-05T15:44:10.654Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520773436/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696520773436, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1696520773436" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520773436", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "057751007037449620", + "payment_method": "swap", + "original_amount": 22059, + "total_amount": 22059, + "id": "1696520773436", + "history_id": "1696520773436", + "date_created": "2023-10-05T15:46:13.436Z", + "date_last_updated": "2023-10-05T15:46:13.436Z", + "date_of_expiration": "2023-10-05T15:46:13.436Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 22.059,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719312, + "modified": 1700589719312 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": "2023-10-01T15:23:13.593Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679345183302, + "dateValidity": 1679345183302, + "totalValue": 17.88, + "currencyType": "USD", + "balancesModificacao": "2023-10-15T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "-14612195.00000000", + "symbol": "IVIP", + "value": -15912.37 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 3000, + "total_amount": 3000, + "history_id": 1683732218933, + "id": 1683732218933, + "date_created": "2023-05-10T15:23:38.933Z", + "date_last_updated": "2023-05-10T15:38:13.240Z", + "date_of_expiration": "2023-06-09T15:23:38.933Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-10T15:38:13.240Z", + "money_release_date": "2023-05-10T15:38:13.240Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0583.5908.1725.8996-56" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1684627186163/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684627186163, + "acquirer_reference": "", + "verification_code": 1684627186163, + "net_received_amount": 0, + "total_paid_amount": 3000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1684627186163", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 14612195, + "total_amount": 14612195, + "id": 1684627186163, + "date_created": "2023-05-20T23:59:46.163Z", + "date_last_updated": "2023-05-20T23:59:46.163Z", + "date_of_expiration": "2023-05-20T23:59:46.163Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684627186163, + "description": "Compra de 14.612.195,00 IVIP por 3.000,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 438365.85 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692302387863, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 14612195, + "installment_amount": 14612195, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/058359081725899656/history/1692302387863" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14612195, + "total_amount": 14173829.15, + "id": 1692302387863, + "history_id": 1692302387863, + "date_created": "2023-08-17T19:59:47.863Z", + "date_last_updated": "2023-08-25T14:20:52.038Z", + "date_of_expiration": "2023-08-17T19:59:47.863Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": "2023-08-25T14:20:52.038Z", + "money_release_date": "2023-08-25T14:20:52.038Z", + "money_release_status": "drawee", + "wasDebited": true, + "description": "Saque de 14.173.829,15 IVIP para a carteira 0x5cD8D20fc31429974550e7e677C493554c46a73A" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 438365.85 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692441112310, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 14612195, + "installment_amount": 14612195, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/058359081725899656/history/1692441112310" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14612195, + "total_amount": 14173829.15, + "id": 1692441112310, + "history_id": 1692441112310, + "date_created": "2023-08-19T10:31:52.310Z", + "date_last_updated": "2023-08-25T14:12:05.453Z", + "date_of_expiration": "2023-08-19T10:31:52.310Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": "2023-08-25T14:12:05.453Z", + "money_release_date": "2023-08-25T14:12:05.453Z", + "money_release_status": "drawee", + "wasDebited": true, + "description": "Saque de 14.173.829,15 IVIP para a carteira 0x5cD8D20fc31429974550e7e677C493554c46a73A" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656", + "content": { + "type": 1, + "value": { + "dataModificacao": 1683669489240, + "dateValidity": 1683669489240, + "totalValue": 600.6, + "currencyType": "USD", + "balancesModificacao": "2023-10-01T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/059914438431437400/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/059914438431437400", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684637987083, + "dateValidity": 1684637987083, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060044476007192536/balances/BRL", + "content": { + "type": 1, + "value": { + "symbol": "BRL", + "available": "30.00000000", + "value": 6.027 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 30, + "total_amount": 30, + "history_id": 1684092073649, + "id": 1684092073649, + "date_created": "2023-05-14T19:21:13.649Z", + "date_last_updated": "2023-05-14T19:24:42.901Z", + "date_of_expiration": "2023-06-13T19:21:13.649Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-14T19:24:42.901Z", + "money_release_date": "2023-05-14T19:24:42.901Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 30,00 para a carteira iVip 0600.4447.6007.1925-36" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060044476007192536/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060044476007192536", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684091907959, + "dateValidity": 1684091907959, + "totalValue": 6.03, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "IVIP", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 30, + "total_amount": 30, + "history_id": 1684104224358, + "id": 1684104224358, + "date_created": "2023-05-14T22:43:44.358Z", + "date_last_updated": "2023-05-14T22:51:50.880Z", + "date_of_expiration": "2023-06-13T22:43:44.358Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-14T22:51:50.880Z", + "money_release_date": "2023-05-14T22:51:50.880Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 30,00 para a carteira iVip 0602.8179.3071.1252-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1684702707589/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684702707589, + "acquirer_reference": "", + "verification_code": 1684702707589, + "net_received_amount": 0, + "total_paid_amount": 30, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1684702707589", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 145829, + "total_amount": 145829, + "id": 1684702707589, + "date_created": "2023-05-21T20:58:27.589Z", + "date_last_updated": "2023-05-21T20:58:27.589Z", + "date_of_expiration": "2023-05-21T20:58:27.589Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684702707589, + "description": "Compra de 145.829,00 IVIP por 30,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1685061340656, + "id": 1685061340656, + "date_created": "2023-05-26T00:35:40.656Z", + "date_last_updated": "2023-05-26T00:35:40.656Z", + "date_of_expiration": "2023-06-25T00:35:40.656Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0602.8179.3071.1252-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1055, + "total_amount": 1055, + "history_id": 1685664745809, + "id": 1685664745809, + "date_created": "2023-06-02T00:12:25.809Z", + "date_last_updated": "2023-06-02T17:34:44.727Z", + "date_of_expiration": "2023-07-02T00:12:25.809Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-06-02T17:34:44.727Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 1.055,00 para a carteira iVip 0602.8179.3071.1252-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690250551090, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 145829, + "installment_amount": 145829, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/060281793071125250/history/1690250551090" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 145829, + "total_amount": 145829, + "id": 1690250551090, + "history_id": 1690250551090, + "date_created": "2023-07-25T02:02:31.090Z", + "date_last_updated": "2023-07-25T02:02:31.090Z", + "date_of_expiration": "2023-07-25T02:02:31.090Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment", + "description": "Saque de 145.829,00 IVIP para a carteira 0xD99D89C01D8F4F0809a32D3916CbC94331E7b87e" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690380108963, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 145829, + "installment_amount": 145829, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/060281793071125250/history/1690380108963" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 145829, + "total_amount": 145829, + "id": 1690380108963, + "history_id": 1690380108963, + "date_created": "2023-07-26T14:01:48.963Z", + "date_last_updated": "2023-07-26T17:31:37.340Z", + "date_of_expiration": "2023-07-26T14:01:48.963Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": "2023-07-26T17:31:37.340Z", + "money_release_date": "2023-07-26T17:31:37.340Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 145.829,00 IVIP para a carteira 0xD99D89C01D8F4F0809a32D3916CbC94331E7b87e" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684104139226, + "dateValidity": 1684104139226, + "totalValue": 6.02, + "currencyType": "USD", + "balancesModificacao": "2023-08-26T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "2596003.86000000", + "symbol": "IVIP", + "value": 270.012 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1800, + "total_amount": 1800, + "history_id": 1679009450729, + "id": 1679009450729, + "date_created": "2023-03-16T23:30:50.729Z", + "date_last_updated": "2023-03-16T23:32:58.413Z", + "date_of_expiration": "2023-04-15T23:30:50.729Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-16T23:32:58.413Z", + "money_release_date": "2023-03-16T23:32:58.413Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.800,00 para a carteira iVip 0606.0636.6606.7580-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1679267499015/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679267499015, + "acquirer_reference": "", + "verification_code": 1679267499015, + "net_received_amount": 0, + "total_paid_amount": 1800, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1679267499015", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 10484307, + "total_amount": 10484307, + "id": 1679267499015, + "date_created": "2023-03-19T23:11:39.015Z", + "date_last_updated": "2023-03-19T23:11:39.015Z", + "date_of_expiration": "2023-03-19T23:11:39.015Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679267499015, + "description": "Compra de 10484307 IVIP por 1800 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476464326/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688476464326, + "acquirer_reference": "", + "verification_code": 1688476464326, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476464326", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1688476464326, + "date_created": "2023-07-04T13:14:24.326Z", + "date_last_updated": "2023-07-04T13:14:24.326Z", + "date_of_expiration": "2024-07-04T13:14:24.326Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688476464326, + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/4/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476478538/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688476478538, + "acquirer_reference": "", + "verification_code": 1688476478538, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476478538", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1688476478538, + "date_created": "2023-07-04T13:14:38.538Z", + "date_last_updated": "2023-07-04T13:14:38.538Z", + "date_of_expiration": "2025-07-04T13:14:38.538Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688476478538, + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/4/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693784335259, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5684843, + "installment_amount": 5684843, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1693784335259" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 5684843, + "total_amount": 5684843, + "id": "1693784335259", + "history_id": "1693784335259", + "date_created": "2023-09-03T23:38:55.259Z", + "date_last_updated": "2023-09-03T23:38:55.259Z", + "date_of_expiration": "2023-10-03T23:38:55.258Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 5.684.843,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384249715, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5684843, + "installment_amount": 5684843, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384249715" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "060606366606758000", + "payment_method": "staking", + "original_amount": 5798539.86, + "total_amount": 5798539.86, + "id": "1696384249715", + "history_id": "1696384249715", + "date_created": "2023-10-04T01:50:49.715Z", + "date_last_updated": "2023-10-04T01:50:49.715Z", + "date_of_expiration": "2023-10-04T01:50:49.715Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384254400, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5684843, + "installment_amount": 5684843, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384254400" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "060606366606758000", + "payment_method": "staking", + "original_amount": 5798539.86, + "total_amount": 5798539.86, + "id": "1696384254400", + "history_id": "1696384254400", + "date_created": "2023-10-04T01:50:54.400Z", + "date_last_updated": "2023-10-04T01:50:54.400Z", + "date_of_expiration": "2023-10-04T01:50:54.400Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment", + "description": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384253628, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5684843, + "installment_amount": 5684843, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384253628" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "060606366606758000", + "payment_method": "staking", + "original_amount": 5798539.86, + "total_amount": 5798539.86, + "id": "1696384253628", + "history_id": "1696384253628", + "date_created": "2023-10-04T01:50:53.628Z", + "date_last_updated": "2023-10-04T01:50:53.628Z", + "date_of_expiration": "2023-10-04T01:50:53.628Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment", + "description": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696457810654, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696457810654" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "060606366606758000", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": "1696457810654", + "history_id": "1696457810654", + "date_created": "2023-10-04T22:16:50.654Z", + "date_last_updated": "2023-10-04T22:16:50.654Z", + "date_of_expiration": "2023-11-04T22:16:50.615Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679008860926, + "dateValidity": 1679023260971, + "totalValue": 563.3215233209353, + "currencyType": "USD", + "balancesModificacao": "2023-10-15T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/BTC", + "content": { + "type": 1, + "value": { + "symbol": "BTC", + "value": 0.12708406600000002, + "available": "0.00000509" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/BNB", + "content": { + "type": 1, + "value": { + "symbol": "BNB", + "value": 0.0088529947, + "available": "0.00002689" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/BUSD", + "content": { + "type": 1, + "value": { + "symbol": "BUSD", + "value": 0.032112, + "available": "0.03211200" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/KAVA", + "content": { + "type": 1, + "value": { + "symbol": "KAVA", + "value": 1.4510568362399998, + "available": "1.41843288" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/BRL", + "content": { + "type": 1, + "value": { + "symbol": "BRL", + "value": 0.145340815, + "available": "0.76697000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/IDEX", + "content": { + "type": 1, + "value": { + "symbol": "IDEX", + "value": 0.0002743, + "available": "0.00500000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/NFT", + "content": { + "type": 1, + "value": { + "symbol": "NFT", + "value": 0.15272504798763, + "available": "372500.117043" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/LUNC", + "content": { + "type": 1, + "value": { + "symbol": "LUNC", + "value": 7.524e-8, + "available": "0.00060000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/GFT", + "content": { + "type": 1, + "value": { + "symbol": "GFT", + "value": 0.001235, + "available": "0.10000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678997573060, + "dateValidity": 1679015562550, + "totalValue": 1.919, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "1808506.00000000", + "symbol": "IVIP", + "value": 279.32 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-01T16:40:33.996Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690994433997, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1690994433997" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "id": 1690994433997, + "history_id": 1690994433997, + "date_created": "2023-08-02T16:40:33.997Z", + "date_last_updated": "2023-08-02T20:48:32.957Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-02T20:48:32.957Z", + "money_release_date": "2023-08-02T20:48:32.957Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 1.000,00 para a carteira iVip 0625.7521.4502.4773-84" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691064347943/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691064347943, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691064347943" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691064347943", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 207673, + "total_amount": 207673, + "id": 1691064347943, + "history_id": 1691064347943, + "date_created": "2023-08-03T12:05:47.943Z", + "date_last_updated": "2023-08-03T12:05:47.943Z", + "date_of_expiration": "2023-08-03T12:05:47.943Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 207.673,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691234903050/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691234903050, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691234903050" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691234903050", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 292108, + "total_amount": 292108, + "id": 1691234903050, + "history_id": 1691234903050, + "date_created": "2023-08-05T11:28:23.050Z", + "date_last_updated": "2023-08-05T11:28:23.050Z", + "date_of_expiration": "2023-08-05T11:28:23.050Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 292.108,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691237670718/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691237670718, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691237670718" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691237670718", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 293284, + "total_amount": 293284, + "id": 1691237670718, + "history_id": 1691237670718, + "date_created": "2023-08-05T12:14:30.718Z", + "date_last_updated": "2023-08-05T12:14:30.718Z", + "date_of_expiration": "2023-08-05T12:14:30.718Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 293.284,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691454318499/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691454318499, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691454318499" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691454318499", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 327037, + "total_amount": 327037, + "id": 1691454318499, + "history_id": 1691454318499, + "date_created": "2023-08-08T00:25:18.499Z", + "date_last_updated": "2023-08-08T00:25:18.499Z", + "date_of_expiration": "2023-08-08T00:25:18.499Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 327.037,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-07T11:45:10.176Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691495110179, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691495110179" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "id": 1691495110179, + "history_id": 1691495110179, + "date_created": "2023-08-08T11:45:10.179Z", + "date_last_updated": "2023-08-08T13:05:51.775Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-08T13:05:51.775Z", + "money_release_date": "2023-08-08T13:05:51.775Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 1.000,00 para a carteira iVip 0625.7521.4502.4773-84" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691500327136/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691500327136, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691500327136" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691500327136", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 332596, + "total_amount": 332596, + "id": 1691500327136, + "history_id": 1691500327136, + "date_created": "2023-08-08T13:12:07.136Z", + "date_last_updated": "2023-08-08T13:12:07.136Z", + "date_of_expiration": "2023-08-08T13:12:07.136Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 332.596,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691711802306/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691711802306, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691711802306" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691711802306", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 372254, + "total_amount": 372254, + "id": 1691711802306, + "history_id": 1691711802306, + "date_created": "2023-08-10T23:56:42.306Z", + "date_last_updated": "2023-08-10T23:56:42.306Z", + "date_of_expiration": "2023-08-10T23:56:42.306Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 372.254,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691848017758/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691848017758, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691848017758" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691848017758", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 378088, + "total_amount": 378088, + "id": 1691848017758, + "history_id": 1691848017758, + "date_created": "2023-08-12T13:46:57.758Z", + "date_last_updated": "2023-08-12T13:46:57.758Z", + "date_of_expiration": "2023-08-12T13:46:57.758Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 378.088,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692027842104/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692027842104, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692027842104" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692027842104", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 456006, + "total_amount": 456006, + "id": 1692027842104, + "history_id": 1692027842104, + "date_created": "2023-08-14T15:44:02.104Z", + "date_last_updated": "2023-08-14T15:44:02.104Z", + "date_of_expiration": "2023-08-14T15:44:02.104Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 456.006,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692250715020/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692250715020, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692250715020" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692250715020", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 475181, + "total_amount": 475181, + "id": 1692250715020, + "history_id": 1692250715020, + "date_created": "2023-08-17T05:38:35.020Z", + "date_last_updated": "2023-08-17T05:38:35.020Z", + "date_of_expiration": "2023-08-17T05:38:35.020Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 475.181,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-18T23:21:10.157Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692487270158, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1500, + "installment_amount": 1500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692487270158" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "id": 1692487270158, + "history_id": 1692487270158, + "date_created": "2023-08-19T23:21:10.158Z", + "date_last_updated": "2023-08-19T23:21:10.158Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-18T23:26:18.184Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692487578184, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1500, + "installment_amount": 1500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692487578184" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "id": 1692487578184, + "history_id": 1692487578184, + "date_created": "2023-08-19T23:26:18.184Z", + "date_last_updated": "2023-08-19T23:26:18.184Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692488711638/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692488711638, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692488711638" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692488711638", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 328542, + "total_amount": 328542, + "id": 1692488711638, + "history_id": 1692488711638, + "date_created": "2023-08-19T23:45:11.638Z", + "date_last_updated": "2023-08-19T23:45:11.638Z", + "date_of_expiration": "2023-08-19T23:45:11.638Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 328.542,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-20T20:02:44.836Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692648164836, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1500, + "installment_amount": 1500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692648164836" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "id": 1692648164836, + "history_id": 1692648164836, + "date_created": "2023-08-21T20:02:44.836Z", + "date_last_updated": "2023-08-22T01:03:51.441Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-22T01:03:51.441Z", + "money_release_date": "2023-08-22T01:03:51.441Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666772551/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692666772551, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692666772551" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666772551", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 285329, + "total_amount": 285329, + "id": "1692666772551", + "history_id": "1692666772551", + "date_created": "2023-08-22T01:12:52.551Z", + "date_last_updated": "2023-08-22T01:12:52.551Z", + "date_of_expiration": "2023-08-22T01:12:52.551Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 285.329,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666803752/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692666803752, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692666803752" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666803752", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 285329, + "total_amount": 285329, + "id": "1692666803752", + "history_id": "1692666803752", + "date_created": "2023-08-22T01:13:23.752Z", + "date_last_updated": "2023-08-22T01:13:23.752Z", + "date_of_expiration": "2023-08-22T01:13:23.752Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 285.329,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692730130844/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692730130844, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200, + "installment_amount": 200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692730130844" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692730130844", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 282682, + "total_amount": 282682, + "id": "1692730130844", + "history_id": "1692730130844", + "date_created": "2023-08-22T18:48:50.844Z", + "date_last_updated": "2023-08-22T18:48:50.844Z", + "date_of_expiration": "2023-08-22T18:48:50.844Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 282.682,00 IVIP por 200,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692751123570/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692751123570, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 400, + "installment_amount": 400, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692751123570" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692751123570", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 526629, + "total_amount": 526629, + "id": "1692751123570", + "history_id": "1692751123570", + "date_created": "2023-08-23T00:38:43.570Z", + "date_last_updated": "2023-08-23T00:38:43.570Z", + "date_of_expiration": "2023-08-23T00:38:43.570Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 526.629,00 IVIP por 400,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692814492618/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692814492618, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 500, + "installment_amount": 500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692814492618" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692814492618", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 614430, + "total_amount": 614430, + "id": "1692814492618", + "history_id": "1692814492618", + "date_created": "2023-08-23T18:14:52.618Z", + "date_last_updated": "2023-08-23T18:14:52.618Z", + "date_of_expiration": "2023-08-23T18:14:52.618Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 614.430,00 IVIP por 500,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-14T15:33:42.264Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694705622264, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2000, + "installment_amount": 2000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1694705622264" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "id": "1694705622264", + "history_id": "1694705622264", + "date_created": "2023-09-14T15:33:42.264Z", + "date_last_updated": "2023-09-14T18:38:17.493Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-09-14T18:38:17.493Z", + "money_release_date": "2023-09-14T18:38:17.493Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0625.7521.4502.4773-84" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1694719090426/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694719090426, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2000, + "installment_amount": 2000, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1694719090426" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1694719090426", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 2446285, + "total_amount": 2446285, + "id": "1694719090426", + "history_id": "1694719090426", + "date_created": "2023-09-14T19:18:10.426Z", + "date_last_updated": "2023-09-14T19:18:10.426Z", + "date_of_expiration": "2023-09-14T19:18:10.426Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 2.446.285,00 IVIP por 2.000,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695328321082, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1136670, + "installment_amount": 1136670, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1695328321082" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1136670, + "total_amount": 1136670, + "id": "1695328321082", + "history_id": "1695328321082", + "date_created": "2023-09-21T20:32:01.082Z", + "date_last_updated": "2023-09-21T20:32:01.082Z", + "date_of_expiration": "2025-09-21T20:32:01.058Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 1.136.670,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 21/09/2025 - P9A02KSL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696508927650, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 4958277, + "installment_amount": 4958277, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1696508927650" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "062575214502477384", + "payment_method": "staking", + "original_amount": 4958277, + "total_amount": 4958277, + "id": "1696508927650", + "history_id": "1696508927650", + "date_created": "2023-10-05T12:28:47.650Z", + "date_last_updated": "2023-10-05T12:28:47.650Z", + "date_of_expiration": "2023-11-05T12:28:47.619Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 4.958.277,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": "2023-08-05T13:00:00.848Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384", + "content": { + "type": 1, + "value": { + "dataModificacao": 1690559154331, + "dateValidity": 1690559154379, + "currencyType": "USD", + "balancesModificacao": "2023-10-06T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/065013731763701400/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "150.00000000", + "symbol": "BRL", + "value": 30.33 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 150, + "total_amount": 150, + "history_id": 1689114820357, + "id": 1689114820357, + "date_created": "2023-07-11T22:33:40.357Z", + "date_last_updated": "2023-07-18T14:45:51.563Z", + "date_of_expiration": "2023-08-10T22:33:40.357Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-18T14:45:51.563Z", + "money_release_date": "2023-07-18T14:45:51.563Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 150,00 para a carteira iVip 0650.1373.1763.7014-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/065013731763701400/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/065013731763701400", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689114736496, + "dateValidity": 1689114736496, + "totalValue": 30.93, + "currencyType": "USD", + "balancesModificacao": "2023-08-13T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0, + "qr_code": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540520.205802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558382385016304DD50", + "ticket_url": "https://www.mercadopago.com.br/payments/55838238501/ticket?caller_id=1310149122&hash=983b907e-205f-4db2-9b0a-8e3b51ecea21", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJf0lEQVR42u3dQW7jOhIGYGrlY/io9lF9hLfUShwEebFZVVTizGCAbunzpo0okj72isX8LLb+x3/+aYyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjH+2cW3xc/38ye3r0ueXpff716XPz/Jx8+Pzy/3rh89f/rh0+fjn49Klbx+X/v1JvWt4ICMjIyMjIyMjI+NZjOPFD0j9Eo2310s+fmebjay9aH18Tr19ymBkZGRkZGRkZGQ8g/H+NVt/vvZzav/v+/trjt++XrulouHyGtkWjI9URoR3ra8ChZGRkZGRkZGRkfHkxj68NiyxR/WwVP8cUBvHET/DOFZGRkZGRkZGRkZGxjx/ny6opxX6Zage2uv2QR0Li1BhXMIqPiMjIyMjIyMjI+M5jT0mXJawQj8s3q8lcr6+vsTl/JrBqaXGf5/vYWRkZGRkZGRkZPzbjXUv6VJW1v8/X/6X/a6MjIyMjIyMjIyMf7Nx5xPS6HE5v5dYehjrcwvpWlbxL/3dDyMjIyMjIyMjI+PRjVuqFi6pjLiO6/HPNPqWOri0lIIJW1HjL4exLm+s2TMyMjIyMjIyMjIe1HhNP0mRmSXQHiXwnkd2G3ucxwxODePcGBkZGRkZGRkZGc9mXEu7xLzRs5V+LaHLS5+v4j9Sc5d7HGsfbr+/le9hZGRkZGRkZGRkPJ5x6KSYOyC29JOhlcs1reKnxfuWRhYP/xxoD0ZGRkZGRkZGRsYTGts4bb/Mw+xp1t/m5wiFkW2py8tafnn2FwNGRkZGRkZGRkbG4xtzLD2vtffeS0DmUXLu889SBl3VS3ogIyMjIyMjIyMj4xmMucf5kJS5hBJhfgpo2zuGaBDFnaOpW8x7GXZGRkZGRkZGRkbGoxlz9vxS3jb8TmygGIqGJQ2x7fVWfKR64t18DyMjIyMjIyMjI+NhjD3EyYeXXPealN/LftNvurykMqKlL7GNOiMjIyMjIyMjI+NZjDmN/ijYNnYr70ndyllD9Tk5jDNvu9gZGRkZGRkZGRkZT2YM0/a6qTSeEbRXK0yHeHsrlfNOdoaRkZGRkZGRkZHxQMZh/h4bH157beXSS/UwdGfpKbqeC4tezizqb5+HxMjIyMjIyMjIyHg0Y+1NHl87RM5ju8RbbIiei4bL/BWTFXpGRkZGRkZGRkbGsxnXFGzJLVh6qRWeU/v7RD1Lx89W6OPm1Gu+jZGRkZGRkZGRkfHYxp5asFyni+41jb57fNBaCot46bbTZHFhZGRkZGRkZGRkPJMxZ2damMgPM/rQUjGu9D9f8ii0Ni75j+XIbJspIyMjIyMjIyMj4zmMwwp9zs6sr6hLjpzvhNl773u9FdOgx3hO2LfKyMjIyMjIyMjIeAZjXJj/ZhU/5dxzu8Q4xD7dk7p76dF+0YedkZGRkZGRkZGR8e83zub4W2mX2Mpy/jig25hzXycbT7+5tL2Vs2dkZGRkZGRkZGQ8mjEuzD9eKZicas/9WmqqfS8ys83veqQ0DSMjIyMjIyMjI+OpjLM0ep7j13h7G6f/LWRw5nXAOj8gNERvGBkZGRkZGRkZGc9hfCbWl5RqzztHQ+Q892KZ3dXLHwGWGfb2c63AyMjIyMjIyMjIeCxjn3RAnK7Zf2O8xyaLeQdqrkuuk3f9sJeUkZGRkZGRkZGR8VjGIeqSZ/2tTP+rOs/6Qxxmp+1iKBre7q3IyMjIyMjIyMjIeChjTcG0FGa/TLq87EBm2J0BDQ/8sf8jIyMjIyMjIyMj47GMsVv5bYyux97kLR4HGr/s7gqth4j2wr+99XcFRkZGRkZGRkZGxgMZ89FAYf6+Jdqatn4+XptBY9+X2aBzl5c2zcIzMjIyMjIyMjIynsEYY+kpez6Ntw9r9o/XgHZW3++x3cuy15Gxf1/PMDIyMjIyMjIyMh7SeE0L82HnaG12fnkZ4xbSfAxR2znzc/tddoaRkZGRkZGRkZHxgMaQednps7JXK4wR+IDN2Zkair+WeoKRkZGRkZGRkZHxdMYYbLmOF/Ny/hpaKu7tE30+MJYjuSNjY2RkZGRkZGRkZDytsU9akscmi3kcYfH+MhlHbhJTQ/Exg8PIyMjIyMjIyMh4FmPNs8Qntck202tpoBjSNOOS/6w3TK4ebvW/i5GRkZGRkZGRkfHYxtxbMb+kfkmbQWOspqWtqC1Ctln781vPHRkZGRkZGRkZGRkZD26Ms/77mILpk6JhPDXoPs76Z9tMl1kEvnaCeWPNnpGRkZGRkZGRkfFoxiXR6slCa+l6Hjee/nBpNztT6xJGRkZGRkZGRkbGExnnpwbFBoptjMy0+a7QWwmzh2aN6+SvAWM8h5GRkZGRkZGRkfEsxjxtDwmX/Oza7LylbovPzxC02TnFaKA9GBkZGRkZGRkZGc9m7GGpPuRZWuKvpTJoqdQIWfiYymlJHUqE9Xf9HxkZGRkZGRkZGRn/bmPOzjxKw5UQOW/p9M42ae6SEzfxrr3O6IyMjIyMjIyMjIynMra0PXR4ZEu9FZ9z/KiuIZrUyHyaWA+HiDIyMjIyMjIyMjKeyhixt9JAsRVa2m/aQ9HQJxXGZd/Yw3I+IyMjIyMjIyMj46mMgyif/xMaKM7atMSXzGix/2Ib39VLJxhGRkZGRkZGRkbGMxhzjKU2XAm03ApxnXSCiVtRw4C2UGE8/xsYGRkZGRkZGRkZz2lskzxLT4/MHVyGpMzPIZoaz2mTUDwjIyMjIyMjIyPjOYw7IZr2TbAl5muWFL1pe03Ta9uYnv4+wMjIyMjIyMjIyHgWY57sXyf59BpC36kMbn22OfVSFubXyV0LIyMjIyMjIyMj45mMS4mxtNSLpZ4a1MLpQ6FWmPVWzKmcX9cKjIyMjIyMjIyMjAc03uOsfwklQh/DL7EOuO4vw4fb67tiqTHczsjIyMjIyMjIyHhW407APPRr2b09PzlkZ56Q7Xc5e0ZGRkZGRkZGRsbjG5fSSTFHZobV92d0ffzSXgv8+a8Bz0st7kllZGRkZGRkZGRkPJux7zwpfh5lHMNkv3YrX1MDmPzAtBWVkZGRkZGRkZGR8VTGvJf0iR2+bIM6vW1LJ3zOEust8Gsq58fsDCMjIyMjIyMjI+OxjH/mh5GRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGR8Q80/gd+PCOEIzZrpQAAAABJRU5ErkJggg==" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 20, + "total_amount": 20.2, + "history_id": 1679067982009, + "id": 55838238501, + "date_created": "2023-03-17T11:46:22.887-04:00", + "date_last_updated": "2023-03-18T11:50:43.000-04:00", + "date_of_expiration": "2023-03-18T11:46:22.597-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "cancelled", + "status_detail": "expired", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0667.4940.3784.9818-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/066749403784981840/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/066749403784981840", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679067783161, + "dateValidity": 1679067783161, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "20.00000000", + "symbol": "BRL", + "value": 3.86 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "12224831.00000000", + "symbol": "IVIP", + "value": 1888.088 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1600, + "total_amount": 1600, + "history_id": 1684181007832, + "id": 1684181007832, + "date_created": "2023-05-15T20:03:27.832Z", + "date_last_updated": "2023-05-15T21:15:42.475Z", + "date_of_expiration": "2023-06-14T20:03:27.832Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-15T21:15:42.475Z", + "money_release_date": "2023-05-15T21:15:42.475Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.600,00 para a carteira iVip 0721.5687.2012.5989-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719313, + "modified": 1700589719313 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1676, + "total_amount": 1810.08, + "history_id": 1684623306168, + "id": 1684623306168, + "date_created": "2023-05-20T22:55:06.168Z", + "date_last_updated": "2023-05-20T22:55:06.168Z", + "date_of_expiration": "2023-06-19T22:55:06.168Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624428265/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624428265, + "acquirer_reference": "", + "verification_code": 1684624428265, + "net_received_amount": 0, + "total_paid_amount": 3276, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624428265", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 15956517, + "total_amount": 15956517, + "id": 1684624428265, + "date_created": "2023-05-20T23:13:48.265Z", + "date_last_updated": "2023-05-20T23:13:48.265Z", + "date_of_expiration": "2023-05-20T23:13:48.265Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624428265, + "description": "Compra de 15.956.517,00 IVIP por 3.276,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1324, + "total_amount": 1429.92, + "history_id": 1684624857509, + "id": 1684624857509, + "date_created": "2023-05-20T23:20:57.509Z", + "date_last_updated": "2023-05-20T23:20:57.509Z", + "date_of_expiration": "2023-06-19T23:20:57.509Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624906138/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624906138, + "acquirer_reference": "", + "verification_code": 1684624906138, + "net_received_amount": 0, + "total_paid_amount": 1324, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624906138", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 6448848, + "total_amount": 6448848, + "id": 1684624906138, + "date_created": "2023-05-20T23:21:46.138Z", + "date_last_updated": "2023-05-20T23:21:46.138Z", + "date_of_expiration": "2023-05-20T23:21:46.138Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624906138, + "description": "Compra de 6.448.848,00 IVIP por 1.324,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1687293918217, + "id": 1687293918217, + "date_created": "2023-06-20T20:45:18.217Z", + "date_last_updated": "2023-06-20T20:45:55.023Z", + "date_of_expiration": "2023-07-20T20:45:18.217Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-06-20T20:45:55.023Z", + "money_release_date": "2023-06-20T20:45:55.023Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0721.5687.2012.5989-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024615/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 3, + "payment_method_reference_id": 1687294024615, + "acquirer_reference": "", + "verification_code": 1687294024615, + "net_received_amount": 0, + "total_paid_amount": 452.52, + "overpaid_amount": 0, + "installment_amount": 452.52, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024615", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 452.52, + "total_amount": 452.52, + "id": 1687294024615, + "contract_id": "1684623306168", + "date_created": "2023-06-20T20:47:04.615Z", + "date_last_updated": "2023-06-20T20:47:04.615Z", + "date_of_expiration": "2023-06-20T20:47:04.615Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1687294024615, + "description": "Pagamento de fatura 1 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024774/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 3, + "payment_method_reference_id": 1687294024774, + "acquirer_reference": "", + "verification_code": 1687294024774, + "net_received_amount": 0, + "total_paid_amount": 357.48, + "overpaid_amount": 0, + "installment_amount": 357.48, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024774", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 357.48, + "total_amount": 357.48, + "id": 1687294024774, + "contract_id": "1684624857509", + "date_created": "2023-06-20T20:47:04.774Z", + "date_last_updated": "2023-06-20T20:47:04.774Z", + "date_of_expiration": "2023-06-20T20:47:04.774Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1687294024774, + "description": "Pagamento de fatura 1 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1688524692305/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688524692305, + "acquirer_reference": "", + "verification_code": 1688524692305, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1688524692305", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1688524692305, + "date_created": "2023-07-05T02:38:12.305Z", + "date_last_updated": "2023-07-05T02:38:12.305Z", + "date_of_expiration": "2023-08-05T02:38:12.305Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688524692305, + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/4/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1688525524308/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688525524308, + "acquirer_reference": "", + "verification_code": 1688525524308, + "net_received_amount": 0, + "total_paid_amount": 50, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1688525524308", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 155466, + "total_amount": 155466, + "id": 1688525524308, + "date_created": "2023-07-05T02:52:04.308Z", + "date_last_updated": "2023-07-05T02:52:04.308Z", + "date_of_expiration": "2023-07-05T02:52:04.308Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688525524308, + "description": "Compra de 155.466,00 IVIP por 50,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 2500000, + "total_amount": 2500000, + "history_id": 1689182003298, + "id": 1689182003298, + "date_created": "2023-07-12T17:13:23.298Z", + "date_last_updated": "2023-07-13T13:55:52.452Z", + "date_of_expiration": "2023-07-12T17:13:23.298Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-07-13T13:55:52.452Z", + "money_release_date": "2023-07-13T13:55:52.452Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 2.500.000,00 IVIP para a carteira 0xA7d5Cb00F2824b3D3Bf7b0a4AFe13175618B0FdC" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 800, + "total_amount": 800, + "history_id": 1689689388308, + "id": 1689689388308, + "date_created": "2023-07-18T14:09:48.308Z", + "date_last_updated": "2023-07-18T14:29:47.708Z", + "date_of_expiration": "2023-08-17T14:09:48.308Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-18T14:29:47.708Z", + "money_release_date": "2023-07-18T14:29:47.708Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 800,00 para a carteira iVip 0721.5687.2012.5989-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928096/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 2, + "payment_method_reference_id": 1689690928096, + "acquirer_reference": "", + "verification_code": 1689690928096, + "net_received_amount": 0, + "total_paid_amount": 452.52, + "overpaid_amount": 0, + "installment_amount": 452.52, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928096", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 452.52, + "total_amount": 452.52, + "id": 1689690928096, + "contract_id": "1684623306168", + "date_created": "2023-07-18T14:35:28.096Z", + "date_last_updated": "2023-07-18T14:35:28.096Z", + "date_of_expiration": "2023-07-18T14:35:28.096Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1689690928096, + "description": "Pagamento de fatura 2 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928337/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 2, + "payment_method_reference_id": 1689690928337, + "acquirer_reference": "", + "verification_code": 1689690928337, + "net_received_amount": 0, + "total_paid_amount": 357.48, + "overpaid_amount": 0, + "installment_amount": 357.48, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928337", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 357.48, + "total_amount": 357.48, + "id": 1689690928337, + "contract_id": "1684624857509", + "date_created": "2023-07-18T14:35:28.337Z", + "date_last_updated": "2023-07-18T14:35:28.337Z", + "date_of_expiration": "2023-07-18T14:35:28.337Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1689690928337, + "description": "Pagamento de fatura 2 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691203130486, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8160000, + "installment_amount": 8160000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691203130486" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": 1691203130486, + "history_id": 1691203130486, + "date_created": "2023-08-05T02:38:50.486Z", + "date_last_updated": "2023-08-05T02:38:50.486Z", + "date_of_expiration": "2023-08-05T02:38:50.486Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691556958476, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200000, + "installment_amount": 200000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691556958476" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 200000, + "total_amount": 200000, + "id": 1691556958476, + "history_id": 1691556958476, + "date_created": "2023-08-09T04:55:58.476Z", + "date_last_updated": "2023-08-09T04:55:58.476Z", + "date_of_expiration": "2023-09-09T04:55:58.473Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 200.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/9/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691557017053, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 30, + "installment_amount": 30, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691557017053" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 30, + "total_amount": 30, + "id": 1691557017053, + "history_id": 1691557017053, + "date_created": "2023-08-09T04:56:57.053Z", + "date_last_updated": "2023-08-09T04:56:57.053Z", + "date_of_expiration": "2024-06-09T04:56:57.027Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "description": "Investimento de 30,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/9/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-15T20:07:43.023Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692216463023, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 720, + "installment_amount": 720, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1692216463023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 720, + "total_amount": 720, + "id": 1692216463023, + "history_id": 1692216463023, + "date_created": "2023-08-16T20:07:43.023Z", + "date_last_updated": "2023-08-16T20:26:16.651Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-16T20:26:16.651Z", + "money_release_date": "2023-08-16T20:26:16.651Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 720,00 para a carteira iVip 0721.5687.2012.5989-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296799894/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 1, + "payment_method_reference_id": 1692296799894, + "acquirer_reference": "", + "verification_code": 1692296799894, + "net_received_amount": 0, + "total_paid_amount": 452.52, + "overpaid_amount": 0, + "installment_amount": 452.52, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296799894", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 452.52, + "total_amount": 452.52, + "id": 1692296799894, + "contract_id": "1684623306168", + "date_created": "2023-08-17T18:26:39.894Z", + "date_last_updated": "2023-08-17T18:26:39.894Z", + "date_of_expiration": "2023-08-17T18:26:39.894Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1692296799894, + "description": "Pagamento de fatura 3 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296800012/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 1, + "payment_method_reference_id": 1692296800012, + "acquirer_reference": "", + "verification_code": 1692296800012, + "net_received_amount": 0, + "total_paid_amount": 357.48, + "overpaid_amount": 0, + "installment_amount": 357.48, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296800012", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 357.48, + "total_amount": 357.48, + "id": 1692296800012, + "contract_id": "1684624857509", + "date_created": "2023-08-17T18:26:40.012Z", + "date_last_updated": "2023-08-17T18:26:40.012Z", + "date_of_expiration": "2023-08-17T18:26:40.012Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1692296800012, + "description": "Pagamento de fatura 3 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694237371329, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200000, + "installment_amount": 200000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694237371329" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 204000, + "total_amount": 204000, + "id": "1694237371329", + "history_id": "1694237371329", + "date_created": "2023-09-09T05:29:31.329Z", + "date_last_updated": "2023-09-09T05:29:31.329Z", + "date_of_expiration": "2023-09-09T05:29:31.329Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 200.000,00 IVIP com um rendimento de +4.000,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694237443497, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1030591, + "installment_amount": 1030591, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694237443497" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1030591, + "total_amount": 1030591, + "id": "1694237443497", + "history_id": "1694237443497", + "date_created": "2023-09-09T05:30:43.497Z", + "date_last_updated": "2023-10-04T23:31:59.577Z", + "date_of_expiration": "2023-10-09T05:30:43.496Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": "2023-10-04T23:31:59.577Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Investimento de 1.030.591,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 09/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-14T17:28:50.286Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694712530286, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 820, + "installment_amount": 820, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694712530286" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 820, + "total_amount": 820, + "id": "1694712530286", + "history_id": "1694712530286", + "date_created": "2023-09-14T17:28:50.286Z", + "date_last_updated": "2023-09-14T18:47:35.639Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-09-14T18:47:35.639Z", + "money_release_date": "2023-09-14T18:47:35.639Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 820,00 BRL para a carteira iVip 0721.5687.2012.5989-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694723447405, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 452.52, + "installment_amount": 452.52, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 4, + "installments_payable": 0, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694723447405" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 452.52, + "total_amount": 452.52, + "id": "1694723447405", + "history_id": "1694723447405", + "date_created": "2023-09-14T20:30:47.405Z", + "date_last_updated": "2023-09-14T20:30:47.405Z", + "date_of_expiration": "2023-09-14T20:30:47.405Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 4 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694723447463, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 357.48, + "installment_amount": 357.48, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 4, + "installments_payable": 0, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694723447463" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 357.48, + "total_amount": 357.48, + "id": "1694723447463", + "history_id": "1694723447463", + "date_created": "2023-09-14T20:30:47.463Z", + "date_last_updated": "2023-09-14T20:30:47.463Z", + "date_of_expiration": "2023-09-14T20:30:47.463Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 4 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696464489805, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1696464489805" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "072156872012598910", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": "1696464489805", + "history_id": "1696464489805", + "date_created": "2023-10-05T00:08:09.805Z", + "date_last_updated": "2023-10-05T00:08:09.805Z", + "date_of_expiration": "2023-11-05T00:08:09.771Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168", + "content": { + "type": 1, + "value": { + "id": 1684623306168, + "type": "emprestimo", + "original_amount": 1676, + "total_amount": 1810.08, + "installments": 4, + "installment_amount": 452.52, + "date_created": "2023-05-20T22:55:06.168Z", + "history_id": 1684623306168, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509", + "content": { + "type": 1, + "value": { + "id": 1684624857509, + "type": "emprestimo", + "original_amount": 1324, + "total_amount": 1429.92, + "installments": 4, + "installment_amount": 357.48, + "date_created": "2023-05-20T23:20:57.509Z", + "history_id": 1684624857509, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168", + "content": { + "type": 1, + "value": { + "id": 1684623306168, + "type": "emprestimo", + "original_amount": 1676, + "total_amount": 1810.08, + "installments": 4, + "installment_amount": 452.52, + "date_created": "2023-05-20T22:55:06.168Z", + "history_id": 1684623306168, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509", + "content": { + "type": 1, + "value": { + "id": 1684624857509, + "type": "emprestimo", + "original_amount": 1324, + "total_amount": 1429.92, + "installments": 4, + "installment_amount": 357.48, + "date_created": "2023-05-20T23:20:57.509Z", + "history_id": 1684624857509, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168", + "content": { + "type": 1, + "value": { + "id": 1684623306168, + "type": "emprestimo", + "original_amount": 1676, + "total_amount": 1810.08, + "installments": 4, + "installment_amount": 452.52, + "date_created": "2023-05-20T22:55:06.168Z", + "history_id": 1684623306168, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509", + "content": { + "type": 1, + "value": { + "id": 1684624857509, + "type": "emprestimo", + "original_amount": 1324, + "total_amount": 1429.92, + "installments": 4, + "installment_amount": 357.48, + "date_created": "2023-05-20T23:20:57.509Z", + "history_id": 1684624857509, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168", + "content": { + "type": 1, + "value": { + "id": 1684623306168, + "type": "emprestimo", + "original_amount": 1676, + "total_amount": 1810.08, + "installments": 4, + "installment_amount": 452.52, + "date_created": "2023-05-20T22:55:06.168Z", + "history_id": 1684623306168, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-14T20:30:47.423Z", + "description": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509", + "content": { + "type": 1, + "value": { + "id": 1684624857509, + "type": "emprestimo", + "original_amount": 1324, + "total_amount": 1429.92, + "installments": 4, + "installment_amount": 357.48, + "date_created": "2023-05-20T23:20:57.509Z", + "history_id": 1684624857509, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-14T20:30:47.480Z", + "description": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 3000, + "limitUsed": 750, + "analysisRequested": "2023-05-15T21:24:05.062Z", + "lastReview": "2023-05-15T21:32:32.172Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684180740501, + "dateValidity": 1684180740501, + "totalValue": 6472.835, + "currencyType": "USD", + "balancesModificacao": "2023-10-06T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072270616449276800", + "content": { + "type": 1, + "value": { + "dataModificacao": 1683670601575, + "dateValidity": 1683670601575, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072316538247009010/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072316538247009010/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "44999.00000000", + "symbol": "IVIP", + "value": 15.26 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1689017003664, + "id": 1689017003664, + "date_created": "2023-07-10T19:23:23.664Z", + "date_last_updated": "2023-07-10T21:48:47.768Z", + "date_of_expiration": "2023-08-09T19:23:23.664Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-10T21:48:47.768Z", + "money_release_date": "2023-07-10T21:48:47.768Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0723.1653.8247.0090-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072316538247009010/history/1689029121257/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689029121257, + "acquirer_reference": "", + "verification_code": 1689029121257, + "net_received_amount": 0, + "total_paid_amount": 50, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072316538247009010/history/1689029121257", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 44999, + "total_amount": 44999, + "id": 1689029121257, + "date_created": "2023-07-10T22:45:21.257Z", + "date_last_updated": "2023-07-10T22:45:21.257Z", + "date_of_expiration": "2023-07-10T22:45:21.257Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689029121257, + "description": "Compra de 44.999,00 IVIP por 50,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072316538247009010/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072316538247009010", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689016980183, + "dateValidity": 1689016980183, + "totalValue": 10.2, + "currencyType": "USD", + "balancesModificacao": 1689822000000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719314, + "modified": 1700589719314 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "88319.00000000", + "symbol": "IVIP", + "value": 24.34 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684153197656, + "id": 1684153197656, + "date_created": "2023-05-15T12:19:57.656Z", + "date_last_updated": "2023-05-15T12:24:35.791Z", + "date_of_expiration": "2023-06-14T12:19:57.656Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-15T12:24:35.791Z", + "money_release_date": "2023-05-15T12:24:35.791Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0724.0208.9290.1489-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1684634671417/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684634671417, + "acquirer_reference": "", + "verification_code": 1684634671417, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1684634671417", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 488292, + "total_amount": 488292, + "id": 1684634671417, + "date_created": "2023-05-21T02:04:31.417Z", + "date_last_updated": "2023-05-21T02:04:31.417Z", + "date_of_expiration": "2023-05-21T02:04:31.417Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684634671417, + "description": "Compra de 488.292,00 IVIP por 100,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 120, + "total_amount": 120, + "history_id": 1685124719970, + "id": 1685124719970, + "date_created": "2023-05-26T18:11:59.970Z", + "date_last_updated": "2023-05-29T12:51:17.545Z", + "date_of_expiration": "2023-06-25T18:11:59.970Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-29T12:51:17.545Z", + "money_release_date": "2023-05-29T12:51:17.545Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 120,00 para a carteira iVip 0724.0208.9290.1489-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1510, + "total_amount": 1510, + "history_id": 1685203508718, + "id": 1685203508718, + "date_created": "2023-05-27T16:05:08.718Z", + "date_last_updated": "2023-05-27T18:12:01.604Z", + "date_of_expiration": "2023-06-26T16:05:08.718Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-27T18:12:01.604Z", + "money_release_date": "2023-05-27T18:12:01.604Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.510,00 para a carteira iVip 0724.0208.9290.1489-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1685744132878/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685744132878, + "acquirer_reference": "", + "verification_code": 1685744132878, + "net_received_amount": 0, + "total_paid_amount": 1630, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1685744132878", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 5725017, + "total_amount": 5725017, + "id": 1685744132878, + "date_created": "2023-06-02T22:15:32.878Z", + "date_last_updated": "2023-06-02T22:15:32.878Z", + "date_of_expiration": "2023-06-02T22:15:32.878Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685744132878, + "description": "Compra de 5.725.017,00 IVIP por 1.630,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5122916, + "total_amount": 5122916, + "history_id": 1687787978807, + "id": 1687787978807, + "date_created": "2023-06-26T13:59:38.807Z", + "date_last_updated": "2023-06-28T18:01:13.708Z", + "date_of_expiration": "2023-06-26T13:59:38.807Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-06-28T18:01:13.708Z", + "money_release_date": "2023-06-28T18:01:13.708Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 5.122.916,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1002074, + "total_amount": 1002074, + "history_id": 1688549736848, + "id": 1688549736848, + "date_created": "2023-07-05T09:35:36.848Z", + "date_last_updated": "2023-07-05T13:12:16.770Z", + "date_of_expiration": "2023-07-05T09:35:36.848Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-07-05T13:12:16.770Z", + "money_release_date": "2023-07-05T13:12:16.770Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 1.002.074,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690225683361, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 88319, + "installment_amount": 88319, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072402089290148910/history/1690225683361" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 88319, + "total_amount": 88319, + "id": 1690225683361, + "history_id": 1690225683361, + "date_created": "2023-07-24T19:08:03.361Z", + "date_last_updated": "2023-07-26T19:07:32.462Z", + "date_of_expiration": "2023-07-24T19:08:03.361Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": "2023-07-26T19:07:32.462Z", + "money_release_date": "2023-07-26T19:07:32.462Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 88.319,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 3000, + "limitUsed": 0, + "analysisRequested": "2023-06-26T14:00:45.586Z", + "lastReview": "2023-06-28T18:01:24.723Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684153171860, + "dateValidity": 1684153171860, + "totalValue": 6.86, + "currencyType": "USD", + "balancesModificacao": 1690398452515 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/073789164441763200", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696199966019, + "dateValidity": 1696199966060, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1678088421430, + "id": 1678088421430, + "date_created": "2023-03-06T07:40:21.430Z", + "date_last_updated": "2023-03-13T13:57:17.019Z", + "date_of_expiration": "2023-04-05T07:40:21.430Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-03-13T13:57:17.019Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0749.8124.2324.5748-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/074981242324574820", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677902662156, + "dateValidity": 1678146242488, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075270012379589070/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "30.00000000", + "symbol": "BRL", + "value": 6.28 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 30, + "total_amount": 30, + "history_id": 1689767358341, + "id": 1689767358341, + "date_created": "2023-07-19T11:49:18.341Z", + "date_last_updated": "2023-07-26T21:51:18.554Z", + "date_of_expiration": "2023-08-18T11:49:18.341Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-26T21:51:18.554Z", + "money_release_date": "2023-07-26T21:51:18.554Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 30,00 para a carteira iVip 0752.7001.2379.5890-70" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075270012379589070/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075270012379589070", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689767257899, + "dateValidity": 1689767257899, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": 1690416536434 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075429520947661650/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "186.00000000", + "symbol": "BRL", + "value": 36.47 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 240, + "total_amount": 240, + "history_id": 1684093506914, + "id": 1684093506914, + "date_created": "2023-05-14T19:45:06.914Z", + "date_last_updated": "2023-05-14T20:28:06.351Z", + "date_of_expiration": "2023-06-13T19:45:06.914Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-14T20:28:06.351Z", + "money_release_date": "2023-05-14T20:28:06.351Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 240,00 para a carteira iVip 0754.2952.0947.6616-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075429520947661650/history/1689771495719/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689771495719, + "acquirer_reference": "", + "verification_code": 1689771495719, + "net_received_amount": 0, + "total_paid_amount": 54, + "overpaid_amount": 0, + "installment_amount": 54, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075429520947661650/history/1689771495719", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 54, + "total_amount": 54, + "id": 1689771495719, + "date_created": "2023-07-19T12:58:15.719Z", + "date_last_updated": "2023-07-19T12:58:15.719Z", + "date_of_expiration": "2024-05-19T12:58:15.719Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1689771495719, + "description": "Investimento de 54,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/19/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075429520947661650/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075429520947661650", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684093342801, + "dateValidity": 1684093342801, + "totalValue": 38.464800000000004, + "currencyType": "USD", + "balancesModificacao": "2023-10-16T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076012264992064480/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076012264992064480", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678218975769, + "dateValidity": 1678233375802, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": "2023-10-12T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "932705.00000000", + "symbol": "IVIP", + "value": 508.13 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1683069444271, + "id": 1683069444271, + "date_created": "2023-05-02T23:17:24.271Z", + "date_last_updated": "2023-05-15T12:20:50.305Z", + "date_of_expiration": "2023-06-01T23:17:24.271Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-15T12:20:50.305Z", + "money_release_date": "2023-05-15T12:20:50.305Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684135234297, + "id": 1684135234297, + "date_created": "2023-05-15T07:20:34.297Z", + "date_last_updated": "2023-05-15T22:42:26.714Z", + "date_of_expiration": "2023-06-14T07:20:34.297Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-15T22:42:26.714Z", + "money_release_date": "2023-05-15T22:42:26.714Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684178465791, + "id": 1684178465791, + "date_created": "2023-05-15T19:21:05.791Z", + "date_last_updated": "2023-05-15T20:15:15.990Z", + "date_of_expiration": "2023-06-14T19:21:05.791Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-15T20:15:15.990Z", + "money_release_date": "2023-05-15T20:15:15.990Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "history_id": 1684353970499, + "id": 1684353970499, + "date_created": "2023-05-17T20:06:10.499Z", + "date_last_updated": "2023-05-17T20:06:10.499Z", + "date_of_expiration": "2023-06-16T20:06:10.499Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684627580539/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684627580539, + "acquirer_reference": "", + "verification_code": 1684627580539, + "net_received_amount": 0, + "total_paid_amount": 1300, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684627580539", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 6331951, + "total_amount": 6331951, + "id": 1684627580539, + "date_created": "2023-05-21T00:06:20.539Z", + "date_last_updated": "2023-05-21T00:06:20.539Z", + "date_of_expiration": "2023-05-21T00:06:20.539Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684627580539, + "description": "Compra de 6.331.951,00 IVIP por 1.300,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684628335504/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684628335504, + "acquirer_reference": "", + "verification_code": 1684628335504, + "net_received_amount": 0, + "total_paid_amount": 320, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684628335504", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 320, + "total_amount": 320, + "id": 1684628335504, + "date_created": "2023-05-21T00:18:55.504Z", + "date_last_updated": "2023-05-21T00:18:55.504Z", + "date_of_expiration": "2023-05-21T00:18:55.504Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684628335504, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684633146254/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684633146254, + "acquirer_reference": "", + "verification_code": 1684633146254, + "net_received_amount": 0, + "total_paid_amount": 320, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684633146254", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1561756, + "total_amount": 1561756, + "id": 1684633146254, + "date_created": "2023-05-21T01:39:06.254Z", + "date_last_updated": "2023-05-21T01:39:06.254Z", + "date_of_expiration": "2023-05-21T01:39:06.254Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684633146254, + "description": "Compra de 1.561.756,00 IVIP por 320,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 130, + "total_amount": 130, + "history_id": 1687191698878, + "id": 1687191698878, + "date_created": "2023-06-19T16:21:38.878Z", + "date_last_updated": "2023-06-23T18:12:45.861Z", + "date_of_expiration": "2023-07-19T16:21:38.878Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-06-23T18:12:45.861Z", + "money_release_date": "2023-06-23T18:12:45.861Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 130,00 para a carteira iVip 0765.1978.1500.7150-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1689106982837, + "id": 1689106982837, + "date_created": "2023-07-11T20:23:02.837Z", + "date_last_updated": "2023-07-11T20:23:02.837Z", + "date_of_expiration": "2023-07-11T20:23:02.837Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 1.000,00 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 100000, + "total_amount": 100000, + "history_id": 1689107140445, + "id": 1689107140445, + "date_created": "2023-07-11T20:25:40.445Z", + "date_last_updated": "2023-07-11T20:25:40.445Z", + "date_of_expiration": "2023-07-11T20:25:40.445Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 100.000,00 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1689751872577/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 9, + "payment_method_reference_id": 1689751872577, + "acquirer_reference": "", + "verification_code": 1689751872577, + "net_received_amount": 0, + "total_paid_amount": 130, + "overpaid_amount": 0, + "installment_amount": 130, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1689751872577", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 130, + "total_amount": 130, + "id": 1689751872577, + "contract_id": "1684353970499", + "date_created": "2023-07-19T07:31:12.577Z", + "date_last_updated": "2023-07-19T07:31:12.577Z", + "date_of_expiration": "2023-07-19T07:31:12.577Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1689751872577, + "description": "Pagamento de fatura 1 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 130, + "total_amount": 130, + "history_id": 1689787472412, + "id": 1689787472412, + "date_created": "2023-07-19T17:24:32.412Z", + "date_last_updated": "2023-07-27T14:56:03.902Z", + "date_of_expiration": "2023-08-18T17:24:32.412Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-27T14:56:03.902Z", + "money_release_date": "2023-07-27T14:56:03.902Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 130,00 para a carteira iVip 0765.1978.1500.7150-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1690471265404/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 8, + "payment_method_reference_id": 1690471265404, + "acquirer_reference": "", + "verification_code": 1690471265404, + "net_received_amount": 0, + "total_paid_amount": 130, + "overpaid_amount": 0, + "installment_amount": 130, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1690471265404", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 130, + "total_amount": 130, + "id": 1690471265404, + "contract_id": "1684353970499", + "date_created": "2023-07-27T15:21:05.404Z", + "date_last_updated": "2023-07-27T15:21:05.404Z", + "date_of_expiration": "2023-07-27T15:21:05.404Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1690471265404, + "description": "Pagamento de fatura 2 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-20T13:29:26.475Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692624566475, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 130, + "installment_amount": 130, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692624566475" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 130, + "total_amount": 130, + "id": 1692624566475, + "history_id": 1692624566475, + "date_created": "2023-08-21T13:29:26.475Z", + "date_last_updated": "2023-08-21T13:41:31.282Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-21T13:41:31.282Z", + "money_release_date": "2023-08-21T13:41:31.282Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 130,00 BRL para a carteira iVip 0765.1978.1500.7150-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692660761580, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 130, + "installment_amount": 130, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 3, + "installments_payable": 7, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692660761580" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 130, + "total_amount": 130, + "id": "1692660761580", + "history_id": "1692660761580", + "date_created": "2023-08-21T23:32:41.580Z", + "date_last_updated": "2023-08-21T23:32:41.580Z", + "date_of_expiration": "2023-08-21T23:32:41.580Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 3 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 208830.06 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692785689941, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 6961002, + "installment_amount": 6961002, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692785689941" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 6961002, + "total_amount": 6752171.94, + "id": "1692785689941", + "history_id": "1692785689941", + "date_created": "2023-08-23T10:14:49.941Z", + "date_last_updated": "2023-08-25T14:03:24.887Z", + "date_of_expiration": "2023-08-23T10:14:49.941Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": "2023-08-25T14:03:24.887Z", + "money_release_date": "2023-08-25T14:03:24.887Z", + "money_release_status": "drawee", + "wasDebited": true, + "description": "Saque de 6.752.171,94 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-05T17:04:41.018Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696611881018", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 130, + "installment_amount": 130, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1696611881018" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "076519781500715040", + "payment_method": "whatsapp", + "original_amount": 130, + "total_amount": 130, + "id": "1696611881018", + "history_id": "1696611881018", + "date_created": "2023-10-06T17:04:41.018Z", + "date_last_updated": "2023-10-06T17:16:03.868Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-10-06T17:16:03.868Z", + "money_release_date": "2023-10-06T17:16:03.868Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 130,00 BRL para a carteira iVip 0765.1978.1500.7150-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696613460272", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 130, + "installment_amount": 130, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 4, + "installments_payable": 6, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1696613460272" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "076519781500715040", + "payment_method": "credit", + "original_amount": 130, + "total_amount": 130, + "id": "1696613460272", + "history_id": "1696613460272", + "date_created": "2023-10-06T17:31:00.272Z", + "date_last_updated": "2023-10-06T17:31:00.272Z", + "date_of_expiration": "2023-10-06T17:31:00.272Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 4 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": "2023-05-17T20:06:10.499Z", + "history_id": 1684353970499, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": "2023-05-17T20:06:10.499Z", + "history_id": 1684353970499, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": "2023-05-17T20:06:10.499Z", + "history_id": 1684353970499, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": "2023-05-17T20:06:10.499Z", + "history_id": 1684353970499, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-10-06T17:31:00.287Z", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": "2023-05-17T20:06:10.499Z", + "history_id": 1684353970499, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": "2023-05-17T20:06:10.499Z", + "history_id": 1684353970499, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719315, + "modified": 1700589719315 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": "2023-05-17T20:06:10.499Z", + "history_id": 1684353970499, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": "2023-05-17T20:06:10.499Z", + "history_id": 1684353970499, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": "2023-05-17T20:06:10.499Z", + "history_id": 1684353970499, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499", + "content": { + "type": 1, + "value": { + "id": 1684353970499, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1300, + "installments": 10, + "installment_amount": 130, + "date_created": "2023-05-17T20:06:10.499Z", + "history_id": 1684353970499, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 800, + "analysisRequested": "2023-05-17T13:09:04.557Z", + "lastReview": "2023-05-17T13:16:45.576Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040", + "content": { + "type": 1, + "value": { + "dataModificacao": 1682778060382, + "dateValidity": 1682778060382, + "totalValue": 296.475, + "currencyType": "USD", + "balancesModificacao": "2023-10-16T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078019109826485740", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677453360716, + "dateValidity": 1677453360716, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1677768924149, + "id": 1677768924149, + "date_created": "2023-03-02T14:55:24.149Z", + "date_last_updated": "2023-03-13T13:10:27.494Z", + "date_of_expiration": "2023-04-01T14:55:24.149Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-03-13T13:10:27.494Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0782.9501.4075.3404-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078295014075340450", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677768631228, + "dateValidity": 1677768631228, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/balances/BRL", + "content": { + "type": 1, + "value": { + "symbol": "BRL", + "available": "0.00000000", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/balances/IVIP", + "content": { + "type": 1, + "value": { + "symbol": "IVIP", + "available": "0.00000000", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684172899523, + "id": 1684172899523, + "date_created": "2023-05-15T17:48:19.523Z", + "date_last_updated": "2023-05-15T21:27:24.298Z", + "date_of_expiration": "2023-06-14T17:48:19.523Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-15T21:27:24.298Z", + "money_release_date": "2023-05-15T21:27:24.298Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0783.4537.2944.2504-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/history/1684625628231/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684625628231, + "acquirer_reference": "", + "verification_code": 1684625628231, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/history/1684625628231", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 487073, + "total_amount": 487073, + "id": 1684625628231, + "date_created": "2023-05-20T23:33:48.231Z", + "date_last_updated": "2023-05-20T23:33:48.231Z", + "date_of_expiration": "2023-05-20T23:33:48.231Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684625628231, + "description": "Compra de 487.073,00 IVIP por 100,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 487073, + "total_amount": 487073, + "history_id": 1688602924031, + "id": 1688602924031, + "date_created": "2023-07-06T00:22:04.031Z", + "date_last_updated": "2023-07-06T00:22:04.031Z", + "date_of_expiration": "2023-07-06T00:22:04.031Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 487073, + "total_amount": 487073, + "history_id": 1689096874209, + "id": 1689096874209, + "date_created": "2023-07-11T17:34:34.209Z", + "date_last_updated": "2023-07-11T17:34:34.209Z", + "date_of_expiration": "2023-07-11T17:34:34.209Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 487073, + "total_amount": 487073, + "history_id": 1689182689273, + "id": 1689182689273, + "date_created": "2023-07-12T17:24:49.273Z", + "date_last_updated": "2023-07-12T17:24:49.273Z", + "date_of_expiration": "2023-07-12T17:24:49.273Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 487073, + "total_amount": 487073, + "history_id": 1689197773070, + "id": 1689197773070, + "date_created": "2023-07-12T21:36:13.070Z", + "date_last_updated": "2023-07-13T13:52:01.891Z", + "date_of_expiration": "2023-07-12T21:36:13.070Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-07-13T13:52:01.891Z", + "money_release_date": "2023-07-13T13:52:01.891Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684172840672, + "dateValidity": 1684172840672, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/080731978336071380/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "1863605.00000000", + "symbol": "IVIP", + "value": 199.32 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2020, + "total_amount": 2020, + "history_id": 1684105639483, + "id": 1684105639483, + "date_created": "2023-05-14T23:07:19.483Z", + "date_last_updated": "2023-05-15T14:50:18.116Z", + "date_of_expiration": "2023-06-13T23:07:19.483Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-15T14:50:18.116Z", + "money_release_date": "2023-05-15T14:50:18.116Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 2.020,00 para a carteira iVip 0807.3197.8336.0713-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/080731978336071380/history/1684624287649/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624287649, + "acquirer_reference": "", + "verification_code": 1684624287649, + "net_received_amount": 0, + "total_paid_amount": 2020, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/080731978336071380/history/1684624287649", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 9838878, + "total_amount": 9838878, + "id": 1684624287649, + "date_created": "2023-05-20T23:11:27.649Z", + "date_last_updated": "2023-05-20T23:11:27.649Z", + "date_of_expiration": "2023-05-20T23:11:27.649Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624287649, + "description": "Compra de 9.838.878,00 IVIP por 2.020,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/080731978336071380/history/1685667269938/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685667269938, + "acquirer_reference": "", + "verification_code": 1685667269938, + "net_received_amount": 0, + "total_paid_amount": 7975273, + "overpaid_amount": 0, + "installment_amount": 7975273, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/080731978336071380/history/1685667269938", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 7975273, + "total_amount": 7975273, + "id": 1685667269938, + "date_created": "2023-06-02T00:54:29.938Z", + "date_last_updated": "2023-06-02T00:54:29.938Z", + "date_of_expiration": "2025-06-02T00:54:29.938Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685667269938, + "description": "Investimento de 7.975.273,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/080731978336071380/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/080731978336071380", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684103814248, + "dateValidity": 1684103814248, + "totalValue": 103.1880266333287, + "currencyType": "USD", + "balancesModificacao": "2023-10-13T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "2366500.54000000", + "symbol": "IVIP", + "value": 355.3 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "history_id": 1677928546145, + "id": 1677928546145, + "date_created": "2023-03-04T11:15:46.145Z", + "date_last_updated": "2023-03-04T11:25:19.050Z", + "date_of_expiration": "2023-04-03T11:15:46.145Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-04T11:25:19.050Z", + "money_release_date": "2023-03-04T11:25:19.050Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0813.9836.2853.5692-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1677787145274, + "id": 1677787145274, + "date_created": "2023-03-02T19:59:05.274Z", + "date_last_updated": "2023-03-02T20:06:45.317Z", + "date_of_expiration": "2023-04-01T19:59:05.274Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-02T20:06:45.317Z", + "money_release_date": "2023-03-02T20:06:45.317Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0813.9836.2853.5692-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1678059759995/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678059759995, + "acquirer_reference": "", + "verification_code": 1678059759995, + "net_received_amount": 0, + "total_paid_amount": 1520, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1678059759995", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 10760563, + "total_amount": 10760563, + "id": 1678059759995, + "date_created": "2023-03-05T23:42:39.995Z", + "date_last_updated": "2023-03-05T23:42:39.995Z", + "date_of_expiration": "2023-03-05T23:42:39.995Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678059759995, + "description": "Compra de 10760563 IVIP por 1520 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 153, + "total_amount": 153, + "history_id": 1678742795429, + "id": 1678742795429, + "date_created": "2023-03-13T21:26:35.429Z", + "date_last_updated": "2023-03-13T21:27:18.748Z", + "date_of_expiration": "2023-04-12T21:26:35.429Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-13T21:27:18.748Z", + "money_release_date": "2023-03-13T21:27:18.748Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 153,00 para a carteira iVip 0813.9836.2853.5692-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1678209797800/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678209797800, + "acquirer_reference": "", + "verification_code": 1678209797800, + "net_received_amount": 0, + "total_paid_amount": 3, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1678209797800", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 3, + "total_amount": 3, + "id": 1678209797800, + "date_created": "2023-03-07T17:23:17.800Z", + "date_last_updated": "2023-03-07T17:23:17.800Z", + "date_of_expiration": "2023-03-07T17:23:17.800Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1678209797800, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1678215371496/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678215371496, + "acquirer_reference": "", + "verification_code": 1678215371496, + "net_received_amount": 0, + "total_paid_amount": 2, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1678215371496", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 2, + "total_amount": 2, + "id": 1678215371496, + "date_created": "2023-03-07T18:56:11.496Z", + "date_last_updated": "2023-03-07T18:56:11.496Z", + "date_of_expiration": "2023-03-07T18:56:11.496Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1678215371496, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1679267048083/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679267048083, + "acquirer_reference": "", + "verification_code": 1679267048083, + "net_received_amount": 0, + "total_paid_amount": 9.4, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1679267048083", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 9.4, + "total_amount": 9.4, + "id": 1679267048083, + "date_created": "2023-03-19T23:04:08.083Z", + "date_last_updated": "2023-03-19T23:04:08.083Z", + "date_of_expiration": "2023-03-19T23:04:08.083Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1679267048083, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1679268223760/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679268223760, + "acquirer_reference": "", + "verification_code": 1679268223760, + "net_received_amount": 0, + "total_paid_amount": 167.4, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1679268223760", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 974525, + "total_amount": 974525, + "id": 1679268223760, + "date_created": "2023-03-19T23:23:43.760Z", + "date_last_updated": "2023-03-19T23:23:43.760Z", + "date_of_expiration": "2023-03-19T23:23:43.760Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679268223760, + "description": "Compra de 974525 IVIP por 167.4 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1679914966258/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679914966258, + "acquirer_reference": "", + "verification_code": 1679914966258, + "net_received_amount": 0, + "total_paid_amount": 10, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1679914966258", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 10, + "total_amount": 10, + "id": 1679914966258, + "date_created": "2023-03-27T11:02:46.258Z", + "date_last_updated": "2023-03-27T11:02:46.258Z", + "date_of_expiration": "2023-03-27T11:02:46.258Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1679914966258, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1684348398411/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684348398411, + "acquirer_reference": "", + "verification_code": 1684348398411, + "net_received_amount": 0, + "total_paid_amount": 203, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1684348398411", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 203, + "total_amount": 203, + "id": 1684348398411, + "date_created": "2023-05-17T18:33:18.411Z", + "date_last_updated": "2023-05-17T18:33:18.411Z", + "date_of_expiration": "2023-05-17T18:33:18.411Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684348398411, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624161069/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624161069, + "acquirer_reference": "", + "verification_code": 1684624161069, + "net_received_amount": 0, + "total_paid_amount": 9, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624161069", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 9, + "total_amount": 9, + "id": 1684624161069, + "date_created": "2023-05-20T23:09:21.069Z", + "date_last_updated": "2023-05-20T23:09:21.069Z", + "date_of_expiration": "2023-05-20T23:09:21.069Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624161069, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624222413/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624222413, + "acquirer_reference": "", + "verification_code": 1684624222413, + "net_received_amount": 0, + "total_paid_amount": 222, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624222413", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1081302, + "total_amount": 1081302, + "id": 1684624222413, + "date_created": "2023-05-20T23:10:22.413Z", + "date_last_updated": "2023-05-20T23:10:22.413Z", + "date_of_expiration": "2023-05-20T23:10:22.413Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624222413, + "description": "Compra de 1.081.302,00 IVIP por 222,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624292772/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624292772, + "acquirer_reference": "", + "verification_code": 1684624292772, + "net_received_amount": 0, + "total_paid_amount": 7, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624292772", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 7, + "total_amount": 7, + "id": 1684624292772, + "date_created": "2023-05-20T23:11:32.772Z", + "date_last_updated": "2023-05-20T23:11:32.772Z", + "date_of_expiration": "2023-05-20T23:11:32.772Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624292772, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1061299, + "total_amount": 1061299, + "history_id": 1688520874831, + "id": 1688520874831, + "date_created": "2023-07-05T01:34:34.831Z", + "date_last_updated": "2023-07-13T14:18:04.324Z", + "date_of_expiration": "2023-07-05T01:34:34.831Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-07-13T14:18:04.324Z", + "money_release_date": "2023-07-13T14:18:04.324Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 1.061.299,00 IVIP para a carteira 0xE15d4Dd48a54BAF74D9FA6a77FBb4B943a2A0d07" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 10045174, + "total_amount": 10045174, + "history_id": 1689257644454, + "id": 1689257644454, + "date_created": "2023-07-13T14:14:04.454Z", + "date_last_updated": "2023-07-14T17:46:54.071Z", + "date_of_expiration": "2023-07-13T14:14:04.454Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-07-14T17:46:54.071Z", + "money_release_date": "2023-07-14T17:46:54.071Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 10.045.174,00 IVIP para a carteira 0xE15d4Dd48a54BAF74D9FA6a77FBb4B943a2A0d07" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1689463707269, + "id": 1689463707269, + "date_created": "2023-07-15T23:28:27.269Z", + "date_last_updated": "2023-07-18T13:54:57.994Z", + "date_of_expiration": "2023-08-14T23:28:27.269Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-18T13:54:57.994Z", + "money_release_date": "2023-07-18T13:54:57.994Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0813.9836.2853.5692-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1689688682027/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689688682027, + "acquirer_reference": "", + "verification_code": 1689688682027, + "net_received_amount": 0, + "total_paid_amount": 1007, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1689688682027", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 661120, + "total_amount": 661120, + "id": 1689688682027, + "date_created": "2023-07-18T13:58:02.027Z", + "date_last_updated": "2023-07-18T13:58:02.027Z", + "date_of_expiration": "2023-07-18T13:58:02.027Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689688682027, + "description": "Compra de 661.120,00 IVIP por 1.007,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-23T17:07:17.203Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690218437204, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1690218437204" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": 1690218437204, + "history_id": 1690218437204, + "date_created": "2023-07-24T17:07:17.204Z", + "date_last_updated": "2023-07-24T17:07:17.204Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0813.9836.2853.5692-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691105324726, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2362853, + "installment_amount": 2362853, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1691105324726" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 2362853, + "total_amount": 2362853, + "id": 1691105324726, + "history_id": 1691105324726, + "date_created": "2023-08-03T23:28:44.726Z", + "date_last_updated": "2023-08-03T23:28:44.726Z", + "date_of_expiration": "2023-09-03T23:28:44.725Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 2.362.853,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693783873313, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2362853, + "installment_amount": 2362853, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1693783873313" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 2410110.06, + "total_amount": 2410110.06, + "id": "1693783873313", + "history_id": "1693783873313", + "date_created": "2023-09-03T23:31:13.313Z", + "date_last_updated": "2023-09-03T23:31:13.313Z", + "date_of_expiration": "2023-09-03T23:31:13.313Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 2.362.853,00 IVIP com um rendimento de +47.257,06 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693916505659, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2410324, + "installment_amount": 2410324, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1693916505659" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 2410324, + "total_amount": 2410324, + "id": "1693916505659", + "history_id": "1693916505659", + "date_created": "2023-09-05T12:21:45.659Z", + "date_last_updated": "2023-09-05T12:21:45.659Z", + "date_of_expiration": "2023-10-05T12:21:45.658Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 2.410.324,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696508517073, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2410324, + "installment_amount": 2410324, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696508517073" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "081398362853569280", + "payment_method": "staking", + "original_amount": 2458530.48, + "total_amount": 2458530.48, + "id": "1696508517073", + "history_id": "1696508517073", + "date_created": "2023-10-05T12:21:57.073Z", + "date_last_updated": "2023-10-05T12:21:57.073Z", + "date_of_expiration": "2023-10-05T12:21:57.073Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 2.410.324,00 IVIP com um rendimento de +48.206,48 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696541853446, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100000, + "installment_amount": 100000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696541853446" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "081398362853569280", + "payment_method": "staking", + "original_amount": 100000, + "total_amount": 100000, + "id": "1696541853446", + "history_id": "1696541853446", + "date_created": "2023-10-05T21:37:33.446Z", + "date_last_updated": "2023-10-05T21:37:33.446Z", + "date_of_expiration": "2025-10-05T21:37:33.408Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 100.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 05/10/2025 - P9A02KSL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696640077573", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2366500, + "installment_amount": 2366500, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696640077573" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "081398362853569280", + "payment_method": "staking", + "original_amount": 2366500, + "total_amount": 2366500, + "id": "1696640077573", + "history_id": "1696640077573", + "date_created": "2023-10-07T00:54:37.573Z", + "date_last_updated": "2023-10-07T00:54:37.573Z", + "date_of_expiration": "2023-11-07T00:54:37.538Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 2.366.500,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677420406636, + "dateValidity": 1678944817912, + "totalValue": 779.84, + "currencyType": "USD", + "balancesModificacao": "2023-10-06T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "1189036.00000000", + "symbol": "IVIP", + "value": 151.17 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-31T22:35:26.584Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696199726584, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 10000, + "installment_amount": 10000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696199726584" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "083249759247314030", + "payment_method": "whatsapp", + "original_amount": 10000, + "total_amount": 10000, + "id": "1696199726584", + "history_id": "1696199726584", + "date_created": "2023-10-01T22:35:26.584Z", + "date_last_updated": "2023-10-01T22:35:26.584Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 10.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-01T01:12:03.721Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696209123721, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 10000, + "installment_amount": 10000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696209123721" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "083249759247314030", + "payment_method": "whatsapp", + "original_amount": 10000, + "total_amount": 10000, + "id": "1696209123721", + "history_id": "1696209123721", + "date_created": "2023-10-02T01:12:03.721Z", + "date_last_updated": "2023-10-02T18:48:20.859Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "date_approved": "2023-10-02T18:48:20.859Z", + "money_release_date": "2023-10-02T18:48:20.859Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 10.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696355307483, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 10000, + "installment_amount": 10000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696355307483" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "083249759247314030", + "payment_method": "staking", + "original_amount": 10000, + "total_amount": 10000, + "id": "1696355307483", + "history_id": "1696355307483", + "date_created": "2023-10-03T17:48:27.483Z", + "date_last_updated": "2023-10-03T17:48:27.483Z", + "date_of_expiration": "2023-11-03T17:48:27.483Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 10.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-05T16:28:35.603Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696609715603", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 250, + "installment_amount": 250, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696609715603" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "083249759247314030", + "payment_method": "whatsapp", + "original_amount": 250, + "total_amount": 250, + "id": "1696609715603", + "history_id": "1696609715603", + "date_created": "2023-10-06T16:28:35.603Z", + "date_last_updated": "2023-10-06T16:50:08.116Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-10-06T16:50:08.116Z", + "money_release_date": "2023-10-06T16:50:08.116Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 250,00 BRL para a carteira iVip 0832.4975.9247.3140-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-05T16:40:50.136Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696610450136", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 868000, + "installment_amount": 868000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696610450136" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "083249759247314030", + "payment_method": "whatsapp", + "original_amount": 868000, + "total_amount": 868000, + "id": "1696610450136", + "history_id": "1696610450136", + "date_created": "2023-10-06T16:40:50.136Z", + "date_last_updated": "2023-10-06T17:06:26.733Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "date_approved": "2023-10-06T17:06:26.733Z", + "money_release_date": "2023-10-06T17:06:26.733Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 868.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696611534552/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696611534552", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 250, + "installment_amount": 250, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696611534552" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696611534552", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "083249759247314030", + "payment_method": "swap", + "original_amount": 321036, + "total_amount": 321036, + "id": "1696611534552", + "history_id": "1696611534552", + "date_created": "2023-10-06T16:58:54.552Z", + "date_last_updated": "2023-10-06T16:58:54.552Z", + "date_of_expiration": "2023-10-06T16:58:54.552Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 321.036,00 IVIP por 250,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696067091160, + "dateValidity": 1696067091189, + "currencyType": "USD", + "balancesModificacao": "2023-10-09T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-26T17:17:31.115Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695748651115, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748651115" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "084938385673306140", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "id": "1695748651115", + "history_id": "1695748651115", + "date_created": "2023-09-26T17:17:31.115Z", + "date_last_updated": "2023-09-26T17:17:31.115Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-26T17:19:03.839Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695748743840, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748743840" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "084938385673306140", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "id": "1695748743840", + "history_id": "1695748743840", + "date_created": "2023-09-26T17:19:03.840Z", + "date_last_updated": "2023-09-26T17:19:03.840Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-26T17:20:45.971Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695748845971, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748845971" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "084938385673306140", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "id": "1695748845971", + "history_id": "1695748845971", + "date_created": "2023-09-26T17:20:45.971Z", + "date_last_updated": "2023-09-26T17:20:45.971Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140", + "content": { + "type": 1, + "value": { + "dataModificacao": 1695748509301, + "dateValidity": 1695748509557, + "currencyType": "USD", + "balancesModificacao": "2023-09-28T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1678035077732, + "id": 1678035077732, + "date_created": "2023-03-05T16:51:17.732Z", + "date_last_updated": "2023-03-06T18:57:08.692Z", + "date_of_expiration": "2023-04-04T16:51:17.732Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-06T18:57:08.692Z", + "money_release_date": "2023-03-06T18:57:08.692Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0852.1260.9036.6842-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1678163430853/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678163430853, + "acquirer_reference": "", + "verification_code": 1678163430853, + "net_received_amount": 0, + "total_paid_amount": 200, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1678163430853", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1426241, + "total_amount": 1426241, + "id": 1678163430853, + "date_created": "2023-03-07T04:30:30.853Z", + "date_last_updated": "2023-03-07T04:30:30.853Z", + "date_of_expiration": "2023-03-07T04:30:30.853Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678163430853, + "description": "Compra de 1426241 IVIP por 200 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1681136191198, + "id": 1681136191198, + "date_created": "2023-04-10T14:16:31.198Z", + "date_last_updated": "2023-04-10T14:36:21.704Z", + "date_of_expiration": "2023-05-10T14:16:31.198Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-04-10T14:36:21.704Z", + "money_release_date": "2023-04-10T14:36:21.704Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0852.1260.9036.6842-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1684632748749/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684632748749, + "acquirer_reference": "", + "verification_code": 1684632748749, + "net_received_amount": 0, + "total_paid_amount": 200, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1684632748749", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 976097, + "total_amount": 976097, + "id": 1684632748749, + "date_created": "2023-05-21T01:32:28.749Z", + "date_last_updated": "2023-05-21T01:32:28.749Z", + "date_of_expiration": "2023-05-21T01:32:28.749Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684632748749, + "description": "Compra de 976.097,00 IVIP por 200,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1200, + "total_amount": 1200, + "history_id": 1685109385732, + "id": 1685109385732, + "date_created": "2023-05-26T13:56:25.732Z", + "date_last_updated": "2023-05-26T13:56:25.732Z", + "date_of_expiration": "2023-06-25T13:56:25.732Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1200, + "total_amount": 1200, + "history_id": 1685109442881, + "id": 1685109442881, + "date_created": "2023-05-26T13:57:22.881Z", + "date_last_updated": "2023-05-26T13:57:22.881Z", + "date_of_expiration": "2023-06-25T13:57:22.881Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1200, + "total_amount": 1200, + "history_id": 1685213653014, + "id": 1685213653014, + "date_created": "2023-05-27T18:54:13.014Z", + "date_last_updated": "2023-05-29T12:44:18.194Z", + "date_of_expiration": "2023-06-26T18:54:13.014Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-29T12:44:18.194Z", + "money_release_date": "2023-05-29T12:44:18.194Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1685666059762/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685666059762, + "acquirer_reference": "", + "verification_code": 1685666059762, + "net_received_amount": 0, + "total_paid_amount": 2402000, + "overpaid_amount": 0, + "installment_amount": 2402000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1685666059762", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 2402000, + "total_amount": 2402000, + "id": 1685666059762, + "date_created": "2023-06-02T00:34:19.762Z", + "date_last_updated": "2023-06-02T00:34:19.762Z", + "date_of_expiration": "2024-06-02T00:34:19.762Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685666059762, + "description": "Investimento de 2.402.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1685744731387/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685744731387, + "acquirer_reference": "", + "verification_code": 1685744731387, + "net_received_amount": 0, + "total_paid_amount": 1200, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1685744731387", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 4214736, + "total_amount": 4214736, + "id": 1685744731387, + "date_created": "2023-06-02T22:25:31.387Z", + "date_last_updated": "2023-06-02T22:25:31.387Z", + "date_of_expiration": "2023-06-02T22:25:31.387Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685744731387, + "description": "Compra de 4.214.736,00 IVIP por 1.200,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1688521364022/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688521364022, + "acquirer_reference": "", + "verification_code": 1688521364022, + "net_received_amount": 0, + "total_paid_amount": 4000000, + "overpaid_amount": 0, + "installment_amount": 4000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1688521364022", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 4000000, + "total_amount": 4000000, + "id": 1688521364022, + "date_created": "2023-07-05T01:42:44.022Z", + "date_last_updated": "2023-07-05T01:42:44.022Z", + "date_of_expiration": "2023-08-05T01:42:44.022Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688521364022, + "description": "Investimento de 4.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/4/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691199857902, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 4080000, + "installment_amount": 4080000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691199857902" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 4080000, + "total_amount": 4080000, + "id": 1691199857902, + "history_id": 1691199857902, + "date_created": "2023-08-05T01:44:17.902Z", + "date_last_updated": "2023-08-05T01:44:17.902Z", + "date_of_expiration": "2023-08-05T01:44:17.902Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 4.000.000,00 IVIP com um rendimento de +80.000,00 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 124986.6534 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691271945589, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 4295074, + "installment_amount": 4295074, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691271945589" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 4295074, + "total_amount": 4166221.78, + "id": 1691271945589, + "history_id": 1691271945589, + "date_created": "2023-08-05T21:45:45.589Z", + "date_last_updated": "2023-08-16T14:27:56.970Z", + "date_of_expiration": "2023-08-05T21:45:45.589Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "rejected", + "money_release_date": "2023-08-16T14:27:56.970Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Saque de 4.166.221,78 IVIP para a carteira 0x13d16B24c3293ABAD823e83A490982c0906508A8" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 124986.6534 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691437746780, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 4295074, + "installment_amount": 4295074, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691437746780" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 4295074, + "total_amount": 4166221.78, + "id": 1691437746780, + "history_id": 1691437746780, + "date_created": "2023-08-07T19:49:06.780Z", + "date_last_updated": "2023-08-08T15:39:46.843Z", + "date_of_expiration": "2023-08-07T19:49:06.780Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": "2023-08-08T15:39:46.843Z", + "money_release_date": "2023-08-08T15:39:46.843Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 4.166.221,78 IVIP para a carteira 0x13d16B24c3293ABAD823e83A490982c0906508A8" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 0, + "analysisRequested": "2023-03-18T19:22:30.161Z", + "lastReview": "2023-03-19T21:25:40.619Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678034837603, + "dateValidity": 1679040303242, + "totalValue": 14.089318085490447, + "currencyType": "USD", + "balancesModificacao": "2023-10-06T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 300, + "total_amount": 300, + "history_id": 1677939492133, + "id": 1677939492133, + "date_created": "2023-03-04T14:18:12.133Z", + "date_last_updated": "2023-03-13T13:30:40.045Z", + "date_of_expiration": "2023-04-03T14:18:12.133Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-03-13T13:30:40.045Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 300,00 para a carteira iVip 0858.6972.0472.7301-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085869720472730110/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085869720472730110", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677772587436, + "dateValidity": 1678142633851, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "1370911.00000000", + "symbol": "IVIP", + "value": 901.85 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 140, + "total_amount": 140, + "history_id": 1678097305816, + "id": 1678097305816, + "date_created": "2023-03-06T10:08:25.816Z", + "date_last_updated": "2023-03-07T18:47:04.970Z", + "date_of_expiration": "2023-04-05T10:08:25.816Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-07T18:47:04.970Z", + "money_release_date": "2023-03-07T18:47:04.970Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 140,00 para a carteira iVip 0878.7790.2032.1434-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 1.00%", + "amount": 1.1111 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 112.22, + "overpaid_amount": 0, + "installment_amount": 0, + "qr_code": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406112.225802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13123227786304C4AC", + "ticket_url": "https://www.mercadopago.com.br/sandbox/payments/1312322778/ticket?caller_id=1310149122&hash=6c5d5276-a6c2-41fd-b3ac-10aff2badfc5", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI3klEQVR42u3dSY7kNhAFUN5A97+lbiDDC7uUjB9UeoDhpl4uGo1SpfRUu48YOK5f6HMOWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWtp/Xzvmz/H7z44/Lxx//t4fF37//u3Cz13u/zvH+Hzi+Lnp/QYfFyYGLS0tLS0tLS0tLS3tS7TTY39u8vPYyitvWt/qfuHjLtOF+98hqWhpaWlpaWlpaWlpaV+gnQJk+lb6vSkT3n+WvvvjXt2vMGhpaWlpaWlpaWlpaV+qLVW2q8TL6fNUzvsoAN6NtLS0tLS0tLS0tLS0tDEdtjeeyn4juKfy4BVS5Ph8A1paWlpaWlpaWlpa2jdrEz5dnebYSuluQk0vdDw1a/69HlFaWlpaWlpaWlpaWtpfXdtuKflv//mnO1VoaWlpaWlpaWlpaWl/UW3+nJ+NlOciBLYpsp2ku++WnLZMZgstLS0tLS0tLS0tLe3e2masLe19/NHmBPrhKd2ZR6kRtkcF9CmSlpaWlpaWlpaWlpZ2N23aL5J3PI774pH70Fs7IZcOZGuH447+pDZaWlpaWlpaWlpaWtqdtSUYtudc192SaSQuhcXFnyAd4XasMi8tLS0tLS0tLS0tLe1u2lRRW5/Alrsz6xHXU51vKh6WrsvmpG1aWlpaWlpaWlpaWtrdtan1Mh1sPcXLactkul8edUtdnEdgHLS0tLS0tLS0tLS0tC/Rlum1a5EESylw5O3/7eHZ+RtniJcXLS0tLS0tLS0tLS3tS7Tf37NNmx/PycNxzYlupcfzy8xLS0tLS0tLS0tLS0u7lfb8zITNZsdyzzQcd4UdJnXDSeq1TKVFWlpaWlpaWlpaWlra92jTRNsi9dWXfGrMXD2jPG3Q0tLS0tLS0tLS0tK+S1vJpc1yMqYuyXPEVs5UMiy/cnUL/WlpaWlpaWlpaWlpad+izUmwdk6mzSVTiW+6cDemibsRDml7SpG0tLS0tLS0tLS0tLQ7a8tA2rm83ZlfqM2JJU+eo57IfdLS0tLS0tLS0tLS0r5Qe5TRtMldHnGW9yu3GmGwbnrklc/XpqWlpaWlpaWlpaWlfY82VdRKDa4uLZm6JMtLTiv76zhdyZjtcdu0tLS0tLS0tLS0tLS7a2t8W6fIdhlJ6cSsqbT8lY6/tqWElpaWlpaWlpaWlpZ2U225XUqCU6/lFU5MS+RrET5TT+ZziqSlpaWlpaWlpaWlpd1KW9xH0T61XqZz19Jp2VPX5ciFvUKmpaWlpaWlpaWlpaV9gbZU1JrP9Ox7JqzNle2R2dOB2qkJk5aWlpaWlpaWlpaW9p3aUaLfVABMwbDEwdWtUtvmoqpIS0tLS0tLS0tLS0v7Cu1ZUl9ZDXk8B8gRDsWe/pkuXOGRU58mLS0tLS0tLS0tLS3tC7R5mG2UXDddaL9WTsuuS/4nT3sDWlpaWlpaWlpaWlral2gnwNWdX308LZi8l/iaNss8bFcn6brqHi0tLS0tLS0tLS0t7X7afGD1tFpk5S7GdkvJFENXufOhFklLS0tLS0tLS0tLS7uV9lo8ewp37TRcToLtS448/lZ6N2lpaWlpaWlpaWlpaV+hTZ2TI5+C/fR7I38jle7Wh7R9k3lpaWlpaWlpaWlpaWl304b4Npf42mQ5fSPdKrdUXqU788uuS1paWlpaWlpaWlpa2l205XDqtFXkzLI8IVej6XT7p2j6vFOFlpaWlpaWlpaWlpZ2I23+pNR3fpbfRoiXzZL/e4nvCGGxHgFAS0tLS0tLS0tLS0v7Jm07kLZaXzJlwp/vtjso0ztP71cCJC0tLS0tLS0tLS0t7Qu0pX2y7hfJWa+p1eXCXoqNV64qhk5MWlpaWlpaWlpaWlra7bX35xxdia8ekZbOU0uvVjosj8VW/2V1j5aWlpaWlpaWlpaWdj9tkpUy3Xhyp57MUiOs03UlVH7ZI0pLS0tLS0tLS0tLS7uV9gyyI6TIa7mHJDVXtk2YKZ+OsvWElpaWlpaWlpaWlpb2Fdq0c2QKd4uz067uiOtzMVO3LiNOG05oaWlpaWlpaWlpaWl31yZ3+7BFc2WTLMPOkVhGvL/9V1v9aWlpaWlpaWlpaWlp99Gmk9VWvZZp1WS6UEbdVmN3U3mQlpaWlpaWlpaWlpb2PdoS6abbnTlAdgv4x7RzJN0vl/PSiB0tLS0tLS0tLS0tLe2rtO0c2zTMVtoir26Z5HqwrjmLLfyMlpaWlpaWlpaWlpZ2Z+0EKMZRCnvJXebdkqfWDct0Xa0g0tLS0tLS0tLS0tLS7q+tnY5tYa9Mr9XwuTgtu34tHQHw0CNKS0tLS0tLS0tLS0u7m7b0Rq4G3HJz5fis+J0lWebGzNFt9T9oaWlpaWlpaWlpaWnfpA2hbZRaXbPfvxQFz26wbpRmzdyEmT60tLS0tLS0tLS0tLSv0I5P4yjDbKUjsj4nJdAUL8tz616ThxRJS0tLS0tLS0tLS0u7kTYnxlqDm8bVcqhMpcD6oHRIW15QQktLS0tLS0tLS0tL+x5tsy0krYsspbta8Xuamqu7Tr7uEaWlpaWlpaWlpaWlpd1Nmz7rPSTpTLQSIM8yCJen686n8ElLS0tLS0tLS0tLS7u7to1+04RcIrdNk3kZSUqRTYvmc+alpaWlpaWlpaWlpaXdR9tkvSnclaJbzZ2p9pe6MxP+6xRJS0tLS0tLS0tLS0u7pbbEwVG6Lstc3BVWi9T2yYJqTgRYRlhaWlpaWlpaWlpaWtqXakdosxx5+0g+2PocTVxNu06+r+7R0tLS0tLS0tLS0tK+RXt0Z2TXUbdp6WR7BEC5ywhnAxy0tLS0tLS0tLS0tLSv0y7wIz92emI7EpcC5Ho47jlF0tLS0tLS0tLS0tLSbqZNlbwp4U2yUfLkInw2o3P5DeqGSlpaWlpaWlpaWlpa2t21//8PLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLe2/pv0Nc/R6xtt85A0AAAAASUVORK5CYII=" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 111.11, + "total_amount": 112.22, + "history_id": 1679947244258, + "id": 1312322778, + "date_created": "2023-03-27T16:00:45.050-04:00", + "date_last_updated": "2023-03-27T16:00:45.050-04:00", + "date_of_expiration": "2023-03-28T16:00:44.758-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 111,11 para a carteira iVip 0878.7790.2032.1434-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1680260155565/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1680260155565, + "acquirer_reference": "", + "verification_code": 1680260155565, + "net_received_amount": 0, + "total_paid_amount": 91.56, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1680260155565", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 500004, + "total_amount": 500004, + "id": 1680260155565, + "date_created": "2023-03-31T10:55:55.565Z", + "date_last_updated": "2023-03-31T10:55:55.565Z", + "date_of_expiration": "2023-03-31T10:55:55.565Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1680260155565, + "description": "Compra de 500.004,00 IVIP por 91,56 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1680391431083/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1680391431083, + "acquirer_reference": "", + "verification_code": 1680391431083, + "net_received_amount": 0, + "total_paid_amount": 48.44, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1680391431083", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 267396, + "total_amount": 267396, + "id": 1680391431083, + "date_created": "2023-04-01T23:23:51.083Z", + "date_last_updated": "2023-04-01T23:23:51.083Z", + "date_of_expiration": "2023-04-01T23:23:51.083Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1680391431083, + "description": "Compra de 267.396,00 IVIP por 48,44 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 99.99, + "total_amount": 99.99, + "history_id": 1683913607250, + "id": 1683913607250, + "date_created": "2023-05-12T17:46:47.250Z", + "date_last_updated": "2023-05-12T19:04:35.703Z", + "date_of_expiration": "2023-06-11T17:46:47.250Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-12T19:04:35.703Z", + "money_release_date": "2023-05-12T19:04:35.703Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 99,99 para a carteira iVip 0878.7790.2032.1434-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1684628885106/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684628885106, + "acquirer_reference": "", + "verification_code": 1684628885106, + "net_received_amount": 0, + "total_paid_amount": 99.99, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1684628885106", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 487512, + "total_amount": 487512, + "id": 1684628885106, + "date_created": "2023-05-21T00:28:05.106Z", + "date_last_updated": "2023-05-21T00:28:05.106Z", + "date_of_expiration": "2023-05-21T00:28:05.106Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684628885106, + "description": "Compra de 487.512,00 IVIP por 99,99 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-30T16:52:17.210Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690822337211, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1690822337211" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1690822337211, + "history_id": 1690822337211, + "date_created": "2023-07-31T16:52:17.211Z", + "date_last_updated": "2023-07-31T16:52:17.211Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 20,00 para a carteira iVip 0878.7790.2032.1434-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-30T16:53:59.890Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690822439890, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1690822439890" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": 1690822439890, + "history_id": 1690822439890, + "date_created": "2023-07-31T16:53:59.890Z", + "date_last_updated": "2023-07-31T21:00:12.866Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-07-31T21:00:12.866Z", + "money_release_date": "2023-07-31T21:00:12.866Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 100,00 para a carteira iVip 0878.7790.2032.1434-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1695782499707/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695782499707, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1695782499707" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1695782499707", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "087877902032143410", + "payment_method": "swap", + "original_amount": 115999, + "total_amount": 115999, + "id": "1695782499707", + "history_id": "1695782499707", + "date_created": "2023-09-27T02:41:39.707Z", + "date_last_updated": "2023-09-27T02:41:39.707Z", + "date_of_expiration": "2023-09-27T02:41:39.707Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 115.999,00 IVIP por 100,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677405879103, + "dateValidity": 1678984144008, + "totalValue": 47.38, + "currencyType": "USD", + "balancesModificacao": "2023-10-10T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "16470.00000000", + "symbol": "IVIP", + "value": 4.22 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1684164750598, + "id": 1684164750598, + "date_created": "2023-05-15T15:32:30.598Z", + "date_last_updated": "2023-05-15T21:20:52.543Z", + "date_of_expiration": "2023-06-14T15:32:30.598Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-15T21:20:52.543Z", + "money_release_date": "2023-05-15T21:20:52.543Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0887.5336.8634.7750-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1800, + "total_amount": 1800, + "history_id": 1684165632184, + "id": 1684165632184, + "date_created": "2023-05-15T15:47:12.184Z", + "date_last_updated": "2023-05-15T15:47:12.184Z", + "date_of_expiration": "2023-06-14T15:47:12.184Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.800,00 para a carteira iVip 0887.5336.8634.7750-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 150, + "total_amount": 150, + "history_id": 1684452112873, + "id": 1684452112873, + "date_created": "2023-05-18T23:21:52.873Z", + "date_last_updated": "2023-05-18T23:26:54.072Z", + "date_of_expiration": "2023-06-17T23:21:52.873Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-18T23:26:54.072Z", + "money_release_date": "2023-05-18T23:26:54.072Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 150,00 para a carteira iVip 0887.5336.8634.7750-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1684519388805, + "id": 1684519388805, + "date_created": "2023-05-19T18:03:08.805Z", + "date_last_updated": "2023-05-20T04:17:58.179Z", + "date_of_expiration": "2023-06-18T18:03:08.805Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-05-20T04:17:58.179Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0887.5336.8634.7750-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 950, + "total_amount": 950, + "history_id": 1684538973500, + "id": 1684538973500, + "date_created": "2023-05-19T23:29:33.500Z", + "date_last_updated": "2023-05-20T04:08:22.071Z", + "date_of_expiration": "2023-06-18T23:29:33.500Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-05-20T04:08:22.071Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719316, + "modified": 1700589719316 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 950, + "total_amount": 950, + "history_id": 1684540522383, + "id": 1684540522383, + "date_created": "2023-05-19T23:55:22.383Z", + "date_last_updated": "2023-05-20T21:38:33.877Z", + "date_of_expiration": "2023-06-18T23:55:22.383Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-05-20T21:38:33.877Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 950, + "total_amount": 950, + "history_id": 1684589302647, + "id": 1684589302647, + "date_created": "2023-05-20T13:28:22.647Z", + "date_last_updated": "2023-05-20T14:54:06.380Z", + "date_of_expiration": "2023-06-19T13:28:22.647Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-20T14:54:06.380Z", + "money_release_date": "2023-05-20T14:54:06.380Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624236329/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624236329, + "acquirer_reference": "", + "verification_code": 1684624236329, + "net_received_amount": 0, + "total_paid_amount": 1600, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624236329", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 7793170, + "total_amount": 7793170, + "id": 1684624236329, + "date_created": "2023-05-20T23:10:36.329Z", + "date_last_updated": "2023-05-20T23:10:36.329Z", + "date_of_expiration": "2023-05-20T23:10:36.329Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624236329, + "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624348122/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624348122, + "acquirer_reference": "", + "verification_code": 1684624348122, + "net_received_amount": 0, + "total_paid_amount": 160, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624348122", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 160, + "total_amount": 160, + "id": 1684624348122, + "date_created": "2023-05-20T23:12:28.122Z", + "date_last_updated": "2023-05-20T23:12:28.122Z", + "date_of_expiration": "2023-05-20T23:12:28.122Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624348122, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624387279/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624387279, + "acquirer_reference": "", + "verification_code": 1684624387279, + "net_received_amount": 0, + "total_paid_amount": 160, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624387279", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 779317, + "total_amount": 779317, + "id": 1684624387279, + "date_created": "2023-05-20T23:13:07.279Z", + "date_last_updated": "2023-05-20T23:13:07.279Z", + "date_of_expiration": "2023-05-20T23:13:07.279Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624387279, + "description": "Compra de 779.317,00 IVIP por 160,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624827425/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624827425, + "acquirer_reference": "", + "verification_code": 1684624827425, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624827425", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 20, + "total_amount": 20, + "id": 1684624827425, + "date_created": "2023-05-20T23:20:27.425Z", + "date_last_updated": "2023-05-20T23:20:27.425Z", + "date_of_expiration": "2023-05-20T23:20:27.425Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624827425, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624867474/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624867474, + "acquirer_reference": "", + "verification_code": 1684624867474, + "net_received_amount": 0, + "total_paid_amount": 20, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624867474", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 97414, + "total_amount": 97414, + "id": 1684624867474, + "date_created": "2023-05-20T23:21:07.474Z", + "date_last_updated": "2023-05-20T23:21:07.474Z", + "date_of_expiration": "2023-05-20T23:21:07.474Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624867474, + "description": "Compra de 97.414,00 IVIP por 20,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685361710845/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685361710845, + "acquirer_reference": "", + "verification_code": 1685361710845, + "net_received_amount": 0, + "total_paid_amount": 164, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685361710845", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 40000000, + "total_amount": 40000000, + "id": 1685361710845, + "date_created": "2023-05-29T12:01:50.845Z", + "date_last_updated": "2023-05-29T12:01:50.845Z", + "date_of_expiration": "2023-05-29T12:01:50.845Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1685361710845, + "description": "Compra de 40.000.000,00 IVIPAY por 4.000.000,00 IVIP estabilizando US$ 164,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391792305/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685391792305, + "acquirer_reference": "", + "verification_code": 1685391792305, + "net_received_amount": 0, + "total_paid_amount": 4000000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391792305", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 400000, + "total_amount": 400000, + "id": 1685391792305, + "date_created": "2023-05-29T20:23:12.305Z", + "date_last_updated": "2023-05-29T20:23:12.305Z", + "date_of_expiration": "2023-05-29T20:23:12.305Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685391792305, + "description": "Compra de 400.000,00 IVIP por 4.000.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391842660/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685391842660, + "acquirer_reference": "", + "verification_code": 1685391842660, + "net_received_amount": 0, + "total_paid_amount": 20000000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391842660", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 2000000, + "total_amount": 2000000, + "id": 1685391842660, + "date_created": "2023-05-29T20:24:02.660Z", + "date_last_updated": "2023-05-29T20:24:02.660Z", + "date_of_expiration": "2023-05-29T20:24:02.660Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685391842660, + "description": "Compra de 2.000.000,00 IVIP por 20.000.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391972284/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685391972284, + "acquirer_reference": "", + "verification_code": 1685391972284, + "net_received_amount": 0, + "total_paid_amount": 1600000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391972284", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 160000, + "total_amount": 160000, + "id": 1685391972284, + "date_created": "2023-05-29T20:26:12.284Z", + "date_last_updated": "2023-05-29T20:26:12.284Z", + "date_of_expiration": "2023-05-29T20:26:12.284Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685391972284, + "description": "Compra de 160.000,00 IVIP por 1.600.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392038537/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685392038537, + "acquirer_reference": "", + "verification_code": 1685392038537, + "net_received_amount": 0, + "total_paid_amount": 14000000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392038537", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1400000, + "total_amount": 1400000, + "id": 1685392038537, + "date_created": "2023-05-29T20:27:18.537Z", + "date_last_updated": "2023-05-29T20:27:18.537Z", + "date_of_expiration": "2023-05-29T20:27:18.537Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685392038537, + "description": "Compra de 1.400.000,00 IVIP por 14.000.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392165654/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685392165654, + "acquirer_reference": "", + "verification_code": 1685392165654, + "net_received_amount": 0, + "total_paid_amount": 100000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392165654", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 10000, + "total_amount": 10000, + "id": 1685392165654, + "date_created": "2023-05-29T20:29:25.654Z", + "date_last_updated": "2023-05-29T20:29:25.654Z", + "date_of_expiration": "2023-05-29T20:29:25.654Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685392165654, + "description": "Compra de 10.000,00 IVIP por 100.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392465062/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685392465062, + "acquirer_reference": "", + "verification_code": 1685392465062, + "net_received_amount": 0, + "total_paid_amount": 300000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392465062", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 30000, + "total_amount": 30000, + "id": 1685392465062, + "date_created": "2023-05-29T20:34:25.062Z", + "date_last_updated": "2023-05-29T20:34:25.062Z", + "date_of_expiration": "2023-05-29T20:34:25.062Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685392465062, + "description": "Compra de 30.000,00 IVIP por 300.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 4669901, + "total_amount": 4669901, + "history_id": 1685396749543, + "id": 1685396749543, + "date_created": "2023-05-29T21:45:49.543Z", + "date_last_updated": "2023-05-29T21:45:49.543Z", + "date_of_expiration": "2023-05-29T21:45:49.543Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 4.669.901,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685409104532/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685409104532, + "acquirer_reference": "", + "verification_code": 1685409104532, + "net_received_amount": 0, + "total_paid_amount": 790.8125996034149, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685409104532", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 86699010, + "total_amount": 86699010, + "id": 1685409104532, + "date_created": "2023-05-30T01:11:44.532Z", + "date_last_updated": "2023-05-30T01:11:44.532Z", + "date_of_expiration": "2023-05-30T01:11:44.532Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1685409104532, + "description": "Compra de 86.699.010,00 IVIPAY por 8.669.901,00 IVIP estabilizando US$ 790,81" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494858663/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685494858663, + "acquirer_reference": "", + "verification_code": 1685494858663, + "net_received_amount": 0, + "total_paid_amount": 15447894, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494858663", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1544789, + "total_amount": 1544789, + "id": 1685494858663, + "date_created": "2023-05-31T01:00:58.663Z", + "date_last_updated": "2023-05-31T01:00:58.663Z", + "date_of_expiration": "2023-05-31T01:00:58.663Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685494858663, + "description": "Compra de 1.544.789,00 IVIP por 15.447.894,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494914975/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685494914975, + "acquirer_reference": "", + "verification_code": 1685494914975, + "net_received_amount": 0, + "total_paid_amount": 139000000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494914975", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 13900000, + "total_amount": 13900000, + "id": 1685494914975, + "date_created": "2023-05-31T01:01:54.975Z", + "date_last_updated": "2023-05-31T01:01:54.975Z", + "date_of_expiration": "2023-05-31T01:01:54.975Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685494914975, + "description": "Compra de 13.900.000,00 IVIP por 139.000.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495030715/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685495030715, + "acquirer_reference": "", + "verification_code": 1685495030715, + "net_received_amount": 0, + "total_paid_amount": 31054, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495030715", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 3105, + "total_amount": 3105, + "id": 1685495030715, + "date_created": "2023-05-31T01:03:50.715Z", + "date_last_updated": "2023-05-31T01:03:50.715Z", + "date_of_expiration": "2023-05-31T01:03:50.715Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685495030715, + "description": "Compra de 3.105,00 IVIP por 31.054,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 15447894, + "total_amount": 15447894, + "history_id": 1685495440046, + "id": 1685495440046, + "date_created": "2023-05-31T01:10:40.046Z", + "date_last_updated": "2023-06-02T18:03:07.171Z", + "date_of_expiration": "2023-05-31T01:10:40.046Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "IVIP", + "money_release_date": "2023-06-02T18:03:07.171Z", + "money_release_status": "rejected", + "description": "Saque de 15.447.894,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685496474860/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685496474860, + "acquirer_reference": "", + "verification_code": 1685496474860, + "net_received_amount": 0, + "total_paid_amount": 957.1195165663793, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685496474860", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 154478940, + "total_amount": 154478940, + "id": 1685496474860, + "date_created": "2023-05-31T01:27:54.860Z", + "date_last_updated": "2023-05-31T01:27:54.860Z", + "date_of_expiration": "2023-05-31T01:27:54.860Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIPAY", + "history_id": 1685496474860, + "description": "Compra de 154.478.940,00 IVIPAY por 15.447.894,00 IVIP estabilizando US$ 957,12" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685572512459/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685572512459, + "acquirer_reference": "", + "verification_code": 1685572512459, + "net_received_amount": 0, + "total_paid_amount": 146607949, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685572512459", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 14660794, + "total_amount": 14660794, + "id": 1685572512459, + "date_created": "2023-05-31T22:35:12.459Z", + "date_last_updated": "2023-05-31T22:35:12.459Z", + "date_of_expiration": "2023-05-31T22:35:12.459Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685572512459, + "description": "Compra de 14.660.794,00 IVIP por 146.607.949,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 10637617, + "total_amount": 10637617, + "history_id": 1685574712795, + "id": 1685574712795, + "date_created": "2023-05-31T23:11:52.795Z", + "date_last_updated": "2023-06-02T17:55:39.697Z", + "date_of_expiration": "2023-05-31T23:11:52.795Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "IVIP", + "money_release_date": "2023-06-02T17:55:39.697Z", + "money_release_status": "rejected", + "description": "Saque de 10.637.617,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14660794, + "total_amount": 14660794, + "history_id": 1685587807706, + "id": 1685587807706, + "date_created": "2023-06-01T02:50:07.706Z", + "date_last_updated": "2023-06-02T17:54:02.582Z", + "date_of_expiration": "2023-06-01T02:50:07.706Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "IVIP", + "money_release_date": "2023-06-02T17:54:02.582Z", + "money_release_status": "rejected", + "description": "Saque de 14.660.794,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14660794, + "total_amount": 14660794, + "history_id": 1685623890790, + "id": 1685623890790, + "date_created": "2023-06-01T12:51:30.790Z", + "date_last_updated": "2023-06-01T19:33:18.019Z", + "date_of_expiration": "2023-06-01T12:51:30.790Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-06-01T19:33:18.019Z", + "money_release_date": "2023-06-01T19:33:18.019Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 14.660.794,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685625562355/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685625562355, + "acquirer_reference": "", + "verification_code": 1685625562355, + "net_received_amount": 0, + "total_paid_amount": 749.8617754523927, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685625562355", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 146607940, + "total_amount": 146607940, + "id": 1685625562355, + "date_created": "2023-06-01T13:19:22.355Z", + "date_last_updated": "2023-06-01T13:19:22.355Z", + "date_of_expiration": "2023-06-01T13:19:22.355Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIPAY", + "history_id": 1685625562355, + "description": "Compra de 146.607.940,00 IVIPAY por 14.660.794,00 IVIP estabilizando US$ 749,86" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685639526258/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685639526258, + "acquirer_reference": "", + "verification_code": 1685639526258, + "net_received_amount": 0, + "total_paid_amount": 14900, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685639526258", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1490, + "total_amount": 1490, + "id": 1685639526258, + "date_created": "2023-06-01T17:12:06.258Z", + "date_last_updated": "2023-06-01T17:12:06.258Z", + "date_of_expiration": "2023-06-01T17:12:06.258Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIP", + "history_id": 1685639526258, + "description": "Compra de 1.490,00 IVIP por 14.900,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1490, + "total_amount": 1490, + "history_id": 1685647933824, + "id": 1685647933824, + "date_created": "2023-06-01T19:32:13.824Z", + "date_last_updated": "2023-06-01T19:34:53.267Z", + "date_of_expiration": "2023-06-01T19:32:13.824Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-06-01T19:34:53.267Z", + "money_release_date": "2023-06-01T19:34:53.267Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 1.490,00 IVIP para a carteira 0x46450913428e27edfc5B4055875c08eC6a22cbfF" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685653675417/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685653675417, + "acquirer_reference": "", + "verification_code": 1685653675417, + "net_received_amount": 0, + "total_paid_amount": 136031630, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685653675417", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 13603163, + "total_amount": 13603163, + "id": 1685653675417, + "date_created": "2023-06-01T21:07:55.417Z", + "date_last_updated": "2023-06-01T21:07:55.417Z", + "date_of_expiration": "2023-06-01T21:07:55.417Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIP", + "history_id": 1685653675417, + "description": "Compra de 13.603.163,00 IVIP por 136.031.630,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 3463, + "total_amount": 3463, + "history_id": 1688596994749, + "id": 1688596994749, + "date_created": "2023-07-05T22:43:14.749Z", + "date_last_updated": "2023-07-05T22:43:14.749Z", + "date_of_expiration": "2023-08-04T22:43:14.749Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 3.463,00 para a carteira iVip 0887.5336.8634.7750-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1689384333712, + "id": 1689384333712, + "date_created": "2023-07-15T01:25:33.712Z", + "date_last_updated": "2023-07-15T01:25:33.712Z", + "date_of_expiration": "2023-08-14T01:25:33.712Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0887.5336.8634.7750-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-20T15:58:57.377Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1689955137377, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1671, + "installment_amount": 1671, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1689955137377" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1671, + "total_amount": 1671, + "id": 1689955137377, + "history_id": 1689955137377, + "date_created": "2023-07-21T15:58:57.377Z", + "date_last_updated": "2023-07-21T15:58:57.377Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor R$ 1.671,00 para a carteira iVip 0887.5336.8634.7750-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-30T21:05:23.298Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690837523298, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1690837523298" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1690837523298, + "history_id": 1690837523298, + "date_created": "2023-07-31T21:05:23.298Z", + "date_last_updated": "2023-07-31T22:01:04.751Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-07-31T22:01:04.751Z", + "money_release_date": "2023-07-31T22:01:04.751Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 20,00 para a carteira iVip 0887.5336.8634.7750-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1690844181474/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690844181474, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1690844181474" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1690844181474", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 17960, + "total_amount": 17960, + "id": 1690844181474, + "history_id": 1690844181474, + "date_created": "2023-07-31T22:56:21.474Z", + "date_last_updated": "2023-07-31T22:56:21.474Z", + "date_of_expiration": "2023-07-31T22:56:21.474Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 17.960,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": "2023-07-08T23:25:44.635Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684160584822, + "dateValidity": 1684160584822, + "totalValue": 8.87, + "currencyType": "USD", + "balancesModificacao": "2023-09-29T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "465751.00000000", + "symbol": "IVIP", + "value": 507.45 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1689132397301, + "id": 1689132397301, + "date_created": "2023-07-12T03:26:37.301Z", + "date_last_updated": "2023-07-12T09:22:05.926Z", + "date_of_expiration": "2023-08-11T03:26:37.301Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-12T09:22:05.926Z", + "money_release_date": "2023-07-12T09:22:05.926Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0918.7836.9033.5585-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1689197549929/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689197549929, + "acquirer_reference": "", + "verification_code": 1689197549929, + "net_received_amount": 0, + "total_paid_amount": 200, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1689197549929", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 82125, + "total_amount": 82125, + "id": 1689197549929, + "date_created": "2023-07-12T21:32:29.929Z", + "date_last_updated": "2023-07-12T21:32:29.929Z", + "date_of_expiration": "2023-07-12T21:32:29.929Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689197549929, + "description": "Compra de 82.125,00 IVIP por 200,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-28T11:29:10.248Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695900550248, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 458, + "installment_amount": 458, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900550248" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "091878369033558510", + "payment_method": "whatsapp", + "original_amount": 458, + "total_amount": 458, + "id": "1695900550248", + "history_id": "1695900550248", + "date_created": "2023-09-28T11:29:10.248Z", + "date_last_updated": "2023-09-28T11:29:10.248Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-28T11:29:10.761Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695900550761, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 458, + "installment_amount": 458, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900550761" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "091878369033558510", + "payment_method": "whatsapp", + "original_amount": 458, + "total_amount": 458, + "id": "1695900550761", + "history_id": "1695900550761", + "date_created": "2023-09-28T11:29:10.761Z", + "date_last_updated": "2023-09-28T11:29:10.761Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-28T11:29:25.784Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695900565784, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 458, + "installment_amount": 458, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900565784" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "091878369033558510", + "payment_method": "whatsapp", + "original_amount": 458, + "total_amount": 458, + "id": "1695900565784", + "history_id": "1695900565784", + "date_created": "2023-09-28T11:29:25.784Z", + "date_last_updated": "2023-09-28T11:46:53.220Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-09-28T11:46:53.220Z", + "money_release_date": "2023-09-28T11:46:53.220Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695903994262/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695903994262, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 458, + "installment_amount": 458, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695903994262" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695903994262", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "091878369033558510", + "payment_method": "swap", + "original_amount": 383626, + "total_amount": 383626, + "id": "1695903994262", + "history_id": "1695903994262", + "date_created": "2023-09-28T12:26:34.262Z", + "date_last_updated": "2023-09-28T12:26:34.262Z", + "date_of_expiration": "2023-09-28T12:26:34.262Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 383.626,00 IVIP por 458,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689132373088, + "dateValidity": 1689132373088, + "totalValue": 41.04, + "currencyType": "USD", + "balancesModificacao": "2023-10-01T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1678089239675, + "id": 1678089239675, + "date_created": "2023-03-06T07:53:59.675Z", + "date_last_updated": "2023-03-13T14:08:07.775Z", + "date_of_expiration": "2023-04-05T07:53:59.675Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-03-13T14:08:07.775Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0923.9225.3957.1184-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/092392253957118480", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677466864789, + "dateValidity": 1678103589466, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "history_id": 1689457461269, + "id": 1689457461269, + "date_created": "2023-07-15T21:44:21.269Z", + "date_last_updated": "2023-07-15T21:44:21.269Z", + "date_of_expiration": "2023-08-14T21:44:21.269Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0956.3322.9427.8818-90" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "history_id": 1689629737479, + "id": 1689629737479, + "date_created": "2023-07-17T21:35:37.479Z", + "date_last_updated": "2023-07-17T21:35:37.479Z", + "date_of_expiration": "2023-08-16T21:35:37.479Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0956.3322.9427.8818-90" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/095633229427881890/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/095633229427881890", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689457427075, + "dateValidity": 1689457427075, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684543373520, + "id": 1684543373520, + "date_created": "2023-05-20T00:42:53.520Z", + "date_last_updated": "2023-05-20T00:42:53.520Z", + "date_of_expiration": "2023-06-19T00:42:53.520Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0961.2401.6860.3556-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/096124016860355650/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/096124016860355650", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684187165100, + "dateValidity": 1684187165100, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/096261179492313170", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696117965905, + "dateValidity": 1696117965942, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "10.00000000", + "symbol": "BRL", + "value": 1.92 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "480000.00000000", + "symbol": "IVIP", + "value": 62.92 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 3000, + "total_amount": 3000, + "history_id": 1680564390483, + "id": 1680564390483, + "date_created": "2023-04-03T23:26:30.483Z", + "date_last_updated": "2023-04-04T01:09:40.299Z", + "date_of_expiration": "2023-05-03T23:26:30.483Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-04-04T01:09:40.299Z", + "money_release_date": "2023-04-04T01:09:40.299Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0983.0244.9130.1420-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "history_id": 1680570737667, + "id": 1680570737667, + "date_created": "2023-04-04T01:12:17.667Z", + "date_last_updated": "2023-04-04T01:12:57.315Z", + "date_of_expiration": "2023-05-04T01:12:17.667Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-04-04T01:12:57.315Z", + "money_release_date": "2023-04-04T01:12:57.315Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719317, + "modified": 1700589719317 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "history_id": 1680571158806, + "id": 1680571158806, + "date_created": "2023-04-04T01:19:18.806Z", + "date_last_updated": "2023-04-04T01:19:18.806Z", + "date_of_expiration": "2023-05-04T01:19:18.806Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1683548182568/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 8, + "payment_method_reference_id": 1683548182568, + "acquirer_reference": "", + "verification_code": 1683548182568, + "net_received_amount": 0, + "total_paid_amount": 1200, + "overpaid_amount": 0, + "installment_amount": 1200, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1683548182568", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 1200, + "total_amount": 1200, + "id": 1683548182568, + "contract_id": "1680571158806", + "date_created": "2023-05-08T12:16:22.568Z", + "date_last_updated": "2023-05-08T12:16:22.568Z", + "date_of_expiration": "2023-05-08T12:16:22.568Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1683548182568, + "description": "Pagamento de fatura 2 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367503606/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 9, + "payment_method_reference_id": 1684367503606, + "acquirer_reference": "", + "verification_code": 1684367503606, + "net_received_amount": 0, + "total_paid_amount": 1200, + "overpaid_amount": 0, + "installment_amount": 1200, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367503606", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 1200, + "total_amount": 1200, + "id": 1684367503606, + "contract_id": "1680571158806", + "date_created": "2023-05-17T23:51:43.606Z", + "date_last_updated": "2023-05-17T23:51:43.606Z", + "date_of_expiration": "2023-05-17T23:51:43.606Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684367503606, + "description": "Pagamento de fatura 1 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "history_id": 1684367721554, + "id": 1684367721554, + "date_created": "2023-05-17T23:55:21.554Z", + "date_last_updated": "2023-05-17T23:55:21.554Z", + "date_of_expiration": "2023-06-16T23:55:21.554Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684415962143/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 7, + "payment_method_reference_id": 1684415962143, + "acquirer_reference": "", + "verification_code": 1684415962143, + "net_received_amount": 0, + "total_paid_amount": 290, + "overpaid_amount": 0, + "installment_amount": 290, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684415962143", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 290, + "total_amount": 290, + "id": 1684415962143, + "contract_id": "1684367721554", + "date_created": "2023-05-18T13:19:22.143Z", + "date_last_updated": "2023-05-18T13:19:22.143Z", + "date_of_expiration": "2023-05-18T13:19:22.143Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684415962143, + "description": "Pagamento de fatura 1 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1600, + "total_amount": 1600, + "history_id": 1684544477879, + "id": 1684544477879, + "date_created": "2023-05-20T01:01:17.879Z", + "date_last_updated": "2023-05-20T01:10:36.886Z", + "date_of_expiration": "2023-06-19T01:01:17.879Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-20T01:10:36.886Z", + "money_release_date": "2023-05-20T01:10:36.886Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.600,00 para a carteira iVip 0983.0244.9130.1420-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684624390329/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624390329, + "acquirer_reference": "", + "verification_code": 1684624390329, + "net_received_amount": 0, + "total_paid_amount": 15910, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684624390329", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 77493341, + "total_amount": 77493341, + "id": 1684624390329, + "date_created": "2023-05-20T23:13:10.329Z", + "date_last_updated": "2023-05-20T23:13:10.329Z", + "date_of_expiration": "2023-05-20T23:13:10.329Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624390329, + "description": "Compra de 77.493.341,00 IVIP por 15.910,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 5 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 250, + "total_amount": 255, + "history_id": 1684661775049, + "id": 1684661775049, + "date_created": "2023-05-21T09:36:15.049Z", + "date_last_updated": "2023-05-21T09:36:15.049Z", + "date_of_expiration": "2023-06-20T09:36:15.049Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 250,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 255,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661800868/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684661800868, + "acquirer_reference": "", + "verification_code": 1684661800868, + "net_received_amount": 0, + "total_paid_amount": 250, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661800868", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1218292, + "total_amount": 1218292, + "id": 1684661800868, + "date_created": "2023-05-21T09:36:40.868Z", + "date_last_updated": "2023-05-21T09:36:40.868Z", + "date_of_expiration": "2023-05-21T09:36:40.868Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684661800868, + "description": "Compra de 1.218.292,00 IVIP por 250,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 255, + "total_amount": 255, + "history_id": 1685452383443, + "id": 1685452383443, + "date_created": "2023-05-30T13:13:03.443Z", + "date_last_updated": "2023-05-30T22:32:00.714Z", + "date_of_expiration": "2023-06-29T13:13:03.443Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-30T22:32:00.714Z", + "money_release_date": "2023-05-30T22:32:00.714Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 255,00 para a carteira iVip 0983.0244.9130.1420-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685486477860/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 0, + "payment_method_reference_id": 1685486477860, + "acquirer_reference": "", + "verification_code": 1685486477860, + "net_received_amount": 0, + "total_paid_amount": 255, + "overpaid_amount": 0, + "installment_amount": 255, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685486477860", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 255, + "total_amount": 255, + "id": 1685486477860, + "contract_id": "1684661775049", + "date_created": "2023-05-30T22:41:17.860Z", + "date_last_updated": "2023-05-30T22:41:17.860Z", + "date_of_expiration": "2023-05-30T22:41:17.860Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1685486477860, + "description": "Pagamento de fatura 1 de 1 no valor de 255,00 BRL referente ao contrato 1684661775049" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667437011/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685667437011, + "acquirer_reference": "", + "verification_code": 1685667437011, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667437011", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1685667437011, + "date_created": "2023-06-02T00:57:17.011Z", + "date_last_updated": "2023-06-02T00:57:17.011Z", + "date_of_expiration": "2025-06-02T00:57:17.011Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685667437011, + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667452001/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685667452001, + "acquirer_reference": "", + "verification_code": 1685667452001, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667452001", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1685667452001, + "date_created": "2023-06-02T00:57:32.001Z", + "date_last_updated": "2023-06-02T00:57:32.001Z", + "date_of_expiration": "2024-06-02T00:57:32.001Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685667452001, + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667466065/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685667466065, + "acquirer_reference": "", + "verification_code": 1685667466065, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667466065", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1685667466065, + "date_created": "2023-06-02T00:57:46.065Z", + "date_last_updated": "2023-06-02T00:57:46.065Z", + "date_of_expiration": "2023-12-02T00:57:46.065Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685667466065, + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667479611/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685667479611, + "acquirer_reference": "", + "verification_code": 1685667479611, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667479611", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1685667479611, + "date_created": "2023-06-02T00:57:59.611Z", + "date_last_updated": "2023-06-02T00:57:59.611Z", + "date_of_expiration": "2023-07-02T00:57:59.611Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685667479611, + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1687307213896/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687307213896, + "acquirer_reference": "", + "verification_code": 1687307213896, + "net_received_amount": 0, + "total_paid_amount": 22711633, + "overpaid_amount": 0, + "installment_amount": 22711633, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1687307213896", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 22711633, + "total_amount": 22711633, + "id": 1687307213896, + "date_created": "2023-06-21T00:26:53.896Z", + "date_last_updated": "2023-06-21T00:26:53.896Z", + "date_of_expiration": "2024-06-21T00:26:53.896Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687307213896, + "description": "Investimento de 22.711.633,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1687313762388/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687313762388, + "acquirer_reference": "", + "verification_code": 1687313762388, + "net_received_amount": 0, + "total_paid_amount": 24000000, + "overpaid_amount": 0, + "installment_amount": 24000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1687313762388", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 24000000, + "total_amount": 24000000, + "id": 1687313762388, + "date_created": "2023-06-21T02:16:02.388Z", + "date_last_updated": "2023-06-21T02:16:02.388Z", + "date_of_expiration": "2025-06-21T02:16:02.388Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687313762388, + "description": "Investimento de 24.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1688400402521/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400402521, + "acquirer_reference": "", + "verification_code": 1688400402521, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1688400402521", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": 1688400402521, + "date_created": "2023-07-03T16:06:42.521Z", + "date_last_updated": "2023-07-03T16:06:42.521Z", + "date_of_expiration": "2023-07-03T16:06:42.521Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400402521, + "wasDebited": true, + "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1688403044242/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688403044242, + "acquirer_reference": "", + "verification_code": 1688403044242, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1688403044242", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1688403044242, + "date_created": "2023-07-03T16:50:44.242Z", + "date_last_updated": "2023-07-03T16:50:44.242Z", + "date_of_expiration": "2023-08-03T16:50:44.242Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688403044242, + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "history_id": 1689132091915, + "id": 1689132091915, + "date_created": "2023-07-12T03:21:31.915Z", + "date_last_updated": "2023-07-13T01:07:51.960Z", + "date_of_expiration": "2023-08-11T03:21:31.915Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-13T01:07:51.960Z", + "money_release_date": "2023-07-13T01:07:51.960Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0983.0244.9130.1420-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234387/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 7, + "payment_method_reference_id": 1689211234387, + "acquirer_reference": "", + "verification_code": 1689211234387, + "net_received_amount": 0, + "total_paid_amount": 1200, + "overpaid_amount": 0, + "installment_amount": 1200, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234387", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 1200, + "total_amount": 1200, + "id": 1689211234387, + "contract_id": "1680571158806", + "date_created": "2023-07-13T01:20:34.387Z", + "date_last_updated": "2023-07-13T01:20:34.387Z", + "date_of_expiration": "2023-07-13T01:20:34.387Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1689211234387, + "description": "Pagamento de fatura 3 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234773/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 6, + "payment_method_reference_id": 1689211234773, + "acquirer_reference": "", + "verification_code": 1689211234773, + "net_received_amount": 0, + "total_paid_amount": 290, + "overpaid_amount": 0, + "installment_amount": 290, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234773", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 290, + "total_amount": 290, + "id": 1689211234773, + "contract_id": "1684367721554", + "date_created": "2023-07-13T01:20:34.773Z", + "date_last_updated": "2023-07-13T01:20:34.773Z", + "date_of_expiration": "2023-07-13T01:20:34.773Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1689211234773, + "description": "Pagamento de fatura 2 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691081485992/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1691081485992, + "acquirer_reference": "", + "verification_code": 1691081485992, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691081485992", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": 1691081485992, + "date_created": "2023-08-03T16:51:25.992Z", + "date_last_updated": "2023-08-03T16:51:25.992Z", + "date_of_expiration": "2023-08-03T16:51:25.992Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1691081485992, + "wasDebited": true, + "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691082200859, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1691082200859" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1691082200859, + "history_id": 1691082200859, + "date_created": "2023-08-03T17:03:20.859Z", + "date_last_updated": "2023-08-03T17:03:20.859Z", + "date_of_expiration": "2023-09-03T17:03:20.858Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-10T23:12:17.743Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691795537743, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1490, + "installment_amount": 1490, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1691795537743" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1490, + "total_amount": 1490, + "id": 1691795537743, + "history_id": 1691795537743, + "date_created": "2023-08-11T23:12:17.743Z", + "date_last_updated": "2023-08-12T01:52:36.867Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-12T01:52:36.867Z", + "money_release_date": "2023-08-12T01:52:36.867Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 1.490,00 para a carteira iVip 0983.0244.9130.1420-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838943906/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 4, + "installments_payable": 6, + "payment_method_reference_id": 1691838943906, + "acquirer_reference": "", + "verification_code": 1691838943906, + "net_received_amount": 0, + "total_paid_amount": 1200, + "overpaid_amount": 0, + "installment_amount": 1200, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838943906", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 1200, + "total_amount": 1200, + "id": 1691838943906, + "contract_id": "1680571158806", + "date_created": "2023-08-12T11:15:43.906Z", + "date_last_updated": "2023-08-12T11:15:43.906Z", + "date_of_expiration": "2023-08-12T11:15:43.906Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1691838943906, + "description": "Pagamento de fatura 4 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838944125/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 5, + "payment_method_reference_id": 1691838944125, + "acquirer_reference": "", + "verification_code": 1691838944125, + "net_received_amount": 0, + "total_paid_amount": 290, + "overpaid_amount": 0, + "installment_amount": 290, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838944125", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 290, + "total_amount": 290, + "id": 1691838944125, + "contract_id": "1684367721554", + "date_created": "2023-08-12T11:15:44.125Z", + "date_last_updated": "2023-08-12T11:15:44.125Z", + "date_of_expiration": "2023-08-12T11:15:44.125Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1691838944125, + "description": "Pagamento de fatura 3 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693760654707, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1693760654707" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1693760654707", + "history_id": "1693760654707", + "date_created": "2023-09-03T17:04:14.707Z", + "date_last_updated": "2023-09-03T17:04:14.707Z", + "date_of_expiration": "2023-09-03T17:04:14.707Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693869394011, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5000000, + "installment_amount": 5000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1693869394011" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 5000000, + "total_amount": 5000000, + "id": "1693869394011", + "history_id": "1693869394011", + "date_created": "2023-09-04T23:16:34.011Z", + "date_last_updated": "2023-10-04T13:04:00.740Z", + "date_of_expiration": "2023-10-04T23:16:34.011Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": "2023-10-04T13:04:00.740Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-12T01:25:11.857Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694481911857, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1490, + "installment_amount": 1490, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694481911857" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1490, + "total_amount": 1490, + "id": "1694481911857", + "history_id": "1694481911857", + "date_created": "2023-09-12T01:25:11.857Z", + "date_last_updated": "2023-09-13T17:37:38.166Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-09-13T17:37:38.166Z", + "money_release_date": "2023-09-13T17:37:38.166Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 1.490,00 BRL para a carteira iVip 0983.0244.9130.1420-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694627290479, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1200, + "installment_amount": 1200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 5, + "installments_payable": 5, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694627290479" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 1200, + "total_amount": 1200, + "id": "1694627290479", + "history_id": "1694627290479", + "date_created": "2023-09-13T17:48:10.479Z", + "date_last_updated": "2023-09-13T17:48:10.479Z", + "date_of_expiration": "2023-09-13T17:48:10.479Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 5 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694627290565, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 290, + "installment_amount": 290, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 4, + "installments_payable": 4, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694627290565" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 290, + "total_amount": 290, + "id": "1694627290565", + "history_id": "1694627290565", + "date_created": "2023-09-13T17:48:10.565Z", + "date_last_updated": "2023-09-13T17:48:10.565Z", + "date_of_expiration": "2023-09-13T17:48:10.565Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 4 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696555808953, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696555808953" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "098302449130142080", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": "1696555808953", + "history_id": "1696555808953", + "date_created": "2023-10-06T01:30:08.953Z", + "date_last_updated": "2023-10-06T01:30:08.953Z", + "date_of_expiration": "2023-11-06T01:30:08.931Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-08T02:49:04.331Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696819744331", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1490, + "installment_amount": 1490, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696819744331" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "098302449130142080", + "payment_method": "whatsapp", + "original_amount": 1490, + "total_amount": 1490, + "id": "1696819744331", + "history_id": "1696819744331", + "date_created": "2023-10-09T02:49:04.331Z", + "date_last_updated": "2023-10-09T12:39:01.326Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-10-09T12:39:01.326Z", + "money_release_date": "2023-10-09T12:39:01.326Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 1.490,00 BRL para a carteira iVip 0983.0244.9130.1420-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696861214347", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1200, + "installment_amount": 1200, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 6, + "installments_payable": 4, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696861214347" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "098302449130142080", + "payment_method": "credit", + "original_amount": 1200, + "total_amount": 1200, + "id": "1696861214347", + "history_id": "1696861214347", + "date_created": "2023-10-09T14:20:14.347Z", + "date_last_updated": "2023-10-09T14:20:14.347Z", + "date_of_expiration": "2023-10-09T14:20:14.347Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 6 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696861218511", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 290, + "installment_amount": 290, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 5, + "installments_payable": 3, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696861218511" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "098302449130142080", + "payment_method": "credit", + "original_amount": 290, + "total_amount": 290, + "id": "1696861218511", + "history_id": "1696861218511", + "date_created": "2023-10-09T14:20:18.511Z", + "date_last_updated": "2023-10-09T14:20:18.511Z", + "date_of_expiration": "2023-10-09T14:20:18.511Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 5 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": "2023-04-04T01:19:18.806Z", + "history_id": 1680571158806, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": "2023-04-04T01:19:18.806Z", + "history_id": 1680571158806, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554", + "content": { + "type": 1, + "value": { + "id": 1684367721554, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "installments": 8, + "installment_amount": 290, + "date_created": "2023-05-17T23:55:21.554Z", + "history_id": 1684367721554, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 5 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049", + "content": { + "type": 1, + "value": { + "id": 1684661775049, + "type": "emprestimo", + "original_amount": 250, + "total_amount": 255, + "installments": 1, + "installment_amount": 255, + "date_created": "2023-05-21T09:36:15.049Z", + "history_id": 1684661775049, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 250,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 255,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": "2023-04-04T01:19:18.806Z", + "history_id": 1680571158806, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554", + "content": { + "type": 1, + "value": { + "id": 1684367721554, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "installments": 8, + "installment_amount": 290, + "date_created": "2023-05-17T23:55:21.554Z", + "history_id": 1684367721554, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": "2023-04-04T01:19:18.806Z", + "history_id": 1680571158806, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554", + "content": { + "type": 1, + "value": { + "id": 1684367721554, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "installments": 8, + "installment_amount": 290, + "date_created": "2023-05-17T23:55:21.554Z", + "history_id": 1684367721554, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": "2023-04-04T01:19:18.806Z", + "history_id": 1680571158806, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-13T17:48:10.497Z", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554", + "content": { + "type": 1, + "value": { + "id": 1684367721554, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "installments": 8, + "installment_amount": 290, + "date_created": "2023-05-17T23:55:21.554Z", + "history_id": 1684367721554, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-13T17:48:10.583Z", + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": "2023-04-04T01:19:18.806Z", + "history_id": 1680571158806, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-10-09T14:20:18.119Z", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554", + "content": { + "type": 1, + "value": { + "id": 1684367721554, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "installments": 8, + "installment_amount": 290, + "date_created": "2023-05-17T23:55:21.554Z", + "history_id": 1684367721554, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-10-09T14:20:18.540Z", + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": "2023-04-04T01:19:18.806Z", + "history_id": 1680571158806, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554", + "content": { + "type": 1, + "value": { + "id": 1684367721554, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "installments": 8, + "installment_amount": 290, + "date_created": "2023-05-17T23:55:21.554Z", + "history_id": 1684367721554, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": "2023-04-04T01:19:18.806Z", + "history_id": 1680571158806, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554", + "content": { + "type": 1, + "value": { + "id": 1684367721554, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "installments": 8, + "installment_amount": 290, + "date_created": "2023-05-17T23:55:21.554Z", + "history_id": 1684367721554, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": "2023-04-04T01:19:18.806Z", + "history_id": 1680571158806, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554", + "content": { + "type": 1, + "value": { + "id": 1684367721554, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2320, + "installments": 8, + "installment_amount": 290, + "date_created": "2023-05-17T23:55:21.554Z", + "history_id": 1684367721554, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806", + "content": { + "type": 1, + "value": { + "id": 1680571158806, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12000, + "installments": 10, + "installment_amount": 1200, + "date_created": "2023-04-04T01:19:18.806Z", + "history_id": 1680571158806, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 10000, + "limitUsed": 7250, + "analysisRequested": "2023-04-04T01:13:28.027Z", + "lastReview": "2023-04-08T18:26:33.740Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080", + "content": { + "type": 1, + "value": { + "dataModificacao": 1680465637248, + "dateValidity": 1680465637248, + "totalValue": 7716.736, + "currencyType": "USD", + "balancesModificacao": "2023-10-09T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/099867702110120200/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/099867702110120200", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684118396230, + "dateValidity": 1684118396230, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/100571192646522480", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677468345456, + "dateValidity": 1677468345456, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101099073948007100/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101099073948007100", + "content": { + "type": 1, + "value": { + "dataModificacao": 1685622109779, + "dateValidity": 1685622109779, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1700, + "total_amount": 1700, + "history_id": 1683387433855, + "id": 1683387433855, + "date_created": "2023-05-06T15:37:13.855Z", + "date_last_updated": "2023-05-06T17:20:32.539Z", + "date_of_expiration": "2023-06-05T15:37:13.855Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-06T17:20:32.539Z", + "money_release_date": "2023-05-06T17:20:32.539Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.700,00 para a carteira iVip 1017.8820.3938.8364-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1683729448058, + "id": 1683729448058, + "date_created": "2023-05-10T14:37:28.058Z", + "date_last_updated": "2023-05-10T14:48:52.161Z", + "date_of_expiration": "2023-06-09T14:37:28.058Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-10T14:48:52.161Z", + "money_release_date": "2023-05-10T14:48:52.161Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1017.8820.3938.8364-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1684018976722/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684018976722, + "acquirer_reference": "", + "verification_code": 1684018976722, + "net_received_amount": 0, + "total_paid_amount": 2700, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1684018976722", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 14591858, + "total_amount": 14591858, + "id": 1684018976722, + "date_created": "2023-05-13T23:02:56.722Z", + "date_last_updated": "2023-05-13T23:02:56.722Z", + "date_of_expiration": "2023-05-13T23:02:56.722Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684018976722, + "description": "Compra de 14.591.858,00 IVIP por 2.700,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14591858, + "total_amount": 14591858, + "history_id": 1686488141706, + "id": 1686488141706, + "date_created": "2023-06-11T12:55:41.706Z", + "date_last_updated": "2023-06-11T12:55:41.706Z", + "date_of_expiration": "2023-06-11T12:55:41.706Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14591858, + "total_amount": 14591858, + "history_id": 1686581079256, + "id": 1686581079256, + "date_created": "2023-06-12T14:44:39.256Z", + "date_last_updated": "2023-06-12T14:44:39.256Z", + "date_of_expiration": "2023-06-12T14:44:39.256Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14591858, + "total_amount": 14591858, + "history_id": 1686647052098, + "id": 1686647052098, + "date_created": "2023-06-13T09:04:12.098Z", + "date_last_updated": "2023-06-13T09:04:12.098Z", + "date_of_expiration": "2023-06-13T09:04:12.098Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14591858, + "total_amount": 14591858, + "history_id": 1686750536224, + "id": 1686750536224, + "date_created": "2023-06-14T13:48:56.224Z", + "date_last_updated": "2023-06-15T21:42:14.419Z", + "date_of_expiration": "2023-06-14T13:48:56.224Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-06-15T21:42:14.419Z", + "money_release_date": "2023-06-15T21:42:14.419Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 14591858, + "total_amount": 14591858, + "history_id": 1686865268655, + "id": 1686865268655, + "date_created": "2023-06-15T21:41:08.655Z", + "date_last_updated": "2023-06-15T21:41:08.655Z", + "date_of_expiration": "2023-06-15T21:41:08.655Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": "2023-09-14T17:27:37.445Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480", + "content": { + "type": 1, + "value": { + "dataModificacao": 1683247685722, + "dateValidity": 1683247685722, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": "2023-09-25T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101924508374940270", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679287665883, + "dateValidity": 1679287665883, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/102162769887914180", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689113009824, + "dateValidity": 1689113009824, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/102585657323784220", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679436379945, + "dateValidity": 1679436379945, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/102986238363877330", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696096915384, + "dateValidity": 1696096916164, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/103931688787322940", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679165777705, + "dateValidity": 1679165777705, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/106900896878269870/balances/BRL", + "content": { + "type": 1, + "value": { + "symbol": "BRL", + "available": "0.00000000", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/106900896878269870/balances/IVIP", + "content": { + "type": 1, + "value": { + "symbol": "IVIP", + "available": "0.00000000", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "history_id": 1684170542717, + "id": 1684170542717, + "date_created": "2023-05-15T17:09:02.717Z", + "date_last_updated": "2023-05-15T21:30:21.404Z", + "date_of_expiration": "2023-06-14T17:09:02.717Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-15T21:30:21.404Z", + "money_release_date": "2023-05-15T21:30:21.404Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 50,00 para a carteira iVip 1069.0089.6878.2698-70" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/106900896878269870/history/1684624294208/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624294208, + "acquirer_reference": "", + "verification_code": 1684624294208, + "net_received_amount": 0, + "total_paid_amount": 50, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/106900896878269870/history/1684624294208", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 243536, + "total_amount": 243536, + "id": 1684624294208, + "date_created": "2023-05-20T23:11:34.208Z", + "date_last_updated": "2023-05-20T23:11:34.208Z", + "date_of_expiration": "2023-05-20T23:11:34.208Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624294208, + "description": "Compra de 243.536,00 IVIP por 50,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 243536, + "total_amount": 243536, + "history_id": 1688846842830, + "id": 1688846842830, + "date_created": "2023-07-08T20:07:22.830Z", + "date_last_updated": "2023-07-08T20:08:12.432Z", + "date_of_expiration": "2023-07-08T20:07:22.830Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-07-08T20:08:12.432Z", + "money_release_date": "2023-07-08T20:08:12.432Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 243.536,00 IVIP para a carteira 0x58120E330A738FD12B195740b06B7792A5C7DD7D" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/106900896878269870/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/106900896878269870", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684170470840, + "dateValidity": 1684170470840, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/108390022183703310", + "content": { + "type": 1, + "value": { + "dataModificacao": 1680695438579, + "dateValidity": 1680695438579, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/108783781111851280", + "content": { + "type": 1, + "value": { + "dataModificacao": 1681661884795, + "dateValidity": 1681661884795, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1684095990042, + "id": 1684095990042, + "date_created": "2023-05-14T20:26:30.042Z", + "date_last_updated": "2023-05-15T03:09:26.798Z", + "date_of_expiration": "2023-06-13T20:26:30.042Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-15T03:09:26.798Z", + "money_release_date": "2023-05-15T03:09:26.798Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1100.9860.6095.8997-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/history/1686325443110/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686325443110, + "acquirer_reference": "", + "verification_code": 1686325443110, + "net_received_amount": 0, + "total_paid_amount": 500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/history/1686325443110", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1792114, + "total_amount": 1792114, + "id": 1686325443110, + "date_created": "2023-06-09T15:44:03.110Z", + "date_last_updated": "2023-06-09T15:44:03.110Z", + "date_of_expiration": "2023-06-09T15:44:03.110Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686325443110, + "description": "Compra de 1.792.114,00 IVIP por 500,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690019958173, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1792114, + "installment_amount": 1792114, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/110098606095899730/history/1690019958173" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1792114, + "total_amount": 1792114, + "id": 1690019958173, + "history_id": 1690019958173, + "date_created": "2023-07-22T09:59:18.173Z", + "date_last_updated": "2023-07-22T09:59:18.173Z", + "date_of_expiration": "2023-07-22T09:59:18.173Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment", + "description": "Saque de 1.792.114,00 IVIP para a carteira 0x007E69086fF7981e3fA99368fACD516952625148" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 53763.42 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694046051457, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1792114, + "installment_amount": 1792114, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/110098606095899730/history/1694046051457" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1792114, + "total_amount": 1738350.58, + "id": "1694046051457", + "history_id": "1694046051457", + "date_created": "2023-09-07T00:20:51.457Z", + "date_last_updated": "2023-09-11T22:18:05.227Z", + "date_of_expiration": "2023-09-07T00:20:51.457Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": "2023-09-11T22:18:05.227Z", + "money_release_date": "2023-09-11T22:18:05.227Z", + "money_release_status": "drawee", + "wasDebited": true, + "description": "Saque de 1.738.350,58 IVIP para a carteira 0x007E69086fF7981e3fA99368fACD516952625148" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "1792114.00000000", + "symbol": "IVIP", + "value": 199.51 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684095886828, + "dateValidity": 1684095886828, + "totalValue": 82.74, + "currencyType": "USD", + "balancesModificacao": "2023-09-11T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684539878275, + "id": 1684539878275, + "date_created": "2023-05-19T23:44:38.275Z", + "date_last_updated": "2023-05-19T23:44:38.275Z", + "date_of_expiration": "2023-06-18T23:44:38.275Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1101.2161.6136.6665-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110121616136666500/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110121616136666500", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684536217510, + "dateValidity": 1684536217510, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110261910786918940", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679301294113, + "dateValidity": 1679301294113, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/balances/BRL", + "content": { + "type": 1, + "value": { + "symbol": "BRL", + "value": 0.132, + "available": "0.66666666" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/balances/IVIP", + "content": { + "type": 1, + "value": { + "symbol": "IVIP", + "value": 0, + "available": "0.00000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1678154662168/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678154662168, + "acquirer_reference": "", + "verification_code": 1678154662168, + "net_received_amount": 0, + "total_paid_amount": 223, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1678154662168", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1594392, + "total_amount": 1594392, + "id": 1678154662168, + "date_created": "2023-03-07T02:04:22.168Z", + "date_last_updated": "2023-03-07T02:04:22.168Z", + "date_of_expiration": "2023-03-07T02:04:22.168Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678154662168, + "description": "Compra de 1594392 IVIP por 223 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 223, + "total_amount": 223, + "history_id": 1677860043639, + "id": 1677860043639, + "date_created": "2023-03-03T16:14:03.639Z", + "date_last_updated": "2023-03-03T16:28:35.639Z", + "date_of_expiration": "2023-04-02T16:14:03.639Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-03T16:28:35.639Z", + "money_release_date": "2023-03-03T16:28:35.639Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 223,00 para a carteira iVip 1105.2091.7322.8272-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547247302/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1680547247302, + "acquirer_reference": "", + "verification_code": 1680547247302, + "net_received_amount": 0, + "total_paid_amount": 500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547247302", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 2760078, + "total_amount": 2760078, + "id": 1680547247302, + "date_created": "2023-04-03T18:40:47.302Z", + "date_last_updated": "2023-04-03T18:40:47.302Z", + "date_of_expiration": "2023-04-03T18:40:47.302Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1680547247302, + "description": "Compra de 2.760.078,00 IVIP por 500,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 52, + "total_amount": 52, + "history_id": 1684007108709, + "id": 1684007108709, + "date_created": "2023-05-13T19:45:08.709Z", + "date_last_updated": "2023-05-13T19:55:29.125Z", + "date_of_expiration": "2023-06-12T19:45:08.709Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-13T19:55:29.125Z", + "money_release_date": "2023-05-13T19:55:29.125Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 52,00 para a carteira iVip 1105.2091.7322.8272-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007784160/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 10, + "payment_method_reference_id": 1684007784160, + "acquirer_reference": "", + "verification_code": 1684007784160, + "net_received_amount": 0, + "total_paid_amount": 51.667, + "overpaid_amount": 0, + "installment_amount": 51.667, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007784160", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 51.667, + "total_amount": 51.667, + "id": 1684007784160, + "contract_id": "1680547112243", + "date_created": "2023-05-13T19:56:24.160Z", + "date_last_updated": "2023-05-13T19:56:24.160Z", + "date_of_expiration": "2023-05-13T19:56:24.160Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684007784160, + "description": "Pagamento de fatura 2 de 12 no valor de 51,67 BRL referente ao contrato 1680547112243" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 52, + "total_amount": 52, + "history_id": 1685634389886, + "id": 1685634389886, + "date_created": "2023-06-01T15:46:29.886Z", + "date_last_updated": "2023-06-01T18:56:11.760Z", + "date_of_expiration": "2023-07-01T15:46:29.886Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-06-01T18:56:11.760Z", + "money_release_date": "2023-06-01T18:56:11.760Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 52,00 para a carteira iVip 1105.2091.7322.8272-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1685657159164/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 11, + "payment_method_reference_id": 1685657159164, + "acquirer_reference": "", + "verification_code": 1685657159164, + "net_received_amount": 0, + "total_paid_amount": 51.667, + "overpaid_amount": 0, + "installment_amount": 51.667, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1685657159164", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 51.667, + "total_amount": 51.667, + "id": 1685657159164, + "contract_id": "1680547112243", + "date_created": "2023-06-01T22:05:59.164Z", + "date_last_updated": "2023-06-01T22:05:59.164Z", + "date_of_expiration": "2023-06-01T22:05:59.164Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1685657159164, + "description": "Pagamento de fatura 1 de 12 no valor de 51,67 BRL referente ao contrato 1680547112243" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1686939269544/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 11, + "payment_method_reference_id": 1686939269544, + "acquirer_reference": "", + "verification_code": 1686939269544, + "net_received_amount": 0, + "total_paid_amount": 2300063, + "overpaid_amount": 0, + "installment_amount": 2300063, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1686939269544", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 2300063, + "total_amount": 2300063, + "id": 1686939269544, + "contract_id": "1680547112243", + "date_created": "2023-06-16T18:14:29.544Z", + "date_last_updated": "2023-06-16T18:14:29.544Z", + "date_of_expiration": "2023-06-16T18:14:29.544Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "history_id": 1686939269544, + "description": "Pagamento de faturas no valor de 2.300.063,00 IVIP referente ao contrato 1680547112243" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "history_id": 1680547112243, + "id": 1680547112243, + "date_created": "2023-04-03T18:38:32.243Z", + "date_last_updated": "2023-04-03T18:38:32.243Z", + "date_of_expiration": "2023-05-03T18:38:32.243Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 2054407, + "total_amount": 2054407, + "history_id": 1686940226040, + "id": 1686940226040, + "date_created": "2023-06-16T18:30:26.040Z", + "date_last_updated": "2023-06-21T17:25:23.358Z", + "date_of_expiration": "2023-06-16T18:30:26.040Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-06-21T17:25:23.358Z", + "money_release_date": "2023-06-21T17:25:23.358Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 2.054.407,00 IVIP para a carteira 0x660cf406B5942C1cfAb19D31EAe648D68fAb56bF" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": "2023-04-03T18:38:32.243Z", + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": "2023-04-03T18:38:32.243Z", + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": "2023-04-03T18:38:32.243Z", + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": "2023-04-03T18:38:32.243Z", + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": "2023-04-03T18:38:32.243Z", + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": "2023-04-03T18:38:32.243Z", + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": "2023-04-03T18:38:32.243Z", + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": "2023-04-03T18:38:32.243Z", + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": "2023-04-03T18:38:32.243Z", + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": "2023-04-03T18:38:32.243Z", + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": "2023-04-03T18:38:32.243Z", + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243", + "content": { + "type": 1, + "value": { + "id": 1680547112243, + "type": "emprestimo", + "original_amount": 500, + "total_amount": 620, + "installments": 12, + "installment_amount": 51.666666666666664, + "date_created": "2023-04-03T18:38:32.243Z", + "history_id": 1680547112243, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 0, + "analysisRequested": "2023-03-18T23:21:54.669Z", + "lastReview": "2023-03-19T21:24:27.910Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677859170230, + "dateValidity": 1678919633238, + "totalValue": 0.13, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "IVIP", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1684156066045, + "id": 1684156066045, + "date_created": "2023-05-15T13:07:46.045Z", + "date_last_updated": "2023-05-15T13:07:46.045Z", + "date_of_expiration": "2023-06-14T13:07:46.045Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 1115.9744.4051.0128-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684156180281, + "id": 1684156180281, + "date_created": "2023-05-15T13:09:40.281Z", + "date_last_updated": "2023-05-15T13:09:40.281Z", + "date_of_expiration": "2023-06-14T13:09:40.281Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684157124109, + "id": 1684157124109, + "date_created": "2023-05-15T13:25:24.109Z", + "date_last_updated": "2023-05-15T14:49:20.711Z", + "date_of_expiration": "2023-06-14T13:25:24.109Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-15T14:49:20.711Z", + "money_release_date": "2023-05-15T14:49:20.711Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1684667280508/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684667280508, + "acquirer_reference": "", + "verification_code": 1684667280508, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1684667280508", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 487073, + "total_amount": 487073, + "id": 1684667280508, + "date_created": "2023-05-21T11:08:00.508Z", + "date_last_updated": "2023-05-21T11:08:00.508Z", + "date_of_expiration": "2023-05-21T11:08:00.508Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684667280508, + "description": "Compra de 487.073,00 IVIP por 100,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 120, + "total_amount": 120, + "history_id": 1685125796189, + "id": 1685125796189, + "date_created": "2023-05-26T18:29:56.189Z", + "date_last_updated": "2023-05-27T10:47:37.369Z", + "date_of_expiration": "2023-06-25T18:29:56.189Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-27T10:47:37.369Z", + "money_release_date": "2023-05-27T10:47:37.369Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 120,00 para a carteira iVip 1115.9744.4051.0128-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1410, + "total_amount": 1410, + "history_id": 1685203490781, + "id": 1685203490781, + "date_created": "2023-05-27T16:04:50.781Z", + "date_last_updated": "2023-05-27T18:12:36.964Z", + "date_of_expiration": "2023-06-26T16:04:50.781Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-27T18:12:36.964Z", + "money_release_date": "2023-05-27T18:12:36.964Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.410,00 para a carteira iVip 1115.9744.4051.0128-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1685730135668/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685730135668, + "acquirer_reference": "", + "verification_code": 1685730135668, + "net_received_amount": 0, + "total_paid_amount": 1530, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1685730135668", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 5206344, + "total_amount": 5206344, + "id": 1685730135668, + "date_created": "2023-06-02T18:22:15.668Z", + "date_last_updated": "2023-06-02T18:22:15.668Z", + "date_of_expiration": "2023-06-02T18:22:15.668Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685730135668, + "description": "Compra de 5.206.344,00 IVIP por 1.530,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1686621899168, + "id": 1686621899168, + "date_created": "2023-06-13T02:04:59.168Z", + "date_last_updated": "2023-06-13T12:15:29.648Z", + "date_of_expiration": "2023-07-13T02:04:59.168Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-06-13T12:15:29.648Z", + "money_release_date": "2023-06-13T12:15:29.648Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1686792689847/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686792689847, + "acquirer_reference": "", + "verification_code": 1686792689847, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1686792689847", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 637246, + "total_amount": 637246, + "id": 1686792689847, + "date_created": "2023-06-15T01:31:29.847Z", + "date_last_updated": "2023-06-15T01:31:29.847Z", + "date_of_expiration": "2023-06-15T01:31:29.847Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686792689847, + "description": "Compra de 637.246,00 IVIP por 100,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1688230681708/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688230681708, + "acquirer_reference": "", + "verification_code": 1688230681708, + "net_received_amount": 0, + "total_paid_amount": 5832008, + "overpaid_amount": 0, + "installment_amount": 5832008, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1688230681708", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5832008, + "total_amount": 5832008, + "id": 1688230681708, + "date_created": "2023-07-01T16:58:01.708Z", + "date_last_updated": "2023-07-01T16:58:01.708Z", + "date_of_expiration": "2025-07-01T16:58:01.708Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688230681708, + "description": "Investimento de 5.832.008,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/1/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690233382656, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 498655, + "installment_amount": 498655, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/111597444051012800/history/1690233382656" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 498655, + "total_amount": 498655, + "id": 1690233382656, + "history_id": 1690233382656, + "date_created": "2023-07-24T21:16:22.656Z", + "date_last_updated": "2023-07-26T19:13:04.450Z", + "date_of_expiration": "2023-07-24T21:16:22.656Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": "2023-07-26T19:13:04.450Z", + "money_release_date": "2023-07-26T19:13:04.450Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 498.655,00 IVIP para a carteira 0x31608012D8205A2BE2AaDBE2c528d75de71a36E8" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684155865709, + "dateValidity": 1684155865709, + "totalValue": 22.552945262588203, + "currencyType": "USD", + "balancesModificacao": 1691060735628 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112180841461099860", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689619740886, + "dateValidity": 1689619740886, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112268931101963340", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677432431553, + "dateValidity": 1677432431553, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "5721757.00000000", + "symbol": "IVIP", + "value": 612.41 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1600, + "total_amount": 1600, + "history_id": 1677943939458, + "id": 1677943939458, + "date_created": "2023-03-04T15:32:19.458Z", + "date_last_updated": "2023-03-04T20:44:06.599Z", + "date_of_expiration": "2023-04-03T15:32:19.458Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-04T20:44:06.599Z", + "money_release_date": "2023-03-04T20:44:06.599Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.600,00 para a carteira iVip 1127.2038.0478.0658-70" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1678154526038/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678154526038, + "acquirer_reference": "", + "verification_code": 1678154526038, + "net_received_amount": 0, + "total_paid_amount": 1600, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1678154526038", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 11445515, + "total_amount": 11445515, + "id": 1678154526038, + "date_created": "2023-03-07T02:02:06.038Z", + "date_last_updated": "2023-03-07T02:02:06.038Z", + "date_of_expiration": "2023-03-07T02:02:06.038Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678154526038, + "description": "Compra de 11445515 IVIP por 1600 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1766725, + "total_amount": 1766725, + "history_id": 1689270623353, + "id": 1689270623353, + "date_created": "2023-07-13T17:50:23.353Z", + "date_last_updated": "2023-07-13T17:50:23.353Z", + "date_of_expiration": "2023-07-13T17:50:23.353Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 1.766.725,00 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690310464254, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1690310464254" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1000, + "total_amount": 1000, + "id": 1690310464254, + "history_id": 1690310464254, + "date_created": "2023-07-25T18:41:04.254Z", + "date_last_updated": "2023-07-26T17:38:50.972Z", + "date_of_expiration": "2023-07-25T18:41:04.254Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": "2023-07-26T17:38:50.972Z", + "money_release_date": "2023-07-26T17:38:50.972Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 1.000,00 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 171682.74 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695843073185, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5722758, + "installment_amount": 5722758, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1695843073185" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719318, + "modified": 1700589719318 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "112720380478065870", + "payment_method": "transfer", + "original_amount": 5722758, + "total_amount": 5551075.26, + "id": "1695843073185", + "history_id": "1695843073185", + "date_created": "2023-09-27T19:31:13.185Z", + "date_last_updated": "2023-10-05T13:48:58.903Z", + "date_of_expiration": "2023-09-27T19:31:13.185Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_other_reason", + "money_release_date": "2023-10-05T13:48:58.903Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Saque de 5.551.075,26 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 171682.74 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695843125867, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 5722758, + "installment_amount": 5722758, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1695843125867" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "112720380478065870", + "payment_method": "transfer", + "original_amount": 5722758, + "total_amount": 5551075.26, + "id": "1695843125867", + "history_id": "1695843125867", + "date_created": "2023-09-27T19:32:05.867Z", + "date_last_updated": "2023-10-02T23:17:29.131Z", + "date_of_expiration": "2023-09-27T19:32:05.867Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "drawee", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "drawee", + "date_approved": "2023-10-02T23:17:29.131Z", + "money_release_date": "2023-10-02T23:17:29.131Z", + "money_release_status": "drawee", + "wasDebited": true, + "description": "Saque de 5.551.075,26 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677943677925, + "dateValidity": 1678919503018, + "totalValue": 308.8, + "currencyType": "USD", + "balancesModificacao": "2023-10-16T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113397082035573860/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113397082035573860", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684093885315, + "dateValidity": 1684093885315, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800/balances/BNB", + "content": { + "type": 1, + "value": { + "symbol": "BNB", + "value": 329390, + "available": "1000.00000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800/balances/BTC", + "content": { + "type": 1, + "value": { + "symbol": "BTC", + "value": 24969.54, + "available": "1.00000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800/balances/BUSD", + "content": { + "type": 1, + "value": { + "symbol": "BUSD", + "value": 10000, + "available": "10000.00000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800/balances/ETH", + "content": { + "type": 1, + "value": { + "symbol": "ETH", + "value": 168116, + "available": "100.00000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800/balances/LTC", + "content": { + "type": 1, + "value": { + "symbol": "LTC", + "value": 39525, + "available": "500.00000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800/balances/TRX", + "content": { + "type": 1, + "value": { + "symbol": "TRX", + "value": 32965, + "available": "500000.00000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800/balances/USDT", + "content": { + "type": 1, + "value": { + "symbol": "USDT", + "value": 10020, + "available": "10000.00000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800/balances/XRP", + "content": { + "type": 1, + "value": { + "symbol": "XRP", + "value": 18315, + "available": "50000.00000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678997585705, + "dateValidity": 1679015574916, + "totalValue": 633300.54, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113679410552544270", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677932902892, + "dateValidity": 1678217961007, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113719047968885220", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678200529926, + "dateValidity": 1678214929961, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/114964316693074270", + "content": { + "type": 1, + "value": { + "dataModificacao": 1680104445044, + "dateValidity": 1680104445044, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "1000000.88000000", + "symbol": "IVIP", + "value": 106.42 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "history_id": 1689207673127, + "id": 1689207673127, + "date_created": "2023-07-13T00:21:13.127Z", + "date_last_updated": "2023-07-13T12:12:30.894Z", + "date_of_expiration": "2023-08-12T00:21:13.127Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-13T12:12:30.894Z", + "money_release_date": "2023-07-13T12:12:30.894Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1154.3638.5305.7469-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1689260591470/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689260591470, + "acquirer_reference": "", + "verification_code": 1689260591470, + "net_received_amount": 0, + "total_paid_amount": 1500, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1689260591470", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 593666, + "total_amount": 593666, + "id": 1689260591470, + "date_created": "2023-07-13T15:03:11.470Z", + "date_last_updated": "2023-07-13T15:03:11.470Z", + "date_of_expiration": "2023-07-13T15:03:11.470Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689260591470, + "description": "Compra de 593.666,00 IVIP por 1.500,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-19T16:57:31.151Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1689872251156, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 650, + "installment_amount": 650, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/extract/115436385305746960/order/1689872251151" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "", + "original_amount": 650, + "total_amount": 650, + "id": 1689872251156, + "history_id": 1689872251156, + "date_created": "2023-07-20T16:57:31.156Z", + "date_last_updated": "2023-07-20T16:57:31.156Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor R$ 650,00 para a carteira iVip 1154.3638.5305.7469-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-08-24T18:51:46.238Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690311106238, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 650, + "installment_amount": 650, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1690311106238" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 650, + "total_amount": 650, + "id": 1690311106238, + "history_id": 1690311106238, + "date_created": "2023-07-25T18:51:46.238Z", + "date_last_updated": "2023-07-25T18:55:05.225Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-07-25T18:55:05.225Z", + "money_release_date": "2023-07-25T18:55:05.225Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 650,00 para a carteira iVip 1154.3638.5305.7469-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311787862/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1690311787862, + "acquirer_reference": "", + "verification_code": 1690311787862, + "net_received_amount": 0, + "total_paid_amount": 650, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311787862", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 526109, + "total_amount": 526109, + "id": 1690311787862, + "date_created": "2023-07-25T19:03:07.862Z", + "date_last_updated": "2023-07-25T19:03:07.862Z", + "date_of_expiration": "2023-07-25T19:03:07.862Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1690311787862, + "description": "Compra de 526.109,00 IVIP por 650,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691353182696, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1119775, + "installment_amount": 1119775, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691353182696" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1119775, + "total_amount": 1119775, + "id": 1691353182696, + "history_id": 1691353182696, + "date_created": "2023-08-06T20:19:42.696Z", + "date_last_updated": "2023-08-06T20:19:42.696Z", + "date_of_expiration": "2023-09-06T20:19:42.695Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 1.119.775,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/6/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-10T12:16:37.423Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691756197423, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 500, + "installment_amount": 500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691756197423" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "id": 1691756197423, + "history_id": 1691756197423, + "date_created": "2023-08-11T12:16:37.423Z", + "date_last_updated": "2023-08-11T13:36:00.390Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-11T13:36:00.390Z", + "money_release_date": "2023-08-11T13:36:00.390Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 500,00 para a carteira iVip 1154.3638.5305.7469-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1691761354889/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691761354889, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 500, + "installment_amount": 500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691761354889" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1691761354889", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 917399, + "total_amount": 917399, + "id": 1691761354889, + "history_id": 1691761354889, + "date_created": "2023-08-11T13:42:34.889Z", + "date_last_updated": "2023-08-11T13:42:34.889Z", + "date_of_expiration": "2023-08-11T13:42:34.889Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 917.399,00 IVIP por 500,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694032195852, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1119775, + "installment_amount": 1119775, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1694032195852" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1142170.5, + "total_amount": 1142170.5, + "id": "1694032195852", + "history_id": "1694032195852", + "date_created": "2023-09-06T20:29:55.852Z", + "date_last_updated": "2023-09-06T20:29:55.852Z", + "date_of_expiration": "2023-09-06T20:29:55.852Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 1.119.775,00 IVIP com um rendimento de +22.395,5 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694041733454, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2059569, + "installment_amount": 2059569, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1694041733454" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 2059569, + "total_amount": 2059569, + "id": "1694041733454", + "history_id": "1694041733454", + "date_created": "2023-09-06T23:08:53.454Z", + "date_last_updated": "2023-09-06T23:08:53.454Z", + "date_of_expiration": "2023-10-06T23:08:53.454Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 2.059.569,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696633733454", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2059569, + "installment_amount": 2059569, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1696633733454" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "115436385305746960", + "payment_method": "staking", + "original_amount": 2100760.38, + "total_amount": 2100760.38, + "id": "1696633733454", + "history_id": "1696633733454", + "date_created": "2023-10-07T05:04:51.607Z", + "date_last_updated": "2023-10-07T05:04:51.607Z", + "date_of_expiration": "2023-10-07T05:04:51.607Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 2.059.569,00 IVIP com um rendimento de +41.191,38 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1696668184975", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1100760, + "installment_amount": 1100760, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1696668184975" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "115436385305746960", + "payment_method": "staking", + "original_amount": 1100760, + "total_amount": 1100760, + "id": "1696668184975", + "history_id": "1696668184975", + "date_created": "2023-10-07T08:43:04.975Z", + "date_last_updated": "2023-10-07T08:43:04.975Z", + "date_of_expiration": "2023-11-07T08:43:04.935Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 1.100.760,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 07/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-12T13:25:25.577Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697203525578", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1600, + "installment_amount": 1600, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1697203525578" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "115436385305746960", + "payment_method": "whatsapp", + "original_amount": 1600, + "total_amount": 1600, + "id": "1697203525578", + "history_id": "1697203525578", + "date_created": "2023-10-13T13:25:25.578Z", + "date_last_updated": "2023-10-13T13:32:21.571Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-10-13T13:32:21.571Z", + "money_release_date": "2023-10-13T13:32:21.571Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 1.600,00 BRL para a carteira iVip 1154.3638.5305.7469-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1697204057820/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697204057820", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1600, + "installment_amount": 1600, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1697204057820" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1697204057820", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "115436385305746960", + "payment_method": "swap", + "original_amount": 2947170, + "total_amount": 2947170, + "id": "1697204057820", + "history_id": "1697204057820", + "date_created": "2023-10-13T13:34:17.820Z", + "date_last_updated": "2023-10-13T13:34:17.820Z", + "date_of_expiration": "2023-10-13T13:34:17.820Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 2.947.170,00 IVIP por 1.600,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "analysisRequested": "2023-09-29T12:24:00.020Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689197249139, + "dateValidity": 1689197249139, + "totalValue": 309.3, + "currencyType": "USD", + "balancesModificacao": "2023-10-13T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115766338093199020", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679078083825, + "dateValidity": 1679078083825, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/116261495252090180/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/116261495252090180/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "36743092.00000000", + "symbol": "IVIP", + "value": 7620.42 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 10000, + "total_amount": 10000, + "history_id": 1685463962891, + "id": 1685463962891, + "date_created": "2023-05-30T16:26:02.891Z", + "date_last_updated": "2023-05-30T17:41:26.567Z", + "date_of_expiration": "2023-06-29T16:26:02.891Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-30T17:41:26.567Z", + "money_release_date": "2023-05-30T17:41:26.567Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1162.6149.5252.0901-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/116261495252090180/history/1688996128425/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688996128425, + "acquirer_reference": "", + "verification_code": 1688996128425, + "net_received_amount": 0, + "total_paid_amount": 10000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/116261495252090180/history/1688996128425", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 36743092, + "total_amount": 36743092, + "id": 1688996128425, + "date_created": "2023-07-10T13:35:28.425Z", + "date_last_updated": "2023-07-10T13:35:28.425Z", + "date_of_expiration": "2023-07-10T13:35:28.425Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688996128425, + "description": "Compra de 36.743.092,00 IVIP por 10.000,70 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/116261495252090180", + "content": { + "type": 1, + "value": { + "dataModificacao": 1685463582486, + "dateValidity": 1685463582486, + "totalValue": 5105.87, + "currencyType": "USD", + "balancesModificacao": "2023-10-02T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/116696192475580050/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/116696192475580050", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678753662620, + "dateValidity": 1678768062657, + "totalValue": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117188412170673220", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678532146149, + "dateValidity": 1678546546189, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "0.70000000", + "symbol": "IVIP", + "value": 0.00037 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1677877705308, + "id": 1677877705308, + "date_created": "2023-03-03T21:08:25.308Z", + "date_last_updated": "2023-03-03T21:16:05.656Z", + "date_of_expiration": "2023-04-02T21:08:25.308Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-03T21:16:05.656Z", + "money_release_date": "2023-03-03T21:16:05.656Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 1177.1880.3693.7100-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1678145189537/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678145189537, + "acquirer_reference": "", + "verification_code": 1678145189537, + "net_received_amount": 0, + "total_paid_amount": 200, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1678145189537", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1428465, + "total_amount": 1428465, + "id": 1678145189537, + "date_created": "2023-03-06T23:26:29.537Z", + "date_last_updated": "2023-03-06T23:26:29.537Z", + "date_of_expiration": "2023-03-06T23:26:29.537Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678145189537, + "description": "Compra de 1428465 IVIP por 200 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "history_id": 1683395429062, + "id": 1683395429062, + "date_created": "2023-05-06T17:50:29.062Z", + "date_last_updated": "2023-05-06T17:50:29.062Z", + "date_of_expiration": "2023-06-05T17:50:29.062Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1177.1880.3693.7100-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 350, + "total_amount": 350, + "history_id": 1684179573429, + "id": 1684179573429, + "date_created": "2023-05-15T19:39:33.429Z", + "date_last_updated": "2023-05-15T20:13:31.494Z", + "date_of_expiration": "2023-06-14T19:39:33.429Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-15T20:13:31.494Z", + "money_release_date": "2023-05-15T20:13:31.494Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 350,00 para a carteira iVip 1177.1880.3693.7100-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 6.00%", + "amount": 60 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1000, + "total_amount": 1060, + "history_id": 1684182120706, + "id": 1684182120706, + "date_created": "2023-05-15T20:22:00.706Z", + "date_last_updated": "2023-05-15T20:22:00.706Z", + "date_of_expiration": "2023-06-14T20:22:00.706Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1684624218931/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624218931, + "acquirer_reference": "", + "verification_code": 1684624218931, + "net_received_amount": 0, + "total_paid_amount": 1350, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1684624218931", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 6575487, + "total_amount": 6575487, + "id": 1684624218931, + "date_created": "2023-05-20T23:10:18.931Z", + "date_last_updated": "2023-05-20T23:10:18.931Z", + "date_of_expiration": "2023-05-20T23:10:18.931Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624218931, + "description": "Compra de 6.575.487,00 IVIP por 1.350,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 2982650, + "total_amount": 2982650, + "history_id": 1685388624157, + "id": 1685388624157, + "date_created": "2023-05-29T19:30:24.157Z", + "date_last_updated": "2023-05-29T19:30:24.157Z", + "date_of_expiration": "2023-05-29T19:30:24.157Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 2.982.650,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 8003952, + "total_amount": 8003952, + "history_id": 1685389940740, + "id": 1685389940740, + "date_created": "2023-05-29T19:52:20.740Z", + "date_last_updated": "2023-05-29T19:52:20.740Z", + "date_of_expiration": "2023-05-29T19:52:20.740Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 8.003.952,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685665639073/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685665639073, + "acquirer_reference": "", + "verification_code": 1685665639073, + "net_received_amount": 0, + "total_paid_amount": 3568754, + "overpaid_amount": 0, + "installment_amount": 3568754, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685665639073", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 3568754, + "total_amount": 3568754, + "id": 1685665639073, + "date_created": "2023-06-02T00:27:19.073Z", + "date_last_updated": "2023-06-02T00:27:19.073Z", + "date_of_expiration": "2023-07-02T00:27:19.073Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685665639073, + "wasDebited": true, + "description": "Investimento de 3.568.754,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685668997292/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685668997292, + "acquirer_reference": "", + "verification_code": 1685668997292, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685668997292", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1685668997292, + "date_created": "2023-06-02T01:23:17.292Z", + "date_last_updated": "2023-06-02T01:23:17.292Z", + "date_of_expiration": "2023-12-02T01:23:17.292Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685668997292, + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669010794/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685669010794, + "acquirer_reference": "", + "verification_code": 1685669010794, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669010794", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1685669010794, + "date_created": "2023-06-02T01:23:30.794Z", + "date_last_updated": "2023-06-02T01:23:30.794Z", + "date_of_expiration": "2024-06-02T01:23:30.794Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685669010794, + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669017906/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685669017906, + "acquirer_reference": "", + "verification_code": 1685669017906, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 1000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669017906", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": 1685669017906, + "date_created": "2023-06-02T01:23:37.906Z", + "date_last_updated": "2023-06-02T01:23:37.906Z", + "date_of_expiration": "2025-06-02T01:23:37.906Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685669017906, + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 470112, + "total_amount": 470112, + "history_id": 1686742076839, + "id": 1686742076839, + "date_created": "2023-06-14T11:27:56.839Z", + "date_last_updated": "2023-06-14T11:27:56.839Z", + "date_of_expiration": "2023-06-14T11:27:56.839Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 470.112,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 530, + "total_amount": 530, + "history_id": 1686831828859, + "id": 1686831828859, + "date_created": "2023-06-15T12:23:48.859Z", + "date_last_updated": "2023-06-15T12:23:48.859Z", + "date_of_expiration": "2023-07-15T12:23:48.859Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 530, + "total_amount": 530, + "history_id": 1686831937569, + "id": 1686831937569, + "date_created": "2023-06-15T12:25:37.569Z", + "date_last_updated": "2023-06-15T14:10:38.027Z", + "date_of_expiration": "2023-07-15T12:25:37.569Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-06-15T14:10:38.027Z", + "money_release_date": "2023-06-15T14:10:38.027Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838699070/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 1, + "payment_method_reference_id": 1686838699070, + "acquirer_reference": "", + "verification_code": 1686838699070, + "net_received_amount": 0, + "total_paid_amount": 530, + "overpaid_amount": 0, + "installment_amount": 530, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838699070", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 530, + "total_amount": 530, + "id": 1686838699070, + "contract_id": "1684182120706", + "date_created": "2023-06-15T14:18:19.070Z", + "date_last_updated": "2023-06-15T14:18:19.070Z", + "date_of_expiration": "2023-06-15T14:18:19.070Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1686838699070, + "description": "Pagamento de fatura 1 de 2 no valor de 530,00 BRL referente ao contrato 1684182120706" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 3897629, + "total_amount": 3897629, + "history_id": 1686838872989, + "id": 1686838872989, + "date_created": "2023-06-15T14:21:12.989Z", + "date_last_updated": "2023-06-15T14:21:12.989Z", + "date_of_expiration": "2023-06-15T14:21:12.989Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 3.897.629,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1688400243137/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400243137, + "acquirer_reference": "", + "verification_code": 1688400243137, + "net_received_amount": 0, + "total_paid_amount": 3568754, + "overpaid_amount": 0, + "installment_amount": 3568754, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1688400243137", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 3640129.08, + "total_amount": 3640129.08, + "id": 1688400243137, + "date_created": "2023-07-03T16:04:03.137Z", + "date_last_updated": "2023-07-03T16:04:03.137Z", + "date_of_expiration": "2023-07-03T16:04:03.137Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400243137, + "wasDebited": true, + "description": "Resgate do investimento staking de 3.568.754,00 IVIP com um rendimento de +71.375,08 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 4926607, + "total_amount": 4926607, + "history_id": 1688424411822, + "id": 1688424411822, + "date_created": "2023-07-03T22:46:51.822Z", + "date_last_updated": "2023-07-03T22:46:51.822Z", + "date_of_expiration": "2023-07-03T22:46:51.822Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 4.926.607,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1082278, + "total_amount": 1082278, + "history_id": 1689020922030, + "id": 1689020922030, + "date_created": "2023-07-10T20:28:42.030Z", + "date_last_updated": "2023-07-10T20:43:39.362Z", + "date_of_expiration": "2023-07-10T20:28:42.030Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-07-10T20:43:39.362Z", + "money_release_date": "2023-07-10T20:43:39.362Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 1.082.278,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5031032, + "total_amount": 5031032, + "history_id": 1689102393644, + "id": 1689102393644, + "date_created": "2023-07-11T19:06:33.644Z", + "date_last_updated": "2023-07-11T19:06:33.644Z", + "date_of_expiration": "2023-07-11T19:06:33.644Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 5.031.032,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 5995148, + "total_amount": 5995148, + "history_id": 1689189282410, + "id": 1689189282410, + "date_created": "2023-07-12T19:14:42.410Z", + "date_last_updated": "2023-07-12T19:14:42.410Z", + "date_of_expiration": "2023-07-12T19:14:42.410Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 5.995.148,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 1000000, + "total_amount": 1000000, + "history_id": 1689258056089, + "id": 1689258056089, + "date_created": "2023-07-13T14:20:56.089Z", + "date_last_updated": "2023-07-13T14:20:56.089Z", + "date_of_expiration": "2023-07-13T14:20:56.089Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 1.000.000,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 530, + "total_amount": 530, + "history_id": 1689390236969, + "id": 1689390236969, + "date_created": "2023-07-15T03:03:56.969Z", + "date_last_updated": "2023-07-15T03:03:56.969Z", + "date_of_expiration": "2023-08-14T03:03:56.969Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 530, + "total_amount": 530, + "history_id": 1689424277440, + "id": 1689424277440, + "date_created": "2023-07-15T12:31:17.440Z", + "date_last_updated": "2023-07-15T12:31:17.440Z", + "date_of_expiration": "2023-08-14T12:31:17.440Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 530, + "total_amount": 530, + "history_id": 1689612021512, + "id": 1689612021512, + "date_created": "2023-07-17T16:40:21.512Z", + "date_last_updated": "2023-07-25T18:05:52.467Z", + "date_of_expiration": "2023-08-16T16:40:21.512Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-25T18:05:52.467Z", + "money_release_date": "2023-07-25T18:05:52.467Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 2000000, + "total_amount": 2000000, + "history_id": 1689612840534, + "id": 1689612840534, + "date_created": "2023-07-17T16:54:00.534Z", + "date_last_updated": "2023-07-17T16:54:00.534Z", + "date_of_expiration": "2023-07-17T16:54:00.534Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 2.000.000,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1690326796884/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 0, + "payment_method_reference_id": 1690326796884, + "acquirer_reference": "", + "verification_code": 1690326796884, + "net_received_amount": 0, + "total_paid_amount": 530, + "overpaid_amount": 0, + "installment_amount": 530, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1690326796884", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 530, + "total_amount": 530, + "id": 1690326796884, + "contract_id": "1684182120706", + "date_created": "2023-07-25T23:13:16.884Z", + "date_last_updated": "2023-07-25T23:13:16.884Z", + "date_of_expiration": "2023-07-25T23:13:16.884Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1690326796884, + "description": "Pagamento de fatura 2 de 2 no valor de 530,00 BRL referente ao contrato 1684182120706" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690327152842, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 6990049, + "installment_amount": 6990049, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1690327152842" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 6990049, + "total_amount": 6990049, + "id": 1690327152842, + "history_id": 1690327152842, + "date_created": "2023-07-25T23:19:12.842Z", + "date_last_updated": "2023-07-26T17:34:13.723Z", + "date_of_expiration": "2023-07-25T23:19:12.842Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_amount", + "money_release_date": "2023-07-26T17:34:13.723Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Saque de 6.990.049,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690371637044, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3280090, + "installment_amount": 3280090, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1690371637044" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 3280090, + "total_amount": 3280090, + "id": 1690371637044, + "history_id": 1690371637044, + "date_created": "2023-07-26T11:40:37.044Z", + "date_last_updated": "2023-07-26T17:33:05.648Z", + "date_of_expiration": "2023-07-26T11:40:37.044Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": "2023-07-26T17:33:05.648Z", + "money_release_date": "2023-07-26T17:33:05.648Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 3.280.090,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694007742356, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3678031, + "installment_amount": 3678031, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1694007742356" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 3678031, + "total_amount": 3678031, + "id": "1694007742356", + "history_id": "1694007742356", + "date_created": "2023-09-06T13:42:22.356Z", + "date_last_updated": "2023-09-06T13:42:22.356Z", + "date_of_expiration": "2023-10-06T13:42:22.356Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 3.678.031,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696599770690, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3678031, + "installment_amount": 3678031, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1696599770690" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "117718803693710020", + "payment_method": "staking", + "original_amount": 3751591.62, + "total_amount": 3751591.62, + "id": "1696599770690", + "history_id": "1696599770690", + "date_created": "2023-10-06T13:42:50.690Z", + "date_last_updated": "2023-10-06T13:42:50.690Z", + "date_of_expiration": "2023-10-06T13:42:50.690Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 3.678.031,00 IVIP com um rendimento de +73.560,62 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696599812843, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 3783519, + "installment_amount": 3783519, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1696599812843" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "117718803693710020", + "payment_method": "staking", + "original_amount": 3783519, + "total_amount": 3783519, + "id": "1696599812843", + "history_id": "1696599812843", + "date_created": "2023-10-06T13:43:32.843Z", + "date_last_updated": "2023-10-06T13:43:32.843Z", + "date_of_expiration": "2023-11-06T13:43:32.817Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 3.783.519,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 6.00%", + "amount": 60 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706", + "content": { + "type": 1, + "value": { + "id": 1684182120706, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1060, + "installments": 2, + "installment_amount": 530, + "date_created": "2023-05-15T20:22:00.706Z", + "history_id": 1684182120706, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 6.00%", + "amount": 60 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706", + "content": { + "type": 1, + "value": { + "id": 1684182120706, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1060, + "installments": 2, + "installment_amount": 530, + "date_created": "2023-05-15T20:22:00.706Z", + "history_id": 1684182120706, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 0, + "analysisRequested": "2023-05-06T03:39:28.087Z", + "lastReview": "2023-05-06T03:39:53.183Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677877676290, + "dateValidity": 1678707203279, + "totalValue": 2242.137, + "currencyType": "USD", + "balancesModificacao": "2023-10-15T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "5.00000000", + "symbol": "BRL", + "value": 0.98 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "0.20000000", + "symbol": "IVIP", + "value": 0.000021 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1684492352568, + "id": 1684492352568, + "date_created": "2023-05-19T10:32:32.568Z", + "date_last_updated": "2023-05-19T10:35:07.764Z", + "date_of_expiration": "2023-06-18T10:32:32.568Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-19T10:35:07.764Z", + "money_release_date": "2023-05-19T10:35:07.764Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 1181.6054.9969.9842-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1684624220546/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624220546, + "acquirer_reference": "", + "verification_code": 1684624220546, + "net_received_amount": 0, + "total_paid_amount": 200, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1684624220546", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 974146, + "total_amount": 974146, + "id": 1684624220546, + "date_created": "2023-05-20T23:10:20.546Z", + "date_last_updated": "2023-05-20T23:10:20.546Z", + "date_of_expiration": "2023-05-20T23:10:20.546Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624220546, + "description": "Compra de 974.146,00 IVIP por 200,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "history_id": 1684625319623, + "id": 1684625319623, + "date_created": "2023-05-20T23:28:39.623Z", + "date_last_updated": "2023-05-20T23:28:39.623Z", + "date_of_expiration": "2023-06-19T23:28:39.623Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625351966/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684625351966, + "acquirer_reference": "", + "verification_code": 1684625351966, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625351966", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 4870731, + "total_amount": 4870731, + "id": 1684625351966, + "date_created": "2023-05-20T23:29:11.966Z", + "date_last_updated": "2023-05-20T23:29:11.966Z", + "date_of_expiration": "2023-05-20T23:29:11.966Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684625351966, + "description": "Compra de 4.870.731,00 IVIP por 1.000,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 400, + "total_amount": 400, + "history_id": 1685027205516, + "id": 1685027205516, + "date_created": "2023-05-25T15:06:45.516Z", + "date_last_updated": "2023-05-28T22:24:43.393Z", + "date_of_expiration": "2023-06-24T15:06:45.516Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-28T22:24:43.393Z", + "money_release_date": "2023-05-28T22:24:43.393Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 400,00 para a carteira iVip 1181.6054.9969.9842-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685234226998/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685234226998, + "acquirer_reference": "", + "verification_code": 1685234226998, + "net_received_amount": 0, + "total_paid_amount": 41, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685234226998", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPAY", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 10000000, + "total_amount": 10000000, + "id": 1685234226998, + "date_created": "2023-05-28T00:37:06.998Z", + "date_last_updated": "2023-05-28T00:37:06.998Z", + "date_of_expiration": "2023-05-28T00:37:06.998Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIPAY", + "history_id": 1685234226998, + "description": "Compra de 10.000.000,00 IVIPAY por 1.000.000,00 IVIP estabilizando US$ 41,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685456788341/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685456788341, + "acquirer_reference": "", + "verification_code": 1685456788341, + "net_received_amount": 0, + "total_paid_amount": 10000000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685456788341", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1000000, + "total_amount": 1000000, + "id": 1685456788341, + "date_created": "2023-05-30T14:26:28.341Z", + "date_last_updated": "2023-05-30T14:26:28.341Z", + "date_of_expiration": "2023-05-30T14:26:28.341Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "status_detail": "cc_rejected_insufficient_amount", + "currency_id": "IVIP", + "history_id": 1685456788341, + "description": "Compra de 1.000.000,00 IVIP por 10.000.000,00 IVIPAY" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665895143/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685665895143, + "acquirer_reference": "", + "verification_code": 1685665895143, + "net_received_amount": 0, + "total_paid_amount": 1000000, + "overpaid_amount": 0, + "installment_amount": 1000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665895143", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000000, + "total_amount": 1000000, + "id": 1685665895143, + "date_created": "2023-06-02T00:31:35.143Z", + "date_last_updated": "2023-06-02T00:31:35.143Z", + "date_of_expiration": "2025-06-02T00:31:35.143Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685665895143, + "description": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665913616/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685665913616, + "acquirer_reference": "", + "verification_code": 1685665913616, + "net_received_amount": 0, + "total_paid_amount": 1000000, + "overpaid_amount": 0, + "installment_amount": 1000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665913616", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000000, + "total_amount": 1000000, + "id": 1685665913616, + "date_created": "2023-06-02T00:31:53.616Z", + "date_last_updated": "2023-06-02T00:31:53.616Z", + "date_of_expiration": "2024-06-02T00:31:53.616Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685665913616, + "description": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665938582/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685665938582, + "acquirer_reference": "", + "verification_code": 1685665938582, + "net_received_amount": 0, + "total_paid_amount": 1844877, + "overpaid_amount": 0, + "installment_amount": 1844877, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665938582", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1844877, + "total_amount": 1844877, + "id": 1685665938582, + "date_created": "2023-06-02T00:32:18.582Z", + "date_last_updated": "2023-06-02T00:32:18.582Z", + "date_of_expiration": "2023-12-02T00:32:18.582Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685665938582, + "wasDebited": true, + "description": "Investimento de 1.844.877,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665980650/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685665980650, + "acquirer_reference": "", + "verification_code": 1685665980650, + "net_received_amount": 0, + "total_paid_amount": 1000000, + "overpaid_amount": 0, + "installment_amount": 1000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665980650", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1000000, + "total_amount": 1000000, + "id": 1685665980650, + "date_created": "2023-06-02T00:33:00.650Z", + "date_last_updated": "2023-06-02T00:33:00.650Z", + "date_of_expiration": "2023-07-02T00:33:00.650Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685665980650, + "description": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685743358755/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685743358755, + "acquirer_reference": "", + "verification_code": 1685743358755, + "net_received_amount": 0, + "total_paid_amount": 400, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685743358755", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1403508, + "total_amount": 1403508, + "id": 1685743358755, + "date_created": "2023-06-02T22:02:38.755Z", + "date_last_updated": "2023-06-02T22:02:38.755Z", + "date_of_expiration": "2023-06-02T22:02:38.755Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685743358755, + "description": "Compra de 1.403.508,00 IVIP por 400,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 250, + "total_amount": 250, + "history_id": 1686581106502, + "id": 1686581106502, + "date_created": "2023-06-12T14:45:06.502Z", + "date_last_updated": "2023-06-12T15:20:07.910Z", + "date_of_expiration": "2023-07-12T14:45:06.502Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-06-12T15:20:07.910Z", + "money_release_date": "2023-06-12T15:20:07.910Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 250,00 para a carteira iVip 1181.6054.9969.9842-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1686597954870/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 3, + "payment_method_reference_id": 1686597954870, + "acquirer_reference": "", + "verification_code": 1686597954870, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1686597954870", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1686597954870, + "contract_id": "1684625319623", + "date_created": "2023-06-12T19:25:54.870Z", + "date_last_updated": "2023-06-12T19:25:54.870Z", + "date_of_expiration": "2023-06-12T19:25:54.870Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1686597954870, + "description": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1687313544975/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687313544975, + "acquirer_reference": "", + "verification_code": 1687313544975, + "net_received_amount": 0, + "total_paid_amount": 2000000, + "overpaid_amount": 0, + "installment_amount": 2000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1687313544975", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 2000000, + "total_amount": 2000000, + "id": 1687313544975, + "date_created": "2023-06-21T02:12:24.975Z", + "date_last_updated": "2023-06-21T02:12:24.975Z", + "date_of_expiration": "2024-06-21T02:12:24.975Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687313544975, + "description": "Investimento de 2.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400283150/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400283150, + "acquirer_reference": "", + "verification_code": 1688400283150, + "net_received_amount": 0, + "total_paid_amount": 1000000, + "overpaid_amount": 0, + "installment_amount": 1000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400283150", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 1020000, + "total_amount": 1020000, + "id": 1688400283150, + "date_created": "2023-07-03T16:04:43.150Z", + "date_last_updated": "2023-07-03T16:04:43.150Z", + "date_of_expiration": "2023-07-03T16:04:43.150Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400283150, + "wasDebited": true, + "description": "Resgate do investimento staking de 1.000.000,00 IVIP com um rendimento de +20.000,00 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400827775/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400827775, + "acquirer_reference": "", + "verification_code": 1688400827775, + "net_received_amount": 0, + "total_paid_amount": 3268385, + "overpaid_amount": 0, + "installment_amount": 3268385, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400827775", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 3268385, + "total_amount": 3268385, + "id": 1688400827775, + "date_created": "2023-07-03T16:13:47.775Z", + "date_last_updated": "2023-07-03T16:13:47.775Z", + "date_of_expiration": "2023-08-03T16:13:47.775Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400827775, + "description": "Investimento de 3.268.385,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1689085555442, + "id": 1689085555442, + "date_created": "2023-07-11T14:25:55.442Z", + "date_last_updated": "2023-07-12T13:26:43.996Z", + "date_of_expiration": "2023-08-10T14:25:55.442Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-12T13:26:43.996Z", + "money_release_date": "2023-07-12T13:26:43.996Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 1181.6054.9969.9842-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1689168458989/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 3, + "payment_method_reference_id": 1689168458989, + "acquirer_reference": "", + "verification_code": 1689168458989, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1689168458989", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1689168458989, + "contract_id": "1684625319623", + "date_created": "2023-07-12T13:27:38.989Z", + "date_last_updated": "2023-07-12T13:27:38.989Z", + "date_of_expiration": "2023-07-12T13:27:38.989Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1689168458989, + "description": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1691079300942/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1691079300942, + "acquirer_reference": "", + "verification_code": 1691079300942, + "net_received_amount": 0, + "total_paid_amount": 3268385, + "overpaid_amount": 0, + "installment_amount": 3268385, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1691079300942", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 3333752.7, + "total_amount": 3333752.7, + "id": 1691079300942, + "date_created": "2023-08-03T16:15:00.942Z", + "date_last_updated": "2023-08-03T16:15:00.942Z", + "date_of_expiration": "2023-08-03T16:15:00.942Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1691079300942, + "wasDebited": true, + "description": "Resgate do investimento staking de 3.268.385,00 IVIP com um rendimento de +65.367,7 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691084485881, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1488875, + "installment_amount": 1488875, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1691084485881" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1488875, + "total_amount": 1488875, + "id": 1691084485881, + "history_id": 1691084485881, + "date_created": "2023-08-03T17:41:25.881Z", + "date_last_updated": "2023-08-03T17:41:25.881Z", + "date_of_expiration": "2023-09-03T17:41:25.881Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 1.488.875,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-13T13:01:20.318Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692018080319, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 250, + "installment_amount": 250, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1692018080319" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 250, + "total_amount": 250, + "id": 1692018080319, + "history_id": 1692018080319, + "date_created": "2023-08-14T13:01:20.319Z", + "date_last_updated": "2023-08-14T13:42:27.554Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-14T13:42:27.554Z", + "money_release_date": "2023-08-14T13:42:27.554Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 250,00 para a carteira iVip 1181.6054.9969.9842-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1692288719964/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 2, + "payment_method_reference_id": 1692288719964, + "acquirer_reference": "", + "verification_code": 1692288719964, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1692288719964", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1692288719964, + "contract_id": "1684625319623", + "date_created": "2023-08-17T16:11:59.964Z", + "date_last_updated": "2023-08-17T16:11:59.964Z", + "date_of_expiration": "2023-08-17T16:11:59.964Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1692288719964, + "description": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693763097865, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1488875, + "installment_amount": 1488875, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1693763097865" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1518652.5, + "total_amount": 1518652.5, + "id": "1693763097865", + "history_id": "1693763097865", + "date_created": "2023-09-03T17:44:57.865Z", + "date_last_updated": "2023-09-03T17:44:57.865Z", + "date_of_expiration": "2023-09-03T17:44:57.865Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 1.488.875,00 IVIP com um rendimento de +29.777,5 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693915531936, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1487490, + "installment_amount": 1487490, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1693915531936" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1487490, + "total_amount": 1487490, + "id": "1693915531936", + "history_id": "1693915531936", + "date_created": "2023-09-05T12:05:31.936Z", + "date_last_updated": "2023-10-04T13:04:00.989Z", + "date_of_expiration": "2023-10-05T12:05:31.936Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": "2023-10-04T13:04:00.989Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Investimento de 1.487.490,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-06T13:21:36.774Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694006496775, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1694006496775" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 220, + "total_amount": 220, + "id": "1694006496775", + "history_id": "1694006496775", + "date_created": "2023-09-06T13:21:36.775Z", + "date_last_updated": "2023-09-06T13:32:40.077Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-09-06T13:32:40.077Z", + "money_release_date": "2023-09-06T13:32:40.077Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 220,00 BRL para a carteira iVip 1181.6054.9969.9842-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694572285717, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 4, + "installments_payable": 1, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1694572285717" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": "1694572285717", + "history_id": "1694572285717", + "date_created": "2023-09-13T02:31:25.717Z", + "date_last_updated": "2023-09-13T02:31:25.717Z", + "date_of_expiration": "2023-09-13T02:31:25.717Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696081581090, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 40, + "installment_amount": 40, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696081581090" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "118160549969984260", + "payment_method": "staking", + "original_amount": 40, + "total_amount": 40, + "id": "1696081581090", + "history_id": "1696081581090", + "date_created": "2023-09-30T13:46:21.090Z", + "date_last_updated": "2023-09-30T13:46:21.090Z", + "date_of_expiration": "2024-07-30T13:46:21.089Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "description": "Investimento de 40,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 30/07/2024 - D03OS92M" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-30T13:48:22.609Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696081702609, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 225, + "installment_amount": 225, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696081702609" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "118160549969984260", + "payment_method": "whatsapp", + "original_amount": 225, + "total_amount": 225, + "id": "1696081702609", + "history_id": "1696081702609", + "date_created": "2023-09-30T13:48:22.609Z", + "date_last_updated": "2023-09-30T14:52:32.609Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-09-30T14:52:32.609Z", + "money_release_date": "2023-09-30T14:52:32.609Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 225,00 BRL para a carteira iVip 1181.6054.9969.9842-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696085699487, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 5, + "installments_payable": 0, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696085699487" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "wallet_id": "118160549969984260", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": "1696085699487", + "history_id": "1696085699487", + "date_created": "2023-09-30T14:54:59.487Z", + "date_last_updated": "2023-09-30T14:54:59.487Z", + "date_of_expiration": "2023-09-30T14:54:59.487Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696349167615, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 31163, + "installment_amount": 31163, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696349167615" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "118160549969984260", + "payment_method": "staking", + "original_amount": 31163, + "total_amount": 31163, + "id": "1696349167615", + "history_id": "1696349167615", + "date_created": "2023-10-03T16:06:07.615Z", + "date_last_updated": "2023-10-03T16:06:07.615Z", + "date_of_expiration": "2025-10-03T16:06:07.614Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 31.163,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 03/10/2025 - P9A02KSL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696462181596, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1487490, + "installment_amount": 1487490, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696462181596" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "118160549969984260", + "payment_method": "staking", + "original_amount": 1487490, + "total_amount": 1487490, + "id": "1696462181596", + "history_id": "1696462181596", + "date_created": "2023-10-04T23:29:41.596Z", + "date_last_updated": "2023-10-04T23:29:41.596Z", + "date_of_expiration": "2023-11-04T23:29:41.513Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 1.487.490,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623", + "content": { + "type": 1, + "value": { + "id": 1684625319623, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": "2023-05-20T23:28:39.623Z", + "history_id": 1684625319623, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623", + "content": { + "type": 1, + "value": { + "id": 1684625319623, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": "2023-05-20T23:28:39.623Z", + "history_id": 1684625319623, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623", + "content": { + "type": 1, + "value": { + "id": 1684625319623, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": "2023-05-20T23:28:39.623Z", + "history_id": 1684625319623, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623", + "content": { + "type": 1, + "value": { + "id": 1684625319623, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": "2023-05-20T23:28:39.623Z", + "history_id": 1684625319623, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-13T02:31:25.736Z", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623", + "content": { + "type": 1, + "value": { + "id": 1684625319623, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": "2023-05-20T23:28:39.623Z", + "history_id": 1684625319623, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-30T14:54:59.499Z", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 400, + "analysisRequested": "2023-05-20T21:32:58.558Z", + "lastReview": "2023-05-20T21:33:49.410Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684492261254, + "dateValidity": 1684492261254, + "totalValue": 1371.271, + "currencyType": "USD", + "balancesModificacao": "2023-10-15T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/120996359783253070", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678148092390, + "dateValidity": 1678198916837, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "9.00000000", + "symbol": "BRL", + "value": 1.74 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "443235.00000000", + "symbol": "IVIP", + "value": 70.34 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1684273040978, + "id": 1684273040978, + "date_created": "2023-05-16T21:37:20.978Z", + "date_last_updated": "2023-05-17T13:45:34.751Z", + "date_of_expiration": "2023-06-15T21:37:20.978Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-17T13:45:34.751Z", + "money_release_date": "2023-05-17T13:45:34.751Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1218.4763.4268.5788-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624212629/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624212629, + "acquirer_reference": "", + "verification_code": 1684624212629, + "net_received_amount": 0, + "total_paid_amount": 20.09, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624212629", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 97852, + "total_amount": 97852, + "id": 1684624212629, + "date_created": "2023-05-20T23:10:12.629Z", + "date_last_updated": "2023-05-20T23:10:12.629Z", + "date_of_expiration": "2023-05-20T23:10:12.629Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624212629, + "description": "Compra de 97.852,00 IVIP por 20,09 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624265601/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624265601, + "acquirer_reference": "", + "verification_code": 1684624265601, + "net_received_amount": 0, + "total_paid_amount": 70.91, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624265601", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 345383, + "total_amount": 345383, + "id": 1684624265601, + "date_created": "2023-05-20T23:11:05.601Z", + "date_last_updated": "2023-05-20T23:11:05.601Z", + "date_of_expiration": "2023-05-20T23:11:05.601Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624265601, + "description": "Compra de 345.383,00 IVIP por 70,91 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696563980031, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/121847634268578820/history/1696563980031" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "121847634268578820", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": "1696563980031", + "history_id": "1696563980031", + "date_created": "2023-10-06T03:46:20.031Z", + "date_last_updated": "2023-10-06T03:46:20.031Z", + "date_of_expiration": "2023-11-06T03:46:19.931Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684189916126, + "dateValidity": 1684189916126, + "totalValue": 20.09, + "currencyType": "USD", + "balancesModificacao": "2023-10-06T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-01T15:25:22.792Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690989922793, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1690989922793" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "id": 1690989922793, + "history_id": 1690989922793, + "date_created": "2023-08-02T15:25:22.793Z", + "date_last_updated": "2023-08-02T19:55:14.626Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-02T19:55:14.626Z", + "money_release_date": "2023-08-02T19:55:14.626Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 100,00 para a carteira iVip 1227.6483.0599.8103-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006310448/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691006310448, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100, + "installment_amount": 100, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691006310448" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006310448", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 108815, + "total_amount": 108815, + "id": 1691006310448, + "history_id": 1691006310448, + "date_created": "2023-08-02T19:58:30.448Z", + "date_last_updated": "2023-08-02T19:58:30.448Z", + "date_of_expiration": "2023-08-02T19:58:30.448Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 108.815,00 IVIP por 100,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691006485984, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 108815, + "installment_amount": 108815, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691006485984" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 108815, + "total_amount": 108815, + "id": 1691006485984, + "history_id": 1691006485984, + "date_created": "2023-08-02T20:01:25.984Z", + "date_last_updated": "2023-08-02T20:01:25.984Z", + "date_of_expiration": "2025-08-02T20:01:25.917Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 108.815,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 8/2/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-08T12:47:40.996Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691585260996, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691585260996" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 50, + "total_amount": 50, + "id": 1691585260996, + "history_id": 1691585260996, + "date_created": "2023-08-09T12:47:40.996Z", + "date_last_updated": "2023-08-09T13:57:20.313Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-09T13:57:20.313Z", + "money_release_date": "2023-08-09T13:57:20.313Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 50,00 para a carteira iVip 1227.6483.0599.8103-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589566120/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691589566120, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 50, + "installment_amount": 50, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691589566120" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589566120", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 76363, + "total_amount": 76363, + "id": 1691589566120, + "history_id": 1691589566120, + "date_created": "2023-08-09T13:59:26.120Z", + "date_last_updated": "2023-08-09T13:59:26.120Z", + "date_of_expiration": "2023-08-09T13:59:26.120Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 76.363,00 IVIP por 50,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719319, + "modified": 1700589719319 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691589908652, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20000, + "installment_amount": 20000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691589908652" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 20000, + "total_amount": 20000, + "id": 1691589908652, + "history_id": 1691589908652, + "date_created": "2023-08-09T14:05:08.652Z", + "date_last_updated": "2023-08-09T14:05:08.652Z", + "date_of_expiration": "2023-09-09T14:05:08.648Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 20.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/9/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694268632615, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20000, + "installment_amount": 20000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694268632615" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 20400, + "total_amount": 20400, + "id": "1694268632615", + "history_id": "1694268632615", + "date_created": "2023-09-09T14:10:32.615Z", + "date_last_updated": "2023-09-09T14:10:32.615Z", + "date_of_expiration": "2023-09-09T14:10:32.615Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 20.000,00 IVIP com um rendimento de +400,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694304834658, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 63131, + "installment_amount": 63131, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694304834658" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 63131, + "total_amount": 63131, + "id": "1694304834658", + "history_id": "1694304834658", + "date_created": "2023-09-10T00:13:54.658Z", + "date_last_updated": "2023-10-04T23:31:59.684Z", + "date_of_expiration": "2023-10-10T00:13:54.657Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": "2023-10-04T23:31:59.684Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Investimento de 63.131,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 09/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-14T18:40:41.417Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694716841418, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694716841418" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1694716841418", + "history_id": "1694716841418", + "date_created": "2023-09-14T18:40:41.418Z", + "date_last_updated": "2023-09-14T19:10:39.334Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-09-14T19:10:39.334Z", + "money_release_date": "2023-09-14T19:10:39.334Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 20,00 BRL para a carteira iVip 1227.6483.0599.8103-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694723873975/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694723873975, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694723873975" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694723873975", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 22823, + "total_amount": 22823, + "id": "1694723873975", + "history_id": "1694723873975", + "date_created": "2023-09-14T20:37:53.975Z", + "date_last_updated": "2023-09-14T20:37:53.975Z", + "date_of_expiration": "2023-09-14T20:37:53.975Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 22.823,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-16T17:35:37.888Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694885737888, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 28.17, + "installment_amount": 28.17, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694885737888" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 28.17, + "total_amount": 28.17, + "id": "1694885737888", + "history_id": "1694885737888", + "date_created": "2023-09-16T17:35:37.888Z", + "date_last_updated": "2023-09-16T17:35:37.888Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 28,17 BRL para a carteira iVip 1227.6483.0599.8103-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-19T19:20:50.157Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695151250157, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 29370, + "installment_amount": 29370, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695151250157" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 29370, + "total_amount": 29370, + "id": "1695151250157", + "history_id": "1695151250157", + "date_created": "2023-09-19T19:20:50.157Z", + "date_last_updated": "2023-09-19T20:56:06.903Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "date_approved": "2023-09-19T20:56:06.903Z", + "money_release_date": "2023-09-19T20:56:06.903Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 29.370,00 IVIP para a carteira iVip 1227.6483.0599.8103-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695152833307, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 36455, + "installment_amount": 36455, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695152833307" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 36455, + "total_amount": 36455, + "id": "1695152833307", + "history_id": "1695152833307", + "date_created": "2023-09-19T19:47:13.307Z", + "date_last_updated": "2023-09-25T21:44:43.636Z", + "date_of_expiration": "2024-03-19T19:47:13.306Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": "2023-09-25T21:44:43.636Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Investimento de 36.455,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695158486667, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 29370, + "installment_amount": 29370, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695158486667" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 29370, + "total_amount": 29370, + "id": "1695158486667", + "history_id": "1695158486667", + "date_created": "2023-09-19T21:21:26.667Z", + "date_last_updated": "2023-09-25T21:45:21.877Z", + "date_of_expiration": "2024-09-19T21:21:26.665Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_insufficient_staked_amount", + "money_release_date": "2023-09-25T21:45:21.877Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Investimento de 29.370,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 19/09/2024 - CLSMJY90" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696466013923, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 128956, + "installment_amount": 128956, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1696466013923" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "122764830599810350", + "payment_method": "staking", + "original_amount": 128956, + "total_amount": 128956, + "id": "1696466013923", + "history_id": "1696466013923", + "date_created": "2023-10-05T00:33:33.923Z", + "date_last_updated": "2023-10-05T00:33:33.923Z", + "date_of_expiration": "2023-11-05T00:33:33.853Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 128.956,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350", + "content": { + "type": 1, + "value": { + "dataModificacao": 1690989855646, + "dateValidity": 1690989855726, + "currencyType": "USD", + "balancesModificacao": "2023-10-15T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "7503835.00000000", + "symbol": "IVIP", + "value": 789.35 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 1.00%", + "amount": 5 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 505, + "overpaid_amount": 0, + "installment_amount": 0, + "ticket_url": "https://www.mercadopago.com.br/payments/55900907390/ticket?caller_id=1310149122&hash=b46698ba-1661-4287-87f2-802c80f36c71", + "qr_code": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406505.005802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter559009073906304E54F", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI3UlEQVR42u3dUY7jNgwGYN3A97+lbqAC7WITi7+UdFsUXevLw2BmYkuf/UaQItv4jT690dLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tL++9o2f64f//vx7fXzkuvnHddfi7Tpt9dt79fdNvrz4h8/Rrl3YtDS0tLS0tLS0tLS0h6indasqNfq7yv19wcq5P6+83Tx68f7bQsGLS0tLS0tLS0tLS3tEdr3AHIyTtAX5bXZ9AS9xeRhWmDatzBoaWlpaWlpaWlpaWmP1Y57nPjaZ5RYb4oTp6xd/rPGk7S0tLS0tLS0tLS0tLQt3TqRX3FiobR7Ou/2uClbOF1MS0tLS0tLS0tLS0t7tjbj07ZVNq0+/ZYeY3PE7ldqRGlpaWlpaWlpaWlpaX937WLv//rHP+ipQktLS0tLS0tLS0tL+ztr958SVKbiyikcrCWam1UWR+fue9DS0tLS0tLS0tLS0j5buyia3FRi3u7dx6KlTnNqOjnClIBNdo+WlpaWlpaWlpaWlvZ52tRTfwr9Xp6prWQpuGzhi15qLV8vaDocl5v809LS0tLS0tLS0tLSPltbAC142uc/P0aW03uYNk8T2GhpaWlpaWlpaWlpaU/Ublo+jk0OrlRdXuF/y6rLOlB7W3VJS0tLS0tLS0tLS0v7KG1qzz+Fg+WLser5P8JEgF54OW9Yw1BaWlpaWlpaWlpaWtpDtK0cV0tJvLRw7k2yGIBd3kMPT5/xtLS0tLS0tLS0tLS0z9ZO46db6eeYz7ZNHUna/XGXSby+maX99dk9WlpaWlpaWlpaWlraB2lzhq7duz32kMnrIca8cjOS8kau/JZSsxRaWlpaWlpaWlpaWtpztMviyuIepelkplylHHOaIVDqPkdw09LS0tLS0tLS0tLSPl07Nq39U8f9svdVEoCpCDMXZvYw263teqrQ0tLS0tLS0tLS0tI+Tbtppz9ycFd4U9FkyyMApi2X1Zlfz4ajpaWlpaWlpaWlpaV9hnbZRuRThu4q3frTPOw8EWB6tBGSgrS0tLS0tLS0tLS0tIdpdyfVcjFkjQlLFLk4XZfzgVOyj5aWlpaWlpaWlpaW9hzt2IZ+S9kojf/zoy3yfOlIXH4jtLS0tLS0tLS0tLS0T9f27cG1EXpBVsr7dWMzKmBZsbkJV2lpaWlpaWlpaWlpaZ+uHe/JuU3BZSvdR0oEOkozkoJvYQxbDSo/xLy0tLS0tLS0tLS0tLQP0qaWj2ls2nTHMnX3aYE0261mBmlpaWlpaWlpaWlpac/RptBvGQQuY8cpFi0D1K5Qsbn8s3/I7tHS0tLS0tLS0tLS0j5KW8odF1HfVBGZYseUBdyEoa30JslzBWhpaWlpaWlpaWlpaZ+u3e94rQouez4rV+LOXf6uaOs7pKWlpaWlpaWlpaWlPUJbPtPqqaFI7eBfnm95nO5aVXvWzWlpaWlpaWlpaWlpaZ+vTZPVFmWW0+o5REy5v/0ct2V4SUtLS0tLS0tLS0tLe4r203Dq21G3gr9Kt/5y/K1vJmOnTv+0tLS0tLS0tLS0tLTHasv/Uv6urYav1YLLzfG32pFkuo2WlpaWlpaWlpaWlvYI7bL+chlFTtm9VFKZjrqlcHVfsUlLS0tLS0tLS0tLS3uEtsh6PJC2WLOFrv4jVFN+cUdqHElLS0tLS0tLS0tLS3uANt1QTsP1+z4pErzCxLRbQLoMV3PnkouWlpaWlpaWlpaWlvYY7VhVRNZL9vhkLLddIXpNv9HS0tLS0tLS0tLS0p6j7ZvyyXLy7Sr9RVL3kem3slvtXFIWHbS0tLS0tLS0tLS0tMdoxyZ2zOWT1yp2vFbavnqCvgolaWlpaWlpaWlpaWlpT9FOQdvUWiRfUhN2UxD41VC1VOOZtqSlpaWlpaWlpaWlpT1AWzqI1ALJokh1mv0eNvb7ZLXF4bgUwtLS0tLS0tLS0tLS0p6ozaOwF4WUm0Nvo+T+Unya8O/L09LS0tLS0tLS0tLSnqNt4XzaFZbrOZRMJZpf4ds27qSlpaWlpaWlpaWlpT1F+37tKAFkif96blqSk3g1UVj26KtVaGlpaWlpaWlpaWlpz9H2MgV7SrVN5MmzHHa9LNacXlAuwhy0tLS0tLS0tLS0tLSHaL844FbajaTayFE8qZ4zj8eevr2+PrtHS0tLS0tLS0tLS0v7HG25oqXQrwSGtV3k+wIJX5/5c1BJS0tLS0tLS0tLS0v7ZO0X06hTni/9SKfmVgPU5iNxpfTyoqWlpaWlpaWlpaWlPUY77ifQFq0cywC1NCyth/TgyFWXuVizjmajpaWlpaWlpaWlpaU9QpsrLFOGboon02fxaCXtt2jyv626pKWlpaWlpaWlpaWlfZ62RG59M0/tfbm88HxHSd2ladkjdKgctLS0tLS0tLS0tLS0h2iXMdw+EZdiwvLFwrh8Bekd0tLS0tLS0tLS0tLSPl1bwsGe56Sl2sgSbY77+bmeU4GpjX8JYWlpaWlpaWlpaWlpaQ/TtlV/yNZqyHndizX39Zcty/ahJC0tLS0tLS0tLS0t7Tna9Nk0f+z3SLCHBGAqx0xFnVeIVOu7oaWlpaWlpaWlpaWlfbp22WRkGfotuz2WYs22fbSem1N+GfPS0tLS0tLS0tLS0tI+R3uFAHLqNJI+PWfjUnHlp2aSfyeKpKWlpaWlpaWlpaWlfaQ21VqmwdbpgFupnGylGUl5oKtMYFvGp7S0tLS0tLS0tLS0tGdqF/m2NPa6hINpZtu1qbrMY91oaWlpaWlpaWlpaWmP15Z9anYvdfXP4eAUfH5XwElLS0tLS0tLS0tLS3uONq/USkXkVBZZqjPT7Otrcy4unbP7tdNwtLS0tLS0tLS0tLS0v7G2Fj7mQ2qLwdZ5IFvlLedcv7+CXt4SLS0tLS0tLS0tLS3t07X//w8tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t7b+m/QNO7FsdSE0lWQAAAABJRU5ErkJggg==" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 500, + "total_amount": 505, + "history_id": 1679152509855, + "id": 55900907390, + "date_created": "2023-03-18T11:15:10.620-04:00", + "date_last_updated": "2023-03-18T11:35:13.000-04:00", + "date_of_expiration": "2023-03-19T11:15:10.378-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-18T11:35:13.000-04:00", + "money_release_date": "2023-03-18T11:35:13.000-04:00", + "wasDebited": true, + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 505, + "total_amount": 505, + "history_id": 1679153875722, + "id": 1679153875722, + "date_created": "2023-03-18T15:37:55.722Z", + "date_last_updated": "2023-03-18T15:37:55.722Z", + "date_of_expiration": "2023-04-17T15:37:55.722Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 505,00 para a carteira iVip 1251.9390.3817.0948-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 505, + "total_amount": 505, + "history_id": 1679154208055, + "id": 1679154208055, + "date_created": "2023-03-18T15:43:28.055Z", + "date_last_updated": "2023-03-18T15:43:28.055Z", + "date_of_expiration": "2023-04-17T15:43:28.055Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 505,00 para a carteira iVip 1251.9390.3817.0948-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "history_id": 1679263150490, + "id": 1679263150490, + "date_created": "2023-03-19T21:59:10.490Z", + "date_last_updated": "2023-03-19T21:59:10.490Z", + "date_of_expiration": "2023-04-18T21:59:10.490Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679266956838/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679266956838, + "acquirer_reference": "", + "verification_code": 1679266956838, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679266956838", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 11643076, + "total_amount": 11643076, + "id": 1679266956838, + "date_created": "2023-03-19T23:02:36.838Z", + "date_last_updated": "2023-03-19T23:02:36.838Z", + "date_of_expiration": "2023-03-19T23:02:36.838Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679266956838, + "description": "Compra de 11643076 IVIP por 2000 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 1.00%", + "amount": 15 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 1515, + "overpaid_amount": 0, + "installment_amount": 0, + "qr_code": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654071515.005802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131358707763045A2A", + "ticket_url": "https://www.mercadopago.com.br/sandbox/payments/1313587077/ticket?caller_id=1310149122&hash=b6d8c471-76bc-44da-bf9f-76b5ae753314", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIxUlEQVR42u3dS24sKRAFUHbA/neZO6DVE7uSuJC29NTql5wcWLarCg41C8WHNv6i52q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9e2+an//u//vVCD+/7/t/t1X8Xbt+/3Xe8vXB9rXJ9bVkZtLS0tLS0tLS0tLS0h2j757Kfi7SvHa+y2Oe20+rjftzWWn5h0iYGLS0tLS0tLS0tLS3tKdopgCwxZi/H+P7YFAl+LjrFmCO8ZRG40tLS0tLS0tLS0tLS0s4LT3m5DF1Gm2PzFdDS0tLS0tLS0tLS0tLGaC7FfyX3l4omezlf+jHl/mhpaWlpaWlpaWlpac/WJnwqqSyUkbvmSiPcRNk11v26RpSWlpaWlpaWlpaWlvZv105PSrr9Fz8qg5aWlpaWlpaWlpaW9ghtftKUkp6njyyjyBJ83tKD3ys/W2hpaWlpaWlpaWlpad+tTS1sYzPjMeX+Svy36JqbTj812+VkHy0tLS0tLS0tLS0t7bu1U/vbZ8/a2M54bE+DI5/qOWvtZo4saWlpaWlpaWlpaWlp362dXky3rZUDlTCv5VvUUjpvbMjP3XC0tLS0tLS0tLS0tLSv1V5hGEldczKmUSXt+ZnGT+6PRktLS0tLS0tLS0tL+35tLb0s+DTIpLW4Sknn9fCW1F3X8zdHS0tLS0tLS0tLS0v7dm2J60a4O60VfIkdpwrL1BzXSspw+qoKlJaWlpaWlpaWlpaW9gBtqrWcMm/Lt5S9p+gwJQUXZykRbaelpaWlpaWlpaWlpT1Le9t7H1TmVGCtoSxHu5VyljxfW4WStLS0tLS0tLS0tLS0b9dO4/l7TvtNKb7SCFc3S1cApHGROcakpaWlpaWlpaWlpaU9Rbu562y6CntqZltUSeaYsAVtmur/XCNKS0tLS0tLS0tLS0v7Nm1pa2sh3zZRegg+02/1Hre0wNNXQEtLS0tLS0tLS0tL+25tKrgsP1Lp5dj2saUL1GoomUovaWlpaWlpaWlpaWlpz9T2kpfLJ6jFmvtXS3Hl4n62H1dd0tLS0tLS0tLS0tLSvk37WfOYoshbTi+dJX227DjC3QATvgcoLS0tLS0tLS0tLS3tAdrp858fWGbe2r3gcrltC4FmHReZj9tpaWlpaWlpaWlpaWlP0uY03dVidWa5T20U7eazLaQCR+69o6WlpaWlpaWlpaWlPUKbP5Xm+48QY44QXvYckOaPjXLwQqalpaWlpaWlpaWlpT1AmxQ/OEsJJcc9IJ0+ews5U1Iwb05LS0tLS0tLS0tLS3uOtowHaSmKLP1uV7n7Or9lcl8h2feb29ZoaWlpaWlpaWlpaWnfor3KtqV7rd1jvZFvUfv8s+UxJ+mqgNQDt54eSUtLS0tLS0tLS0tL+zbtBCjx5OJy6rZ9cjVlz8m+tC8tLS0tLS0tLS0tLe1J2kWIuOyBKym+Vo6Rkng/iBhzxSYtLS0tLS0tLS0tLe27tVO9ZJngvwwl64656jJNPembaZTbKJKWlpaWlpaWlpaWlvaN2rHZO//Zwsj+dLv1op1uWbGZ0oi0tLS0tLS0tLS0tLTv116ryslpUH/LCy8jxpKru0qHXP5so6WlpaWlpaWlpaWlPU5bqh/rVMhcp1mPtprM3z5PsIhek4WWlpaWlpaWlpaWlvb92nGXLeLJMpl/QZ7+l05QIsbabEdLS0tLS0tLS0tLS3uiNk8pSWHefox/OlrfjPZPCUBaWlpaWlpaWlpaWtpztBMqdb6V6SP9noibetvafap/zf0l9xRZ3r9IWlpaWlpaWlpaWlra12tzTDhWN6ZNb9ll91IomWo8N4WetLS0tLS0tLS0tLS079amqsuS9mu5YW5qk5uWSqWcm5EmKVKlpaWlpaWlpaWlpaU9QnuVhrT0v1/dojYVUqagspzvhzWitLS0tLS0tLS0tLS0b9OWHFwrfXHLGLMMI9nxylI9R68lNKWlpaWlpaWlpaWlpT1AWwofa4RXeuAWRZMb/CZ/V8ec0NLS0tLS0tLS0tLSnqKddpy63KZgMe/Tw1lavqktJwp7+dK2NaK0tLS0tLS0tLS0tLSv0paF04513Eiqklz2yk03qz1FqoOWlpaWlpaWlpaWlvZUbdtUP24630YIKlsYVdJztrA8nZaWlpaWlpaWlpaW9kBtSr+lt0zXprUyy3/Ep9ZVbsf4P90NR0tLS0tLS0tLS0tL+15tuk+tFGb2VQRar00royFTsm/ky7hpaWlpaWlpaWlpaWmP0Oaax5pqKz1rt7ekS9UKL838H+F8g5aWlpaWlpaWlpaW9izteOp8K1tcgdxCsNg2U0o2i3ZaWlpaWlpaWlpaWtqztI8j9qcOuRafdHfalfvsUnPc5qGlpaWlpaWlpaWlpX27dpnOSzumESRTmm7kWwLK0JLFbJISfNLS0tLS0tLS0tLS0r5bu+xjKyP26wT/ZYqvRJZjlQpMgesmiqSlpaWlpaWlpaWlpX2ttpVpISmxl96SKDkgnQLXNNX/R7dg09LS0tLS0tLS0tLSvkqbnkyukWWpuhyfsk9Pz9e1lUXbQxRJS0tLS0tLS0tLS0v7Pm0O/RY7bmLHGjE+RZEtJwqnmJWWlpaWlpaWlpaWlvb92l6SbulHiR1/VqI5nbQUV/46iqSlpaWlpaWlpaWlpX2lNod0uy1SnLitnGz5a1mEsNsokpaWlpaWlpaWlpaW9hTtbqXcHPcZ+rXtxdZtP2qSlpaWlpaWlpaWlpaWNib7SlLwyiP7px64Mv2/hVvZan6RlpaWlpaWlpaWlpb2HG3Cfy88FUPmLRZzTaZ84PKStvxl0NLS0tLS0tLS0tLSHqGtSbwy0L/lELHk6q486yTNoJwWSNdt09LS0tLS0tLS0tLSHqH9/z+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+w8PIVl9AL56yAAAAABJRU5ErkJggg==" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 1500, + "total_amount": 1515, + "history_id": 1679696530924, + "id": 1313587077, + "date_created": "2023-03-24T18:22:11.656-04:00", + "date_last_updated": "2023-03-24T18:22:11.656-04:00", + "date_of_expiration": "2023-03-25T18:22:11.438-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1251.9390.3817.0948-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "history_id": 1679696876215, + "id": 1679696876215, + "date_created": "2023-03-24T22:27:56.215Z", + "date_last_updated": "2023-03-24T22:37:00.511Z", + "date_of_expiration": "2023-04-23T22:27:56.215Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-24T22:37:00.511Z", + "money_release_date": "2023-03-24T22:37:00.511Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1251.9390.3817.0948-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1679698976004, + "id": 1679698976004, + "date_created": "2023-03-24T23:02:56.004Z", + "date_last_updated": "2023-03-24T23:12:40.373Z", + "date_of_expiration": "2023-04-23T23:02:56.004Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-24T23:12:40.373Z", + "money_release_date": "2023-03-24T23:12:40.373Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679872088470/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679872088470, + "acquirer_reference": "", + "verification_code": 1679872088470, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679872088470", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 10651254, + "total_amount": 10651254, + "id": 1679872088470, + "date_created": "2023-03-26T23:08:08.470Z", + "date_last_updated": "2023-03-26T23:08:08.470Z", + "date_of_expiration": "2023-03-26T23:08:08.470Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679872088470, + "description": "Compra de 10.651.254,00 IVIP por 2.000,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1680996986540, + "id": 1680996986540, + "date_created": "2023-04-08T23:36:26.540Z", + "date_last_updated": "2023-04-09T16:29:34.524Z", + "date_of_expiration": "2023-05-08T23:36:26.540Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-04-09T16:29:34.524Z", + "money_release_date": "2023-04-09T16:29:34.524Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1682640956216/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 4, + "payment_method_reference_id": 1682640956216, + "acquirer_reference": "", + "verification_code": 1682640956216, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1682640956216", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1682640956216, + "contract_id": "1679263150490", + "date_created": "2023-04-28T00:15:56.216Z", + "date_last_updated": "2023-04-28T00:15:56.216Z", + "date_of_expiration": "2023-04-28T00:15:56.216Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682640956216, + "description": "Pagamento de fatura 1 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1683194553322/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 2, + "payment_method_reference_id": 1683194553322, + "acquirer_reference": "", + "verification_code": 1683194553322, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1683194553322", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1683194553322, + "contract_id": "1679263150490", + "date_created": "2023-05-04T10:02:33.322Z", + "date_last_updated": "2023-05-04T10:02:33.322Z", + "date_of_expiration": "2023-05-04T10:02:33.322Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1683194553322, + "description": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684019013862/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684019013862, + "acquirer_reference": "", + "verification_code": 1684019013862, + "net_received_amount": 0, + "total_paid_amount": 1510, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684019013862", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1510, + "total_amount": 1510, + "id": 1684019013862, + "date_created": "2023-05-13T23:03:33.862Z", + "date_last_updated": "2023-05-13T23:03:33.862Z", + "date_of_expiration": "2023-05-13T23:03:33.862Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684019013862, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684155209634/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 3, + "payment_method_reference_id": 1684155209634, + "acquirer_reference": "", + "verification_code": 1684155209634, + "net_received_amount": 0, + "total_paid_amount": 220, + "overpaid_amount": 0, + "installment_amount": 220, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684155209634", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": 1684155209634, + "contract_id": "1679263150490", + "date_created": "2023-05-15T12:53:29.634Z", + "date_last_updated": "2023-05-15T12:53:29.634Z", + "date_of_expiration": "2023-05-15T12:53:29.634Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1684155209634, + "description": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 600, + "total_amount": 648, + "history_id": 1684158510574, + "id": 1684158510574, + "date_created": "2023-05-15T13:48:30.574Z", + "date_last_updated": "2023-05-15T13:48:30.574Z", + "date_of_expiration": "2023-06-14T13:48:30.574Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684348943785/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684348943785, + "acquirer_reference": "", + "verification_code": 1684348943785, + "net_received_amount": 0, + "total_paid_amount": 5, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684348943785", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 5, + "total_amount": 5, + "id": 1684348943785, + "date_created": "2023-05-17T18:42:23.785Z", + "date_last_updated": "2023-05-17T18:42:23.785Z", + "date_of_expiration": "2023-05-17T18:42:23.785Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684348943785, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624245338/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624245338, + "acquirer_reference": "", + "verification_code": 1684624245338, + "net_received_amount": 0, + "total_paid_amount": 416.90000000000003, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624245338", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 416.90000000000003, + "total_amount": 416.90000000000003, + "id": 1684624245338, + "date_created": "2023-05-20T23:10:45.338Z", + "date_last_updated": "2023-05-20T23:10:45.338Z", + "date_of_expiration": "2023-05-20T23:10:45.338Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624245338, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624330381/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624330381, + "acquirer_reference": "", + "verification_code": 1684624330381, + "net_received_amount": 0, + "total_paid_amount": 2371.9, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624330381", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 11552888, + "total_amount": 11552888, + "id": 1684624330381, + "date_created": "2023-05-20T23:12:10.381Z", + "date_last_updated": "2023-05-20T23:12:10.381Z", + "date_of_expiration": "2023-05-20T23:12:10.381Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624330381, + "description": "Compra de 11.552.888,00 IVIP por 2.371,90 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1686781360635, + "id": 1686781360635, + "date_created": "2023-06-14T22:22:40.635Z", + "date_last_updated": "2023-06-14T22:22:40.635Z", + "date_of_expiration": "2023-07-14T22:22:40.635Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1251.9390.3817.0948-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 162, + "total_amount": 162, + "history_id": 1686838534175, + "id": 1686838534175, + "date_created": "2023-06-15T14:15:34.175Z", + "date_last_updated": "2023-06-15T14:25:35.258Z", + "date_of_expiration": "2023-07-15T14:15:34.175Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-06-15T14:25:35.258Z", + "money_release_date": "2023-06-15T14:25:35.258Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 162,00 para a carteira iVip 1251.9390.3817.0948-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1686839367288/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 3, + "payment_method_reference_id": 1686839367288, + "acquirer_reference": "", + "verification_code": 1686839367288, + "net_received_amount": 0, + "total_paid_amount": 162, + "overpaid_amount": 0, + "installment_amount": 162, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1686839367288", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 162, + "total_amount": 162, + "id": 1686839367288, + "contract_id": "1684158510574", + "date_created": "2023-06-15T14:29:27.288Z", + "date_last_updated": "2023-06-15T14:29:27.288Z", + "date_of_expiration": "2023-06-15T14:29:27.288Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1686839367288, + "description": "Pagamento de fatura 1 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1687526304583/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687526304583, + "acquirer_reference": "", + "verification_code": 1687526304583, + "net_received_amount": 0, + "total_paid_amount": 5132122, + "overpaid_amount": 0, + "installment_amount": 5132122, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1687526304583", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5132122, + "total_amount": 5132122, + "id": 1687526304583, + "date_created": "2023-06-23T13:18:24.583Z", + "date_last_updated": "2023-06-23T13:18:24.583Z", + "date_of_expiration": "2025-06-23T13:18:24.583Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687526304583, + "wasDebited": true, + "description": "Investimento de 5.132.122,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-02T09:29:25.462Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691054965462, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 510, + "installment_amount": 510, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1691054965462" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 510, + "total_amount": 510, + "id": 1691054965462, + "history_id": 1691054965462, + "date_created": "2023-08-03T09:29:25.462Z", + "date_last_updated": "2023-08-03T19:07:16.675Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-03T19:07:16.675Z", + "money_release_date": "2023-08-03T19:07:16.675Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 510,00 para a carteira iVip 1251.9390.3817.0948-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-06T23:50:11.694Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691452211694, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 300, + "installment_amount": 300, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1691452211694" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 300, + "total_amount": 300, + "id": 1691452211694, + "history_id": 1691452211694, + "date_created": "2023-08-07T23:50:11.694Z", + "date_last_updated": "2023-08-08T00:39:59.247Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-08T00:39:59.247Z", + "money_release_date": "2023-08-08T00:39:59.247Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 300,00 para a carteira iVip 1251.9390.3817.0948-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 750698.52 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692030522501, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 25023284, + "installment_amount": 25023284, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1692030522501" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 25023284, + "total_amount": 24272585.48, + "id": 1692030522501, + "history_id": 1692030522501, + "date_created": "2023-08-14T16:28:42.501Z", + "date_last_updated": "2023-08-14T16:40:00.472Z", + "date_of_expiration": "2023-08-14T16:28:42.501Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": "2023-08-14T16:40:00.472Z", + "money_release_date": "2023-08-14T16:40:00.472Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 24.272.585,48 IVIP para a carteira 0xC241a13f35a534f3ef174c5cF50Ea8653FfE62F1" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-19T21:27:27.215Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695158847215, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 150, + "installment_amount": 150, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695158847215" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 150, + "total_amount": 150, + "id": "1695158847215", + "history_id": "1695158847215", + "date_created": "2023-09-19T21:27:27.215Z", + "date_last_updated": "2023-09-19T21:40:25.727Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-09-19T21:40:25.727Z", + "money_release_date": "2023-09-19T21:40:25.727Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 150,00 BRL para a carteira iVip 1251.9390.3817.0948-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695159884735, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 4, + "installments_payable": 1, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884735" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": "1695159884735", + "history_id": "1695159884735", + "date_created": "2023-09-19T21:44:44.735Z", + "date_last_updated": "2023-09-19T21:44:44.735Z", + "date_of_expiration": "2023-09-19T21:44:44.735Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695159884797, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 162, + "installment_amount": 162, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 2, + "installments_payable": 2, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884797" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 162, + "total_amount": 162, + "id": "1695159884797", + "history_id": "1695159884797", + "date_created": "2023-09-19T21:44:44.797Z", + "date_last_updated": "2023-09-19T21:44:44.797Z", + "date_of_expiration": "2023-09-19T21:44:44.797Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 2 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695159884893, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 220, + "installment_amount": 220, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 5, + "installments_payable": 0, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884893" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 220, + "total_amount": 220, + "id": "1695159884893", + "history_id": "1695159884893", + "date_created": "2023-09-19T21:44:44.893Z", + "date_last_updated": "2023-09-19T21:44:44.893Z", + "date_of_expiration": "2023-09-19T21:44:44.893Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695159884951, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 162, + "installment_amount": 162, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 3, + "installments_payable": 1, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884951" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 162, + "total_amount": 162, + "id": "1695159884951", + "history_id": "1695159884951", + "date_created": "2023-09-19T21:44:44.951Z", + "date_last_updated": "2023-09-19T21:44:44.951Z", + "date_of_expiration": "2023-09-19T21:44:44.951Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 3 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695159885077, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 162, + "installment_amount": 162, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 4, + "installments_payable": 0, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159885077" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 162, + "total_amount": 162, + "id": "1695159885077", + "history_id": "1695159885077", + "date_created": "2023-09-19T21:44:45.077Z", + "date_last_updated": "2023-09-19T21:44:45.077Z", + "date_of_expiration": "2023-09-19T21:44:45.077Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 4 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-31T14:53:42.012Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696172022012, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 100000, + "installment_amount": 100000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1696172022012" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125193903817094830", + "payment_method": "whatsapp", + "original_amount": 100000, + "total_amount": 100000, + "id": "1696172022012", + "history_id": "1696172022012", + "date_created": "2023-10-01T14:53:42.012Z", + "date_last_updated": "2023-10-01T14:53:42.012Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 100.000,00 IVIP para a carteira iVip 1251.9390.3817.0948-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-11-11T12:17:09.373Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697113029373", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2500, + "installment_amount": 2500, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1697113029373" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125193903817094830", + "payment_method": "whatsapp", + "original_amount": 2500, + "total_amount": 2500, + "id": "1697113029373", + "history_id": "1697113029373", + "date_created": "2023-10-12T12:17:09.373Z", + "date_last_updated": "2023-10-12T12:23:24.981Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-10-12T12:23:24.981Z", + "money_release_date": "2023-10-12T12:23:24.981Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 2.500,00 BRL para a carteira iVip 1251.9390.3817.0948-30" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1697159292046/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": "1697159292046", + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 2034, + "installment_amount": 2034, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1697159292046" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1697159292046", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "wallet_id": "125193903817094830", + "payment_method": "swap", + "original_amount": 3812023, + "total_amount": 3812023, + "id": "1697159292046", + "history_id": "1697159292046", + "date_created": "2023-10-13T01:08:12.046Z", + "date_last_updated": "2023-10-13T01:08:12.046Z", + "date_of_expiration": "2023-10-13T01:08:12.046Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 3.812.023,00 IVIP por 2.034,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490", + "content": { + "type": 1, + "value": { + "id": 1679263150490, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": "2023-03-19T21:59:10.490Z", + "history_id": 1679263150490, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490", + "content": { + "type": 1, + "value": { + "id": 1679263150490, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": "2023-03-19T21:59:10.490Z", + "history_id": 1679263150490, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490", + "content": { + "type": 1, + "value": { + "id": 1679263150490, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": "2023-03-19T21:59:10.490Z", + "history_id": 1679263150490, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574", + "content": { + "type": 1, + "value": { + "id": 1684158510574, + "type": "emprestimo", + "original_amount": 600, + "total_amount": 648, + "installments": 4, + "installment_amount": 162, + "date_created": "2023-05-15T13:48:30.574Z", + "history_id": 1684158510574, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490", + "content": { + "type": 1, + "value": { + "id": 1679263150490, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": "2023-03-19T21:59:10.490Z", + "history_id": 1679263150490, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-19T21:44:44.751Z", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574", + "content": { + "type": 1, + "value": { + "id": 1684158510574, + "type": "emprestimo", + "original_amount": 600, + "total_amount": 648, + "installments": 4, + "installment_amount": 162, + "date_created": "2023-05-15T13:48:30.574Z", + "history_id": 1684158510574, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-19T21:44:44.809Z", + "description": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490", + "content": { + "type": 1, + "value": { + "id": 1679263150490, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1100, + "installments": 5, + "installment_amount": 220, + "date_created": "2023-03-19T21:59:10.490Z", + "history_id": 1679263150490, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-19T21:44:44.904Z", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574", + "content": { + "type": 1, + "value": { + "id": 1684158510574, + "type": "emprestimo", + "original_amount": 600, + "total_amount": 648, + "installments": 4, + "installment_amount": 162, + "date_created": "2023-05-15T13:48:30.574Z", + "history_id": 1684158510574, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-19T21:44:44.962Z", + "description": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574", + "content": { + "type": 1, + "value": { + "id": 1684158510574, + "type": "emprestimo", + "original_amount": 600, + "total_amount": 648, + "installments": 4, + "installment_amount": 162, + "date_created": "2023-05-15T13:48:30.574Z", + "history_id": 1684158510574, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-19T21:44:45.096Z", + "description": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 1000, + "limitUsed": 850, + "analysisRequested": "2023-03-18T16:32:25.695Z", + "lastReview": "2023-03-19T21:27:43.210Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679152336550, + "dateValidity": 1679152336550, + "totalValue": 1379.3, + "currencyType": "USD", + "balancesModificacao": "2023-10-14T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1500, + "total_amount": 1500, + "history_id": 1677727950406, + "id": 1677727950406, + "date_created": "2023-03-02T03:32:30.406Z", + "date_last_updated": "2023-03-02T03:38:03.262Z", + "date_of_expiration": "2023-04-01T03:32:30.406Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-02T03:38:03.262Z", + "money_release_date": "2023-03-02T03:38:03.262Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1257.9763.0999.3744-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1677797747321, + "id": 1677797747321, + "date_created": "2023-03-02T22:55:47.321Z", + "date_last_updated": "2023-03-03T00:25:24.428Z", + "date_of_expiration": "2023-04-01T22:55:47.321Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-03T00:25:24.428Z", + "money_release_date": "2023-03-03T00:25:24.428Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1257.9763.0999.3744-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1678363438960, + "id": 1678363438960, + "date_created": "2023-03-09T12:03:58.960Z", + "date_last_updated": "2023-03-13T12:44:21.621Z", + "date_of_expiration": "2023-04-08T12:03:58.960Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-03-13T12:44:21.621Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1257.9763.0999.3744-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1678155991324/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678155991324, + "acquirer_reference": "", + "verification_code": 1678155991324, + "net_received_amount": 0, + "total_paid_amount": 1600, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1678155991324", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 11439584, + "total_amount": 11439584, + "id": 1678155991324, + "date_created": "2023-03-07T02:26:31.324Z", + "date_last_updated": "2023-03-07T02:26:31.324Z", + "date_of_expiration": "2023-03-07T02:26:31.324Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678155991324, + "description": "Compra de 11439584 IVIP por 1600 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 1.9800000000000002 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 201.98, + "overpaid_amount": 0, + "installment_amount": 0, + "ticket_url": "https://www.mercadopago.com.br/payments/55108764779/ticket?caller_id=1310149122&hash=bd26ec14-a4ce-4255-b152-2a7df041f5dd", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI5ElEQVR42u3dUa7jNgwFUO3A+9+ld+Bi0E6TkFdyBh0UrXz8Eby8xPZx/ghSV+P6Hx3noKWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaX9/dpRj+PH/46/P/j514+z/nx5Ha8L/PXBz3Nf33u/x88PXl9+P60zaGlpaWlpaWlpaWlpH6I93ku28jZd/fVBuWP7CcoZk0/fHzIxaGlpaWlpaWlpaWlpH6AtBWR+jPHpbj24sTj3o058PcGicKWlpaWlpaWlpaWlpX229vxs7K1kpe333gD8qCLLs+QXWlpaWlpaWlpaWlpa2jBm2UrJaf03Pmcoi7ZUkWUwk5aWlpaWlpaWlpaW9snaKb5971yugUsPNO3pjbt+IC0tLS0tLS0tLS0t7UO005SSf/fln2aq0NLS0tLS0tLS0tLS/k+1+eihji2WJH0wWTW3Xg13b6GlpaWlpaWlpaWlpd1be7YKbrrALXTeYsOu/JUDJkvy5DTmhJaWlpaWlpaWlpaWdnft67bnJ/S42yetJJKUL+eK8QzPXIrPUlnS0tLS0tLS0tLS0tLurj1zzn6jHOGO7cKrRXTTkrPvErCseWlpaWlpaWlpaWlpaTfT9tvmdXHTht1kHDNtEFAeN/9KdzOitLS0tLS0tLS0tLS0m2knFV7DT8rLEiH5Pp2ZAKvN13ItSktLS0tLS0tLS0tLu7f2XZa2V+t1YioMS2VZoHmxXa9j86e0tLS0tLS0tLS0tLR7a1sYSdpUbXW5El+SjGmkMq2zy2vlaGlpaWlpaWlpaWlp99Y2RW/dhfPjOrY0UpmOFodSmoeLqUtaWlpaWlpaWlpaWtr9tIuhyTQWOYn7b8vkyv+mdzvydOZNzUtLS0tLS0tLS0tLS7ubNhWBrWwcbdbyvQydrIZrW2b3ec6W5X/epvrT0tLS0tLS0tLS0tJupG0XGe3Utrbtbtfqui6ujXdOb3S3CzYtLS0tLS0tLS0tLe2O2mN2pf5BOS1tpdZKxKt18qbL39KNaGlpaWlpaWlpaWlpd9e2AjLtp3aFEnG0vlxu5022zG6jl4uQf1paWlpaWlpaWlpa2p21eUHaZIVcgeZEknTGdLFdKjSPm5qXlpaWlpaWlpaWlpZ2M+2Y3TG17qbRkJP9sAsq/UDrGU9aWlpaWlpaWlpaWtrdtS2j/2zL1RZBjyt8qhjzXOW12JqNlpaWlpaWlpaWlpb2IdqRUxxTQEl6m7IgcwTJGYY1++bZtLS0tLS0tLS0tLS0z9GmoP7yQcmCLLx222mdWLRpk+3zm0wVWlpaWlpaWlpaWlrarbQ5xTF5JvOXbf/qEarSSbbkdOkcLS0tLS0tLS0tLS3tk7TlIq2GG61rd+Twx1aQ9sj+Uq5Osyq/ybqkpaWlpaWlpaWlpaXdQ1tWr7VokduAkrYQbkKZ/jbt7IOWlpaWlpaWlpaWlvZJ2kLOb/v+1WkLgNe50ybeumLMUSW0tLS0tLS0tLS0tLSP0t4Fj0wmLKfDmnep/unc6+sqkpaWlpaWlpaWlpaWdgNt6+ldOd+/NPZSQEmrBPtKulYnTirQWRVJS0tLS0tLS0tLS0u7qfauJrwWS90W535UkdOfYH1fWlpaWlpaWlpaWlra3bWLOnHS9ksDkq2xV9JHxuf/fumgpaWlpaWlpaWlpaXdXTtt2PUeXKsOr7td2VrWyTULRhl5U2xaWlpaWlpaWlpaWtqHaNsOZxE6DepfPOn1i7mULWqSlpaWlpaWlpaWlpZ2b22p+krt2Da7Lgn+k7iRcka7wHF3PVpaWlpaWlpaWlpa2udo095p00ZcypEs+f65NP2oMVMBWW5+34ukpaWlpaWlpaWlpaXdRdvKweOrirGhWkuuL4SbXnT1Y9DS0tLS0tLS0tLS0u6uTVXfohF3hIc8QgE5QjTkt1OXjUZLS0tLS0tLS0tLS7uztlyklHStL9efr6WKXKHavPIGAbna/KrmpaWlpaWlpaWlpaWl3UX7PvPYm3NtMLN04/qRBjjTWrlcwt5nqtDS0tLS0tLS0tLS0u6nLYXcyCvapnGRrVgcn929Y1Z89u/l02hpaWlpaWlpaWlpaR+gLa221NjLk5ilDJ10/MrgZUpCKVOXtLS0tLS0tLS0tLS0T9SmjP53d1L0gJLWpuup/ouq9Ph6z25aWlpaWlpaWlpaWtp9tFeoCY9FX679NUIX8MjjmCllsm0LcD8jSktLS0tLS0tLS0tLu5G2VG7tZeSgx/x8Yza7OVo9macz73dbo6WlpaWlpaWlpaWl3U87WdGWvrJo7KWkkZRSsp66zJUlLS0tLS0tLS0tLS3tztppSknbGXuyZq005/Ls5pWX073fbbSESlpaWlpaWlpaWlpa2odoSw9u1cRr/cCyiK7PaS5yTfpKunzQ0tLS0tLS0tLS0tI+QJvmJct6t6YdIXTyav279JXyA6Ui9X4XbFpaWlpaWlpaWlpa2l20raO2umbbgW18oiaTky0V8sxL7L5eDUdLS0tLS0tLS0tLS7ufdizaebk6LKkipQw929s8rHl+nphTK2lpaWlpaWlpaWlpaXfWLmSr+cvppthpIdz6cVNVSktLS0tLS0tLS0tL+xztqMcRMvqPuzVw6SUZ36vIyZW/7O7R0tLS0tLS0tLS0tLuo51um5ZGJfskZq4iy/9KkMmZV759U0XS0tLS0tLS0tLS0tJuqV2Ug2OWUrKanGxJI6mDeMxK2LFKKaGlpaWlpaWlpaWlpX2GdrQYkfdVbqliHIt1cWXM8ousE1paWlpaWlpaWlpa2qdry4ULZRI1mbdmS1OXI1y5R03S0tLS0tLS0tLS0tI+R5tbdyPn+5fblnun3P7W8Ssx/mfLNaGlpaWlpaWlpaWlpX2SduShybToLZeSV1gSd7QNsHPe5Lm4JS0tLS0tLS0tLS0t7SO0//2DlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlva3af8AAVry9+WFQ1kAAAAASUVORK5CYII=", + "qr_code": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d127175204000053039865406201.985802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter551087647796304A631" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "pix", + "original_amount": 200, + "total_amount": 201.98, + "history_id": 1677377774383, + "id": 55108764779, + "date_created": "2023-02-25T22:16:15.134-04:00", + "date_last_updated": "2023-02-25T22:16:15.134-04:00", + "date_of_expiration": "2023-02-26T22:16:14.923-04:00", + "operation_type": "regular_payment", + "payment_type": "bank_transfer", + "status": "pending", + "status_detail": "pending_waiting_transfer", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "history_id": 1679262602609, + "id": 1679262602609, + "date_created": "2023-03-19T21:50:02.609Z", + "date_last_updated": "2023-03-19T21:50:02.609Z", + "date_of_expiration": "2023-04-18T21:50:02.609Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1679266870095/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679266870095, + "acquirer_reference": "", + "verification_code": 1679266870095, + "net_received_amount": 0, + "total_paid_amount": 3000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1679266870095", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 17473846, + "total_amount": 17473846, + "id": 1679266870095, + "date_created": "2023-03-19T23:01:10.095Z", + "date_last_updated": "2023-03-19T23:01:10.095Z", + "date_of_expiration": "2023-03-19T23:01:10.095Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679266870095, + "description": "Compra de 17473846 IVIP por 3000 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "history_id": 1678654062362, + "id": 1678654062362, + "date_created": "2023-03-12T20:47:42.362Z", + "date_last_updated": "2023-03-21T13:30:48.783Z", + "date_of_expiration": "2023-04-11T20:47:42.362Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "date_approved": "2023-03-21T13:30:48.783Z", + "money_release_date": "2023-03-21T13:30:48.783Z", + "money_release_status": "rejected", + "wasDebited": true, + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1679871546323, + "id": 1679871546323, + "date_created": "2023-03-26T22:59:06.323Z", + "date_last_updated": "2023-03-26T22:59:06.323Z", + "date_of_expiration": "2023-04-25T22:59:06.323Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1257.9763.0999.3744-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 360, + "total_amount": 360, + "history_id": 1682619072709, + "id": 1682619072709, + "date_created": "2023-04-27T18:11:12.709Z", + "date_last_updated": "2023-04-27T18:30:34.522Z", + "date_of_expiration": "2023-05-27T18:11:12.709Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-04-27T18:30:34.522Z", + "money_release_date": "2023-04-27T18:30:34.522Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 360,00 para a carteira iVip 1257.9763.0999.3744-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1682620551210/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 9, + "payment_method_reference_id": 1682620551210, + "acquirer_reference": "", + "verification_code": 1682620551210, + "net_received_amount": 0, + "total_paid_amount": 360, + "overpaid_amount": 0, + "installment_amount": 360, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1682620551210", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 360, + "total_amount": 360, + "id": 1682620551210, + "contract_id": "1679262602609", + "date_created": "2023-04-27T18:35:51.210Z", + "date_last_updated": "2023-04-27T18:35:51.210Z", + "date_of_expiration": "2023-04-27T18:35:51.210Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682620551210, + "description": "Pagamento de fatura 1 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1683422461919, + "id": 1683422461919, + "date_created": "2023-05-07T01:21:01.919Z", + "date_last_updated": "2023-05-07T11:45:42.487Z", + "date_of_expiration": "2023-06-06T01:21:01.919Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-07T11:45:42.487Z", + "money_release_date": "2023-05-07T11:45:42.487Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1683947136546, + "id": 1683947136546, + "date_created": "2023-05-13T03:05:36.546Z", + "date_last_updated": "2023-05-13T03:09:15.818Z", + "date_of_expiration": "2023-06-12T03:05:36.546Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-13T03:09:15.818Z", + "money_release_date": "2023-05-13T03:09:15.818Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947563493/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 3, + "installments_payable": 7, + "payment_method_reference_id": 1683947563493, + "acquirer_reference": "", + "verification_code": 1683947563493, + "net_received_amount": 0, + "total_paid_amount": 360, + "overpaid_amount": 0, + "installment_amount": 360, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947563493", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 360, + "total_amount": 360, + "id": 1683947563493, + "contract_id": "1679262602609", + "date_created": "2023-05-13T03:12:43.493Z", + "date_last_updated": "2023-05-13T03:12:43.493Z", + "date_of_expiration": "2023-05-13T03:12:43.493Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1683947563493, + "description": "Pagamento de fatura 3 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 66.32, + "total_amount": 66.32, + "history_id": 1683948027523, + "id": 1683948027523, + "date_created": "2023-05-13T03:20:27.523Z", + "date_last_updated": "2023-05-13T03:21:20.092Z", + "date_of_expiration": "2023-06-12T03:20:27.523Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-13T03:21:20.092Z", + "money_release_date": "2023-05-13T03:21:20.092Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 66,32 para a carteira iVip 1257.9763.0999.3744-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1684018958560/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684018958560, + "acquirer_reference": "", + "verification_code": 1684018958560, + "net_received_amount": 0, + "total_paid_amount": 106.32, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1684018958560", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 574594, + "total_amount": 574594, + "id": 1684018958560, + "date_created": "2023-05-13T23:02:38.560Z", + "date_last_updated": "2023-05-13T23:02:38.560Z", + "date_of_expiration": "2023-05-13T23:02:38.560Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684018958560, + "description": "Compra de 574.594,00 IVIP por 106,32 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 130, + "total_amount": 130, + "history_id": 1684158010439, + "id": 1684158010439, + "date_created": "2023-05-15T13:40:10.439Z", + "date_last_updated": "2023-05-15T15:13:10.445Z", + "date_of_expiration": "2023-06-14T13:40:10.439Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-15T15:13:10.445Z", + "money_release_date": "2023-05-15T15:13:10.445Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 130,00 para a carteira iVip 1257.9763.0999.3744-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 55, + "total_amount": 55, + "history_id": 1684458859068, + "id": 1684458859068, + "date_created": "2023-05-19T01:14:19.068Z", + "date_last_updated": "2023-05-19T01:25:57.882Z", + "date_of_expiration": "2023-06-18T01:14:19.068Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-19T01:25:57.882Z", + "money_release_date": "2023-05-19T01:25:57.882Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 55,00 para a carteira iVip 1257.9763.0999.3744-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1684624396163/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624396163, + "acquirer_reference": "", + "verification_code": 1684624396163, + "net_received_amount": 0, + "total_paid_amount": 185, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1684624396163", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 901085, + "total_amount": 901085, + "id": 1684624396163, + "date_created": "2023-05-20T23:13:16.163Z", + "date_last_updated": "2023-05-20T23:13:16.163Z", + "date_of_expiration": "2023-05-20T23:13:16.163Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624396163, + "description": "Compra de 901.085,00 IVIP por 185,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1685667418933/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685667418933, + "acquirer_reference": "", + "verification_code": 1685667418933, + "net_received_amount": 0, + "total_paid_amount": 5000000, + "overpaid_amount": 0, + "installment_amount": 5000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1685667418933", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5000000, + "total_amount": 5000000, + "id": 1685667418933, + "date_created": "2023-06-02T00:56:58.933Z", + "date_last_updated": "2023-06-02T00:56:58.933Z", + "date_of_expiration": "2025-06-02T00:56:58.933Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685667418933, + "wasDebited": true, + "description": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668065254/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685668065254, + "acquirer_reference": "", + "verification_code": 1685668065254, + "net_received_amount": 0, + "total_paid_amount": 4000000, + "overpaid_amount": 0, + "installment_amount": 4000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668065254", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 4000000, + "total_amount": 4000000, + "id": 1685668065254, + "date_created": "2023-06-02T01:07:45.254Z", + "date_last_updated": "2023-06-02T01:07:45.254Z", + "date_of_expiration": "2024-06-02T01:07:45.254Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685668065254, + "description": "Investimento de 4.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668086801/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685668086801, + "acquirer_reference": "", + "verification_code": 1685668086801, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668086801", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1685668086801, + "date_created": "2023-06-02T01:08:06.801Z", + "date_last_updated": "2023-06-02T01:08:06.801Z", + "date_of_expiration": "2023-07-02T01:08:06.801Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685668086801, + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668239552/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685668239552, + "acquirer_reference": "", + "verification_code": 1685668239552, + "net_received_amount": 0, + "total_paid_amount": 5000000, + "overpaid_amount": 0, + "installment_amount": 5000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668239552", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5000000, + "total_amount": 5000000, + "id": 1685668239552, + "date_created": "2023-06-02T01:10:39.552Z", + "date_last_updated": "2023-06-02T01:10:39.552Z", + "date_of_expiration": "2023-12-02T01:10:39.552Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685668239552, + "description": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 400, + "total_amount": 400, + "history_id": 1686858477834, + "id": 1686858477834, + "date_created": "2023-06-15T19:47:57.834Z", + "date_last_updated": "2023-06-15T20:00:25.618Z", + "date_of_expiration": "2023-07-15T19:47:57.834Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-06-15T20:00:25.618Z", + "money_release_date": "2023-06-15T20:00:25.618Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 400,00 para a carteira iVip 1257.9763.0999.3744-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859298764/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 2, + "installments_payable": 8, + "payment_method_reference_id": 1686859298764, + "acquirer_reference": "", + "verification_code": 1686859298764, + "net_received_amount": 0, + "total_paid_amount": 360, + "overpaid_amount": 0, + "installment_amount": 360, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859298764", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 360, + "total_amount": 360, + "id": 1686859298764, + "contract_id": "1679262602609", + "date_created": "2023-06-15T20:01:38.764Z", + "date_last_updated": "2023-06-15T20:01:38.764Z", + "date_of_expiration": "2023-06-15T20:01:38.764Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1686859298764, + "description": "Pagamento de fatura 2 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719320, + "modified": 1700589719320 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859421606/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1686859421606, + "acquirer_reference": "", + "verification_code": 1686859421606, + "net_received_amount": 0, + "total_paid_amount": 40, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859421606", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 256510, + "total_amount": 256510, + "id": 1686859421606, + "date_created": "2023-06-15T20:03:41.606Z", + "date_last_updated": "2023-06-15T20:03:41.606Z", + "date_of_expiration": "2023-06-15T20:03:41.606Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1686859421606, + "description": "Compra de 256.510,00 IVIP por 40,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1688400452024/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688400452024, + "acquirer_reference": "", + "verification_code": 1688400452024, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1688400452024", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": 1688400452024, + "date_created": "2023-07-03T16:07:32.024Z", + "date_last_updated": "2023-07-03T16:07:32.024Z", + "date_of_expiration": "2023-07-03T16:07:32.024Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688400452024, + "wasDebited": true, + "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1688403103597/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688403103597, + "acquirer_reference": "", + "verification_code": 1688403103597, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1688403103597", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1688403103597, + "date_created": "2023-07-03T16:51:43.597Z", + "date_last_updated": "2023-07-03T16:51:43.597Z", + "date_of_expiration": "2023-08-03T16:51:43.597Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688403103597, + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 8000000, + "total_amount": 8000000, + "history_id": 1688735047266, + "id": 1688735047266, + "date_created": "2023-07-07T13:04:07.266Z", + "date_last_updated": "2023-07-07T13:04:07.266Z", + "date_of_expiration": "2023-07-07T13:04:07.266Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 8.000.000,00 IVIP para a carteira 0x3e35E81481645fafD6C410b1833719A8E633ae35" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 11000000, + "total_amount": 11000000, + "history_id": 1689292258052, + "id": 1689292258052, + "date_created": "2023-07-13T23:50:58.052Z", + "date_last_updated": "2023-07-13T23:50:58.052Z", + "date_of_expiration": "2023-07-13T23:50:58.052Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 11.000.000,00 IVIP para a carteira 0x3e35E81481645fafD6C410b1833719A8E633ae35" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1691081627683/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1691081627683, + "acquirer_reference": "", + "verification_code": 1691081627683, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1691081627683", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": 1691081627683, + "date_created": "2023-08-03T16:53:47.683Z", + "date_last_updated": "2023-08-03T16:53:47.683Z", + "date_of_expiration": "2023-08-03T16:53:47.683Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1691081627683, + "wasDebited": true, + "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691082859805, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1691082859805" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1691082859805, + "history_id": 1691082859805, + "date_created": "2023-08-03T17:14:19.805Z", + "date_last_updated": "2023-08-03T17:14:19.805Z", + "date_of_expiration": "2023-09-03T17:14:19.804Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-07T22:34:09.576Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691534049577, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 360, + "installment_amount": 360, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1691534049577" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 360, + "total_amount": 360, + "id": 1691534049577, + "history_id": 1691534049577, + "date_created": "2023-08-08T22:34:09.577Z", + "date_last_updated": "2023-08-08T23:21:48.177Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-08T23:21:48.177Z", + "money_release_date": "2023-08-08T23:21:48.177Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 360,00 para a carteira iVip 1257.9763.0999.3744-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693761380582, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1693761380582" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1693761380582", + "history_id": "1693761380582", + "date_created": "2023-09-03T17:16:20.582Z", + "date_last_updated": "2023-09-03T17:16:20.582Z", + "date_of_expiration": "2023-09-03T17:16:20.582Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693780032051, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1693780032051" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": "1693780032051", + "history_id": "1693780032051", + "date_created": "2023-09-03T22:27:12.051Z", + "date_last_updated": "2023-09-03T22:27:12.051Z", + "date_of_expiration": "2023-10-03T22:27:12.050Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-21T18:47:30.195Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695322050196, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 720, + "installment_amount": 720, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695322050196" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 720, + "total_amount": 720, + "id": "1695322050196", + "history_id": "1695322050196", + "date_created": "2023-09-21T18:47:30.196Z", + "date_last_updated": "2023-09-22T18:08:25.258Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-09-22T18:08:25.258Z", + "money_release_date": "2023-09-22T18:08:25.258Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 720,00 BRL para a carteira iVip 1257.9763.0999.3744-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695423451385, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 360, + "installment_amount": 360, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 4, + "installments_payable": 6, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451385" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 360, + "total_amount": 360, + "id": "1695423451385", + "history_id": "1695423451385", + "date_created": "2023-09-22T22:57:31.385Z", + "date_last_updated": "2023-09-22T22:57:31.385Z", + "date_of_expiration": "2023-09-22T22:57:31.385Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 4 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695423451505, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 360, + "installment_amount": 360, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 5, + "installments_payable": 5, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451505" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 360, + "total_amount": 360, + "id": "1695423451505", + "history_id": "1695423451505", + "date_created": "2023-09-22T22:57:31.505Z", + "date_last_updated": "2023-09-22T22:57:31.505Z", + "date_of_expiration": "2023-09-22T22:57:31.505Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 5 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1695423451671, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 360, + "installment_amount": 360, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "installment_paid": 6, + "installments_payable": 4, + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451671" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 360, + "total_amount": 360, + "id": "1695423451671", + "history_id": "1695423451671", + "date_created": "2023-09-22T22:57:31.671Z", + "date_last_updated": "2023-09-22T22:57:31.671Z", + "date_of_expiration": "2023-09-22T22:57:31.671Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "base_currency_id": "BRL", + "description": "Pagamento de fatura 6 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696380984974, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380984974" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125797630999374460", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1696380984974", + "history_id": "1696380984974", + "date_created": "2023-10-04T00:56:24.974Z", + "date_last_updated": "2023-10-04T00:56:24.974Z", + "date_of_expiration": "2023-10-04T00:56:24.974Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696380984991, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380984991" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125797630999374460", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1696380984991", + "history_id": "1696380984991", + "date_created": "2023-10-04T00:56:24.991Z", + "date_last_updated": "2023-10-04T00:56:24.991Z", + "date_of_expiration": "2023-10-04T00:56:24.991Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment", + "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696380985024, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380985024" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125797630999374460", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1696380985024", + "history_id": "1696380985024", + "date_created": "2023-10-04T00:56:25.024Z", + "date_last_updated": "2023-10-04T00:56:25.024Z", + "date_of_expiration": "2023-10-04T00:56:25.024Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment", + "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696380985244, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380985244" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125797630999374460", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1696380985244", + "history_id": "1696380985244", + "date_created": "2023-10-04T00:56:25.244Z", + "date_last_updated": "2023-10-04T00:56:25.244Z", + "date_of_expiration": "2023-10-04T00:56:25.244Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment", + "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384232144, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384232144" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125797630999374460", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1696384232144", + "history_id": "1696384232144", + "date_created": "2023-10-04T01:50:32.144Z", + "date_last_updated": "2023-10-04T01:50:32.144Z", + "date_of_expiration": "2023-10-04T01:50:32.144Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment", + "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384243583, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384243583" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125797630999374460", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1696384243583", + "history_id": "1696384243583", + "date_created": "2023-10-04T01:50:43.583Z", + "date_last_updated": "2023-10-04T01:50:43.583Z", + "date_of_expiration": "2023-10-04T01:50:43.583Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment", + "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696384243588, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384243588" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "125797630999374460", + "payment_method": "staking", + "original_amount": 8160000, + "total_amount": 8160000, + "id": "1696384243588", + "history_id": "1696384243588", + "date_created": "2023-10-04T01:50:43.588Z", + "date_last_updated": "2023-10-04T01:50:43.588Z", + "date_of_expiration": "2023-10-04T01:50:43.588Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "rejected", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "cc_rejected_duplicated_payment", + "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696406601868, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 8000000, + "installment_amount": 8000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696406601868" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "125797630999374460", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": "1696406601868", + "history_id": "1696406601868", + "date_created": "2023-10-04T08:03:21.868Z", + "date_last_updated": "2023-10-04T08:03:21.868Z", + "date_of_expiration": "2023-11-04T08:03:21.847Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": "2023-03-19T21:50:02.609Z", + "history_id": 1679262602609, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": "2023-03-19T21:50:02.609Z", + "history_id": 1679262602609, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": "2023-03-19T21:50:02.609Z", + "history_id": 1679262602609, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": "2023-03-19T21:50:02.609Z", + "history_id": 1679262602609, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-22T22:57:31.406Z", + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": "2023-03-19T21:50:02.609Z", + "history_id": 1679262602609, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-22T22:57:31.526Z", + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": "2023-03-19T21:50:02.609Z", + "history_id": 1679262602609, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-22T22:57:31.684Z", + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": "2023-03-19T21:50:02.609Z", + "history_id": 1679262602609, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": "2023-03-19T21:50:02.609Z", + "history_id": 1679262602609, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": "2023-03-19T21:50:02.609Z", + "history_id": 1679262602609, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": "2023-03-19T21:50:02.609Z", + "history_id": 1679262602609, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 3000, + "limitUsed": 2100, + "analysisRequested": "2023-03-19T00:10:39.579Z", + "lastReview": "2023-03-19T21:22:36.380Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "9285619.00000000", + "symbol": "IVIP", + "value": 990 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677377704211, + "dateValidity": 1679033074324, + "totalValue": 3498.3833869132864, + "currencyType": "USD", + "balancesModificacao": "2023-10-16T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/balances/BRL", + "content": { + "type": 1, + "value": { + "symbol": "BRL", + "available": "454.90000000", + "value": 90.844 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679266939492, + "acquirer_reference": "", + "verification_code": 1679266939492, + "net_received_amount": 0, + "total_paid_amount": 7, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 7, + "total_amount": 7, + "id": 1679266939492, + "date_created": "2023-03-19T23:02:19.492Z", + "date_last_updated": "2023-03-19T23:02:19.492Z", + "date_of_expiration": "2023-03-19T23:02:19.492Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1679266939492, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266973884/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679266973884, + "acquirer_reference": "", + "verification_code": 1679266973884, + "net_received_amount": 0, + "total_paid_amount": 50, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266973884", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 50, + "total_amount": 50, + "id": 1679266973884, + "date_created": "2023-03-19T23:02:53.884Z", + "date_last_updated": "2023-03-19T23:02:53.884Z", + "date_of_expiration": "2023-03-19T23:02:53.884Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1679266973884, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1679267111761/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679267111761, + "acquirer_reference": "", + "verification_code": 1679267111761, + "net_received_amount": 0, + "total_paid_amount": 100, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1679267111761", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 100, + "total_amount": 100, + "id": 1679267111761, + "date_created": "2023-03-19T23:05:11.761Z", + "date_last_updated": "2023-03-19T23:05:11.761Z", + "date_of_expiration": "2023-03-19T23:05:11.761Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1679267111761, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1679872001608/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679872001608, + "acquirer_reference": "", + "verification_code": 1679872001608, + "net_received_amount": 0, + "total_paid_amount": 25, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1679872001608", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 25, + "total_amount": 25, + "id": 1679872001608, + "date_created": "2023-03-26T23:06:41.608Z", + "date_last_updated": "2023-03-26T23:06:41.608Z", + "date_of_expiration": "2023-03-26T23:06:41.608Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1679872001608, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1684018958586/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684018958586, + "acquirer_reference": "", + "verification_code": 1684018958586, + "net_received_amount": 0, + "total_paid_amount": 120, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1684018958586", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 120, + "total_amount": 120, + "id": 1684018958586, + "date_created": "2023-05-13T23:02:38.586Z", + "date_last_updated": "2023-05-13T23:02:38.586Z", + "date_of_expiration": "2023-05-13T23:02:38.586Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684018958586, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1684348450676/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684348450676, + "acquirer_reference": "", + "verification_code": 1684348450676, + "net_received_amount": 0, + "total_paid_amount": 13, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1684348450676", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 13, + "total_amount": 13, + "id": 1684348450676, + "date_created": "2023-05-17T18:34:10.676Z", + "date_last_updated": "2023-05-17T18:34:10.676Z", + "date_of_expiration": "2023-05-17T18:34:10.676Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684348450676, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624165029/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624165029, + "acquirer_reference": "", + "verification_code": 1684624165029, + "net_received_amount": 0, + "total_paid_amount": 30, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624165029", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 30, + "total_amount": 30, + "id": 1684624165029, + "date_created": "2023-05-20T23:09:25.029Z", + "date_last_updated": "2023-05-20T23:09:25.029Z", + "date_of_expiration": "2023-05-20T23:09:25.029Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624165029, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624981228/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624981228, + "acquirer_reference": "", + "verification_code": 1684624981228, + "net_received_amount": 0, + "total_paid_amount": 109.9, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624981228", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 109.9, + "total_amount": 109.9, + "id": 1684624981228, + "date_created": "2023-05-20T23:23:01.228Z", + "date_last_updated": "2023-05-20T23:23:01.228Z", + "date_of_expiration": "2023-05-20T23:23:01.228Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624981228, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677885325302, + "dateValidity": 1677929034802, + "totalValue": 89.197, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/127785137141729800/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/127785137141729800", + "content": { + "type": 1, + "value": { + "dataModificacao": 1695173270592, + "dateValidity": 1695173270620, + "currencyType": "USD", + "balancesModificacao": "2023-09-20T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/127995869380983060", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678268990831, + "dateValidity": 1678279790864, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "15415938.00000000", + "symbol": "IVIP", + "value": 3434.39 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 2000, + "total_amount": 2000, + "history_id": 1677726769800, + "id": 1677726769800, + "date_created": "2023-03-02T03:12:49.800Z", + "date_last_updated": "2023-03-02T11:00:57.517Z", + "date_of_expiration": "2023-04-01T03:12:49.800Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-02T11:00:57.517Z", + "money_release_date": "2023-03-02T11:00:57.517Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 3000, + "total_amount": 3000, + "history_id": 1678032850996, + "id": 1678032850996, + "date_created": "2023-03-05T16:14:10.996Z", + "date_last_updated": "2023-03-05T18:41:48.688Z", + "date_of_expiration": "2023-04-04T16:14:10.996Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-05T18:41:48.688Z", + "money_release_date": "2023-03-05T18:41:48.688Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1287.0114.4173.8232-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1678076967863/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678076967863, + "acquirer_reference": "", + "verification_code": 1678076967863, + "net_received_amount": 0, + "total_paid_amount": 5000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1678076967863", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 35378057, + "total_amount": 35378057, + "id": 1678076967863, + "date_created": "2023-03-06T04:29:27.863Z", + "date_last_updated": "2023-03-06T04:29:27.863Z", + "date_of_expiration": "2023-03-06T04:29:27.863Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678076967863, + "description": "Compra de 35378057 IVIP por 5000 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 2000, + "total_amount": 2240, + "history_id": 1679268249425, + "id": 1679268249425, + "date_created": "2023-03-19T23:24:09.425Z", + "date_last_updated": "2023-03-19T23:24:09.425Z", + "date_of_expiration": "2023-04-18T23:24:09.425Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1679871677212/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679871677212, + "acquirer_reference": "", + "verification_code": 1679871677212, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1679871677212", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 10651254, + "total_amount": 10651254, + "id": 1679871677212, + "date_created": "2023-03-26T23:01:17.212Z", + "date_last_updated": "2023-03-26T23:01:17.212Z", + "date_of_expiration": "2023-03-26T23:01:17.212Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679871677212, + "description": "Compra de 10.651.254,00 IVIP por 2.000,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 1000, + "total_amount": 1120, + "history_id": 1679872304314, + "id": 1679872304314, + "date_created": "2023-03-26T23:11:44.314Z", + "date_last_updated": "2023-03-26T23:11:44.314Z", + "date_of_expiration": "2023-04-25T23:11:44.314Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872334513/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679872334513, + "acquirer_reference": "", + "verification_code": 1679872334513, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872334513", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 5325627, + "total_amount": 5325627, + "id": 1679872334513, + "date_created": "2023-03-26T23:12:14.513Z", + "date_last_updated": "2023-03-26T23:12:14.513Z", + "date_of_expiration": "2023-03-26T23:12:14.513Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679872334513, + "description": "Compra de 5.325.627,00 IVIP por 1.000,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 840, + "total_amount": 840, + "history_id": 1682619398300, + "id": 1682619398300, + "date_created": "2023-04-27T18:16:38.300Z", + "date_last_updated": "2023-04-27T18:22:41.924Z", + "date_of_expiration": "2023-05-27T18:16:38.300Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-04-27T18:22:41.924Z", + "money_release_date": "2023-04-27T18:22:41.924Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 840,00 para a carteira iVip 1287.0114.4173.8232-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932343/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 3, + "payment_method_reference_id": 1682619932343, + "acquirer_reference": "", + "verification_code": 1682619932343, + "net_received_amount": 0, + "total_paid_amount": 560, + "overpaid_amount": 0, + "installment_amount": 560, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932343", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 560, + "total_amount": 560, + "id": 1682619932343, + "contract_id": "1679268249425", + "date_created": "2023-04-27T18:25:32.343Z", + "date_last_updated": "2023-04-27T18:25:32.343Z", + "date_of_expiration": "2023-04-27T18:25:32.343Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682619932343, + "description": "Pagamento de fatura 1 de 4 no valor de 560,00 BRL referente ao contrato 1679268249425" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932484/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "installment_paid": 1, + "installments_payable": 3, + "payment_method_reference_id": 1682619932484, + "acquirer_reference": "", + "verification_code": 1682619932484, + "net_received_amount": 0, + "total_paid_amount": 280, + "overpaid_amount": 0, + "installment_amount": 280, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932484", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method_id": "credit", + "payment_method": "credit", + "original_amount": 280, + "total_amount": 280, + "id": 1682619932484, + "contract_id": "1679872304314", + "date_created": "2023-04-27T18:25:32.484Z", + "date_last_updated": "2023-04-27T18:25:32.484Z", + "date_of_expiration": "2023-04-27T18:25:32.484Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "BRL", + "history_id": 1682619932484, + "description": "Pagamento de fatura 1 de 4 no valor de 280,00 BRL referente ao contrato 1679872304314" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1685667547180/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685667547180, + "acquirer_reference": "", + "verification_code": 1685667547180, + "net_received_amount": 0, + "total_paid_amount": 8000000, + "overpaid_amount": 0, + "installment_amount": 8000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1685667547180", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 8000000, + "total_amount": 8000000, + "id": 1685667547180, + "date_created": "2023-06-02T00:59:07.180Z", + "date_last_updated": "2023-06-02T00:59:07.180Z", + "date_of_expiration": "2025-06-02T00:59:07.180Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685667547180, + "wasDebited": true, + "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 3000000, + "total_amount": 3000000, + "history_id": 1688772261924, + "id": 1688772261924, + "date_created": "2023-07-07T23:24:21.924Z", + "date_last_updated": "2023-07-10T17:24:09.267Z", + "date_of_expiration": "2023-07-07T23:24:21.924Z", + "operation_type": "regular_payment", + "status": "discounted", + "status_detail": "discounted", + "currency_id": "IVIP", + "date_approved": "2023-07-10T17:24:09.267Z", + "money_release_date": "2023-07-10T17:24:09.267Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 3.000.000,00 IVIP para a carteira 0xDB45185C1086eFFBAA2d0b64862c83Bd9D29DE62" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 748170 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1692276235458, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 24939000, + "installment_amount": 24939000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/128701144173823280/history/1692276235458" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 24939000, + "total_amount": 24190830, + "id": 1692276235458, + "history_id": 1692276235458, + "date_created": "2023-08-17T12:43:55.458Z", + "date_last_updated": "2023-08-18T13:47:15.287Z", + "date_of_expiration": "2023-08-17T12:43:55.458Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": "2023-08-18T13:47:15.287Z", + "money_release_date": "2023-08-18T13:47:15.287Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 24.190.830,00 IVIP para a carteira 0xDB45185C1086eFFBAA2d0b64862c83Bd9D29DE62" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425", + "content": { + "type": 1, + "value": { + "id": 1679268249425, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2240, + "installments": 4, + "installment_amount": 560, + "date_created": "2023-03-19T23:24:09.425Z", + "history_id": 1679268249425, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314", + "content": { + "type": 1, + "value": { + "id": 1679872304314, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1120, + "installments": 4, + "installment_amount": 280, + "date_created": "2023-03-26T23:11:44.314Z", + "history_id": 1679872304314, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425", + "content": { + "type": 1, + "value": { + "id": 1679268249425, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2240, + "installments": 4, + "installment_amount": 560, + "date_created": "2023-03-19T23:24:09.425Z", + "history_id": 1679268249425, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314", + "content": { + "type": 1, + "value": { + "id": 1679872304314, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1120, + "installments": 4, + "installment_amount": 280, + "date_created": "2023-03-26T23:11:44.314Z", + "history_id": 1679872304314, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425", + "content": { + "type": 1, + "value": { + "id": 1679268249425, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2240, + "installments": 4, + "installment_amount": 560, + "date_created": "2023-03-19T23:24:09.425Z", + "history_id": 1679268249425, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314", + "content": { + "type": 1, + "value": { + "id": 1679872304314, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1120, + "installments": 4, + "installment_amount": 280, + "date_created": "2023-03-26T23:11:44.314Z", + "history_id": 1679872304314, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425", + "content": { + "type": 1, + "value": { + "id": 1679268249425, + "type": "emprestimo", + "original_amount": 2000, + "total_amount": 2240, + "installments": 4, + "installment_amount": 560, + "date_created": "2023-03-19T23:24:09.425Z", + "history_id": 1679268249425, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314", + "content": { + "type": 1, + "value": { + "id": 1679872304314, + "type": "emprestimo", + "original_amount": 1000, + "total_amount": 1120, + "installments": 4, + "installment_amount": 280, + "date_created": "2023-03-26T23:11:44.314Z", + "history_id": 1679872304314, + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 10000, + "limitUsed": 2250, + "analysisRequested": "2023-03-19T23:03:43.911Z", + "lastReview": "2023-03-19T23:09:16.871Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677412042762, + "dateValidity": 1678206220392, + "totalValue": 6834.92, + "currencyType": "USD", + "balancesModificacao": "2023-09-28T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 500, + "total_amount": 500, + "history_id": 1684145604531, + "id": 1684145604531, + "date_created": "2023-05-15T10:13:24.531Z", + "date_last_updated": "2023-05-15T10:13:24.531Z", + "date_of_expiration": "2023-06-14T10:13:24.531Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1302.5146.4382.3786-70" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/130251464382378670/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/130251464382378670", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684145436275, + "dateValidity": 1684145436275, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/132892661243254380/balances/BRL", "content": { "type": 1, "value": { - "available": "2528.00700001", "symbol": "BRL", - "value": 494.23 + "value": 0, + "available": "0.00000000" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/132892661243254380/balances/IVIP", + "content": { + "type": 1, + "value": { + "symbol": "IVIP", + "available": "1069072.00000000", + "value": 37.92 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1677984009002, + "id": 1677984009002, + "date_created": "2023-03-05T02:40:09.002Z", + "date_last_updated": "2023-03-10T12:42:28.101Z", + "date_of_expiration": "2023-04-04T02:40:09.002Z", + "operation_type": "regular_payment", + "status": "rejected", + "status_detail": "rejected", + "currency_id": "BRL", + "money_release_date": "2023-03-10T12:42:28.101Z", + "money_release_status": "rejected", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 1328.9266.1243.2543-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1678119185082, + "id": 1678119185082, + "date_created": "2023-03-06T16:13:05.082Z", + "date_last_updated": "2023-03-06T16:13:05.082Z", + "date_of_expiration": "2023-04-05T16:13:05.082Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 1328.9266.1243.2543-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 200, + "total_amount": 200, + "history_id": 1678119441612, + "id": 1678119441612, + "date_created": "2023-03-06T16:17:21.612Z", + "date_last_updated": "2023-03-09T14:31:06.897Z", + "date_of_expiration": "2023-04-05T16:17:21.612Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-09T14:31:06.897Z", + "money_release_date": "2023-03-09T14:31:06.897Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 200,00 para a carteira iVip 1328.9266.1243.2543-80" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/132892661243254380/history/1679940518294/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679940518294, + "acquirer_reference": "", + "verification_code": 1679940518294, + "net_received_amount": 0, + "total_paid_amount": 200, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/132892661243254380/history/1679940518294", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1069072, + "total_amount": 1069072, + "id": 1679940518294, + "date_created": "2023-03-27T18:08:38.294Z", + "date_last_updated": "2023-03-27T18:08:38.294Z", + "date_of_expiration": "2023-03-27T18:08:38.294Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679940518294, + "description": "Compra de 1.069.072,00 IVIP por 200,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/132892661243254380", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677983983862, + "dateValidity": 1678983329949, + "totalValue": 37.76, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "30608.00000000", + "symbol": "IVIP", + "value": 3.42 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/balances/BRL", + "content": { + "type": 1, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-06T21:00:23.188Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691442023188, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691442023188" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1691442023188, + "history_id": 1691442023188, + "date_created": "2023-08-07T21:00:23.188Z", + "date_last_updated": "2023-08-07T21:00:23.188Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 20,00 para a carteira iVip 1336.7505.4149.0212-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-09-07T22:30:56.606Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691533856606, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691533856606" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": 1691533856606, + "history_id": 1691533856606, + "date_created": "2023-08-08T22:30:56.606Z", + "date_last_updated": "2023-08-08T23:24:11.872Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-08-08T23:24:11.872Z", + "money_release_date": "2023-08-08T23:24:11.872Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 20,00 para a carteira iVip 1336.7505.4149.0212-50" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/history/1691597759364/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691597759364, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691597759364" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/history/1691597759364", + "content": { + "type": 1, + "value": { + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method": "swap", + "original_amount": 30608, + "total_amount": 30608, + "id": 1691597759364, + "history_id": 1691597759364, + "date_created": "2023-08-09T16:15:59.364Z", + "date_last_updated": "2023-08-09T16:15:59.364Z", + "date_of_expiration": "2023-08-09T16:15:59.364Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "currency_id": "IVIP", + "base_currency_id": "BRL", + "status": "approved", + "description": "Compra de 30.608,00 IVIP por 20,00 BRL", + "status_detail": "accredited" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250", + "content": { + "type": 1, + "value": { + "dataModificacao": 1691441898494, + "dateValidity": 1691441898538, + "currencyType": "USD", + "balancesModificacao": "2023-08-11T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689202732019, + "id": 1689202732019, + "date_created": "2023-07-12T22:58:52.019Z", + "date_last_updated": "2023-07-12T22:58:52.019Z", + "date_of_expiration": "2023-08-11T22:58:52.019Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689455294552, + "id": 1689455294552, + "date_created": "2023-07-15T21:08:14.552Z", + "date_last_updated": "2023-07-15T21:08:14.552Z", + "date_of_expiration": "2023-08-14T21:08:14.552Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689455325352, + "id": 1689455325352, + "date_created": "2023-07-15T21:08:45.352Z", + "date_last_updated": "2023-07-15T21:08:45.352Z", + "date_of_expiration": "2023-08-14T21:08:45.352Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719321, + "modified": 1700589719321 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133736879099726860/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133736879099726860", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689199381511, + "dateValidity": 1689199381511, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1700, + "total_amount": 1700, + "history_id": 1684183743876, + "id": 1684183743876, + "date_created": "2023-05-15T20:49:03.876Z", + "date_last_updated": "2023-05-15T20:49:03.876Z", + "date_of_expiration": "2023-06-14T20:49:03.876Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 1.700,00 para a carteira iVip 1346.8212.0797.4517-90" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/134682120797451790/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/134682120797451790", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684171343507, + "dateValidity": 1684171343507, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/137445448878708240", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678373632630, + "dateValidity": 1678388032664, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "history_id": 1689208709356, + "id": 1689208709356, + "date_created": "2023-07-13T00:38:29.356Z", + "date_last_updated": "2023-07-13T00:38:29.356Z", + "date_of_expiration": "2023-08-12T00:38:29.356Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "BRL", + "description": "Deposito de um valor R$ 20,00 para a carteira iVip 1384.8850.0273.9255-70" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138488500273925570/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138488500273925570", + "content": { + "type": 1, + "value": { + "dataModificacao": 1689183505496, + "dateValidity": 1689183505496, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "919038.84000000", + "symbol": "IVIP", + "value": 654.99 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "history_id": 1677847333011, + "id": 1677847333011, + "date_created": "2023-03-03T12:42:13.011Z", + "date_last_updated": "2023-03-03T16:22:44.643Z", + "date_of_expiration": "2023-04-02T12:42:13.011Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-03-03T16:22:44.643Z", + "money_release_date": "2023-03-03T16:22:44.643Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1385.8527.3860.3328-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1678180078100/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678180078100, + "acquirer_reference": "", + "verification_code": 1678180078100, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1678180078100", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 7131208, + "total_amount": 7131208, + "id": 1678180078100, + "date_created": "2023-03-07T09:07:58.100Z", + "date_last_updated": "2023-03-07T09:07:58.100Z", + "date_of_expiration": "2023-03-07T09:07:58.100Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1678180078100, + "description": "Compra de 7131208 IVIP por 1000 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1678198835623/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678198835623, + "acquirer_reference": "", + "verification_code": 1678198835623, + "net_received_amount": 0, + "total_paid_amount": 2000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1678198835623", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 2000, + "total_amount": 2000, + "id": 1678198835623, + "date_created": "2023-03-07T14:20:35.623Z", + "date_last_updated": "2023-03-07T14:20:35.623Z", + "date_of_expiration": "2023-03-07T14:20:35.623Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1678198835623, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1678228246387/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1678228246387, + "acquirer_reference": "", + "verification_code": 1678228246387, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1678228246387", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1000, + "total_amount": 1000, + "id": 1678228246387, + "date_created": "2023-03-07T22:30:46.387Z", + "date_last_updated": "2023-03-07T22:30:46.387Z", + "date_of_expiration": "2023-03-07T22:30:46.387Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1678228246387, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1679266874503/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679266874503, + "acquirer_reference": "", + "verification_code": 1679266874503, + "net_received_amount": 0, + "total_paid_amount": 1000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1679266874503", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1000, + "total_amount": 1000, + "id": 1679266874503, + "date_created": "2023-03-19T23:01:14.503Z", + "date_last_updated": "2023-03-19T23:01:14.503Z", + "date_of_expiration": "2023-03-19T23:01:14.503Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1679266874503, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1679267008673/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1679267008673, + "acquirer_reference": "", + "verification_code": 1679267008673, + "net_received_amount": 0, + "total_paid_amount": 4000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1679267008673", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 23286153, + "total_amount": 23286153, + "id": 1679267008673, + "date_created": "2023-03-19T23:03:28.673Z", + "date_last_updated": "2023-03-19T23:03:28.673Z", + "date_of_expiration": "2023-03-19T23:03:28.673Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1679267008673, + "description": "Compra de 23286153 IVIP por 4000 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547", + "content": { + "type": 1, + "value": { + "type": "emprestimo", + "wallet_type": "IVIPCOIN", + "payment_method": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "history_id": 1684019947547, + "id": 1684019947547, + "date_created": "2023-05-13T23:19:07.547Z", + "date_last_updated": "2023-05-13T23:19:07.547Z", + "date_of_expiration": "2023-06-12T23:19:07.547Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "wasDebited": true, + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684348689379/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684348689379, + "acquirer_reference": "", + "verification_code": 1684348689379, + "net_received_amount": 0, + "total_paid_amount": 1040, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684348689379", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 1040, + "total_amount": 1040, + "id": 1684348689379, + "date_created": "2023-05-17T18:38:09.379Z", + "date_last_updated": "2023-05-17T18:38:09.379Z", + "date_of_expiration": "2023-05-17T18:38:09.379Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684348689379, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624162871/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624162871, + "acquirer_reference": "", + "verification_code": 1684624162871, + "net_received_amount": 0, + "total_paid_amount": 11040, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624162871", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 53772878, + "total_amount": 53772878, + "id": 1684624162871, + "date_created": "2023-05-20T23:09:22.871Z", + "date_last_updated": "2023-05-20T23:09:22.871Z", + "date_of_expiration": "2023-05-20T23:09:22.871Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624162871, + "description": "Compra de 53.772.878,00 IVIP por 11.040,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624267520/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624267520, + "acquirer_reference": "", + "verification_code": 1684624267520, + "net_received_amount": 0, + "total_paid_amount": 258.1, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624267520", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 258.1, + "total_amount": 258.1, + "id": 1684624267520, + "date_created": "2023-05-20T23:11:07.520Z", + "date_last_updated": "2023-05-20T23:11:07.520Z", + "date_of_expiration": "2023-05-20T23:11:07.520Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624267520, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624311448/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624311448, + "acquirer_reference": "", + "verification_code": 1684624311448, + "net_received_amount": 0, + "total_paid_amount": 258.1, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624311448", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 1257135, + "total_amount": 1257135, + "id": 1684624311448, + "date_created": "2023-05-20T23:11:51.448Z", + "date_last_updated": "2023-05-20T23:11:51.448Z", + "date_of_expiration": "2023-05-20T23:11:51.448Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684624311448, + "description": "Compra de 1.257.135,00 IVIP por 258,10 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624493050/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684624493050, + "acquirer_reference": "", + "verification_code": 1684624493050, + "net_received_amount": 0, + "total_paid_amount": 12.600000000000001, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624493050", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 12.600000000000001, + "total_amount": 12.600000000000001, + "id": 1684624493050, + "date_created": "2023-05-20T23:14:53.050Z", + "date_last_updated": "2023-05-20T23:14:53.050Z", + "date_of_expiration": "2023-05-20T23:14:53.050Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684624493050, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684627629023/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684627629023, + "acquirer_reference": "", + "verification_code": 1684627629023, + "net_received_amount": 0, + "total_paid_amount": 13, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684627629023", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 13, + "total_amount": 13, + "id": 1684627629023, + "date_created": "2023-05-21T00:07:09.023Z", + "date_last_updated": "2023-05-21T00:07:09.023Z", + "date_of_expiration": "2023-05-21T00:07:09.023Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684627629023, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684692136128/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684692136128, + "acquirer_reference": "", + "verification_code": 1684692136128, + "net_received_amount": 0, + "total_paid_amount": 3.2, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684692136128", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "reference", + "payment_method": "reference", + "original_amount": 3.2, + "total_amount": 3.2, + "id": 1684692136128, + "date_created": "2023-05-21T18:02:16.128Z", + "date_last_updated": "2023-05-21T18:02:16.128Z", + "date_of_expiration": "2023-05-21T18:02:16.128Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "history_id": 1684692136128, + "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684710449691/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1684710449691, + "acquirer_reference": "", + "verification_code": 1684710449691, + "net_received_amount": 0, + "total_paid_amount": 28.8, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684710449691", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 139785, + "total_amount": 139785, + "id": 1684710449691, + "date_created": "2023-05-21T23:07:29.691Z", + "date_last_updated": "2023-05-21T23:07:29.691Z", + "date_of_expiration": "2023-05-21T23:07:29.691Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1684710449691, + "description": "Compra de 139.785,00 IVIP por 28,80 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 30550000, + "total_amount": 30550000, + "history_id": 1689025596946, + "id": 1689025596946, + "date_created": "2023-07-10T21:46:36.946Z", + "date_last_updated": "2023-07-10T21:46:36.946Z", + "date_of_expiration": "2023-07-10T21:46:36.946Z", + "operation_type": "regular_payment", + "status": "pending", + "status_detail": "pending_waiting_payment", + "currency_id": "IVIP", + "description": "Saque de 30.550.000,00 IVIP para a carteira 0xe19A954Bb3bc15ff05fDD30BB22AE96bF4425Bf0" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "credit", + "original_amount": 48707317, + "total_amount": 48707317, + "history_id": 1690515792985, + "id": 1690515792985, + "date_created": "2023-07-28T03:43:12.985Z", + "date_last_updated": "2023-07-28T03:43:12.985Z", + "date_of_expiration": "2023-07-28T03:43:12.985Z", + "operation_type": "regular_payment", + "status": "refunded", + "status_detail": "cc_discounted_due_default", + "currency_id": "IVIP", + "date_approved": "2023-07-28T03:43:12.985Z", + "money_release_date": "2023-07-28T03:43:12.985Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Devolução de 48.707.317,00 IVIP da carteira 1385.8527.3860.3328-20" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 1047600 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1690812074851, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 36000000, + "installment_amount": 36000000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1690812074851" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851", + "content": { + "type": 1, + "value": { + "type": "transfer", + "wallet_type": "IVIPCOIN", + "payment_method": "transfer", + "original_amount": 36000000, + "total_amount": 34920000, + "id": 1690812074851, + "history_id": 1690812074851, + "date_created": "2023-07-31T14:01:14.851Z", + "date_last_updated": "2023-08-04T21:27:13.764Z", + "date_of_expiration": "2023-07-31T14:01:14.851Z", + "operation_type": "recurring_payment", + "payment_type": "ticket", + "status": "discounted", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "discounted", + "date_approved": "2023-08-04T21:27:13.764Z", + "money_release_date": "2023-08-04T21:27:13.764Z", + "money_release_status": "discounted", + "wasDebited": true, + "description": "Saque de 34.920.000,00 IVIP para a carteira 0xe19A954Bb3bc15ff05fDD30BB22AE96bF4425Bf0" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691235380464, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1959842, + "installment_amount": 1959842, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1691235380464" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1959842, + "total_amount": 1959842, + "id": 1691235380464, + "history_id": 1691235380464, + "date_created": "2023-08-05T11:36:20.464Z", + "date_last_updated": "2023-08-05T11:36:20.464Z", + "date_of_expiration": "2023-09-05T11:36:20.463Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 1.959.842,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693914295943, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1959842, + "installment_amount": 1959842, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1693914295943" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1999038.84, + "total_amount": 1999038.84, + "id": "1693914295943", + "history_id": "1693914295943", + "date_created": "2023-09-05T11:44:55.943Z", + "date_last_updated": "2023-09-05T11:44:55.943Z", + "date_of_expiration": "2023-09-05T11:44:55.943Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 1.959.842,00 IVIP com um rendimento de +39.196,84 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": "2023-05-13T23:19:07.547Z", + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": "2023-05-13T23:19:07.547Z", + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": "2023-05-13T23:19:07.547Z", + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": "2023-05-13T23:19:07.547Z", + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": "2023-05-13T23:19:07.547Z", + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": "2023-05-13T23:19:07.547Z", + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": "2023-05-13T23:19:07.547Z", + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": "2023-05-13T23:19:07.547Z", + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": "2023-05-13T23:19:07.547Z", + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": "2023-05-13T23:19:07.547Z", + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": "2023-05-13T23:19:07.547Z", + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547", + "content": { + "type": 1, + "value": { + "id": 1684019947547, + "type": "emprestimo", + "original_amount": 10000, + "total_amount": 12400, + "installments": 12, + "installment_amount": 1033.3333333333333, + "date_created": "2023-05-13T23:19:07.547Z", + "history_id": 1684019947547, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 10000, + "limitUsed": 10000, + "analysisRequested": "2023-05-13T11:07:07.691Z", + "lastReview": "2023-05-13T19:52:36.024Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677844580252, + "dateValidity": 1678311387021, + "totalValue": 3272.893, + "currencyType": "USD", + "balancesModificacao": "2023-10-07T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/139283242086295280", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696229796136, + "dateValidity": 1696229796165, + "currencyType": "USD", + "balancesModificacao": "2023-10-02T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "220191.58000000", + "symbol": "IVIP", + "value": 29.61 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1600, + "total_amount": 1600, + "history_id": 1685110971189, + "id": 1685110971189, + "date_created": "2023-05-26T14:22:51.189Z", + "date_last_updated": "2023-05-26T23:32:38.384Z", + "date_of_expiration": "2023-06-25T14:22:51.189Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-05-26T23:32:38.384Z", + "money_release_date": "2023-05-26T23:32:38.384Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 1.600,00 para a carteira iVip 1404.9875.6876.3405-00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1685727229028/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1685727229028, + "acquirer_reference": "", + "verification_code": 1685727229028, + "net_received_amount": 0, + "total_paid_amount": 1600, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1685727229028", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 5398200, + "total_amount": 5398200, + "id": 1685727229028, + "date_created": "2023-06-02T17:33:49.028Z", + "date_last_updated": "2023-06-02T17:33:49.028Z", + "date_of_expiration": "2023-06-02T17:33:49.028Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1685727229028, + "description": "Compra de 5.398.200,00 IVIP por 1.600,00 BRL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1687318007517/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1687318007517, + "acquirer_reference": "", + "verification_code": 1687318007517, + "net_received_amount": 0, + "total_paid_amount": 5000000, + "overpaid_amount": 0, + "installment_amount": 5000000, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1687318007517", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 5000000, + "total_amount": 5000000, + "id": 1687318007517, + "date_created": "2023-06-21T03:26:47.517Z", + "date_last_updated": "2023-06-21T03:26:47.517Z", + "date_of_expiration": "2025-06-21T03:26:47.517Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1687318007517, + "description": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2025" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1688408922424/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1688408922424, + "acquirer_reference": "", + "verification_code": 1688408922424, + "net_received_amount": 0, + "total_paid_amount": 320960, + "overpaid_amount": 0, + "installment_amount": 320960, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1688408922424", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 320960, + "total_amount": 320960, + "id": 1688408922424, + "date_created": "2023-07-03T18:28:42.424Z", + "date_last_updated": "2023-07-03T18:28:42.424Z", + "date_of_expiration": "2023-08-03T18:28:42.424Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1688408922424, + "description": "Investimento de 320.960,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1691087650613/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1691087650613, + "acquirer_reference": "", + "verification_code": 1691087650613, + "net_received_amount": 0, + "total_paid_amount": 320960, + "overpaid_amount": 0, + "installment_amount": 320960, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1691087650613", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method_id": "staking", + "payment_method": "staking", + "original_amount": 327379.2, + "total_amount": 327379.2, + "id": 1691087650613, + "date_created": "2023-08-03T18:34:10.613Z", + "date_last_updated": "2023-08-03T18:34:10.613Z", + "date_of_expiration": "2023-08-03T18:34:10.613Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1691087650613, + "wasDebited": true, + "description": "Resgate do investimento staking de 320.960,00 IVIP com um rendimento de +6.419,2 IVIP (2,00%)" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1691114916429, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 366669, + "installment_amount": 366669, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1691114916429" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 366669, + "total_amount": 366669, + "id": 1691114916429, + "history_id": 1691114916429, + "date_created": "2023-08-04T02:08:36.429Z", + "date_last_updated": "2023-08-04T02:08:36.429Z", + "date_of_expiration": "2023-09-04T02:08:36.390Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 366.669,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693793335003, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 366669, + "installment_amount": 366669, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1693793335003" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 374002.38, + "total_amount": 374002.38, + "id": "1693793335003", + "history_id": "1693793335003", + "date_created": "2023-09-04T02:08:55.003Z", + "date_last_updated": "2023-09-04T02:08:55.003Z", + "date_of_expiration": "2023-09-04T02:08:55.003Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 366.669,00 IVIP com um rendimento de +7.333,38 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693793542322, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 411950, + "installment_amount": 411950, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1693793542322" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 411950, + "total_amount": 411950, + "id": "1693793542322", + "history_id": "1693793542322", + "date_created": "2023-09-04T02:12:22.322Z", + "date_last_updated": "2023-09-04T02:12:22.322Z", + "date_of_expiration": "2023-10-04T02:12:22.321Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 411.950,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696395329903, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 411950, + "installment_amount": 411950, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1696395329903" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "wallet_id": "140498756876340500", + "payment_method": "staking", + "original_amount": 420189, + "total_amount": 420189, + "id": "1696395329903", + "history_id": "1696395329903", + "date_created": "2023-10-04T04:55:29.903Z", + "date_last_updated": "2023-10-04T04:55:29.903Z", + "date_of_expiration": "2023-10-04T04:55:29.903Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Resgate do investimento staking de 411.950,00 IVIP com um rendimento de +8.239,00 IVIP (2,00%) - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1696472422028, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 200000, + "installment_amount": 200000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1696472422028" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "wallet_id": "140498756876340500", + "payment_method": "staking", + "original_amount": 200000, + "total_amount": 200000, + "id": "1696472422028", + "history_id": "1696472422028", + "date_created": "2023-10-05T02:20:22.028Z", + "date_last_updated": "2023-10-05T02:20:22.028Z", + "date_of_expiration": "2023-11-05T02:20:21.996Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 200.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500", + "content": { + "type": 1, + "value": { + "dataModificacao": 1684358980805, + "dateValidity": 1684358980805, + "totalValue": 82.79825942258582, + "currencyType": "USD", + "balancesModificacao": "2023-10-07T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/142977693689888340/balances/IVIP", + "content": { + "type": 1, + "value": { + "available": "2112486.00000000", + "symbol": "IVIP", + "value": 239.28 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 5000, + "total_amount": 5000, + "history_id": 1689206251825, + "id": 1689206251825, + "date_created": "2023-07-12T23:57:31.825Z", + "date_last_updated": "2023-07-13T00:14:19.742Z", + "date_of_expiration": "2023-08-11T23:57:31.825Z", + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": "2023-07-13T00:14:19.742Z", + "money_release_date": "2023-07-13T00:14:19.742Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor R$ 5.000,00 para a carteira iVip 1429.7769.3689.8883-40" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/142977693689888340/history/1689208259450/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "payment_method_reference_id": 1689208259450, + "acquirer_reference": "", + "verification_code": 1689208259450, + "net_received_amount": 0, + "total_paid_amount": 5000, + "overpaid_amount": 0, + "installment_amount": 0, + "financial_institution": "ivipcoin", + "external_resource_url": "" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/142977693689888340/history/1689208259450", + "content": { + "type": 1, + "value": { + "wasDebited": true, + "type": "swap", + "wallet_type": "IVIPCOIN", + "payment_method_id": "swap", + "payment_method": "swap", + "original_amount": 2112486, + "total_amount": 2112486, + "id": 1689208259450, + "date_created": "2023-07-13T00:30:59.450Z", + "date_last_updated": "2023-07-13T00:30:59.450Z", + "date_of_expiration": "2023-07-13T00:30:59.450Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "history_id": 1689208259450, + "description": "Compra de 2.112.486,00 IVIP por 5.000,00 BRL" }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700575282780, - "modified": 1700575282780 + "created": 1700589719322, + "modified": 1700589719322 } }, { - "path": "ivipcoin-db::movement_wallet/000523147298669313/balances/IVIP", + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/142977693689888340/credit", "content": { "type": 1, "value": { - "available": "1499269.00000000", - "symbol": "IVIP", - "value": 158.48 + "approvedLimit": 0, + "limitUsed": 0 }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700575282780, - "modified": 1700575282780 + "created": 1700589719322, + "modified": 1700589719322 } }, { - "path": "ivipcoin-db::movement_wallet/147006993684782200/history/1678652275580/history/1678652275580/history/1678652275580", + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/142977693689888340", "content": { "type": 1, "value": { - "type": "deposit", - "wallet_type": "IVIPCOIN", - "payment_method": "pix", - "original_amount": 100, - "total_amount": 100.99, - "history_id": 1678652275580, - "id": 55661848873, - "date_created": "2023-03-12T16:17:56.428-04:00", - "date_last_updated": "2023-03-13T16:21:02.000-04:00", - "date_of_expiration": "2023-03-13T16:17:56.084-04:00", - "operation_type": "regular_payment", - "payment_type": "bank_transfer", - "status": "cancelled", - "status_detail": "expired", - "currency_id": "BRL" + "dataModificacao": 1689206116426, + "dateValidity": 1689206116426, + "totalValue": 1030, + "currencyType": "USD", + "balancesModificacao": "2023-10-12T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/145100373829536670", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679078857171, + "dateValidity": 1679078857171, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": "2023-10-07T03:00:00.000Z" }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700575282781, - "modified": 1700575282781 + "created": 1700589719322, + "modified": 1700589719322 } }, { - "path": "ivipcoin-db::movement_wallet/147006993684782200/history/1678652275580/history/1678652275580", + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146025594361679260", + "content": { + "type": 1, + "value": { + "dataModificacao": 1679356008303, + "dateValidity": 1679356008303, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-17T18:47:13.538Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694976433538, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 20, + "installment_amount": 20, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/146193775313990370/history/1694976433538" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538", "content": { "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", - "payment_method": "pix", - "original_amount": 100, - "total_amount": 100.99, - "history_id": 1678652275580, - "id": 55661848873, - "date_created": "2023-03-12T16:17:56.428-04:00", - "date_last_updated": "2023-03-13T16:21:02.000-04:00", - "date_of_expiration": "2023-03-13T16:17:56.084-04:00", + "payment_method": "whatsapp", + "original_amount": 20, + "total_amount": 20, + "id": "1694976433538", + "history_id": "1694976433538", + "date_created": "2023-09-17T18:47:13.538Z", + "date_last_updated": "2023-09-17T18:47:13.538Z", "operation_type": "regular_payment", - "payment_type": "bank_transfer", - "status": "cancelled", - "status_detail": "expired", - "currency_id": "BRL" + "payment_type": "ticket", + "status": "pending", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "pending_waiting_payment", + "description": "Deposito de um valor 20,00 BRL para a carteira iVip 1461.9377.5313.9903-70" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146193775313990370/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146193775313990370", + "content": { + "type": 1, + "value": { + "dataModificacao": 1694975442899, + "dateValidity": 1694975443028, + "currencyType": "USD", + "balancesModificacao": "2023-10-10T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146193999422064450/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146193999422064450", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677393088450, + "dateValidity": 1677393088450, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146386157285818500", + "content": { + "type": 1, + "value": { + "dataModificacao": 1677820583824, + "dateValidity": 1677838584623, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/costs/0", + "content": { + "type": 1, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.9900000000000001 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info/collector", + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details", + "content": { + "type": 1, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 100.99, + "overpaid_amount": 0, + "installment_amount": 0, + "qr_code": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter5566184887363046119", + "ticket_url": "https://www.mercadopago.com.br/payments/55661848873/ticket?caller_id=1310149122&hash=e13553d1-ab9f-45c3-ab92-c23df003b316", + "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIxklEQVR42u3dW27kNhAFUO5A+9+ldqAgwWDcYt2inGSAZMSjD8N2d0uH/Veo17h+o+sctLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/Xjvm6/jxv69Xp09Pb/nzdrePnT9+/PW/9KAfb6mfnRi0tLS0tLS0tLS0tLSbaI9C+fztvAO+7nT+PNBxf+zxeaDpBOW4t49lFS0tLS0tLS0tLS0t7QbazwCyGqdI8MudT3COmDyc8Om5hUFLS0tLS0tLS0tLS7ut9rrHiV/P+SyGrDm9+mr+87pHm7S0tLS0tLS0tLS0tLRzNFcVJQicqi5v13TclC2c3kxLS0tLS0tLS0tLS7u3Ngd36bFnaVeb7l5eGE+ydfEnLS0tLS0tLS0tLS3t+7VpSsl/8ONfzFShpaWlpaWlpaWlpaX9nbXrq40EP8PL8x4O1vfloSVNOWa5aGlpaWlpaWlpaWlp365NRZNnl787Fy1xKRYtB5qGTl5l/OQyu0dLS0tLS0tLS0tLS/s+bZqpX0aQXPdOtdQSd3WD+tMs/yusZhvdkH9aWlpaWlpaWlpaWtp3a9M+tTKeP0WCdTL/p+JaJAXLhMp6PlpaWlpaWlpaWlpa2n20JSZsRz5eJbtX7n6G7F5y1+8hP42WlpaWlpaWlpaWlnYD7Xqp2qRIh0xPbF9t84YJREtLS0tLS0tLS0tLu4W2tL+lBreauitpuqtPzo28JeDMtwp4WlpaWlpaWlpaWlra12tzSJfmhtQl1qnBbZHEm2o82y68g5aWlpaWlpaWlpaWdidt+i0PFLm6+SJX2KA9FWHeyjHLWJIR8LS0tLS0tLS0tLS0tFtop0RcKq6s5FIbeS22W6cCzul9Jaw9aGlpaWlpaWlpaWlpt9O226jTMJJ0vuJJceLolq+NUJ1JS0tLS0tLS0tLS0u7lTa1xKXgLg/gb5N9YzGSMoWmz7vhaGlpaWlpaWlpaWlpX6UtY0RS+m3cb3KWmsyQkusHRz5VbNLS0tLS0tLS0tLS0u6oTbm1Zgxkvh7Hl5ThlMcib0hLS0tLS0tLS0tLS7uT9pa/Sy1x7ZrqHGM2icI06ySlAsNESVpaWlpaWlpaWlpa2ndrz9yklu9UM3llT9qqwa3L343pLs8xLy0tLS0tLS0tLS0t7Xu0tzhx2oRWKjHHvYXtDJ5RutxKiFhnUE5B5UPMS0tLS0tLS0tLS0tL+yJt7k9r/ixjRL7XSdfypshyeoGWlpaWlpaWlpaWlnYL7VNe7gi3axJxeV7JVTrf2gLO6RuhpaWlpaWlpaWlpaXdQpsfNsLwxxT6pa65NhU44Ztk37IbjpaWlpaWlpaWlpaW9o3aEUbsj/znFOtN8V+JOx/zd0Vbv0NaWlpaWlpaWlpaWtottGkESUrnPc3tv40ladvk0uK29uG0tLS0tLS0tLS0tLTv1x6hfDL1sV0lEZdLL2sjXAovF+MnL1paWlpaWlpaWlpa2r20zT3TFuxSG3nmrrnS/nZ2GcTHjjtaWlpaWlpaWlpaWtq3a9NkkLJy7SypuzQpsm2Ty+1v6bnjcaYKLS0tLS0tLS0tLS3t27Sju6aKyDKC5OgmnNQzpwg0V11OBZe0tLS0tLS0tLS0tLQbaEs0dy4ptZnt6q5Uibmu4pyCT1paWlpaWlpaWlpa2p20V7nx1A2XR5Uc3XNSBDrl+VZfwUMukpaWlpaWlpaWlpaW9lXa6/6OM8wmuUJZ5AhxZ5MefKqwTL/R0tLS0tLS0tLS0tLuo20WrS0630anbZaqpVxiXpn9rapLWlpaWlpaWlpaWlral2mvboL/Y/lk6WhrtmBPKwByyecoAyZpaWlpaWlpaWlpaWm30JZd1bXwcepjSzm4Endez0vVpuBzlOJPWlpaWlpaWlpaWlranbQ16ktTStYJwLIj+wyfGN1q7ZOWlpaWlpaWlpaWlnZr7ehWrl0hxrzypJF2UXYbi6bvgZaWlpaWlpaWlpaWdjttEwSmELG0xNXutZSrS0NQ0vm6WZW0tLS0tLS0tLS0tLRv1n6+N5VKNh1tizLLUXrb8oGOru5z+gQtLS0tLS0tLS0tLe27tW3727I/beSM37FYmT1l8koAWb85WlpaWlpaWlpaWlraLbQpMGwjxkUR5hG65lI9Z1qPPb16PGT3aGlpaWlpaWlpaWlpX6VNe9LKp2rur0SHacxJwre72BZBJS0tLS0tLS0tLS0t7eu1i23UzWTHfMjmpK1sijG/OVOFlpaWlpaWlpaWlpb2Zdo2sVfzbe2Ukm/MHClB5QivHrHGk5aWlpaWlpaWlpaWdgPtFEo2JZCLR5y54HL6CtIMyvSl0dLS0tLS0tLS0tLS7qNNDWnT59NU/24Afwwln7ZlX4tcIi0tLS0tLS0tLS0t7fu1TQy3HkbS1mmWCLQa2xuUWlBaWlpaWlpaWlpaWtoNtG37W44YU21kXWxdijBTVFr75765s5uWlpaWlpaWlpaWlvaN2tHNh2xCyacwtNZVTrJ1KElLS0tLS0tLS0tLS7uPNl2L4Y9tiHiUz+aEXTME5TPtN120tLS0tLS0tLS0tLTv1o75Wg3qn4LAVHBZQslUdVnd/2CqPy0tLS0tLS0tLS0t7Vu0Rwggm/LJsii7ni8VV5bzTVHp34kiaWlpaWlpaWlpaWlpX6ld1FqO0Op2hM9WSj7p6gRp7xotLS0tLS0tLS0tLe3e2jTycQr42mUAeWdbM8a/nJSWlpaWlpaWlpaWlnZvbTti/7on4s4wXySFg7V1rg0bH3Z209LS0tLS0tLS0tLSvlK7xufosM39jfvu61VfXOmue551SUtLS0tLS0tLS0tL+z5tLXzMTWpnSAA+FmF+5u+a0LQ0xy2rLmlpaWlpaWlpaWlpad+m/f9ftLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/TPsHcCgepoe7LrMAAAAASUVORK5CYII=" }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700575282781, - "modified": 1700575282781 + "created": 1700589719322, + "modified": 1700589719322 } }, { - "path": "ivipcoin-db::movement_wallet/147006993684782200/history/1678652275580", + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580", "content": { "type": 1, "value": { @@ -132,16 +63185,17 @@ "payment_type": "bank_transfer", "status": "cancelled", "status_detail": "expired", - "currency_id": "BRL" + "currency_id": "BRL", + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1470.0699.3684.7822-00" }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700575282781, - "modified": 1700575282781 + "created": 1700589719322, + "modified": 1700589719322 } }, { - "path": "ivipcoin-db::movement_wallet/147006993684782200", + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/147006993684782200", "content": { "type": 1, "value": { @@ -152,8 +63206,217 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700575282781, - "modified": 1700575282781 + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/147062074886654460/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/147062074886654460", + "content": { + "type": 1, + "value": { + "dataModificacao": 1685823720836, + "dateValidity": 1685823720836, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": "2023-10-09T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/149922673320977100", + "content": { + "type": 1, + "value": { + "dataModificacao": 1678155962477, + "dateValidity": 1678510544290, + "totalValue": 0, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/151721738402511580", + "content": { + "type": 1, + "value": { + "dataModificacao": 1696981676486, + "dateValidity": 1696981676516, + "currencyType": "USD" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/date_of_expiration", + "content": { + "type": 1, + "value": { + ".type": "date", + ".val": "2023-10-05T23:48:45.001Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1693957725002, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/152557644739400160/history/1693957725002" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002", + "content": { + "type": 1, + "value": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 1000, + "total_amount": 1000, + "id": "1693957725002", + "history_id": "1693957725002", + "date_created": "2023-09-05T23:48:45.002Z", + "date_last_updated": "2023-09-06T00:56:31.127Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "date_approved": "2023-09-06T00:56:31.127Z", + "money_release_date": "2023-09-06T00:56:31.127Z", + "money_release_status": "approved", + "wasDebited": true, + "description": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 1525.5764.4739.4001-60" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430/details", + "content": { + "type": 1, + "value": { + "payment_method_reference_id": 1694615393430, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 1000, + "installment_amount": 1000, + "installments": 1, + "reference_currency_id": "IVIP", + "financial_institution": "ivipcoin", + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/152557644739400160/history/1694615393430" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430", + "content": { + "type": 1, + "value": { + "type": "staking", + "wallet_type": "IVIPCOIN", + "payment_method": "staking", + "original_amount": 1000, + "total_amount": 1000, + "id": "1694615393430", + "history_id": "1694615393430", + "date_created": "2023-09-13T14:29:53.430Z", + "date_last_updated": "2023-09-13T14:29:53.430Z", + "date_of_expiration": "2025-09-13T14:29:53.429Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "IVIP", + "base_currency_id": "IVIP", + "status_detail": "accredited", + "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 13/09/2025 - P9A02KSL" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/152557644739400160/credit", + "content": { + "type": 1, + "value": { + "approvedLimit": 0, + "limitUsed": 0 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 + } + }, + { + "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/152557644739400160", + "content": { + "type": 1, + "value": { + "dataModificacao": 1693436516681, + "dateValidity": 1693436516720, + "currencyType": "USD", + "balancesModificacao": "2023-09-19T03:00:00.000Z" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700589719322, + "modified": 1700589719322 } } ] \ No newline at end of file diff --git a/test/resultWithPath.ts b/test/resultWithPath.ts new file mode 100644 index 00000000..fe8d2474 --- /dev/null +++ b/test/resultWithPath.ts @@ -0,0 +1,92 @@ +import fs from "fs"; +import path from "path"; +import { randomUUID } from "crypto"; + +type Result = { + path: string; + content: { + type: number; + value: Record | string | number; + revision: string; + revision_nr: number; + created: number; + modified: number; + }; +}; + +function transform(json: Record, prefix: string = ""): Result[] { + const results: Result[] = []; + const nonObjectKeys: Record = {}; + + for (const key in json) { + const currentPath = `${prefix}/${key.replace(/\*\*/g, "")}`; + const currentValue = json[key]; + + if (typeof currentValue === "object" && currentValue !== null) { + // Se for objeto, chama recursivamente transform para processar objetos aninhados + results.push(...transform(currentValue as Record, currentPath)); + } else { + // Se não for objeto, adiciona ao objeto de chaves não-objeto + nonObjectKeys[key] = currentValue; + } + } + + // Adiciona um único resultado para chaves não-objeto + if (Object.keys(nonObjectKeys).length > 0) { + const nonObjectResult: Result = { + path: `ivipcoin-db::movement_wallet${prefix}`, + content: { + type: 1, + value: nonObjectKeys as any, + revision: "lnt02q7v0007oohx37705737", + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(nonObjectResult); + } + + return results; +} + +function readPath() { + const fileName = "__movement_wallet__.json"; + + const filePath = path.join(__dirname, fileName); + + fs.readFile(filePath, "utf8", (err, data) => { + if (err) { + console.error("Error reading the file:", err); + return; + } + + try { + var dataToArray = JSON.parse(data); + + const result = transform(dataToArray); + + const dataJSONModel = JSON.stringify(result, null, 2); + + function afterRestructureSaveIntoJSONFile(dataWithOutPathFromMongodb) { + console.log(new Date().getSeconds(), "started"); + + const fileAddress: any = "./test/outputResultWithPathJSON.json"; + fs.writeFile(fileAddress, dataWithOutPathFromMongodb, (error) => { + if (error) { + console.error("Algum erro aconteceu", error); + } else { + console.log(fileAddress); + } + }); + + return dataWithOutPathFromMongodb; + } + afterRestructureSaveIntoJSONFile(dataJSONModel); + } catch (parseError) { + console.error("Error parsing JSON:", parseError); + } + }); + console.log(new Date().getSeconds(), "end"); +} +readPath(); From 8831ce6aa228ae7986c2bd20849494f0918d9b1b Mon Sep 17 00:00:00 2001 From: iamrosada Date: Thu, 23 Nov 2023 17:27:54 +0300 Subject: [PATCH 13/36] fix: fix the error when is return the empty array, but need to solve other problem, that is when is the empty object --- test/myjsonfile.json | 35197 ++++++++++++++++++++----- test/outputResultWithPathJSON.json | 37527 +++++++++++++++++++++------ test/resultWithPath.ts | 33 +- 3 files changed, 58187 insertions(+), 14570 deletions(-) diff --git a/test/myjsonfile.json b/test/myjsonfile.json index c2cbf9db..e81a85a3 100644 --- a/test/myjsonfile.json +++ b/test/myjsonfile.json @@ -3,7 +3,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances/BRL", "content": { "type": 1, - "value": { "available": "2528.00700001", "symbol": "BRL", "value": 494.23 }, + "value": { + "available": "2528.00700001", + "symbol": "BRL", + "value": 494.23 + }, "revision": "lnt02q7v0006oohx1hd4856x", "revision_nr": 1, "created": 1697467086139, @@ -14,7 +18,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances/IVIP", "content": { "type": 1, - "value": { "available": "1499269.00000000", "symbol": "IVIP", "value": 158.48 }, + "value": { + "available": "1499269.00000000", + "symbol": "IVIP", + "value": 158.48 + }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, "created": 1697467086139, @@ -23,7 +31,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02q7v0005oohx3xm7c536", "revision_nr": 1, "created": 1697467086139, "modified": 1697467086139 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0005oohx3xm7c536", + "revision_nr": 1, + "created": 1697467086139, + "modified": 1697467086139 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/description", @@ -51,7 +66,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/barcode", "content": { "type": 1, - "value": { "content": "23796927400000606493380261019404283200633330" }, + "value": { + "content": "23796927400000606493380261019404283200633330" + }, "revision": "lnt02q7w000doohxasia0o3e", "revision_nr": 1, "created": 1697467086141, @@ -62,7 +79,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, "revision": "lnt02q7x000foohxf8r4h6ku", "revision_nr": 1, "created": 1697467086141, @@ -71,7 +92,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q7x000eoohx91rb246i", "revision_nr": 1, "created": 1697467086141, "modified": 1697467086141 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q7x000eoohx91rb246i", + "revision_nr": 1, + "created": 1697467086141, + "modified": 1697467086141 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details", @@ -105,9 +133,18 @@ "original_amount": 603, "total_amount": 606.49, "id": 1311772470, - "date_created": { "type": 6, "value": 1677138263122 }, - "date_last_updated": { "type": 6, "value": 1677138263122 }, - "date_of_expiration": { "type": 6, "value": 1677553199000 }, + "date_created": { + "type": 6, + "value": 1677138263122 + }, + "date_last_updated": { + "type": 6, + "value": 1677138263122 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -147,7 +184,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/barcode", "content": { "type": 1, - "value": { "content": "23799927400000595493380261019404380900633330" }, + "value": { + "content": "23799927400000595493380261019404380900633330" + }, "revision": "lnt02q7y000koohx9oq4f5ng", "revision_nr": 1, "created": 1697467086142, @@ -158,7 +197,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, "revision": "lnt02q7y000moohxbtckd7dc", "revision_nr": 1, "created": 1697467086142, @@ -167,7 +210,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q7y000loohxhpxl9hc9", "revision_nr": 1, "created": 1697467086142, "modified": 1697467086142 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q7y000loohxhpxl9hc9", + "revision_nr": 1, + "created": 1697467086142, + "modified": 1697467086142 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details", @@ -201,9 +251,18 @@ "original_amount": 592, "total_amount": 595.49, "id": 1311772488, - "date_created": { "type": 6, "value": 1677138656477 }, - "date_last_updated": { "type": 6, "value": 1677138656477 }, - "date_of_expiration": { "type": 6, "value": 1677553199000 }, + "date_created": { + "type": 6, + "value": 1677138656477 + }, + "date_last_updated": { + "type": 6, + "value": 1677138656477 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -265,7 +324,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, "revision": "lnt02q7z000uoohx9lqg36hw", "revision_nr": 1, "created": 1697467086143, @@ -274,13 +335,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02q7z000toohx3fuw68ar", "revision_nr": 1, "created": 1697467086143, "modified": 1697467086143 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02q7z000toohx3fuw68ar", + "revision_nr": 1, + "created": 1697467086143, + "modified": 1697467086143 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 4.95 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 4.95 + }, "revision": "lnt02q7z000woohx9sytgk42", "revision_nr": 1, "created": 1697467086143, @@ -289,13 +363,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q7z000voohxbaoh0b7n", "revision_nr": 1, "created": 1697467086144, "modified": 1697467086144 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q7z000voohxbaoh0b7n", + "revision_nr": 1, + "created": 1697467086144, + "modified": 1697467086144 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 504.95, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 504.95, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02q7y000poohx67pn46g1", "revision_nr": 1, "created": 1697467086144, @@ -313,9 +400,18 @@ "original_amount": 500, "total_amount": 504.95, "id": 1312722165, - "date_created": { "type": 6, "value": 1677139565681 }, - "date_last_updated": { "type": 6, "value": 1677139565681 }, - "date_of_expiration": { "type": 6, "value": 1677225965440 }, + "date_created": { + "type": 6, + "value": 1677139565681 + }, + "date_last_updated": { + "type": 6, + "value": 1677139565681 + }, + "date_of_expiration": { + "type": 6, + "value": 1677225965440 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -377,7 +473,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, "revision": "lnt02q810014oohx0fwlhy2y", "revision_nr": 1, "created": 1697467086145, @@ -386,13 +486,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q810013oohx7ndx9e83", "revision_nr": 1, "created": 1697467086145, "modified": 1697467086145 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q810013oohx7ndx9e83", + "revision_nr": 1, + "created": 1697467086145, + "modified": 1697467086145 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, "revision": "lnt02q810016oohxcyhigmwi", "revision_nr": 1, "created": 1697467086145, @@ -401,13 +510,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02q810015oohx45o46mhr", "revision_nr": 1, "created": 1697467086145, "modified": 1697467086145 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02q810015oohx45o46mhr", + "revision_nr": 1, + "created": 1697467086145, + "modified": 1697467086145 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02q80000zoohxbz2mg62l", "revision_nr": 1, "created": 1697467086146, @@ -425,9 +549,18 @@ "original_amount": 20, "total_amount": 20.2, "id": 1311772556, - "date_created": { "type": 6, "value": 1677140213522 }, - "date_last_updated": { "type": 6, "value": 1677140213522 }, - "date_of_expiration": { "type": 6, "value": 1677226613246 }, + "date_created": { + "type": 6, + "value": 1677140213522 + }, + "date_last_updated": { + "type": 6, + "value": 1677140213522 + }, + "date_of_expiration": { + "type": 6, + "value": 1677226613246 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -467,7 +600,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/barcode", "content": { "type": 1, - "value": { "content": "23791927400000051993380260600338163800633330" }, + "value": { + "content": "23791927400000051993380260600338163800633330" + }, "revision": "lnt02q83001boohxb05eeh8r", "revision_nr": 1, "created": 1697467086147, @@ -478,7 +613,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3.99%", "amount": 1.9949999999999999 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3.99%", + "amount": 1.9949999999999999 + }, "revision": "lnt02q83001doohxex87562h", "revision_nr": 1, "created": 1697467086147, @@ -487,7 +626,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q83001coohx8u510vc1", "revision_nr": 1, "created": 1697467086148, "modified": 1697467086148 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q83001coohx8u510vc1", + "revision_nr": 1, + "created": 1697467086148, + "modified": 1697467086148 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details", @@ -521,9 +667,18 @@ "original_amount": 50, "total_amount": 51.99, "id": 1311772574, - "date_created": { "type": 6, "value": 1677141075312 }, - "date_last_updated": { "type": 6, "value": 1677141075312 }, - "date_of_expiration": { "type": 6, "value": 1677553199000 }, + "date_created": { + "type": 6, + "value": 1677141075312 + }, + "date_last_updated": { + "type": 6, + "value": 1677141075312 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -563,7 +718,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/barcode", "content": { "type": 1, - "value": { "content": "23792927400000075493380261019405215900633330" }, + "value": { + "content": "23792927400000075493380261019405215900633330" + }, "revision": "lnt02q85001ioohxf0bxatlc", "revision_nr": 1, "created": 1697467086149, @@ -574,7 +731,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, "revision": "lnt02q85001koohxdjx9618g", "revision_nr": 1, "created": 1697467086149, @@ -583,7 +744,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q85001joohx37t15ju0", "revision_nr": 1, "created": 1697467086150, "modified": 1697467086150 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q85001joohx37t15ju0", + "revision_nr": 1, + "created": 1697467086150, + "modified": 1697467086150 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details", @@ -616,9 +784,18 @@ "payment_method": "bolbradesco", "total_amount": 75.49, "id": 1312722387, - "date_created": { "type": 6, "value": 1677143334435 }, - "date_last_updated": { "type": 6, "value": 1677143334435 }, - "date_of_expiration": { "type": 6, "value": 1677553199000 }, + "date_created": { + "type": 6, + "value": 1677143334435 + }, + "date_last_updated": { + "type": 6, + "value": 1677143334435 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -659,7 +836,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/barcode", "content": { "type": 1, - "value": { "content": "23791927400000803493380261019405351400633330" }, + "value": { + "content": "23791927400000803493380261019405351400633330" + }, "revision": "lnt02q88001poohx9mu29vh8", "revision_nr": 1, "created": 1697467086152, @@ -670,7 +849,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, "revision": "lnt02q88001roohx82brh9zu", "revision_nr": 1, "created": 1697467086153, @@ -679,7 +862,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q88001qoohx9ql9emjn", "revision_nr": 1, "created": 1697467086153, "modified": 1697467086153 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q88001qoohx9ql9emjn", + "revision_nr": 1, + "created": 1697467086153, + "modified": 1697467086153 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details", @@ -713,9 +903,18 @@ "original_amount": 800, "total_amount": 803.49, "id": 1311772850, - "date_created": { "type": 6, "value": 1677146363578 }, - "date_last_updated": { "type": 6, "value": 1677146363578 }, - "date_of_expiration": { "type": 6, "value": 1677553199000 }, + "date_created": { + "type": 6, + "value": 1677146363578 + }, + "date_last_updated": { + "type": 6, + "value": 1677146363578 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -777,7 +976,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, "revision": "lnt02q8d001zoohxf3608rnh", "revision_nr": 1, "created": 1697467086157, @@ -786,13 +987,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02q8d001yoohxcr0yeex2", "revision_nr": 1, "created": 1697467086157, "modified": 1697467086157 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02q8d001yoohxcr0yeex2", + "revision_nr": 1, + "created": 1697467086157, + "modified": 1697467086157 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, "revision": "lnt02q8d0021oohxhte0gtth", "revision_nr": 1, "created": 1697467086158, @@ -801,13 +1015,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q8d0020oohxg0sb5cl4", "revision_nr": 1, "created": 1697467086158, "modified": 1697467086158 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q8d0020oohxg0sb5cl4", + "revision_nr": 1, + "created": 1697467086158, + "modified": 1697467086158 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02q8c001uoohx7emz0kt6", "revision_nr": 1, "created": 1697467086158, @@ -826,9 +1053,18 @@ "total_amount": 20.2, "history_id": 1677340892851, "id": 55087284163, - "date_created": { "type": 6, "value": 1677340896928 }, - "date_last_updated": { "type": 6, "value": 1677340896000 }, - "date_of_expiration": { "type": 6, "value": 1677427296705 }, + "date_created": { + "type": 6, + "value": 1677340896928 + }, + "date_last_updated": { + "type": 6, + "value": 1677340896000 + }, + "date_of_expiration": { + "type": 6, + "value": 1677427296705 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -889,7 +1125,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, "revision": "lnt02q8g0029oohxdk1sey7o", "revision_nr": 1, "created": 1697467086160, @@ -898,13 +1136,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02q8g0028oohxfpzhfbbe", "revision_nr": 1, "created": 1697467086160, "modified": 1697467086160 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02q8g0028oohxfpzhfbbe", + "revision_nr": 1, + "created": 1697467086160, + "modified": 1697467086160 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, "revision": "lnt02q8g002boohx13aw2mwb", "revision_nr": 1, "created": 1697467086160, @@ -913,13 +1164,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q8g002aoohx6y3bebjk", "revision_nr": 1, "created": 1697467086161, "modified": 1697467086161 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q8g002aoohx6y3bebjk", + "revision_nr": 1, + "created": 1697467086161, + "modified": 1697467086161 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02q8f0024oohx9ep05fyt", "revision_nr": 1, "created": 1697467086161, @@ -938,16 +1202,31 @@ "total_amount": 20.2, "history_id": 1677340905412, "id": 55094059932, - "date_created": { "type": 6, "value": 1677340909292 }, - "date_last_updated": { "type": 6, "value": 1677341040000 }, - "date_of_expiration": { "type": 6, "value": 1677427309106 }, + "date_created": { + "type": 6, + "value": 1677340909292 + }, + "date_last_updated": { + "type": 6, + "value": 1677341040000 + }, + "date_of_expiration": { + "type": 6, + "value": 1677427309106 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677340991000 }, - "money_release_date": { "type": 6, "value": 1677340991000 }, + "date_approved": { + "type": 6, + "value": 1677340991000 + }, + "money_release_date": { + "type": 6, + "value": 1677340991000 + }, "wasDebited": true }, "revision": "lnt02q8e0022oohxelxa80t8", @@ -1004,7 +1283,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, "revision": "lnt02q8m002joohxd352brle", "revision_nr": 1, "created": 1697467086166, @@ -1013,13 +1296,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q8m002ioohxabhk0ohe", "revision_nr": 1, "created": 1697467086166, "modified": 1697467086166 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q8m002ioohxabhk0ohe", + "revision_nr": 1, + "created": 1697467086166, + "modified": 1697467086166 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, "revision": "lnt02q8m002loohx832zh2ou", "revision_nr": 1, "created": 1697467086166, @@ -1028,13 +1320,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02q8m002koohx4gogfcot", "revision_nr": 1, "created": 1697467086167, "modified": 1697467086167 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02q8m002koohx4gogfcot", + "revision_nr": 1, + "created": 1697467086167, + "modified": 1697467086167 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02q8h002eoohx6yqo8m37", "revision_nr": 1, "created": 1697467086167, @@ -1053,16 +1360,31 @@ "total_amount": 20.2, "history_id": 1677342602434, "id": 55095321700, - "date_created": { "type": 6, "value": 1677342606615 }, - "date_last_updated": { "type": 6, "value": 1677342755000 }, - "date_of_expiration": { "type": 6, "value": 1677429006238 }, + "date_created": { + "type": 6, + "value": 1677342606615 + }, + "date_last_updated": { + "type": 6, + "value": 1677342755000 + }, + "date_of_expiration": { + "type": 6, + "value": 1677429006238 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677342740000 }, - "money_release_date": { "type": 6, "value": 1677342740000 }, + "date_approved": { + "type": 6, + "value": 1677342740000 + }, + "money_release_date": { + "type": 6, + "value": 1677342740000 + }, "wasDebited": true }, "revision": "lnt02q8h002coohxe5v35ar8", @@ -1119,7 +1441,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 3.9600000000000004 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 3.9600000000000004 + }, "revision": "lnt02q8o002toohx1omb93x5", "revision_nr": 1, "created": 1697467086169, @@ -1128,13 +1454,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q8o002soohx8b6p16cd", "revision_nr": 1, "created": 1697467086169, "modified": 1697467086169 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q8o002soohx8b6p16cd", + "revision_nr": 1, + "created": 1697467086169, + "modified": 1697467086169 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, "revision": "lnt02q8p002voohx16o8a11q", "revision_nr": 1, "created": 1697467086169, @@ -1143,13 +1478,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02q8p002uoohxbkei8vqr", "revision_nr": 1, "created": 1697467086170, "modified": 1697467086170 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02q8p002uoohxbkei8vqr", + "revision_nr": 1, + "created": 1697467086170, + "modified": 1697467086170 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 403.96, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 403.96, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02q8o002ooohxabbph50g", "revision_nr": 1, "created": 1697467086170, @@ -1168,9 +1518,18 @@ "total_amount": 403.96, "history_id": 1677356987387, "id": 55103336998, - "date_created": { "type": 6, "value": 1677356988037 }, - "date_last_updated": { "type": 6, "value": 1677356988037 }, - "date_of_expiration": { "type": 6, "value": 1677443387844 }, + "date_created": { + "type": 6, + "value": 1677356988037 + }, + "date_last_updated": { + "type": 6, + "value": 1677356988037 + }, + "date_of_expiration": { + "type": 6, + "value": 1677443387844 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -1231,7 +1590,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 9.9 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 9.9 + }, "revision": "lnt02q8s0033oohx1kh2bc2b", "revision_nr": 1, "created": 1697467086173, @@ -1240,13 +1603,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q8s0032oohxg7goac0o", "revision_nr": 1, "created": 1697467086174, "modified": 1697467086174 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q8s0032oohxg7goac0o", + "revision_nr": 1, + "created": 1697467086174, + "modified": 1697467086174 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, "revision": "lnt02q8u0035oohxan4jegus", "revision_nr": 1, "created": 1697467086174, @@ -1255,13 +1627,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02q8u0034oohx14f6h9dx", "revision_nr": 1, "created": 1697467086175, "modified": 1697467086175 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02q8u0034oohx14f6h9dx", + "revision_nr": 1, + "created": 1697467086175, + "modified": 1697467086175 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 1009.9, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 1009.9, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02q8r002yoohx0ikmf4o4", "revision_nr": 1, "created": 1697467086175, @@ -1280,9 +1667,18 @@ "total_amount": 1009.9, "history_id": 1677357024740, "id": 55096573577, - "date_created": { "type": 6, "value": 1677357025343 }, - "date_last_updated": { "type": 6, "value": 1677357025343 }, - "date_of_expiration": { "type": 6, "value": 1677443425167 }, + "date_created": { + "type": 6, + "value": 1677357025343 + }, + "date_last_updated": { + "type": 6, + "value": 1677357025343 + }, + "date_of_expiration": { + "type": 6, + "value": 1677443425167 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -1343,7 +1739,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, "revision": "lnt02q8x003doohx5aor8xjl", "revision_nr": 1, "created": 1697467086177, @@ -1352,13 +1750,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02q8x003coohxhcwqh1lc", "revision_nr": 1, "created": 1697467086177, "modified": 1697467086177 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02q8x003coohxhcwqh1lc", + "revision_nr": 1, + "created": 1697467086177, + "modified": 1697467086177 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.34650000000000003 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.34650000000000003 + }, "revision": "lnt02q8y003foohx093hazxg", "revision_nr": 1, "created": 1697467086178, @@ -1367,13 +1778,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q8x003eoohxhb8c80tp", "revision_nr": 1, "created": 1697467086178, "modified": 1697467086178 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q8x003eoohxhb8c80tp", + "revision_nr": 1, + "created": 1697467086178, + "modified": 1697467086178 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 35.35, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 35.35, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02q8w0038oohxgptyd0ct", "revision_nr": 1, "created": 1697467086178, @@ -1392,9 +1816,18 @@ "total_amount": 35.35, "history_id": 1677366880189, "id": 55102778083, - "date_created": { "type": 6, "value": 1677366880808 }, - "date_last_updated": { "type": 6, "value": 1677366880808 }, - "date_of_expiration": { "type": 6, "value": 1677453280616 }, + "date_created": { + "type": 6, + "value": 1677366880808 + }, + "date_last_updated": { + "type": 6, + "value": 1677366880808 + }, + "date_of_expiration": { + "type": 6, + "value": 1677453280616 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -1420,7 +1853,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q90003ioohxa4k91c1t", "revision_nr": 1, "created": 1697467086181, "modified": 1697467086181 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q90003ioohxa4k91c1t", + "revision_nr": 1, + "created": 1697467086181, + "modified": 1697467086181 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891", @@ -1433,9 +1875,18 @@ "total_amount": 234.59, "history_id": 1677710195891, "id": 1677710195891, - "date_created": { "type": 6, "value": 1677710195891 }, - "date_last_updated": { "type": 6, "value": 1677710195891 }, - "date_of_expiration": { "type": 6, "value": 1680302195891 }, + "date_created": { + "type": 6, + "value": 1677710195891 + }, + "date_last_updated": { + "type": 6, + "value": 1677710195891 + }, + "date_of_expiration": { + "type": 6, + "value": 1680302195891 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -1461,7 +1912,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q91003loohx4pxp9rp0", "revision_nr": 1, "created": 1697467086182, "modified": 1697467086182 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q91003loohx4pxp9rp0", + "revision_nr": 1, + "created": 1697467086182, + "modified": 1697467086182 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908", @@ -1474,15 +1934,30 @@ "total_amount": 35.99, "history_id": 1677710725908, "id": 1677710725908, - "date_created": { "type": 6, "value": 1677710725908 }, - "date_last_updated": { "type": 6, "value": 1677711571236 }, - "date_of_expiration": { "type": 6, "value": 1680302725908 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677711571236 }, - "money_release_date": { "type": 6, "value": 1677711571236 }, + "date_created": { + "type": 6, + "value": 1677710725908 + }, + "date_last_updated": { + "type": 6, + "value": 1677711571236 + }, + "date_of_expiration": { + "type": 6, + "value": 1680302725908 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677711571236 + }, + "money_release_date": { + "type": 6, + "value": 1677711571236 + }, "money_release_status": "approved", "wasDebited": true, "payment_method_id": "whatsapp", @@ -1507,7 +1982,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q93003ooohxemswhbzy", "revision_nr": 1, "created": 1697467086183, "modified": 1697467086183 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q93003ooohxemswhbzy", + "revision_nr": 1, + "created": 1697467086183, + "modified": 1697467086183 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840", @@ -1520,16 +2004,31 @@ "total_amount": 450.32, "history_id": 1677711669840, "id": 1677711669840, - "date_created": { "type": 6, "value": 1677711669840 }, - "date_last_updated": { "type": 6, "value": 1677712164561 }, - "date_of_expiration": { "type": 6, "value": 1680303669840 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1677712164561 }, + "date_created": { + "type": 6, + "value": 1677711669840 + }, + "date_last_updated": { + "type": 6, + "value": 1677712164561 + }, + "date_of_expiration": { + "type": 6, + "value": 1680303669840 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1677712164561 + }, "money_release_status": "approved", - "date_approved": { "type": 6, "value": 1677712164561 }, + "date_approved": { + "type": 6, + "value": 1677712164561 + }, "wasDebited": true, "payment_method_id": "whatsapp", "payment_method": "whatsapp" @@ -1553,7 +2052,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q94003roohx5etm8jb4", "revision_nr": 1, "created": 1697467086184, "modified": 1697467086184 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q94003roohx5etm8jb4", + "revision_nr": 1, + "created": 1697467086184, + "modified": 1697467086184 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778", @@ -1567,14 +2075,26 @@ "total_amount": 600.2, "history_id": 1677716372778, "id": 1677716372778, - "date_created": { "type": 6, "value": 1677716372778 }, - "date_last_updated": { "type": 6, "value": 1677716444134 }, - "date_of_expiration": { "type": 6, "value": 1680308372778 }, + "date_created": { + "type": 6, + "value": 1677716372778 + }, + "date_last_updated": { + "type": 6, + "value": 1677716444134 + }, + "date_of_expiration": { + "type": 6, + "value": 1680308372778 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1677716444134 }, + "money_release_date": { + "type": 6, + "value": 1677716444134 + }, "money_release_status": "rejected" }, "revision": "lnt02q93003poohx1seh2tkj", @@ -1585,7 +2105,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q95003toohxa3q17uli", "revision_nr": 1, "created": 1697467086185, "modified": 1697467086185 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q95003toohxa3q17uli", + "revision_nr": 1, + "created": 1697467086185, + "modified": 1697467086185 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156/description", @@ -1610,14 +2139,26 @@ "total_amount": 602.99, "history_id": 1677721233156, "id": 1677721233156, - "date_created": { "type": 6, "value": 1677721233156 }, - "date_last_updated": { "type": 6, "value": 1677723466177 }, - "date_of_expiration": { "type": 6, "value": 1680313233156 }, + "date_created": { + "type": 6, + "value": 1677721233156 + }, + "date_last_updated": { + "type": 6, + "value": 1677723466177 + }, + "date_of_expiration": { + "type": 6, + "value": 1680313233156 + }, "operation_type": "regular_payment", "status": "in_process", "status_detail": "pending_review_manual", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1677723466177 }, + "money_release_date": { + "type": 6, + "value": 1677723466177 + }, "money_release_status": "in_process" }, "revision": "lnt02q95003soohxf18na73v", @@ -1628,7 +2169,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q96003woohxb6z0ax9o", "revision_nr": 1, "created": 1697467086187, "modified": 1697467086187 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q96003woohxb6z0ax9o", + "revision_nr": 1, + "created": 1697467086187, + "modified": 1697467086187 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105/description", @@ -1653,14 +2203,26 @@ "total_amount": 34.89, "history_id": 1677761687105, "id": 1677761687105, - "date_created": { "type": 6, "value": 1677761687105 }, - "date_last_updated": { "type": 6, "value": 1677761894846 }, - "date_of_expiration": { "type": 6, "value": 1680353687105 }, + "date_created": { + "type": 6, + "value": 1677761687105 + }, + "date_last_updated": { + "type": 6, + "value": 1677761894846 + }, + "date_of_expiration": { + "type": 6, + "value": 1680353687105 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1677761894846 }, + "money_release_date": { + "type": 6, + "value": 1677761894846 + }, "money_release_status": "cancelled" }, "revision": "lnt02q96003voohxf9n3hlie", @@ -1682,7 +2244,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q980040oohx2gwk4o57", "revision_nr": 1, "created": 1697467086188, "modified": 1697467086188 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q980040oohx2gwk4o57", + "revision_nr": 1, + "created": 1697467086188, + "modified": 1697467086188 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870", @@ -1696,15 +2267,30 @@ "total_amount": 43.78, "history_id": 1677762883870, "id": 1677762883870, - "date_created": { "type": 6, "value": 1677762883870 }, - "date_last_updated": { "type": 6, "value": 1677763063393 }, - "date_of_expiration": { "type": 6, "value": 1680354883870 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677763063393 }, - "money_release_date": { "type": 6, "value": 1677763063393 }, + "date_created": { + "type": 6, + "value": 1677762883870 + }, + "date_last_updated": { + "type": 6, + "value": 1677763063393 + }, + "date_of_expiration": { + "type": 6, + "value": 1680354883870 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677763063393 + }, + "money_release_date": { + "type": 6, + "value": 1677763063393 + }, "money_release_status": "approved", "wasDebited": true }, @@ -1716,7 +2302,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q980042oohxdxut74cx", "revision_nr": 1, "created": 1697467086189, "modified": 1697467086189 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q980042oohxdxut74cx", + "revision_nr": 1, + "created": 1697467086189, + "modified": 1697467086189 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645/description", @@ -1741,15 +2336,30 @@ "total_amount": 29.91, "history_id": 1677822431645, "id": 1677822431645, - "date_created": { "type": 6, "value": 1677822431645 }, - "date_last_updated": { "type": 6, "value": 1677822492770 }, - "date_of_expiration": { "type": 6, "value": 1680414431645 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677822492770 }, - "money_release_date": { "type": 6, "value": 1677822492770 }, + "date_created": { + "type": 6, + "value": 1677822431645 + }, + "date_last_updated": { + "type": 6, + "value": 1677822492770 + }, + "date_of_expiration": { + "type": 6, + "value": 1680414431645 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677822492770 + }, + "money_release_date": { + "type": 6, + "value": 1677822492770 + }, "money_release_status": "approved", "wasDebited": true }, @@ -1772,7 +2382,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q9b0046oohxdu667m5i", "revision_nr": 1, "created": 1697467086191, "modified": 1697467086191 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q9b0046oohxdu667m5i", + "revision_nr": 1, + "created": 1697467086191, + "modified": 1697467086191 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976", @@ -1786,15 +2405,30 @@ "total_amount": 50, "history_id": 1677831643976, "id": 1677831643976, - "date_created": { "type": 6, "value": 1677831643976 }, - "date_last_updated": { "type": 6, "value": 1677831798262 }, - "date_of_expiration": { "type": 6, "value": 1680423643976 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677831798262 }, - "money_release_date": { "type": 6, "value": 1677831798262 }, + "date_created": { + "type": 6, + "value": 1677831643976 + }, + "date_last_updated": { + "type": 6, + "value": 1677831798262 + }, + "date_of_expiration": { + "type": 6, + "value": 1680423643976 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677831798262 + }, + "money_release_date": { + "type": 6, + "value": 1677831798262 + }, "money_release_status": "approved", "wasDebited": true }, @@ -1817,7 +2451,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q9c0049oohxcpslbrtu", "revision_nr": 1, "created": 1697467086193, "modified": 1697467086193 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q9c0049oohxcpslbrtu", + "revision_nr": 1, + "created": 1697467086193, + "modified": 1697467086193 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160", @@ -1831,14 +2474,26 @@ "total_amount": 100, "history_id": 1677952604160, "id": 1677952604160, - "date_created": { "type": 6, "value": 1677952604160 }, - "date_last_updated": { "type": 6, "value": 1678714344731 }, - "date_of_expiration": { "type": 6, "value": 1680544604160 }, + "date_created": { + "type": 6, + "value": 1677952604160 + }, + "date_last_updated": { + "type": 6, + "value": 1678714344731 + }, + "date_of_expiration": { + "type": 6, + "value": 1680544604160 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678714344731 }, + "money_release_date": { + "type": 6, + "value": 1678714344731 + }, "money_release_status": "rejected" }, "revision": "lnt02q9c0047oohxho316qc1", @@ -1883,9 +2538,18 @@ "original_amount": 141586, "total_amount": 141586, "id": 1678033196645, - "date_created": { "type": 6, "value": 1678033196645 }, - "date_last_updated": { "type": 6, "value": 1678033196645 }, - "date_of_expiration": { "type": 6, "value": 1678033196645 }, + "date_created": { + "type": 6, + "value": 1678033196645 + }, + "date_last_updated": { + "type": 6, + "value": 1678033196645 + }, + "date_of_expiration": { + "type": 6, + "value": 1678033196645 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -1936,9 +2600,18 @@ "original_amount": 269014, "total_amount": 269014, "id": 1678033334564, - "date_created": { "type": 6, "value": 1678033334564 }, - "date_last_updated": { "type": 6, "value": 1678033334564 }, - "date_of_expiration": { "type": 6, "value": 1678033334564 }, + "date_created": { + "type": 6, + "value": 1678033334564 + }, + "date_last_updated": { + "type": 6, + "value": 1678033334564 + }, + "date_of_expiration": { + "type": 6, + "value": 1678033334564 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -1989,9 +2662,18 @@ "original_amount": 297331, "total_amount": 297331, "id": 1678033849155, - "date_created": { "type": 6, "value": 1678033849155 }, - "date_last_updated": { "type": 6, "value": 1678033849155 }, - "date_of_expiration": { "type": 6, "value": 1678033849155 }, + "date_created": { + "type": 6, + "value": 1678033849155 + }, + "date_last_updated": { + "type": 6, + "value": 1678033849155 + }, + "date_of_expiration": { + "type": 6, + "value": 1678033849155 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2042,9 +2724,18 @@ "original_amount": 141660, "total_amount": 141660, "id": 1678034274118, - "date_created": { "type": 6, "value": 1678034274118 }, - "date_last_updated": { "type": 6, "value": 1678034274118 }, - "date_of_expiration": { "type": 6, "value": 1678034274118 }, + "date_created": { + "type": 6, + "value": 1678034274118 + }, + "date_last_updated": { + "type": 6, + "value": 1678034274118 + }, + "date_of_expiration": { + "type": 6, + "value": 1678034274118 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2095,9 +2786,18 @@ "original_amount": 141586, "total_amount": 141586, "id": 1678034346295, - "date_created": { "type": 6, "value": 1678034346295 }, - "date_last_updated": { "type": 6, "value": 1678034346295 }, - "date_of_expiration": { "type": 6, "value": 1678034346295 }, + "date_created": { + "type": 6, + "value": 1678034346295 + }, + "date_last_updated": { + "type": 6, + "value": 1678034346295 + }, + "date_of_expiration": { + "type": 6, + "value": 1678034346295 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2148,9 +2848,18 @@ "original_amount": 424981, "total_amount": 424981, "id": 1678034463284, - "date_created": { "type": 6, "value": 1678034463284 }, - "date_last_updated": { "type": 6, "value": 1678034463284 }, - "date_of_expiration": { "type": 6, "value": 1678034463284 }, + "date_created": { + "type": 6, + "value": 1678034463284 + }, + "date_last_updated": { + "type": 6, + "value": 1678034463284 + }, + "date_of_expiration": { + "type": 6, + "value": 1678034463284 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2201,9 +2910,18 @@ "original_amount": 141586, "total_amount": 141586, "id": 1678034665927, - "date_created": { "type": 6, "value": 1678034665927 }, - "date_last_updated": { "type": 6, "value": 1678034665927 }, - "date_of_expiration": { "type": 6, "value": 1678034665927 }, + "date_created": { + "type": 6, + "value": 1678034665927 + }, + "date_last_updated": { + "type": 6, + "value": 1678034665927 + }, + "date_of_expiration": { + "type": 6, + "value": 1678034665927 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2265,9 +2983,18 @@ "original_amount": 2000, "total_amount": 2000, "id": 1678041814665, - "date_created": { "type": 6, "value": 1678041814665 }, - "date_last_updated": { "type": 6, "value": 1678041814665 }, - "date_of_expiration": { "type": 6, "value": 1678041814665 }, + "date_created": { + "type": 6, + "value": 1678041814665 + }, + "date_last_updated": { + "type": 6, + "value": 1678041814665 + }, + "date_of_expiration": { + "type": 6, + "value": 1678041814665 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2294,7 +3021,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02q9o004toohxav9b2i3y", "revision_nr": 1, "created": 1697467086204, "modified": 1697467086204 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02q9o004toohxav9b2i3y", + "revision_nr": 1, + "created": 1697467086204, + "modified": 1697467086204 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815", @@ -2308,14 +3044,26 @@ "total_amount": 60, "history_id": 1678047987815, "id": 1678047987815, - "date_created": { "type": 6, "value": 1678047987815 }, - "date_last_updated": { "type": 6, "value": 1678714984618 }, - "date_of_expiration": { "type": 6, "value": 1680639987815 }, + "date_created": { + "type": 6, + "value": 1678047987815 + }, + "date_last_updated": { + "type": 6, + "value": 1678714984618 + }, + "date_of_expiration": { + "type": 6, + "value": 1680639987815 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678714984618 }, + "money_release_date": { + "type": 6, + "value": 1678714984618 + }, "money_release_status": "rejected" }, "revision": "lnt02q9n004roohx529l45cz", @@ -2360,9 +3108,18 @@ "original_amount": 14306893, "total_amount": 14306893, "id": 1678160538199, - "date_created": { "type": 6, "value": 1678160538199 }, - "date_last_updated": { "type": 6, "value": 1678160538199 }, - "date_of_expiration": { "type": 6, "value": 1678160538199 }, + "date_created": { + "type": 6, + "value": 1678160538199 + }, + "date_last_updated": { + "type": 6, + "value": 1678160538199 + }, + "date_of_expiration": { + "type": 6, + "value": 1678160538199 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2413,9 +3170,18 @@ "original_amount": 142846, "total_amount": 142846, "id": 1678284807612, - "date_created": { "type": 6, "value": 1678284807612 }, - "date_last_updated": { "type": 6, "value": 1678284807612 }, - "date_of_expiration": { "type": 6, "value": 1678284807612 }, + "date_created": { + "type": 6, + "value": 1678284807612 + }, + "date_last_updated": { + "type": 6, + "value": 1678284807612 + }, + "date_of_expiration": { + "type": 6, + "value": 1678284807612 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2445,7 +3211,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 32 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 32 + }, "revision": "lnt02q9r0052oohx8kqjbosg", "revision_nr": 1, "created": 1697467086207, @@ -2454,11 +3224,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q9r0051oohxctvkbso6", "revision_nr": 1, "created": 1697467086208, "modified": 1697467086208 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q9r0051oohxctvkbso6", + "revision_nr": 1, + "created": 1697467086208, + "modified": 1697467086208 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details", - "content": { "type": 1, "value": {}, "revision": "lnt02q9r0050oohx6p464djd", "revision_nr": 1, "created": 1697467086208, "modified": 1697467086208 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q9r0050oohx6p464djd", + "revision_nr": 1, + "created": 1697467086208, + "modified": 1697467086208 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354", @@ -2472,9 +3256,18 @@ "total_amount": 432, "history_id": 1678325359354, "id": 1678325359354, - "date_created": { "type": 6, "value": 1678325359354 }, - "date_last_updated": { "type": 6, "value": 1678325359354 }, - "date_of_expiration": { "type": 6, "value": 1680917359354 }, + "date_created": { + "type": 6, + "value": 1678325359354 + }, + "date_last_updated": { + "type": 6, + "value": 1678325359354 + }, + "date_of_expiration": { + "type": 6, + "value": 1680917359354 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -2502,7 +3295,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 120 + }, "revision": "lnt02q9t0057oohxcqt32lui", "revision_nr": 1, "created": 1697467086209, @@ -2511,11 +3308,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q9t0056oohx37cbek6p", "revision_nr": 1, "created": 1697467086210, "modified": 1697467086210 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q9t0056oohx37cbek6p", + "revision_nr": 1, + "created": 1697467086210, + "modified": 1697467086210 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details", - "content": { "type": 1, "value": {}, "revision": "lnt02q9t0055oohxh0fv3ife", "revision_nr": 1, "created": 1697467086210, "modified": 1697467086210 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q9t0055oohxh0fv3ife", + "revision_nr": 1, + "created": 1697467086210, + "modified": 1697467086210 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247", @@ -2529,15 +3340,30 @@ "total_amount": 3120, "history_id": 1678400755247, "id": 1678400755247, - "date_created": { "type": 6, "value": 1678400755247 }, - "date_last_updated": { "type": 6, "value": 1678400872142 }, - "date_of_expiration": { "type": 6, "value": 1680992755247 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678400872142 }, - "money_release_date": { "type": 6, "value": 1678400872142 }, + "date_created": { + "type": 6, + "value": 1678400755247 + }, + "date_last_updated": { + "type": 6, + "value": 1678400872142 + }, + "date_of_expiration": { + "type": 6, + "value": 1680992755247 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678400872142 + }, + "money_release_date": { + "type": 6, + "value": 1678400872142 + }, "money_release_status": "approved" }, "revision": "lnt02q9s0053oohx5ouh0el8", @@ -2561,7 +3387,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 16 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 16 + }, "revision": "lnt02q9v005coohx8dhybtkl", "revision_nr": 1, "created": 1697467086212, @@ -2570,11 +3400,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q9v005boohx8c2o73x3", "revision_nr": 1, "created": 1697467086212, "modified": 1697467086212 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q9v005boohx8c2o73x3", + "revision_nr": 1, + "created": 1697467086212, + "modified": 1697467086212 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details", - "content": { "type": 1, "value": {}, "revision": "lnt02q9v005aoohx7jrh44wp", "revision_nr": 1, "created": 1697467086213, "modified": 1697467086213 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q9v005aoohx7jrh44wp", + "revision_nr": 1, + "created": 1697467086213, + "modified": 1697467086213 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895", @@ -2588,15 +3432,30 @@ "total_amount": 416, "history_id": 1678401099895, "id": 1678401099895, - "date_created": { "type": 6, "value": 1678401099895 }, - "date_last_updated": { "type": 6, "value": 1678401156010 }, - "date_of_expiration": { "type": 6, "value": 1680993099895 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678401156010 }, - "money_release_date": { "type": 6, "value": 1678401156010 }, + "date_created": { + "type": 6, + "value": 1678401099895 + }, + "date_last_updated": { + "type": 6, + "value": 1678401156010 + }, + "date_of_expiration": { + "type": 6, + "value": 1680993099895 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678401156010 + }, + "money_release_date": { + "type": 6, + "value": 1678401156010 + }, "money_release_status": "approved", "wasDebited": true }, @@ -2621,7 +3480,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 9 parcela(s) 18.00%", "amount": 108 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 9 parcela(s) 18.00%", + "amount": 108 + }, "revision": "lnt02q9y005hoohx1bschjrd", "revision_nr": 1, "created": 1697467086214, @@ -2630,11 +3493,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02q9y005goohx4vno3ymy", "revision_nr": 1, "created": 1697467086215, "modified": 1697467086215 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02q9y005goohx4vno3ymy", + "revision_nr": 1, + "created": 1697467086215, + "modified": 1697467086215 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details", - "content": { "type": 1, "value": {}, "revision": "lnt02q9y005foohxg7cd0gll", "revision_nr": 1, "created": 1697467086215, "modified": 1697467086215 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q9y005foohxg7cd0gll", + "revision_nr": 1, + "created": 1697467086215, + "modified": 1697467086215 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954", @@ -2648,14 +3525,26 @@ "total_amount": 708, "history_id": 1678401292954, "id": 1678401292954, - "date_created": { "type": 6, "value": 1678401292954 }, - "date_last_updated": { "type": 6, "value": 1678401345264 }, - "date_of_expiration": { "type": 6, "value": 1680993292954 }, + "date_created": { + "type": 6, + "value": 1678401292954 + }, + "date_last_updated": { + "type": 6, + "value": 1678401345264 + }, + "date_of_expiration": { + "type": 6, + "value": 1680993292954 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678401345264 }, + "money_release_date": { + "type": 6, + "value": 1678401345264 + }, "money_release_status": "rejected" }, "revision": "lnt02q9x005doohxb0xecom0", @@ -2679,7 +3568,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 12 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 12 + }, "revision": "lnt02qa0005moohx47wo8qof", "revision_nr": 1, "created": 1697467086216, @@ -2688,11 +3581,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qa0005loohxc90v85jd", "revision_nr": 1, "created": 1697467086217, "modified": 1697467086217 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qa0005loohxc90v85jd", + "revision_nr": 1, + "created": 1697467086217, + "modified": 1697467086217 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qa0005koohxhx9qhoz1", "revision_nr": 1, "created": 1697467086217, "modified": 1697467086217 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qa0005koohxhx9qhoz1", + "revision_nr": 1, + "created": 1697467086217, + "modified": 1697467086217 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273", @@ -2706,15 +3613,30 @@ "total_amount": 312, "history_id": 1678401795273, "id": 1678401795273, - "date_created": { "type": 6, "value": 1678401795273 }, - "date_last_updated": { "type": 6, "value": 1679404907084 }, - "date_of_expiration": { "type": 6, "value": 1680993795273 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679404907084 }, - "money_release_date": { "type": 6, "value": 1679404907084 }, + "date_created": { + "type": 6, + "value": 1678401795273 + }, + "date_last_updated": { + "type": 6, + "value": 1679404907084 + }, + "date_of_expiration": { + "type": 6, + "value": 1680993795273 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679404907084 + }, + "money_release_date": { + "type": 6, + "value": 1679404907084 + }, "money_release_status": "approved", "wasDebited": true }, @@ -2750,7 +3672,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/barcode", "content": { "type": 1, - "value": { "content": "23796929000000023493380261020453727300633330" }, + "value": { + "content": "23796929000000023493380261020453727300633330" + }, "revision": "lnt02qa3005roohx4vfngevh", "revision_nr": 1, "created": 1697467086219, @@ -2761,7 +3685,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, "revision": "lnt02qa3005toohxaq8faxjo", "revision_nr": 1, "created": 1697467086220, @@ -2770,7 +3698,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qa3005soohxb18tdcqo", "revision_nr": 1, "created": 1697467086220, "modified": 1697467086220 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qa3005soohxb18tdcqo", + "revision_nr": 1, + "created": 1697467086220, + "modified": 1697467086220 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details", @@ -2805,9 +3740,18 @@ "total_amount": 23.490000000000002, "history_id": 1678595791470, "id": 55645430279, - "date_created": { "type": 6, "value": 1678595792384 }, - "date_last_updated": { "type": 6, "value": 1678595792384 }, - "date_of_expiration": { "type": 6, "value": 1678935599000 }, + "date_created": { + "type": 6, + "value": 1678595792384 + }, + "date_last_updated": { + "type": 6, + "value": 1678595792384 + }, + "date_of_expiration": { + "type": 6, + "value": 1678935599000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -2846,7 +3790,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/barcode", "content": { "type": 1, - "value": { "content": "23791929000000023493380261020453555300633330" }, + "value": { + "content": "23791929000000023493380261020453555300633330" + }, "revision": "lnt02qa7005yoohx8rlk7jla", "revision_nr": 1, "created": 1697467086223, @@ -2857,7 +3803,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, "revision": "lnt02qa80060oohxhble4uhq", "revision_nr": 1, "created": 1697467086224, @@ -2866,7 +3816,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qa7005zoohx4ganek2s", "revision_nr": 1, "created": 1697467086224, "modified": 1697467086224 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qa7005zoohx4ganek2s", + "revision_nr": 1, + "created": 1697467086224, + "modified": 1697467086224 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details", @@ -2901,9 +3858,18 @@ "total_amount": 23.490000000000002, "history_id": 1678595892940, "id": 55645448309, - "date_created": { "type": 6, "value": 1678595893379 }, - "date_last_updated": { "type": 6, "value": 1678595893379 }, - "date_of_expiration": { "type": 6, "value": 1678935599000 }, + "date_created": { + "type": 6, + "value": 1678595893379 + }, + "date_last_updated": { + "type": 6, + "value": 1678595893379 + }, + "date_of_expiration": { + "type": 6, + "value": 1678935599000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -2962,17 +3928,39 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info/collector", - "content": { "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, "revision": "lnt02qab0068oohx3k12hdpd", "revision_nr": 1, "created": 1697467086228, "modified": 1697467086228 } + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt02qab0068oohx3k12hdpd", + "revision_nr": 1, + "created": 1697467086228, + "modified": 1697467086228 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02qab0067oohx9avq1wti", "revision_nr": 1, "created": 1697467086228, "modified": 1697467086228 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02qab0067oohx9avq1wti", + "revision_nr": 1, + "created": 1697467086228, + "modified": 1697467086228 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, "revision": "lnt02qac006aoohxf8k57ltz", "revision_nr": 1, "created": 1697467086229, @@ -2981,13 +3969,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qac0069oohxddpw1ay5", "revision_nr": 1, "created": 1697467086229, "modified": 1697467086229 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qac0069oohxddpw1ay5", + "revision_nr": 1, + "created": 1697467086229, + "modified": 1697467086229 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02qaa0063oohxhqrlai1z", "revision_nr": 1, "created": 1697467086230, @@ -3006,16 +4007,31 @@ "total_amount": 20.2, "history_id": 1678596937174, "id": 55645618353, - "date_created": { "type": 6, "value": 1678596937889 }, - "date_last_updated": { "type": 6, "value": 1678596964000 }, - "date_of_expiration": { "type": 6, "value": 1678683337650 }, + "date_created": { + "type": 6, + "value": 1678596937889 + }, + "date_last_updated": { + "type": 6, + "value": 1678596964000 + }, + "date_of_expiration": { + "type": 6, + "value": 1678683337650 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678596964000 }, - "money_release_date": { "type": 6, "value": 1678596964000 }, + "date_approved": { + "type": 6, + "value": 1678596964000 + }, + "money_release_date": { + "type": 6, + "value": 1678596964000 + }, "wasDebited": true }, "revision": "lnt02qa90061oohx5h9rdb0t", @@ -3072,7 +4088,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.20790000000000003 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.20790000000000003 + }, "revision": "lnt02qah006ioohx1udjhu0z", "revision_nr": 1, "created": 1697467086234, @@ -3081,21 +4101,52 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qah006hoohxerjz661s", "revision_nr": 1, "created": 1697467086234, "modified": 1697467086234 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qah006hoohxerjz661s", + "revision_nr": 1, + "created": 1697467086234, + "modified": 1697467086234 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info/collector", - "content": { "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, "revision": "lnt02qai006koohxbful66yw", "revision_nr": 1, "created": 1697467086235, "modified": 1697467086235 } + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt02qai006koohxbful66yw", + "revision_nr": 1, + "created": 1697467086235, + "modified": 1697467086235 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02qai006joohxfdu7bsjf", "revision_nr": 1, "created": 1697467086235, "modified": 1697467086235 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02qai006joohxfdu7bsjf", + "revision_nr": 1, + "created": 1697467086235, + "modified": 1697467086235 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 21.21, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 21.21, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02qaf006doohxeaqf5qos", "revision_nr": 1, "created": 1697467086236, @@ -3114,9 +4165,18 @@ "total_amount": 21.21, "history_id": 1678649850085, "id": 55660781347, - "date_created": { "type": 6, "value": 1678649850913 }, - "date_last_updated": { "type": 6, "value": 1678736452000 }, - "date_of_expiration": { "type": 6, "value": 1678736250656 }, + "date_created": { + "type": 6, + "value": 1678649850913 + }, + "date_last_updated": { + "type": 6, + "value": 1678736452000 + }, + "date_of_expiration": { + "type": 6, + "value": 1678736250656 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", @@ -3142,7 +4202,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qal006noohx5jpocshj", "revision_nr": 1, "created": 1697467086238, "modified": 1697467086238 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qal006noohx5jpocshj", + "revision_nr": 1, + "created": 1697467086238, + "modified": 1697467086238 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675", @@ -3156,9 +4225,18 @@ "total_amount": 70, "history_id": 1679007163675, "id": 1679007163675, - "date_created": { "type": 6, "value": 1679007163675 }, - "date_last_updated": { "type": 6, "value": 1679007163675 }, - "date_of_expiration": { "type": 6, "value": 1681599163675 }, + "date_created": { + "type": 6, + "value": 1679007163675 + }, + "date_last_updated": { + "type": 6, + "value": 1679007163675 + }, + "date_of_expiration": { + "type": 6, + "value": 1681599163675 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -3183,7 +4261,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qan006qoohx4u27bkk6", "revision_nr": 1, "created": 1697467086240, "modified": 1697467086240 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qan006qoohx4u27bkk6", + "revision_nr": 1, + "created": 1697467086240, + "modified": 1697467086240 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708", @@ -3197,9 +4284,18 @@ "total_amount": 22, "history_id": 1679010027708, "id": 1679010027708, - "date_created": { "type": 6, "value": 1679010027708 }, - "date_last_updated": { "type": 6, "value": 1679010027708 }, - "date_of_expiration": { "type": 6, "value": 1681602027708 }, + "date_created": { + "type": 6, + "value": 1679010027708 + }, + "date_last_updated": { + "type": 6, + "value": 1679010027708 + }, + "date_of_expiration": { + "type": 6, + "value": 1681602027708 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -3224,7 +4320,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qap006toohx6greeocs", "revision_nr": 1, "created": 1697467086242, "modified": 1697467086242 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qap006toohx6greeocs", + "revision_nr": 1, + "created": 1697467086242, + "modified": 1697467086242 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912", @@ -3238,9 +4343,18 @@ "total_amount": 34.53, "history_id": 1679010677912, "id": 1679010677912, - "date_created": { "type": 6, "value": 1679010677912 }, - "date_last_updated": { "type": 6, "value": 1679010677912 }, - "date_of_expiration": { "type": 6, "value": 1681602677912 }, + "date_created": { + "type": 6, + "value": 1679010677912 + }, + "date_last_updated": { + "type": 6, + "value": 1679010677912 + }, + "date_of_expiration": { + "type": 6, + "value": 1681602677912 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -3278,7 +4392,9 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/barcode", "content": { "type": 1, - "value": { "content": "23797929500000053493380261020810012400633330" }, + "value": { + "content": "23797929500000053493380261020810012400633330" + }, "revision": "lnt02qar006yoohxbdj10wfe", "revision_nr": 1, "created": 1697467086244, @@ -3289,7 +4405,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, "revision": "lnt02qas0070oohxfsj80y9w", "revision_nr": 1, "created": 1697467086244, @@ -3298,7 +4418,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qas006zoohxhh3mekhw", "revision_nr": 1, "created": 1697467086245, "modified": 1697467086245 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qas006zoohxhh3mekhw", + "revision_nr": 1, + "created": 1697467086245, + "modified": 1697467086245 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details", @@ -3333,9 +4460,18 @@ "total_amount": 53.49, "history_id": 1679012344229, "id": 55844330172, - "date_created": { "type": 6, "value": 1679012344871 }, - "date_last_updated": { "type": 6, "value": 1679012344871 }, - "date_of_expiration": { "type": 6, "value": 1679367599000 }, + "date_created": { + "type": 6, + "value": 1679012344871 + }, + "date_last_updated": { + "type": 6, + "value": 1679012344871 + }, + "date_of_expiration": { + "type": 6, + "value": 1679367599000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -3361,7 +4497,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qav0073oohxhnuh14ln", "revision_nr": 1, "created": 1697467086247, "modified": 1697467086247 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qav0073oohxhnuh14ln", + "revision_nr": 1, + "created": 1697467086247, + "modified": 1697467086247 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493", @@ -3375,9 +4520,18 @@ "total_amount": 23.54, "history_id": 1679012395493, "id": 1679012395493, - "date_created": { "type": 6, "value": 1679012395493 }, - "date_last_updated": { "type": 6, "value": 1679012395493 }, - "date_of_expiration": { "type": 6, "value": 1681604395493 }, + "date_created": { + "type": 6, + "value": 1679012395493 + }, + "date_last_updated": { + "type": 6, + "value": 1679012395493 + }, + "date_of_expiration": { + "type": 6, + "value": 1681604395493 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -3404,7 +4558,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, "revision": "lnt02qaw0078oohxbsko0r1v", "revision_nr": 1, "created": 1697467086249, @@ -3413,11 +4571,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qaw0077oohx71zzcksi", "revision_nr": 1, "created": 1697467086250, "modified": 1697467086250 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qaw0077oohx71zzcksi", + "revision_nr": 1, + "created": 1697467086250, + "modified": 1697467086250 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qaw0076oohxhi646q8f", "revision_nr": 1, "created": 1697467086250, "modified": 1697467086250 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qaw0076oohxhi646q8f", + "revision_nr": 1, + "created": 1697467086250, + "modified": 1697467086250 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084", @@ -3431,9 +4603,18 @@ "total_amount": 224, "history_id": 1679181025084, "id": 1679181025084, - "date_created": { "type": 6, "value": 1679181025084 }, - "date_last_updated": { "type": 6, "value": 1679181025084 }, - "date_of_expiration": { "type": 6, "value": 1681773025084 }, + "date_created": { + "type": 6, + "value": 1679181025084 + }, + "date_last_updated": { + "type": 6, + "value": 1679181025084 + }, + "date_of_expiration": { + "type": 6, + "value": 1681773025084 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -3461,7 +4642,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, "revision": "lnt02qaz007doohxabbv43tt", "revision_nr": 1, "created": 1697467086252, @@ -3470,11 +4655,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qaz007coohx5z2g0pec", "revision_nr": 1, "created": 1697467086252, "modified": 1697467086252 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qaz007coohx5z2g0pec", + "revision_nr": 1, + "created": 1697467086252, + "modified": 1697467086252 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qaz007boohx71hbb214", "revision_nr": 1, "created": 1697467086253, "modified": 1697467086253 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qaz007boohx71hbb214", + "revision_nr": 1, + "created": 1697467086253, + "modified": 1697467086253 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805", @@ -3488,9 +4687,18 @@ "total_amount": 459, "history_id": 1679181157805, "id": 1679181157805, - "date_created": { "type": 6, "value": 1679181157805 }, - "date_last_updated": { "type": 6, "value": 1679181157805 }, - "date_of_expiration": { "type": 6, "value": 1681773157805 }, + "date_created": { + "type": 6, + "value": 1679181157805 + }, + "date_last_updated": { + "type": 6, + "value": 1679181157805 + }, + "date_of_expiration": { + "type": 6, + "value": 1681773157805 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -3518,7 +4726,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 9.200000000000001 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 9.200000000000001 + }, "revision": "lnt02qb2007ioohx3jt87ikr", "revision_nr": 1, "created": 1697467086255, @@ -3527,11 +4739,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qb2007hoohxe4648wyg", "revision_nr": 1, "created": 1697467086256, "modified": 1697467086256 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qb2007hoohxe4648wyg", + "revision_nr": 1, + "created": 1697467086256, + "modified": 1697467086256 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qb2007goohxbxi56qtg", "revision_nr": 1, "created": 1697467086256, "modified": 1697467086256 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qb2007goohxbxi56qtg", + "revision_nr": 1, + "created": 1697467086256, + "modified": 1697467086256 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080", @@ -3545,9 +4771,18 @@ "total_amount": 239.2, "history_id": 1679183534080, "id": 1679183534080, - "date_created": { "type": 6, "value": 1679183534080 }, - "date_last_updated": { "type": 6, "value": 1679183534080 }, - "date_of_expiration": { "type": 6, "value": 1681775534080 }, + "date_created": { + "type": 6, + "value": 1679183534080 + }, + "date_last_updated": { + "type": 6, + "value": 1679183534080 + }, + "date_of_expiration": { + "type": 6, + "value": 1681775534080 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -3575,7 +4810,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8 + }, "revision": "lnt02qb5007noohxarjicc1h", "revision_nr": 1, "created": 1697467086258, @@ -3584,11 +4823,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qb5007moohx6ewngund", "revision_nr": 1, "created": 1697467086259, "modified": 1697467086259 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qb5007moohx6ewngund", + "revision_nr": 1, + "created": 1697467086259, + "modified": 1697467086259 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qb5007loohx7n3151lm", "revision_nr": 1, "created": 1697467086259, "modified": 1697467086259 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qb5007loohx7n3151lm", + "revision_nr": 1, + "created": 1697467086259, + "modified": 1697467086259 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128", @@ -3602,9 +4855,18 @@ "total_amount": 208, "history_id": 1679184046128, "id": 1679184046128, - "date_created": { "type": 6, "value": 1679184046128 }, - "date_last_updated": { "type": 6, "value": 1679184046128 }, - "date_of_expiration": { "type": 6, "value": 1681776046128 }, + "date_created": { + "type": 6, + "value": 1679184046128 + }, + "date_last_updated": { + "type": 6, + "value": 1679184046128 + }, + "date_of_expiration": { + "type": 6, + "value": 1681776046128 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -3632,7 +4894,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8.4 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8.4 + }, "revision": "lnt02qb9007soohx71wlh9x1", "revision_nr": 1, "created": 1697467086261, @@ -3641,11 +4907,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qb9007roohx27a58diu", "revision_nr": 1, "created": 1697467086262, "modified": 1697467086262 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qb9007roohx27a58diu", + "revision_nr": 1, + "created": 1697467086262, + "modified": 1697467086262 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qb8007qoohxcssf6yik", "revision_nr": 1, "created": 1697467086262, "modified": 1697467086262 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qb8007qoohxcssf6yik", + "revision_nr": 1, + "created": 1697467086262, + "modified": 1697467086262 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424", @@ -3659,9 +4939,18 @@ "total_amount": 218.4, "history_id": 1679184832424, "id": 1679184832424, - "date_created": { "type": 6, "value": 1679184832424 }, - "date_last_updated": { "type": 6, "value": 1679184832424 }, - "date_of_expiration": { "type": 6, "value": 1681776832424 }, + "date_created": { + "type": 6, + "value": 1679184832424 + }, + "date_last_updated": { + "type": 6, + "value": 1679184832424 + }, + "date_of_expiration": { + "type": 6, + "value": 1681776832424 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -3721,9 +5010,18 @@ "original_amount": 50, "total_amount": 50, "id": 1679780561471, - "date_created": { "type": 6, "value": 1679780561471 }, - "date_last_updated": { "type": 6, "value": 1679780561471 }, - "date_of_expiration": { "type": 6, "value": 1679780561471 }, + "date_created": { + "type": 6, + "value": 1679780561471 + }, + "date_last_updated": { + "type": 6, + "value": 1679780561471 + }, + "date_of_expiration": { + "type": 6, + "value": 1679780561471 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3784,9 +5082,18 @@ "original_amount": 50000, "total_amount": 50000, "id": 1679780730626, - "date_created": { "type": 6, "value": 1679780730626 }, - "date_last_updated": { "type": 6, "value": 1679780730626 }, - "date_of_expiration": { "type": 6, "value": 1679780730626 }, + "date_created": { + "type": 6, + "value": 1679780730626 + }, + "date_last_updated": { + "type": 6, + "value": 1679780730626 + }, + "date_of_expiration": { + "type": 6, + "value": 1679780730626 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3847,9 +5154,18 @@ "original_amount": 100000, "total_amount": 100000, "id": 1679798199684, - "date_created": { "type": 6, "value": 1679798199684 }, - "date_last_updated": { "type": 6, "value": 1679798199684 }, - "date_of_expiration": { "type": 6, "value": 1679798199684 }, + "date_created": { + "type": 6, + "value": 1679798199684 + }, + "date_last_updated": { + "type": 6, + "value": 1679798199684 + }, + "date_of_expiration": { + "type": 6, + "value": 1679798199684 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3899,9 +5215,18 @@ "original_amount": 3964758, "total_amount": 3964758, "id": 1681764788277, - "date_created": { "type": 6, "value": 1681764788277 }, - "date_last_updated": { "type": 6, "value": 1681764788277 }, - "date_of_expiration": { "type": 6, "value": 1681764788277 }, + "date_created": { + "type": 6, + "value": 1681764788277 + }, + "date_last_updated": { + "type": 6, + "value": 1681764788277 + }, + "date_of_expiration": { + "type": 6, + "value": 1681764788277 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3952,9 +5277,18 @@ "original_amount": 175.094, "total_amount": 175.094, "id": 1682323304615, - "date_created": { "type": 6, "value": 1682323304615 }, - "date_last_updated": { "type": 6, "value": 1682323304615 }, - "date_of_expiration": { "type": 6, "value": 1682323304615 }, + "date_created": { + "type": 6, + "value": 1682323304615 + }, + "date_last_updated": { + "type": 6, + "value": 1682323304615 + }, + "date_of_expiration": { + "type": 6, + "value": 1682323304615 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4005,9 +5339,18 @@ "original_amount": 119.6, "total_amount": 119.6, "id": 1682323486538, - "date_created": { "type": 6, "value": 1682323486538 }, - "date_last_updated": { "type": 6, "value": 1682323486538 }, - "date_of_expiration": { "type": 6, "value": 1682323486538 }, + "date_created": { + "type": 6, + "value": 1682323486538 + }, + "date_last_updated": { + "type": 6, + "value": 1682323486538 + }, + "date_of_expiration": { + "type": 6, + "value": 1682323486538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4058,9 +5401,18 @@ "original_amount": 104, "total_amount": 104, "id": 1682324590308, - "date_created": { "type": 6, "value": 1682324590308 }, - "date_last_updated": { "type": 6, "value": 1682324590308 }, - "date_of_expiration": { "type": 6, "value": 1682324590308 }, + "date_created": { + "type": 6, + "value": 1682324590308 + }, + "date_last_updated": { + "type": 6, + "value": 1682324590308 + }, + "date_of_expiration": { + "type": 6, + "value": 1682324590308 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4111,9 +5463,18 @@ "original_amount": 109.2, "total_amount": 109.2, "id": 1682324593569, - "date_created": { "type": 6, "value": 1682324593569 }, - "date_last_updated": { "type": 6, "value": 1682324593569 }, - "date_of_expiration": { "type": 6, "value": 1682324593569 }, + "date_created": { + "type": 6, + "value": 1682324593569 + }, + "date_last_updated": { + "type": 6, + "value": 1682324593569 + }, + "date_of_expiration": { + "type": 6, + "value": 1682324593569 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4164,9 +5525,18 @@ "original_amount": 104, "total_amount": 104, "id": 1682325423689, - "date_created": { "type": 6, "value": 1682325423689 }, - "date_last_updated": { "type": 6, "value": 1682325423689 }, - "date_of_expiration": { "type": 6, "value": 1682325423689 }, + "date_created": { + "type": 6, + "value": 1682325423689 + }, + "date_last_updated": { + "type": 6, + "value": 1682325423689 + }, + "date_of_expiration": { + "type": 6, + "value": 1682325423689 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4217,9 +5587,18 @@ "original_amount": 109.2, "total_amount": 109.2, "id": 1682325428664, - "date_created": { "type": 6, "value": 1682325428664 }, - "date_last_updated": { "type": 6, "value": 1682325428664 }, - "date_of_expiration": { "type": 6, "value": 1682325428664 }, + "date_created": { + "type": 6, + "value": 1682325428664 + }, + "date_last_updated": { + "type": 6, + "value": 1682325428664 + }, + "date_of_expiration": { + "type": 6, + "value": 1682325428664 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4284,9 +5663,18 @@ "total_amount": 37.333, "id": 1682578544384, "contract_id": "1679181025084", - "date_created": { "type": 6, "value": 1682578544384 }, - "date_last_updated": { "type": 6, "value": 1682578544384 }, - "date_of_expiration": { "type": 6, "value": 1682578544384 }, + "date_created": { + "type": 6, + "value": 1682578544384 + }, + "date_last_updated": { + "type": 6, + "value": 1682578544384 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578544384 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4350,9 +5738,18 @@ "total_amount": 114.75, "id": 1682578544557, "contract_id": "1679181157805", - "date_created": { "type": 6, "value": 1682578544557 }, - "date_last_updated": { "type": 6, "value": 1682578544557 }, - "date_of_expiration": { "type": 6, "value": 1682578544557 }, + "date_created": { + "type": 6, + "value": 1682578544557 + }, + "date_last_updated": { + "type": 6, + "value": 1682578544557 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578544557 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4416,9 +5813,18 @@ "total_amount": 119.6, "id": 1682578984558, "contract_id": "1679183534080", - "date_created": { "type": 6, "value": 1682578984558 }, - "date_last_updated": { "type": 6, "value": 1682578984558 }, - "date_of_expiration": { "type": 6, "value": 1682578984558 }, + "date_created": { + "type": 6, + "value": 1682578984558 + }, + "date_last_updated": { + "type": 6, + "value": 1682578984558 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578984558 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4482,9 +5888,18 @@ "total_amount": 104, "id": 1682578984726, "contract_id": "1679184046128", - "date_created": { "type": 6, "value": 1682578984726 }, - "date_last_updated": { "type": 6, "value": 1682578984726 }, - "date_of_expiration": { "type": 6, "value": 1682578984726 }, + "date_created": { + "type": 6, + "value": 1682578984726 + }, + "date_last_updated": { + "type": 6, + "value": 1682578984726 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578984726 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4548,9 +5963,18 @@ "total_amount": 109.2, "id": 1682578984913, "contract_id": "1679184832424", - "date_created": { "type": 6, "value": 1682578984913 }, - "date_last_updated": { "type": 6, "value": 1682578984913 }, - "date_of_expiration": { "type": 6, "value": 1682578984913 }, + "date_created": { + "type": 6, + "value": 1682578984913 + }, + "date_last_updated": { + "type": 6, + "value": 1682578984913 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578984913 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4579,7 +6003,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 4 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 4 + }, "revision": "lnt02qc4008zoohxgdepe224", "revision_nr": 1, "created": 1697467086293, @@ -4588,11 +6016,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qc4008yoohxg8da1vkv", "revision_nr": 1, "created": 1697467086293, "modified": 1697467086293 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qc4008yoohxg8da1vkv", + "revision_nr": 1, + "created": 1697467086293, + "modified": 1697467086293 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qc4008xoohxcwx05w60", "revision_nr": 1, "created": 1697467086295, "modified": 1697467086295 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qc4008xoohxcwx05w60", + "revision_nr": 1, + "created": 1697467086295, + "modified": 1697467086295 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468", @@ -4606,9 +6048,18 @@ "total_amount": 204, "history_id": 1683665355468, "id": 1683665355468, - "date_created": { "type": 6, "value": 1683665355468 }, - "date_last_updated": { "type": 6, "value": 1683665355468 }, - "date_of_expiration": { "type": 6, "value": 1686257355468 }, + "date_created": { + "type": 6, + "value": 1683665355468 + }, + "date_last_updated": { + "type": 6, + "value": 1683665355468 + }, + "date_of_expiration": { + "type": 6, + "value": 1686257355468 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", @@ -4636,7 +6087,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 3 parcela(s) 6.00%", + "amount": 12 + }, "revision": "lnt02qc80094oohxhaybc97m", "revision_nr": 1, "created": 1697467086297, @@ -4645,11 +6100,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qc80093oohxahew6hk8", "revision_nr": 1, "created": 1697467086298, "modified": 1697467086298 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qc80093oohxahew6hk8", + "revision_nr": 1, + "created": 1697467086298, + "modified": 1697467086298 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qc80092oohxa180a745", "revision_nr": 1, "created": 1697467086298, "modified": 1697467086298 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qc80092oohxa180a745", + "revision_nr": 1, + "created": 1697467086298, + "modified": 1697467086298 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591", @@ -4663,9 +6132,18 @@ "total_amount": 212, "history_id": 1683667472591, "id": 1683667472591, - "date_created": { "type": 6, "value": 1683667472591 }, - "date_last_updated": { "type": 6, "value": 1683667472591 }, - "date_of_expiration": { "type": 6, "value": 1686259472591 }, + "date_created": { + "type": 6, + "value": 1683667472591 + }, + "date_last_updated": { + "type": 6, + "value": 1683667472591 + }, + "date_of_expiration": { + "type": 6, + "value": 1686259472591 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", @@ -4691,7 +6169,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qcc0097oohxd39pcoes", "revision_nr": 1, "created": 1697467086300, "modified": 1697467086300 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qcc0097oohxd39pcoes", + "revision_nr": 1, + "created": 1697467086300, + "modified": 1697467086300 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186", @@ -4705,15 +6192,30 @@ "total_amount": 250, "history_id": 1684303097186, "id": 1684303097186, - "date_created": { "type": 6, "value": 1684303097186 }, - "date_last_updated": { "type": 6, "value": 1684303171953 }, - "date_of_expiration": { "type": 6, "value": 1686895097186 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684303171953 }, - "money_release_date": { "type": 6, "value": 1684303171953 }, + "date_created": { + "type": 6, + "value": 1684303097186 + }, + "date_last_updated": { + "type": 6, + "value": 1684303171953 + }, + "date_of_expiration": { + "type": 6, + "value": 1686895097186 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684303171953 + }, + "money_release_date": { + "type": 6, + "value": 1684303171953 + }, "money_release_status": "approved", "wasDebited": true }, @@ -4770,9 +6272,18 @@ "original_amount": 630, "total_amount": 630, "id": 1684348051817, - "date_created": { "type": 6, "value": 1684348051817 }, - "date_last_updated": { "type": 6, "value": 1684348051817 }, - "date_of_expiration": { "type": 6, "value": 1684348051817 }, + "date_created": { + "type": 6, + "value": 1684348051817 + }, + "date_last_updated": { + "type": 6, + "value": 1684348051817 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348051817 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -4836,9 +6347,18 @@ "total_amount": 37.333, "id": 1684436739701, "contract_id": "1679181025084", - "date_created": { "type": 6, "value": 1684436739701 }, - "date_last_updated": { "type": 6, "value": 1684436739701 }, - "date_of_expiration": { "type": 6, "value": 1684436739701 }, + "date_created": { + "type": 6, + "value": 1684436739701 + }, + "date_last_updated": { + "type": 6, + "value": 1684436739701 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436739701 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4902,9 +6422,18 @@ "total_amount": 114.75, "id": 1684436739822, "contract_id": "1679181157805", - "date_created": { "type": 6, "value": 1684436739822 }, - "date_last_updated": { "type": 6, "value": 1684436739822 }, - "date_of_expiration": { "type": 6, "value": 1684436739822 }, + "date_created": { + "type": 6, + "value": 1684436739822 + }, + "date_last_updated": { + "type": 6, + "value": 1684436739822 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436739822 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4968,9 +6497,18 @@ "total_amount": 119.6, "id": 1684436739934, "contract_id": "1679183534080", - "date_created": { "type": 6, "value": 1684436739934 }, - "date_last_updated": { "type": 6, "value": 1684436739934 }, - "date_of_expiration": { "type": 6, "value": 1684436739934 }, + "date_created": { + "type": 6, + "value": 1684436739934 + }, + "date_last_updated": { + "type": 6, + "value": 1684436739934 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436739934 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -5034,9 +6572,18 @@ "total_amount": 104, "id": 1684436740031, "contract_id": "1679184046128", - "date_created": { "type": 6, "value": 1684436740031 }, - "date_last_updated": { "type": 6, "value": 1684436740031 }, - "date_of_expiration": { "type": 6, "value": 1684436740031 }, + "date_created": { + "type": 6, + "value": 1684436740031 + }, + "date_last_updated": { + "type": 6, + "value": 1684436740031 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436740031 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -5100,9 +6647,18 @@ "total_amount": 109.2, "id": 1684436740155, "contract_id": "1679184832424", - "date_created": { "type": 6, "value": 1684436740155 }, - "date_last_updated": { "type": 6, "value": 1684436740155 }, - "date_of_expiration": { "type": 6, "value": 1684436740155 }, + "date_created": { + "type": 6, + "value": 1684436740155 + }, + "date_last_updated": { + "type": 6, + "value": 1684436740155 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436740155 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -5152,9 +6708,18 @@ "original_amount": 5850731, "total_amount": 5850731, "id": 1684790150988, - "date_created": { "type": 6, "value": 1684790150988 }, - "date_last_updated": { "type": 6, "value": 1684790150988 }, - "date_of_expiration": { "type": 6, "value": 1684790150988 }, + "date_created": { + "type": 6, + "value": 1684790150988 + }, + "date_last_updated": { + "type": 6, + "value": 1684790150988 + }, + "date_of_expiration": { + "type": 6, + "value": 1684790150988 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5216,9 +6781,18 @@ "original_amount": 1065.7, "total_amount": 1065.7, "id": 1684790990972, - "date_created": { "type": 6, "value": 1684790990972 }, - "date_last_updated": { "type": 6, "value": 1684790990972 }, - "date_of_expiration": { "type": 6, "value": 1684790990972 }, + "date_created": { + "type": 6, + "value": 1684790990972 + }, + "date_last_updated": { + "type": 6, + "value": 1684790990972 + }, + "date_of_expiration": { + "type": 6, + "value": 1684790990972 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5245,7 +6819,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qcx009xoohxbms70cbr", "revision_nr": 1, "created": 1697467086321, "modified": 1697467086321 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qcx009xoohxbms70cbr", + "revision_nr": 1, + "created": 1697467086321, + "modified": 1697467086321 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814", @@ -5259,9 +6842,18 @@ "total_amount": 2337199, "history_id": 1685376471814, "id": 1685376471814, - "date_created": { "type": 6, "value": 1685376471814 }, - "date_last_updated": { "type": 6, "value": 1685376471814 }, - "date_of_expiration": { "type": 6, "value": 1685376471814 }, + "date_created": { + "type": 6, + "value": 1685376471814 + }, + "date_last_updated": { + "type": 6, + "value": 1685376471814 + }, + "date_of_expiration": { + "type": 6, + "value": 1685376471814 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -5286,7 +6878,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qcz00a0oohxapfm26w8", "revision_nr": 1, "created": 1697467086324, "modified": 1697467086324 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qcz00a0oohxapfm26w8", + "revision_nr": 1, + "created": 1697467086324, + "modified": 1697467086324 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807", @@ -5300,9 +6901,18 @@ "total_amount": 1357502, "history_id": 1685376968807, "id": 1685376968807, - "date_created": { "type": 6, "value": 1685376968807 }, - "date_last_updated": { "type": 6, "value": 1685376968807 }, - "date_of_expiration": { "type": 6, "value": 1685376968807 }, + "date_created": { + "type": 6, + "value": 1685376968807 + }, + "date_last_updated": { + "type": 6, + "value": 1685376968807 + }, + "date_of_expiration": { + "type": 6, + "value": 1685376968807 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -5327,7 +6937,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qd200a3oohxhrajetwf", "revision_nr": 1, "created": 1697467086327, "modified": 1697467086327 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qd200a3oohxhrajetwf", + "revision_nr": 1, + "created": 1697467086327, + "modified": 1697467086327 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814", @@ -5341,15 +6960,30 @@ "total_amount": 754612, "history_id": 1685379763814, "id": 1685379763814, - "date_created": { "type": 6, "value": 1685379763814 }, - "date_last_updated": { "type": 6, "value": 1685397154691 }, - "date_of_expiration": { "type": 6, "value": 1685379763814 }, + "date_created": { + "type": 6, + "value": 1685379763814 + }, + "date_last_updated": { + "type": 6, + "value": 1685397154691 + }, + "date_of_expiration": { + "type": 6, + "value": 1685379763814 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1685397154691 }, - "money_release_date": { "type": 6, "value": 1685397154691 }, + "date_approved": { + "type": 6, + "value": 1685397154691 + }, + "money_release_date": { + "type": 6, + "value": 1685397154691 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -5372,7 +7006,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qd400a6oohxhiwkgqf5", "revision_nr": 1, "created": 1697467086329, "modified": 1697467086329 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qd400a6oohxhiwkgqf5", + "revision_nr": 1, + "created": 1697467086329, + "modified": 1697467086329 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399", @@ -5386,9 +7029,18 @@ "total_amount": 1432864, "history_id": 1685379960399, "id": 1685379960399, - "date_created": { "type": 6, "value": 1685379960399 }, - "date_last_updated": { "type": 6, "value": 1685379960399 }, - "date_of_expiration": { "type": 6, "value": 1685379960399 }, + "date_created": { + "type": 6, + "value": 1685379960399 + }, + "date_last_updated": { + "type": 6, + "value": 1685379960399 + }, + "date_of_expiration": { + "type": 6, + "value": 1685379960399 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -5413,7 +7065,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qd700a9oohx7fho9yqz", "revision_nr": 1, "created": 1697467086332, "modified": 1697467086332 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qd700a9oohx7fho9yqz", + "revision_nr": 1, + "created": 1697467086332, + "modified": 1697467086332 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817", @@ -5427,14 +7088,26 @@ "total_amount": 2248, "history_id": 1685382789817, "id": 1685382789817, - "date_created": { "type": 6, "value": 1685382789817 }, - "date_last_updated": { "type": 6, "value": 1685382821235 }, - "date_of_expiration": { "type": 6, "value": 1687974789817 }, + "date_created": { + "type": 6, + "value": 1685382789817 + }, + "date_last_updated": { + "type": 6, + "value": 1685382821235 + }, + "date_of_expiration": { + "type": 6, + "value": 1687974789817 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1685382821235 }, + "money_release_date": { + "type": 6, + "value": 1685382821235 + }, "money_release_status": "rejected" }, "revision": "lnt02qd600a7oohxd7xwbtcz", @@ -5479,9 +7152,18 @@ "original_amount": 15, "total_amount": 15, "id": 1685391703693, - "date_created": { "type": 6, "value": 1685391703693 }, - "date_last_updated": { "type": 6, "value": 1685391703693 }, - "date_of_expiration": { "type": 6, "value": 1685391703693 }, + "date_created": { + "type": 6, + "value": 1685391703693 + }, + "date_last_updated": { + "type": 6, + "value": 1685391703693 + }, + "date_of_expiration": { + "type": 6, + "value": 1685391703693 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5532,9 +7214,18 @@ "original_amount": 5000, "total_amount": 5000, "id": 1685392276817, - "date_created": { "type": 6, "value": 1685392276817 }, - "date_last_updated": { "type": 6, "value": 1685392276817 }, - "date_of_expiration": { "type": 6, "value": 1685392276817 }, + "date_created": { + "type": 6, + "value": 1685392276817 + }, + "date_last_updated": { + "type": 6, + "value": 1685392276817 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392276817 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5585,9 +7276,18 @@ "original_amount": 500, "total_amount": 500, "id": 1685393515405, - "date_created": { "type": 6, "value": 1685393515405 }, - "date_last_updated": { "type": 6, "value": 1685393515405 }, - "date_of_expiration": { "type": 6, "value": 1685393515405 }, + "date_created": { + "type": 6, + "value": 1685393515405 + }, + "date_last_updated": { + "type": 6, + "value": 1685393515405 + }, + "date_of_expiration": { + "type": 6, + "value": 1685393515405 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5638,9 +7338,18 @@ "original_amount": 5200, "total_amount": 5200, "id": 1685393559293, - "date_created": { "type": 6, "value": 1685393559293 }, - "date_last_updated": { "type": 6, "value": 1685393559293 }, - "date_of_expiration": { "type": 6, "value": 1685393559293 }, + "date_created": { + "type": 6, + "value": 1685393559293 + }, + "date_last_updated": { + "type": 6, + "value": 1685393559293 + }, + "date_of_expiration": { + "type": 6, + "value": 1685393559293 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5691,9 +7400,18 @@ "original_amount": 4200, "total_amount": 4200, "id": 1685394959774, - "date_created": { "type": 6, "value": 1685394959774 }, - "date_last_updated": { "type": 6, "value": 1685394959774 }, - "date_of_expiration": { "type": 6, "value": 1685394959774 }, + "date_created": { + "type": 6, + "value": 1685394959774 + }, + "date_last_updated": { + "type": 6, + "value": 1685394959774 + }, + "date_of_expiration": { + "type": 6, + "value": 1685394959774 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5744,9 +7462,18 @@ "original_amount": 9, "total_amount": 9, "id": 1685395256711, - "date_created": { "type": 6, "value": 1685395256711 }, - "date_last_updated": { "type": 6, "value": 1685395256711 }, - "date_of_expiration": { "type": 6, "value": 1685395256711 }, + "date_created": { + "type": 6, + "value": 1685395256711 + }, + "date_last_updated": { + "type": 6, + "value": 1685395256711 + }, + "date_of_expiration": { + "type": 6, + "value": 1685395256711 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5808,9 +7535,18 @@ "original_amount": 10000, "total_amount": 10000, "id": 1685395602952, - "date_created": { "type": 6, "value": 1685395602952 }, - "date_last_updated": { "type": 6, "value": 1685395602952 }, - "date_of_expiration": { "type": 6, "value": 1685395602952 }, + "date_created": { + "type": 6, + "value": 1685395602952 + }, + "date_last_updated": { + "type": 6, + "value": 1685395602952 + }, + "date_of_expiration": { + "type": 6, + "value": 1685395602952 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5860,9 +7596,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685395698830, - "date_created": { "type": 6, "value": 1685395698830 }, - "date_last_updated": { "type": 6, "value": 1685395698830 }, - "date_of_expiration": { "type": 6, "value": 1685395698830 }, + "date_created": { + "type": 6, + "value": 1685395698830 + }, + "date_last_updated": { + "type": 6, + "value": 1685395698830 + }, + "date_of_expiration": { + "type": 6, + "value": 1685395698830 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5924,9 +7669,18 @@ "original_amount": 30000, "total_amount": 30000, "id": 1685457147497, - "date_created": { "type": 6, "value": 1685457147497 }, - "date_last_updated": { "type": 6, "value": 1685457147497 }, - "date_of_expiration": { "type": 6, "value": 1685457147497 }, + "date_created": { + "type": 6, + "value": 1685457147497 + }, + "date_last_updated": { + "type": 6, + "value": 1685457147497 + }, + "date_of_expiration": { + "type": 6, + "value": 1685457147497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5976,9 +7730,18 @@ "original_amount": 3000, "total_amount": 3000, "id": 1685457225462, - "date_created": { "type": 6, "value": 1685457225462 }, - "date_last_updated": { "type": 6, "value": 1685457225462 }, - "date_of_expiration": { "type": 6, "value": 1685457225462 }, + "date_created": { + "type": 6, + "value": 1685457225462 + }, + "date_last_updated": { + "type": 6, + "value": 1685457225462 + }, + "date_of_expiration": { + "type": 6, + "value": 1685457225462 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6040,9 +7803,18 @@ "original_amount": 70000, "total_amount": 70000, "id": 1685458042396, - "date_created": { "type": 6, "value": 1685458042396 }, - "date_last_updated": { "type": 6, "value": 1685458042396 }, - "date_of_expiration": { "type": 6, "value": 1685458042396 }, + "date_created": { + "type": 6, + "value": 1685458042396 + }, + "date_last_updated": { + "type": 6, + "value": 1685458042396 + }, + "date_of_expiration": { + "type": 6, + "value": 1685458042396 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6092,9 +7864,18 @@ "original_amount": 7000, "total_amount": 7000, "id": 1685458118470, - "date_created": { "type": 6, "value": 1685458118470 }, - "date_last_updated": { "type": 6, "value": 1685458118470 }, - "date_of_expiration": { "type": 6, "value": 1685458118470 }, + "date_created": { + "type": 6, + "value": 1685458118470 + }, + "date_last_updated": { + "type": 6, + "value": 1685458118470 + }, + "date_of_expiration": { + "type": 6, + "value": 1685458118470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6144,9 +7925,18 @@ "original_amount": 100000, "total_amount": 100000, "id": 1685663081137, - "date_created": { "type": 6, "value": 1685663081137 }, - "date_last_updated": { "type": 6, "value": 1685663081137 }, - "date_of_expiration": { "type": 6, "value": 1688255081137 }, + "date_created": { + "type": 6, + "value": 1685663081137 + }, + "date_last_updated": { + "type": 6, + "value": 1685663081137 + }, + "date_of_expiration": { + "type": 6, + "value": 1688255081137 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6198,9 +7988,18 @@ "original_amount": 0, "total_amount": 0, "id": 1685732640623, - "date_created": { "type": 6, "value": 1685732640623 }, - "date_last_updated": { "type": 6, "value": 1685732640623 }, - "date_of_expiration": { "type": 6, "value": 1685732640623 }, + "date_created": { + "type": 6, + "value": 1685732640623 + }, + "date_last_updated": { + "type": 6, + "value": 1685732640623 + }, + "date_of_expiration": { + "type": 6, + "value": 1685732640623 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6228,7 +8027,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qe200b7oohx6rtyc5qd", "revision_nr": 1, "created": 1697467086363, "modified": 1697467086363 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qe200b7oohx6rtyc5qd", + "revision_nr": 1, + "created": 1697467086363, + "modified": 1697467086363 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496", @@ -6242,9 +8050,18 @@ "total_amount": 220, "history_id": 1686686158496, "id": 1686686158496, - "date_created": { "type": 6, "value": 1686686158496 }, - "date_last_updated": { "type": 6, "value": 1686686158496 }, - "date_of_expiration": { "type": 6, "value": 1689278158496 }, + "date_created": { + "type": 6, + "value": 1686686158496 + }, + "date_last_updated": { + "type": 6, + "value": 1686686158496 + }, + "date_of_expiration": { + "type": 6, + "value": 1689278158496 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -6306,9 +8123,18 @@ "total_amount": 37.333, "id": 1687279230710, "contract_id": "1679181025084", - "date_created": { "type": 6, "value": 1687279230710 }, - "date_last_updated": { "type": 6, "value": 1687279230710 }, - "date_of_expiration": { "type": 6, "value": 1687279230710 }, + "date_created": { + "type": 6, + "value": 1687279230710 + }, + "date_last_updated": { + "type": 6, + "value": 1687279230710 + }, + "date_of_expiration": { + "type": 6, + "value": 1687279230710 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -6335,7 +8161,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qe800bdoohxfg49cx56", "revision_nr": 1, "created": 1697467086368, "modified": 1697467086368 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qe800bdoohxfg49cx56", + "revision_nr": 1, + "created": 1697467086368, + "modified": 1697467086368 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985", @@ -6349,9 +8184,18 @@ "total_amount": 865324, "history_id": 1687291349985, "id": 1687291349985, - "date_created": { "type": 6, "value": 1687291349985 }, - "date_last_updated": { "type": 6, "value": 1687291349985 }, - "date_of_expiration": { "type": 6, "value": 1687291349985 }, + "date_created": { + "type": 6, + "value": 1687291349985 + }, + "date_last_updated": { + "type": 6, + "value": 1687291349985 + }, + "date_of_expiration": { + "type": 6, + "value": 1687291349985 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -6409,9 +8253,18 @@ "original_amount": 102000, "total_amount": 102000, "id": 1688400997533, - "date_created": { "type": 6, "value": 1688400997533 }, - "date_last_updated": { "type": 6, "value": 1688400997533 }, - "date_of_expiration": { "type": 6, "value": 1688400997533 }, + "date_created": { + "type": 6, + "value": 1688400997533 + }, + "date_last_updated": { + "type": 6, + "value": 1688400997533 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400997533 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6472,9 +8325,18 @@ "original_amount": 960, "total_amount": 960, "id": 1689203359364, - "date_created": { "type": 6, "value": 1689203359364 }, - "date_last_updated": { "type": 6, "value": 1689203359364 }, - "date_of_expiration": { "type": 6, "value": 1715555359364 }, + "date_created": { + "type": 6, + "value": 1689203359364 + }, + "date_last_updated": { + "type": 6, + "value": 1689203359364 + }, + "date_of_expiration": { + "type": 6, + "value": 1715555359364 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6492,7 +8354,13 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692469402188 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692469402188 + } + }, "revision": "lnt02qeg00bloohxb55d1cq0", "revision_nr": 1, "created": 1697467086377, @@ -6554,8 +8422,14 @@ "total_amount": 7104, "id": 1689877402192, "history_id": 1689877402192, - "date_created": { "type": 6, "value": 1689877402192 }, - "date_last_updated": { "type": 6, "value": 1689877402192 }, + "date_created": { + "type": 6, + "value": 1689877402192 + }, + "date_last_updated": { + "type": 6, + "value": 1689877402192 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -6573,7 +8447,13 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692475284161 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692475284161 + } + }, "revision": "lnt02qel00bqoohx5u2j2vz6", "revision_nr": 1, "created": 1697467086382, @@ -6635,15 +8515,24 @@ "total_amount": 1391, "id": 1689883284161, "history_id": 1689883284161, - "date_created": { "type": 6, "value": 1689883284161 }, - "date_last_updated": { "type": 6, "value": 1689883327692 }, + "date_created": { + "type": 6, + "value": 1689883284161 + }, + "date_last_updated": { + "type": 6, + "value": 1689883327692 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1689883327692 }, + "money_release_date": { + "type": 6, + "value": 1689883327692 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -6679,7 +8568,14 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": { "type": 6, "value": 983415600000 }, "amount": 145.5 }, + "value": { + "title": "Taxa de serviço", + "label": { + "type": 6, + "value": 983415600000 + }, + "amount": 145.5 + }, "revision": "lnt02qet00bzoohx82nlcl1i", "revision_nr": 1, "created": 1697467086390, @@ -6688,7 +8584,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qet00byoohx0jn7exjq", "revision_nr": 1, "created": 1697467086391, "modified": 1697467086391 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qet00byoohx0jn7exjq", + "revision_nr": 1, + "created": 1697467086391, + "modified": 1697467086391 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details", @@ -6722,16 +8625,28 @@ "total_amount": 4850, "id": 1690566158772, "history_id": 1690566158772, - "date_created": { "type": 6, "value": 1690566158772 }, - "date_last_updated": { "type": 6, "value": 1690568714945 }, - "date_of_expiration": { "type": 6, "value": 1690566158772 }, + "date_created": { + "type": 6, + "value": 1690566158772 + }, + "date_last_updated": { + "type": 6, + "value": 1690568714945 + }, + "date_of_expiration": { + "type": 6, + "value": 1690566158772 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1690568714945 }, + "money_release_date": { + "type": 6, + "value": 1690568714945 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -6767,7 +8682,14 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": { "type": 6, "value": 983415600000 }, "amount": 29.099999999999998 }, + "value": { + "title": "Taxa de serviço", + "label": { + "type": 6, + "value": 983415600000 + }, + "amount": 29.099999999999998 + }, "revision": "lnt02qez00c5oohx4esy8p86", "revision_nr": 1, "created": 1697467086396, @@ -6776,7 +8698,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qez00c4oohx86lq314l", "revision_nr": 1, "created": 1697467086397, "modified": 1697467086397 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qez00c4oohx86lq314l", + "revision_nr": 1, + "created": 1697467086397, + "modified": 1697467086397 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details", @@ -6810,17 +8739,32 @@ "total_amount": 970, "id": 1690566489489, "history_id": 1690566489489, - "date_created": { "type": 6, "value": 1690566489489 }, - "date_last_updated": { "type": 6, "value": 1690568745368 }, - "date_of_expiration": { "type": 6, "value": 1690566489489 }, + "date_created": { + "type": 6, + "value": 1690566489489 + }, + "date_last_updated": { + "type": 6, + "value": 1690568745368 + }, + "date_of_expiration": { + "type": 6, + "value": 1690566489489 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1690568745368 }, - "money_release_date": { "type": 6, "value": 1690568745368 }, + "date_approved": { + "type": 6, + "value": 1690568745368 + }, + "money_release_date": { + "type": 6, + "value": 1690568745368 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -6856,7 +8800,14 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": { "type": 6, "value": 983415600000 }, "amount": 34.92 }, + "value": { + "title": "Taxa de serviço", + "label": { + "type": 6, + "value": 983415600000 + }, + "amount": 34.92 + }, "revision": "lnt02qf500cboohx7207f8ge", "revision_nr": 1, "created": 1697467086401, @@ -6865,7 +8816,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qf500caoohx8lpb4w9g", "revision_nr": 1, "created": 1697467086403, "modified": 1697467086403 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qf500caoohx8lpb4w9g", + "revision_nr": 1, + "created": 1697467086403, + "modified": 1697467086403 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details", @@ -6899,16 +8857,28 @@ "total_amount": 1164, "id": 1690566618435, "history_id": 1690566618435, - "date_created": { "type": 6, "value": 1690566618435 }, - "date_last_updated": { "type": 6, "value": 1690568814405 }, - "date_of_expiration": { "type": 6, "value": 1690566618435 }, + "date_created": { + "type": 6, + "value": 1690566618435 + }, + "date_last_updated": { + "type": 6, + "value": 1690568814405 + }, + "date_of_expiration": { + "type": 6, + "value": 1690566618435 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1690568814405 }, + "money_release_date": { + "type": 6, + "value": 1690568814405 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -6944,7 +8914,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 392.84999999999997 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 392.84999999999997 + }, "revision": "lnt02qfc00choohx5bss3ipc", "revision_nr": 1, "created": 1697467086409, @@ -6953,7 +8927,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qfc00cgoohxezvtccm8", "revision_nr": 1, "created": 1697467086410, "modified": 1697467086410 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qfc00cgoohxezvtccm8", + "revision_nr": 1, + "created": 1697467086410, + "modified": 1697467086410 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details", @@ -6987,16 +8968,28 @@ "total_amount": 13095, "id": 1690568586623, "history_id": 1690568586623, - "date_created": { "type": 6, "value": 1690568586623 }, - "date_last_updated": { "type": 6, "value": 1690568834472 }, - "date_of_expiration": { "type": 6, "value": 1690568586623 }, + "date_created": { + "type": 6, + "value": 1690568586623 + }, + "date_last_updated": { + "type": 6, + "value": 1690568834472 + }, + "date_of_expiration": { + "type": 6, + "value": 1690568586623 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1690568834472 }, + "money_release_date": { + "type": 6, + "value": 1690568834472 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -7050,9 +9043,18 @@ "total_amount": 155950, "id": 1691685725174, "history_id": 1691685725174, - "date_created": { "type": 6, "value": 1691685725174 }, - "date_last_updated": { "type": 6, "value": 1691685725174 }, - "date_of_expiration": { "type": 6, "value": 1691685725174 }, + "date_created": { + "type": 6, + "value": 1691685725174 + }, + "date_last_updated": { + "type": 6, + "value": 1691685725174 + }, + "date_of_expiration": { + "type": 6, + "value": 1691685725174 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -7071,7 +9073,13 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694889623442 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694889623442 + } + }, "revision": "lnt02qfk00cmoohxdamk5xef", "revision_nr": 1, "created": 1697467086417, @@ -7133,8 +9141,14 @@ "total_amount": 50, "id": 1692297623443, "history_id": 1692297623443, - "date_created": { "type": 6, "value": 1692297623443 }, - "date_last_updated": { "type": 6, "value": 1692297623443 }, + "date_created": { + "type": 6, + "value": 1692297623443 + }, + "date_last_updated": { + "type": 6, + "value": 1692297623443 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -7152,7 +9166,13 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694889768550 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694889768550 + } + }, "revision": "lnt02qfs00croohxf7iq3utk", "revision_nr": 1, "created": 1697467086425, @@ -7214,15 +9234,24 @@ "total_amount": 25, "id": 1692297768550, "history_id": 1692297768550, - "date_created": { "type": 6, "value": 1692297768550 }, - "date_last_updated": { "type": 6, "value": 1692297802788 }, + "date_created": { + "type": 6, + "value": 1692297768550 + }, + "date_last_updated": { + "type": 6, + "value": 1692297802788 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1692297802788 }, + "money_release_date": { + "type": 6, + "value": 1692297802788 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -7236,7 +9265,13 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694896646621 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694896646621 + } + }, "revision": "lnt02qfx00cwoohx6ziuhxp0", "revision_nr": 1, "created": 1697467086430, @@ -7298,15 +9333,24 @@ "total_amount": 1200, "id": 1692304646621, "history_id": 1692304646621, - "date_created": { "type": 6, "value": 1692304646621 }, - "date_last_updated": { "type": 6, "value": 1692304802388 }, + "date_created": { + "type": 6, + "value": 1692304646621 + }, + "date_last_updated": { + "type": 6, + "value": 1692304802388 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1692304802388 }, + "money_release_date": { + "type": 6, + "value": 1692304802388 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -7320,7 +9364,13 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694896893953 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694896893953 + } + }, "revision": "lnt02qg200d1oohx0pjyhikh", "revision_nr": 1, "created": 1697467086435, @@ -7382,16 +9432,28 @@ "total_amount": 23000, "id": 1692304893954, "history_id": 1692304893954, - "date_created": { "type": 6, "value": 1692304893954 }, - "date_last_updated": { "type": 6, "value": 1692304916494 }, + "date_created": { + "type": 6, + "value": 1692304893954 + }, + "date_last_updated": { + "type": 6, + "value": 1692304916494 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1692304916494 }, - "money_release_date": { "type": 6, "value": 1692304916494 }, + "date_approved": { + "type": 6, + "value": 1692304916494 + }, + "money_release_date": { + "type": 6, + "value": 1692304916494 + }, "money_release_status": "approved", "wasDebited": true }, @@ -7405,7 +9467,13 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694905618376 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694905618376 + } + }, "revision": "lnt02qg700d6oohx7drzexhz", "revision_nr": 1, "created": 1697467086440, @@ -7467,8 +9535,14 @@ "total_amount": 10000000, "id": 1692313618376, "history_id": 1692313618376, - "date_created": { "type": 6, "value": 1692313618376 }, - "date_last_updated": { "type": 6, "value": 1692313618376 }, + "date_created": { + "type": 6, + "value": 1692313618376 + }, + "date_last_updated": { + "type": 6, + "value": 1692313618376 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -7486,7 +9560,13 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694960186664 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694960186664 + } + }, "revision": "lnt02qgc00dboohxbsnxef8v", "revision_nr": 1, "created": 1697467086445, @@ -7548,8 +9628,14 @@ "total_amount": 125000000, "id": 1692368186664, "history_id": 1692368186664, - "date_created": { "type": 6, "value": 1692368186664 }, - "date_last_updated": { "type": 6, "value": 1692368186664 }, + "date_created": { + "type": 6, + "value": 1692368186664 + }, + "date_last_updated": { + "type": 6, + "value": 1692368186664 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -7620,9 +9706,18 @@ "total_amount": 114.75, "id": "1692651485901", "history_id": "1692651485901", - "date_created": { "type": 6, "value": 1692651485901 }, - "date_last_updated": { "type": 6, "value": 1692651485901 }, - "date_of_expiration": { "type": 6, "value": 1692651485901 }, + "date_created": { + "type": 6, + "value": 1692651485901 + }, + "date_last_updated": { + "type": 6, + "value": 1692651485901 + }, + "date_of_expiration": { + "type": 6, + "value": 1692651485901 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -7693,9 +9788,18 @@ "total_amount": 37.333333333333336, "id": "1692651487214", "history_id": "1692651487214", - "date_created": { "type": 6, "value": 1692651487214 }, - "date_last_updated": { "type": 6, "value": 1692651487214 }, - "date_of_expiration": { "type": 6, "value": 1692651487214 }, + "date_created": { + "type": 6, + "value": 1692651487214 + }, + "date_last_updated": { + "type": 6, + "value": 1692651487214 + }, + "date_of_expiration": { + "type": 6, + "value": 1692651487214 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -7766,9 +9870,18 @@ "total_amount": 37.333333333333336, "id": "1692651816060", "history_id": "1692651816060", - "date_created": { "type": 6, "value": 1692651816060 }, - "date_last_updated": { "type": 6, "value": 1692651816060 }, - "date_of_expiration": { "type": 6, "value": 1692651816060 }, + "date_created": { + "type": 6, + "value": 1692651816060 + }, + "date_last_updated": { + "type": 6, + "value": 1692651816060 + }, + "date_of_expiration": { + "type": 6, + "value": 1692651816060 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -7839,9 +9952,18 @@ "total_amount": 114.75, "id": "1692658113429", "history_id": "1692658113429", - "date_created": { "type": 6, "value": 1692658113429 }, - "date_last_updated": { "type": 6, "value": 1692658113429 }, - "date_of_expiration": { "type": 6, "value": 1692658113429 }, + "date_created": { + "type": 6, + "value": 1692658113429 + }, + "date_last_updated": { + "type": 6, + "value": 1692658113429 + }, + "date_of_expiration": { + "type": 6, + "value": 1692658113429 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -7881,7 +10003,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 660000 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 660000 + }, "revision": "lnt02qh100e0oohx68131qgu", "revision_nr": 1, "created": 1697467086470, @@ -7890,7 +10016,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qh100dzoohxex485aoj", "revision_nr": 1, "created": 1697467086472, "modified": 1697467086472 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qh100dzoohxex485aoj", + "revision_nr": 1, + "created": 1697467086472, + "modified": 1697467086472 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details", @@ -7924,17 +10057,32 @@ "total_amount": 21340000, "id": "1692976623136", "history_id": "1692976623136", - "date_created": { "type": 6, "value": 1692976623136 }, - "date_last_updated": { "type": 6, "value": 1692976717836 }, - "date_of_expiration": { "type": 6, "value": 1692976623136 }, + "date_created": { + "type": 6, + "value": 1692976623136 + }, + "date_last_updated": { + "type": 6, + "value": 1692976717836 + }, + "date_of_expiration": { + "type": 6, + "value": 1692976623136 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1692976717836 }, - "money_release_date": { "type": 6, "value": 1692976717836 }, + "date_approved": { + "type": 6, + "value": 1692976717836 + }, + "money_release_date": { + "type": 6, + "value": 1692976717836 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -7999,9 +10147,18 @@ "total_amount": 2000000, "id": "1693346357974", "history_id": "1693346357974", - "date_created": { "type": 6, "value": 1693346357974 }, - "date_last_updated": { "type": 6, "value": 1693346357974 }, - "date_of_expiration": { "type": 6, "value": 1756504757968 }, + "date_created": { + "type": 6, + "value": 1693346357974 + }, + "date_last_updated": { + "type": 6, + "value": 1693346357974 + }, + "date_of_expiration": { + "type": 6, + "value": 1756504757968 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8070,9 +10227,18 @@ "total_amount": 1000, "id": "1693765839188", "history_id": "1693765839188", - "date_created": { "type": 6, "value": 1693765839188 }, - "date_last_updated": { "type": 6, "value": 1693765839188 }, - "date_of_expiration": { "type": 6, "value": 1696357839188 }, + "date_created": { + "type": 6, + "value": 1693765839188 + }, + "date_last_updated": { + "type": 6, + "value": 1693765839188 + }, + "date_of_expiration": { + "type": 6, + "value": 1696357839188 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8143,9 +10309,18 @@ "total_amount": 37.333333333333336, "id": "1694554040120", "history_id": "1694554040120", - "date_created": { "type": 6, "value": 1694554040120 }, - "date_last_updated": { "type": 6, "value": 1694554040120 }, - "date_of_expiration": { "type": 6, "value": 1694554040120 }, + "date_created": { + "type": 6, + "value": 1694554040120 + }, + "date_last_updated": { + "type": 6, + "value": 1694554040120 + }, + "date_of_expiration": { + "type": 6, + "value": 1694554040120 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -8216,9 +10391,18 @@ "total_amount": 70.66666666666667, "id": "1694554040222", "history_id": "1694554040222", - "date_created": { "type": 6, "value": 1694554040222 }, - "date_last_updated": { "type": 6, "value": 1694554040222 }, - "date_of_expiration": { "type": 6, "value": 1694554040222 }, + "date_created": { + "type": 6, + "value": 1694554040222 + }, + "date_last_updated": { + "type": 6, + "value": 1694554040222 + }, + "date_of_expiration": { + "type": 6, + "value": 1694554040222 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -8289,9 +10473,18 @@ "total_amount": 37.333333333333336, "id": "1694554084107", "history_id": "1694554084107", - "date_created": { "type": 6, "value": 1694554084107 }, - "date_last_updated": { "type": 6, "value": 1694554084107 }, - "date_of_expiration": { "type": 6, "value": 1694554084107 }, + "date_created": { + "type": 6, + "value": 1694554084107 + }, + "date_last_updated": { + "type": 6, + "value": 1694554084107 + }, + "date_of_expiration": { + "type": 6, + "value": 1694554084107 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -8350,9 +10543,18 @@ "total_amount": 100000, "id": "1696114300558", "history_id": "1696114300558", - "date_created": { "type": 6, "value": 1696114300558 }, - "date_last_updated": { "type": 6, "value": 1696114300558 }, - "date_of_expiration": { "type": 6, "value": 1696114300558 }, + "date_created": { + "type": 6, + "value": 1696114300558 + }, + "date_last_updated": { + "type": 6, + "value": 1696114300558 + }, + "date_of_expiration": { + "type": 6, + "value": 1696114300558 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8423,9 +10625,18 @@ "total_amount": 100000, "id": "1696118036096", "history_id": "1696118036096", - "date_created": { "type": 6, "value": 1696118036096 }, - "date_last_updated": { "type": 6, "value": 1696118036096 }, - "date_of_expiration": { "type": 6, "value": 1696118036096 }, + "date_created": { + "type": 6, + "value": 1696118036096 + }, + "date_last_updated": { + "type": 6, + "value": 1696118036096 + }, + "date_of_expiration": { + "type": 6, + "value": 1696118036096 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8495,9 +10706,18 @@ "total_amount": 50000, "id": "1696118157622", "history_id": "1696118157622", - "date_created": { "type": 6, "value": 1696118157622 }, - "date_last_updated": { "type": 6, "value": 1696118157622 }, - "date_of_expiration": { "type": 6, "value": 1696118157622 }, + "date_created": { + "type": 6, + "value": 1696118157622 + }, + "date_last_updated": { + "type": 6, + "value": 1696118157622 + }, + "date_of_expiration": { + "type": 6, + "value": 1696118157622 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8567,9 +10787,18 @@ "total_amount": 1020, "id": "1696360843684", "history_id": "1696360843684", - "date_created": { "type": 6, "value": 1696360843684 }, - "date_last_updated": { "type": 6, "value": 1696360843684 }, - "date_of_expiration": { "type": 6, "value": 1696360843684 }, + "date_created": { + "type": 6, + "value": 1696360843684 + }, + "date_last_updated": { + "type": 6, + "value": 1696360843684 + }, + "date_of_expiration": { + "type": 6, + "value": 1696360843684 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8639,9 +10868,18 @@ "total_amount": 1020, "id": "1696362317186", "history_id": "1696362317186", - "date_created": { "type": 6, "value": 1696362317186 }, - "date_last_updated": { "type": 6, "value": 1696362317186 }, - "date_of_expiration": { "type": 6, "value": 1696362317186 }, + "date_created": { + "type": 6, + "value": 1696362317186 + }, + "date_last_updated": { + "type": 6, + "value": 1696362317186 + }, + "date_of_expiration": { + "type": 6, + "value": 1696362317186 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8657,7 +10895,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history", - "content": { "type": 1, "value": {}, "revision": "lnt02q7v0008oohx1nk00d17", "revision_nr": 1, "created": 1697467086523, "modified": 1697467086523 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0008oohx1nk00d17", + "revision_nr": 1, + "created": 1697467086523, + "modified": 1697467086523 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/description", @@ -8674,7 +10919,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, "revision": "lnt02qil00faoohx6g469pv4", "revision_nr": 1, "created": 1697467086526, @@ -8683,7 +10932,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qil00f9oohxbzrbeyk2", "revision_nr": 1, "created": 1697467086527, "modified": 1697467086527 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qil00f9oohxbzrbeyk2", + "revision_nr": 1, + "created": 1697467086527, + "modified": 1697467086527 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084", @@ -8696,7 +10952,10 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { "type": 6, "value": 1679181025084 }, + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid" @@ -8722,7 +10981,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, "revision": "lnt02qip00feoohxa64u6hqs", "revision_nr": 1, "created": 1697467086530, @@ -8731,7 +10994,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qip00fdoohxcf7o3ur5", "revision_nr": 1, "created": 1697467086532, "modified": 1697467086532 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qip00fdoohxcf7o3ur5", + "revision_nr": 1, + "created": 1697467086532, + "modified": 1697467086532 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805", @@ -8744,7 +11014,10 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": { "type": 6, "value": 1679181157805 }, + "date_created": { + "type": 6, + "value": 1679181157805 + }, "history_id": 1679181157805, "currency_id": "BRL", "status": "paid" @@ -8770,7 +11043,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 9.200000000000001 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 9.200000000000001 + }, "revision": "lnt02qiu00fioohx4amx8sr3", "revision_nr": 1, "created": 1697467086535, @@ -8779,7 +11056,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qiu00fhoohxapf54cx1", "revision_nr": 1, "created": 1697467086536, "modified": 1697467086536 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qiu00fhoohxapf54cx1", + "revision_nr": 1, + "created": 1697467086536, + "modified": 1697467086536 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080", @@ -8792,7 +11076,10 @@ "total_amount": 239.2, "installments": 2, "installment_amount": 119.6, - "date_created": { "type": 6, "value": 1679183534080 }, + "date_created": { + "type": 6, + "value": 1679183534080 + }, "history_id": 1679183534080, "currency_id": "BRL", "status": "paid" @@ -8818,7 +11105,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8 + }, "revision": "lnt02qiz00fmoohxagw29fha", "revision_nr": 1, "created": 1697467086542, @@ -8827,7 +11118,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qiz00floohxhv4v8uyn", "revision_nr": 1, "created": 1697467086543, "modified": 1697467086543 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qiz00floohxhv4v8uyn", + "revision_nr": 1, + "created": 1697467086543, + "modified": 1697467086543 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128", @@ -8840,7 +11138,10 @@ "total_amount": 208, "installments": 2, "installment_amount": 104, - "date_created": { "type": 6, "value": 1679184046128 }, + "date_created": { + "type": 6, + "value": 1679184046128 + }, "history_id": 1679184046128, "currency_id": "BRL", "status": "paid" @@ -8866,7 +11167,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8.4 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8.4 + }, "revision": "lnt02qj600fqoohx362ghbg6", "revision_nr": 1, "created": 1697467086547, @@ -8875,7 +11180,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qj600fpoohxam6wfba5", "revision_nr": 1, "created": 1697467086548, "modified": 1697467086548 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qj600fpoohxam6wfba5", + "revision_nr": 1, + "created": 1697467086548, + "modified": 1697467086548 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424", @@ -8888,7 +11200,10 @@ "total_amount": 218.4, "installments": 2, "installment_amount": 109.2, - "date_created": { "type": 6, "value": 1679184832424 }, + "date_created": { + "type": 6, + "value": 1679184832424 + }, "history_id": 1679184832424, "currency_id": "BRL", "status": "paid" @@ -8901,7 +11216,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304", - "content": { "type": 1, "value": {}, "revision": "lnt02qij00f6oohx4bqq204p", "revision_nr": 1, "created": 1697467086550, "modified": 1697467086550 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qij00f6oohx4bqq204p", + "revision_nr": 1, + "created": 1697467086550, + "modified": 1697467086550 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/description", @@ -8918,7 +11240,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, "revision": "lnt02qjc00fvoohx1358f65q", "revision_nr": 1, "created": 1697467086553, @@ -8927,7 +11253,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qjc00fuoohx3zff5vv6", "revision_nr": 1, "created": 1697467086554, "modified": 1697467086554 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qjc00fuoohx3zff5vv6", + "revision_nr": 1, + "created": 1697467086554, + "modified": 1697467086554 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084", @@ -8940,7 +11273,10 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { "type": 6, "value": 1679181025084 }, + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid" @@ -8966,7 +11302,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, "revision": "lnt02qji00fzoohx0voi1wyg", "revision_nr": 1, "created": 1697467086559, @@ -8975,7 +11315,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qji00fyoohx2xqj9c6r", "revision_nr": 1, "created": 1697467086560, "modified": 1697467086560 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qji00fyoohx2xqj9c6r", + "revision_nr": 1, + "created": 1697467086560, + "modified": 1697467086560 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805", @@ -8988,7 +11335,10 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": { "type": 6, "value": 1679181157805 }, + "date_created": { + "type": 6, + "value": 1679181157805 + }, "history_id": 1679181157805, "currency_id": "BRL", "status": "paid" @@ -9014,7 +11364,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 9.200000000000001 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 9.200000000000001 + }, "revision": "lnt02qjm00g3oohxd7i7am7i", "revision_nr": 1, "created": 1697467086564, @@ -9023,7 +11377,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qjm00g2oohxfd3w3p1f", "revision_nr": 1, "created": 1697467086565, "modified": 1697467086565 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qjm00g2oohxfd3w3p1f", + "revision_nr": 1, + "created": 1697467086565, + "modified": 1697467086565 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080", @@ -9036,7 +11397,10 @@ "total_amount": 239.2, "installments": 2, "installment_amount": 119.6, - "date_created": { "type": 6, "value": 1679183534080 }, + "date_created": { + "type": 6, + "value": 1679183534080 + }, "history_id": 1679183534080, "currency_id": "BRL", "status": "paid" @@ -9062,7 +11426,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8 + }, "revision": "lnt02qjr00g7oohx0hkwe3ms", "revision_nr": 1, "created": 1697467086569, @@ -9071,7 +11439,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qjr00g6oohx22rn6x4r", "revision_nr": 1, "created": 1697467086570, "modified": 1697467086570 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qjr00g6oohx22rn6x4r", + "revision_nr": 1, + "created": 1697467086570, + "modified": 1697467086570 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128", @@ -9084,7 +11459,10 @@ "total_amount": 208, "installments": 2, "installment_amount": 104, - "date_created": { "type": 6, "value": 1679184046128 }, + "date_created": { + "type": 6, + "value": 1679184046128 + }, "history_id": 1679184046128, "currency_id": "BRL", "status": "paid" @@ -9110,7 +11488,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8.4 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 4.00%", + "amount": 8.4 + }, "revision": "lnt02qjx00gboohxcy623ebc", "revision_nr": 1, "created": 1697467086574, @@ -9119,7 +11501,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qjx00gaoohxfc451b1j", "revision_nr": 1, "created": 1697467086576, "modified": 1697467086576 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qjx00gaoohxfc451b1j", + "revision_nr": 1, + "created": 1697467086576, + "modified": 1697467086576 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424", @@ -9132,7 +11521,10 @@ "total_amount": 218.4, "installments": 2, "installment_amount": 109.2, - "date_created": { "type": 6, "value": 1679184832424 }, + "date_created": { + "type": 6, + "value": 1679184832424 + }, "history_id": 1679184832424, "currency_id": "BRL", "status": "paid" @@ -9145,7 +11537,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305", - "content": { "type": 1, "value": {}, "revision": "lnt02qja00froohx1v0phcn9", "revision_nr": 1, "created": 1697467086578, "modified": 1697467086578 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qja00froohx1v0phcn9", + "revision_nr": 1, + "created": 1697467086578, + "modified": 1697467086578 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/description", @@ -9162,7 +11561,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, "revision": "lnt02qk300ggoohxc89j3cjw", "revision_nr": 1, "created": 1697467086581, @@ -9171,7 +11574,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qk300gfoohxh0sg7jto", "revision_nr": 1, "created": 1697467086582, "modified": 1697467086582 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qk300gfoohxh0sg7jto", + "revision_nr": 1, + "created": 1697467086582, + "modified": 1697467086582 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084", @@ -9184,7 +11594,10 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { "type": 6, "value": 1679181025084 }, + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid" @@ -9210,7 +11623,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, "revision": "lnt02qk800gkoohx7dsz6z1l", "revision_nr": 1, "created": 1697467086585, @@ -9219,7 +11636,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qk800gjoohxeqcp0pim", "revision_nr": 1, "created": 1697467086587, "modified": 1697467086587 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qk800gjoohxeqcp0pim", + "revision_nr": 1, + "created": 1697467086587, + "modified": 1697467086587 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805", @@ -9232,7 +11656,10 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": { "type": 6, "value": 1679181157805 }, + "date_created": { + "type": 6, + "value": 1679181157805 + }, "history_id": 1679181157805, "currency_id": "BRL", "status": "paid" @@ -9258,7 +11685,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 4 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 4 + }, "revision": "lnt02qke00gooohxb2p33u37", "revision_nr": 1, "created": 1697467086591, @@ -9267,7 +11698,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qke00gnoohxfzjqfid1", "revision_nr": 1, "created": 1697467086592, "modified": 1697467086592 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qke00gnoohxfzjqfid1", + "revision_nr": 1, + "created": 1697467086592, + "modified": 1697467086592 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468", @@ -9280,7 +11718,10 @@ "total_amount": 204, "installments": 1, "installment_amount": 204, - "date_created": { "type": 6, "value": 1683665355468 }, + "date_created": { + "type": 6, + "value": 1683665355468 + }, "history_id": 1683665355468, "currency_id": "BRL", "status": "paid" @@ -9306,7 +11747,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 3 parcela(s) 6.00%", + "amount": 12 + }, "revision": "lnt02qkj00gsoohx5mpie8xn", "revision_nr": 1, "created": 1697467086596, @@ -9315,7 +11760,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qkj00groohx4bbkcv1r", "revision_nr": 1, "created": 1697467086597, "modified": 1697467086597 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qkj00groohx4bbkcv1r", + "revision_nr": 1, + "created": 1697467086597, + "modified": 1697467086597 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591", @@ -9328,7 +11780,10 @@ "total_amount": 212, "installments": 3, "installment_amount": 70.66666666666667, - "date_created": { "type": 6, "value": 1683667472591 }, + "date_created": { + "type": 6, + "value": 1683667472591 + }, "history_id": 1683667472591, "currency_id": "BRL", "status": "paid" @@ -9341,7 +11796,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt02qk200gcoohxga11byta", "revision_nr": 1, "created": 1697467086600, "modified": 1697467086600 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qk200gcoohxga11byta", + "revision_nr": 1, + "created": 1697467086600, + "modified": 1697467086600 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/description", @@ -9358,7 +11820,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, "revision": "lnt02qkq00gxoohxhb2t3ln0", "revision_nr": 1, "created": 1697467086603, @@ -9367,7 +11833,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qkq00gwoohxhc0s81aa", "revision_nr": 1, "created": 1697467086605, "modified": 1697467086605 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qkq00gwoohxhc0s81aa", + "revision_nr": 1, + "created": 1697467086605, + "modified": 1697467086605 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084", @@ -9380,7 +11853,10 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { "type": 6, "value": 1679181025084 }, + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid" @@ -9406,7 +11882,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 51 + }, "revision": "lnt02qkw00h1oohx0ge7f7x9", "revision_nr": 1, "created": 1697467086609, @@ -9415,7 +11895,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qkw00h0oohx2p1s5u9o", "revision_nr": 1, "created": 1697467086611, "modified": 1697467086611 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qkw00h0oohx2p1s5u9o", + "revision_nr": 1, + "created": 1697467086611, + "modified": 1697467086611 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805", @@ -9428,7 +11915,10 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": { "type": 6, "value": 1679181157805 }, + "date_created": { + "type": 6, + "value": 1679181157805 + }, "history_id": 1679181157805, "currency_id": "BRL", "status": "paid" @@ -9454,7 +11944,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 3 parcela(s) 6.00%", + "amount": 12 + }, "revision": "lnt02ql100h5oohx5jyq99z7", "revision_nr": 1, "created": 1697467086615, @@ -9463,7 +11957,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02ql100h4oohx9lnfdcxj", "revision_nr": 1, "created": 1697467086616, "modified": 1697467086616 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02ql100h4oohx9lnfdcxj", + "revision_nr": 1, + "created": 1697467086616, + "modified": 1697467086616 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591", @@ -9476,7 +11977,10 @@ "total_amount": 212, "installments": 3, "installment_amount": 70.66666666666667, - "date_created": { "type": 6, "value": 1683667472591 }, + "date_created": { + "type": 6, + "value": 1683667472591 + }, "history_id": 1683667472591, "currency_id": "BRL", "status": "paid" @@ -9489,7 +11993,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt02qko00gtoohx1pbpdf3e", "revision_nr": 1, "created": 1697467086618, "modified": 1697467086618 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qko00gtoohx1pbpdf3e", + "revision_nr": 1, + "created": 1697467086618, + "modified": 1697467086618 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/description", @@ -9506,7 +12017,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, "revision": "lnt02ql800haoohxgpppczqj", "revision_nr": 1, "created": 1697467086622, @@ -9515,7 +12030,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02ql800h9oohx8qonao9v", "revision_nr": 1, "created": 1697467086623, "modified": 1697467086623 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02ql800h9oohx8qonao9v", + "revision_nr": 1, + "created": 1697467086623, + "modified": 1697467086623 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084", @@ -9528,11 +12050,17 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { "type": 6, "value": 1679181025084 }, + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694554040136 } + "date_last_updated": { + "type": 6, + "value": 1694554040136 + } }, "revision": "lnt02ql600h7oohx29k9e2ei", "revision_nr": 1, @@ -9555,7 +12083,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 3 parcela(s) 6.00%", + "amount": 12 + }, "revision": "lnt02qle00heoohxhnm695fi", "revision_nr": 1, "created": 1697467086627, @@ -9564,7 +12096,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qle00hdoohx367y5fjl", "revision_nr": 1, "created": 1697467086630, "modified": 1697467086630 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qle00hdoohx367y5fjl", + "revision_nr": 1, + "created": 1697467086630, + "modified": 1697467086630 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591", @@ -9577,11 +12116,17 @@ "total_amount": 212, "installments": 3, "installment_amount": 70.66666666666667, - "date_created": { "type": 6, "value": 1683667472591 }, + "date_created": { + "type": 6, + "value": 1683667472591 + }, "history_id": 1683667472591, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694554040249 } + "date_last_updated": { + "type": 6, + "value": 1694554040249 + } }, "revision": "lnt02qld00hboohx1ie1e9s9", "revision_nr": 1, @@ -9591,7 +12136,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt02ql600h6oohxeqy0ahlt", "revision_nr": 1, "created": 1697467086632, "modified": 1697467086632 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ql600h6oohxeqy0ahlt", + "revision_nr": 1, + "created": 1697467086632, + "modified": 1697467086632 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/description", @@ -9608,7 +12160,11 @@ "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 6 parcela(s) 12.00%", + "amount": 24 + }, "revision": "lnt02qlm00hjoohx790kexmf", "revision_nr": 1, "created": 1697467086635, @@ -9617,7 +12173,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qlm00hioohx7owy89rw", "revision_nr": 1, "created": 1697467086636, "modified": 1697467086636 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qlm00hioohx7owy89rw", + "revision_nr": 1, + "created": 1697467086636, + "modified": 1697467086636 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084", @@ -9630,11 +12193,17 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { "type": 6, "value": 1679181025084 }, + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694554084147 } + "date_last_updated": { + "type": 6, + "value": 1694554084147 + } }, "revision": "lnt02qlk00hgoohx6fjg02x9", "revision_nr": 1, @@ -9644,17 +12213,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt02qlk00hfoohxchmj3vkj", "revision_nr": 1, "created": 1697467086639, "modified": 1697467086639 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qlk00hfoohxchmj3vkj", + "revision_nr": 1, + "created": 1697467086639, + "modified": 1697467086639 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt02qij00f5oohxfmo82lyk", "revision_nr": 1, "created": 1697467086640, "modified": 1697467086640 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qij00f5oohxfmo82lyk", + "revision_nr": 1, + "created": 1697467086640, + "modified": 1697467086640 + } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit", "content": { "type": 1, - "value": { "approvedLimit": 1500, "limitUsed": 312.50000000000006, "analysisRequested": { "type": 6, "value": 1679030641192 }, "lastReview": { "type": 6, "value": 1679030831310 } }, + "value": { + "approvedLimit": 1500, + "limitUsed": 312.50000000000006, + "analysisRequested": { + "type": 6, + "value": 1679030641192 + }, + "lastReview": { + "type": 6, + "value": 1679030831310 + } + }, "revision": "lnt02qij00f4oohx57rjfci0", "revision_nr": 1, "created": 1697467086641, @@ -9670,7 +12264,10 @@ "dateValidity": 1679011956662, "totalValue": 12518.651018650135, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1697166000000 } + "balancesModificacao": { + "type": 6, + "value": 1697166000000 + } }, "revision": "lnt02q7u0004oohx62ohgle5", "revision_nr": 1, @@ -9682,7 +12279,11 @@ "path": "ivipcoin-db::__movement_wallet__/001286046930633944/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02qlv00hloohxfkeod0ef", "revision_nr": 1, "created": 1697467086644, @@ -9699,7 +12300,10 @@ "balances": {}, "history": {}, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696993200000 } + "balancesModificacao": { + "type": 6, + "value": 1696993200000 + } }, "revision": "lnt02qlv00hkoohx3zgm4cut", "revision_nr": 1, @@ -9711,7 +12315,11 @@ "path": "ivipcoin-db::__movement_wallet__/001345425233260977/balances/IVIP", "content": { "type": 1, - "value": { "available": "-3396779.42000000", "symbol": "IVIP", "value": -452.027 }, + "value": { + "available": "-3396779.42000000", + "symbol": "IVIP", + "value": -452.027 + }, "revision": "lnt02qly00hooohx0mbtcwdp", "revision_nr": 1, "created": 1697467086647, @@ -9720,7 +12328,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02qly00hnoohxbcln622r", "revision_nr": 1, "created": 1697467086648, "modified": 1697467086648 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qly00hnoohxbcln622r", + "revision_nr": 1, + "created": 1697467086648, + "modified": 1697467086648 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429/description", @@ -9735,7 +12350,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qm200hsoohx39tycg3w", "revision_nr": 1, "created": 1697467086651, "modified": 1697467086651 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qm200hsoohx39tycg3w", + "revision_nr": 1, + "created": 1697467086651, + "modified": 1697467086651 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429", @@ -9749,15 +12373,30 @@ "total_amount": 500, "history_id": 1684093592429, "id": 1684093592429, - "date_created": { "type": 6, "value": 1684093592429 }, - "date_last_updated": { "type": 6, "value": 1684096162499 }, - "date_of_expiration": { "type": 6, "value": 1686685592429 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684096162499 }, - "money_release_date": { "type": 6, "value": 1684096162499 }, + "date_created": { + "type": 6, + "value": 1684093592429 + }, + "date_last_updated": { + "type": 6, + "value": 1684096162499 + }, + "date_of_expiration": { + "type": 6, + "value": 1686685592429 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684096162499 + }, + "money_release_date": { + "type": 6, + "value": 1684096162499 + }, "money_release_status": "approved", "wasDebited": true }, @@ -9782,7 +12421,11 @@ "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 10.02 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 10.02 + }, "revision": "lnt02qm800hxoohx9dtfe1rk", "revision_nr": 1, "created": 1697467086657, @@ -9791,11 +12434,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qm800hwoohx3zs0fekp", "revision_nr": 1, "created": 1697467086660, "modified": 1697467086660 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qm800hwoohx3zs0fekp", + "revision_nr": 1, + "created": 1697467086660, + "modified": 1697467086660 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qm800hvoohx9jtlgx74", "revision_nr": 1, "created": 1697467086661, "modified": 1697467086661 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qm800hvoohx9jtlgx74", + "revision_nr": 1, + "created": 1697467086661, + "modified": 1697467086661 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939", @@ -9809,9 +12466,18 @@ "total_amount": 511.02, "history_id": 1684399661939, "id": 1684399661939, - "date_created": { "type": 6, "value": 1684399661939 }, - "date_last_updated": { "type": 6, "value": 1684399661939 }, - "date_of_expiration": { "type": 6, "value": 1686991661939 }, + "date_created": { + "type": 6, + "value": 1684399661939 + }, + "date_last_updated": { + "type": 6, + "value": 1684399661939 + }, + "date_of_expiration": { + "type": 6, + "value": 1686991661939 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -9839,7 +12505,11 @@ "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 9.98 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 9.98 + }, "revision": "lnt02qmg00i2oohxf890azqr", "revision_nr": 1, "created": 1697467086665, @@ -9848,11 +12518,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qmg00i1oohx9mwgcnus", "revision_nr": 1, "created": 1697467086667, "modified": 1697467086667 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qmg00i1oohx9mwgcnus", + "revision_nr": 1, + "created": 1697467086667, + "modified": 1697467086667 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details", - "content": { "type": 1, "value": {}, "revision": "lnt02qmg00i0oohx0z3ydnd9", "revision_nr": 1, "created": 1697467086668, "modified": 1697467086668 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qmg00i0oohx0z3ydnd9", + "revision_nr": 1, + "created": 1697467086668, + "modified": 1697467086668 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872", @@ -9866,9 +12550,18 @@ "total_amount": 508.98, "history_id": 1684612673872, "id": 1684612673872, - "date_created": { "type": 6, "value": 1684612673872 }, - "date_last_updated": { "type": 6, "value": 1684612673872 }, - "date_of_expiration": { "type": 6, "value": 1687204673872 }, + "date_created": { + "type": 6, + "value": 1684612673872 + }, + "date_last_updated": { + "type": 6, + "value": 1684612673872 + }, + "date_of_expiration": { + "type": 6, + "value": 1687204673872 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -9917,9 +12610,18 @@ "original_amount": 7306097, "total_amount": 7306097, "id": 1684624250482, - "date_created": { "type": 6, "value": 1684624250482 }, - "date_last_updated": { "type": 6, "value": 1684624250482 }, - "date_of_expiration": { "type": 6, "value": 1684624250482 }, + "date_created": { + "type": 6, + "value": 1684624250482 + }, + "date_last_updated": { + "type": 6, + "value": 1684624250482 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624250482 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9947,7 +12649,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qmr00i7oohxerrdbalj", "revision_nr": 1, "created": 1697467086676, "modified": 1697467086676 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qmr00i7oohxerrdbalj", + "revision_nr": 1, + "created": 1697467086676, + "modified": 1697467086676 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230", @@ -9961,9 +12672,18 @@ "total_amount": 562, "history_id": 1684792076230, "id": 1684792076230, - "date_created": { "type": 6, "value": 1684792076230 }, - "date_last_updated": { "type": 6, "value": 1684792076230 }, - "date_of_expiration": { "type": 6, "value": 1687384076230 }, + "date_created": { + "type": 6, + "value": 1684792076230 + }, + "date_last_updated": { + "type": 6, + "value": 1684792076230 + }, + "date_of_expiration": { + "type": 6, + "value": 1687384076230 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -9988,7 +12708,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qmv00iaoohxef2a30aw", "revision_nr": 1, "created": 1697467086680, "modified": 1697467086680 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qmv00iaoohxef2a30aw", + "revision_nr": 1, + "created": 1697467086680, + "modified": 1697467086680 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083", @@ -10002,9 +12731,18 @@ "total_amount": 562, "history_id": 1684942997083, "id": 1684942997083, - "date_created": { "type": 6, "value": 1684942997083 }, - "date_last_updated": { "type": 6, "value": 1684942997083 }, - "date_of_expiration": { "type": 6, "value": 1687534997083 }, + "date_created": { + "type": 6, + "value": 1684942997083 + }, + "date_last_updated": { + "type": 6, + "value": 1684942997083 + }, + "date_of_expiration": { + "type": 6, + "value": 1687534997083 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -10029,7 +12767,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qn000idoohxg0gf8ap8", "revision_nr": 1, "created": 1697467086685, "modified": 1697467086685 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qn000idoohxg0gf8ap8", + "revision_nr": 1, + "created": 1697467086685, + "modified": 1697467086685 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893", @@ -10043,15 +12790,30 @@ "total_amount": 562, "history_id": 1684973822893, "id": 1684973822893, - "date_created": { "type": 6, "value": 1684973822893 }, - "date_last_updated": { "type": 6, "value": 1685015008165 }, - "date_of_expiration": { "type": 6, "value": 1687565822893 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685015008165 }, - "money_release_date": { "type": 6, "value": 1685015008165 }, + "date_created": { + "type": 6, + "value": 1684973822893 + }, + "date_last_updated": { + "type": 6, + "value": 1685015008165 + }, + "date_of_expiration": { + "type": 6, + "value": 1687565822893 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685015008165 + }, + "money_release_date": { + "type": 6, + "value": 1685015008165 + }, "money_release_status": "approved", "wasDebited": true }, @@ -10074,7 +12836,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qn500igoohxbrasb1bi", "revision_nr": 1, "created": 1697467086690, "modified": 1697467086690 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qn500igoohxbrasb1bi", + "revision_nr": 1, + "created": 1697467086690, + "modified": 1697467086690 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519", @@ -10088,15 +12859,30 @@ "total_amount": 517, "history_id": 1685116940519, "id": 1685116940519, - "date_created": { "type": 6, "value": 1685116940519 }, - "date_last_updated": { "type": 6, "value": 1685369247276 }, - "date_of_expiration": { "type": 6, "value": 1687708940519 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685369247276 }, - "money_release_date": { "type": 6, "value": 1685369247276 }, + "date_created": { + "type": 6, + "value": 1685116940519 + }, + "date_last_updated": { + "type": 6, + "value": 1685369247276 + }, + "date_of_expiration": { + "type": 6, + "value": 1687708940519 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685369247276 + }, + "money_release_date": { + "type": 6, + "value": 1685369247276 + }, "money_release_status": "approved", "wasDebited": true }, @@ -10119,7 +12905,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qn900ijoohx6078dcvg", "revision_nr": 1, "created": 1697467086694, "modified": 1697467086694 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qn900ijoohx6078dcvg", + "revision_nr": 1, + "created": 1697467086694, + "modified": 1697467086694 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180", @@ -10133,15 +12928,30 @@ "total_amount": 329, "history_id": 1685202990180, "id": 1685202990180, - "date_created": { "type": 6, "value": 1685202990180 }, - "date_last_updated": { "type": 6, "value": 1685364517239 }, - "date_of_expiration": { "type": 6, "value": 1687794990180 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685364517239 }, - "money_release_date": { "type": 6, "value": 1685364517239 }, + "date_created": { + "type": 6, + "value": 1685202990180 + }, + "date_last_updated": { + "type": 6, + "value": 1685364517239 + }, + "date_of_expiration": { + "type": 6, + "value": 1687794990180 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685364517239 + }, + "money_release_date": { + "type": 6, + "value": 1685364517239 + }, "money_release_status": "approved", "wasDebited": true }, @@ -10198,9 +13008,18 @@ "original_amount": 45000, "total_amount": 45000, "id": 1685384470907, - "date_created": { "type": 6, "value": 1685384470907 }, - "date_last_updated": { "type": 6, "value": 1685384470907 }, - "date_of_expiration": { "type": 6, "value": 1685384470907 }, + "date_created": { + "type": 6, + "value": 1685384470907 + }, + "date_last_updated": { + "type": 6, + "value": 1685384470907 + }, + "date_of_expiration": { + "type": 6, + "value": 1685384470907 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -10227,7 +13046,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qnh00ipoohx504c8eg8", "revision_nr": 1, "created": 1697467086703, "modified": 1697467086703 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qnh00ipoohx504c8eg8", + "revision_nr": 1, + "created": 1697467086703, + "modified": 1697467086703 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107", @@ -10241,15 +13069,30 @@ "total_amount": 96, "history_id": 1685389853107, "id": 1685389853107, - "date_created": { "type": 6, "value": 1685389853107 }, - "date_last_updated": { "type": 6, "value": 1687436176583 }, - "date_of_expiration": { "type": 6, "value": 1687981853107 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1687436176583 }, - "money_release_date": { "type": 6, "value": 1687436176583 }, + "date_created": { + "type": 6, + "value": 1685389853107 + }, + "date_last_updated": { + "type": 6, + "value": 1687436176583 + }, + "date_of_expiration": { + "type": 6, + "value": 1687981853107 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1687436176583 + }, + "money_release_date": { + "type": 6, + "value": 1687436176583 + }, "money_release_status": "approved", "wasDebited": true }, @@ -10306,9 +13149,18 @@ "original_amount": 3000000, "total_amount": 3000000, "id": 1685392262218, - "date_created": { "type": 6, "value": 1685392262218 }, - "date_last_updated": { "type": 6, "value": 1685392262218 }, - "date_of_expiration": { "type": 6, "value": 1685392262218 }, + "date_created": { + "type": 6, + "value": 1685392262218 + }, + "date_last_updated": { + "type": 6, + "value": 1685392262218 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392262218 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -10369,9 +13221,18 @@ "original_amount": 30000000, "total_amount": 30000000, "id": 1685392563175, - "date_created": { "type": 6, "value": 1685392563175 }, - "date_last_updated": { "type": 6, "value": 1685392563175 }, - "date_of_expiration": { "type": 6, "value": 1685392563175 }, + "date_created": { + "type": 6, + "value": 1685392563175 + }, + "date_last_updated": { + "type": 6, + "value": 1685392563175 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392563175 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -10432,9 +13293,18 @@ "original_amount": 3300000, "total_amount": 3300000, "id": 1685394042885, - "date_created": { "type": 6, "value": 1685394042885 }, - "date_last_updated": { "type": 6, "value": 1685394042885 }, - "date_of_expiration": { "type": 6, "value": 1685394042885 }, + "date_created": { + "type": 6, + "value": 1685394042885 + }, + "date_last_updated": { + "type": 6, + "value": 1685394042885 + }, + "date_of_expiration": { + "type": 6, + "value": 1685394042885 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -10495,9 +13365,18 @@ "original_amount": 50000000, "total_amount": 50000000, "id": 1685450530237, - "date_created": { "type": 6, "value": 1685450530237 }, - "date_last_updated": { "type": 6, "value": 1685450530237 }, - "date_of_expiration": { "type": 6, "value": 1685450530237 }, + "date_created": { + "type": 6, + "value": 1685450530237 + }, + "date_last_updated": { + "type": 6, + "value": 1685450530237 + }, + "date_of_expiration": { + "type": 6, + "value": 1685450530237 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -10558,9 +13437,18 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1685455769977, - "date_created": { "type": 6, "value": 1685455769977 }, - "date_last_updated": { "type": 6, "value": 1685455769977 }, - "date_of_expiration": { "type": 6, "value": 1685455769977 }, + "date_created": { + "type": 6, + "value": 1685455769977 + }, + "date_last_updated": { + "type": 6, + "value": 1685455769977 + }, + "date_of_expiration": { + "type": 6, + "value": 1685455769977 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -10610,9 +13498,18 @@ "original_amount": 4940350, "total_amount": 4940350, "id": 1685743296302, - "date_created": { "type": 6, "value": 1685743296302 }, - "date_last_updated": { "type": 6, "value": 1685743296302 }, - "date_of_expiration": { "type": 6, "value": 1685743296302 }, + "date_created": { + "type": 6, + "value": 1685743296302 + }, + "date_last_updated": { + "type": 6, + "value": 1685743296302 + }, + "date_of_expiration": { + "type": 6, + "value": 1685743296302 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -10674,9 +13571,18 @@ "original_amount": 41.900000000000006, "total_amount": 41.900000000000006, "id": 1685744480429, - "date_created": { "type": 6, "value": 1685744480429 }, - "date_last_updated": { "type": 6, "value": 1685744480429 }, - "date_of_expiration": { "type": 6, "value": 1685744480429 }, + "date_created": { + "type": 6, + "value": 1685744480429 + }, + "date_last_updated": { + "type": 6, + "value": 1685744480429 + }, + "date_of_expiration": { + "type": 6, + "value": 1685744480429 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -10726,9 +13632,18 @@ "original_amount": 147164, "total_amount": 147164, "id": 1685745152104, - "date_created": { "type": 6, "value": 1685745152104 }, - "date_last_updated": { "type": 6, "value": 1685745152104 }, - "date_of_expiration": { "type": 6, "value": 1685745152104 }, + "date_created": { + "type": 6, + "value": 1685745152104 + }, + "date_last_updated": { + "type": 6, + "value": 1685745152104 + }, + "date_of_expiration": { + "type": 6, + "value": 1685745152104 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -10756,7 +13671,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qon00jeoohx3crags2j", "revision_nr": 1, "created": 1697467086744, "modified": 1697467086744 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qon00jeoohx3crags2j", + "revision_nr": 1, + "created": 1697467086744, + "modified": 1697467086744 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099", @@ -10770,15 +13694,30 @@ "total_amount": 1191, "history_id": 1686664360099, "id": 1686664360099, - "date_created": { "type": 6, "value": 1686664360099 }, - "date_last_updated": { "type": 6, "value": 1686664809214 }, - "date_of_expiration": { "type": 6, "value": 1689256360099 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1686664809214 }, - "money_release_date": { "type": 6, "value": 1686664809214 }, + "date_created": { + "type": 6, + "value": 1686664360099 + }, + "date_last_updated": { + "type": 6, + "value": 1686664809214 + }, + "date_of_expiration": { + "type": 6, + "value": 1689256360099 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686664809214 + }, + "money_release_date": { + "type": 6, + "value": 1686664809214 + }, "money_release_status": "approved", "wasDebited": true }, @@ -10838,9 +13777,18 @@ "total_amount": 511.02, "id": 1686844436781, "contract_id": "1684399661939", - "date_created": { "type": 6, "value": 1686844436781 }, - "date_last_updated": { "type": 6, "value": 1686844436781 }, - "date_of_expiration": { "type": 6, "value": 1686844436781 }, + "date_created": { + "type": 6, + "value": 1686844436781 + }, + "date_last_updated": { + "type": 6, + "value": 1686844436781 + }, + "date_of_expiration": { + "type": 6, + "value": 1686844436781 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -10904,9 +13852,18 @@ "total_amount": 508.98, "id": 1686844436954, "contract_id": "1684612673872", - "date_created": { "type": 6, "value": 1686844436954 }, - "date_last_updated": { "type": 6, "value": 1686844436954 }, - "date_of_expiration": { "type": 6, "value": 1686844436954 }, + "date_created": { + "type": 6, + "value": 1686844436954 + }, + "date_last_updated": { + "type": 6, + "value": 1686844436954 + }, + "date_of_expiration": { + "type": 6, + "value": 1686844436954 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -10966,9 +13923,18 @@ "original_amount": 11152973, "total_amount": 11152973, "id": 1687345768938, - "date_created": { "type": 6, "value": 1687345768938 }, - "date_last_updated": { "type": 6, "value": 1687345768938 }, - "date_of_expiration": { "type": 6, "value": 1718968168938 }, + "date_created": { + "type": 6, + "value": 1687345768938 + }, + "date_last_updated": { + "type": 6, + "value": 1687345768938 + }, + "date_of_expiration": { + "type": 6, + "value": 1718968168938 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11019,9 +13985,18 @@ "original_amount": 818586, "total_amount": 818586, "id": 1687393215194, - "date_created": { "type": 6, "value": 1687393215194 }, - "date_last_updated": { "type": 6, "value": 1687393215194 }, - "date_of_expiration": { "type": 6, "value": 1687393215194 }, + "date_created": { + "type": 6, + "value": 1687393215194 + }, + "date_last_updated": { + "type": 6, + "value": 1687393215194 + }, + "date_of_expiration": { + "type": 6, + "value": 1687393215194 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11072,9 +14047,18 @@ "original_amount": 496157, "total_amount": 496157, "id": 1687495116294, - "date_created": { "type": 6, "value": 1687495116294 }, - "date_last_updated": { "type": 6, "value": 1687495116294 }, - "date_of_expiration": { "type": 6, "value": 1687495116294 }, + "date_created": { + "type": 6, + "value": 1687495116294 + }, + "date_last_updated": { + "type": 6, + "value": 1687495116294 + }, + "date_of_expiration": { + "type": 6, + "value": 1687495116294 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11135,9 +14119,18 @@ "original_amount": 12152954, "total_amount": 12152954, "id": 1687547056698, - "date_created": { "type": 6, "value": 1687547056698 }, - "date_last_updated": { "type": 6, "value": 1687547056698 }, - "date_of_expiration": { "type": 6, "value": 1750705456698 }, + "date_created": { + "type": 6, + "value": 1687547056698 + }, + "date_last_updated": { + "type": 6, + "value": 1687547056698 + }, + "date_of_expiration": { + "type": 6, + "value": 1750705456698 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -11165,7 +14158,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qpi00jxoohx3egj6bpi", "revision_nr": 1, "created": 1697467086775, "modified": 1697467086775 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qpi00jxoohx3egj6bpi", + "revision_nr": 1, + "created": 1697467086775, + "modified": 1697467086775 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622", @@ -11179,9 +14181,18 @@ "total_amount": 526, "history_id": 1688994491622, "id": 1688994491622, - "date_created": { "type": 6, "value": 1688994491622 }, - "date_last_updated": { "type": 6, "value": 1688994491622 }, - "date_of_expiration": { "type": 6, "value": 1691586491622 }, + "date_created": { + "type": 6, + "value": 1688994491622 + }, + "date_last_updated": { + "type": 6, + "value": 1688994491622 + }, + "date_of_expiration": { + "type": 6, + "value": 1691586491622 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -11206,7 +14217,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qpn00k0oohx7llkfimz", "revision_nr": 1, "created": 1697467086780, "modified": 1697467086780 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qpn00k0oohx7llkfimz", + "revision_nr": 1, + "created": 1697467086780, + "modified": 1697467086780 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630", @@ -11220,15 +14240,30 @@ "total_amount": 2224, "history_id": 1689000633630, "id": 1689000633630, - "date_created": { "type": 6, "value": 1689000633630 }, - "date_last_updated": { "type": 6, "value": 1689002506324 }, - "date_of_expiration": { "type": 6, "value": 1691592633630 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689002506324 }, - "money_release_date": { "type": 6, "value": 1689002506324 }, + "date_created": { + "type": 6, + "value": 1689000633630 + }, + "date_last_updated": { + "type": 6, + "value": 1689002506324 + }, + "date_of_expiration": { + "type": 6, + "value": 1691592633630 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689002506324 + }, + "money_release_date": { + "type": 6, + "value": 1689002506324 + }, "money_release_status": "approved", "wasDebited": true }, @@ -11274,9 +14309,18 @@ "original_amount": 180125, "total_amount": 180125, "id": 1689082225194, - "date_created": { "type": 6, "value": 1689082225194 }, - "date_last_updated": { "type": 6, "value": 1689082225194 }, - "date_of_expiration": { "type": 6, "value": 1689082225194 }, + "date_created": { + "type": 6, + "value": 1689082225194 + }, + "date_last_updated": { + "type": 6, + "value": 1689082225194 + }, + "date_of_expiration": { + "type": 6, + "value": 1689082225194 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11327,9 +14371,18 @@ "original_amount": 305476, "total_amount": 305476, "id": 1689114929852, - "date_created": { "type": 6, "value": 1689114929852 }, - "date_last_updated": { "type": 6, "value": 1689114929852 }, - "date_of_expiration": { "type": 6, "value": 1689114929852 }, + "date_created": { + "type": 6, + "value": 1689114929852 + }, + "date_last_updated": { + "type": 6, + "value": 1689114929852 + }, + "date_of_expiration": { + "type": 6, + "value": 1689114929852 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11357,7 +14410,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qpz00k7oohx6aa736k8", "revision_nr": 1, "created": 1697467086792, "modified": 1697467086792 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qpz00k7oohx6aa736k8", + "revision_nr": 1, + "created": 1697467086792, + "modified": 1697467086792 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893", @@ -11371,15 +14433,30 @@ "total_amount": 726, "history_id": 1689115029893, "id": 1689115029893, - "date_created": { "type": 6, "value": 1689115029893 }, - "date_last_updated": { "type": 6, "value": 1689150209959 }, - "date_of_expiration": { "type": 6, "value": 1691707029893 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689150209959 }, - "money_release_date": { "type": 6, "value": 1689150209959 }, + "date_created": { + "type": 6, + "value": 1689115029893 + }, + "date_last_updated": { + "type": 6, + "value": 1689150209959 + }, + "date_of_expiration": { + "type": 6, + "value": 1691707029893 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689150209959 + }, + "money_release_date": { + "type": 6, + "value": 1689150209959 + }, "money_release_status": "approved", "wasDebited": true }, @@ -11425,9 +14502,18 @@ "original_amount": 93754, "total_amount": 93754, "id": 1689195736692, - "date_created": { "type": 6, "value": 1689195736692 }, - "date_last_updated": { "type": 6, "value": 1689195736692 }, - "date_of_expiration": { "type": 6, "value": 1689195736692 }, + "date_created": { + "type": 6, + "value": 1689195736692 + }, + "date_last_updated": { + "type": 6, + "value": 1689195736692 + }, + "date_of_expiration": { + "type": 6, + "value": 1689195736692 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11488,9 +14574,18 @@ "original_amount": 1904, "total_amount": 1904, "id": 1689204261841, - "date_created": { "type": 6, "value": 1689204261841 }, - "date_last_updated": { "type": 6, "value": 1689204261841 }, - "date_of_expiration": { "type": 6, "value": 1715556261841 }, + "date_created": { + "type": 6, + "value": 1689204261841 + }, + "date_last_updated": { + "type": 6, + "value": 1689204261841 + }, + "date_of_expiration": { + "type": 6, + "value": 1715556261841 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11541,9 +14636,18 @@ "original_amount": 40949, "total_amount": 40949, "id": 1689204343069, - "date_created": { "type": 6, "value": 1689204343069 }, - "date_last_updated": { "type": 6, "value": 1689204343069 }, - "date_of_expiration": { "type": 6, "value": 1689204343069 }, + "date_created": { + "type": 6, + "value": 1689204343069 + }, + "date_last_updated": { + "type": 6, + "value": 1689204343069 + }, + "date_of_expiration": { + "type": 6, + "value": 1689204343069 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11571,7 +14675,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qqh00khoohx1r654g4y", "revision_nr": 1, "created": 1697467086810, "modified": 1697467086810 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qqh00khoohx1r654g4y", + "revision_nr": 1, + "created": 1697467086810, + "modified": 1697467086810 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368", @@ -11585,9 +14698,18 @@ "total_amount": 1423, "history_id": 1689347614368, "id": 1689347614368, - "date_created": { "type": 6, "value": 1689347614368 }, - "date_last_updated": { "type": 6, "value": 1689347614368 }, - "date_of_expiration": { "type": 6, "value": 1691939614368 }, + "date_created": { + "type": 6, + "value": 1689347614368 + }, + "date_last_updated": { + "type": 6, + "value": 1689347614368 + }, + "date_of_expiration": { + "type": 6, + "value": 1691939614368 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -11612,7 +14734,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qql00kkoohx2v2r8npf", "revision_nr": 1, "created": 1697467086815, "modified": 1697467086815 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qql00kkoohx2v2r8npf", + "revision_nr": 1, + "created": 1697467086815, + "modified": 1697467086815 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136", @@ -11626,15 +14757,30 @@ "total_amount": 1379, "history_id": 1689618134136, "id": 1689618134136, - "date_created": { "type": 6, "value": 1689618134136 }, - "date_last_updated": { "type": 6, "value": 1689619146304 }, - "date_of_expiration": { "type": 6, "value": 1692210134136 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689619146304 }, - "money_release_date": { "type": 6, "value": 1689619146304 }, + "date_created": { + "type": 6, + "value": 1689618134136 + }, + "date_last_updated": { + "type": 6, + "value": 1689619146304 + }, + "date_of_expiration": { + "type": 6, + "value": 1692210134136 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689619146304 + }, + "money_release_date": { + "type": 6, + "value": 1689619146304 + }, "money_release_status": "approved", "wasDebited": true }, @@ -11680,9 +14826,18 @@ "original_amount": 326875, "total_amount": 326875, "id": 1689619360780, - "date_created": { "type": 6, "value": 1689619360780 }, - "date_last_updated": { "type": 6, "value": 1689619360780 }, - "date_of_expiration": { "type": 6, "value": 1689619360780 }, + "date_created": { + "type": 6, + "value": 1689619360780 + }, + "date_last_updated": { + "type": 6, + "value": 1689619360780 + }, + "date_of_expiration": { + "type": 6, + "value": 1689619360780 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11733,9 +14888,18 @@ "original_amount": 318321, "total_amount": 318321, "id": 1690237331737, - "date_created": { "type": 6, "value": 1690237331737 }, - "date_last_updated": { "type": 6, "value": 1690237331737 }, - "date_of_expiration": { "type": 6, "value": 1690237331737 }, + "date_created": { + "type": 6, + "value": 1690237331737 + }, + "date_last_updated": { + "type": 6, + "value": 1690237331737 + }, + "date_of_expiration": { + "type": 6, + "value": 1690237331737 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11786,9 +14950,18 @@ "original_amount": 338652, "total_amount": 338652, "id": 1690273510959, - "date_created": { "type": 6, "value": 1690273510959 }, - "date_last_updated": { "type": 6, "value": 1690273510959 }, - "date_of_expiration": { "type": 6, "value": 1690273510959 }, + "date_created": { + "type": 6, + "value": 1690273510959 + }, + "date_last_updated": { + "type": 6, + "value": 1690273510959 + }, + "date_of_expiration": { + "type": 6, + "value": 1690273510959 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11807,7 +14980,13 @@ "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695207854014 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695207854014 + } + }, "revision": "lnt02qqy00ksoohxank657xo", "revision_nr": 1, "created": 1697467086828, @@ -11869,8 +15048,14 @@ "total_amount": 450, "id": 1692615854014, "history_id": 1692615854014, - "date_created": { "type": 6, "value": 1692615854014 }, - "date_last_updated": { "type": 6, "value": 1692615854014 }, + "date_created": { + "type": 6, + "value": 1692615854014 + }, + "date_last_updated": { + "type": 6, + "value": 1692615854014 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -11939,9 +15124,18 @@ "total_amount": 3384929, "id": "1693771767267", "history_id": "1693771767267", - "date_created": { "type": 6, "value": 1693771767267 }, - "date_last_updated": { "type": 6, "value": 1693771767267 }, - "date_of_expiration": { "type": 6, "value": 1696363767265 }, + "date_created": { + "type": 6, + "value": 1693771767267 + }, + "date_last_updated": { + "type": 6, + "value": 1693771767267 + }, + "date_of_expiration": { + "type": 6, + "value": 1696363767265 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12011,9 +15205,18 @@ "total_amount": 3452627.58, "id": "1696371493428", "history_id": "1696371493428", - "date_created": { "type": 6, "value": 1696371493428 }, - "date_last_updated": { "type": 6, "value": 1696371493428 }, - "date_of_expiration": { "type": 6, "value": 1696371493428 }, + "date_created": { + "type": 6, + "value": 1696371493428 + }, + "date_last_updated": { + "type": 6, + "value": 1696371493428 + }, + "date_of_expiration": { + "type": 6, + "value": 1696371493428 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -12083,9 +15286,18 @@ "total_amount": 3452627.58, "id": "1696371493371", "history_id": "1696371493371", - "date_created": { "type": 6, "value": 1696371493371 }, - "date_last_updated": { "type": 6, "value": 1696371493371 }, - "date_of_expiration": { "type": 6, "value": 1696371493371 }, + "date_created": { + "type": 6, + "value": 1696371493371 + }, + "date_last_updated": { + "type": 6, + "value": 1696371493371 + }, + "date_of_expiration": { + "type": 6, + "value": 1696371493371 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12155,9 +15367,18 @@ "total_amount": 7624011, "id": "1696459483900", "history_id": "1696459483900", - "date_created": { "type": 6, "value": 1696459483900 }, - "date_last_updated": { "type": 6, "value": 1696459483900 }, - "date_of_expiration": { "type": 6, "value": 1699137883861 }, + "date_created": { + "type": 6, + "value": 1696459483900 + }, + "date_last_updated": { + "type": 6, + "value": 1696459483900 + }, + "date_of_expiration": { + "type": 6, + "value": 1699137883861 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12175,7 +15396,13 @@ "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699222159538 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699222159538 + } + }, "revision": "lnt02qs200ldoohxbxskej5v", "revision_nr": 1, "created": 1697467086867, @@ -12238,8 +15465,14 @@ "total_amount": 1000, "id": "1696630159545", "history_id": "1696630159545", - "date_created": { "type": 6, "value": 1696630159545 }, - "date_last_updated": { "type": 6, "value": 1696630159545 }, + "date_created": { + "type": 6, + "value": 1696630159545 + }, + "date_last_updated": { + "type": 6, + "value": 1696630159545 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -12255,7 +15488,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history", - "content": { "type": 1, "value": {}, "revision": "lnt02qm000hpoohxgefs1b9w", "revision_nr": 1, "created": 1697467086878, "modified": 1697467086878 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qm000hpoohxgefs1b9w", + "revision_nr": 1, + "created": 1697467086878, + "modified": 1697467086878 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/description", @@ -12272,7 +15512,11 @@ "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 10.02 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 10.02 + }, "revision": "lnt02qsg00lnoohx6h6h4zvy", "revision_nr": 1, "created": 1697467086881, @@ -12281,7 +15525,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qsg00lmoohxadc34o6l", "revision_nr": 1, "created": 1697467086883, "modified": 1697467086883 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qsg00lmoohxadc34o6l", + "revision_nr": 1, + "created": 1697467086883, + "modified": 1697467086883 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939", @@ -12294,7 +15545,10 @@ "total_amount": 511.02, "installments": 1, "installment_amount": 511.02, - "date_created": { "type": 6, "value": 1684399661939 }, + "date_created": { + "type": 6, + "value": 1684399661939 + }, "history_id": 1684399661939, "currency_id": "BRL", "status": "paid" @@ -12320,7 +15574,11 @@ "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 9.98 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 9.98 + }, "revision": "lnt02qsm00lroohxhze4am9o", "revision_nr": 1, "created": 1697467086888, @@ -12329,7 +15587,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qsm00lqoohxbuso9i2g", "revision_nr": 1, "created": 1697467086890, "modified": 1697467086890 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qsm00lqoohxbuso9i2g", + "revision_nr": 1, + "created": 1697467086890, + "modified": 1697467086890 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872", @@ -12342,7 +15607,10 @@ "total_amount": 508.98, "installments": 1, "installment_amount": 508.98, - "date_created": { "type": 6, "value": 1684612673872 }, + "date_created": { + "type": 6, + "value": 1684612673872 + }, "history_id": 1684612673872, "currency_id": "BRL", "status": "paid" @@ -12355,17 +15623,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt02qse00ljoohxdhmwd8kp", "revision_nr": 1, "created": 1697467086893, "modified": 1697467086893 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qse00ljoohxdhmwd8kp", + "revision_nr": 1, + "created": 1697467086893, + "modified": 1697467086893 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt02qse00lioohx33qf6i19", "revision_nr": 1, "created": 1697467086894, "modified": 1697467086894 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qse00lioohx33qf6i19", + "revision_nr": 1, + "created": 1697467086894, + "modified": 1697467086894 + } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 0, "analysisRequested": { "type": 6, "value": 1684321757322 }, "lastReview": { "type": 6, "value": 1684329814101 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1684321757322 + }, + "lastReview": { + "type": 6, + "value": 1684329814101 + } + }, "revision": "lnt02qse00lhoohxeldghuy5", "revision_nr": 1, "created": 1697467086896, @@ -12376,7 +15669,16 @@ "path": "ivipcoin-db::__movement_wallet__/001345425233260977", "content": { "type": 1, - "value": { "dataModificacao": 1684091909123, "dateValidity": 1684091909123, "totalValue": 5846.89, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696820400000 } }, + "value": { + "dataModificacao": 1684091909123, + "dateValidity": 1684091909123, + "totalValue": 5846.89, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } + }, "revision": "lnt02qly00hmoohxea6bdsvc", "revision_nr": 1, "created": 1697467086897, @@ -12387,7 +15689,11 @@ "path": "ivipcoin-db::__movement_wallet__/002445768964969286/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "available": "100.00000000", "value": 20.09 }, + "value": { + "symbol": "BRL", + "available": "100.00000000", + "value": 20.09 + }, "revision": "lnt02qsy00luoohxgvo779ca", "revision_nr": 1, "created": 1697467086900, @@ -12396,7 +15702,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02qsy00ltoohx2cc1hfx0", "revision_nr": 1, "created": 1697467086903, "modified": 1697467086903 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qsy00ltoohx2cc1hfx0", + "revision_nr": 1, + "created": 1697467086903, + "modified": 1697467086903 + } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629/description", @@ -12411,7 +15724,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qt600lyoohx3llab8rk", "revision_nr": 1, "created": 1697467086908, "modified": 1697467086908 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qt600lyoohx3llab8rk", + "revision_nr": 1, + "created": 1697467086908, + "modified": 1697467086908 + } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629", @@ -12425,15 +15747,30 @@ "total_amount": 100, "history_id": 1684119457629, "id": 1684119457629, - "date_created": { "type": 6, "value": 1684119457629 }, - "date_last_updated": { "type": 6, "value": 1684119734913 }, - "date_of_expiration": { "type": 6, "value": 1686711457629 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684119734913 }, - "money_release_date": { "type": 6, "value": 1684119734913 }, + "date_created": { + "type": 6, + "value": 1684119457629 + }, + "date_last_updated": { + "type": 6, + "value": 1684119734913 + }, + "date_of_expiration": { + "type": 6, + "value": 1686711457629 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684119734913 + }, + "money_release_date": { + "type": 6, + "value": 1684119734913 + }, "money_release_status": "approved", "wasDebited": true }, @@ -12445,13 +15782,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history", - "content": { "type": 1, "value": {}, "revision": "lnt02qt300lvoohx0woo4kny", "revision_nr": 1, "created": 1697467086911, "modified": 1697467086911 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qt300lvoohx0woo4kny", + "revision_nr": 1, + "created": 1697467086911, + "modified": 1697467086911 + } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02qtb00lzoohx8ol60obx", "revision_nr": 1, "created": 1697467086912, @@ -12462,7 +15810,12 @@ "path": "ivipcoin-db::__movement_wallet__/002445768964969286", "content": { "type": 1, - "value": { "dataModificacao": 1684119427446, "dateValidity": 1684119427446, "totalValue": 20.09, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684119427446, + "dateValidity": 1684119427446, + "totalValue": 20.09, + "currencyType": "USD" + }, "revision": "lnt02qsx00lsoohx39fyfjfh", "revision_nr": 1, "created": 1697467086914, @@ -12473,7 +15826,11 @@ "path": "ivipcoin-db::__movement_wallet__/003757297582092533/balances/IVIP", "content": { "type": 1, - "value": { "available": "5324627.00000000", "symbol": "IVIP", "value": 1075.36 }, + "value": { + "available": "5324627.00000000", + "symbol": "IVIP", + "value": 1075.36 + }, "revision": "lnt02qtf00m2oohxb7166gnn", "revision_nr": 1, "created": 1697467086916, @@ -12482,7 +15839,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02qte00m1oohx8fz51ymf", "revision_nr": 1, "created": 1697467086918, "modified": 1697467086918 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qte00m1oohx8fz51ymf", + "revision_nr": 1, + "created": 1697467086918, + "modified": 1697467086918 + } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726/description", @@ -12497,7 +15861,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qtj00m6oohx079n5op0", "revision_nr": 1, "created": 1697467086922, "modified": 1697467086922 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qtj00m6oohx079n5op0", + "revision_nr": 1, + "created": 1697467086922, + "modified": 1697467086922 + } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726", @@ -12511,14 +15884,26 @@ "total_amount": 2000, "history_id": 1677798769726, "id": 1677798769726, - "date_created": { "type": 6, "value": 1677798769726 }, - "date_last_updated": { "type": 6, "value": 1678713365659 }, - "date_of_expiration": { "type": 6, "value": 1680390769726 }, + "date_created": { + "type": 6, + "value": 1677798769726 + }, + "date_last_updated": { + "type": 6, + "value": 1678713365659 + }, + "date_of_expiration": { + "type": 6, + "value": 1680390769726 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678713365659 }, + "money_release_date": { + "type": 6, + "value": 1678713365659 + }, "money_release_status": "rejected" }, "revision": "lnt02qti00m4oohx6yd64buf", @@ -12540,7 +15925,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qtp00m9oohx9verbizf", "revision_nr": 1, "created": 1697467086927, "modified": 1697467086927 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qtp00m9oohx9verbizf", + "revision_nr": 1, + "created": 1697467086927, + "modified": 1697467086927 + } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792", @@ -12554,14 +15948,26 @@ "total_amount": 1000, "history_id": 1678058459792, "id": 1678058459792, - "date_created": { "type": 6, "value": 1678058459792 }, - "date_last_updated": { "type": 6, "value": 1678714885155 }, - "date_of_expiration": { "type": 6, "value": 1680650459792 }, + "date_created": { + "type": 6, + "value": 1678058459792 + }, + "date_last_updated": { + "type": 6, + "value": 1678714885155 + }, + "date_of_expiration": { + "type": 6, + "value": 1680650459792 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678714885155 }, + "money_release_date": { + "type": 6, + "value": 1678714885155 + }, "money_release_status": "rejected" }, "revision": "lnt02qtn00m7oohxc4v6c4an", @@ -12583,7 +15989,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qtv00mcoohx40m0ejeo", "revision_nr": 1, "created": 1697467086933, "modified": 1697467086933 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qtv00mcoohx40m0ejeo", + "revision_nr": 1, + "created": 1697467086933, + "modified": 1697467086933 + } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058", @@ -12597,15 +16012,30 @@ "total_amount": 1000, "history_id": 1678527306058, "id": 1678527306058, - "date_created": { "type": 6, "value": 1678527306058 }, - "date_last_updated": { "type": 6, "value": 1678544524146 }, - "date_of_expiration": { "type": 6, "value": 1681119306058 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678544524146 }, - "money_release_date": { "type": 6, "value": 1678544524146 }, + "date_created": { + "type": 6, + "value": 1678527306058 + }, + "date_last_updated": { + "type": 6, + "value": 1678544524146 + }, + "date_of_expiration": { + "type": 6, + "value": 1681119306058 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678544524146 + }, + "money_release_date": { + "type": 6, + "value": 1678544524146 + }, "money_release_status": "approved", "wasDebited": true }, @@ -12651,9 +16081,18 @@ "original_amount": 5325627, "total_amount": 5325627, "id": 1679908062539, - "date_created": { "type": 6, "value": 1679908062539 }, - "date_last_updated": { "type": 6, "value": 1679908062539 }, - "date_of_expiration": { "type": 6, "value": 1679908062539 }, + "date_created": { + "type": 6, + "value": 1679908062539 + }, + "date_last_updated": { + "type": 6, + "value": 1679908062539 + }, + "date_of_expiration": { + "type": 6, + "value": 1679908062539 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12714,9 +16153,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687109837625, - "date_created": { "type": 6, "value": 1687109837625 }, - "date_last_updated": { "type": 6, "value": 1687109837625 }, - "date_of_expiration": { "type": 6, "value": 1702921037625 }, + "date_created": { + "type": 6, + "value": 1687109837625 + }, + "date_last_updated": { + "type": 6, + "value": 1687109837625 + }, + "date_of_expiration": { + "type": 6, + "value": 1702921037625 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12732,13 +16180,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history", - "content": { "type": 1, "value": {}, "revision": "lnt02qti00m3oohxc152fv9q", "revision_nr": 1, "created": 1697467086945, "modified": 1697467086945 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qti00m3oohxc152fv9q", + "revision_nr": 1, + "created": 1697467086945, + "modified": 1697467086945 + } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02qu900mioohx1rdcdwil", "revision_nr": 1, "created": 1697467086947, @@ -12754,7 +16213,10 @@ "dateValidity": 1678995120507, "totalValue": 249.76613748285868, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696129200000 } + "balancesModificacao": { + "type": 6, + "value": 1696129200000 + } }, "revision": "lnt02qte00m0oohxea137lqh", "revision_nr": 1, @@ -12766,7 +16228,14 @@ "path": "ivipcoin-db::__movement_wallet__/005753000686812060", "content": { "type": 1, - "value": { "dataModificacao": 1678127212147, "dateValidity": 1678325697693, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678127212147, + "dateValidity": 1678325697693, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02qud00mjoohx6gn101lc", "revision_nr": 1, "created": 1697467086950, @@ -12777,7 +16246,11 @@ "path": "ivipcoin-db::__movement_wallet__/007219693774253022/balances/BRL", "content": { "type": 1, - "value": { "available": "150.00000000", "symbol": "BRL", "value": 29.27 }, + "value": { + "available": "150.00000000", + "symbol": "BRL", + "value": 29.27 + }, "revision": "lnt02que00mmoohx0hwb1uas", "revision_nr": 1, "created": 1697467086952, @@ -12786,7 +16259,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02que00mloohxdcjrd2h9", "revision_nr": 1, "created": 1697467086954, "modified": 1697467086954 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02que00mloohxdcjrd2h9", + "revision_nr": 1, + "created": 1697467086954, + "modified": 1697467086954 + } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365/description", @@ -12801,7 +16281,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02quk00mqoohxazd2eueo", "revision_nr": 1, "created": 1697467086958, "modified": 1697467086958 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02quk00mqoohxazd2eueo", + "revision_nr": 1, + "created": 1697467086958, + "modified": 1697467086958 + } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365", @@ -12815,14 +16304,26 @@ "total_amount": 100, "history_id": 1689373938365, "id": 1689373938365, - "date_created": { "type": 6, "value": 1689373938365 }, - "date_last_updated": { "type": 6, "value": 1690407661153 }, - "date_of_expiration": { "type": 6, "value": 1691965938365 }, + "date_created": { + "type": 6, + "value": 1689373938365 + }, + "date_last_updated": { + "type": 6, + "value": 1690407661153 + }, + "date_of_expiration": { + "type": 6, + "value": 1691965938365 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1690407661153 }, + "money_release_date": { + "type": 6, + "value": 1690407661153 + }, "money_release_status": "cancelled", "wasDebited": true }, @@ -12845,7 +16346,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02quq00mtoohx0gjeau5s", "revision_nr": 1, "created": 1697467086964, "modified": 1697467086964 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02quq00mtoohx0gjeau5s", + "revision_nr": 1, + "created": 1697467086964, + "modified": 1697467086964 + } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118", @@ -12859,14 +16369,26 @@ "total_amount": 130, "history_id": 1689719003118, "id": 1689719003118, - "date_created": { "type": 6, "value": 1689719003118 }, - "date_last_updated": { "type": 6, "value": 1690407636264 }, - "date_of_expiration": { "type": 6, "value": 1692311003118 }, + "date_created": { + "type": 6, + "value": 1689719003118 + }, + "date_last_updated": { + "type": 6, + "value": 1690407636264 + }, + "date_of_expiration": { + "type": 6, + "value": 1692311003118 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1690407636264 }, + "money_release_date": { + "type": 6, + "value": 1690407636264 + }, "money_release_status": "cancelled", "wasDebited": true }, @@ -12880,7 +16402,13 @@ "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692808041978 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692808041978 + } + }, "revision": "lnt02quu00mvoohxdplu1x4z", "revision_nr": 1, "created": 1697467086967, @@ -12942,16 +16470,28 @@ "total_amount": 150, "id": 1690216041978, "history_id": 1690216041978, - "date_created": { "type": 6, "value": 1690216041978 }, - "date_last_updated": { "type": 6, "value": 1690219390794 }, + "date_created": { + "type": 6, + "value": 1690216041978 + }, + "date_last_updated": { + "type": 6, + "value": 1690219390794 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1690219390794 }, - "money_release_date": { "type": 6, "value": 1690219390794 }, + "date_approved": { + "type": 6, + "value": 1690219390794 + }, + "money_release_date": { + "type": 6, + "value": 1690219390794 + }, "money_release_status": "approved", "wasDebited": true }, @@ -12963,13 +16503,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history", - "content": { "type": 1, "value": {}, "revision": "lnt02qui00mnoohxaalofk1x", "revision_nr": 1, "created": 1697467086976, "modified": 1697467086976 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qui00mnoohxaalofk1x", + "revision_nr": 1, + "created": 1697467086976, + "modified": 1697467086976 + } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02qv400mzoohx0t647zgo", "revision_nr": 1, "created": 1697467086978, @@ -12980,7 +16531,16 @@ "path": "ivipcoin-db::__movement_wallet__/007219693774253022", "content": { "type": 1, - "value": { "dataModificacao": 1689373828234, "dateValidity": 1689373828234, "totalValue": 0, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697252400000 } }, + "value": { + "dataModificacao": 1689373828234, + "dateValidity": 1689373828234, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } + }, "revision": "lnt02que00mkoohx49ls1fhp", "revision_nr": 1, "created": 1697467086980, @@ -12991,7 +16551,14 @@ "path": "ivipcoin-db::__movement_wallet__/007971641402707341", "content": { "type": 1, - "value": { "dataModificacao": 1678227735051, "dateValidity": 1678242135085, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678227735051, + "dateValidity": 1678242135085, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02qv800n0oohx56ew0l7u", "revision_nr": 1, "created": 1697467086981, @@ -13002,7 +16569,14 @@ "path": "ivipcoin-db::__movement_wallet__/010022330876236384", "content": { "type": 1, - "value": { "dataModificacao": 1677760347570, "dateValidity": 1677760347570, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677760347570, + "dateValidity": 1677760347570, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02qv900n1oohxhapd7buh", "revision_nr": 1, "created": 1697467086983, @@ -13022,7 +16596,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qvd00n6oohx7ef1270c", "revision_nr": 1, "created": 1697467086988, "modified": 1697467086988 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qvd00n6oohx7ef1270c", + "revision_nr": 1, + "created": 1697467086988, + "modified": 1697467086988 + } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055", @@ -13036,15 +16619,30 @@ "total_amount": 507, "history_id": 1684424340055, "id": 1684424340055, - "date_created": { "type": 6, "value": 1684424340055 }, - "date_last_updated": { "type": 6, "value": 1684429370415 }, - "date_of_expiration": { "type": 6, "value": 1687016340055 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684429370415 }, - "money_release_date": { "type": 6, "value": 1684429370415 }, + "date_created": { + "type": 6, + "value": 1684424340055 + }, + "date_last_updated": { + "type": 6, + "value": 1684429370415 + }, + "date_of_expiration": { + "type": 6, + "value": 1687016340055 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684429370415 + }, + "money_release_date": { + "type": 6, + "value": 1684429370415 + }, "money_release_status": "approved", "wasDebited": true }, @@ -13067,7 +16665,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qvk00n9oohxbrs57nyl", "revision_nr": 1, "created": 1697467086994, "modified": 1697467086994 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qvk00n9oohxbrs57nyl", + "revision_nr": 1, + "created": 1697467086994, + "modified": 1697467086994 + } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683", @@ -13081,15 +16688,30 @@ "total_amount": 1093, "history_id": 1684539875683, "id": 1684539875683, - "date_created": { "type": 6, "value": 1684539875683 }, - "date_last_updated": { "type": 6, "value": 1684540637031 }, - "date_of_expiration": { "type": 6, "value": 1687131875683 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684540637031 }, - "money_release_date": { "type": 6, "value": 1684540637031 }, + "date_created": { + "type": 6, + "value": 1684539875683 + }, + "date_last_updated": { + "type": 6, + "value": 1684540637031 + }, + "date_of_expiration": { + "type": 6, + "value": 1687131875683 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684540637031 + }, + "money_release_date": { + "type": 6, + "value": 1684540637031 + }, "money_release_status": "approved", "wasDebited": true }, @@ -13135,9 +16757,18 @@ "original_amount": 7793170, "total_amount": 7793170, "id": 1684625025298, - "date_created": { "type": 6, "value": 1684625025298 }, - "date_last_updated": { "type": 6, "value": 1684625025298 }, - "date_of_expiration": { "type": 6, "value": 1684625025298 }, + "date_created": { + "type": 6, + "value": 1684625025298 + }, + "date_last_updated": { + "type": 6, + "value": 1684625025298 + }, + "date_of_expiration": { + "type": 6, + "value": 1684625025298 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13165,7 +16796,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qvt00neoohxao9g65uw", "revision_nr": 1, "created": 1697467087003, "modified": 1697467087003 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qvt00neoohxao9g65uw", + "revision_nr": 1, + "created": 1697467087003, + "modified": 1697467087003 + } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404", @@ -13179,15 +16819,30 @@ "total_amount": 5588008, "history_id": 1685465338404, "id": 1685465338404, - "date_created": { "type": 6, "value": 1685465338404 }, - "date_last_updated": { "type": 6, "value": 1685472203347 }, - "date_of_expiration": { "type": 6, "value": 1685465338404 }, + "date_created": { + "type": 6, + "value": 1685465338404 + }, + "date_last_updated": { + "type": 6, + "value": 1685472203347 + }, + "date_of_expiration": { + "type": 6, + "value": 1685465338404 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1685472203347 }, - "money_release_date": { "type": 6, "value": 1685472203347 }, + "date_approved": { + "type": 6, + "value": 1685472203347 + }, + "money_release_date": { + "type": 6, + "value": 1685472203347 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -13243,9 +16898,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685720288992, - "date_created": { "type": 6, "value": 1685720288992 }, - "date_last_updated": { "type": 6, "value": 1685720288992 }, - "date_of_expiration": { "type": 6, "value": 1701531488992 }, + "date_created": { + "type": 6, + "value": 1685720288992 + }, + "date_last_updated": { + "type": 6, + "value": 1685720288992 + }, + "date_of_expiration": { + "type": 6, + "value": 1701531488992 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13305,9 +16969,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685720363618, - "date_created": { "type": 6, "value": 1685720363618 }, - "date_last_updated": { "type": 6, "value": 1685720363618 }, - "date_of_expiration": { "type": 6, "value": 1688312363618 }, + "date_created": { + "type": 6, + "value": 1685720363618 + }, + "date_last_updated": { + "type": 6, + "value": 1685720363618 + }, + "date_of_expiration": { + "type": 6, + "value": 1688312363618 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13367,9 +17040,18 @@ "original_amount": 1020, "total_amount": 1020, "id": 1688400602023, - "date_created": { "type": 6, "value": 1688400602023 }, - "date_last_updated": { "type": 6, "value": 1688400602023 }, - "date_of_expiration": { "type": 6, "value": 1688400602023 }, + "date_created": { + "type": 6, + "value": 1688400602023 + }, + "date_last_updated": { + "type": 6, + "value": 1688400602023 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400602023 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13430,9 +17112,18 @@ "original_amount": 2154096, "total_amount": 2154096, "id": 1688595538475, - "date_created": { "type": 6, "value": 1688595538475 }, - "date_last_updated": { "type": 6, "value": 1688595538475 }, - "date_of_expiration": { "type": 6, "value": 1691273938475 }, + "date_created": { + "type": 6, + "value": 1688595538475 + }, + "date_last_updated": { + "type": 6, + "value": 1688595538475 + }, + "date_of_expiration": { + "type": 6, + "value": 1691273938475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13501,9 +17192,18 @@ "total_amount": 2197177.92, "id": 1691274110792, "history_id": 1691274110792, - "date_created": { "type": 6, "value": 1691274110792 }, - "date_last_updated": { "type": 6, "value": 1691274110792 }, - "date_of_expiration": { "type": 6, "value": 1691274110792 }, + "date_created": { + "type": 6, + "value": 1691274110792 + }, + "date_last_updated": { + "type": 6, + "value": 1691274110792 + }, + "date_of_expiration": { + "type": 6, + "value": 1691274110792 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13543,7 +17243,11 @@ "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 36290.1735 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 36290.1735 + }, "revision": "lnt02qwt00o0oohxed5qeqzt", "revision_nr": 1, "created": 1697467087039, @@ -13552,7 +17256,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qwt00nzoohx0xcdah0e", "revision_nr": 1, "created": 1697467087042, "modified": 1697467087042 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qwt00nzoohx0xcdah0e", + "revision_nr": 1, + "created": 1697467087042, + "modified": 1697467087042 + } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details", @@ -13586,16 +17297,28 @@ "total_amount": 1209672.45, "id": 1691439593377, "history_id": 1691439593377, - "date_created": { "type": 6, "value": 1691439593377 }, - "date_last_updated": { "type": 6, "value": 1692191601115 }, - "date_of_expiration": { "type": 6, "value": 1691439593377 }, + "date_created": { + "type": 6, + "value": 1691439593377 + }, + "date_last_updated": { + "type": 6, + "value": 1692191601115 + }, + "date_of_expiration": { + "type": 6, + "value": 1691439593377 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_amount", - "money_release_date": { "type": 6, "value": 1692191601115 }, + "money_release_date": { + "type": 6, + "value": 1692191601115 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -13631,7 +17354,11 @@ "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 36184.977 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 36184.977 + }, "revision": "lnt02qx500o6oohx53frfk38", "revision_nr": 1, "created": 1697467087051, @@ -13640,7 +17367,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qx500o5oohxd0ji91sj", "revision_nr": 1, "created": 1697467087053, "modified": 1697467087053 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qx500o5oohxd0ji91sj", + "revision_nr": 1, + "created": 1697467087053, + "modified": 1697467087053 + } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details", @@ -13674,16 +17408,28 @@ "total_amount": 1206165.9, "id": 1691439992266, "history_id": 1691439992266, - "date_created": { "type": 6, "value": 1691439992266 }, - "date_last_updated": { "type": 6, "value": 1692191577715 }, - "date_of_expiration": { "type": 6, "value": 1691439992266 }, + "date_created": { + "type": 6, + "value": 1691439992266 + }, + "date_last_updated": { + "type": 6, + "value": 1692191577715 + }, + "date_of_expiration": { + "type": 6, + "value": 1691439992266 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_amount", - "money_release_date": { "type": 6, "value": 1692191577715 }, + "money_release_date": { + "type": 6, + "value": 1692191577715 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -13719,7 +17465,11 @@ "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 65395.38 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 65395.38 + }, "revision": "lnt02qxh00ocoohx5gnib70b", "revision_nr": 1, "created": 1697467087063, @@ -13728,7 +17478,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02qxh00oboohx4mt1fv7r", "revision_nr": 1, "created": 1697467087065, "modified": 1697467087065 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02qxh00oboohx4mt1fv7r", + "revision_nr": 1, + "created": 1697467087065, + "modified": 1697467087065 + } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details", @@ -13762,17 +17519,32 @@ "total_amount": 2179846, "id": 1691447884361, "history_id": 1691447884361, - "date_created": { "type": 6, "value": 1691447884361 }, - "date_last_updated": { "type": 6, "value": 1691501288315 }, - "date_of_expiration": { "type": 6, "value": 1691447884361 }, + "date_created": { + "type": 6, + "value": 1691447884361 + }, + "date_last_updated": { + "type": 6, + "value": 1691501288315 + }, + "date_of_expiration": { + "type": 6, + "value": 1691447884361 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1691501288315 }, - "money_release_date": { "type": 6, "value": 1691501288315 }, + "date_approved": { + "type": 6, + "value": 1691501288315 + }, + "money_release_date": { + "type": 6, + "value": 1691501288315 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -13784,13 +17556,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history", - "content": { "type": 1, "value": {}, "revision": "lnt02qvb00n3oohxdrtu1119", "revision_nr": 1, "created": 1697467087071, "modified": 1697467087071 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qvb00n3oohxdrtu1119", + "revision_nr": 1, + "created": 1697467087071, + "modified": 1697467087071 + } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02qxr00odoohx7le3etgx", "revision_nr": 1, "created": 1697467087073, @@ -13807,7 +17590,10 @@ "balances": {}, "totalValue": 4.914821489351172, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696561200000 } + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } }, "revision": "lnt02qvb00n2oohxcvwq1gs9", "revision_nr": 1, @@ -13825,7 +17611,10 @@ "balances": {}, "history": {}, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696474800000 } + "balancesModificacao": { + "type": 6, + "value": 1696474800000 + } }, "revision": "lnt02qxv00oeoohx0e3vgjf0", "revision_nr": 1, @@ -13846,7 +17635,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qxz00ojoohx6gcv3ke6", "revision_nr": 1, "created": 1697467087080, "modified": 1697467087080 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qxz00ojoohx6gcv3ke6", + "revision_nr": 1, + "created": 1697467087080, + "modified": 1697467087080 + } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384", @@ -13860,15 +17658,30 @@ "total_amount": 50, "history_id": 1678555308384, "id": 1678555308384, - "date_created": { "type": 6, "value": 1678555308384 }, - "date_last_updated": { "type": 6, "value": 1678631722207 }, - "date_of_expiration": { "type": 6, "value": 1681147308384 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678631722207 }, - "money_release_date": { "type": 6, "value": 1678631722207 }, + "date_created": { + "type": 6, + "value": 1678555308384 + }, + "date_last_updated": { + "type": 6, + "value": 1678631722207 + }, + "date_of_expiration": { + "type": 6, + "value": 1681147308384 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678631722207 + }, + "money_release_date": { + "type": 6, + "value": 1678631722207 + }, "money_release_status": "approved", "wasDebited": true }, @@ -13914,9 +17727,18 @@ "original_amount": 291076, "total_amount": 291076, "id": 1679266899414, - "date_created": { "type": 6, "value": 1679266899414 }, - "date_last_updated": { "type": 6, "value": 1679266899414 }, - "date_of_expiration": { "type": 6, "value": 1679266899414 }, + "date_created": { + "type": 6, + "value": 1679266899414 + }, + "date_last_updated": { + "type": 6, + "value": 1679266899414 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266899414 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13977,9 +17799,18 @@ "original_amount": 291076, "total_amount": 291076, "id": 1685668294321, - "date_created": { "type": 6, "value": 1685668294321 }, - "date_last_updated": { "type": 6, "value": 1685668294321 }, - "date_of_expiration": { "type": 6, "value": 1748826694321 }, + "date_created": { + "type": 6, + "value": 1685668294321 + }, + "date_last_updated": { + "type": 6, + "value": 1685668294321 + }, + "date_of_expiration": { + "type": 6, + "value": 1748826694321 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13996,13 +17827,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history", - "content": { "type": 1, "value": {}, "revision": "lnt02qxx00ogoohx45no0h8k", "revision_nr": 1, "created": 1697467087094, "modified": 1697467087094 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qxx00ogoohx45no0h8k", + "revision_nr": 1, + "created": 1697467087094, + "modified": 1697467087094 + } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02qye00opoohx31avfw0w", "revision_nr": 1, "created": 1697467087095, @@ -14019,7 +17861,10 @@ "totalValue": 16.26, "currencyType": "USD", "balances": {}, - "balancesModificacao": { "type": 6, "value": 1696561200000 } + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } }, "revision": "lnt02qxx00ofoohxd41y1pqw", "revision_nr": 1, @@ -14031,7 +17876,11 @@ "path": "ivipcoin-db::__movement_wallet__/015094733487976298/balances/IVIP", "content": { "type": 1, - "value": { "available": "739882.02000000", "symbol": "IVIP", "value": 77.94 }, + "value": { + "available": "739882.02000000", + "symbol": "IVIP", + "value": 77.94 + }, "revision": "lnt02qyi00osoohx0olh1xup", "revision_nr": 1, "created": 1697467087100, @@ -14040,7 +17889,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02qyi00oroohx8z9cakrm", "revision_nr": 1, "created": 1697467087101, "modified": 1697467087101 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qyi00oroohx8z9cakrm", + "revision_nr": 1, + "created": 1697467087101, + "modified": 1697467087101 + } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531/description", @@ -14055,7 +17911,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02qyo00owoohx5r9d8wrl", "revision_nr": 1, "created": 1697467087106, "modified": 1697467087106 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02qyo00owoohx5r9d8wrl", + "revision_nr": 1, + "created": 1697467087106, + "modified": 1697467087106 + } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531", @@ -14069,15 +17934,30 @@ "total_amount": 150, "history_id": 1684102091531, "id": 1684102091531, - "date_created": { "type": 6, "value": 1684102091531 }, - "date_last_updated": { "type": 6, "value": 1684102990115 }, - "date_of_expiration": { "type": 6, "value": 1686694091531 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684102990115 }, - "money_release_date": { "type": 6, "value": 1684102990115 }, + "date_created": { + "type": 6, + "value": 1684102091531 + }, + "date_last_updated": { + "type": 6, + "value": 1684102990115 + }, + "date_of_expiration": { + "type": 6, + "value": 1686694091531 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684102990115 + }, + "money_release_date": { + "type": 6, + "value": 1684102990115 + }, "money_release_status": "approved", "wasDebited": true }, @@ -14123,9 +18003,18 @@ "original_amount": 730609, "total_amount": 730609, "id": 1684624257232, - "date_created": { "type": 6, "value": 1684624257232 }, - "date_last_updated": { "type": 6, "value": 1684624257232 }, - "date_of_expiration": { "type": 6, "value": 1684624257232 }, + "date_created": { + "type": 6, + "value": 1684624257232 + }, + "date_last_updated": { + "type": 6, + "value": 1684624257232 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624257232 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14186,9 +18075,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687113576960, - "date_created": { "type": 6, "value": 1687113576960 }, - "date_last_updated": { "type": 6, "value": 1687113576960 }, - "date_of_expiration": { "type": 6, "value": 1702924776960 }, + "date_created": { + "type": 6, + "value": 1687113576960 + }, + "date_last_updated": { + "type": 6, + "value": 1687113576960 + }, + "date_of_expiration": { + "type": 6, + "value": 1702924776960 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14249,9 +18147,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687113714689, - "date_created": { "type": 6, "value": 1687113714689 }, - "date_last_updated": { "type": 6, "value": 1687113714689 }, - "date_of_expiration": { "type": 6, "value": 1718736114689 }, + "date_created": { + "type": 6, + "value": 1687113714689 + }, + "date_last_updated": { + "type": 6, + "value": 1687113714689 + }, + "date_of_expiration": { + "type": 6, + "value": 1718736114689 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14311,9 +18218,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687113759469, - "date_created": { "type": 6, "value": 1687113759469 }, - "date_last_updated": { "type": 6, "value": 1687113759469 }, - "date_of_expiration": { "type": 6, "value": 1750272159469 }, + "date_created": { + "type": 6, + "value": 1687113759469 + }, + "date_last_updated": { + "type": 6, + "value": 1687113759469 + }, + "date_of_expiration": { + "type": 6, + "value": 1750272159469 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14373,9 +18289,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687313544564, - "date_created": { "type": 6, "value": 1687313544564 }, - "date_last_updated": { "type": 6, "value": 1687313544564 }, - "date_of_expiration": { "type": 6, "value": 1750471944564 }, + "date_created": { + "type": 6, + "value": 1687313544564 + }, + "date_last_updated": { + "type": 6, + "value": 1687313544564 + }, + "date_of_expiration": { + "type": 6, + "value": 1750471944564 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14435,9 +18360,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687313588225, - "date_created": { "type": 6, "value": 1687313588225 }, - "date_last_updated": { "type": 6, "value": 1687313588225 }, - "date_of_expiration": { "type": 6, "value": 1718935988225 }, + "date_created": { + "type": 6, + "value": 1687313588225 + }, + "date_last_updated": { + "type": 6, + "value": 1687313588225 + }, + "date_of_expiration": { + "type": 6, + "value": 1718935988225 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14497,9 +18431,18 @@ "original_amount": 713651, "total_amount": 713651, "id": 1688595606369, - "date_created": { "type": 6, "value": 1688595606369 }, - "date_last_updated": { "type": 6, "value": 1688595606369 }, - "date_of_expiration": { "type": 6, "value": 1691274006369 }, + "date_created": { + "type": 6, + "value": 1688595606369 + }, + "date_last_updated": { + "type": 6, + "value": 1688595606369 + }, + "date_of_expiration": { + "type": 6, + "value": 1691274006369 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14568,9 +18511,18 @@ "total_amount": 727924.02, "id": 1691274110709, "history_id": 1691274110709, - "date_created": { "type": 6, "value": 1691274110709 }, - "date_last_updated": { "type": 6, "value": 1691274110709 }, - "date_of_expiration": { "type": 6, "value": 1691274110709 }, + "date_created": { + "type": 6, + "value": 1691274110709 + }, + "date_last_updated": { + "type": 6, + "value": 1691274110709 + }, + "date_of_expiration": { + "type": 6, + "value": 1691274110709 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14586,13 +18538,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history", - "content": { "type": 1, "value": {}, "revision": "lnt02qyl00otoohx6wmm55pe", "revision_nr": 1, "created": 1697467087160, "modified": 1697467087160 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02qyl00otoohx6wmm55pe", + "revision_nr": 1, + "created": 1697467087160, + "modified": 1697467087160 + } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02r0900ploohx7g8g7x7v", "revision_nr": 1, "created": 1697467087162, @@ -14603,7 +18566,16 @@ "path": "ivipcoin-db::__movement_wallet__/015094733487976298", "content": { "type": 1, - "value": { "dataModificacao": 1684102027321, "dateValidity": 1684102027322, "totalValue": 1.39, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697252400000 } }, + "value": { + "dataModificacao": 1684102027321, + "dateValidity": 1684102027322, + "totalValue": 1.39, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } + }, "revision": "lnt02qyi00oqoohx8ria4c2o", "revision_nr": 1, "created": 1697467087164, @@ -14614,7 +18586,11 @@ "path": "ivipcoin-db::__movement_wallet__/016159398553157178/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02r0c00pnoohx3urpbavr", "revision_nr": 1, "created": 1697467087166, @@ -14625,7 +18601,14 @@ "path": "ivipcoin-db::__movement_wallet__/016159398553157178", "content": { "type": 1, - "value": { "dataModificacao": 1688737390323, "dateValidity": 1688737390323, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1688737390323, + "dateValidity": 1688737390323, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02r0c00pmoohx8bp90jkf", "revision_nr": 1, "created": 1697467087168, @@ -14636,7 +18619,11 @@ "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "available": "0.00000000", "value": 0 }, + "value": { + "symbol": "BRL", + "available": "0.00000000", + "value": 0 + }, "revision": "lnt02r0g00pqoohx2k4s4geg", "revision_nr": 1, "created": 1697467087170, @@ -14647,7 +18634,11 @@ "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances/IVIP", "content": { "type": 1, - "value": { "symbol": "IVIP", "available": "0.00000000", "value": 0 }, + "value": { + "symbol": "IVIP", + "available": "0.00000000", + "value": 0 + }, "revision": "lnt02r0i00proohx78pd0sd3", "revision_nr": 1, "created": 1697467087173, @@ -14656,7 +18647,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02r0g00ppoohxbi1mc3r8", "revision_nr": 1, "created": 1697467087175, "modified": 1697467087175 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r0g00ppoohxbi1mc3r8", + "revision_nr": 1, + "created": 1697467087175, + "modified": 1697467087175 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992/description", @@ -14671,7 +18669,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r0p00pvoohxgv0rd57a", "revision_nr": 1, "created": 1697467087179, "modified": 1697467087179 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r0p00pvoohxgv0rd57a", + "revision_nr": 1, + "created": 1697467087179, + "modified": 1697467087179 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992", @@ -14685,14 +18692,26 @@ "total_amount": 1000, "history_id": 1684198299992, "id": 1684198299992, - "date_created": { "type": 6, "value": 1684198299992 }, - "date_last_updated": { "type": 6, "value": 1684558235747 }, - "date_of_expiration": { "type": 6, "value": 1686790299992 }, + "date_created": { + "type": 6, + "value": 1684198299992 + }, + "date_last_updated": { + "type": 6, + "value": 1684558235747 + }, + "date_of_expiration": { + "type": 6, + "value": 1686790299992 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1684558235747 }, + "money_release_date": { + "type": 6, + "value": 1684558235747 + }, "money_release_status": "rejected" }, "revision": "lnt02r0n00ptoohxdj6odyzn", @@ -14714,7 +18733,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r0v00pyoohx5memh6kq", "revision_nr": 1, "created": 1697467087185, "modified": 1697467087185 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r0v00pyoohx5memh6kq", + "revision_nr": 1, + "created": 1697467087185, + "modified": 1697467087185 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429", @@ -14728,15 +18756,30 @@ "total_amount": 1000, "history_id": 1684201414429, "id": 1684201414429, - "date_created": { "type": 6, "value": 1684201414429 }, - "date_last_updated": { "type": 6, "value": 1684246130715 }, - "date_of_expiration": { "type": 6, "value": 1686793414429 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684246130715 }, - "money_release_date": { "type": 6, "value": 1684246130715 }, + "date_created": { + "type": 6, + "value": 1684201414429 + }, + "date_last_updated": { + "type": 6, + "value": 1684246130715 + }, + "date_of_expiration": { + "type": 6, + "value": 1686793414429 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684246130715 + }, + "money_release_date": { + "type": 6, + "value": 1684246130715 + }, "money_release_status": "approved", "wasDebited": true }, @@ -14759,7 +18802,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r1100q1oohx2kkba2q2", "revision_nr": 1, "created": 1697467087191, "modified": 1697467087191 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r1100q1oohx2kkba2q2", + "revision_nr": 1, + "created": 1697467087191, + "modified": 1697467087191 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255", @@ -14773,15 +18825,30 @@ "total_amount": 600, "history_id": 1684440954255, "id": 1684440954255, - "date_created": { "type": 6, "value": 1684440954255 }, - "date_last_updated": { "type": 6, "value": 1684444155806 }, - "date_of_expiration": { "type": 6, "value": 1687032954255 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684444155806 }, - "money_release_date": { "type": 6, "value": 1684444155806 }, + "date_created": { + "type": 6, + "value": 1684440954255 + }, + "date_last_updated": { + "type": 6, + "value": 1684444155806 + }, + "date_of_expiration": { + "type": 6, + "value": 1687032954255 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684444155806 + }, + "money_release_date": { + "type": 6, + "value": 1684444155806 + }, "money_release_status": "approved", "wasDebited": true }, @@ -14827,9 +18894,18 @@ "original_amount": 7793170, "total_amount": 7793170, "id": 1684626826140, - "date_created": { "type": 6, "value": 1684626826140 }, - "date_last_updated": { "type": 6, "value": 1684626826140 }, - "date_of_expiration": { "type": 6, "value": 1684626826140 }, + "date_created": { + "type": 6, + "value": 1684626826140 + }, + "date_last_updated": { + "type": 6, + "value": 1684626826140 + }, + "date_of_expiration": { + "type": 6, + "value": 1684626826140 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14857,7 +18933,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r1b00q6oohxewk9hgsc", "revision_nr": 1, "created": 1697467087201, "modified": 1697467087201 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r1b00q6oohxewk9hgsc", + "revision_nr": 1, + "created": 1697467087201, + "modified": 1697467087201 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259", @@ -14871,9 +18956,18 @@ "total_amount": 788564, "history_id": 1685396913259, "id": 1685396913259, - "date_created": { "type": 6, "value": 1685396913259 }, - "date_last_updated": { "type": 6, "value": 1685396913259 }, - "date_of_expiration": { "type": 6, "value": 1685396913259 }, + "date_created": { + "type": 6, + "value": 1685396913259 + }, + "date_last_updated": { + "type": 6, + "value": 1685396913259 + }, + "date_of_expiration": { + "type": 6, + "value": 1685396913259 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -14898,7 +18992,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r1h00q9oohxgx2jc965", "revision_nr": 1, "created": 1697467087207, "modified": 1697467087207 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r1h00q9oohxgx2jc965", + "revision_nr": 1, + "created": 1697467087207, + "modified": 1697467087207 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106", @@ -14912,14 +19015,26 @@ "total_amount": 788564, "history_id": 1685470076106, "id": 1685470076106, - "date_created": { "type": 6, "value": 1685470076106 }, - "date_last_updated": { "type": 6, "value": 1685535131930 }, - "date_of_expiration": { "type": 6, "value": 1685470076106 }, + "date_created": { + "type": 6, + "value": 1685470076106 + }, + "date_last_updated": { + "type": 6, + "value": 1685535131930 + }, + "date_of_expiration": { + "type": 6, + "value": 1685470076106 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": { "type": 6, "value": 1685535131930 }, + "money_release_date": { + "type": 6, + "value": 1685535131930 + }, "money_release_status": "rejected" }, "revision": "lnt02r1f00q7oohx5vl8327k", @@ -14941,7 +19056,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r1n00qcoohxgjslhx2j", "revision_nr": 1, "created": 1697467087214, "modified": 1697467087214 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r1n00qcoohxgjslhx2j", + "revision_nr": 1, + "created": 1697467087214, + "modified": 1697467087214 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415", @@ -14955,15 +19079,30 @@ "total_amount": 7793170, "history_id": 1685470615415, "id": 1685470615415, - "date_created": { "type": 6, "value": 1685470615415 }, - "date_last_updated": { "type": 6, "value": 1685537125835 }, - "date_of_expiration": { "type": 6, "value": 1685470615415 }, + "date_created": { + "type": 6, + "value": 1685470615415 + }, + "date_last_updated": { + "type": 6, + "value": 1685537125835 + }, + "date_of_expiration": { + "type": 6, + "value": 1685470615415 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1685537125835 }, - "money_release_date": { "type": 6, "value": 1685537125835 }, + "date_approved": { + "type": 6, + "value": 1685537125835 + }, + "money_release_date": { + "type": 6, + "value": 1685537125835 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -14986,7 +19125,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r1u00qfoohx42lt90hd", "revision_nr": 1, "created": 1697467087220, "modified": 1697467087220 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r1u00qfoohx42lt90hd", + "revision_nr": 1, + "created": 1697467087220, + "modified": 1697467087220 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322", @@ -15000,14 +19148,26 @@ "total_amount": 7793170, "history_id": 1685537035322, "id": 1685537035322, - "date_created": { "type": 6, "value": 1685537035322 }, - "date_last_updated": { "type": 6, "value": 1685537068819 }, - "date_of_expiration": { "type": 6, "value": 1685537035322 }, + "date_created": { + "type": 6, + "value": 1685537035322 + }, + "date_last_updated": { + "type": 6, + "value": 1685537068819 + }, + "date_of_expiration": { + "type": 6, + "value": 1685537035322 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": { "type": 6, "value": 1685537068819 }, + "money_release_date": { + "type": 6, + "value": 1685537068819 + }, "money_release_status": "rejected" }, "revision": "lnt02r1s00qdoohxaiit5fup", @@ -15018,13 +19178,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history", - "content": { "type": 1, "value": {}, "revision": "lnt02r0n00psoohxd5jx735f", "revision_nr": 1, "created": 1697467087225, "modified": 1697467087225 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r0n00psoohxd5jx735f", + "revision_nr": 1, + "created": 1697467087225, + "modified": 1697467087225 + } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02r2100qgoohxc4227rz0", "revision_nr": 1, "created": 1697467087227, @@ -15035,7 +19206,12 @@ "path": "ivipcoin-db::__movement_wallet__/016475686934047440", "content": { "type": 1, - "value": { "dataModificacao": 1684198152404, "dateValidity": 1684198152404, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684198152404, + "dateValidity": 1684198152404, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02r0g00pooohx2dx7407i", "revision_nr": 1, "created": 1697467087229, @@ -15046,7 +19222,11 @@ "path": "ivipcoin-db::__movement_wallet__/017170382309708910/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02r2500qioohx88649nyg", "revision_nr": 1, "created": 1697467087231, @@ -15057,7 +19237,14 @@ "path": "ivipcoin-db::__movement_wallet__/017170382309708910", "content": { "type": 1, - "value": { "dataModificacao": 1685395419731, "dateValidity": 1685395419731, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1685395419731, + "dateValidity": 1685395419731, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02r2500qhoohx2xpvfhu2", "revision_nr": 1, "created": 1697467087233, @@ -15068,7 +19255,11 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/balances/IVIP", "content": { "type": 1, - "value": { "available": "0.74000000", "symbol": "IVIP", "value": 0.000077 }, + "value": { + "available": "0.74000000", + "symbol": "IVIP", + "value": 0.000077 + }, "revision": "lnt02r2900qloohx194regid", "revision_nr": 1, "created": 1697467087235, @@ -15077,7 +19268,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02r2900qkoohxcj9a3tmv", "revision_nr": 1, "created": 1697467087237, "modified": 1697467087237 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r2900qkoohxcj9a3tmv", + "revision_nr": 1, + "created": 1697467087237, + "modified": 1697467087237 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589/description", @@ -15092,7 +19290,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r2h00qpoohx1vbxc3xd", "revision_nr": 1, "created": 1697467087243, "modified": 1697467087243 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r2h00qpoohx1vbxc3xd", + "revision_nr": 1, + "created": 1697467087243, + "modified": 1697467087243 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589", @@ -15106,15 +19313,30 @@ "total_amount": 500, "history_id": 1683998693589, "id": 1683998693589, - "date_created": { "type": 6, "value": 1683998693589 }, - "date_last_updated": { "type": 6, "value": 1684000354399 }, - "date_of_expiration": { "type": 6, "value": 1686590693589 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684000354399 }, - "money_release_date": { "type": 6, "value": 1684000354399 }, + "date_created": { + "type": 6, + "value": 1683998693589 + }, + "date_last_updated": { + "type": 6, + "value": 1684000354399 + }, + "date_of_expiration": { + "type": 6, + "value": 1686590693589 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684000354399 + }, + "money_release_date": { + "type": 6, + "value": 1684000354399 + }, "money_release_status": "approved", "wasDebited": true }, @@ -15139,7 +19361,11 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt02r2p00quoohx2apodme3", "revision_nr": 1, "created": 1697467087251, @@ -15148,11 +19374,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02r2p00qtoohxcg8e7wwe", "revision_nr": 1, "created": 1697467087253, "modified": 1697467087253 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02r2p00qtoohxcg8e7wwe", + "revision_nr": 1, + "created": 1697467087253, + "modified": 1697467087253 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details", - "content": { "type": 1, "value": {}, "revision": "lnt02r2o00qsoohx90wdcicd", "revision_nr": 1, "created": 1697467087255, "modified": 1697467087255 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r2o00qsoohx90wdcicd", + "revision_nr": 1, + "created": 1697467087255, + "modified": 1697467087255 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388", @@ -15166,9 +19406,18 @@ "total_amount": 1100, "history_id": 1684003059388, "id": 1684003059388, - "date_created": { "type": 6, "value": 1684003059388 }, - "date_last_updated": { "type": 6, "value": 1684003059388 }, - "date_of_expiration": { "type": 6, "value": 1686595059388 }, + "date_created": { + "type": 6, + "value": 1684003059388 + }, + "date_last_updated": { + "type": 6, + "value": 1684003059388 + }, + "date_of_expiration": { + "type": 6, + "value": 1686595059388 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -15217,9 +19466,18 @@ "original_amount": 8106588, "total_amount": 8106588, "id": 1684018960001, - "date_created": { "type": 6, "value": 1684018960001 }, - "date_last_updated": { "type": 6, "value": 1684018960001 }, - "date_of_expiration": { "type": 6, "value": 1684018960001 }, + "date_created": { + "type": 6, + "value": 1684018960001 + }, + "date_last_updated": { + "type": 6, + "value": 1684018960001 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018960001 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15247,7 +19505,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r3300qzoohx3y9lg5db", "revision_nr": 1, "created": 1697467087265, "modified": 1697467087265 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r3300qzoohx3y9lg5db", + "revision_nr": 1, + "created": 1697467087265, + "modified": 1697467087265 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297", @@ -15261,15 +19528,30 @@ "total_amount": 100, "history_id": 1684106238297, "id": 1684106238297, - "date_created": { "type": 6, "value": 1684106238297 }, - "date_last_updated": { "type": 6, "value": 1684239280222 }, - "date_of_expiration": { "type": 6, "value": 1686698238297 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684239280222 }, - "money_release_date": { "type": 6, "value": 1684239280222 }, + "date_created": { + "type": 6, + "value": 1684106238297 + }, + "date_last_updated": { + "type": 6, + "value": 1684239280222 + }, + "date_of_expiration": { + "type": 6, + "value": 1686698238297 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684239280222 + }, + "money_release_date": { + "type": 6, + "value": 1684239280222 + }, "money_release_status": "approved", "wasDebited": true }, @@ -15315,9 +19597,18 @@ "original_amount": 487804, "total_amount": 487804, "id": 1684631103258, - "date_created": { "type": 6, "value": 1684631103258 }, - "date_last_updated": { "type": 6, "value": 1684631103258 }, - "date_of_expiration": { "type": 6, "value": 1684631103258 }, + "date_created": { + "type": 6, + "value": 1684631103258 + }, + "date_last_updated": { + "type": 6, + "value": 1684631103258 + }, + "date_of_expiration": { + "type": 6, + "value": 1684631103258 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15345,7 +19636,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r3d00r4oohx5zci5965", "revision_nr": 1, "created": 1697467087276, "modified": 1697467087276 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r3d00r4oohx5zci5965", + "revision_nr": 1, + "created": 1697467087276, + "modified": 1697467087276 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760", @@ -15359,9 +19659,18 @@ "total_amount": 4297196, "history_id": 1685388293760, "id": 1685388293760, - "date_created": { "type": 6, "value": 1685388293760 }, - "date_last_updated": { "type": 6, "value": 1685388293760 }, - "date_of_expiration": { "type": 6, "value": 1685388293760 }, + "date_created": { + "type": 6, + "value": 1685388293760 + }, + "date_last_updated": { + "type": 6, + "value": 1685388293760 + }, + "date_of_expiration": { + "type": 6, + "value": 1685388293760 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -15386,7 +19695,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r3k00r7oohx4no5adt7", "revision_nr": 1, "created": 1697467087282, "modified": 1697467087282 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r3k00r7oohx4no5adt7", + "revision_nr": 1, + "created": 1697467087282, + "modified": 1697467087282 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726", @@ -15400,15 +19718,30 @@ "total_amount": 250, "history_id": 1686323712726, "id": 1686323712726, - "date_created": { "type": 6, "value": 1686323712726 }, - "date_last_updated": { "type": 6, "value": 1686591519918 }, - "date_of_expiration": { "type": 6, "value": 1688915712726 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1686591519918 }, - "money_release_date": { "type": 6, "value": 1686591519918 }, + "date_created": { + "type": 6, + "value": 1686323712726 + }, + "date_last_updated": { + "type": 6, + "value": 1686591519918 + }, + "date_of_expiration": { + "type": 6, + "value": 1688915712726 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686591519918 + }, + "money_release_date": { + "type": 6, + "value": 1686591519918 + }, "money_release_status": "approved", "wasDebited": true }, @@ -15468,9 +19801,18 @@ "total_amount": 220, "id": 1686591730981, "contract_id": "1684003059388", - "date_created": { "type": 6, "value": 1686591730981 }, - "date_last_updated": { "type": 6, "value": 1686591730981 }, - "date_of_expiration": { "type": 6, "value": 1686591730981 }, + "date_created": { + "type": 6, + "value": 1686591730981 + }, + "date_last_updated": { + "type": 6, + "value": 1686591730981 + }, + "date_of_expiration": { + "type": 6, + "value": 1686591730981 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -15497,7 +19839,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r3x00rdoohx8t6m2yg2", "revision_nr": 1, "created": 1697467087295, "modified": 1697467087295 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r3x00rdoohx8t6m2yg2", + "revision_nr": 1, + "created": 1697467087295, + "modified": 1697467087295 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645", @@ -15511,15 +19862,30 @@ "total_amount": 200, "history_id": 1688314787645, "id": 1688314787645, - "date_created": { "type": 6, "value": 1688314787645 }, - "date_last_updated": { "type": 6, "value": 1688315014952 }, - "date_of_expiration": { "type": 6, "value": 1690906787645 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1688315014952 }, - "money_release_date": { "type": 6, "value": 1688315014952 }, + "date_created": { + "type": 6, + "value": 1688314787645 + }, + "date_last_updated": { + "type": 6, + "value": 1688315014952 + }, + "date_of_expiration": { + "type": 6, + "value": 1690906787645 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1688315014952 + }, + "money_release_date": { + "type": 6, + "value": 1688315014952 + }, "money_release_status": "approved", "wasDebited": true }, @@ -15579,9 +19945,18 @@ "total_amount": 220, "id": 1688315152944, "contract_id": "1684003059388", - "date_created": { "type": 6, "value": 1688315152944 }, - "date_last_updated": { "type": 6, "value": 1688315152944 }, - "date_of_expiration": { "type": 6, "value": 1688315152944 }, + "date_created": { + "type": 6, + "value": 1688315152944 + }, + "date_last_updated": { + "type": 6, + "value": 1688315152944 + }, + "date_of_expiration": { + "type": 6, + "value": 1688315152944 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -15641,9 +20016,18 @@ "original_amount": 344736, "total_amount": 344736, "id": 1688426195717, - "date_created": { "type": 6, "value": 1688426195717 }, - "date_last_updated": { "type": 6, "value": 1688426195717 }, - "date_of_expiration": { "type": 6, "value": 1691104595717 }, + "date_created": { + "type": 6, + "value": 1688426195717 + }, + "date_last_updated": { + "type": 6, + "value": 1688426195717 + }, + "date_of_expiration": { + "type": 6, + "value": 1691104595717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15671,7 +20055,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r4i00rmoohxh3tbcbid", "revision_nr": 1, "created": 1697467087316, "modified": 1697467087316 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r4i00rmoohxh3tbcbid", + "revision_nr": 1, + "created": 1697467087316, + "modified": 1697467087316 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322", @@ -15685,15 +20078,30 @@ "total_amount": 430, "history_id": 1689095226322, "id": 1689095226322, - "date_created": { "type": 6, "value": 1689095226322 }, - "date_last_updated": { "type": 6, "value": 1689099370658 }, - "date_of_expiration": { "type": 6, "value": 1691687226322 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689099370658 }, - "money_release_date": { "type": 6, "value": 1689099370658 }, + "date_created": { + "type": 6, + "value": 1689095226322 + }, + "date_last_updated": { + "type": 6, + "value": 1689099370658 + }, + "date_of_expiration": { + "type": 6, + "value": 1691687226322 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689099370658 + }, + "money_release_date": { + "type": 6, + "value": 1689099370658 + }, "money_release_status": "approved", "wasDebited": true }, @@ -15739,9 +20147,18 @@ "original_amount": 284782, "total_amount": 284782, "id": 1689349679189, - "date_created": { "type": 6, "value": 1689349679189 }, - "date_last_updated": { "type": 6, "value": 1689349679189 }, - "date_of_expiration": { "type": 6, "value": 1689349679189 }, + "date_created": { + "type": 6, + "value": 1689349679189 + }, + "date_last_updated": { + "type": 6, + "value": 1689349679189 + }, + "date_of_expiration": { + "type": 6, + "value": 1689349679189 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15769,7 +20186,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r4s00rroohx08t1bvqd", "revision_nr": 1, "created": 1697467087326, "modified": 1697467087326 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r4s00rroohx08t1bvqd", + "revision_nr": 1, + "created": 1697467087326, + "modified": 1697467087326 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065", @@ -15783,15 +20209,30 @@ "total_amount": 284782, "history_id": 1689349971065, "id": 1689349971065, - "date_created": { "type": 6, "value": 1689349971065 }, - "date_last_updated": { "type": 6, "value": 1689350098919 }, - "date_of_expiration": { "type": 6, "value": 1689349971065 }, + "date_created": { + "type": 6, + "value": 1689349971065 + }, + "date_last_updated": { + "type": 6, + "value": 1689350098919 + }, + "date_of_expiration": { + "type": 6, + "value": 1689349971065 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1689350098919 }, - "money_release_date": { "type": 6, "value": 1689350098919 }, + "date_approved": { + "type": 6, + "value": 1689350098919 + }, + "money_release_date": { + "type": 6, + "value": 1689350098919 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -15847,9 +20288,18 @@ "original_amount": 500000, "total_amount": 500000, "id": 1689794977578, - "date_created": { "type": 6, "value": 1689794977578 }, - "date_last_updated": { "type": 6, "value": 1689794977578 }, - "date_of_expiration": { "type": 6, "value": 1752953377578 }, + "date_created": { + "type": 6, + "value": 1689794977578 + }, + "date_last_updated": { + "type": 6, + "value": 1689794977578 + }, + "date_of_expiration": { + "type": 6, + "value": 1752953377578 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15876,7 +20326,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02r5500rxoohxau5v2fb3", "revision_nr": 1, "created": 1697467087339, "modified": 1697467087339 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02r5500rxoohxau5v2fb3", + "revision_nr": 1, + "created": 1697467087339, + "modified": 1697467087339 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476", @@ -15890,9 +20349,18 @@ "total_amount": 345419, "history_id": 1689796488476, "id": 1689796488476, - "date_created": { "type": 6, "value": 1689796488476 }, - "date_last_updated": { "type": 6, "value": 1689796488476 }, - "date_of_expiration": { "type": 6, "value": 1689796488476 }, + "date_created": { + "type": 6, + "value": 1689796488476 + }, + "date_last_updated": { + "type": 6, + "value": 1689796488476 + }, + "date_of_expiration": { + "type": 6, + "value": 1689796488476 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -15959,9 +20427,18 @@ "total_amount": 1908099, "id": 1690130150231, "history_id": 1690130150231, - "date_created": { "type": 6, "value": 1690130150231 }, - "date_last_updated": { "type": 6, "value": 1690130150231 }, - "date_of_expiration": { "type": 6, "value": 1690130150231 }, + "date_created": { + "type": 6, + "value": 1690130150231 + }, + "date_last_updated": { + "type": 6, + "value": 1690130150231 + }, + "date_of_expiration": { + "type": 6, + "value": 1690130150231 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -16030,9 +20507,18 @@ "total_amount": 1829159, "id": 1690225429559, "history_id": 1690225429559, - "date_created": { "type": 6, "value": 1690225429559 }, - "date_last_updated": { "type": 6, "value": 1690225429559 }, - "date_of_expiration": { "type": 6, "value": 1690225429559 }, + "date_created": { + "type": 6, + "value": 1690225429559 + }, + "date_last_updated": { + "type": 6, + "value": 1690225429559 + }, + "date_of_expiration": { + "type": 6, + "value": 1690225429559 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -16101,9 +20587,18 @@ "total_amount": 351630.72000000003, "id": 1691104619419, "history_id": 1691104619419, - "date_created": { "type": 6, "value": 1691104619419 }, - "date_last_updated": { "type": 6, "value": 1691104619419 }, - "date_of_expiration": { "type": 6, "value": 1691104619419 }, + "date_created": { + "type": 6, + "value": 1691104619419 + }, + "date_last_updated": { + "type": 6, + "value": 1691104619419 + }, + "date_of_expiration": { + "type": 6, + "value": 1691104619419 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16172,9 +20667,18 @@ "total_amount": 4123251, "id": 1691246155706, "history_id": 1691246155706, - "date_created": { "type": 6, "value": 1691246155706 }, - "date_last_updated": { "type": 6, "value": 1691246155706 }, - "date_of_expiration": { "type": 6, "value": 1693924555705 }, + "date_created": { + "type": 6, + "value": 1691246155706 + }, + "date_last_updated": { + "type": 6, + "value": 1691246155706 + }, + "date_of_expiration": { + "type": 6, + "value": 1693924555705 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16192,7 +20696,13 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694714218629 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694714218629 + } + }, "revision": "lnt02r6a00sfoohx2p7pcmo7", "revision_nr": 1, "created": 1697467087380, @@ -16254,16 +20764,28 @@ "total_amount": 220, "id": 1692122218629, "history_id": 1692122218629, - "date_created": { "type": 6, "value": 1692122218629 }, - "date_last_updated": { "type": 6, "value": 1692123209335 }, + "date_created": { + "type": 6, + "value": 1692122218629 + }, + "date_last_updated": { + "type": 6, + "value": 1692123209335 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1692123209335 }, - "money_release_date": { "type": 6, "value": 1692123209335 }, + "date_approved": { + "type": 6, + "value": 1692123209335 + }, + "money_release_date": { + "type": 6, + "value": 1692123209335 + }, "money_release_status": "approved", "wasDebited": true }, @@ -16323,9 +20845,18 @@ "total_amount": 220, "id": 1692210661601, "contract_id": "1684003059388", - "date_created": { "type": 6, "value": 1692210661601 }, - "date_last_updated": { "type": 6, "value": 1692210661601 }, - "date_of_expiration": { "type": 6, "value": 1692210661601 }, + "date_created": { + "type": 6, + "value": 1692210661601 + }, + "date_last_updated": { + "type": 6, + "value": 1692210661601 + }, + "date_of_expiration": { + "type": 6, + "value": 1692210661601 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -16394,9 +20925,18 @@ "total_amount": 4205716.02, "id": "1693924607794", "history_id": "1693924607794", - "date_created": { "type": 6, "value": 1693924607794 }, - "date_last_updated": { "type": 6, "value": 1693924607794 }, - "date_of_expiration": { "type": 6, "value": 1693924607794 }, + "date_created": { + "type": 6, + "value": 1693924607794 + }, + "date_last_updated": { + "type": 6, + "value": 1693924607794 + }, + "date_of_expiration": { + "type": 6, + "value": 1693924607794 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16436,7 +20976,11 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 107596.65 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 107596.65 + }, "revision": "lnt02r7600svoohx9rywabol", "revision_nr": 1, "created": 1697467087412, @@ -16445,7 +20989,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02r7600suoohx4jfpdx61", "revision_nr": 1, "created": 1697467087415, "modified": 1697467087415 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02r7600suoohx4jfpdx61", + "revision_nr": 1, + "created": 1697467087415, + "modified": 1697467087415 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details", @@ -16479,17 +21030,32 @@ "total_amount": 3478958.35, "id": "1694019139358", "history_id": "1694019139358", - "date_created": { "type": 6, "value": 1694019139358 }, - "date_last_updated": { "type": 6, "value": 1694471002474 }, - "date_of_expiration": { "type": 6, "value": 1694019139358 }, + "date_created": { + "type": 6, + "value": 1694019139358 + }, + "date_last_updated": { + "type": 6, + "value": 1694471002474 + }, + "date_of_expiration": { + "type": 6, + "value": 1694019139358 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1694471002474 }, - "money_release_date": { "type": 6, "value": 1694471002474 }, + "date_approved": { + "type": 6, + "value": 1694471002474 + }, + "money_release_date": { + "type": 6, + "value": 1694471002474 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -16554,16 +21120,28 @@ "total_amount": 13248, "id": "1694530925477", "history_id": "1694530925477", - "date_created": { "type": 6, "value": 1694530925477 }, - "date_last_updated": { "type": 6, "value": 1696462319830 }, - "date_of_expiration": { "type": 6, "value": 1697122925475 }, + "date_created": { + "type": 6, + "value": 1694530925477 + }, + "date_last_updated": { + "type": 6, + "value": 1696462319830 + }, + "date_of_expiration": { + "type": 6, + "value": 1697122925475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1696462319830 }, + "money_release_date": { + "type": 6, + "value": 1696462319830 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -16577,7 +21155,13 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697151249010 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697151249010 + } + }, "revision": "lnt02r7n00t1oohxdn5540xq", "revision_nr": 1, "created": 1697467087429, @@ -16639,16 +21223,28 @@ "total_amount": 220, "id": "1694559249011", "history_id": "1694559249011", - "date_created": { "type": 6, "value": 1694559249011 }, - "date_last_updated": { "type": 6, "value": 1694560255083 }, + "date_created": { + "type": 6, + "value": 1694559249011 + }, + "date_last_updated": { + "type": 6, + "value": 1694560255083 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694560255083 }, - "money_release_date": { "type": 6, "value": 1694560255083 }, + "date_approved": { + "type": 6, + "value": 1694560255083 + }, + "money_release_date": { + "type": 6, + "value": 1694560255083 + }, "money_release_status": "approved", "wasDebited": true }, @@ -16715,9 +21311,18 @@ "total_amount": 220, "id": "1694560328887", "history_id": "1694560328887", - "date_created": { "type": 6, "value": 1694560328887 }, - "date_last_updated": { "type": 6, "value": 1694560328887 }, - "date_of_expiration": { "type": 6, "value": 1694560328887 }, + "date_created": { + "type": 6, + "value": 1694560328887 + }, + "date_last_updated": { + "type": 6, + "value": 1694560328887 + }, + "date_of_expiration": { + "type": 6, + "value": 1694560328887 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -16786,16 +21391,28 @@ "total_amount": 4583948, "id": "1695164776163", "history_id": "1695164776163", - "date_created": { "type": 6, "value": 1695164776163 }, - "date_last_updated": { "type": 6, "value": 1695678285837 }, - "date_of_expiration": { "type": 6, "value": 1710889576135 }, + "date_created": { + "type": 6, + "value": 1695164776163 + }, + "date_last_updated": { + "type": 6, + "value": 1695678285837 + }, + "date_of_expiration": { + "type": 6, + "value": 1710889576135 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1695678285837 }, + "money_release_date": { + "type": 6, + "value": 1695678285837 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -16861,9 +21478,18 @@ "total_amount": 4597196, "id": "1696551378554", "history_id": "1696551378554", - "date_created": { "type": 6, "value": 1696551378554 }, - "date_last_updated": { "type": 6, "value": 1696551378554 }, - "date_of_expiration": { "type": 6, "value": 1699229778481 }, + "date_created": { + "type": 6, + "value": 1696551378554 + }, + "date_last_updated": { + "type": 6, + "value": 1696551378554 + }, + "date_of_expiration": { + "type": 6, + "value": 1699229778481 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16881,7 +21507,13 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699792000740 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699792000740 + } + }, "revision": "lnt02r8p00tioohx9gmw1ykx", "revision_nr": 1, "created": 1697467087468, @@ -16944,16 +21576,28 @@ "total_amount": 220, "id": "1697200000740", "history_id": "1697200000740", - "date_created": { "type": 6, "value": 1697200000740 }, - "date_last_updated": { "type": 6, "value": 1697203184767 }, + "date_created": { + "type": 6, + "value": 1697200000740 + }, + "date_last_updated": { + "type": 6, + "value": 1697203184767 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1697203184767 }, - "money_release_date": { "type": 6, "value": 1697203184767 }, + "date_approved": { + "type": 6, + "value": 1697203184767 + }, + "money_release_date": { + "type": 6, + "value": 1697203184767 + }, "money_release_status": "approved", "wasDebited": true }, @@ -17021,9 +21665,18 @@ "total_amount": 220, "id": "1697203305717", "history_id": "1697203305717", - "date_created": { "type": 6, "value": 1697203305717 }, - "date_last_updated": { "type": 6, "value": 1697203305717 }, - "date_of_expiration": { "type": 6, "value": 1697203305717 }, + "date_created": { + "type": 6, + "value": 1697203305717 + }, + "date_last_updated": { + "type": 6, + "value": 1697203305717 + }, + "date_of_expiration": { + "type": 6, + "value": 1697203305717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -17039,7 +21692,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history", - "content": { "type": 1, "value": {}, "revision": "lnt02r2d00qmoohxdjzied7l", "revision_nr": 1, "created": 1697467087488, "modified": 1697467087488 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r2d00qmoohxdjzied7l", + "revision_nr": 1, + "created": 1697467087488, + "modified": 1697467087488 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/description", @@ -17056,7 +21716,11 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt02r9e00twoohxdqguhsii", "revision_nr": 1, "created": 1697467087493, @@ -17065,7 +21729,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02r9e00tvoohxfbhubl7y", "revision_nr": 1, "created": 1697467087495, "modified": 1697467087495 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02r9e00tvoohxfbhubl7y", + "revision_nr": 1, + "created": 1697467087495, + "modified": 1697467087495 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388", @@ -17078,7 +21749,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684003059388 }, + "date_created": { + "type": 6, + "value": 1684003059388 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid" @@ -17091,7 +21765,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt02r9c00tsoohx81134j5f", "revision_nr": 1, "created": 1697467087499, "modified": 1697467087499 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r9c00tsoohx81134j5f", + "revision_nr": 1, + "created": 1697467087499, + "modified": 1697467087499 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/description", @@ -17108,7 +21789,11 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt02r9p00u1oohxfakigzrd", "revision_nr": 1, "created": 1697467087504, @@ -17117,7 +21802,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02r9p00u0oohx41uzhfs4", "revision_nr": 1, "created": 1697467087506, "modified": 1697467087506 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02r9p00u0oohx41uzhfs4", + "revision_nr": 1, + "created": 1697467087506, + "modified": 1697467087506 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388", @@ -17130,7 +21822,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684003059388 }, + "date_created": { + "type": 6, + "value": 1684003059388 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid" @@ -17143,7 +21838,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt02r9n00txoohxc90a3vk7", "revision_nr": 1, "created": 1697467087510, "modified": 1697467087510 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r9n00txoohxc90a3vk7", + "revision_nr": 1, + "created": 1697467087510, + "modified": 1697467087510 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/description", @@ -17160,7 +21862,11 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt02ra000u6oohx52i8dzhb", "revision_nr": 1, "created": 1697467087514, @@ -17169,7 +21875,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02ra000u5oohx6w6e6lnb", "revision_nr": 1, "created": 1697467087517, "modified": 1697467087517 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02ra000u5oohx6w6e6lnb", + "revision_nr": 1, + "created": 1697467087517, + "modified": 1697467087517 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388", @@ -17182,7 +21895,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684003059388 }, + "date_created": { + "type": 6, + "value": 1684003059388 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid" @@ -17195,7 +21911,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt02r9y00u2oohx2ixc0ry2", "revision_nr": 1, "created": 1697467087521, "modified": 1697467087521 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r9y00u2oohx2ixc0ry2", + "revision_nr": 1, + "created": 1697467087521, + "modified": 1697467087521 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/description", @@ -17212,7 +21935,11 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt02rac00uboohxenih3094", "revision_nr": 1, "created": 1697467087526, @@ -17221,7 +21948,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rac00uaoohx0ir95jdd", "revision_nr": 1, "created": 1697467087528, "modified": 1697467087528 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rac00uaoohx0ir95jdd", + "revision_nr": 1, + "created": 1697467087528, + "modified": 1697467087528 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388", @@ -17234,11 +21968,17 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684003059388 }, + "date_created": { + "type": 6, + "value": 1684003059388 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694560328902 } + "date_last_updated": { + "type": 6, + "value": 1694560328902 + } }, "revision": "lnt02ra900u8oohx43og2ery", "revision_nr": 1, @@ -17248,7 +21988,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt02ra900u7oohx99aahh2d", "revision_nr": 1, "created": 1697467087533, "modified": 1697467087533 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ra900u7oohx99aahh2d", + "revision_nr": 1, + "created": 1697467087533, + "modified": 1697467087533 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/description", @@ -17265,7 +22012,11 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt02ran00ugoohx6tle0u6k", "revision_nr": 1, "created": 1697467087537, @@ -17274,7 +22025,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02ran00ufoohx347fey8b", "revision_nr": 1, "created": 1697467087539, "modified": 1697467087539 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02ran00ufoohx347fey8b", + "revision_nr": 1, + "created": 1697467087539, + "modified": 1697467087539 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388", @@ -17287,11 +22045,17 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684003059388 }, + "date_created": { + "type": 6, + "value": 1684003059388 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1697203305729 } + "date_last_updated": { + "type": 6, + "value": 1697203305729 + } }, "revision": "lnt02ral00udoohxdlo2eo53", "revision_nr": 1, @@ -17301,17 +22065,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310", - "content": { "type": 1, "value": {}, "revision": "lnt02ral00ucoohxfo1q1k4t", "revision_nr": 1, "created": 1697467087544, "modified": 1697467087544 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ral00ucoohxfo1q1k4t", + "revision_nr": 1, + "created": 1697467087544, + "modified": 1697467087544 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt02r9c00troohx8o2rcnx5", "revision_nr": 1, "created": 1697467087546, "modified": 1697467087546 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02r9c00troohx8o2rcnx5", + "revision_nr": 1, + "created": 1697467087546, + "modified": 1697467087546 + } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 400, "analysisRequested": { "type": 6, "value": 1684000813915 }, "lastReview": { "type": 6, "value": 1684000989928 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 400, + "analysisRequested": { + "type": 6, + "value": 1684000813915 + }, + "lastReview": { + "type": 6, + "value": 1684000989928 + } + }, "revision": "lnt02r9c00tqoohx6aln96qx", "revision_nr": 1, "created": 1697467087548, @@ -17322,7 +22111,16 @@ "path": "ivipcoin-db::__movement_wallet__/017609193050025062", "content": { "type": 1, - "value": { "dataModificacao": 1682097646342, "dateValidity": 1682097646342, "totalValue": 2544.535, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697338800000 } }, + "value": { + "dataModificacao": 1682097646342, + "dateValidity": 1682097646342, + "totalValue": 2544.535, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, "revision": "lnt02r2900qjoohxa75nebgj", "revision_nr": 1, "created": 1697467087550, @@ -17342,7 +22140,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rb500uloohx9yoa2ic2", "revision_nr": 1, "created": 1697467087555, "modified": 1697467087555 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rb500uloohx9yoa2ic2", + "revision_nr": 1, + "created": 1697467087555, + "modified": 1697467087555 + } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392", @@ -17356,15 +22163,30 @@ "total_amount": 15000, "history_id": 1684943727392, "id": 1684943727392, - "date_created": { "type": 6, "value": 1684943727392 }, - "date_last_updated": { "type": 6, "value": 1684943753725 }, - "date_of_expiration": { "type": 6, "value": 1687535727392 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684943753725 }, - "money_release_date": { "type": 6, "value": 1684943753725 }, + "date_created": { + "type": 6, + "value": 1684943727392 + }, + "date_last_updated": { + "type": 6, + "value": 1684943753725 + }, + "date_of_expiration": { + "type": 6, + "value": 1687535727392 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684943753725 + }, + "money_release_date": { + "type": 6, + "value": 1684943753725 + }, "money_release_status": "approved", "wasDebited": true }, @@ -17410,9 +22232,18 @@ "original_amount": 200000000, "total_amount": 200000000, "id": 1685471938618, - "date_created": { "type": 6, "value": 1685471938618 }, - "date_last_updated": { "type": 6, "value": 1685471938618 }, - "date_of_expiration": { "type": 6, "value": 1685471938618 }, + "date_created": { + "type": 6, + "value": 1685471938618 + }, + "date_last_updated": { + "type": 6, + "value": 1685471938618 + }, + "date_of_expiration": { + "type": 6, + "value": 1685471938618 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17429,13 +22260,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rb200uioohxg6v8e9tt", "revision_nr": 1, "created": 1697467087564, "modified": 1697467087564 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rb200uioohxg6v8e9tt", + "revision_nr": 1, + "created": 1697467087564, + "modified": 1697467087564 + } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02rbg00uooohxcl9n775x", "revision_nr": 1, "created": 1697467087566, @@ -17446,7 +22288,11 @@ "path": "ivipcoin-db::__movement_wallet__/017622605984978002/balances/IVIP", "content": { "type": 1, - "value": { "available": "200000000.00000000", "symbol": "IVIP", "value": 20332.55 }, + "value": { + "available": "200000000.00000000", + "symbol": "IVIP", + "value": 20332.55 + }, "revision": "lnt02rbi00uqoohxely9cksp", "revision_nr": 1, "created": 1697467087568, @@ -17455,13 +22301,29 @@ }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02rbi00upoohx4mxcfgwv", "revision_nr": 1, "created": 1697467087571, "modified": 1697467087571 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rbi00upoohx4mxcfgwv", + "revision_nr": 1, + "created": 1697467087571, + "modified": 1697467087571 + } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002", "content": { "type": 1, - "value": { "dataModificacao": 1683153627758, "dateValidity": 1683153627758, "totalValue": 13477.18, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697425200000 } }, + "value": { + "dataModificacao": 1683153627758, + "dateValidity": 1683153627758, + "totalValue": 13477.18, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } + }, "revision": "lnt02rb200uhoohx2fg1dcdn", "revision_nr": 1, "created": 1697467087573, @@ -17472,7 +22334,14 @@ "path": "ivipcoin-db::__movement_wallet__/018061972197789932", "content": { "type": 1, - "value": { "dataModificacao": 1678058024401, "dateValidity": 1678162416437, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678058024401, + "dateValidity": 1678162416437, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02rbp00uroohx5k9yfseo", "revision_nr": 1, "created": 1697467087576, @@ -17483,7 +22352,11 @@ "path": "ivipcoin-db::__movement_wallet__/019211721108032264/balances/IVIP", "content": { "type": 1, - "value": { "available": "0.60000000", "symbol": "IVIP", "value": 0.000081 }, + "value": { + "available": "0.60000000", + "symbol": "IVIP", + "value": 0.000081 + }, "revision": "lnt02rbs00uuoohxdw5a4jb7", "revision_nr": 1, "created": 1697467087578, @@ -17492,7 +22365,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02rbs00utoohx9ln6e6lf", "revision_nr": 1, "created": 1697467087580, "modified": 1697467087580 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rbs00utoohx9ln6e6lf", + "revision_nr": 1, + "created": 1697467087580, + "modified": 1697467087580 + } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034/description", @@ -17507,7 +22387,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rbz00uyoohx29bjgcr5", "revision_nr": 1, "created": 1697467087585, "modified": 1697467087585 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rbz00uyoohx29bjgcr5", + "revision_nr": 1, + "created": 1697467087585, + "modified": 1697467087585 + } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034", @@ -17521,14 +22410,26 @@ "total_amount": 100, "history_id": 1678138020034, "id": 1678138020034, - "date_created": { "type": 6, "value": 1678138020034 }, - "date_last_updated": { "type": 6, "value": 1678138313569 }, - "date_of_expiration": { "type": 6, "value": 1680730020034 }, + "date_created": { + "type": 6, + "value": 1678138020034 + }, + "date_last_updated": { + "type": 6, + "value": 1678138313569 + }, + "date_of_expiration": { + "type": 6, + "value": 1680730020034 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678138313569 }, + "money_release_date": { + "type": 6, + "value": 1678138313569 + }, "money_release_status": "rejected" }, "revision": "lnt02rbw00uwoohx1olm1uxs", @@ -17550,7 +22451,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rc600v1oohx12506k7c", "revision_nr": 1, "created": 1697467087592, "modified": 1697467087592 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rc600v1oohx12506k7c", + "revision_nr": 1, + "created": 1697467087592, + "modified": 1697467087592 + } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594", @@ -17564,15 +22474,30 @@ "total_amount": 2000, "history_id": 1677965965594, "id": 1677965965594, - "date_created": { "type": 6, "value": 1677965965594 }, - "date_last_updated": { "type": 6, "value": 1677974846209 }, - "date_of_expiration": { "type": 6, "value": 1680557965594 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677974846209 }, - "money_release_date": { "type": 6, "value": 1677974846209 }, + "date_created": { + "type": 6, + "value": 1677965965594 + }, + "date_last_updated": { + "type": 6, + "value": 1677974846209 + }, + "date_of_expiration": { + "type": 6, + "value": 1680557965594 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677974846209 + }, + "money_release_date": { + "type": 6, + "value": 1677974846209 + }, "money_release_status": "approved", "wasDebited": true }, @@ -17595,7 +22520,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rcd00v4oohxbmsmdddk", "revision_nr": 1, "created": 1697467087599, "modified": 1697467087599 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rcd00v4oohxbmsmdddk", + "revision_nr": 1, + "created": 1697467087599, + "modified": 1697467087599 + } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348", @@ -17609,15 +22543,30 @@ "total_amount": 1000, "history_id": 1678138148348, "id": 1678138148348, - "date_created": { "type": 6, "value": 1678138148348 }, - "date_last_updated": { "type": 6, "value": 1678201306976 }, - "date_of_expiration": { "type": 6, "value": 1680730148348 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678201306976 }, - "money_release_date": { "type": 6, "value": 1678201306976 }, + "date_created": { + "type": 6, + "value": 1678138148348 + }, + "date_last_updated": { + "type": 6, + "value": 1678201306976 + }, + "date_of_expiration": { + "type": 6, + "value": 1680730148348 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678201306976 + }, + "money_release_date": { + "type": 6, + "value": 1678201306976 + }, "money_release_status": "approved" }, "revision": "lnt02rca00v2oohx4elb0huc", @@ -17662,9 +22611,18 @@ "original_amount": 14292068, "total_amount": 14292068, "id": 1678162119494, - "date_created": { "type": 6, "value": 1678162119494 }, - "date_last_updated": { "type": 6, "value": 1678162119494 }, - "date_of_expiration": { "type": 6, "value": 1678162119494 }, + "date_created": { + "type": 6, + "value": 1678162119494 + }, + "date_last_updated": { + "type": 6, + "value": 1678162119494 + }, + "date_of_expiration": { + "type": 6, + "value": 1678162119494 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17715,9 +22673,18 @@ "original_amount": 7083024, "total_amount": 7083024, "id": 1678201718893, - "date_created": { "type": 6, "value": 1678201718893 }, - "date_last_updated": { "type": 6, "value": 1678201718893 }, - "date_of_expiration": { "type": 6, "value": 1678201718893 }, + "date_created": { + "type": 6, + "value": 1678201718893 + }, + "date_last_updated": { + "type": 6, + "value": 1678201718893 + }, + "date_of_expiration": { + "type": 6, + "value": 1678201718893 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17745,7 +22712,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rct00vboohx3volfs49", "revision_nr": 1, "created": 1697467087615, "modified": 1697467087615 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rct00vboohx3volfs49", + "revision_nr": 1, + "created": 1697467087615, + "modified": 1697467087615 + } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932", @@ -17759,14 +22735,26 @@ "total_amount": 15000000, "history_id": 1687306180932, "id": 1687306180932, - "date_created": { "type": 6, "value": 1687306180932 }, - "date_last_updated": { "type": 6, "value": 1687439686349 }, - "date_of_expiration": { "type": 6, "value": 1687306180932 }, + "date_created": { + "type": 6, + "value": 1687306180932 + }, + "date_last_updated": { + "type": 6, + "value": 1687439686349 + }, + "date_of_expiration": { + "type": 6, + "value": 1687306180932 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": { "type": 6, "value": 1687439686349 }, + "money_release_date": { + "type": 6, + "value": 1687439686349 + }, "money_release_status": "rejected" }, "revision": "lnt02rcr00v9oohxdmr44qg2", @@ -17788,7 +22776,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rd000veoohxb5vf7k0r", "revision_nr": 1, "created": 1697467087623, "modified": 1697467087623 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rd000veoohxb5vf7k0r", + "revision_nr": 1, + "created": 1697467087623, + "modified": 1697467087623 + } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776", @@ -17802,15 +22799,30 @@ "total_amount": 15000000, "history_id": 1687306331776, "id": 1687306331776, - "date_created": { "type": 6, "value": 1687306331776 }, - "date_last_updated": { "type": 6, "value": 1687439707717 }, - "date_of_expiration": { "type": 6, "value": 1687306331776 }, + "date_created": { + "type": 6, + "value": 1687306331776 + }, + "date_last_updated": { + "type": 6, + "value": 1687439707717 + }, + "date_of_expiration": { + "type": 6, + "value": 1687306331776 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1687439707717 }, - "money_release_date": { "type": 6, "value": 1687439707717 }, + "date_approved": { + "type": 6, + "value": 1687439707717 + }, + "money_release_date": { + "type": 6, + "value": 1687439707717 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -17866,9 +22878,18 @@ "original_amount": 6375092, "total_amount": 6375092, "id": 1687525932247, - "date_created": { "type": 6, "value": 1687525932247 }, - "date_last_updated": { "type": 6, "value": 1687525932247 }, - "date_of_expiration": { "type": 6, "value": 1750684332247 }, + "date_created": { + "type": 6, + "value": 1687525932247 + }, + "date_last_updated": { + "type": 6, + "value": 1687525932247 + }, + "date_of_expiration": { + "type": 6, + "value": 1750684332247 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17929,9 +22950,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1688054453004, - "date_created": { "type": 6, "value": 1688054453004 }, - "date_last_updated": { "type": 6, "value": 1688054453004 }, - "date_of_expiration": { "type": 6, "value": 1719676853004 }, + "date_created": { + "type": 6, + "value": 1688054453004 + }, + "date_last_updated": { + "type": 6, + "value": 1688054453004 + }, + "date_of_expiration": { + "type": 6, + "value": 1719676853004 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17959,7 +22989,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rdl00vnoohxglp7bucb", "revision_nr": 1, "created": 1697467087643, "modified": 1697467087643 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rdl00vnoohxglp7bucb", + "revision_nr": 1, + "created": 1697467087643, + "modified": 1697467087643 + } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395", @@ -17973,9 +23012,18 @@ "total_amount": 1375000, "history_id": 1688055217395, "id": 1688055217395, - "date_created": { "type": 6, "value": 1688055217395 }, - "date_last_updated": { "type": 6, "value": 1688055217395 }, - "date_of_expiration": { "type": 6, "value": 1688055217395 }, + "date_created": { + "type": 6, + "value": 1688055217395 + }, + "date_last_updated": { + "type": 6, + "value": 1688055217395 + }, + "date_of_expiration": { + "type": 6, + "value": 1688055217395 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -18033,9 +23081,18 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1688400574946, - "date_created": { "type": 6, "value": 1688400574946 }, - "date_last_updated": { "type": 6, "value": 1688400574946 }, - "date_of_expiration": { "type": 6, "value": 1691078974946 }, + "date_created": { + "type": 6, + "value": 1688400574946 + }, + "date_last_updated": { + "type": 6, + "value": 1688400574946 + }, + "date_of_expiration": { + "type": 6, + "value": 1691078974946 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18095,9 +23152,18 @@ "original_amount": 5100000, "total_amount": 5100000, "id": 1691079119787, - "date_created": { "type": 6, "value": 1691079119787 }, - "date_last_updated": { "type": 6, "value": 1691079119787 }, - "date_of_expiration": { "type": 6, "value": 1691079119787 }, + "date_created": { + "type": 6, + "value": 1691079119787 + }, + "date_last_updated": { + "type": 6, + "value": 1691079119787 + }, + "date_of_expiration": { + "type": 6, + "value": 1691079119787 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18158,9 +23224,18 @@ "original_amount": 5100000, "total_amount": 5100000, "id": 1691079120545, - "date_created": { "type": 6, "value": 1691079120545 }, - "date_last_updated": { "type": 6, "value": 1691079120545 }, - "date_of_expiration": { "type": 6, "value": 1691079120545 }, + "date_created": { + "type": 6, + "value": 1691079120545 + }, + "date_last_updated": { + "type": 6, + "value": 1691079120545 + }, + "date_of_expiration": { + "type": 6, + "value": 1691079120545 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18230,9 +23305,18 @@ "total_amount": 5199000, "id": 1691085199409, "history_id": 1691085199409, - "date_created": { "type": 6, "value": 1691085199409 }, - "date_last_updated": { "type": 6, "value": 1691085199409 }, - "date_of_expiration": { "type": 6, "value": 1693763599408 }, + "date_created": { + "type": 6, + "value": 1691085199409 + }, + "date_last_updated": { + "type": 6, + "value": 1691085199409 + }, + "date_of_expiration": { + "type": 6, + "value": 1693763599408 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18301,9 +23385,18 @@ "total_amount": 5302980, "id": "1693763776046", "history_id": "1693763776046", - "date_created": { "type": 6, "value": 1693763776046 }, - "date_last_updated": { "type": 6, "value": 1693763776046 }, - "date_of_expiration": { "type": 6, "value": 1693763776046 }, + "date_created": { + "type": 6, + "value": 1693763776046 + }, + "date_last_updated": { + "type": 6, + "value": 1693763776046 + }, + "date_of_expiration": { + "type": 6, + "value": 1693763776046 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18372,9 +23465,18 @@ "total_amount": 5302980, "id": "1693924633176", "history_id": "1693924633176", - "date_created": { "type": 6, "value": 1693924633176 }, - "date_last_updated": { "type": 6, "value": 1693924633176 }, - "date_of_expiration": { "type": 6, "value": 1696516633174 }, + "date_created": { + "type": 6, + "value": 1693924633176 + }, + "date_last_updated": { + "type": 6, + "value": 1693924633176 + }, + "date_of_expiration": { + "type": 6, + "value": 1696516633174 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18444,9 +23546,18 @@ "total_amount": 5409039.6, "id": "1696516664226", "history_id": "1696516664226", - "date_created": { "type": 6, "value": 1696516664226 }, - "date_last_updated": { "type": 6, "value": 1696516664226 }, - "date_of_expiration": { "type": 6, "value": 1696516664226 }, + "date_created": { + "type": 6, + "value": 1696516664226 + }, + "date_last_updated": { + "type": 6, + "value": 1696516664226 + }, + "date_of_expiration": { + "type": 6, + "value": 1696516664226 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18516,9 +23627,18 @@ "total_amount": 5409039, "id": "1696621887766", "history_id": "1696621887766", - "date_created": { "type": 6, "value": 1696621887766 }, - "date_last_updated": { "type": 6, "value": 1696621887766 }, - "date_of_expiration": { "type": 6, "value": 1699300287733 }, + "date_created": { + "type": 6, + "value": 1696621887766 + }, + "date_last_updated": { + "type": 6, + "value": 1696621887766 + }, + "date_of_expiration": { + "type": 6, + "value": 1699300287733 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18534,13 +23654,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rbw00uvoohx5jq08wbj", "revision_nr": 1, "created": 1697467087717, "modified": 1697467087717 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rbw00uvoohx5jq08wbj", + "revision_nr": 1, + "created": 1697467087717, + "modified": 1697467087717 + } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1689780416218 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1689780416218 + } + }, "revision": "lnt02rfp00whoohx6og3czjj", "revision_nr": 1, "created": 1697467087720, @@ -18556,7 +23691,10 @@ "dateValidity": 1678664927087, "totalValue": 1001.4056590358118, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696820400000 } + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } }, "revision": "lnt02rbs00usoohxabe49yvn", "revision_nr": 1, @@ -18568,7 +23706,11 @@ "path": "ivipcoin-db::__movement_wallet__/019965556064975630/balances/BRL", "content": { "type": 1, - "value": { "available": "80.00000000", "symbol": "BRL", "value": 16.58 }, + "value": { + "available": "80.00000000", + "symbol": "BRL", + "value": 16.58 + }, "revision": "lnt02rfu00wkoohx8js1g8cw", "revision_nr": 1, "created": 1697467087725, @@ -18577,7 +23719,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02rfu00wjoohxa2h59rvu", "revision_nr": 1, "created": 1697467087727, "modified": 1697467087727 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rfu00wjoohxa2h59rvu", + "revision_nr": 1, + "created": 1697467087727, + "modified": 1697467087727 + } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068/description", @@ -18592,7 +23741,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rg200wooohx0u7jc8qg", "revision_nr": 1, "created": 1697467087732, "modified": 1697467087732 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rg200wooohx0u7jc8qg", + "revision_nr": 1, + "created": 1697467087732, + "modified": 1697467087732 + } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068", @@ -18606,15 +23764,30 @@ "total_amount": 100, "history_id": 1679011728068, "id": 1679011728068, - "date_created": { "type": 6, "value": 1679011728068 }, - "date_last_updated": { "type": 6, "value": 1679057279547 }, - "date_of_expiration": { "type": 6, "value": 1681603728068 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679057279547 }, - "money_release_date": { "type": 6, "value": 1679057279547 }, + "date_created": { + "type": 6, + "value": 1679011728068 + }, + "date_last_updated": { + "type": 6, + "value": 1679057279547 + }, + "date_of_expiration": { + "type": 6, + "value": 1681603728068 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679057279547 + }, + "money_release_date": { + "type": 6, + "value": 1679057279547 + }, "money_release_status": "approved" }, "revision": "lnt02rfz00wmoohx16vx7eb7", @@ -18678,9 +23851,18 @@ "total_amount": 20, "id": 1689901373588, "history_id": 1689901373588, - "date_created": { "type": 6, "value": 1689901373588 }, - "date_last_updated": { "type": 6, "value": 1689901373588 }, - "date_of_expiration": { "type": 6, "value": 1716253373584 }, + "date_created": { + "type": 6, + "value": 1689901373588 + }, + "date_last_updated": { + "type": 6, + "value": 1689901373588 + }, + "date_of_expiration": { + "type": 6, + "value": 1716253373584 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18696,13 +23878,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rfz00wloohxdxauht58", "revision_nr": 1, "created": 1697467087747, "modified": 1697467087747 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rfz00wloohxdxauht58", + "revision_nr": 1, + "created": 1697467087747, + "modified": 1697467087747 + } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02rgj00wtoohxam8tfhhw", "revision_nr": 1, "created": 1697467087749, @@ -18713,7 +23906,13 @@ "path": "ivipcoin-db::__movement_wallet__/019965556064975630", "content": { "type": 1, - "value": { "dataModificacao": 1679011642708, "dateValidity": 1679026042762, "totalValue": 0, "currencyType": "USD", "balancesModificacao": 1689822000000 }, + "value": { + "dataModificacao": 1679011642708, + "dateValidity": 1679026042762, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": 1689822000000 + }, "revision": "lnt02rfu00wioohxeyyiaeib", "revision_nr": 1, "created": 1697467087751, @@ -18724,7 +23923,11 @@ "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt02rgn00wwoohx2satal7r", "revision_nr": 1, "created": 1697467087754, @@ -18735,7 +23938,11 @@ "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances/IVIP", "content": { "type": 1, - "value": { "available": "72120104.00000000", "symbol": "IVIP", "value": 10477.68 }, + "value": { + "available": "72120104.00000000", + "symbol": "IVIP", + "value": 10477.68 + }, "revision": "lnt02rgq00wxoohx5p295z0t", "revision_nr": 1, "created": 1697467087757, @@ -18744,7 +23951,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02rgn00wvoohx475y3jnm", "revision_nr": 1, "created": 1697467087759, "modified": 1697467087759 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rgn00wvoohx475y3jnm", + "revision_nr": 1, + "created": 1697467087759, + "modified": 1697467087759 + } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136/description", @@ -18759,7 +23973,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rgy00x1oohx0ems7uhu", "revision_nr": 1, "created": 1697467087765, "modified": 1697467087765 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rgy00x1oohx0ems7uhu", + "revision_nr": 1, + "created": 1697467087765, + "modified": 1697467087765 + } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136", @@ -18773,15 +23996,30 @@ "total_amount": 10000, "history_id": 1677725964136, "id": 1677725964136, - "date_created": { "type": 6, "value": 1677725964136 }, - "date_last_updated": { "type": 6, "value": 1677755006417 }, - "date_of_expiration": { "type": 6, "value": 1680317964136 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677755006417 }, - "money_release_date": { "type": 6, "value": 1677755006417 }, + "date_created": { + "type": 6, + "value": 1677725964136 + }, + "date_last_updated": { + "type": 6, + "value": 1677755006417 + }, + "date_of_expiration": { + "type": 6, + "value": 1680317964136 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677755006417 + }, + "money_release_date": { + "type": 6, + "value": 1677755006417 + }, "money_release_status": "approved", "wasDebited": true }, @@ -18827,9 +24065,18 @@ "original_amount": 71386212, "total_amount": 71386212, "id": 1678147737654, - "date_created": { "type": 6, "value": 1678147737654 }, - "date_last_updated": { "type": 6, "value": 1678147737654 }, - "date_of_expiration": { "type": 6, "value": 1678147737654 }, + "date_created": { + "type": 6, + "value": 1678147737654 + }, + "date_last_updated": { + "type": 6, + "value": 1678147737654 + }, + "date_of_expiration": { + "type": 6, + "value": 1678147737654 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18891,9 +24138,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1678160584706, - "date_created": { "type": 6, "value": 1678160584706 }, - "date_last_updated": { "type": 6, "value": 1678160584706 }, - "date_of_expiration": { "type": 6, "value": 1678160584706 }, + "date_created": { + "type": 6, + "value": 1678160584706 + }, + "date_last_updated": { + "type": 6, + "value": 1678160584706 + }, + "date_of_expiration": { + "type": 6, + "value": 1678160584706 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18943,9 +24199,18 @@ "original_amount": 7146034, "total_amount": 7146034, "id": 1678162248934, - "date_created": { "type": 6, "value": 1678162248934 }, - "date_last_updated": { "type": 6, "value": 1678162248934 }, - "date_of_expiration": { "type": 6, "value": 1678162248934 }, + "date_created": { + "type": 6, + "value": 1678162248934 + }, + "date_last_updated": { + "type": 6, + "value": 1678162248934 + }, + "date_of_expiration": { + "type": 6, + "value": 1678162248934 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18986,7 +24251,9 @@ "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/barcode", "content": { "type": 1, - "value": { "content": "23797927500010103493380261019562276900633330" }, + "value": { + "content": "23797927500010103493380261019562276900633330" + }, "revision": "lnt02rhq00xdoohx631j7k4n", "revision_nr": 1, "created": 1697467087793, @@ -18997,7 +24264,11 @@ "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de R$ 3,49", + "amount": 3.49 + }, "revision": "lnt02rht00xfoohx5tpw5avf", "revision_nr": 1, "created": 1697467087795, @@ -19006,7 +24277,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rht00xeoohxgen1de8v", "revision_nr": 1, "created": 1697467087798, "modified": 1697467087798 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rht00xeoohxgen1de8v", + "revision_nr": 1, + "created": 1697467087798, + "modified": 1697467087798 + } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details", @@ -19041,9 +24319,18 @@ "total_amount": 10103.49, "history_id": 1677379209968, "id": 1311811220, - "date_created": { "type": 6, "value": 1677379210662 }, - "date_last_updated": { "type": 6, "value": 1677379210662 }, - "date_of_expiration": { "type": 6, "value": 1677639599000 }, + "date_created": { + "type": 6, + "value": 1677379210662 + }, + "date_last_updated": { + "type": 6, + "value": 1677379210662 + }, + "date_of_expiration": { + "type": 6, + "value": 1677639599000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -19103,9 +24390,18 @@ "original_amount": 326, "total_amount": 326, "id": 1684348383580, - "date_created": { "type": 6, "value": 1684348383580 }, - "date_last_updated": { "type": 6, "value": 1684348383580 }, - "date_of_expiration": { "type": 6, "value": 1684348383580 }, + "date_created": { + "type": 6, + "value": 1684348383580 + }, + "date_last_updated": { + "type": 6, + "value": 1684348383580 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348383580 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19155,9 +24451,18 @@ "original_amount": 1587858, "total_amount": 1587858, "id": 1684624810300, - "date_created": { "type": 6, "value": 1684624810300 }, - "date_last_updated": { "type": 6, "value": 1684624810300 }, - "date_of_expiration": { "type": 6, "value": 1684624810300 }, + "date_created": { + "type": 6, + "value": 1684624810300 + }, + "date_last_updated": { + "type": 6, + "value": 1684624810300 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624810300 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19218,9 +24523,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685668591211, - "date_created": { "type": 6, "value": 1685668591211 }, - "date_last_updated": { "type": 6, "value": 1685668591211 }, - "date_of_expiration": { "type": 6, "value": 1717290991211 }, + "date_created": { + "type": 6, + "value": 1685668591211 + }, + "date_last_updated": { + "type": 6, + "value": 1685668591211 + }, + "date_of_expiration": { + "type": 6, + "value": 1717290991211 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19247,7 +24561,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02riq00xqoohxewjc96os", "revision_nr": 1, "created": 1697467087828, "modified": 1697467087828 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02riq00xqoohxewjc96os", + "revision_nr": 1, + "created": 1697467087828, + "modified": 1697467087828 + } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853", @@ -19261,9 +24584,18 @@ "total_amount": 72120104, "history_id": 1689198160853, "id": 1689198160853, - "date_created": { "type": 6, "value": 1689198160853 }, - "date_last_updated": { "type": 6, "value": 1689198160853 }, - "date_of_expiration": { "type": 6, "value": 1689198160853 }, + "date_created": { + "type": 6, + "value": 1689198160853 + }, + "date_last_updated": { + "type": 6, + "value": 1689198160853 + }, + "date_of_expiration": { + "type": 6, + "value": 1689198160853 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -19301,7 +24633,11 @@ "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 2098695.0264 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 2098695.0264 + }, "revision": "lnt02rj000xwoohx1ce2fux1", "revision_nr": 1, "created": 1697467087839, @@ -19310,7 +24646,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rj000xvoohx1uoe8pwt", "revision_nr": 1, "created": 1697467087841, "modified": 1697467087841 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rj000xvoohx1uoe8pwt", + "revision_nr": 1, + "created": 1697467087841, + "modified": 1697467087841 + } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details", @@ -19344,17 +24687,32 @@ "total_amount": 69956500.88, "id": 1690914468659, "history_id": 1690914468659, - "date_created": { "type": 6, "value": 1690914468659 }, - "date_last_updated": { "type": 6, "value": 1691419368367 }, - "date_of_expiration": { "type": 6, "value": 1690914468659 }, + "date_created": { + "type": 6, + "value": 1690914468659 + }, + "date_last_updated": { + "type": 6, + "value": 1691419368367 + }, + "date_of_expiration": { + "type": 6, + "value": 1690914468659 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1691419368367 }, - "money_release_date": { "type": 6, "value": 1691419368367 }, + "date_approved": { + "type": 6, + "value": 1691419368367 + }, + "money_release_date": { + "type": 6, + "value": 1691419368367 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -19390,7 +24748,11 @@ "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 1026103.0443000001 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 1026103.0443000001 + }, "revision": "lnt02rjf00y2oohx7wzocwdw", "revision_nr": 1, "created": 1697467087854, @@ -19399,7 +24761,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rjf00y1oohx7t521v5a", "revision_nr": 1, "created": 1697467087857, "modified": 1697467087857 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rjf00y1oohx7t521v5a", + "revision_nr": 1, + "created": 1697467087857, + "modified": 1697467087857 + } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details", @@ -19433,16 +24802,28 @@ "total_amount": 34203434.81, "id": 1690914748870, "history_id": 1690914748870, - "date_created": { "type": 6, "value": 1690914748870 }, - "date_last_updated": { "type": 6, "value": 1692195719152 }, - "date_of_expiration": { "type": 6, "value": 1690914748870 }, + "date_created": { + "type": 6, + "value": 1690914748870 + }, + "date_last_updated": { + "type": 6, + "value": 1692195719152 + }, + "date_of_expiration": { + "type": 6, + "value": 1690914748870 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1692195719152 }, + "money_release_date": { + "type": 6, + "value": 1692195719152 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -19454,13 +24835,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rgv00wyoohx5dk05y4m", "revision_nr": 1, "created": 1697467087865, "modified": 1697467087865 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rgv00wyoohx5dk05y4m", + "revision_nr": 1, + "created": 1697467087865, + "modified": 1697467087865 + } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02rjt00y3oohx208u5js5", "revision_nr": 1, "created": 1697467087867, @@ -19471,7 +24863,13 @@ "path": "ivipcoin-db::__movement_wallet__/021977101011675604", "content": { "type": 1, - "value": { "dataModificacao": 1677376425892, "dateValidity": 1678341464139, "totalValue": 3999.180462637249, "currencyType": "USD", "balancesModificacao": 1691419368675 }, + "value": { + "dataModificacao": 1677376425892, + "dateValidity": 1678341464139, + "totalValue": 3999.180462637249, + "currencyType": "USD", + "balancesModificacao": 1691419368675 + }, "revision": "lnt02rgn00wuoohx79cnb6il", "revision_nr": 1, "created": 1697467087870, @@ -19482,7 +24880,11 @@ "path": "ivipcoin-db::__movement_wallet__/023129781601157750/balances/IVIP", "content": { "type": 1, - "value": { "available": "62553.00000000", "symbol": "IVIP", "value": 6.93 }, + "value": { + "available": "62553.00000000", + "symbol": "IVIP", + "value": 6.93 + }, "revision": "lnt02rjy00y6oohx0l3ifa2n", "revision_nr": 1, "created": 1697467087873, @@ -19491,7 +24893,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02rjy00y5oohxa2oqfvnq", "revision_nr": 1, "created": 1697467087875, "modified": 1697467087875 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rjy00y5oohxa2oqfvnq", + "revision_nr": 1, + "created": 1697467087875, + "modified": 1697467087875 + } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436/description", @@ -19506,7 +24915,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rk600yaoohxha4zbt5g", "revision_nr": 1, "created": 1697467087880, "modified": 1697467087880 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rk600yaoohxha4zbt5g", + "revision_nr": 1, + "created": 1697467087880, + "modified": 1697467087880 + } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436", @@ -19520,15 +24938,30 @@ "total_amount": 100, "history_id": 1689290027436, "id": 1689290027436, - "date_created": { "type": 6, "value": 1689290027436 }, - "date_last_updated": { "type": 6, "value": 1689355935839 }, - "date_of_expiration": { "type": 6, "value": 1691882027436 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689355935839 }, - "money_release_date": { "type": 6, "value": 1689355935839 }, + "date_created": { + "type": 6, + "value": 1689290027436 + }, + "date_last_updated": { + "type": 6, + "value": 1689355935839 + }, + "date_of_expiration": { + "type": 6, + "value": 1691882027436 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689355935839 + }, + "money_release_date": { + "type": 6, + "value": 1689355935839 + }, "money_release_status": "approved", "wasDebited": true }, @@ -19551,7 +24984,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rkd00ydoohxgms085uo", "revision_nr": 1, "created": 1697467087888, "modified": 1697467087888 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rkd00ydoohxgms085uo", + "revision_nr": 1, + "created": 1697467087888, + "modified": 1697467087888 + } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555", @@ -19565,9 +25007,18 @@ "total_amount": 100, "history_id": 1689338968555, "id": 1689338968555, - "date_created": { "type": 6, "value": 1689338968555 }, - "date_last_updated": { "type": 6, "value": 1689338968555 }, - "date_of_expiration": { "type": 6, "value": 1691930968555 }, + "date_created": { + "type": 6, + "value": 1689338968555 + }, + "date_last_updated": { + "type": 6, + "value": 1689338968555 + }, + "date_of_expiration": { + "type": 6, + "value": 1691930968555 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -19592,7 +25043,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rkm00ygoohx2x2keq52", "revision_nr": 1, "created": 1697467087896, "modified": 1697467087896 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rkm00ygoohx2x2keq52", + "revision_nr": 1, + "created": 1697467087896, + "modified": 1697467087896 + } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748", @@ -19606,9 +25066,18 @@ "total_amount": 100, "history_id": 1689345853748, "id": 1689345853748, - "date_created": { "type": 6, "value": 1689345853748 }, - "date_last_updated": { "type": 6, "value": 1689345853748 }, - "date_of_expiration": { "type": 6, "value": 1691937853748 }, + "date_created": { + "type": 6, + "value": 1689345853748 + }, + "date_last_updated": { + "type": 6, + "value": 1689345853748 + }, + "date_of_expiration": { + "type": 6, + "value": 1691937853748 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -19656,9 +25125,18 @@ "original_amount": 62553, "total_amount": 62553, "id": 1689357674118, - "date_created": { "type": 6, "value": 1689357674118 }, - "date_last_updated": { "type": 6, "value": 1689357674118 }, - "date_of_expiration": { "type": 6, "value": 1689357674118 }, + "date_created": { + "type": 6, + "value": 1689357674118 + }, + "date_last_updated": { + "type": 6, + "value": 1689357674118 + }, + "date_of_expiration": { + "type": 6, + "value": 1689357674118 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19728,9 +25206,18 @@ "total_amount": 62553, "id": 1690557889809, "history_id": 1690557889809, - "date_created": { "type": 6, "value": 1690557889809 }, - "date_last_updated": { "type": 6, "value": 1690557889809 }, - "date_of_expiration": { "type": 6, "value": 1690557889809 }, + "date_created": { + "type": 6, + "value": 1690557889809 + }, + "date_last_updated": { + "type": 6, + "value": 1690557889809 + }, + "date_of_expiration": { + "type": 6, + "value": 1690557889809 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -19746,13 +25233,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rk300y7oohxewvrc06u", "revision_nr": 1, "created": 1697467087917, "modified": 1697467087917 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rk300y7oohxewvrc06u", + "revision_nr": 1, + "created": 1697467087917, + "modified": 1697467087917 + } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02rl900ynoohxbvna2eos", "revision_nr": 1, "created": 1697467087920, @@ -19763,7 +25261,16 @@ "path": "ivipcoin-db::__movement_wallet__/023129781601157750", "content": { "type": 1, - "value": { "dataModificacao": 1689289832519, "dateValidity": 1689289832519, "totalValue": 20.68, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697079600000 } }, + "value": { + "dataModificacao": 1689289832519, + "dateValidity": 1689289832519, + "totalValue": 20.68, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697079600000 + } + }, "revision": "lnt02rjy00y4oohx5v7jhr2g", "revision_nr": 1, "created": 1697467087922, @@ -19783,7 +25290,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rlh00ysoohxdhw41kik", "revision_nr": 1, "created": 1697467087927, "modified": 1697467087927 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rlh00ysoohxdhw41kik", + "revision_nr": 1, + "created": 1697467087927, + "modified": 1697467087927 + } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144", @@ -19797,15 +25313,30 @@ "total_amount": 62000, "history_id": 1688838966144, "id": 1688838966144, - "date_created": { "type": 6, "value": 1688838966144 }, - "date_last_updated": { "type": 6, "value": 1688838966144 }, - "date_of_expiration": { "type": 6, "value": 1688838966144 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1688838966144 }, - "money_release_date": { "type": 6, "value": 1688838966144 }, + "date_created": { + "type": 6, + "value": 1688838966144 + }, + "date_last_updated": { + "type": 6, + "value": 1688838966144 + }, + "date_of_expiration": { + "type": 6, + "value": 1688838966144 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1688838966144 + }, + "money_release_date": { + "type": 6, + "value": 1688838966144 + }, "money_release_status": "approved", "wasDebited": true }, @@ -19851,9 +25382,18 @@ "original_amount": 100000000, "total_amount": 100000000, "id": 1688839141121, - "date_created": { "type": 6, "value": 1688839141121 }, - "date_last_updated": { "type": 6, "value": 1688839141121 }, - "date_of_expiration": { "type": 6, "value": 1688839141121 }, + "date_created": { + "type": 6, + "value": 1688839141121 + }, + "date_last_updated": { + "type": 6, + "value": 1688839141121 + }, + "date_of_expiration": { + "type": 6, + "value": 1688839141121 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19881,7 +25421,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rlv00yxoohxaijkf20z", "revision_nr": 1, "created": 1697467087941, "modified": 1697467087941 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rlv00yxoohxaijkf20z", + "revision_nr": 1, + "created": 1697467087941, + "modified": 1697467087941 + } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860", @@ -19895,15 +25444,30 @@ "total_amount": 50000000, "history_id": 1689276795860, "id": 1689276795860, - "date_created": { "type": 6, "value": 1689276795860 }, - "date_last_updated": { "type": 6, "value": 1689276795860 }, - "date_of_expiration": { "type": 6, "value": 1689276795860 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1689276795860 }, - "money_release_date": { "type": 6, "value": 1689276795860 }, + "date_created": { + "type": 6, + "value": 1689276795860 + }, + "date_last_updated": { + "type": 6, + "value": 1689276795860 + }, + "date_of_expiration": { + "type": 6, + "value": 1689276795860 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1689276795860 + }, + "money_release_date": { + "type": 6, + "value": 1689276795860 + }, "money_release_status": "approved", "wasDebited": true }, @@ -19959,9 +25523,18 @@ "original_amount": 149517672, "total_amount": 149517672, "id": 1689278842357, - "date_created": { "type": 6, "value": 1689278842357 }, - "date_last_updated": { "type": 6, "value": 1689278842357 }, - "date_of_expiration": { "type": 6, "value": 1705176442357 }, + "date_created": { + "type": 6, + "value": 1689278842357 + }, + "date_last_updated": { + "type": 6, + "value": 1689278842357 + }, + "date_of_expiration": { + "type": 6, + "value": 1705176442357 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20021,9 +25594,18 @@ "original_amount": 450820, "total_amount": 450820, "id": 1689295244660, - "date_created": { "type": 6, "value": 1689295244660 }, - "date_last_updated": { "type": 6, "value": 1689295244660 }, - "date_of_expiration": { "type": 6, "value": 1752453644660 }, + "date_created": { + "type": 6, + "value": 1689295244660 + }, + "date_last_updated": { + "type": 6, + "value": 1689295244660 + }, + "date_of_expiration": { + "type": 6, + "value": 1752453644660 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20050,7 +25632,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rmi00z6oohxal8sczj6", "revision_nr": 1, "created": 1697467087965, "modified": 1697467087965 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rmi00z6oohxal8sczj6", + "revision_nr": 1, + "created": 1697467087965, + "modified": 1697467087965 + } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243", @@ -20064,9 +25655,18 @@ "total_amount": 9396, "history_id": 1689350577243, "id": 1689350577243, - "date_created": { "type": 6, "value": 1689350577243 }, - "date_last_updated": { "type": 6, "value": 1689350577243 }, - "date_of_expiration": { "type": 6, "value": 1691942577243 }, + "date_created": { + "type": 6, + "value": 1689350577243 + }, + "date_last_updated": { + "type": 6, + "value": 1689350577243 + }, + "date_of_expiration": { + "type": 6, + "value": 1691942577243 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -20091,7 +25691,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rmr00z9oohx6szy9hyb", "revision_nr": 1, "created": 1697467087974, "modified": 1697467087974 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rmr00z9oohx6szy9hyb", + "revision_nr": 1, + "created": 1697467087974, + "modified": 1697467087974 + } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945", @@ -20105,9 +25714,18 @@ "total_amount": 30010000, "history_id": 1690472510945, "id": 1690472510945, - "date_created": { "type": 6, "value": 1690472510945 }, - "date_last_updated": { "type": 6, "value": 1690472510945 }, - "date_of_expiration": { "type": 6, "value": 1690472510945 }, + "date_created": { + "type": 6, + "value": 1690472510945 + }, + "date_last_updated": { + "type": 6, + "value": 1690472510945 + }, + "date_of_expiration": { + "type": 6, + "value": 1690472510945 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -20174,9 +25792,18 @@ "total_amount": 6001475, "id": 1691081114647, "history_id": 1691081114647, - "date_created": { "type": 6, "value": 1691081114647 }, - "date_last_updated": { "type": 6, "value": 1691081114647 }, - "date_of_expiration": { "type": 6, "value": 1693759514646 }, + "date_created": { + "type": 6, + "value": 1691081114647 + }, + "date_last_updated": { + "type": 6, + "value": 1691081114647 + }, + "date_of_expiration": { + "type": 6, + "value": 1693759514646 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20216,7 +25843,11 @@ "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 721200.99 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 721200.99 + }, "revision": "lnt02rnc00zjoohxd0304njv", "revision_nr": 1, "created": 1697467087995, @@ -20225,7 +25856,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rnc00zioohxcqwxdo30", "revision_nr": 1, "created": 1697467087997, "modified": 1697467087997 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rnc00zioohxcqwxdo30", + "revision_nr": 1, + "created": 1697467087997, + "modified": 1697467087997 + } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details", @@ -20259,16 +25897,28 @@ "total_amount": 23318832.01, "id": 1692462419697, "history_id": 1692462419697, - "date_created": { "type": 6, "value": 1692462419697 }, - "date_last_updated": { "type": 6, "value": 1692612895779 }, - "date_of_expiration": { "type": 6, "value": 1692462419697 }, + "date_created": { + "type": 6, + "value": 1692462419697 + }, + "date_last_updated": { + "type": 6, + "value": 1692612895779 + }, + "date_of_expiration": { + "type": 6, + "value": 1692462419697 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1692612895779 }, + "money_release_date": { + "type": 6, + "value": 1692612895779 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -20333,9 +25983,18 @@ "total_amount": 6121504.5, "id": "1693759701053", "history_id": "1693759701053", - "date_created": { "type": 6, "value": 1693759701053 }, - "date_last_updated": { "type": 6, "value": 1693759701053 }, - "date_of_expiration": { "type": 6, "value": 1693759701053 }, + "date_created": { + "type": 6, + "value": 1693759701053 + }, + "date_last_updated": { + "type": 6, + "value": 1693759701053 + }, + "date_of_expiration": { + "type": 6, + "value": 1693759701053 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20404,16 +26063,28 @@ "total_amount": 7836614, "id": "1693861899974", "history_id": "1693861899974", - "date_created": { "type": 6, "value": 1693861899974 }, - "date_last_updated": { "type": 6, "value": 1696424640162 }, - "date_of_expiration": { "type": 6, "value": 1696453899973 }, + "date_created": { + "type": 6, + "value": 1693861899974 + }, + "date_last_updated": { + "type": 6, + "value": 1696424640162 + }, + "date_of_expiration": { + "type": 6, + "value": 1696453899973 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1696424640162 }, + "money_release_date": { + "type": 6, + "value": 1696424640162 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -20427,7 +26098,13 @@ "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697203059628 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697203059628 + } + }, "revision": "lnt02ro700ztoohx74yxb0e3", "revision_nr": 1, "created": 1697467088027, @@ -20489,16 +26166,28 @@ "total_amount": 24582, "id": "1694611059637", "history_id": "1694611059637", - "date_created": { "type": 6, "value": 1694611059637 }, - "date_last_updated": { "type": 6, "value": 1694611086754 }, + "date_created": { + "type": 6, + "value": 1694611059637 + }, + "date_last_updated": { + "type": 6, + "value": 1694611086754 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694611086754 }, - "money_release_date": { "type": 6, "value": 1694611086754 }, + "date_approved": { + "type": 6, + "value": 1694611086754 + }, + "money_release_date": { + "type": 6, + "value": 1694611086754 + }, "money_release_status": "approved", "wasDebited": true }, @@ -20552,9 +26241,18 @@ "total_amount": 39021269, "id": "1694612208335", "history_id": "1694612208335", - "date_created": { "type": 6, "value": 1694612208335 }, - "date_last_updated": { "type": 6, "value": 1694612208335 }, - "date_of_expiration": { "type": 6, "value": 1694612208335 }, + "date_created": { + "type": 6, + "value": 1694612208335 + }, + "date_last_updated": { + "type": 6, + "value": 1694612208335 + }, + "date_of_expiration": { + "type": 6, + "value": 1694612208335 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -20573,7 +26271,13 @@ "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697212107989 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697212107989 + } + }, "revision": "lnt02rot0101oohxdl9vdht3", "revision_nr": 1, "created": 1697467088048, @@ -20635,16 +26339,28 @@ "total_amount": 168, "id": "1694620107990", "history_id": "1694620107990", - "date_created": { "type": 6, "value": 1694620107990 }, - "date_last_updated": { "type": 6, "value": 1694625063588 }, + "date_created": { + "type": 6, + "value": 1694620107990 + }, + "date_last_updated": { + "type": 6, + "value": 1694625063588 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694625063588 }, - "money_release_date": { "type": 6, "value": 1694625063588 }, + "date_approved": { + "type": 6, + "value": 1694625063588 + }, + "money_release_date": { + "type": 6, + "value": 1694625063588 + }, "money_release_status": "approved", "wasDebited": true }, @@ -20698,9 +26414,18 @@ "total_amount": 258446, "id": "1694641684988", "history_id": "1694641684988", - "date_created": { "type": 6, "value": 1694641684988 }, - "date_last_updated": { "type": 6, "value": 1694641684988 }, - "date_of_expiration": { "type": 6, "value": 1694641684988 }, + "date_created": { + "type": 6, + "value": 1694641684988 + }, + "date_last_updated": { + "type": 6, + "value": 1694641684988 + }, + "date_of_expiration": { + "type": 6, + "value": 1694641684988 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -20741,7 +26466,11 @@ "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 750000 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 750000 + }, "revision": "lnt02rpk010doohx99lp2qus", "revision_nr": 1, "created": 1697467088075, @@ -20750,7 +26479,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rpk010coohx9stp6tks", "revision_nr": 1, "created": 1697467088078, "modified": 1697467088078 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rpk010coohx9stp6tks", + "revision_nr": 1, + "created": 1697467088078, + "modified": 1697467088078 + } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details", @@ -20784,17 +26520,32 @@ "total_amount": 24250000, "id": "1694692198880", "history_id": "1694692198880", - "date_created": { "type": 6, "value": 1694692198880 }, - "date_last_updated": { "type": 6, "value": 1695042142983 }, - "date_of_expiration": { "type": 6, "value": 1694692198880 }, + "date_created": { + "type": 6, + "value": 1694692198880 + }, + "date_last_updated": { + "type": 6, + "value": 1695042142983 + }, + "date_of_expiration": { + "type": 6, + "value": 1694692198880 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1695042142983 }, - "money_release_date": { "type": 6, "value": 1695042142983 }, + "date_approved": { + "type": 6, + "value": 1695042142983 + }, + "money_release_date": { + "type": 6, + "value": 1695042142983 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -20860,9 +26611,18 @@ "total_amount": 8000000, "id": "1696451540047", "history_id": "1696451540047", - "date_created": { "type": 6, "value": 1696451540047 }, - "date_last_updated": { "type": 6, "value": 1696451540047 }, - "date_of_expiration": { "type": 6, "value": 1699129939879 }, + "date_created": { + "type": 6, + "value": 1696451540047 + }, + "date_last_updated": { + "type": 6, + "value": 1696451540047 + }, + "date_of_expiration": { + "type": 6, + "value": 1699129939879 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20878,13 +26638,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rle00ypoohx1uyldyww", "revision_nr": 1, "created": 1697467088096, "modified": 1697467088096 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rle00ypoohx1uyldyww", + "revision_nr": 1, + "created": 1697467088096, + "modified": 1697467088096 + } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1695054577899 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1695054577899 + } + }, "revision": "lnt02rq8010ioohx5tred0dg", "revision_nr": 1, "created": 1697467088099, @@ -20895,7 +26670,11 @@ "path": "ivipcoin-db::__movement_wallet__/025514055020579240/balances/IVIP", "content": { "type": 1, - "value": { "available": "36441252.50000000", "symbol": "IVIP", "value": 4538.39 }, + "value": { + "available": "36441252.50000000", + "symbol": "IVIP", + "value": 4538.39 + }, "revision": "lnt02rqb010koohx31gxa2is", "revision_nr": 1, "created": 1697467088101, @@ -20904,7 +26683,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02rqb010joohx5h8ag28y", "revision_nr": 1, "created": 1697467088105, "modified": 1697467088105 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rqb010joohx5h8ag28y", + "revision_nr": 1, + "created": 1697467088105, + "modified": 1697467088105 + } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240", @@ -20915,7 +26701,10 @@ "dateValidity": 1688773726146, "totalValue": 15.572371266885096, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696993200000 } + "balancesModificacao": { + "type": 6, + "value": 1696993200000 + } }, "revision": "lnt02rle00yooohxfhvdebvv", "revision_nr": 1, @@ -20927,7 +26716,11 @@ "path": "ivipcoin-db::__movement_wallet__/026685155320837372/balances/IVIP", "content": { "type": 1, - "value": { "available": "8958033.00000000", "symbol": "IVIP", "value": 9273.73 }, + "value": { + "available": "8958033.00000000", + "symbol": "IVIP", + "value": 9273.73 + }, "revision": "lnt02rqj010noohx8q1c12wq", "revision_nr": 1, "created": 1697467088110, @@ -20936,7 +26729,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02rqj010moohxdqpa3h0y", "revision_nr": 1, "created": 1697467088112, "modified": 1697467088112 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rqj010moohxdqpa3h0y", + "revision_nr": 1, + "created": 1697467088112, + "modified": 1697467088112 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707/description", @@ -20951,7 +26751,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rqr010roohx2emegwe0", "revision_nr": 1, "created": 1697467088118, "modified": 1697467088118 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rqr010roohx2emegwe0", + "revision_nr": 1, + "created": 1697467088118, + "modified": 1697467088118 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707", @@ -20965,15 +26774,30 @@ "total_amount": 50, "history_id": 1681332472707, "id": 1681332472707, - "date_created": { "type": 6, "value": 1681332472707 }, - "date_last_updated": { "type": 6, "value": 1681334114528 }, - "date_of_expiration": { "type": 6, "value": 1683924472707 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1681334114528 }, - "money_release_date": { "type": 6, "value": 1681334114528 }, + "date_created": { + "type": 6, + "value": 1681332472707 + }, + "date_last_updated": { + "type": 6, + "value": 1681334114528 + }, + "date_of_expiration": { + "type": 6, + "value": 1683924472707 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1681334114528 + }, + "money_release_date": { + "type": 6, + "value": 1681334114528 + }, "money_release_status": "approved", "wasDebited": true }, @@ -20996,7 +26820,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rr0010uoohxhdyubix3", "revision_nr": 1, "created": 1697467088126, "modified": 1697467088126 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rr0010uoohxhdyubix3", + "revision_nr": 1, + "created": 1697467088126, + "modified": 1697467088126 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618", @@ -21010,15 +26843,30 @@ "total_amount": 350, "history_id": 1681334377618, "id": 1681334377618, - "date_created": { "type": 6, "value": 1681334377618 }, - "date_last_updated": { "type": 6, "value": 1681334547169 }, - "date_of_expiration": { "type": 6, "value": 1683926377618 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1681334547169 }, - "money_release_date": { "type": 6, "value": 1681334547169 }, + "date_created": { + "type": 6, + "value": 1681334377618 + }, + "date_last_updated": { + "type": 6, + "value": 1681334547169 + }, + "date_of_expiration": { + "type": 6, + "value": 1683926377618 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1681334547169 + }, + "money_release_date": { + "type": 6, + "value": 1681334547169 + }, "money_release_status": "approved", "wasDebited": true }, @@ -21041,7 +26889,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rr8010xoohx51jr8b9a", "revision_nr": 1, "created": 1697467088135, "modified": 1697467088135 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rr8010xoohx51jr8b9a", + "revision_nr": 1, + "created": 1697467088135, + "modified": 1697467088135 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202", @@ -21055,15 +26912,30 @@ "total_amount": 200, "history_id": 1682092492202, "id": 1682092492202, - "date_created": { "type": 6, "value": 1682092492202 }, - "date_last_updated": { "type": 6, "value": 1682357453305 }, - "date_of_expiration": { "type": 6, "value": 1684684492202 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1682357453305 }, - "money_release_date": { "type": 6, "value": 1682357453305 }, + "date_created": { + "type": 6, + "value": 1682092492202 + }, + "date_last_updated": { + "type": 6, + "value": 1682357453305 + }, + "date_of_expiration": { + "type": 6, + "value": 1684684492202 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1682357453305 + }, + "money_release_date": { + "type": 6, + "value": 1682357453305 + }, "money_release_status": "approved", "wasDebited": true }, @@ -21086,7 +26958,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rrh0110oohx20ci35e7", "revision_nr": 1, "created": 1697467088144, "modified": 1697467088144 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rrh0110oohx20ci35e7", + "revision_nr": 1, + "created": 1697467088144, + "modified": 1697467088144 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521", @@ -21100,9 +26981,18 @@ "total_amount": 200, "history_id": 1682353441521, "id": 1682353441521, - "date_created": { "type": 6, "value": 1682353441521 }, - "date_last_updated": { "type": 6, "value": 1682353441521 }, - "date_of_expiration": { "type": 6, "value": 1684945441521 }, + "date_created": { + "type": 6, + "value": 1682353441521 + }, + "date_last_updated": { + "type": 6, + "value": 1682353441521 + }, + "date_of_expiration": { + "type": 6, + "value": 1684945441521 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -21129,7 +27019,11 @@ "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 20 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 20 + }, "revision": "lnt02rrq0115oohx4ruq0h4l", "revision_nr": 1, "created": 1697467088152, @@ -21138,11 +27032,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rrp0114oohx91qrfaix", "revision_nr": 1, "created": 1697467088156, "modified": 1697467088157 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rrp0114oohx91qrfaix", + "revision_nr": 1, + "created": 1697467088156, + "modified": 1697467088157 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details", - "content": { "type": 1, "value": {}, "revision": "lnt02rrp0113oohx218bg4iz", "revision_nr": 1, "created": 1697467088160, "modified": 1697467088160 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rrp0113oohx218bg4iz", + "revision_nr": 1, + "created": 1697467088160, + "modified": 1697467088160 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344", @@ -21156,9 +27064,18 @@ "total_amount": 1020, "history_id": 1682354342344, "id": 1682354342344, - "date_created": { "type": 6, "value": 1682354342344 }, - "date_last_updated": { "type": 6, "value": 1682354342344 }, - "date_of_expiration": { "type": 6, "value": 1684946342344 }, + "date_created": { + "type": 6, + "value": 1682354342344 + }, + "date_last_updated": { + "type": 6, + "value": 1682354342344 + }, + "date_of_expiration": { + "type": 6, + "value": 1684946342344 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -21207,9 +27124,18 @@ "original_amount": 8647027, "total_amount": 8647027, "id": 1684018921033, - "date_created": { "type": 6, "value": 1684018921033 }, - "date_last_updated": { "type": 6, "value": 1684018921033 }, - "date_of_expiration": { "type": 6, "value": 1684018921033 }, + "date_created": { + "type": 6, + "value": 1684018921033 + }, + "date_last_updated": { + "type": 6, + "value": 1684018921033 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018921033 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21237,7 +27163,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rsc011aoohxfnhz2rxb", "revision_nr": 1, "created": 1697467088176, "modified": 1697467088176 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rsc011aoohxfnhz2rxb", + "revision_nr": 1, + "created": 1697467088176, + "modified": 1697467088176 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995", @@ -21251,15 +27186,30 @@ "total_amount": 400, "history_id": 1689084265995, "id": 1689084265995, - "date_created": { "type": 6, "value": 1689084265995 }, - "date_last_updated": { "type": 6, "value": 1689275138556 }, - "date_of_expiration": { "type": 6, "value": 1691676265995 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689275138556 }, - "money_release_date": { "type": 6, "value": 1689275138556 }, + "date_created": { + "type": 6, + "value": 1689084265995 + }, + "date_last_updated": { + "type": 6, + "value": 1689275138556 + }, + "date_of_expiration": { + "type": 6, + "value": 1691676265995 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689275138556 + }, + "money_release_date": { + "type": 6, + "value": 1689275138556 + }, "money_release_status": "approved", "wasDebited": true }, @@ -21282,7 +27232,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rsm011doohx84vq4lyz", "revision_nr": 1, "created": 1697467088184, "modified": 1697467088184 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rsm011doohx84vq4lyz", + "revision_nr": 1, + "created": 1697467088184, + "modified": 1697467088184 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542", @@ -21296,9 +27255,18 @@ "total_amount": 401.02, "history_id": 1689095021542, "id": 1689095021542, - "date_created": { "type": 6, "value": 1689095021542 }, - "date_last_updated": { "type": 6, "value": 1689095021542 }, - "date_of_expiration": { "type": 6, "value": 1691687021542 }, + "date_created": { + "type": 6, + "value": 1689095021542 + }, + "date_last_updated": { + "type": 6, + "value": 1689095021542 + }, + "date_of_expiration": { + "type": 6, + "value": 1691687021542 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -21346,9 +27314,18 @@ "original_amount": 168630, "total_amount": 168630, "id": 1689275206669, - "date_created": { "type": 6, "value": 1689275206669 }, - "date_last_updated": { "type": 6, "value": 1689275206669 }, - "date_of_expiration": { "type": 6, "value": 1689275206669 }, + "date_created": { + "type": 6, + "value": 1689275206669 + }, + "date_last_updated": { + "type": 6, + "value": 1689275206669 + }, + "date_of_expiration": { + "type": 6, + "value": 1689275206669 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21367,7 +27344,13 @@ "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693192070124 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693192070124 + } + }, "revision": "lnt02rt0011hoohxdnli2481", "revision_nr": 1, "created": 1697467088199, @@ -21429,16 +27412,28 @@ "total_amount": 30, "id": 1690600070124, "history_id": 1690600070124, - "date_created": { "type": 6, "value": 1690600070124 }, - "date_last_updated": { "type": 6, "value": 1690809267089 }, + "date_created": { + "type": 6, + "value": 1690600070124 + }, + "date_last_updated": { + "type": 6, + "value": 1690809267089 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1690809267089 }, - "money_release_date": { "type": 6, "value": 1690809267089 }, + "date_approved": { + "type": 6, + "value": 1690809267089 + }, + "money_release_date": { + "type": 6, + "value": 1690809267089 + }, "money_release_status": "approved", "wasDebited": true }, @@ -21492,9 +27487,18 @@ "total_amount": 26363, "id": 1690822928470, "history_id": 1690822928470, - "date_created": { "type": 6, "value": 1690822928470 }, - "date_last_updated": { "type": 6, "value": 1690822928470 }, - "date_of_expiration": { "type": 6, "value": 1690822928470 }, + "date_created": { + "type": 6, + "value": 1690822928470 + }, + "date_last_updated": { + "type": 6, + "value": 1690822928470 + }, + "date_of_expiration": { + "type": 6, + "value": 1690822928470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -21513,7 +27517,13 @@ "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693501456427 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693501456427 + } + }, "revision": "lnt02rtp011poohxeej27att", "revision_nr": 1, "created": 1697467088225, @@ -21575,16 +27585,28 @@ "total_amount": 100, "id": 1690909456427, "history_id": 1690909456427, - "date_created": { "type": 6, "value": 1690909456427 }, - "date_last_updated": { "type": 6, "value": 1690977485678 }, + "date_created": { + "type": 6, + "value": 1690909456427 + }, + "date_last_updated": { + "type": 6, + "value": 1690977485678 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1690977485678 }, - "money_release_date": { "type": 6, "value": 1690977485678 }, + "date_approved": { + "type": 6, + "value": 1690977485678 + }, + "money_release_date": { + "type": 6, + "value": 1690977485678 + }, "money_release_status": "approved", "wasDebited": true }, @@ -21638,9 +27660,18 @@ "total_amount": 116013, "id": 1690977815869, "history_id": 1690977815869, - "date_created": { "type": 6, "value": 1690977815869 }, - "date_last_updated": { "type": 6, "value": 1690977815869 }, - "date_of_expiration": { "type": 6, "value": 1690977815869 }, + "date_created": { + "type": 6, + "value": 1690977815869 + }, + "date_last_updated": { + "type": 6, + "value": 1690977815869 + }, + "date_of_expiration": { + "type": 6, + "value": 1690977815869 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -21657,7 +27688,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rqo010ooohx0qabdbwl", "revision_nr": 1, "created": 1697467088248, "modified": 1697467088248 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rqo010ooohx0qabdbwl", + "revision_nr": 1, + "created": 1697467088248, + "modified": 1697467088248 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/description", @@ -21674,7 +27712,11 @@ "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 20 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 20 + }, "revision": "lnt02ruk0122oohxa5yzbklf", "revision_nr": 1, "created": 1697467088255, @@ -21683,7 +27725,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02ruk0121oohx7atwawnw", "revision_nr": 1, "created": 1697467088259, "modified": 1697467088259 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02ruk0121oohx7atwawnw", + "revision_nr": 1, + "created": 1697467088259, + "modified": 1697467088259 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344", @@ -21696,7 +27745,10 @@ "total_amount": 1020, "installments": 1, "installment_amount": 1020, - "date_created": { "type": 6, "value": 1682354342344 }, + "date_created": { + "type": 6, + "value": 1682354342344 + }, "history_id": 1682354342344, "currency_id": "BRL" }, @@ -21708,17 +27760,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305", - "content": { "type": 1, "value": {}, "revision": "lnt02rug011yoohx700meur4", "revision_nr": 1, "created": 1697467088264, "modified": 1697467088264 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rug011yoohx700meur4", + "revision_nr": 1, + "created": 1697467088264, + "modified": 1697467088264 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt02rug011xoohx7dblc0jk", "revision_nr": 1, "created": 1697467088267, "modified": 1697467088267 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rug011xoohx7dblc0jk", + "revision_nr": 1, + "created": 1697467088267, + "modified": 1697467088267 + } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 1000, "analysisRequested": { "type": 6, "value": 1682092437620 }, "lastReview": { "type": 6, "value": 1682092464302 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 1000, + "analysisRequested": { + "type": 6, + "value": 1682092437620 + }, + "lastReview": { + "type": 6, + "value": 1682092464302 + } + }, "revision": "lnt02rug011woohxc2b82esu", "revision_nr": 1, "created": 1697467088269, @@ -21729,7 +27806,16 @@ "path": "ivipcoin-db::__movement_wallet__/026685155320837372", "content": { "type": 1, - "value": { "dataModificacao": 1681239500343, "dateValidity": 1681239500343, "totalValue": 405.92, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696215600000 } }, + "value": { + "dataModificacao": 1681239500343, + "dateValidity": 1681239500343, + "totalValue": 405.92, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696215600000 + } + }, "revision": "lnt02rqj010loohx7hrv95bm", "revision_nr": 1, "created": 1697467088272, @@ -21740,7 +27826,14 @@ "path": "ivipcoin-db::__movement_wallet__/027193309143186410", "content": { "type": 1, - "value": { "dataModificacao": 1678237675259, "dateValidity": 1678252075296, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678237675259, + "dateValidity": 1678252075296, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02rv40123oohx6y246yen", "revision_nr": 1, "created": 1697467088276, @@ -21751,7 +27844,11 @@ "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt02rv90126oohx7pbjguoo", "revision_nr": 1, "created": 1697467088282, @@ -21762,7 +27859,11 @@ "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances/IVIP", "content": { "type": 1, - "value": { "available": "7306097.00000000", "symbol": "IVIP", "value": 2344.22 }, + "value": { + "available": "7306097.00000000", + "symbol": "IVIP", + "value": 2344.22 + }, "revision": "lnt02rve0127oohx50x67n30", "revision_nr": 1, "created": 1697467088285, @@ -21771,7 +27872,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02rv90125oohx1sd11inb", "revision_nr": 1, "created": 1697467088288, "modified": 1697467088288 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rv90125oohx1sd11inb", + "revision_nr": 1, + "created": 1697467088288, + "modified": 1697467088288 + } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035/description", @@ -21786,7 +27894,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rvo012boohx8ml9hioo", "revision_nr": 1, "created": 1697467088295, "modified": 1697467088295 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rvo012boohx8ml9hioo", + "revision_nr": 1, + "created": 1697467088295, + "modified": 1697467088295 + } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035", @@ -21800,15 +27917,30 @@ "total_amount": 1000, "history_id": 1684115687035, "id": 1684115687035, - "date_created": { "type": 6, "value": 1684115687035 }, - "date_last_updated": { "type": 6, "value": 1684116686172 }, - "date_of_expiration": { "type": 6, "value": 1686707687035 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684116686172 }, - "money_release_date": { "type": 6, "value": 1684116686172 }, + "date_created": { + "type": 6, + "value": 1684115687035 + }, + "date_last_updated": { + "type": 6, + "value": 1684116686172 + }, + "date_of_expiration": { + "type": 6, + "value": 1686707687035 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684116686172 + }, + "money_release_date": { + "type": 6, + "value": 1684116686172 + }, "money_release_status": "approved", "wasDebited": true }, @@ -21831,7 +27963,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rvx012eoohxaam83l8o", "revision_nr": 1, "created": 1697467088304, "modified": 1697467088304 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rvx012eoohxaam83l8o", + "revision_nr": 1, + "created": 1697467088304, + "modified": 1697467088304 + } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162", @@ -21845,15 +27986,30 @@ "total_amount": 500, "history_id": 1684116712162, "id": 1684116712162, - "date_created": { "type": 6, "value": 1684116712162 }, - "date_last_updated": { "type": 6, "value": 1684116737988 }, - "date_of_expiration": { "type": 6, "value": 1686708712162 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684116737988 }, - "money_release_date": { "type": 6, "value": 1684116737988 }, + "date_created": { + "type": 6, + "value": 1684116712162 + }, + "date_last_updated": { + "type": 6, + "value": 1684116737988 + }, + "date_of_expiration": { + "type": 6, + "value": 1686708712162 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684116737988 + }, + "money_release_date": { + "type": 6, + "value": 1684116737988 + }, "money_release_status": "approved", "wasDebited": true }, @@ -21899,9 +28055,18 @@ "original_amount": 7306097, "total_amount": 7306097, "id": 1684625508072, - "date_created": { "type": 6, "value": 1684625508072 }, - "date_last_updated": { "type": 6, "value": 1684625508072 }, - "date_of_expiration": { "type": 6, "value": 1684625508072 }, + "date_created": { + "type": 6, + "value": 1684625508072 + }, + "date_last_updated": { + "type": 6, + "value": 1684625508072 + }, + "date_of_expiration": { + "type": 6, + "value": 1684625508072 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21929,7 +28094,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rwc012joohx6rjce1la", "revision_nr": 1, "created": 1697467088319, "modified": 1697467088319 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rwc012joohx6rjce1la", + "revision_nr": 1, + "created": 1697467088319, + "modified": 1697467088319 + } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730", @@ -21943,9 +28117,18 @@ "total_amount": 7306097, "history_id": 1685398096730, "id": 1685398096730, - "date_created": { "type": 6, "value": 1685398096730 }, - "date_last_updated": { "type": 6, "value": 1685398096730 }, - "date_of_expiration": { "type": 6, "value": 1685398096730 }, + "date_created": { + "type": 6, + "value": 1685398096730 + }, + "date_last_updated": { + "type": 6, + "value": 1685398096730 + }, + "date_of_expiration": { + "type": 6, + "value": 1685398096730 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -21970,7 +28153,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02rwk012moohxelxg10v8", "revision_nr": 1, "created": 1697467088327, "modified": 1697467088327 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02rwk012moohxelxg10v8", + "revision_nr": 1, + "created": 1697467088327, + "modified": 1697467088327 + } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765", @@ -21984,9 +28176,18 @@ "total_amount": 7306097, "history_id": 1685398151765, "id": 1685398151765, - "date_created": { "type": 6, "value": 1685398151765 }, - "date_last_updated": { "type": 6, "value": 1685398151765 }, - "date_of_expiration": { "type": 6, "value": 1685398151765 }, + "date_created": { + "type": 6, + "value": 1685398151765 + }, + "date_last_updated": { + "type": 6, + "value": 1685398151765 + }, + "date_of_expiration": { + "type": 6, + "value": 1685398151765 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -22000,13 +28201,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rvk0128oohx43fs0bb8", "revision_nr": 1, "created": 1697467088333, "modified": 1697467088333 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rvk0128oohx43fs0bb8", + "revision_nr": 1, + "created": 1697467088333, + "modified": 1697467088333 + } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02rwt012noohx4bcr76cz", "revision_nr": 1, "created": 1697467088336, @@ -22017,7 +28229,13 @@ "path": "ivipcoin-db::__movement_wallet__/027536607098873624", "content": { "type": 1, - "value": { "dataModificacao": 1684115568267, "dateValidity": 1684115568267, "totalValue": 301.2, "currencyType": "USD", "balancesModificacao": 1689822000000 }, + "value": { + "dataModificacao": 1684115568267, + "dateValidity": 1684115568267, + "totalValue": 301.2, + "currencyType": "USD", + "balancesModificacao": 1689822000000 + }, "revision": "lnt02rv90124oohx4b2q3etb", "revision_nr": 1, "created": 1697467088339, @@ -22028,7 +28246,14 @@ "path": "ivipcoin-db::__movement_wallet__/028175815433013172", "content": { "type": 1, - "value": { "dataModificacao": 1678161645477, "dateValidity": 1678176045916, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678161645477, + "dateValidity": 1678176045916, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02rwz012ooohx0ipkco7b", "revision_nr": 1, "created": 1697467088342, @@ -22039,7 +28264,14 @@ "path": "ivipcoin-db::__movement_wallet__/028947617959504292", "content": { "type": 1, - "value": { "dataModificacao": 1678243619498, "dateValidity": 1678254419535, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678243619498, + "dateValidity": 1678254419535, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02rx2012poohxhbtidghk", "revision_nr": 1, "created": 1697467088345, @@ -22050,7 +28282,11 @@ "path": "ivipcoin-db::__movement_wallet__/029287228206681390/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02rx5012roohx9ajn9vw9", "revision_nr": 1, "created": 1697467088347, @@ -22061,7 +28297,13 @@ "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693005005269 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693005005269 + } + }, "revision": "lnt02rx8012uoohx11o97rlg", "revision_nr": 1, "created": 1697467088350, @@ -22123,8 +28365,14 @@ "total_amount": 20, "id": 1690413005269, "history_id": 1690413005269, - "date_created": { "type": 6, "value": 1690413005269 }, - "date_last_updated": { "type": 6, "value": 1690413005269 }, + "date_created": { + "type": 6, + "value": 1690413005269 + }, + "date_last_updated": { + "type": 6, + "value": 1690413005269 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -22142,7 +28390,13 @@ "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693613470147 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693613470147 + } + }, "revision": "lnt02rxo012zoohx9ilo0gp4", "revision_nr": 1, "created": 1697467088367, @@ -22204,8 +28458,14 @@ "total_amount": 20, "id": 1691021470147, "history_id": 1691021470147, - "date_created": { "type": 6, "value": 1691021470147 }, - "date_last_updated": { "type": 6, "value": 1691021470147 }, + "date_created": { + "type": 6, + "value": 1691021470147 + }, + "date_last_updated": { + "type": 6, + "value": 1691021470147 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -22223,7 +28483,13 @@ "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694007318336 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694007318336 + } + }, "revision": "lnt02ry30134oohxfh48adp5", "revision_nr": 1, "created": 1697467088382, @@ -22285,16 +28551,28 @@ "total_amount": 30, "id": 1691415318336, "history_id": 1691415318336, - "date_created": { "type": 6, "value": 1691415318336 }, - "date_last_updated": { "type": 6, "value": 1691415472035 }, + "date_created": { + "type": 6, + "value": 1691415318336 + }, + "date_last_updated": { + "type": 6, + "value": 1691415472035 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691415472035 }, - "money_release_date": { "type": 6, "value": 1691415472035 }, + "date_approved": { + "type": 6, + "value": 1691415472035 + }, + "money_release_date": { + "type": 6, + "value": 1691415472035 + }, "money_release_status": "approved", "wasDebited": true }, @@ -22348,9 +28626,18 @@ "total_amount": 41845, "id": 1691415588273, "history_id": 1691415588273, - "date_created": { "type": 6, "value": 1691415588273 }, - "date_last_updated": { "type": 6, "value": 1691415588273 }, - "date_of_expiration": { "type": 6, "value": 1691415588273 }, + "date_created": { + "type": 6, + "value": 1691415588273 + }, + "date_last_updated": { + "type": 6, + "value": 1691415588273 + }, + "date_of_expiration": { + "type": 6, + "value": 1691415588273 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -22391,7 +28678,11 @@ "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 1255.35 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 1255.35 + }, "revision": "lnt02rz0013goohxgt7k2rbk", "revision_nr": 1, "created": 1697467088415, @@ -22400,7 +28691,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rz0013foohx9l9y3x2s", "revision_nr": 1, "created": 1697467088418, "modified": 1697467088418 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rz0013foohx9l9y3x2s", + "revision_nr": 1, + "created": 1697467088418, + "modified": 1697467088418 + } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details", @@ -22435,17 +28733,32 @@ "total_amount": 40589.65, "id": "1696141267349", "history_id": "1696141267349", - "date_created": { "type": 6, "value": 1696141267349 }, - "date_last_updated": { "type": 6, "value": 1696293156722 }, - "date_of_expiration": { "type": 6, "value": 1696141267349 }, + "date_created": { + "type": 6, + "value": 1696141267349 + }, + "date_last_updated": { + "type": 6, + "value": 1696293156722 + }, + "date_of_expiration": { + "type": 6, + "value": 1696141267349 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1696293156722 }, - "money_release_date": { "type": 6, "value": 1696293156722 }, + "date_approved": { + "type": 6, + "value": 1696293156722 + }, + "money_release_date": { + "type": 6, + "value": 1696293156722 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -22481,7 +28794,11 @@ "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 1255.35 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 1255.35 + }, "revision": "lnt02rzj013moohxb9ct4t25", "revision_nr": 1, "created": 1697467088433, @@ -22490,7 +28807,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02rzj013loohx28hj1hnt", "revision_nr": 1, "created": 1697467088436, "modified": 1697467088436 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02rzj013loohx28hj1hnt", + "revision_nr": 1, + "created": 1697467088436, + "modified": 1697467088436 + } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details", @@ -22525,16 +28849,28 @@ "total_amount": 40589.65, "id": "1696142296852", "history_id": "1696142296852", - "date_created": { "type": 6, "value": 1696142296852 }, - "date_last_updated": { "type": 6, "value": 1696293977233 }, - "date_of_expiration": { "type": 6, "value": 1696142296852 }, + "date_created": { + "type": 6, + "value": 1696142296852 + }, + "date_last_updated": { + "type": 6, + "value": 1696293977233 + }, + "date_of_expiration": { + "type": 6, + "value": 1696142296852 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_amount", - "money_release_date": { "type": 6, "value": 1696293977233 }, + "money_release_date": { + "type": 6, + "value": 1696293977233 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -22546,13 +28882,27 @@ }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history", - "content": { "type": 1, "value": {}, "revision": "lnt02rx7012soohx3vkb4n4m", "revision_nr": 1, "created": 1697467088445, "modified": 1697467088445 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02rx7012soohx3vkb4n4m", + "revision_nr": 1, + "created": 1697467088445, + "modified": 1697467088445 + } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390", "content": { "type": 1, - "value": { "balances": {}, "dateValidity": 1690386695913, "balancesModificacao": { "type": 6, "value": 1697252400000 } }, + "value": { + "balances": {}, + "dateValidity": 1690386695913, + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } + }, "revision": "lnt02rx5012qoohxd5n894id", "revision_nr": 1, "created": 1697467088447, @@ -22563,7 +28913,14 @@ "path": "ivipcoin-db::__movement_wallet__/029673451892467508", "content": { "type": 1, - "value": { "dataModificacao": 1678135581348, "dateValidity": 1678166670994, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678135581348, + "dateValidity": 1678166670994, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02s00013noohxcwmbf5rk", "revision_nr": 1, "created": 1697467088451, @@ -22574,7 +28931,14 @@ "path": "ivipcoin-db::__movement_wallet__/030266248194021460", "content": { "type": 1, - "value": { "dataModificacao": 1684104956115, "dateValidity": 1684104956115, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684104956115, + "dateValidity": 1684104956115, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02s03013ooohxesbi6uha", "revision_nr": 1, "created": 1697467088454, @@ -22585,7 +28949,13 @@ "path": "ivipcoin-db::__movement_wallet__/031498453118469660", "content": { "type": 1, - "value": { "dataModificacao": 1696478671880, "dateValidity": 1696478671929, "balances": {}, "history": {}, "currencyType": "USD" }, + "value": { + "dataModificacao": 1696478671880, + "dateValidity": 1696478671929, + "balances": {}, + "history": {}, + "currencyType": "USD" + }, "revision": "lnt02s06013poohx0cayh621", "revision_nr": 1, "created": 1697467088457, @@ -22596,7 +28966,11 @@ "path": "ivipcoin-db::__movement_wallet__/032980170462535652/balances/IVIP", "content": { "type": 1, - "value": { "available": "5000843.00000000", "symbol": "IVIP", "value": 622.94 }, + "value": { + "available": "5000843.00000000", + "symbol": "IVIP", + "value": 622.94 + }, "revision": "lnt02s09013soohx4vfb8e67", "revision_nr": 1, "created": 1697467088460, @@ -22605,7 +28979,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02s09013roohxa78dereq", "revision_nr": 1, "created": 1697467088463, "modified": 1697467088463 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02s09013roohxa78dereq", + "revision_nr": 1, + "created": 1697467088463, + "modified": 1697467088463 + } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238/description", @@ -22620,7 +29001,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s0i013woohxdkkr6bua", "revision_nr": 1, "created": 1697467088469, "modified": 1697467088469 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s0i013woohxdkkr6bua", + "revision_nr": 1, + "created": 1697467088469, + "modified": 1697467088469 + } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238", @@ -22634,15 +29024,30 @@ "total_amount": 100, "history_id": 1688955478238, "id": 1688955478238, - "date_created": { "type": 6, "value": 1688955478238 }, - "date_last_updated": { "type": 6, "value": 1689002683693 }, - "date_of_expiration": { "type": 6, "value": 1691547478238 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689002683693 }, - "money_release_date": { "type": 6, "value": 1689002683693 }, + "date_created": { + "type": 6, + "value": 1688955478238 + }, + "date_last_updated": { + "type": 6, + "value": 1689002683693 + }, + "date_of_expiration": { + "type": 6, + "value": 1691547478238 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689002683693 + }, + "money_release_date": { + "type": 6, + "value": 1689002683693 + }, "money_release_status": "approved", "wasDebited": true }, @@ -22688,9 +29093,18 @@ "original_amount": 145670, "total_amount": 145670, "id": 1689002980878, - "date_created": { "type": 6, "value": 1689002980878 }, - "date_last_updated": { "type": 6, "value": 1689002980878 }, - "date_of_expiration": { "type": 6, "value": 1689002980878 }, + "date_created": { + "type": 6, + "value": 1689002980878 + }, + "date_last_updated": { + "type": 6, + "value": 1689002980878 + }, + "date_of_expiration": { + "type": 6, + "value": 1689002980878 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -22709,7 +29123,13 @@ "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693784217742 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693784217742 + } + }, "revision": "lnt02s0w0140oohxd51e2b2u", "revision_nr": 1, "created": 1697467088482, @@ -22771,16 +29191,28 @@ "total_amount": 356, "id": 1691192217742, "history_id": 1691192217742, - "date_created": { "type": 6, "value": 1691192217742 }, - "date_last_updated": { "type": 6, "value": 1691249189728 }, + "date_created": { + "type": 6, + "value": 1691192217742 + }, + "date_last_updated": { + "type": 6, + "value": 1691249189728 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691249189728 }, - "money_release_date": { "type": 6, "value": 1691249189728 }, + "date_approved": { + "type": 6, + "value": 1691249189728 + }, + "money_release_date": { + "type": 6, + "value": 1691249189728 + }, "money_release_status": "approved", "wasDebited": true }, @@ -22834,9 +29266,18 @@ "total_amount": 505200, "id": 1691277371847, "history_id": 1691277371847, - "date_created": { "type": 6, "value": 1691277371847 }, - "date_last_updated": { "type": 6, "value": 1691277371847 }, - "date_of_expiration": { "type": 6, "value": 1691277371847 }, + "date_created": { + "type": 6, + "value": 1691277371847 + }, + "date_last_updated": { + "type": 6, + "value": 1691277371847 + }, + "date_of_expiration": { + "type": 6, + "value": 1691277371847 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -22855,7 +29296,13 @@ "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694307306900 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694307306900 + } + }, "revision": "lnt02s1m0148oohxea5w23x3", "revision_nr": 1, "created": 1697467088509, @@ -22917,16 +29364,28 @@ "total_amount": 1800, "id": 1691715306900, "history_id": 1691715306900, - "date_created": { "type": 6, "value": 1691715306900 }, - "date_last_updated": { "type": 6, "value": 1691807444902 }, + "date_created": { + "type": 6, + "value": 1691715306900 + }, + "date_last_updated": { + "type": 6, + "value": 1691807444902 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691807444902 }, - "money_release_date": { "type": 6, "value": 1691807444902 }, + "date_approved": { + "type": 6, + "value": 1691807444902 + }, + "money_release_date": { + "type": 6, + "value": 1691807444902 + }, "money_release_status": "approved", "wasDebited": true }, @@ -22980,9 +29439,18 @@ "total_amount": 3402797, "id": 1691847078457, "history_id": 1691847078457, - "date_created": { "type": 6, "value": 1691847078457 }, - "date_last_updated": { "type": 6, "value": 1691847078457 }, - "date_of_expiration": { "type": 6, "value": 1691847078457 }, + "date_created": { + "type": 6, + "value": 1691847078457 + }, + "date_last_updated": { + "type": 6, + "value": 1691847078457 + }, + "date_of_expiration": { + "type": 6, + "value": 1691847078457 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -23001,7 +29469,13 @@ "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698279005865 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698279005865 + } + }, "revision": "lnt02s2c014goohx281t68si", "revision_nr": 1, "created": 1697467088535, @@ -23064,16 +29538,28 @@ "total_amount": 647176, "id": "1695687005865", "history_id": "1695687005865", - "date_created": { "type": 6, "value": 1695687005865 }, - "date_last_updated": { "type": 6, "value": 1695687878463 }, + "date_created": { + "type": 6, + "value": 1695687005865 + }, + "date_last_updated": { + "type": 6, + "value": 1695687878463 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1695687878463 }, - "money_release_date": { "type": 6, "value": 1695687878463 }, + "date_approved": { + "type": 6, + "value": 1695687878463 + }, + "money_release_date": { + "type": 6, + "value": 1695687878463 + }, "money_release_status": "approved", "wasDebited": true }, @@ -23087,7 +29573,13 @@ "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698443432960 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698443432960 + } + }, "revision": "lnt02s2s014loohxefj7gqu5", "revision_nr": 1, "created": 1697467088551, @@ -23150,16 +29642,28 @@ "total_amount": 300000, "id": "1695851432961", "history_id": "1695851432961", - "date_created": { "type": 6, "value": 1695851432961 }, - "date_last_updated": { "type": 6, "value": 1695934087672 }, + "date_created": { + "type": 6, + "value": 1695851432961 + }, + "date_last_updated": { + "type": 6, + "value": 1695934087672 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1695934087672 }, - "money_release_date": { "type": 6, "value": 1695934087672 }, + "date_approved": { + "type": 6, + "value": 1695934087672 + }, + "money_release_date": { + "type": 6, + "value": 1695934087672 + }, "money_release_status": "approved", "wasDebited": true }, @@ -23171,13 +29675,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history", - "content": { "type": 1, "value": {}, "revision": "lnt02s0f013toohx7jgy6jyr", "revision_nr": 1, "created": 1697467088567, "modified": 1697467088567 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02s0f013toohx7jgy6jyr", + "revision_nr": 1, + "created": 1697467088567, + "modified": 1697467088567 + } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02s3b014poohxggvwefeo", "revision_nr": 1, "created": 1697467088570, @@ -23188,7 +29703,16 @@ "path": "ivipcoin-db::__movement_wallet__/032980170462535652", "content": { "type": 1, - "value": { "dataModificacao": 1688955354063, "dateValidity": 1688955354063, "totalValue": 20.42, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696906800000 } }, + "value": { + "dataModificacao": 1688955354063, + "dateValidity": 1688955354063, + "totalValue": 20.42, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696906800000 + } + }, "revision": "lnt02s09013qoohxgb77a6wy", "revision_nr": 1, "created": 1697467088573, @@ -23199,7 +29723,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances/BRL", "content": { "type": 1, - "value": { "available": "62.42718182", "symbol": "BRL", "value": 12.2 }, + "value": { + "available": "62.42718182", + "symbol": "BRL", + "value": 12.2 + }, "revision": "lnt02s3h014soohxhmqydvtp", "revision_nr": 1, "created": 1697467088576, @@ -23210,7 +29738,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances/IVIP", "content": { "type": 1, - "value": { "available": "302069023.00000000", "symbol": "IVIP", "value": 32205.5 }, + "value": { + "available": "302069023.00000000", + "symbol": "IVIP", + "value": 32205.5 + }, "revision": "lnt02s3k014toohxaxghbzdu", "revision_nr": 1, "created": 1697467088579, @@ -23219,7 +29751,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02s3h014roohx7m1scyej", "revision_nr": 1, "created": 1697467088581, "modified": 1697467088581 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02s3h014roohx7m1scyej", + "revision_nr": 1, + "created": 1697467088581, + "modified": 1697467088581 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525/description", @@ -23234,7 +29773,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s3t014xoohxbwn19hvg", "revision_nr": 1, "created": 1697467088588, "modified": 1697467088588 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s3t014xoohxbwn19hvg", + "revision_nr": 1, + "created": 1697467088588, + "modified": 1697467088588 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525", @@ -23248,15 +29796,30 @@ "total_amount": 5510, "history_id": 1677785461525, "id": 1677785461525, - "date_created": { "type": 6, "value": 1677785461525 }, - "date_last_updated": { "type": 6, "value": 1677793984457 }, - "date_of_expiration": { "type": 6, "value": 1680377461525 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677793984457 }, - "money_release_date": { "type": 6, "value": 1677793984457 }, + "date_created": { + "type": 6, + "value": 1677785461525 + }, + "date_last_updated": { + "type": 6, + "value": 1677793984457 + }, + "date_of_expiration": { + "type": 6, + "value": 1680377461525 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677793984457 + }, + "money_release_date": { + "type": 6, + "value": 1677793984457 + }, "money_release_status": "approved", "wasDebited": true }, @@ -23279,7 +29842,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s430150oohxc63s0er4", "revision_nr": 1, "created": 1697467088598, "modified": 1697467088598 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s430150oohxc63s0er4", + "revision_nr": 1, + "created": 1697467088598, + "modified": 1697467088598 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675", @@ -23293,15 +29865,30 @@ "total_amount": 6500, "history_id": 1677785378675, "id": 1677785378675, - "date_created": { "type": 6, "value": 1677785378675 }, - "date_last_updated": { "type": 6, "value": 1677794043971 }, - "date_of_expiration": { "type": 6, "value": 1680377378675 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677794043971 }, - "money_release_date": { "type": 6, "value": 1677794043971 }, + "date_created": { + "type": 6, + "value": 1677785378675 + }, + "date_last_updated": { + "type": 6, + "value": 1677794043971 + }, + "date_of_expiration": { + "type": 6, + "value": 1680377378675 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677794043971 + }, + "money_release_date": { + "type": 6, + "value": 1677794043971 + }, "money_release_status": "approved", "wasDebited": true }, @@ -23324,7 +29911,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s4d0153oohx42dn1cwl", "revision_nr": 1, "created": 1697467088609, "modified": 1697467088609 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s4d0153oohx42dn1cwl", + "revision_nr": 1, + "created": 1697467088609, + "modified": 1697467088609 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938", @@ -23338,15 +29934,30 @@ "total_amount": 7700, "history_id": 1677785194938, "id": 1677785194938, - "date_created": { "type": 6, "value": 1677785194938 }, - "date_last_updated": { "type": 6, "value": 1677794098990 }, - "date_of_expiration": { "type": 6, "value": 1680377194938 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677794098990 }, - "money_release_date": { "type": 6, "value": 1677794098990 }, + "date_created": { + "type": 6, + "value": 1677785194938 + }, + "date_last_updated": { + "type": 6, + "value": 1677794098990 + }, + "date_of_expiration": { + "type": 6, + "value": 1680377194938 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677794098990 + }, + "money_release_date": { + "type": 6, + "value": 1677794098990 + }, "money_release_status": "approved", "wasDebited": true }, @@ -23369,7 +29980,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s4n0156oohx0hzd8dw8", "revision_nr": 1, "created": 1697467088618, "modified": 1697467088618 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s4n0156oohx0hzd8dw8", + "revision_nr": 1, + "created": 1697467088618, + "modified": 1697467088618 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608", @@ -23383,15 +30003,30 @@ "total_amount": 9900, "history_id": 1677748547608, "id": 1677748547608, - "date_created": { "type": 6, "value": 1677748547608 }, - "date_last_updated": { "type": 6, "value": 1677760522227 }, - "date_of_expiration": { "type": 6, "value": 1680340547608 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677760522227 }, - "money_release_date": { "type": 6, "value": 1677760522227 }, + "date_created": { + "type": 6, + "value": 1677748547608 + }, + "date_last_updated": { + "type": 6, + "value": 1677760522227 + }, + "date_of_expiration": { + "type": 6, + "value": 1680340547608 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677760522227 + }, + "money_release_date": { + "type": 6, + "value": 1677760522227 + }, "money_release_status": "approved", "wasDebited": true }, @@ -23414,7 +30049,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s4x0159oohx6kjy3xjw", "revision_nr": 1, "created": 1697467088628, "modified": 1697467088628 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s4x0159oohx6kjy3xjw", + "revision_nr": 1, + "created": 1697467088628, + "modified": 1697467088628 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604", @@ -23428,15 +30072,30 @@ "total_amount": 100, "history_id": 1677748489604, "id": 1677748489604, - "date_created": { "type": 6, "value": 1677748489604 }, - "date_last_updated": { "type": 6, "value": 1677755475426 }, - "date_of_expiration": { "type": 6, "value": 1680340489604 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677755475426 }, - "money_release_date": { "type": 6, "value": 1677755475426 }, + "date_created": { + "type": 6, + "value": 1677748489604 + }, + "date_last_updated": { + "type": 6, + "value": 1677755475426 + }, + "date_of_expiration": { + "type": 6, + "value": 1680340489604 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677755475426 + }, + "money_release_date": { + "type": 6, + "value": 1677755475426 + }, "money_release_status": "approved", "wasDebited": true }, @@ -23459,7 +30118,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s56015coohx15wk0ar3", "revision_nr": 1, "created": 1697467088637, "modified": 1697467088637 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s56015coohx15wk0ar3", + "revision_nr": 1, + "created": 1697467088637, + "modified": 1697467088637 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293", @@ -23473,15 +30141,30 @@ "total_amount": 12000, "history_id": 1678472649293, "id": 1678472649293, - "date_created": { "type": 6, "value": 1678472649293 }, - "date_last_updated": { "type": 6, "value": 1678539415180 }, - "date_of_expiration": { "type": 6, "value": 1681064649293 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678539415180 }, - "money_release_date": { "type": 6, "value": 1678539415180 }, + "date_created": { + "type": 6, + "value": 1678472649293 + }, + "date_last_updated": { + "type": 6, + "value": 1678539415180 + }, + "date_of_expiration": { + "type": 6, + "value": 1681064649293 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678539415180 + }, + "money_release_date": { + "type": 6, + "value": 1678539415180 + }, "money_release_status": "approved", "wasDebited": true }, @@ -23527,9 +30210,18 @@ "original_amount": 71460340, "total_amount": 71460340, "id": 1678153842542, - "date_created": { "type": 6, "value": 1678153842542 }, - "date_last_updated": { "type": 6, "value": 1678153842542 }, - "date_of_expiration": { "type": 6, "value": 1678153842542 }, + "date_created": { + "type": 6, + "value": 1678153842542 + }, + "date_last_updated": { + "type": 6, + "value": 1678153842542 + }, + "date_of_expiration": { + "type": 6, + "value": 1678153842542 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -23580,9 +30272,18 @@ "original_amount": 71460340, "total_amount": 71460340, "id": 1678153902578, - "date_created": { "type": 6, "value": 1678153902578 }, - "date_last_updated": { "type": 6, "value": 1678153902578 }, - "date_of_expiration": { "type": 6, "value": 1678153902578 }, + "date_created": { + "type": 6, + "value": 1678153902578 + }, + "date_last_updated": { + "type": 6, + "value": 1678153902578 + }, + "date_of_expiration": { + "type": 6, + "value": 1678153902578 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -23645,7 +30346,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 19.8 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 19.8 + }, "revision": "lnt02s62015ooohxdpwlamzj", "revision_nr": 1, "created": 1697467088669, @@ -23654,13 +30359,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02s62015noohxc1hxajrv", "revision_nr": 1, "created": 1697467088674, "modified": 1697467088674 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02s62015noohxc1hxajrv", + "revision_nr": 1, + "created": 1697467088674, + "modified": 1697467088674 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, "revision": "lnt02s6a015qoohxd0at4jkb", "revision_nr": 1, "created": 1697467088677, @@ -23669,13 +30383,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02s6a015poohx1ytfhja0", "revision_nr": 1, "created": 1697467088680, "modified": 1697467088680 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02s6a015poohx1ytfhja0", + "revision_nr": 1, + "created": 1697467088680, + "modified": 1697467088680 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 2019.8, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 2019.8, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02s5s015joohxecgd3etz", "revision_nr": 1, "created": 1697467088683, @@ -23694,9 +30423,18 @@ "total_amount": 2019.8, "history_id": 1677379374499, "id": 1312813383, - "date_created": { "type": 6, "value": 1677379375196 }, - "date_last_updated": { "type": 6, "value": 1677379375196 }, - "date_of_expiration": { "type": 6, "value": 1677465774972 }, + "date_created": { + "type": 6, + "value": 1677379375196 + }, + "date_last_updated": { + "type": 6, + "value": 1677379375196 + }, + "date_of_expiration": { + "type": 6, + "value": 1677465774972 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -23757,7 +30495,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 19.8 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 19.8 + }, "revision": "lnt02s6z015yoohx79cveko8", "revision_nr": 1, "created": 1697467088702, @@ -23766,13 +30508,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02s6z015xoohx70a4ejpt", "revision_nr": 1, "created": 1697467088706, "modified": 1697467088706 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02s6z015xoohx70a4ejpt", + "revision_nr": 1, + "created": 1697467088706, + "modified": 1697467088706 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, "revision": "lnt02s760160oohx0pdc59dh", "revision_nr": 1, "created": 1697467088709, @@ -23781,13 +30532,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02s76015zoohxambpdqg4", "revision_nr": 1, "created": 1697467088712, "modified": 1697467088712 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02s76015zoohxambpdqg4", + "revision_nr": 1, + "created": 1697467088712, + "modified": 1697467088712 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 2019.8, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 2019.8, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02s6q015toohx11epb4bb", "revision_nr": 1, "created": 1697467088715, @@ -23806,9 +30572,18 @@ "total_amount": 2019.8, "history_id": 1677379588878, "id": 1312813393, - "date_created": { "type": 6, "value": 1677379589568 }, - "date_last_updated": { "type": 6, "value": 1677379589568 }, - "date_of_expiration": { "type": 6, "value": 1677465989346 }, + "date_created": { + "type": 6, + "value": 1677379589568 + }, + "date_last_updated": { + "type": 6, + "value": 1677379589568 + }, + "date_of_expiration": { + "type": 6, + "value": 1677465989346 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -23857,9 +30632,18 @@ "original_amount": 126385600, "total_amount": 126385600, "id": 1679266944717, - "date_created": { "type": 6, "value": 1679266944717 }, - "date_last_updated": { "type": 6, "value": 1679266944717 }, - "date_of_expiration": { "type": 6, "value": 1679266944717 }, + "date_created": { + "type": 6, + "value": 1679266944717 + }, + "date_last_updated": { + "type": 6, + "value": 1679266944717 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266944717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -23889,7 +30673,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 51.1 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 51.1 + }, "revision": "lnt02s7t0167oohxg1xg8y0a", "revision_nr": 1, "created": 1697467088732, @@ -23898,11 +30686,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02s7t0166oohx8ebhhfbh", "revision_nr": 1, "created": 1697467088735, "modified": 1697467088735 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02s7t0166oohx8ebhhfbh", + "revision_nr": 1, + "created": 1697467088735, + "modified": 1697467088735 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details", - "content": { "type": 1, "value": {}, "revision": "lnt02s7t0165oohxfjtdb6nm", "revision_nr": 1, "created": 1697467088739, "modified": 1697467088739 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02s7t0165oohxfjtdb6nm", + "revision_nr": 1, + "created": 1697467088739, + "modified": 1697467088739 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395", @@ -23916,9 +30718,18 @@ "total_amount": 2606.1, "history_id": 1679852406395, "id": 1679852406395, - "date_created": { "type": 6, "value": 1679852406395 }, - "date_last_updated": { "type": 6, "value": 1679852406395 }, - "date_of_expiration": { "type": 6, "value": 1682444406395 }, + "date_created": { + "type": 6, + "value": 1679852406395 + }, + "date_last_updated": { + "type": 6, + "value": 1679852406395 + }, + "date_of_expiration": { + "type": 6, + "value": 1682444406395 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -23967,9 +30778,18 @@ "original_amount": 13606977, "total_amount": 13606977, "id": 1679872071598, - "date_created": { "type": 6, "value": 1679872071598 }, - "date_last_updated": { "type": 6, "value": 1679872071598 }, - "date_of_expiration": { "type": 6, "value": 1679872071598 }, + "date_created": { + "type": 6, + "value": 1679872071598 + }, + "date_last_updated": { + "type": 6, + "value": 1679872071598 + }, + "date_of_expiration": { + "type": 6, + "value": 1679872071598 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -23999,7 +30819,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 52.2 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 52.2 + }, "revision": "lnt02s8g016eoohx62sveicl", "revision_nr": 1, "created": 1697467088755, @@ -24008,11 +30832,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02s8g016doohxh845gt4b", "revision_nr": 1, "created": 1697467088759, "modified": 1697467088759 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02s8g016doohxh845gt4b", + "revision_nr": 1, + "created": 1697467088759, + "modified": 1697467088759 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details", - "content": { "type": 1, "value": {}, "revision": "lnt02s8g016coohxbijj1994", "revision_nr": 1, "created": 1697467088762, "modified": 1697467088762 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02s8g016coohxbijj1994", + "revision_nr": 1, + "created": 1697467088762, + "modified": 1697467088762 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250", @@ -24026,9 +30864,18 @@ "total_amount": 2662.2, "history_id": 1682964262250, "id": 1682964262250, - "date_created": { "type": 6, "value": 1682964262250 }, - "date_last_updated": { "type": 6, "value": 1682964262250 }, - "date_of_expiration": { "type": 6, "value": 1685556262250 }, + "date_created": { + "type": 6, + "value": 1682964262250 + }, + "date_last_updated": { + "type": 6, + "value": 1682964262250 + }, + "date_of_expiration": { + "type": 6, + "value": 1685556262250 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -24054,7 +30901,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s8w016hoohxat3r0rgx", "revision_nr": 1, "created": 1697467088771, "modified": 1697467088771 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s8w016hoohxat3r0rgx", + "revision_nr": 1, + "created": 1697467088771, + "modified": 1697467088771 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725", @@ -24068,15 +30924,30 @@ "total_amount": 2610, "history_id": 1682964678725, "id": 1682964678725, - "date_created": { "type": 6, "value": 1682964678725 }, - "date_last_updated": { "type": 6, "value": 1682965176565 }, - "date_of_expiration": { "type": 6, "value": 1685556678725 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1682965176565 }, - "money_release_date": { "type": 6, "value": 1682965176565 }, + "date_created": { + "type": 6, + "value": 1682964678725 + }, + "date_last_updated": { + "type": 6, + "value": 1682965176565 + }, + "date_of_expiration": { + "type": 6, + "value": 1685556678725 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1682965176565 + }, + "money_release_date": { + "type": 6, + "value": 1682965176565 + }, "money_release_status": "approved", "wasDebited": true }, @@ -24136,9 +31007,18 @@ "total_amount": 2606.1, "id": 1682965648718, "contract_id": "1679852406395", - "date_created": { "type": 6, "value": 1682965648718 }, - "date_last_updated": { "type": 6, "value": 1682965648718 }, - "date_of_expiration": { "type": 6, "value": 1682965648718 }, + "date_created": { + "type": 6, + "value": 1682965648718 + }, + "date_last_updated": { + "type": 6, + "value": 1682965648718 + }, + "date_of_expiration": { + "type": 6, + "value": 1682965648718 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -24165,7 +31045,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02s9g016noohxcv3dh5rw", "revision_nr": 1, "created": 1697467088792, "modified": 1697467088792 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02s9g016noohxcv3dh5rw", + "revision_nr": 1, + "created": 1697467088792, + "modified": 1697467088792 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849", @@ -24179,15 +31068,30 @@ "total_amount": 50, "history_id": 1683077498849, "id": 1683077498849, - "date_created": { "type": 6, "value": 1683077498849 }, - "date_last_updated": { "type": 6, "value": 1683078275310 }, - "date_of_expiration": { "type": 6, "value": 1685669498849 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683078275310 }, - "money_release_date": { "type": 6, "value": 1683078275310 }, + "date_created": { + "type": 6, + "value": 1683077498849 + }, + "date_last_updated": { + "type": 6, + "value": 1683078275310 + }, + "date_of_expiration": { + "type": 6, + "value": 1685669498849 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683078275310 + }, + "money_release_date": { + "type": 6, + "value": 1683078275310 + }, "money_release_status": "approved", "wasDebited": true }, @@ -24247,9 +31151,18 @@ "total_amount": 2662.2, "id": 1683078471570, "contract_id": "1682964262250", - "date_created": { "type": 6, "value": 1683078471570 }, - "date_last_updated": { "type": 6, "value": 1683078471570 }, - "date_of_expiration": { "type": 6, "value": 1683078471570 }, + "date_created": { + "type": 6, + "value": 1683078471570 + }, + "date_last_updated": { + "type": 6, + "value": 1683078471570 + }, + "date_of_expiration": { + "type": 6, + "value": 1683078471570 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -24278,7 +31191,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02sa1016voohxfjj5bj5t", "revision_nr": 1, "created": 1697467088812, @@ -24287,11 +31204,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sa1016uoohxfqgu4j9k", "revision_nr": 1, "created": 1697467088816, "modified": 1697467088816 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sa1016uoohxfqgu4j9k", + "revision_nr": 1, + "created": 1697467088816, + "modified": 1697467088816 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details", - "content": { "type": 1, "value": {}, "revision": "lnt02sa1016toohx317ngu7o", "revision_nr": 1, "created": 1697467088819, "modified": 1697467088819 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sa1016toohx317ngu7o", + "revision_nr": 1, + "created": 1697467088819, + "modified": 1697467088819 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834", @@ -24305,9 +31236,18 @@ "total_amount": 13300, "history_id": 1683078539834, "id": 1683078539834, - "date_created": { "type": 6, "value": 1683078539834 }, - "date_last_updated": { "type": 6, "value": 1683078539834 }, - "date_of_expiration": { "type": 6, "value": 1685670539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, + "date_last_updated": { + "type": 6, + "value": 1683078539834 + }, + "date_of_expiration": { + "type": 6, + "value": 1685670539834 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -24356,9 +31296,18 @@ "original_amount": 54049325, "total_amount": 54049325, "id": 1684018958577, - "date_created": { "type": 6, "value": 1684018958577 }, - "date_last_updated": { "type": 6, "value": 1684018958577 }, - "date_of_expiration": { "type": 6, "value": 1684018958577 }, + "date_created": { + "type": 6, + "value": 1684018958577 + }, + "date_last_updated": { + "type": 6, + "value": 1684018958577 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018958577 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24420,9 +31369,18 @@ "original_amount": 369625820, "total_amount": 369625820, "id": 1684158157715, - "date_created": { "type": 6, "value": 1684158157715 }, - "date_last_updated": { "type": 6, "value": 1684158157715 }, - "date_of_expiration": { "type": 6, "value": 1684158157715 }, + "date_created": { + "type": 6, + "value": 1684158157715 + }, + "date_last_updated": { + "type": 6, + "value": 1684158157715 + }, + "date_of_expiration": { + "type": 6, + "value": 1684158157715 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24483,9 +31441,18 @@ "original_amount": 3989184, "total_amount": 3989184, "id": 1686924794730, - "date_created": { "type": 6, "value": 1686924794730 }, - "date_last_updated": { "type": 6, "value": 1686924794730 }, - "date_of_expiration": { "type": 6, "value": 1686924794730 }, + "date_created": { + "type": 6, + "value": 1686924794730 + }, + "date_last_updated": { + "type": 6, + "value": 1686924794730 + }, + "date_of_expiration": { + "type": 6, + "value": 1686924794730 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24546,9 +31513,18 @@ "original_amount": 35902602, "total_amount": 35902602, "id": 1686924859436, - "date_created": { "type": 6, "value": 1686924859436 }, - "date_last_updated": { "type": 6, "value": 1686924859436 }, - "date_of_expiration": { "type": 6, "value": 1686924859436 }, + "date_created": { + "type": 6, + "value": 1686924859436 + }, + "date_last_updated": { + "type": 6, + "value": 1686924859436 + }, + "date_of_expiration": { + "type": 6, + "value": 1686924859436 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24575,7 +31551,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02sbl0179oohxh9x80d6h", "revision_nr": 1, "created": 1697467088868, "modified": 1697467088868 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02sbl0179oohxh9x80d6h", + "revision_nr": 1, + "created": 1697467088868, + "modified": 1697467088868 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178", @@ -24589,15 +31574,30 @@ "total_amount": 1735, "history_id": 1688993449178, "id": 1688993449178, - "date_created": { "type": 6, "value": 1688993449178 }, - "date_last_updated": { "type": 6, "value": 1689021800593 }, - "date_of_expiration": { "type": 6, "value": 1691585449178 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689021800593 }, - "money_release_date": { "type": 6, "value": 1689021800593 }, + "date_created": { + "type": 6, + "value": 1688993449178 + }, + "date_last_updated": { + "type": 6, + "value": 1689021800593 + }, + "date_of_expiration": { + "type": 6, + "value": 1691585449178 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689021800593 + }, + "money_release_date": { + "type": 6, + "value": 1689021800593 + }, "money_release_status": "approved", "wasDebited": true }, @@ -24657,9 +31657,18 @@ "total_amount": 1209.091, "id": 1689023462249, "contract_id": "1683078539834", - "date_created": { "type": 6, "value": 1689023462249 }, - "date_last_updated": { "type": 6, "value": 1689023462249 }, - "date_of_expiration": { "type": 6, "value": 1689023462249 }, + "date_created": { + "type": 6, + "value": 1689023462249 + }, + "date_last_updated": { + "type": 6, + "value": 1689023462249 + }, + "date_of_expiration": { + "type": 6, + "value": 1689023462249 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -24709,9 +31718,18 @@ "original_amount": 23038, "total_amount": 23038, "id": 1689027294801, - "date_created": { "type": 6, "value": 1689027294801 }, - "date_last_updated": { "type": 6, "value": 1689027294801 }, - "date_of_expiration": { "type": 6, "value": 1689027294801 }, + "date_created": { + "type": 6, + "value": 1689027294801 + }, + "date_last_updated": { + "type": 6, + "value": 1689027294801 + }, + "date_of_expiration": { + "type": 6, + "value": 1689027294801 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24762,9 +31780,18 @@ "original_amount": 10892, "total_amount": 10892, "id": 1689119838635, - "date_created": { "type": 6, "value": 1689119838635 }, - "date_last_updated": { "type": 6, "value": 1689119838635 }, - "date_of_expiration": { "type": 6, "value": 1689119838635 }, + "date_created": { + "type": 6, + "value": 1689119838635 + }, + "date_last_updated": { + "type": 6, + "value": 1689119838635 + }, + "date_of_expiration": { + "type": 6, + "value": 1689119838635 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24815,9 +31842,18 @@ "original_amount": 44060, "total_amount": 44060, "id": 1689121233961, - "date_created": { "type": 6, "value": 1689121233961 }, - "date_last_updated": { "type": 6, "value": 1689121233961 }, - "date_of_expiration": { "type": 6, "value": 1689121233961 }, + "date_created": { + "type": 6, + "value": 1689121233961 + }, + "date_last_updated": { + "type": 6, + "value": 1689121233961 + }, + "date_of_expiration": { + "type": 6, + "value": 1689121233961 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24868,9 +31904,18 @@ "original_amount": 9455, "total_amount": 9455, "id": 1689164526021, - "date_created": { "type": 6, "value": 1689164526021 }, - "date_last_updated": { "type": 6, "value": 1689164526021 }, - "date_of_expiration": { "type": 6, "value": 1689164526021 }, + "date_created": { + "type": 6, + "value": 1689164526021 + }, + "date_last_updated": { + "type": 6, + "value": 1689164526021 + }, + "date_of_expiration": { + "type": 6, + "value": 1689164526021 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24921,9 +31966,18 @@ "original_amount": 12818, "total_amount": 12818, "id": 1689704009270, - "date_created": { "type": 6, "value": 1689704009270 }, - "date_last_updated": { "type": 6, "value": 1689704009270 }, - "date_of_expiration": { "type": 6, "value": 1689704009270 }, + "date_created": { + "type": 6, + "value": 1689704009270 + }, + "date_last_updated": { + "type": 6, + "value": 1689704009270 + }, + "date_of_expiration": { + "type": 6, + "value": 1689704009270 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24974,9 +32028,18 @@ "original_amount": 82033, "total_amount": 82033, "id": 1690245422296, - "date_created": { "type": 6, "value": 1690245422296 }, - "date_last_updated": { "type": 6, "value": 1690245422296 }, - "date_of_expiration": { "type": 6, "value": 1690245422296 }, + "date_created": { + "type": 6, + "value": 1690245422296 + }, + "date_last_updated": { + "type": 6, + "value": 1690245422296 + }, + "date_of_expiration": { + "type": 6, + "value": 1690245422296 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -25027,9 +32090,18 @@ "original_amount": 16360, "total_amount": 16360, "id": 1690245659912, - "date_created": { "type": 6, "value": 1690245659912 }, - "date_last_updated": { "type": 6, "value": 1690245659912 }, - "date_of_expiration": { "type": 6, "value": 1690245659912 }, + "date_created": { + "type": 6, + "value": 1690245659912 + }, + "date_last_updated": { + "type": 6, + "value": 1690245659912 + }, + "date_of_expiration": { + "type": 6, + "value": 1690245659912 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -25088,9 +32160,18 @@ "total_amount": 23044, "id": 1690477890638, "history_id": 1690477890638, - "date_created": { "type": 6, "value": 1690477890638 }, - "date_last_updated": { "type": 6, "value": 1690477890638 }, - "date_of_expiration": { "type": 6, "value": 1690477890638 }, + "date_created": { + "type": 6, + "value": 1690477890638 + }, + "date_last_updated": { + "type": 6, + "value": 1690477890638 + }, + "date_of_expiration": { + "type": 6, + "value": 1690477890638 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -25149,9 +32230,18 @@ "total_amount": 103259, "id": 1690581074985, "history_id": 1690581074985, - "date_created": { "type": 6, "value": 1690581074985 }, - "date_last_updated": { "type": 6, "value": 1690581074985 }, - "date_of_expiration": { "type": 6, "value": 1690581074985 }, + "date_created": { + "type": 6, + "value": 1690581074985 + }, + "date_last_updated": { + "type": 6, + "value": 1690581074985 + }, + "date_of_expiration": { + "type": 6, + "value": 1690581074985 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -25210,9 +32300,18 @@ "total_amount": 55731, "id": 1690912306732, "history_id": 1690912306732, - "date_created": { "type": 6, "value": 1690912306732 }, - "date_last_updated": { "type": 6, "value": 1690912306732 }, - "date_of_expiration": { "type": 6, "value": 1690912306732 }, + "date_created": { + "type": 6, + "value": 1690912306732 + }, + "date_last_updated": { + "type": 6, + "value": 1690912306732 + }, + "date_of_expiration": { + "type": 6, + "value": 1690912306732 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -25282,9 +32381,18 @@ "total_amount": 7000000, "id": 1691091813497, "history_id": 1691091813497, - "date_created": { "type": 6, "value": 1691091813497 }, - "date_last_updated": { "type": 6, "value": 1691091813497 }, - "date_of_expiration": { "type": 6, "value": 1693770213496 }, + "date_created": { + "type": 6, + "value": 1691091813497 + }, + "date_last_updated": { + "type": 6, + "value": 1691091813497 + }, + "date_of_expiration": { + "type": 6, + "value": 1693770213496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -25342,9 +32450,18 @@ "total_amount": 61311, "id": 1691190824646, "history_id": 1691190824646, - "date_created": { "type": 6, "value": 1691190824646 }, - "date_last_updated": { "type": 6, "value": 1691190824646 }, - "date_of_expiration": { "type": 6, "value": 1691190824646 }, + "date_created": { + "type": 6, + "value": 1691190824646 + }, + "date_last_updated": { + "type": 6, + "value": 1691190824646 + }, + "date_of_expiration": { + "type": 6, + "value": 1691190824646 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -25363,7 +32480,13 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695582792970 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695582792970 + } + }, "revision": "lnt02sf30188oohx7yiv5abu", "revision_nr": 1, "created": 1697467088995, @@ -25425,8 +32548,14 @@ "total_amount": 2000, "id": "1692990792970", "history_id": "1692990792970", - "date_created": { "type": 6, "value": 1692990792970 }, - "date_last_updated": { "type": 6, "value": 1692990792970 }, + "date_created": { + "type": 6, + "value": 1692990792970 + }, + "date_last_updated": { + "type": 6, + "value": 1692990792970 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -25495,9 +32624,18 @@ "total_amount": 7140000, "id": "1693770411115", "history_id": "1693770411115", - "date_created": { "type": 6, "value": 1693770411115 }, - "date_last_updated": { "type": 6, "value": 1693770411115 }, - "date_of_expiration": { "type": 6, "value": 1693770411115 }, + "date_created": { + "type": 6, + "value": 1693770411115 + }, + "date_last_updated": { + "type": 6, + "value": 1693770411115 + }, + "date_of_expiration": { + "type": 6, + "value": 1693770411115 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -25515,7 +32653,13 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697107013081 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697107013081 + } + }, "revision": "lnt02sfy018hoohx1bbf1sob", "revision_nr": 1, "created": 1697467089026, @@ -25577,8 +32721,14 @@ "total_amount": 2000, "id": "1694515013082", "history_id": "1694515013082", - "date_created": { "type": 6, "value": 1694515013082 }, - "date_last_updated": { "type": 6, "value": 1694515013082 }, + "date_created": { + "type": 6, + "value": 1694515013082 + }, + "date_last_updated": { + "type": 6, + "value": 1694515013082 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -25618,7 +32768,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 30 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 30 + }, "revision": "lnt02sgo018qoohxbnv29t4o", "revision_nr": 1, "created": 1697467089051, @@ -25627,7 +32781,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sgo018poohx1flk1ow4", "revision_nr": 1, "created": 1697467089054, "modified": 1697467089054 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sgo018poohx1flk1ow4", + "revision_nr": 1, + "created": 1697467089054, + "modified": 1697467089054 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details", @@ -25661,17 +32822,32 @@ "total_amount": 970, "id": "1694563336129", "history_id": "1694563336129", - "date_created": { "type": 6, "value": 1694563336129 }, - "date_last_updated": { "type": 6, "value": 1695128598738 }, - "date_of_expiration": { "type": 6, "value": 1694563336129 }, + "date_created": { + "type": 6, + "value": 1694563336129 + }, + "date_last_updated": { + "type": 6, + "value": 1695128598738 + }, + "date_of_expiration": { + "type": 6, + "value": 1694563336129 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1695128598738 }, - "money_release_date": { "type": 6, "value": 1695128598738 }, + "date_approved": { + "type": 6, + "value": 1695128598738 + }, + "money_release_date": { + "type": 6, + "value": 1695128598738 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -25685,7 +32861,13 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697194446900 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697194446900 + } + }, "revision": "lnt02sh1018soohx5sn9bnvu", "revision_nr": 1, "created": 1697467089064, @@ -25747,16 +32929,28 @@ "total_amount": 2500, "id": "1694602446900", "history_id": "1694602446900", - "date_created": { "type": 6, "value": 1694602446900 }, - "date_last_updated": { "type": 6, "value": 1694614465688 }, + "date_created": { + "type": 6, + "value": 1694602446900 + }, + "date_last_updated": { + "type": 6, + "value": 1694614465688 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694614465688 }, - "money_release_date": { "type": 6, "value": 1694614465688 }, + "date_approved": { + "type": 6, + "value": 1694614465688 + }, + "money_release_date": { + "type": 6, + "value": 1694614465688 + }, "money_release_status": "approved", "wasDebited": true }, @@ -25823,9 +33017,18 @@ "total_amount": 1209.090909090909, "id": "1694614621977", "history_id": "1694614621977", - "date_created": { "type": 6, "value": 1694614621977 }, - "date_last_updated": { "type": 6, "value": 1694614621977 }, - "date_of_expiration": { "type": 6, "value": 1694614621977 }, + "date_created": { + "type": 6, + "value": 1694614621977 + }, + "date_last_updated": { + "type": 6, + "value": 1694614621977 + }, + "date_of_expiration": { + "type": 6, + "value": 1694614621977 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -25896,9 +33099,18 @@ "total_amount": 1209.090909090909, "id": "1694614622168", "history_id": "1694614622168", - "date_created": { "type": 6, "value": 1694614622168 }, - "date_last_updated": { "type": 6, "value": 1694614622168 }, - "date_of_expiration": { "type": 6, "value": 1694614622168 }, + "date_created": { + "type": 6, + "value": 1694614622168 + }, + "date_last_updated": { + "type": 6, + "value": 1694614622168 + }, + "date_of_expiration": { + "type": 6, + "value": 1694614622168 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -25938,7 +33150,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 942112.9199999999 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 942112.9199999999 + }, "revision": "lnt02sig0199oohxei8655du", "revision_nr": 1, "created": 1697467089116, @@ -25947,7 +33163,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sig0198oohxchjv64bq", "revision_nr": 1, "created": 1697467089119, "modified": 1697467089119 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sig0198oohxchjv64bq", + "revision_nr": 1, + "created": 1697467089119, + "modified": 1697467089119 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details", @@ -25981,17 +33204,32 @@ "total_amount": 30461651.08, "id": "1694707376145", "history_id": "1694707376145", - "date_created": { "type": 6, "value": 1694707376145 }, - "date_last_updated": { "type": 6, "value": 1695339072164 }, - "date_of_expiration": { "type": 6, "value": 1694707376145 }, + "date_created": { + "type": 6, + "value": 1694707376145 + }, + "date_last_updated": { + "type": 6, + "value": 1695339072164 + }, + "date_of_expiration": { + "type": 6, + "value": 1694707376145 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1695339072164 }, - "money_release_date": { "type": 6, "value": 1695339072164 }, + "date_approved": { + "type": 6, + "value": 1695339072164 + }, + "money_release_date": { + "type": 6, + "value": 1695339072164 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -26057,9 +33295,18 @@ "total_amount": 20, "id": "1696309633832", "history_id": "1696309633832", - "date_created": { "type": 6, "value": 1696309633832 }, - "date_last_updated": { "type": 6, "value": 1696309633832 }, - "date_of_expiration": { "type": 6, "value": 1722661633831 }, + "date_created": { + "type": 6, + "value": 1696309633832 + }, + "date_last_updated": { + "type": 6, + "value": 1696309633832 + }, + "date_of_expiration": { + "type": 6, + "value": 1722661633831 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -26129,9 +33376,18 @@ "total_amount": 7000000, "id": "1696433201105", "history_id": "1696433201105", - "date_created": { "type": 6, "value": 1696433201105 }, - "date_last_updated": { "type": 6, "value": 1696433201105 }, - "date_of_expiration": { "type": 6, "value": 1699111601054 }, + "date_created": { + "type": 6, + "value": 1696433201105 + }, + "date_last_updated": { + "type": 6, + "value": 1696433201105 + }, + "date_of_expiration": { + "type": 6, + "value": 1699111601054 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -26147,7 +33403,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history", - "content": { "type": 1, "value": {}, "revision": "lnt02s3p014uoohxc4qwfge1", "revision_nr": 1, "created": 1697467089158, "modified": 1697467089158 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02s3p014uoohxc4qwfge1", + "revision_nr": 1, + "created": 1697467089158, + "modified": 1697467089158 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/description", @@ -26164,7 +33427,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 51.1 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 51.1 + }, "revision": "lnt02sjt019ooohx3kop9mvz", "revision_nr": 1, "created": 1697467089165, @@ -26173,7 +33440,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sjt019noohx0l4rbn67", "revision_nr": 1, "created": 1697467089168, "modified": 1697467089168 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sjt019noohx0l4rbn67", + "revision_nr": 1, + "created": 1697467089168, + "modified": 1697467089168 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395", @@ -26186,7 +33460,10 @@ "total_amount": 2606.1, "installments": 1, "installment_amount": 2606.1, - "date_created": { "type": 6, "value": 1679852406395 }, + "date_created": { + "type": 6, + "value": 1679852406395 + }, "history_id": 1679852406395, "currency_id": "BRL", "status": "paid" @@ -26199,7 +33476,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304", - "content": { "type": 1, "value": {}, "revision": "lnt02sjq019koohx6k919r6w", "revision_nr": 1, "created": 1697467089176, "modified": 1697467089176 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sjq019koohx6k919r6w", + "revision_nr": 1, + "created": 1697467089176, + "modified": 1697467089176 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/description", @@ -26216,7 +33500,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 52.2 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 52.2 + }, "revision": "lnt02skb019toohx3vdierap", "revision_nr": 1, "created": 1697467089183, @@ -26225,7 +33513,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02skb019soohx2tfd5k2y", "revision_nr": 1, "created": 1697467089187, "modified": 1697467089187 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02skb019soohx2tfd5k2y", + "revision_nr": 1, + "created": 1697467089187, + "modified": 1697467089187 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250", @@ -26238,7 +33533,10 @@ "total_amount": 2662.2, "installments": 1, "installment_amount": 2662.2, - "date_created": { "type": 6, "value": 1682964262250 }, + "date_created": { + "type": 6, + "value": 1682964262250 + }, "history_id": 1682964262250, "currency_id": "BRL", "status": "paid" @@ -26264,7 +33562,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02skp019xoohx0amo3y9u", "revision_nr": 1, "created": 1697467089197, @@ -26273,7 +33575,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02skp019woohxgs00eho7", "revision_nr": 1, "created": 1697467089200, "modified": 1697467089200 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02skp019woohxgs00eho7", + "revision_nr": 1, + "created": 1697467089200, + "modified": 1697467089200 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834", @@ -26286,7 +33595,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL", "status": "paid" @@ -26299,7 +33611,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt02sk8019poohxgqlj0qdu", "revision_nr": 1, "created": 1697467089206, "modified": 1697467089206 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sk8019poohxgqlj0qdu", + "revision_nr": 1, + "created": 1697467089206, + "modified": 1697467089206 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/description", @@ -26316,7 +33635,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02sl701a2oohxapczdzo3", "revision_nr": 1, "created": 1697467089214, @@ -26325,7 +33648,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sl701a1oohxf07jbn4k", "revision_nr": 1, "created": 1697467089217, "modified": 1697467089217 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sl701a1oohxf07jbn4k", + "revision_nr": 1, + "created": 1697467089217, + "modified": 1697467089217 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834", @@ -26338,11 +33668,17 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694614622016 } + "date_last_updated": { + "type": 6, + "value": 1694614622016 + } }, "revision": "lnt02sl3019zoohx83de1b7z", "revision_nr": 1, @@ -26352,7 +33688,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt02sl3019yoohx35t6gmwz", "revision_nr": 1, "created": 1697467089225, "modified": 1697467089225 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sl3019yoohx35t6gmwz", + "revision_nr": 1, + "created": 1697467089225, + "modified": 1697467089225 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/description", @@ -26369,7 +33712,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02slo01a7oohx0z75f919", "revision_nr": 1, "created": 1697467089232, @@ -26378,7 +33725,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02slo01a6oohx7ksf0rwd", "revision_nr": 1, "created": 1697467089235, "modified": 1697467089235 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02slo01a6oohx7ksf0rwd", + "revision_nr": 1, + "created": 1697467089235, + "modified": 1697467089235 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834", @@ -26391,11 +33745,17 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694614622191 } + "date_last_updated": { + "type": 6, + "value": 1694614622191 + } }, "revision": "lnt02sll01a4oohx9ztze6r9", "revision_nr": 1, @@ -26405,7 +33765,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt02sll01a3oohx8mt39vtz", "revision_nr": 1, "created": 1697467089243, "modified": 1697467089243 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sll01a3oohx8mt39vtz", + "revision_nr": 1, + "created": 1697467089243, + "modified": 1697467089243 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/description", @@ -26422,7 +33789,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02sm701acoohx82xc1ael", "revision_nr": 1, "created": 1697467089250, @@ -26431,7 +33802,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sm701aboohxcwto346g", "revision_nr": 1, "created": 1697467089254, "modified": 1697467089254 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sm701aboohxcwto346g", + "revision_nr": 1, + "created": 1697467089254, + "modified": 1697467089254 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834", @@ -26444,7 +33822,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, @@ -26456,7 +33837,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt02sm301a8oohx1kq603rq", "revision_nr": 1, "created": 1697467089260, "modified": 1697467089260 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sm301a8oohx1kq603rq", + "revision_nr": 1, + "created": 1697467089260, + "modified": 1697467089260 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/description", @@ -26473,7 +33861,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02smo01ahoohxhron6526", "revision_nr": 1, "created": 1697467089267, @@ -26482,7 +33874,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02smo01agoohxgxkr7otr", "revision_nr": 1, "created": 1697467089271, "modified": 1697467089271 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02smo01agoohxgxkr7otr", + "revision_nr": 1, + "created": 1697467089271, + "modified": 1697467089271 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834", @@ -26495,7 +33894,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, @@ -26507,7 +33909,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310", - "content": { "type": 1, "value": {}, "revision": "lnt02smk01adoohx8c3ra3xl", "revision_nr": 1, "created": 1697467089278, "modified": 1697467089278 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02smk01adoohx8c3ra3xl", + "revision_nr": 1, + "created": 1697467089278, + "modified": 1697467089278 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/description", @@ -26524,7 +33933,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02sn501amoohx9ioehg1e", "revision_nr": 1, "created": 1697467089284, @@ -26533,7 +33946,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sn501aloohxaed2hcha", "revision_nr": 1, "created": 1697467089288, "modified": 1697467089288 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sn501aloohxaed2hcha", + "revision_nr": 1, + "created": 1697467089288, + "modified": 1697467089288 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834", @@ -26546,7 +33966,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, @@ -26558,7 +33981,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311", - "content": { "type": 1, "value": {}, "revision": "lnt02sn201aioohxeoyohvl1", "revision_nr": 1, "created": 1697467089297, "modified": 1697467089297 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sn201aioohxeoyohvl1", + "revision_nr": 1, + "created": 1697467089297, + "modified": 1697467089297 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/description", @@ -26575,7 +34005,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02sno01aroohxcfx1ehst", "revision_nr": 1, "created": 1697467089304, @@ -26584,7 +34018,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sno01aqoohx2t8p4kle", "revision_nr": 1, "created": 1697467089309, "modified": 1697467089309 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sno01aqoohx2t8p4kle", + "revision_nr": 1, + "created": 1697467089309, + "modified": 1697467089309 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834", @@ -26597,7 +34038,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, @@ -26609,7 +34053,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312", - "content": { "type": 1, "value": {}, "revision": "lnt02snl01anoohx2w0mb34b", "revision_nr": 1, "created": 1697467089316, "modified": 1697467089316 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02snl01anoohx2w0mb34b", + "revision_nr": 1, + "created": 1697467089316, + "modified": 1697467089316 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/description", @@ -26626,7 +34077,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02so801awoohxgskk57je", "revision_nr": 1, "created": 1697467089325, @@ -26635,7 +34090,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02so801avoohxh6bpbgj6", "revision_nr": 1, "created": 1697467089329, "modified": 1697467089329 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02so801avoohxh6bpbgj6", + "revision_nr": 1, + "created": 1697467089329, + "modified": 1697467089329 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834", @@ -26648,7 +34110,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, @@ -26660,7 +34125,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401", - "content": { "type": 1, "value": {}, "revision": "lnt02so401asoohxfr0g6x34", "revision_nr": 1, "created": 1697467089336, "modified": 1697467089336 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02so401asoohxfr0g6x34", + "revision_nr": 1, + "created": 1697467089336, + "modified": 1697467089336 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/description", @@ -26677,7 +34149,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02sos01b1oohx551degj7", "revision_nr": 1, "created": 1697467089344, @@ -26686,7 +34162,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02sos01b0oohx3c9y0ks4", "revision_nr": 1, "created": 1697467089348, "modified": 1697467089348 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02sos01b0oohx3c9y0ks4", + "revision_nr": 1, + "created": 1697467089348, + "modified": 1697467089348 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834", @@ -26699,7 +34182,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, @@ -26711,7 +34197,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402", - "content": { "type": 1, "value": {}, "revision": "lnt02soo01axoohxg6hl28nl", "revision_nr": 1, "created": 1697467089357, "modified": 1697467089357 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02soo01axoohxg6hl28nl", + "revision_nr": 1, + "created": 1697467089357, + "modified": 1697467089357 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/description", @@ -26728,7 +34221,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02spe01b6oohx3gk943j5", "revision_nr": 1, "created": 1697467089366, @@ -26737,7 +34234,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02spd01b5oohxd3bw62x6", "revision_nr": 1, "created": 1697467089369, "modified": 1697467089369 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02spd01b5oohxd3bw62x6", + "revision_nr": 1, + "created": 1697467089369, + "modified": 1697467089369 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834", @@ -26750,7 +34254,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, @@ -26762,7 +34269,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403", - "content": { "type": 1, "value": {}, "revision": "lnt02sp901b2oohxgtf2eqwb", "revision_nr": 1, "created": 1697467089376, "modified": 1697467089376 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sp901b2oohxgtf2eqwb", + "revision_nr": 1, + "created": 1697467089376, + "modified": 1697467089376 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/description", @@ -26779,7 +34293,11 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 11 parcela(s) 33.00%", + "amount": 3300 + }, "revision": "lnt02spw01bboohx7opp6134", "revision_nr": 1, "created": 1697467089385, @@ -26788,7 +34306,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02spw01baoohx405l95nu", "revision_nr": 1, "created": 1697467089389, "modified": 1697467089389 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02spw01baoohx405l95nu", + "revision_nr": 1, + "created": 1697467089389, + "modified": 1697467089389 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834", @@ -26801,7 +34326,10 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { "type": 6, "value": 1683078539834 }, + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, @@ -26813,17 +34341,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404", - "content": { "type": 1, "value": {}, "revision": "lnt02sps01b7oohx0hhm0t80", "revision_nr": 1, "created": 1697467089396, "modified": 1697467089396 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sps01b7oohx0hhm0t80", + "revision_nr": 1, + "created": 1697467089396, + "modified": 1697467089396 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt02sjq019joohx8be62ypi", "revision_nr": 1, "created": 1697467089399, "modified": 1697467089399 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sjq019joohx8be62ypi", + "revision_nr": 1, + "created": 1697467089399, + "modified": 1697467089399 + } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit", "content": { "type": 1, - "value": { "approvedLimit": 10000, "limitUsed": 9090.90909090909, "analysisRequested": { "type": 6, "value": 1679792769965 }, "lastReview": { "type": 6, "value": 1679793429922 } }, + "value": { + "approvedLimit": 10000, + "limitUsed": 9090.90909090909, + "analysisRequested": { + "type": 6, + "value": 1679792769965 + }, + "lastReview": { + "type": 6, + "value": 1679793429922 + } + }, "revision": "lnt02sjq019ioohxefyv0b3t", "revision_nr": 1, "created": 1697467089403, @@ -26834,7 +34387,16 @@ "path": "ivipcoin-db::__movement_wallet__/033195553972046100", "content": { "type": 1, - "value": { "dataModificacao": 1677378717676, "dateValidity": 1678943777415, "totalValue": 13247.575, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697338800000 } }, + "value": { + "dataModificacao": 1677378717676, + "dateValidity": 1678943777415, + "totalValue": 13247.575, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, "revision": "lnt02s3h014qoohx4lrs6hyp", "revision_nr": 1, "created": 1697467089408, @@ -26845,7 +34407,11 @@ "path": "ivipcoin-db::__movement_wallet__/035372379621126936/balances/IVIP", "content": { "type": 1, - "value": { "available": "38137.00000000", "symbol": "IVIP", "value": 3.88 }, + "value": { + "available": "38137.00000000", + "symbol": "IVIP", + "value": 3.88 + }, "revision": "lnt02sqo01beoohx0ci8gqfr", "revision_nr": 1, "created": 1697467089412, @@ -26854,7 +34420,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02sqo01bdoohx8kneffzr", "revision_nr": 1, "created": 1697467089416, "modified": 1697467089416 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sqo01bdoohx8kneffzr", + "revision_nr": 1, + "created": 1697467089416, + "modified": 1697467089416 + } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061/description", @@ -26869,7 +34442,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02sr001bioohx7l4n8nga", "revision_nr": 1, "created": 1697467089424, "modified": 1697467089424 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02sr001bioohx7l4n8nga", + "revision_nr": 1, + "created": 1697467089424, + "modified": 1697467089424 + } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061", @@ -26883,15 +34465,30 @@ "total_amount": 20, "history_id": 1689115233061, "id": 1689115233061, - "date_created": { "type": 6, "value": 1689115233061 }, - "date_last_updated": { "type": 6, "value": 1689150346943 }, - "date_of_expiration": { "type": 6, "value": 1691707233061 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689150346943 }, - "money_release_date": { "type": 6, "value": 1689150346943 }, + "date_created": { + "type": 6, + "value": 1689115233061 + }, + "date_last_updated": { + "type": 6, + "value": 1689150346943 + }, + "date_of_expiration": { + "type": 6, + "value": 1691707233061 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689150346943 + }, + "money_release_date": { + "type": 6, + "value": 1689150346943 + }, "money_release_status": "approved", "wasDebited": true }, @@ -26914,7 +34511,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02src01bloohxcetfg0wn", "revision_nr": 1, "created": 1697467089436, "modified": 1697467089436 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02src01bloohxcetfg0wn", + "revision_nr": 1, + "created": 1697467089436, + "modified": 1697467089436 + } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835", @@ -26928,15 +34534,30 @@ "total_amount": 20, "history_id": 1689278707835, "id": 1689278707835, - "date_created": { "type": 6, "value": 1689278707835 }, - "date_last_updated": { "type": 6, "value": 1689278828225 }, - "date_of_expiration": { "type": 6, "value": 1691870707835 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689278828225 }, - "money_release_date": { "type": 6, "value": 1689278828225 }, + "date_created": { + "type": 6, + "value": 1689278707835 + }, + "date_last_updated": { + "type": 6, + "value": 1689278828225 + }, + "date_of_expiration": { + "type": 6, + "value": 1691870707835 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689278828225 + }, + "money_release_date": { + "type": 6, + "value": 1689278828225 + }, "money_release_status": "approved", "wasDebited": true }, @@ -26982,9 +34603,18 @@ "original_amount": 25268, "total_amount": 25268, "id": 1689683815156, - "date_created": { "type": 6, "value": 1689683815156 }, - "date_last_updated": { "type": 6, "value": 1689683815156 }, - "date_of_expiration": { "type": 6, "value": 1689683815156 }, + "date_created": { + "type": 6, + "value": 1689683815156 + }, + "date_last_updated": { + "type": 6, + "value": 1689683815156 + }, + "date_of_expiration": { + "type": 6, + "value": 1689683815156 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27012,7 +34642,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02srw01bqoohx30ra2cfr", "revision_nr": 1, "created": 1697467089456, "modified": 1697467089456 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02srw01bqoohx30ra2cfr", + "revision_nr": 1, + "created": 1697467089456, + "modified": 1697467089456 + } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625", @@ -27026,15 +34665,30 @@ "total_amount": 20, "history_id": 1689684340625, "id": 1689684340625, - "date_created": { "type": 6, "value": 1689684340625 }, - "date_last_updated": { "type": 6, "value": 1689691567863 }, - "date_of_expiration": { "type": 6, "value": 1692276340625 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689691567863 }, - "money_release_date": { "type": 6, "value": 1689691567863 }, + "date_created": { + "type": 6, + "value": 1689684340625 + }, + "date_last_updated": { + "type": 6, + "value": 1689691567863 + }, + "date_of_expiration": { + "type": 6, + "value": 1692276340625 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689691567863 + }, + "money_release_date": { + "type": 6, + "value": 1689691567863 + }, "money_release_status": "approved", "wasDebited": true }, @@ -27080,9 +34734,18 @@ "original_amount": 12869, "total_amount": 12869, "id": 1689695209900, - "date_created": { "type": 6, "value": 1689695209900 }, - "date_last_updated": { "type": 6, "value": 1689695209900 }, - "date_of_expiration": { "type": 6, "value": 1689695209900 }, + "date_created": { + "type": 6, + "value": 1689695209900 + }, + "date_last_updated": { + "type": 6, + "value": 1689695209900 + }, + "date_of_expiration": { + "type": 6, + "value": 1689695209900 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27099,13 +34762,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history", - "content": { "type": 1, "value": {}, "revision": "lnt02sqw01bfoohx6pw48jgo", "revision_nr": 1, "created": 1697467089472, "modified": 1697467089472 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sqw01bfoohx6pw48jgo", + "revision_nr": 1, + "created": 1697467089472, + "modified": 1697467089472 + } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02ssg01btoohx76egdg6k", "revision_nr": 1, "created": 1697467089477, @@ -27116,7 +34790,16 @@ "path": "ivipcoin-db::__movement_wallet__/035372379621126936", "content": { "type": 1, - "value": { "dataModificacao": 1681695529045, "dateValidity": 1681695529045, "totalValue": 12.39, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697425200000 } }, + "value": { + "dataModificacao": 1681695529045, + "dateValidity": 1681695529045, + "totalValue": 12.39, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } + }, "revision": "lnt02sqo01bcoohxfzchd8ka", "revision_nr": 1, "created": 1697467089480, @@ -27127,7 +34810,11 @@ "path": "ivipcoin-db::__movement_wallet__/036609796475115090/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02sso01bvoohx2gecers1", "revision_nr": 1, "created": 1697467089484, @@ -27138,7 +34825,14 @@ "path": "ivipcoin-db::__movement_wallet__/036609796475115090", "content": { "type": 1, - "value": { "dataModificacao": 1689337184637, "dateValidity": 1689337184638, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1689337184637, + "dateValidity": 1689337184638, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02sso01buoohxg01y15ej", "revision_nr": 1, "created": 1697467089487, @@ -27149,7 +34843,11 @@ "path": "ivipcoin-db::__movement_wallet__/036781805197076300/balances/IVIP", "content": { "type": 1, - "value": { "available": "31783.20000000", "symbol": "IVIP", "value": 6.74 }, + "value": { + "available": "31783.20000000", + "symbol": "IVIP", + "value": 6.74 + }, "revision": "lnt02ssw01byoohxdokc05mb", "revision_nr": 1, "created": 1697467089492, @@ -27158,7 +34856,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02ssw01bxoohx3vela578", "revision_nr": 1, "created": 1697467089496, "modified": 1697467089496 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ssw01bxoohx3vela578", + "revision_nr": 1, + "created": 1697467089496, + "modified": 1697467089496 + } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451/description", @@ -27173,7 +34878,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02st701c2oohx7wpjatuj", "revision_nr": 1, "created": 1697467089503, "modified": 1697467089503 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02st701c2oohx7wpjatuj", + "revision_nr": 1, + "created": 1697467089503, + "modified": 1697467089503 + } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451", @@ -27187,9 +34901,18 @@ "total_amount": 20, "history_id": 1689220381451, "id": 1689220381451, - "date_created": { "type": 6, "value": 1689220381451 }, - "date_last_updated": { "type": 6, "value": 1689220381451 }, - "date_of_expiration": { "type": 6, "value": 1691812381451 }, + "date_created": { + "type": 6, + "value": 1689220381451 + }, + "date_last_updated": { + "type": 6, + "value": 1689220381451 + }, + "date_of_expiration": { + "type": 6, + "value": 1691812381451 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -27214,7 +34937,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02stj01c5oohxb3ig9obo", "revision_nr": 1, "created": 1697467089515, "modified": 1697467089515 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02stj01c5oohxb3ig9obo", + "revision_nr": 1, + "created": 1697467089515, + "modified": 1697467089515 + } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584", @@ -27228,15 +34960,30 @@ "total_amount": 50, "history_id": 1689220411584, "id": 1689220411584, - "date_created": { "type": 6, "value": 1689220411584 }, - "date_last_updated": { "type": 6, "value": 1689257685911 }, - "date_of_expiration": { "type": 6, "value": 1691812411584 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689257685911 }, - "money_release_date": { "type": 6, "value": 1689257685911 }, + "date_created": { + "type": 6, + "value": 1689220411584 + }, + "date_last_updated": { + "type": 6, + "value": 1689257685911 + }, + "date_of_expiration": { + "type": 6, + "value": 1691812411584 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689257685911 + }, + "money_release_date": { + "type": 6, + "value": 1689257685911 + }, "money_release_status": "approved", "wasDebited": true }, @@ -27282,9 +35029,18 @@ "original_amount": 18682, "total_amount": 18682, "id": 1689258185846, - "date_created": { "type": 6, "value": 1689258185846 }, - "date_last_updated": { "type": 6, "value": 1689258185846 }, - "date_of_expiration": { "type": 6, "value": 1689258185846 }, + "date_created": { + "type": 6, + "value": 1689258185846 + }, + "date_last_updated": { + "type": 6, + "value": 1689258185846 + }, + "date_of_expiration": { + "type": 6, + "value": 1689258185846 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27312,7 +35068,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02su201caoohx78mn4w25", "revision_nr": 1, "created": 1697467089533, "modified": 1697467089533 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02su201caoohx78mn4w25", + "revision_nr": 1, + "created": 1697467089533, + "modified": 1697467089533 + } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744", @@ -27326,9 +35091,18 @@ "total_amount": 20, "history_id": 1689488308744, "id": 1689488308744, - "date_created": { "type": 6, "value": 1689488308744 }, - "date_last_updated": { "type": 6, "value": 1689488308744 }, - "date_of_expiration": { "type": 6, "value": 1692080308744 }, + "date_created": { + "type": 6, + "value": 1689488308744 + }, + "date_last_updated": { + "type": 6, + "value": 1689488308744 + }, + "date_of_expiration": { + "type": 6, + "value": 1692080308744 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -27353,7 +35127,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02sue01cdoohx9m04h1cq", "revision_nr": 1, "created": 1697467089545, "modified": 1697467089545 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02sue01cdoohx9m04h1cq", + "revision_nr": 1, + "created": 1697467089545, + "modified": 1697467089545 + } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765", @@ -27367,15 +35150,30 @@ "total_amount": 20, "history_id": 1689488325765, "id": 1689488325765, - "date_created": { "type": 6, "value": 1689488325765 }, - "date_last_updated": { "type": 6, "value": 1689614108067 }, - "date_of_expiration": { "type": 6, "value": 1692080325765 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689614108067 }, - "money_release_date": { "type": 6, "value": 1689614108067 }, + "date_created": { + "type": 6, + "value": 1689488325765 + }, + "date_last_updated": { + "type": 6, + "value": 1689614108067 + }, + "date_of_expiration": { + "type": 6, + "value": 1692080325765 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689614108067 + }, + "money_release_date": { + "type": 6, + "value": 1689614108067 + }, "money_release_status": "approved", "wasDebited": true }, @@ -27398,7 +35196,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02suo01cgoohxdxvy1l5q", "revision_nr": 1, "created": 1697467089559, "modified": 1697467089559 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02suo01cgoohxdxvy1l5q", + "revision_nr": 1, + "created": 1697467089559, + "modified": 1697467089559 + } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771", @@ -27412,9 +35219,18 @@ "total_amount": 20, "history_id": 1689606916771, "id": 1689606916771, - "date_created": { "type": 6, "value": 1689606916771 }, - "date_last_updated": { "type": 6, "value": 1689606916771 }, - "date_of_expiration": { "type": 6, "value": 1692198916771 }, + "date_created": { + "type": 6, + "value": 1689606916771 + }, + "date_last_updated": { + "type": 6, + "value": 1689606916771 + }, + "date_of_expiration": { + "type": 6, + "value": 1692198916771 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -27462,9 +35278,18 @@ "original_amount": 12478, "total_amount": 12478, "id": 1689614163424, - "date_created": { "type": 6, "value": 1689614163424 }, - "date_last_updated": { "type": 6, "value": 1689614163424 }, - "date_of_expiration": { "type": 6, "value": 1689614163424 }, + "date_created": { + "type": 6, + "value": 1689614163424 + }, + "date_last_updated": { + "type": 6, + "value": 1689614163424 + }, + "date_of_expiration": { + "type": 6, + "value": 1689614163424 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27534,9 +35359,18 @@ "total_amount": 31160, "id": 1690673977679, "history_id": 1690673977679, - "date_created": { "type": 6, "value": 1690673977679 }, - "date_last_updated": { "type": 6, "value": 1690673977679 }, - "date_of_expiration": { "type": 6, "value": 1693352377677 }, + "date_created": { + "type": 6, + "value": 1690673977679 + }, + "date_last_updated": { + "type": 6, + "value": 1690673977679 + }, + "date_of_expiration": { + "type": 6, + "value": 1693352377677 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27554,7 +35388,13 @@ "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693266063331 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693266063331 + } + }, "revision": "lnt02svl01cooohx9fxg166z", "revision_nr": 1, "created": 1697467089590, @@ -27616,8 +35456,14 @@ "total_amount": 50, "id": 1690674063331, "history_id": 1690674063331, - "date_created": { "type": 6, "value": 1690674063331 }, - "date_last_updated": { "type": 6, "value": 1690674063331 }, + "date_created": { + "type": 6, + "value": 1690674063331 + }, + "date_last_updated": { + "type": 6, + "value": 1690674063331 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -27635,7 +35481,13 @@ "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694472568160 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694472568160 + } + }, "revision": "lnt02sw601ctoohxhj7t1fmz", "revision_nr": 1, "created": 1697467089610, @@ -27697,8 +35549,14 @@ "total_amount": 20, "id": 1691880568161, "history_id": 1691880568161, - "date_created": { "type": 6, "value": 1691880568161 }, - "date_last_updated": { "type": 6, "value": 1691880568161 }, + "date_created": { + "type": 6, + "value": 1691880568161 + }, + "date_last_updated": { + "type": 6, + "value": 1691880568161 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -27767,9 +35625,18 @@ "total_amount": 31783.2, "id": "1693353168151", "history_id": "1693353168151", - "date_created": { "type": 6, "value": 1693353168151 }, - "date_last_updated": { "type": 6, "value": 1693353168151 }, - "date_of_expiration": { "type": 6, "value": 1693353168151 }, + "date_created": { + "type": 6, + "value": 1693353168151 + }, + "date_last_updated": { + "type": 6, + "value": 1693353168151 + }, + "date_of_expiration": { + "type": 6, + "value": 1693353168151 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27785,13 +35652,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history", - "content": { "type": 1, "value": {}, "revision": "lnt02st401bzoohxbi8gbw2s", "revision_nr": 1, "created": 1697467089644, "modified": 1697467089644 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02st401bzoohxbi8gbw2s", + "revision_nr": 1, + "created": 1697467089644, + "modified": 1697467089644 + } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02sx801d1oohx2b9ugifh", "revision_nr": 1, "created": 1697467089648, @@ -27802,7 +35680,16 @@ "path": "ivipcoin-db::__movement_wallet__/036781805197076300", "content": { "type": 1, - "value": { "dataModificacao": 1689220270724, "dateValidity": 1689220270724, "totalValue": 14.47, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696215600000 } }, + "value": { + "dataModificacao": 1689220270724, + "dateValidity": 1689220270724, + "totalValue": 14.47, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696215600000 + } + }, "revision": "lnt02ssv01bwoohx418bgia3", "revision_nr": 1, "created": 1697467089653, @@ -27813,7 +35700,14 @@ "path": "ivipcoin-db::__movement_wallet__/039695615525592090", "content": { "type": 1, - "value": { "dataModificacao": 1677455523126, "dateValidity": 1677455523127, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677455523126, + "dateValidity": 1677455523127, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02sxh01d2oohx1gbw4ue1", "revision_nr": 1, "created": 1697467089658, @@ -27824,7 +35718,11 @@ "path": "ivipcoin-db::__movement_wallet__/039734721775654510/balances/IVIP", "content": { "type": 1, - "value": { "available": "150481.00000000", "symbol": "IVIP", "value": 16.044 }, + "value": { + "available": "150481.00000000", + "symbol": "IVIP", + "value": 16.044 + }, "revision": "lnt02sxm01d5oohx3nqv4oia", "revision_nr": 1, "created": 1697467089661, @@ -27833,13 +35731,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02sxm01d4oohx9vo95u55", "revision_nr": 1, "created": 1697467089665, "modified": 1697467089665 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sxm01d4oohx9vo95u55", + "revision_nr": 1, + "created": 1697467089665, + "modified": 1697467089665 + } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699111958190 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699111958190 + } + }, "revision": "lnt02sxt01d8oohx9gzhf8q7", "revision_nr": 1, "created": 1697467089668, @@ -27902,8 +35813,14 @@ "total_amount": 100, "id": "1696519958190", "history_id": "1696519958190", - "date_created": { "type": 6, "value": 1696519958190 }, - "date_last_updated": { "type": 6, "value": 1696519958190 }, + "date_created": { + "type": 6, + "value": 1696519958190 + }, + "date_last_updated": { + "type": 6, + "value": 1696519958190 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -27921,7 +35838,13 @@ "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699133572533 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699133572533 + } + }, "revision": "lnt02syb01ddoohx5aqy3idh", "revision_nr": 1, "created": 1697467089687, @@ -27984,8 +35907,14 @@ "total_amount": 50, "id": "1696541572533", "history_id": "1696541572533", - "date_created": { "type": 6, "value": 1696541572533 }, - "date_last_updated": { "type": 6, "value": 1696541572533 }, + "date_created": { + "type": 6, + "value": 1696541572533 + }, + "date_last_updated": { + "type": 6, + "value": 1696541572533 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -28003,7 +35932,13 @@ "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699177584658 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699177584658 + } + }, "revision": "lnt02syu01dioohx166kfdqz", "revision_nr": 1, "created": 1697467089705, @@ -28066,16 +36001,28 @@ "total_amount": 50, "id": "1696585584658", "history_id": "1696585584658", - "date_created": { "type": 6, "value": 1696585584658 }, - "date_last_updated": { "type": 6, "value": 1696688396574 }, + "date_created": { + "type": 6, + "value": 1696585584658 + }, + "date_last_updated": { + "type": 6, + "value": 1696688396574 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696688396574 }, - "money_release_date": { "type": 6, "value": 1696688396574 }, + "date_approved": { + "type": 6, + "value": 1696688396574 + }, + "money_release_date": { + "type": 6, + "value": 1696688396574 + }, "money_release_status": "approved", "wasDebited": true }, @@ -28130,9 +36077,18 @@ "total_amount": 70156, "id": "1696706580251", "history_id": "1696706580251", - "date_created": { "type": 6, "value": 1696706580251 }, - "date_last_updated": { "type": 6, "value": 1696706580251 }, - "date_of_expiration": { "type": 6, "value": 1696706580251 }, + "date_created": { + "type": 6, + "value": 1696706580251 + }, + "date_last_updated": { + "type": 6, + "value": 1696706580251 + }, + "date_of_expiration": { + "type": 6, + "value": 1696706580251 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -28151,7 +36107,13 @@ "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699487170002 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699487170002 + } + }, "revision": "lnt02szr01dqoohx8pgr0q6g", "revision_nr": 1, "created": 1697467089740, @@ -28214,16 +36176,28 @@ "total_amount": 50, "id": "1696895170006", "history_id": "1696895170006", - "date_created": { "type": 6, "value": 1696895170006 }, - "date_last_updated": { "type": 6, "value": 1696939710416 }, + "date_created": { + "type": 6, + "value": 1696895170006 + }, + "date_last_updated": { + "type": 6, + "value": 1696939710416 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696939710416 }, - "money_release_date": { "type": 6, "value": 1696939710416 }, + "date_approved": { + "type": 6, + "value": 1696939710416 + }, + "money_release_date": { + "type": 6, + "value": 1696939710416 + }, "money_release_status": "approved", "wasDebited": true }, @@ -28278,9 +36252,18 @@ "total_amount": 80325, "id": "1696951453164", "history_id": "1696951453164", - "date_created": { "type": 6, "value": 1696951453164 }, - "date_last_updated": { "type": 6, "value": 1696951453164 }, - "date_of_expiration": { "type": 6, "value": 1696951453164 }, + "date_created": { + "type": 6, + "value": 1696951453164 + }, + "date_last_updated": { + "type": 6, + "value": 1696951453164 + }, + "date_of_expiration": { + "type": 6, + "value": 1696951453164 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -28297,13 +36280,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history", - "content": { "type": 1, "value": {}, "revision": "lnt02sxt01d6oohxe5wrf499", "revision_nr": 1, "created": 1697467089769, "modified": 1697467089769 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02sxt01d6oohxe5wrf499", + "revision_nr": 1, + "created": 1697467089769, + "modified": 1697467089769 + } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02t0p01dxoohxgx6k08vf", "revision_nr": 1, "created": 1697467089774, @@ -28314,7 +36308,15 @@ "path": "ivipcoin-db::__movement_wallet__/039734721775654510", "content": { "type": 1, - "value": { "dataModificacao": 1696456086300, "dateValidity": 1696456087509, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697425200000 } }, + "value": { + "dataModificacao": 1696456086300, + "dateValidity": 1696456087509, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } + }, "revision": "lnt02sxm01d3oohxabyd9odo", "revision_nr": 1, "created": 1697467089778, @@ -28325,7 +36327,14 @@ "path": "ivipcoin-db::__movement_wallet__/041090915252286260", "content": { "type": 1, - "value": { "dataModificacao": 1677897482019, "dateValidity": 1678002144888, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677897482019, + "dateValidity": 1678002144888, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02t0y01dyoohx3z7z1div", "revision_nr": 1, "created": 1697467089781, @@ -28380,7 +36389,11 @@ "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.9900000000000001 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.9900000000000001 + }, "revision": "lnt02t1i01e8oohx6pby4ypc", "revision_nr": 1, "created": 1697467089801, @@ -28389,21 +36402,52 @@ }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02t1i01e7oohxel1u3aki", "revision_nr": 1, "created": 1697467089806, "modified": 1697467089806 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02t1i01e7oohxel1u3aki", + "revision_nr": 1, + "created": 1697467089806, + "modified": 1697467089806 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info/collector", - "content": { "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, "revision": "lnt02t1q01eaoohxf3n037z6", "revision_nr": 1, "created": 1697467089810, "modified": 1697467089810 } + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt02t1q01eaoohxf3n037z6", + "revision_nr": 1, + "created": 1697467089810, + "modified": 1697467089810 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02t1q01e9oohxbf8xcqy8", "revision_nr": 1, "created": 1697467089814, "modified": 1697467089814 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02t1q01e9oohxbf8xcqy8", + "revision_nr": 1, + "created": 1697467089814, + "modified": 1697467089814 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 100.99, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 100.99, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02t1601e3oohxfxdn0hjt", "revision_nr": 1, "created": 1697467089818, @@ -28422,9 +36466,18 @@ "total_amount": 100.99, "history_id": 1679068099316, "id": 55838306631, - "date_created": { "type": 6, "value": 1679068099967 }, - "date_last_updated": { "type": 6, "value": 1679154647000 }, - "date_of_expiration": { "type": 6, "value": 1679154499697 }, + "date_created": { + "type": 6, + "value": 1679068099967 + }, + "date_last_updated": { + "type": 6, + "value": 1679154647000 + }, + "date_of_expiration": { + "type": 6, + "value": 1679154499697 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", @@ -28485,7 +36538,11 @@ "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.9900000000000001 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.9900000000000001 + }, "revision": "lnt02t2l01eioohx6eahgvvl", "revision_nr": 1, "created": 1697467089842, @@ -28494,21 +36551,52 @@ }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02t2k01ehoohx4bebgqxg", "revision_nr": 1, "created": 1697467089846, "modified": 1697467089846 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02t2k01ehoohx4bebgqxg", + "revision_nr": 1, + "created": 1697467089846, + "modified": 1697467089846 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info/collector", - "content": { "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, "revision": "lnt02t2u01ekoohxfbxo3wqu", "revision_nr": 1, "created": 1697467089849, "modified": 1697467089849 } + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt02t2u01ekoohxfbxo3wqu", + "revision_nr": 1, + "created": 1697467089849, + "modified": 1697467089849 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02t2u01ejoohx5ou5b68b", "revision_nr": 1, "created": 1697467089853, "modified": 1697467089853 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02t2u01ejoohx5ou5b68b", + "revision_nr": 1, + "created": 1697467089853, + "modified": 1697467089853 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 100.99, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 100.99, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02t2901edoohxf9jbef3i", "revision_nr": 1, "created": 1697467089857, @@ -28527,16 +36615,31 @@ "total_amount": 100.99, "history_id": 1679068275059, "id": 55838239297, - "date_created": { "type": 6, "value": 1679068275826 }, - "date_last_updated": { "type": 6, "value": 1679068337000 }, - "date_of_expiration": { "type": 6, "value": 1679154675577 }, + "date_created": { + "type": 6, + "value": 1679068275826 + }, + "date_last_updated": { + "type": 6, + "value": 1679068337000 + }, + "date_of_expiration": { + "type": 6, + "value": 1679154675577 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679068337000 }, - "money_release_date": { "type": 6, "value": 1679068337000 }, + "date_approved": { + "type": 6, + "value": 1679068337000 + }, + "money_release_date": { + "type": 6, + "value": 1679068337000 + }, "wasDebited": true }, "revision": "lnt02t2601eboohxggahhasw", @@ -28581,9 +36684,18 @@ "original_amount": 581846, "total_amount": 581846, "id": 1679267870429, - "date_created": { "type": 6, "value": 1679267870429 }, - "date_last_updated": { "type": 6, "value": 1679267870429 }, - "date_of_expiration": { "type": 6, "value": 1679267870429 }, + "date_created": { + "type": 6, + "value": 1679267870429 + }, + "date_last_updated": { + "type": 6, + "value": 1679267870429 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267870429 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28611,7 +36723,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02t3l01epoohxdrppfbiz", "revision_nr": 1, "created": 1697467089877, "modified": 1697467089877 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02t3l01epoohxdrppfbiz", + "revision_nr": 1, + "created": 1697467089877, + "modified": 1697467089877 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983", @@ -28625,9 +36746,18 @@ "total_amount": 581846, "history_id": 1686586586983, "id": 1686586586983, - "date_created": { "type": 6, "value": 1686586586983 }, - "date_last_updated": { "type": 6, "value": 1686586586983 }, - "date_of_expiration": { "type": 6, "value": 1686586586983 }, + "date_created": { + "type": 6, + "value": 1686586586983 + }, + "date_last_updated": { + "type": 6, + "value": 1686586586983 + }, + "date_of_expiration": { + "type": 6, + "value": 1686586586983 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -28652,7 +36782,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02t3w01esoohx5eiqafm7", "revision_nr": 1, "created": 1697467089888, "modified": 1697467089888 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02t3w01esoohx5eiqafm7", + "revision_nr": 1, + "created": 1697467089888, + "modified": 1697467089888 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320", @@ -28666,9 +36805,18 @@ "total_amount": 581846, "history_id": 1686586986320, "id": 1686586986320, - "date_created": { "type": 6, "value": 1686586986320 }, - "date_last_updated": { "type": 6, "value": 1686586986320 }, - "date_of_expiration": { "type": 6, "value": 1686586986320 }, + "date_created": { + "type": 6, + "value": 1686586986320 + }, + "date_last_updated": { + "type": 6, + "value": 1686586986320 + }, + "date_of_expiration": { + "type": 6, + "value": 1686586986320 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -28735,9 +36883,18 @@ "total_amount": 400954, "id": 1690134068779, "history_id": 1690134068779, - "date_created": { "type": 6, "value": 1690134068779 }, - "date_last_updated": { "type": 6, "value": 1690134068779 }, - "date_of_expiration": { "type": 6, "value": 1690134068779 }, + "date_created": { + "type": 6, + "value": 1690134068779 + }, + "date_last_updated": { + "type": 6, + "value": 1690134068779 + }, + "date_of_expiration": { + "type": 6, + "value": 1690134068779 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -28753,13 +36910,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history", - "content": { "type": 1, "value": {}, "revision": "lnt02t1201e0oohx9qte36ku", "revision_nr": 1, "created": 1697467089912, "modified": 1697467089912 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02t1201e0oohx9qte36ku", + "revision_nr": 1, + "created": 1697467089912, + "modified": 1697467089912 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/balances/IVIP", "content": { "type": 1, - "value": { "available": "581846.00000000", "symbol": "IVIP", "value": 73.41 }, + "value": { + "available": "581846.00000000", + "symbol": "IVIP", + "value": 73.41 + }, "revision": "lnt02t4o01eyoohx6kmi25bo", "revision_nr": 1, "created": 1697467089915, @@ -28768,13 +36936,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02t4o01exoohx7b05b194", "revision_nr": 1, "created": 1697467089919, "modified": 1697467089919 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02t4o01exoohx7b05b194", + "revision_nr": 1, + "created": 1697467089919, + "modified": 1697467089919 + } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02t4v01ezoohx040s9lk3", "revision_nr": 1, "created": 1697467089925, @@ -28785,7 +36964,16 @@ "path": "ivipcoin-db::__movement_wallet__/041395808163281030", "content": { "type": 1, - "value": { "dataModificacao": 1679068061044, "dateValidity": 1679068061044, "currencyType": "USD", "totalValue": 18.88, "balancesModificacao": { "type": 6, "value": 1696993200000 } }, + "value": { + "dataModificacao": 1679068061044, + "dateValidity": 1679068061044, + "currencyType": "USD", + "totalValue": 18.88, + "balancesModificacao": { + "type": 6, + "value": 1696993200000 + } + }, "revision": "lnt02t1101dzoohx2vjn2wtn", "revision_nr": 1, "created": 1697467089929, @@ -28805,7 +36993,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02t5901f4oohx7uhqbt1z", "revision_nr": 1, "created": 1697467089938, "modified": 1697467089938 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02t5901f4oohx7uhqbt1z", + "revision_nr": 1, + "created": 1697467089938, + "modified": 1697467089938 + } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515", @@ -28819,9 +37016,18 @@ "total_amount": 100, "history_id": 1689548630515, "id": 1689548630515, - "date_created": { "type": 6, "value": 1689548630515 }, - "date_last_updated": { "type": 6, "value": 1689548630515 }, - "date_of_expiration": { "type": 6, "value": 1692140630515 }, + "date_created": { + "type": 6, + "value": 1689548630515 + }, + "date_last_updated": { + "type": 6, + "value": 1689548630515 + }, + "date_of_expiration": { + "type": 6, + "value": 1692140630515 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -28835,13 +37041,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history", - "content": { "type": 1, "value": {}, "revision": "lnt02t5501f1oohxaadoab3v", "revision_nr": 1, "created": 1697467089947, "modified": 1697467089947 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02t5501f1oohxaadoab3v", + "revision_nr": 1, + "created": 1697467089947, + "modified": 1697467089947 + } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02t5n01f5oohx3uix9yue", "revision_nr": 1, "created": 1697467089951, @@ -28852,7 +37069,13 @@ "path": "ivipcoin-db::__movement_wallet__/042964162467339360", "content": { "type": 1, - "value": { "dataModificacao": 1689548492145, "dateValidity": 1689548492145, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1689548492145, + "dateValidity": 1689548492145, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02t5501f0oohxcfalao64", "revision_nr": 1, "created": 1697467089955, @@ -28863,7 +37086,11 @@ "path": "ivipcoin-db::__movement_wallet__/044107260739866040/balances/IVIP", "content": { "type": 1, - "value": { "available": "127146.00000000", "symbol": "IVIP", "value": 13.81 }, + "value": { + "available": "127146.00000000", + "symbol": "IVIP", + "value": 13.81 + }, "revision": "lnt02t5v01f8oohx3xwc8i50", "revision_nr": 1, "created": 1697467089960, @@ -28872,13 +37099,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02t5v01f7oohxcru34j2c", "revision_nr": 1, "created": 1697467089964, "modified": 1697467089964 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02t5v01f7oohxcru34j2c", + "revision_nr": 1, + "created": 1697467089964, + "modified": 1697467089964 + } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698810290801 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698810290801 + } + }, "revision": "lnt02t6401fboohx4f4nbevy", "revision_nr": 1, "created": 1697467089968, @@ -28941,8 +37181,14 @@ "total_amount": 150, "id": "1696218290801", "history_id": "1696218290801", - "date_created": { "type": 6, "value": 1696218290801 }, - "date_last_updated": { "type": 6, "value": 1696218290801 }, + "date_created": { + "type": 6, + "value": 1696218290801 + }, + "date_last_updated": { + "type": 6, + "value": 1696218290801 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -28960,7 +37206,13 @@ "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699104289783 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699104289783 + } + }, "revision": "lnt02t6p01fgoohx1m5tbxc3", "revision_nr": 1, "created": 1697467089989, @@ -29023,8 +37275,14 @@ "total_amount": 100, "id": "1696512289784", "history_id": "1696512289784", - "date_created": { "type": 6, "value": 1696512289784 }, - "date_last_updated": { "type": 6, "value": 1696512289784 }, + "date_created": { + "type": 6, + "value": 1696512289784 + }, + "date_last_updated": { + "type": 6, + "value": 1696512289784 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -29042,7 +37300,13 @@ "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699277069126 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699277069126 + } + }, "revision": "lnt02t7901floohxfqra163p", "revision_nr": 1, "created": 1697467090009, @@ -29105,16 +37369,28 @@ "total_amount": 100, "id": "1696685069127", "history_id": "1696685069127", - "date_created": { "type": 6, "value": 1696685069127 }, - "date_last_updated": { "type": 6, "value": 1696689638574 }, + "date_created": { + "type": 6, + "value": 1696685069127 + }, + "date_last_updated": { + "type": 6, + "value": 1696689638574 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696689638574 }, - "money_release_date": { "type": 6, "value": 1696689638574 }, + "date_approved": { + "type": 6, + "value": 1696689638574 + }, + "money_release_date": { + "type": 6, + "value": 1696689638574 + }, "money_release_status": "approved", "wasDebited": true }, @@ -29169,9 +37445,18 @@ "total_amount": 127146, "id": "1696690479419", "history_id": "1696690479419", - "date_created": { "type": 6, "value": 1696690479419 }, - "date_last_updated": { "type": 6, "value": 1696690479419 }, - "date_of_expiration": { "type": 6, "value": 1696690479419 }, + "date_created": { + "type": 6, + "value": 1696690479419 + }, + "date_last_updated": { + "type": 6, + "value": 1696690479419 + }, + "date_of_expiration": { + "type": 6, + "value": 1696690479419 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -29188,13 +37473,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history", - "content": { "type": 1, "value": {}, "revision": "lnt02t6401f9oohxggif2mcp", "revision_nr": 1, "created": 1697467090043, "modified": 1697467090043 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02t6401f9oohxggif2mcp", + "revision_nr": 1, + "created": 1697467090043, + "modified": 1697467090043 + } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02t8b01fsoohx5coq26qz", "revision_nr": 1, "created": 1697467090047, @@ -29205,7 +37501,15 @@ "path": "ivipcoin-db::__movement_wallet__/044107260739866040", "content": { "type": 1, - "value": { "dataModificacao": 1696161500774, "dateValidity": 1696161500803, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696993200000 } }, + "value": { + "dataModificacao": 1696161500774, + "dateValidity": 1696161500803, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696993200000 + } + }, "revision": "lnt02t5v01f6oohxe9ox3c6c", "revision_nr": 1, "created": 1697467090050, @@ -29225,7 +37529,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02t8o01fxoohx7nio5dzt", "revision_nr": 1, "created": 1697467090060, "modified": 1697467090060 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02t8o01fxoohx7nio5dzt", + "revision_nr": 1, + "created": 1697467090060, + "modified": 1697467090060 + } }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774", @@ -29239,9 +37552,18 @@ "total_amount": 20, "history_id": 1678092684774, "id": 1678092684774, - "date_created": { "type": 6, "value": 1678092684774 }, - "date_last_updated": { "type": 6, "value": 1678092684774 }, - "date_of_expiration": { "type": 6, "value": 1680684684774 }, + "date_created": { + "type": 6, + "value": 1678092684774 + }, + "date_last_updated": { + "type": 6, + "value": 1678092684774 + }, + "date_of_expiration": { + "type": 6, + "value": 1680684684774 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -29255,13 +37577,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history", - "content": { "type": 1, "value": {}, "revision": "lnt02t8j01fuoohxa1ypfz9y", "revision_nr": 1, "created": 1697467090068, "modified": 1697467090068 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02t8j01fuoohxa1ypfz9y", + "revision_nr": 1, + "created": 1697467090068, + "modified": 1697467090068 + } }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660", "content": { "type": 1, - "value": { "dataModificacao": 1678092570010, "dateValidity": 1678110570040, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678092570010, + "dateValidity": 1678110570040, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02t8i01ftoohx8z8s37dm", "revision_nr": 1, "created": 1697467090072, @@ -29272,7 +37607,11 @@ "path": "ivipcoin-db::__movement_wallet__/045122812371711340/balances/IVIP", "content": { "type": 1, - "value": { "available": "615.00000000", "symbol": "IVIP", "value": 0.094 }, + "value": { + "available": "615.00000000", + "symbol": "IVIP", + "value": 0.094 + }, "revision": "lnt02t9401g0oohx8gp77znh", "revision_nr": 1, "created": 1697467090076, @@ -29281,7 +37620,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02t9401fzoohxfqbn8u0r", "revision_nr": 1, "created": 1697467090080, "modified": 1697467090080 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02t9401fzoohxfqbn8u0r", + "revision_nr": 1, + "created": 1697467090080, + "modified": 1697467090080 + } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367/description", @@ -29296,7 +37642,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02t9g01g4oohx2u0macwc", "revision_nr": 1, "created": 1697467090088, "modified": 1697467090088 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02t9g01g4oohx2u0macwc", + "revision_nr": 1, + "created": 1697467090088, + "modified": 1697467090088 + } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367", @@ -29310,15 +37665,30 @@ "total_amount": 1500, "history_id": 1678363004367, "id": 1678363004367, - "date_created": { "type": 6, "value": 1678363004367 }, - "date_last_updated": { "type": 6, "value": 1678363074662 }, - "date_of_expiration": { "type": 6, "value": 1680955004367 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678363074662 }, - "money_release_date": { "type": 6, "value": 1678363074662 }, + "date_created": { + "type": 6, + "value": 1678363004367 + }, + "date_last_updated": { + "type": 6, + "value": 1678363074662 + }, + "date_of_expiration": { + "type": 6, + "value": 1680955004367 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678363074662 + }, + "money_release_date": { + "type": 6, + "value": 1678363074662 + }, "money_release_status": "approved", "wasDebited": true }, @@ -29341,7 +37711,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02t9t01g7oohxhjr7dj3t", "revision_nr": 1, "created": 1697467090101, "modified": 1697467090101 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02t9t01g7oohxhjr7dj3t", + "revision_nr": 1, + "created": 1697467090101, + "modified": 1697467090101 + } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817", @@ -29355,15 +37734,30 @@ "total_amount": 150, "history_id": 1678578646817, "id": 1678578646817, - "date_created": { "type": 6, "value": 1678578646817 }, - "date_last_updated": { "type": 6, "value": 1678578746705 }, - "date_of_expiration": { "type": 6, "value": 1681170646817 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678578746705 }, - "money_release_date": { "type": 6, "value": 1678578746705 }, + "date_created": { + "type": 6, + "value": 1678578646817 + }, + "date_last_updated": { + "type": 6, + "value": 1678578746705 + }, + "date_of_expiration": { + "type": 6, + "value": 1681170646817 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678578746705 + }, + "money_release_date": { + "type": 6, + "value": 1678578746705 + }, "money_release_status": "approved", "wasDebited": true }, @@ -29409,9 +37803,18 @@ "original_amount": 9610615, "total_amount": 9610615, "id": 1679266969508, - "date_created": { "type": 6, "value": 1679266969508 }, - "date_last_updated": { "type": 6, "value": 1679266969508 }, - "date_of_expiration": { "type": 6, "value": 1679266969508 }, + "date_created": { + "type": 6, + "value": 1679266969508 + }, + "date_last_updated": { + "type": 6, + "value": 1679266969508 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266969508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29473,9 +37876,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1681517575873, - "date_created": { "type": 6, "value": 1681517575873 }, - "date_last_updated": { "type": 6, "value": 1681517575873 }, - "date_of_expiration": { "type": 6, "value": 1681517575873 }, + "date_created": { + "type": 6, + "value": 1681517575873 + }, + "date_last_updated": { + "type": 6, + "value": 1681517575873 + }, + "date_of_expiration": { + "type": 6, + "value": 1681517575873 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29525,9 +37937,18 @@ "original_amount": 100, "total_amount": 100, "id": 1685393623279, - "date_created": { "type": 6, "value": 1685393623279 }, - "date_last_updated": { "type": 6, "value": 1685393623279 }, - "date_of_expiration": { "type": 6, "value": 1685393623279 }, + "date_created": { + "type": 6, + "value": 1685393623279 + }, + "date_last_updated": { + "type": 6, + "value": 1685393623279 + }, + "date_of_expiration": { + "type": 6, + "value": 1685393623279 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29588,9 +38009,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685666780649, - "date_created": { "type": 6, "value": 1685666780649 }, - "date_last_updated": { "type": 6, "value": 1685666780649 }, - "date_of_expiration": { "type": 6, "value": 1688258780649 }, + "date_created": { + "type": 6, + "value": 1685666780649 + }, + "date_last_updated": { + "type": 6, + "value": 1685666780649 + }, + "date_of_expiration": { + "type": 6, + "value": 1688258780649 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29650,9 +38080,18 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1688400356570, - "date_created": { "type": 6, "value": 1688400356570 }, - "date_last_updated": { "type": 6, "value": 1688400356570 }, - "date_of_expiration": { "type": 6, "value": 1688400356570 }, + "date_created": { + "type": 6, + "value": 1688400356570 + }, + "date_last_updated": { + "type": 6, + "value": 1688400356570 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400356570 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29680,7 +38119,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02tbo01gnoohx0pru2qyz", "revision_nr": 1, "created": 1697467090168, "modified": 1697467090168 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02tbo01gnoohx0pru2qyz", + "revision_nr": 1, + "created": 1697467090168, + "modified": 1697467090168 + } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097", @@ -29694,15 +38142,30 @@ "total_amount": 9770000, "history_id": 1688402757097, "id": 1688402757097, - "date_created": { "type": 6, "value": 1688402757097 }, - "date_last_updated": { "type": 6, "value": 1688502811967 }, - "date_of_expiration": { "type": 6, "value": 1688402757097 }, + "date_created": { + "type": 6, + "value": 1688402757097 + }, + "date_last_updated": { + "type": 6, + "value": 1688502811967 + }, + "date_of_expiration": { + "type": 6, + "value": 1688402757097 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1688502811967 }, - "money_release_date": { "type": 6, "value": 1688502811967 }, + "date_approved": { + "type": 6, + "value": 1688502811967 + }, + "money_release_date": { + "type": 6, + "value": 1688502811967 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -29714,13 +38177,32 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history", - "content": { "type": 1, "value": {}, "revision": "lnt02t9c01g1oohx18shha0u", "revision_nr": 1, "created": 1697467090177, "modified": 1697467090177 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02t9c01g1oohx18shha0u", + "revision_nr": 1, + "created": 1697467090177, + "modified": 1697467090177 + } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/credit", "content": { "type": 1, - "value": { "approvedLimit": 3000, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1680628575345 }, "lastReview": { "type": 6, "value": 1680978371033 } }, + "value": { + "approvedLimit": 3000, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1680628575345 + }, + "lastReview": { + "type": 6, + "value": 1680978371033 + } + }, "revision": "lnt02tc101gooohxhyo04ljf", "revision_nr": 1, "created": 1697467090181, @@ -29731,7 +38213,16 @@ "path": "ivipcoin-db::__movement_wallet__/045122812371711340", "content": { "type": 1, - "value": { "dataModificacao": 1678330009291, "dateValidity": 1678662517584, "totalValue": 0.17, "currencyType": "BRL", "balancesModificacao": { "type": 6, "value": 1696561200000 } }, + "value": { + "dataModificacao": 1678330009291, + "dateValidity": 1678662517584, + "totalValue": 0.17, + "currencyType": "BRL", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, "revision": "lnt02t9401fyoohx2l9pdqqq", "revision_nr": 1, "created": 1697467090185, @@ -29742,7 +38233,11 @@ "path": "ivipcoin-db::__movement_wallet__/045407265934540584/balances/IVIP", "content": { "type": 1, - "value": { "available": "32771309.00000000", "symbol": "IVIP", "value": 4296.45 }, + "value": { + "available": "32771309.00000000", + "symbol": "IVIP", + "value": 4296.45 + }, "revision": "lnt02tc901groohxejyzfctr", "revision_nr": 1, "created": 1697467090189, @@ -29751,7 +38246,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02tc901gqoohx4ii22ix6", "revision_nr": 1, "created": 1697467090193, "modified": 1697467090193 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02tc901gqoohx4ii22ix6", + "revision_nr": 1, + "created": 1697467090193, + "modified": 1697467090193 + } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442/description", @@ -29766,7 +38268,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02tcl01gvoohxezi5aosp", "revision_nr": 1, "created": 1697467090201, "modified": 1697467090201 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02tcl01gvoohxezi5aosp", + "revision_nr": 1, + "created": 1697467090201, + "modified": 1697467090201 + } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442", @@ -29780,15 +38291,30 @@ "total_amount": 4000, "history_id": 1678148520442, "id": 1678148520442, - "date_created": { "type": 6, "value": 1678148520442 }, - "date_last_updated": { "type": 6, "value": 1678205053026 }, - "date_of_expiration": { "type": 6, "value": 1680740520442 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678205053026 }, - "money_release_date": { "type": 6, "value": 1678205053026 }, + "date_created": { + "type": 6, + "value": 1678148520442 + }, + "date_last_updated": { + "type": 6, + "value": 1678205053026 + }, + "date_of_expiration": { + "type": 6, + "value": 1680740520442 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678205053026 + }, + "money_release_date": { + "type": 6, + "value": 1678205053026 + }, "money_release_status": "approved", "wasDebited": true }, @@ -29834,9 +38360,18 @@ "original_amount": 28376575, "total_amount": 28376575, "id": 1678207899775, - "date_created": { "type": 6, "value": 1678207899775 }, - "date_last_updated": { "type": 6, "value": 1678207899775 }, - "date_of_expiration": { "type": 6, "value": 1678207899775 }, + "date_created": { + "type": 6, + "value": 1678207899775 + }, + "date_last_updated": { + "type": 6, + "value": 1678207899775 + }, + "date_of_expiration": { + "type": 6, + "value": 1678207899775 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29864,7 +38399,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02td501h0oohx9t7166as", "revision_nr": 1, "created": 1697467090222, "modified": 1697467090222 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02td501h0oohx9t7166as", + "revision_nr": 1, + "created": 1697467090222, + "modified": 1697467090222 + } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271", @@ -29878,15 +38422,30 @@ "total_amount": 4000, "history_id": 1689022785271, "id": 1689022785271, - "date_created": { "type": 6, "value": 1689022785271 }, - "date_last_updated": { "type": 6, "value": 1689023489899 }, - "date_of_expiration": { "type": 6, "value": 1691614785271 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689023489899 }, - "money_release_date": { "type": 6, "value": 1689023489899 }, + "date_created": { + "type": 6, + "value": 1689022785271 + }, + "date_last_updated": { + "type": 6, + "value": 1689023489899 + }, + "date_of_expiration": { + "type": 6, + "value": 1691614785271 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689023489899 + }, + "money_release_date": { + "type": 6, + "value": 1689023489899 + }, "money_release_status": "approved", "wasDebited": true }, @@ -29909,7 +38468,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02tdi01h3oohxe4vkemf9", "revision_nr": 1, "created": 1697467090234, "modified": 1697467090234 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02tdi01h3oohxe4vkemf9", + "revision_nr": 1, + "created": 1697467090234, + "modified": 1697467090234 + } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520", @@ -29923,9 +38491,18 @@ "total_amount": 4000, "history_id": 1689022932520, "id": 1689022932520, - "date_created": { "type": 6, "value": 1689022932520 }, - "date_last_updated": { "type": 6, "value": 1689022932520 }, - "date_of_expiration": { "type": 6, "value": 1691614932520 }, + "date_created": { + "type": 6, + "value": 1689022932520 + }, + "date_last_updated": { + "type": 6, + "value": 1689022932520 + }, + "date_of_expiration": { + "type": 6, + "value": 1691614932520 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -29973,9 +38550,18 @@ "original_amount": 3621314, "total_amount": 3621314, "id": 1689025604196, - "date_created": { "type": 6, "value": 1689025604196 }, - "date_last_updated": { "type": 6, "value": 1689025604196 }, - "date_of_expiration": { "type": 6, "value": 1689025604196 }, + "date_created": { + "type": 6, + "value": 1689025604196 + }, + "date_last_updated": { + "type": 6, + "value": 1689025604196 + }, + "date_of_expiration": { + "type": 6, + "value": 1689025604196 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30003,7 +38589,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02te401h8oohxde6s7skl", "revision_nr": 1, "created": 1697467090256, "modified": 1697467090256 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02te401h8oohxde6s7skl", + "revision_nr": 1, + "created": 1697467090256, + "modified": 1697467090256 + } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297", @@ -30017,15 +38612,30 @@ "total_amount": 2000, "history_id": 1689196978297, "id": 1689196978297, - "date_created": { "type": 6, "value": 1689196978297 }, - "date_last_updated": { "type": 6, "value": 1689257573443 }, - "date_of_expiration": { "type": 6, "value": 1691788978297 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689257573443 }, - "money_release_date": { "type": 6, "value": 1689257573443 }, + "date_created": { + "type": 6, + "value": 1689196978297 + }, + "date_last_updated": { + "type": 6, + "value": 1689257573443 + }, + "date_of_expiration": { + "type": 6, + "value": 1691788978297 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689257573443 + }, + "money_release_date": { + "type": 6, + "value": 1689257573443 + }, "money_release_status": "approved", "wasDebited": true }, @@ -30071,9 +38681,18 @@ "original_amount": 773420, "total_amount": 773420, "id": 1689258784601, - "date_created": { "type": 6, "value": 1689258784601 }, - "date_last_updated": { "type": 6, "value": 1689258784601 }, - "date_of_expiration": { "type": 6, "value": 1689258784601 }, + "date_created": { + "type": 6, + "value": 1689258784601 + }, + "date_last_updated": { + "type": 6, + "value": 1689258784601 + }, + "date_of_expiration": { + "type": 6, + "value": 1689258784601 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30090,13 +38709,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history", - "content": { "type": 1, "value": {}, "revision": "lnt02tch01gsoohx4rir8eku", "revision_nr": 1, "created": 1697467090275, "modified": 1697467090275 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02tch01gsoohx4rir8eku", + "revision_nr": 1, + "created": 1697467090275, + "modified": 1697467090275 + } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02ter01hboohxayfxcnf1", "revision_nr": 1, "created": 1697467090281, @@ -30107,7 +38737,16 @@ "path": "ivipcoin-db::__movement_wallet__/045407265934540584", "content": { "type": 1, - "value": { "dataModificacao": 1678132398712, "dateValidity": 1678671560774, "totalValue": 7620.23, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696820400000 } }, + "value": { + "dataModificacao": 1678132398712, + "dateValidity": 1678671560774, + "totalValue": 7620.23, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } + }, "revision": "lnt02tc901gpoohxbb2tcf1e", "revision_nr": 1, "created": 1697467090287, @@ -30118,7 +38757,14 @@ "path": "ivipcoin-db::__movement_wallet__/045642520706235200", "content": { "type": 1, - "value": { "dataModificacao": 1678565263127, "dateValidity": 1678579663168, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678565263127, + "dateValidity": 1678579663168, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02tf301hcoohx8nul0s2y", "revision_nr": 1, "created": 1697467090291, @@ -30129,7 +38775,11 @@ "path": "ivipcoin-db::__movement_wallet__/046564008100064220/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02tf701heoohx34bz9f0r", "revision_nr": 1, "created": 1697467090295, @@ -30146,7 +38796,10 @@ "balances": {}, "history": {}, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1697166000000 } + "balancesModificacao": { + "type": 6, + "value": 1697166000000 + } }, "revision": "lnt02tf701hdoohxh1t80idd", "revision_nr": 1, @@ -30164,7 +38817,10 @@ "balances": {}, "history": {}, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1692500400000 } + "balancesModificacao": { + "type": 6, + "value": 1692500400000 + } }, "revision": "lnt02tff01hfoohxfuvh1sfd", "revision_nr": 1, @@ -30176,7 +38832,11 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/balances/IVIP", "content": { "type": 1, - "value": { "available": "8588955.54000000", "symbol": "IVIP", "value": 4678.3 }, + "value": { + "available": "8588955.54000000", + "symbol": "IVIP", + "value": 4678.3 + }, "revision": "lnt02tfj01hioohxe32w0joy", "revision_nr": 1, "created": 1697467090308, @@ -30185,7 +38845,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02tfj01hhoohx23x32tut", "revision_nr": 1, "created": 1697467090311, "modified": 1697467090311 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02tfj01hhoohx23x32tut", + "revision_nr": 1, + "created": 1697467090311, + "modified": 1697467090311 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704/description", @@ -30200,7 +38867,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02tfv01hmoohxazcw1r14", "revision_nr": 1, "created": 1697467090319, "modified": 1697467090319 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02tfv01hmoohxazcw1r14", + "revision_nr": 1, + "created": 1697467090319, + "modified": 1697467090319 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704", @@ -30214,15 +38890,30 @@ "total_amount": 5000, "history_id": 1683569771704, "id": 1683569771704, - "date_created": { "type": 6, "value": 1683569771704 }, - "date_last_updated": { "type": 6, "value": 1683570873225 }, - "date_of_expiration": { "type": 6, "value": 1686161771704 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683570873225 }, - "money_release_date": { "type": 6, "value": 1683570873225 }, + "date_created": { + "type": 6, + "value": 1683569771704 + }, + "date_last_updated": { + "type": 6, + "value": 1683570873225 + }, + "date_of_expiration": { + "type": 6, + "value": 1686161771704 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683570873225 + }, + "money_release_date": { + "type": 6, + "value": 1683570873225 + }, "money_release_status": "approved", "wasDebited": true }, @@ -30268,9 +38959,18 @@ "original_amount": 27021960, "total_amount": 27021960, "id": 1684018936403, - "date_created": { "type": 6, "value": 1684018936403 }, - "date_last_updated": { "type": 6, "value": 1684018936403 }, - "date_of_expiration": { "type": 6, "value": 1684018936403 }, + "date_created": { + "type": 6, + "value": 1684018936403 + }, + "date_last_updated": { + "type": 6, + "value": 1684018936403 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018936403 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30331,9 +39031,18 @@ "original_amount": 7668365, "total_amount": 7668365, "id": 1688531798249, - "date_created": { "type": 6, "value": 1688531798249 }, - "date_last_updated": { "type": 6, "value": 1688531798249 }, - "date_of_expiration": { "type": 6, "value": 1691210198249 }, + "date_created": { + "type": 6, + "value": 1688531798249 + }, + "date_last_updated": { + "type": 6, + "value": 1688531798249 + }, + "date_of_expiration": { + "type": 6, + "value": 1691210198249 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30361,7 +39070,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02tgt01huoohx28qp4fkz", "revision_nr": 1, "created": 1697467090352, "modified": 1697467090352 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02tgt01huoohx28qp4fkz", + "revision_nr": 1, + "created": 1697467090352, + "modified": 1697467090352 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933", @@ -30375,15 +39093,30 @@ "total_amount": 500, "history_id": 1688647483933, "id": 1688647483933, - "date_created": { "type": 6, "value": 1688647483933 }, - "date_last_updated": { "type": 6, "value": 1688767276048 }, - "date_of_expiration": { "type": 6, "value": 1691239483933 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1688767276048 }, - "money_release_date": { "type": 6, "value": 1688767276048 }, + "date_created": { + "type": 6, + "value": 1688647483933 + }, + "date_last_updated": { + "type": 6, + "value": 1688767276048 + }, + "date_of_expiration": { + "type": 6, + "value": 1691239483933 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1688767276048 + }, + "money_release_date": { + "type": 6, + "value": 1688767276048 + }, "money_release_status": "approved", "wasDebited": true }, @@ -30429,9 +39162,18 @@ "original_amount": 823634, "total_amount": 823634, "id": 1688771723408, - "date_created": { "type": 6, "value": 1688771723408 }, - "date_last_updated": { "type": 6, "value": 1688771723408 }, - "date_of_expiration": { "type": 6, "value": 1688771723408 }, + "date_created": { + "type": 6, + "value": 1688771723408 + }, + "date_last_updated": { + "type": 6, + "value": 1688771723408 + }, + "date_of_expiration": { + "type": 6, + "value": 1688771723408 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30459,7 +39201,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02thg01hzoohxabvzgyvr", "revision_nr": 1, "created": 1697467090376, "modified": 1697467090376 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02thg01hzoohxabvzgyvr", + "revision_nr": 1, + "created": 1697467090376, + "modified": 1697467090376 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105", @@ -30473,15 +39224,30 @@ "total_amount": 1000, "history_id": 1689021558105, "id": 1689021558105, - "date_created": { "type": 6, "value": 1689021558105 }, - "date_last_updated": { "type": 6, "value": 1689023222567 }, - "date_of_expiration": { "type": 6, "value": 1691613558105 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689023222567 }, - "money_release_date": { "type": 6, "value": 1689023222567 }, + "date_created": { + "type": 6, + "value": 1689021558105 + }, + "date_last_updated": { + "type": 6, + "value": 1689023222567 + }, + "date_of_expiration": { + "type": 6, + "value": 1691613558105 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689023222567 + }, + "money_release_date": { + "type": 6, + "value": 1689023222567 + }, "money_release_status": "approved", "wasDebited": true }, @@ -30527,9 +39293,18 @@ "original_amount": 914949, "total_amount": 914949, "id": 1689023394597, - "date_created": { "type": 6, "value": 1689023394597 }, - "date_last_updated": { "type": 6, "value": 1689023394597 }, - "date_of_expiration": { "type": 6, "value": 1689023394597 }, + "date_created": { + "type": 6, + "value": 1689023394597 + }, + "date_last_updated": { + "type": 6, + "value": 1689023394597 + }, + "date_of_expiration": { + "type": 6, + "value": 1689023394597 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30557,7 +39332,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02ti101i4oohx0bhs051n", "revision_nr": 1, "created": 1697467090398, "modified": 1697467090398 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02ti101i4oohx0bhs051n", + "revision_nr": 1, + "created": 1697467090398, + "modified": 1697467090398 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301", @@ -30571,15 +39355,30 @@ "total_amount": 1000, "history_id": 1689248290301, "id": 1689248290301, - "date_created": { "type": 6, "value": 1689248290301 }, - "date_last_updated": { "type": 6, "value": 1689256767203 }, - "date_of_expiration": { "type": 6, "value": 1691840290301 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689256767203 }, - "money_release_date": { "type": 6, "value": 1689256767203 }, + "date_created": { + "type": 6, + "value": 1689248290301 + }, + "date_last_updated": { + "type": 6, + "value": 1689256767203 + }, + "date_of_expiration": { + "type": 6, + "value": 1691840290301 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689256767203 + }, + "money_release_date": { + "type": 6, + "value": 1689256767203 + }, "money_release_status": "approved", "wasDebited": true }, @@ -30625,9 +39424,18 @@ "original_amount": 381522, "total_amount": 381522, "id": 1689260053657, - "date_created": { "type": 6, "value": 1689260053657 }, - "date_last_updated": { "type": 6, "value": 1689260053657 }, - "date_of_expiration": { "type": 6, "value": 1689260053657 }, + "date_created": { + "type": 6, + "value": 1689260053657 + }, + "date_last_updated": { + "type": 6, + "value": 1689260053657 + }, + "date_of_expiration": { + "type": 6, + "value": 1689260053657 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30688,9 +39496,18 @@ "original_amount": 5008550, "total_amount": 5008550, "id": 1689301547038, - "date_created": { "type": 6, "value": 1689301547038 }, - "date_last_updated": { "type": 6, "value": 1689301547038 }, - "date_of_expiration": { "type": 6, "value": 1752459947038 }, + "date_created": { + "type": 6, + "value": 1689301547038 + }, + "date_last_updated": { + "type": 6, + "value": 1689301547038 + }, + "date_of_expiration": { + "type": 6, + "value": 1752459947038 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30717,7 +39534,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02tj201icoohxg3mg6f5f", "revision_nr": 1, "created": 1697467090434, "modified": 1697467090434 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02tj201icoohxg3mg6f5f", + "revision_nr": 1, + "created": 1697467090434, + "modified": 1697467090434 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691", @@ -30731,15 +39557,30 @@ "total_amount": 2000, "history_id": 1689355287691, "id": 1689355287691, - "date_created": { "type": 6, "value": 1689355287691 }, - "date_last_updated": { "type": 6, "value": 1689356136387 }, - "date_of_expiration": { "type": 6, "value": 1691947287691 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689356136387 }, - "money_release_date": { "type": 6, "value": 1689356136387 }, + "date_created": { + "type": 6, + "value": 1689355287691 + }, + "date_last_updated": { + "type": 6, + "value": 1689356136387 + }, + "date_of_expiration": { + "type": 6, + "value": 1691947287691 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689356136387 + }, + "money_release_date": { + "type": 6, + "value": 1689356136387 + }, "money_release_status": "approved", "wasDebited": true }, @@ -30785,9 +39626,18 @@ "original_amount": 1235586, "total_amount": 1235586, "id": 1689356922364, - "date_created": { "type": 6, "value": 1689356922364 }, - "date_last_updated": { "type": 6, "value": 1689356922364 }, - "date_of_expiration": { "type": 6, "value": 1689356922364 }, + "date_created": { + "type": 6, + "value": 1689356922364 + }, + "date_last_updated": { + "type": 6, + "value": 1689356922364 + }, + "date_of_expiration": { + "type": 6, + "value": 1689356922364 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30806,7 +39656,13 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692459787113 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692459787113 + } + }, "revision": "lnt02tjk01igoohxahkg1pxh", "revision_nr": 1, "created": 1697467090452, @@ -30868,8 +39724,14 @@ "total_amount": 3000, "id": 1689867787119, "history_id": 1689867787119, - "date_created": { "type": 6, "value": 1689867787119 }, - "date_last_updated": { "type": 6, "value": 1689867787119 }, + "date_created": { + "type": 6, + "value": 1689867787119 + }, + "date_last_updated": { + "type": 6, + "value": 1689867787119 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -30887,7 +39749,13 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692534311952 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692534311952 + } + }, "revision": "lnt02tk401iloohxf1no2xox", "revision_nr": 1, "created": 1697467090473, @@ -30949,16 +39817,28 @@ "total_amount": 3000, "id": 1689942311952, "history_id": 1689942311952, - "date_created": { "type": 6, "value": 1689942311952 }, - "date_last_updated": { "type": 6, "value": 1689942338759 }, + "date_created": { + "type": 6, + "value": 1689942311952 + }, + "date_last_updated": { + "type": 6, + "value": 1689942338759 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1689942338759 }, - "money_release_date": { "type": 6, "value": 1689942338759 }, + "date_approved": { + "type": 6, + "value": 1689942338759 + }, + "money_release_date": { + "type": 6, + "value": 1689942338759 + }, "money_release_status": "approved", "wasDebited": true }, @@ -31004,9 +39884,18 @@ "original_amount": 1849758, "total_amount": 1849758, "id": 1689942442311, - "date_created": { "type": 6, "value": 1689942442311 }, - "date_last_updated": { "type": 6, "value": 1689942442311 }, - "date_of_expiration": { "type": 6, "value": 1689942442311 }, + "date_created": { + "type": 6, + "value": 1689942442311 + }, + "date_last_updated": { + "type": 6, + "value": 1689942442311 + }, + "date_of_expiration": { + "type": 6, + "value": 1689942442311 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31025,7 +39914,13 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693792496983 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693792496983 + } + }, "revision": "lnt02tkz01isoohx4n0cd1fy", "revision_nr": 1, "created": 1697467090504, @@ -31087,8 +39982,14 @@ "total_amount": 2000, "id": 1691200496984, "history_id": 1691200496984, - "date_created": { "type": 6, "value": 1691200496984 }, - "date_last_updated": { "type": 6, "value": 1691200496984 }, + "date_created": { + "type": 6, + "value": 1691200496984 + }, + "date_last_updated": { + "type": 6, + "value": 1691200496984 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -31157,9 +40058,18 @@ "total_amount": 7821732.3, "id": 1691214286883, "history_id": 1691214286883, - "date_created": { "type": 6, "value": 1691214286883 }, - "date_last_updated": { "type": 6, "value": 1691214286883 }, - "date_of_expiration": { "type": 6, "value": 1691214286883 }, + "date_created": { + "type": 6, + "value": 1691214286883 + }, + "date_last_updated": { + "type": 6, + "value": 1691214286883 + }, + "date_of_expiration": { + "type": 6, + "value": 1691214286883 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31177,7 +40087,13 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693845025281 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693845025281 + } + }, "revision": "lnt02tm401j1oohx48shccr3", "revision_nr": 1, "created": 1697467090544, @@ -31239,16 +40155,28 @@ "total_amount": 1500, "id": 1691253025281, "history_id": 1691253025281, - "date_created": { "type": 6, "value": 1691253025281 }, - "date_last_updated": { "type": 6, "value": 1691253214508 }, + "date_created": { + "type": 6, + "value": 1691253025281 + }, + "date_last_updated": { + "type": 6, + "value": 1691253214508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691253214508 }, - "money_release_date": { "type": 6, "value": 1691253214508 }, + "date_approved": { + "type": 6, + "value": 1691253214508 + }, + "money_release_date": { + "type": 6, + "value": 1691253214508 + }, "money_release_status": "approved", "wasDebited": true }, @@ -31302,9 +40230,18 @@ "total_amount": 2127119, "id": 1691280221861, "history_id": 1691280221861, - "date_created": { "type": 6, "value": 1691280221861 }, - "date_last_updated": { "type": 6, "value": 1691280221861 }, - "date_of_expiration": { "type": 6, "value": 1691280221861 }, + "date_created": { + "type": 6, + "value": 1691280221861 + }, + "date_last_updated": { + "type": 6, + "value": 1691280221861 + }, + "date_of_expiration": { + "type": 6, + "value": 1691280221861 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -31374,9 +40311,18 @@ "total_amount": 7769562, "id": 1691283205891, "history_id": 1691283205891, - "date_created": { "type": 6, "value": 1691283205891 }, - "date_last_updated": { "type": 6, "value": 1691283205891 }, - "date_of_expiration": { "type": 6, "value": 1693961605891 }, + "date_created": { + "type": 6, + "value": 1691283205891 + }, + "date_last_updated": { + "type": 6, + "value": 1691283205891 + }, + "date_of_expiration": { + "type": 6, + "value": 1693961605891 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31445,9 +40391,18 @@ "total_amount": 7924953.24, "id": "1693962455688", "history_id": "1693962455688", - "date_created": { "type": 6, "value": 1693962455688 }, - "date_last_updated": { "type": 6, "value": 1693962455688 }, - "date_of_expiration": { "type": 6, "value": 1693962455688 }, + "date_created": { + "type": 6, + "value": 1693962455688 + }, + "date_last_updated": { + "type": 6, + "value": 1693962455688 + }, + "date_of_expiration": { + "type": 6, + "value": 1693962455688 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31516,16 +40471,28 @@ "total_amount": 7931475, "id": "1693962525967", "history_id": "1693962525967", - "date_created": { "type": 6, "value": 1693962525967 }, - "date_last_updated": { "type": 6, "value": 1696424642602 }, - "date_of_expiration": { "type": 6, "value": 1696554525967 }, + "date_created": { + "type": 6, + "value": 1693962525967 + }, + "date_last_updated": { + "type": 6, + "value": 1696424642602 + }, + "date_of_expiration": { + "type": 6, + "value": 1696554525967 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1696424642602 }, + "money_release_date": { + "type": 6, + "value": 1696424642602 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -31590,16 +40557,28 @@ "total_amount": 19942224, "id": "1695167532103", "history_id": "1695167532103", - "date_created": { "type": 6, "value": 1695167532103 }, - "date_last_updated": { "type": 6, "value": 1695678287175 }, - "date_of_expiration": { "type": 6, "value": 1710892332102 }, + "date_created": { + "type": 6, + "value": 1695167532103 + }, + "date_last_updated": { + "type": 6, + "value": 1695678287175 + }, + "date_of_expiration": { + "type": 6, + "value": 1710892332102 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1695678287175 }, + "money_release_date": { + "type": 6, + "value": 1695678287175 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -31635,7 +40614,11 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 30 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 30 + }, "revision": "lnt02tpo01jtoohxebf8fdx5", "revision_nr": 1, "created": 1697467090676, @@ -31644,7 +40627,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02tpo01jsoohx2c99ao7o", "revision_nr": 1, "created": 1697467090680, "modified": 1697467090680 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02tpo01jsoohx2c99ao7o", + "revision_nr": 1, + "created": 1697467090680, + "modified": 1697467090680 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details", @@ -31679,17 +40669,32 @@ "total_amount": 970, "id": "1695956035041", "history_id": "1695956035041", - "date_created": { "type": 6, "value": 1695956035041 }, - "date_last_updated": { "type": 6, "value": 1696292637561 }, - "date_of_expiration": { "type": 6, "value": 1695956035041 }, + "date_created": { + "type": 6, + "value": 1695956035041 + }, + "date_last_updated": { + "type": 6, + "value": 1696292637561 + }, + "date_of_expiration": { + "type": 6, + "value": 1695956035041 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1696292637561 }, - "money_release_date": { "type": 6, "value": 1696292637561 }, + "date_approved": { + "type": 6, + "value": 1696292637561 + }, + "money_release_date": { + "type": 6, + "value": 1696292637561 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -31725,7 +40730,11 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 651697.8461999999 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 651697.8461999999 + }, "revision": "lnt02tql01jzoohx999408ge", "revision_nr": 1, "created": 1697467090709, @@ -31734,7 +40743,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02tql01jyoohxee36cv0v", "revision_nr": 1, "created": 1697467090714, "modified": 1697467090714 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02tql01jyoohxee36cv0v", + "revision_nr": 1, + "created": 1697467090714, + "modified": 1697467090714 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details", @@ -31769,17 +40785,32 @@ "total_amount": 21071563.6938, "id": "1696003948025", "history_id": "1696003948025", - "date_created": { "type": 6, "value": 1696003948025 }, - "date_last_updated": { "type": 6, "value": 1696292793604 }, - "date_of_expiration": { "type": 6, "value": 1696003948025 }, + "date_created": { + "type": 6, + "value": 1696003948025 + }, + "date_last_updated": { + "type": 6, + "value": 1696292793604 + }, + "date_of_expiration": { + "type": 6, + "value": 1696003948025 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_other_reason", - "date_approved": { "type": 6, "value": 1696292793604 }, - "money_release_date": { "type": 6, "value": 1696292793604 }, + "date_approved": { + "type": 6, + "value": 1696292793604 + }, + "money_release_date": { + "type": 6, + "value": 1696292793604 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -31815,7 +40846,11 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 304593.12 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 304593.12 + }, "revision": "lnt02trj01k5oohxft2g55n5", "revision_nr": 1, "created": 1697467090743, @@ -31824,7 +40859,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02tri01k4oohx5rx363bw", "revision_nr": 1, "created": 1697467090747, "modified": 1697467090747 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02tri01k4oohx5rx363bw", + "revision_nr": 1, + "created": 1697467090747, + "modified": 1697467090747 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details", @@ -31859,16 +40901,28 @@ "total_amount": 9848510.88, "id": "1696207958470", "history_id": "1696207958470", - "date_created": { "type": 6, "value": 1696207958470 }, - "date_last_updated": { "type": 6, "value": 1696293727841 }, - "date_of_expiration": { "type": 6, "value": 1696207958470 }, + "date_created": { + "type": 6, + "value": 1696207958470 + }, + "date_last_updated": { + "type": 6, + "value": 1696293727841 + }, + "date_of_expiration": { + "type": 6, + "value": 1696207958470 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_account_contains_debit_balance", - "money_release_date": { "type": 6, "value": 1696293727841 }, + "money_release_date": { + "type": 6, + "value": 1696293727841 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -31904,7 +40958,11 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 600892.0499999999 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 600892.0499999999 + }, "revision": "lnt02tsh01kboohx5kcl65lu", "revision_nr": 1, "created": 1697467090777, @@ -31913,7 +40971,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02tsh01kaoohx0qto74o9", "revision_nr": 1, "created": 1697467090781, "modified": 1697467090781 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02tsh01kaoohx0qto74o9", + "revision_nr": 1, + "created": 1697467090781, + "modified": 1697467090781 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details", @@ -31948,17 +41013,32 @@ "total_amount": 19428842.95, "id": "1696471625534", "history_id": "1696471625534", - "date_created": { "type": 6, "value": 1696471625534 }, - "date_last_updated": { "type": 6, "value": 1696475012296 }, - "date_of_expiration": { "type": 6, "value": 1696471625534 }, + "date_created": { + "type": 6, + "value": 1696471625534 + }, + "date_last_updated": { + "type": 6, + "value": 1696475012296 + }, + "date_of_expiration": { + "type": 6, + "value": 1696471625534 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1696475012296 }, - "money_release_date": { "type": 6, "value": 1696475012296 }, + "date_approved": { + "type": 6, + "value": 1696475012296 + }, + "money_release_date": { + "type": 6, + "value": 1696475012296 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -32024,9 +41104,18 @@ "total_amount": 7931207, "id": "1696471870838", "history_id": "1696471870838", - "date_created": { "type": 6, "value": 1696471870838 }, - "date_last_updated": { "type": 6, "value": 1696471870838 }, - "date_of_expiration": { "type": 6, "value": 1699150270607 }, + "date_created": { + "type": 6, + "value": 1696471870838 + }, + "date_last_updated": { + "type": 6, + "value": 1696471870838 + }, + "date_of_expiration": { + "type": 6, + "value": 1699150270607 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -32096,9 +41185,18 @@ "total_amount": 1035046, "id": "1696471977293", "history_id": "1696471977293", - "date_created": { "type": 6, "value": 1696471977293 }, - "date_last_updated": { "type": 6, "value": 1696471977293 }, - "date_of_expiration": { "type": 6, "value": 1699150377200 }, + "date_created": { + "type": 6, + "value": 1696471977293 + }, + "date_last_updated": { + "type": 6, + "value": 1696471977293 + }, + "date_of_expiration": { + "type": 6, + "value": 1699150377200 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32114,13 +41212,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history", - "content": { "type": 1, "value": {}, "revision": "lnt02tfr01hjoohx36l77ko8", "revision_nr": 1, "created": 1697467090846, "modified": 1697467090846 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02tfr01hjoohx36l77ko8", + "revision_nr": 1, + "created": 1697467090846, + "modified": 1697467090846 + } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1695957287898 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1695957287898 + } + }, "revision": "lnt02tum01kkoohxh0tmbhkd", "revision_nr": 1, "created": 1697467090850, @@ -32131,7 +41244,16 @@ "path": "ivipcoin-db::__movement_wallet__/047925577230662820", "content": { "type": 1, - "value": { "dataModificacao": 1683569670949, "dateValidity": 1683569670949, "totalValue": 48201.8, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697338800000 } }, + "value": { + "dataModificacao": 1683569670949, + "dateValidity": 1683569670949, + "totalValue": 48201.8, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, "revision": "lnt02tfj01hgoohxdhhf9iin", "revision_nr": 1, "created": 1697467090857, @@ -32142,7 +41264,14 @@ "path": "ivipcoin-db::__movement_wallet__/049717311460128590", "content": { "type": 1, - "value": { "dataModificacao": 1678063274590, "dateValidity": 1678170667714, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678063274590, + "dateValidity": 1678170667714, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02tux01kloohxc3nu8ton", "revision_nr": 1, "created": 1697467090862, @@ -32153,7 +41282,11 @@ "path": "ivipcoin-db::__movement_wallet__/050149211466839150/balances/IVIP", "content": { "type": 1, - "value": { "available": "1392927.00000000", "symbol": "IVIP", "value": 149.3 }, + "value": { + "available": "1392927.00000000", + "symbol": "IVIP", + "value": 149.3 + }, "revision": "lnt02tv201kooohx3izodawp", "revision_nr": 1, "created": 1697467090866, @@ -32162,7 +41295,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02tv201knoohxfiwga9zy", "revision_nr": 1, "created": 1697467090873, "modified": 1697467090873 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02tv201knoohxfiwga9zy", + "revision_nr": 1, + "created": 1697467090873, + "modified": 1697467090873 + } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571/description", @@ -32177,7 +41317,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02tvj01ksoohxbga3atre", "revision_nr": 1, "created": 1697467090883, "modified": 1697467090883 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02tvj01ksoohxbga3atre", + "revision_nr": 1, + "created": 1697467090883, + "modified": 1697467090883 + } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571", @@ -32191,15 +41340,30 @@ "total_amount": 300, "history_id": 1679232470571, "id": 1679232470571, - "date_created": { "type": 6, "value": 1679232470571 }, - "date_last_updated": { "type": 6, "value": 1679266576805 }, - "date_of_expiration": { "type": 6, "value": 1681824470571 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679266576805 }, - "money_release_date": { "type": 6, "value": 1679266576805 }, + "date_created": { + "type": 6, + "value": 1679232470571 + }, + "date_last_updated": { + "type": 6, + "value": 1679266576805 + }, + "date_of_expiration": { + "type": 6, + "value": 1681824470571 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679266576805 + }, + "money_release_date": { + "type": 6, + "value": 1679266576805 + }, "money_release_status": "approved", "wasDebited": true }, @@ -32222,7 +41386,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02tvx01kvoohx2qjags77", "revision_nr": 1, "created": 1697467090898, "modified": 1697467090898 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02tvx01kvoohx2qjags77", + "revision_nr": 1, + "created": 1697467090898, + "modified": 1697467090898 + } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671", @@ -32236,9 +41409,18 @@ "total_amount": 300, "history_id": 1679232566671, "id": 1679232566671, - "date_created": { "type": 6, "value": 1679232566671 }, - "date_last_updated": { "type": 6, "value": 1679232566671 }, - "date_of_expiration": { "type": 6, "value": 1681824566671 }, + "date_created": { + "type": 6, + "value": 1679232566671 + }, + "date_last_updated": { + "type": 6, + "value": 1679232566671 + }, + "date_of_expiration": { + "type": 6, + "value": 1681824566671 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -32286,9 +41468,18 @@ "original_amount": 1597688, "total_amount": 1597688, "id": 1679871668854, - "date_created": { "type": 6, "value": 1679871668854 }, - "date_last_updated": { "type": 6, "value": 1679871668854 }, - "date_of_expiration": { "type": 6, "value": 1679871668854 }, + "date_created": { + "type": 6, + "value": 1679871668854 + }, + "date_last_updated": { + "type": 6, + "value": 1679871668854 + }, + "date_of_expiration": { + "type": 6, + "value": 1679871668854 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32316,7 +41507,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02twr01l0oohx52mj7oev", "revision_nr": 1, "created": 1697467090928, "modified": 1697467090928 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02twr01l0oohx52mj7oev", + "revision_nr": 1, + "created": 1697467090928, + "modified": 1697467090928 + } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075", @@ -32330,15 +41530,30 @@ "total_amount": 300, "history_id": 1684190255075, "id": 1684190255075, - "date_created": { "type": 6, "value": 1684190255075 }, - "date_last_updated": { "type": 6, "value": 1684239076762 }, - "date_of_expiration": { "type": 6, "value": 1686782255075 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684239076762 }, - "money_release_date": { "type": 6, "value": 1684239076762 }, + "date_created": { + "type": 6, + "value": 1684190255075 + }, + "date_last_updated": { + "type": 6, + "value": 1684239076762 + }, + "date_of_expiration": { + "type": 6, + "value": 1686782255075 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684239076762 + }, + "money_release_date": { + "type": 6, + "value": 1684239076762 + }, "money_release_status": "approved", "wasDebited": true }, @@ -32384,9 +41599,18 @@ "original_amount": 1461219, "total_amount": 1461219, "id": 1684624205744, - "date_created": { "type": 6, "value": 1684624205744 }, - "date_last_updated": { "type": 6, "value": 1684624205744 }, - "date_of_expiration": { "type": 6, "value": 1684624205744 }, + "date_created": { + "type": 6, + "value": 1684624205744 + }, + "date_last_updated": { + "type": 6, + "value": 1684624205744 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624205744 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32447,9 +41671,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1686353262267, - "date_created": { "type": 6, "value": 1686353262267 }, - "date_last_updated": { "type": 6, "value": 1686353262267 }, - "date_of_expiration": { "type": 6, "value": 1688945262267 }, + "date_created": { + "type": 6, + "value": 1686353262267 + }, + "date_last_updated": { + "type": 6, + "value": 1686353262267 + }, + "date_of_expiration": { + "type": 6, + "value": 1688945262267 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32510,9 +41743,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1686353693526, - "date_created": { "type": 6, "value": 1686353693526 }, - "date_last_updated": { "type": 6, "value": 1686353693526 }, - "date_of_expiration": { "type": 6, "value": 1702164893526 }, + "date_created": { + "type": 6, + "value": 1686353693526 + }, + "date_last_updated": { + "type": 6, + "value": 1686353693526 + }, + "date_of_expiration": { + "type": 6, + "value": 1702164893526 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32573,9 +41815,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1686657739276, - "date_created": { "type": 6, "value": 1686657739276 }, - "date_last_updated": { "type": 6, "value": 1686657739276 }, - "date_of_expiration": { "type": 6, "value": 1718280139276 }, + "date_created": { + "type": 6, + "value": 1686657739276 + }, + "date_last_updated": { + "type": 6, + "value": 1686657739276 + }, + "date_of_expiration": { + "type": 6, + "value": 1718280139276 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32635,9 +41886,18 @@ "original_amount": 500000, "total_amount": 500000, "id": 1687363201264, - "date_created": { "type": 6, "value": 1687363201264 }, - "date_last_updated": { "type": 6, "value": 1687363201264 }, - "date_of_expiration": { "type": 6, "value": 1718985601264 }, + "date_created": { + "type": 6, + "value": 1687363201264 + }, + "date_last_updated": { + "type": 6, + "value": 1687363201264 + }, + "date_of_expiration": { + "type": 6, + "value": 1718985601264 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32697,9 +41957,18 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1687363301418, - "date_created": { "type": 6, "value": 1687363301418 }, - "date_last_updated": { "type": 6, "value": 1687363301418 }, - "date_of_expiration": { "type": 6, "value": 1750521701418 }, + "date_created": { + "type": 6, + "value": 1687363301418 + }, + "date_last_updated": { + "type": 6, + "value": 1687363301418 + }, + "date_of_expiration": { + "type": 6, + "value": 1750521701418 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32759,9 +42028,18 @@ "original_amount": 1020, "total_amount": 1020, "id": 1689804806407, - "date_created": { "type": 6, "value": 1689804806407 }, - "date_last_updated": { "type": 6, "value": 1689804806407 }, - "date_of_expiration": { "type": 6, "value": 1689804806407 }, + "date_created": { + "type": 6, + "value": 1689804806407 + }, + "date_last_updated": { + "type": 6, + "value": 1689804806407 + }, + "date_of_expiration": { + "type": 6, + "value": 1689804806407 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32831,9 +42109,18 @@ "total_amount": 100000, "id": 1690414261722, "history_id": 1690414261722, - "date_created": { "type": 6, "value": 1690414261722 }, - "date_last_updated": { "type": 6, "value": 1690414261722 }, - "date_of_expiration": { "type": 6, "value": 1693092661717 }, + "date_created": { + "type": 6, + "value": 1690414261722 + }, + "date_last_updated": { + "type": 6, + "value": 1690414261722 + }, + "date_of_expiration": { + "type": 6, + "value": 1693092661717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32902,9 +42189,18 @@ "total_amount": 100000, "id": "1693093011374", "history_id": "1693093011374", - "date_created": { "type": 6, "value": 1693093011374 }, - "date_last_updated": { "type": 6, "value": 1693093011374 }, - "date_of_expiration": { "type": 6, "value": 1693093011374 }, + "date_created": { + "type": 6, + "value": 1693093011374 + }, + "date_last_updated": { + "type": 6, + "value": 1693093011374 + }, + "date_of_expiration": { + "type": 6, + "value": 1693093011374 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32944,7 +42240,11 @@ "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 3000 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 3000 + }, "revision": "lnt02u1l01lyoohx3vc5hb9l", "revision_nr": 1, "created": 1697467091102, @@ -32953,7 +42253,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02u1l01lxoohx1ildfyza", "revision_nr": 1, "created": 1697467091107, "modified": 1697467091107 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02u1l01lxoohx1ildfyza", + "revision_nr": 1, + "created": 1697467091107, + "modified": 1697467091107 + } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details", @@ -32987,17 +42294,32 @@ "total_amount": 97000, "id": "1693173218030", "history_id": "1693173218030", - "date_created": { "type": 6, "value": 1693173218030 }, - "date_last_updated": { "type": 6, "value": 1693863156578 }, - "date_of_expiration": { "type": 6, "value": 1693173218030 }, + "date_created": { + "type": 6, + "value": 1693173218030 + }, + "date_last_updated": { + "type": 6, + "value": 1693863156578 + }, + "date_of_expiration": { + "type": 6, + "value": 1693173218030 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1693863156578 }, - "money_release_date": { "type": 6, "value": 1693863156578 }, + "date_approved": { + "type": 6, + "value": 1693863156578 + }, + "money_release_date": { + "type": 6, + "value": 1693863156578 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -33062,9 +42384,18 @@ "total_amount": 800000, "id": "1693228740965", "history_id": "1693228740965", - "date_created": { "type": 6, "value": 1693228740965 }, - "date_last_updated": { "type": 6, "value": 1693228740965 }, - "date_of_expiration": { "type": 6, "value": 1695907140964 }, + "date_created": { + "type": 6, + "value": 1693228740965 + }, + "date_last_updated": { + "type": 6, + "value": 1693228740965 + }, + "date_of_expiration": { + "type": 6, + "value": 1695907140964 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33134,9 +42465,18 @@ "total_amount": 816000, "id": "1695907162897", "history_id": "1695907162897", - "date_created": { "type": 6, "value": 1695907162897 }, - "date_last_updated": { "type": 6, "value": 1695907162897 }, - "date_of_expiration": { "type": 6, "value": 1695907162897 }, + "date_created": { + "type": 6, + "value": 1695907162897 + }, + "date_last_updated": { + "type": 6, + "value": 1695907162897 + }, + "date_of_expiration": { + "type": 6, + "value": 1695907162897 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33206,9 +42546,18 @@ "total_amount": 80000, "id": "1695925845472", "history_id": "1695925845472", - "date_created": { "type": 6, "value": 1695925845472 }, - "date_last_updated": { "type": 6, "value": 1695925845472 }, - "date_of_expiration": { "type": 6, "value": 1698517845420 }, + "date_created": { + "type": 6, + "value": 1695925845472 + }, + "date_last_updated": { + "type": 6, + "value": 1695925845472 + }, + "date_of_expiration": { + "type": 6, + "value": 1698517845420 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33224,13 +42573,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history", - "content": { "type": 1, "value": {}, "revision": "lnt02tvd01kpoohxc7rfhlxs", "revision_nr": 1, "created": 1697467091177, "modified": 1697467091177 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02tvd01kpoohxc7rfhlxs", + "revision_nr": 1, + "created": 1697467091177, + "modified": 1697467091177 + } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1695926116598 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1695926116598 + } + }, "revision": "lnt02u3t01mboohx88aefweb", "revision_nr": 1, "created": 1697467091181, @@ -33246,7 +42610,10 @@ "dateValidity": 1679096727973, "totalValue": 488.05285041642975, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1697252400000 } + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } }, "revision": "lnt02tv201kmoohxd4jr3cw2", "revision_nr": 1, @@ -33258,7 +42625,11 @@ "path": "ivipcoin-db::__movement_wallet__/050294855698242330/balances/IVIP", "content": { "type": 1, - "value": { "available": "48500.00000000", "symbol": "IVIP", "value": 7.28 }, + "value": { + "available": "48500.00000000", + "symbol": "IVIP", + "value": 7.28 + }, "revision": "lnt02u4101meoohx16b98o7o", "revision_nr": 1, "created": 1697467091190, @@ -33267,7 +42638,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02u4101mdoohxbyz161mv", "revision_nr": 1, "created": 1697467091195, "modified": 1697467091195 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02u4101mdoohxbyz161mv", + "revision_nr": 1, + "created": 1697467091195, + "modified": 1697467091195 + } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146/description", @@ -33282,7 +42660,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02u4f01mioohx4o86ahju", "revision_nr": 1, "created": 1697467091203, "modified": 1697467091203 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02u4f01mioohx4o86ahju", + "revision_nr": 1, + "created": 1697467091203, + "modified": 1697467091203 + } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146", @@ -33296,15 +42683,30 @@ "total_amount": 1000, "history_id": 1678145412146, "id": 1678145412146, - "date_created": { "type": 6, "value": 1678145412146 }, - "date_last_updated": { "type": 6, "value": 1678220485124 }, - "date_of_expiration": { "type": 6, "value": 1680737412146 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678220485124 }, - "money_release_date": { "type": 6, "value": 1678220485124 }, + "date_created": { + "type": 6, + "value": 1678145412146 + }, + "date_last_updated": { + "type": 6, + "value": 1678220485124 + }, + "date_of_expiration": { + "type": 6, + "value": 1680737412146 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678220485124 + }, + "money_release_date": { + "type": 6, + "value": 1678220485124 + }, "money_release_status": "approved", "wasDebited": true }, @@ -33327,7 +42729,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02u4s01mloohx0elqbca1", "revision_nr": 1, "created": 1697467091216, "modified": 1697467091216 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02u4s01mloohx0elqbca1", + "revision_nr": 1, + "created": 1697467091216, + "modified": 1697467091216 + } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128", @@ -33341,15 +42752,30 @@ "total_amount": 1000, "history_id": 1678043796128, "id": 1678043796128, - "date_created": { "type": 6, "value": 1678043796128 }, - "date_last_updated": { "type": 6, "value": 1678220439067 }, - "date_of_expiration": { "type": 6, "value": 1680635796128 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678220439067 }, - "money_release_date": { "type": 6, "value": 1678220439067 }, + "date_created": { + "type": 6, + "value": 1678043796128 + }, + "date_last_updated": { + "type": 6, + "value": 1678220439067 + }, + "date_of_expiration": { + "type": 6, + "value": 1680635796128 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678220439067 + }, + "money_release_date": { + "type": 6, + "value": 1678220439067 + }, "money_release_status": "approved", "wasDebited": true }, @@ -33372,7 +42798,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02u5701mooohxcfbogumg", "revision_nr": 1, "created": 1697467091231, "modified": 1697467091231 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02u5701mooohxcfbogumg", + "revision_nr": 1, + "created": 1697467091231, + "modified": 1697467091231 + } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947", @@ -33386,15 +42821,30 @@ "total_amount": 2000, "history_id": 1677774543947, "id": 1677774543947, - "date_created": { "type": 6, "value": 1677774543947 }, - "date_last_updated": { "type": 6, "value": 1677777947224 }, - "date_of_expiration": { "type": 6, "value": 1680366543947 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677777947224 }, - "money_release_date": { "type": 6, "value": 1677777947224 }, + "date_created": { + "type": 6, + "value": 1677774543947 + }, + "date_last_updated": { + "type": 6, + "value": 1677777947224 + }, + "date_of_expiration": { + "type": 6, + "value": 1680366543947 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677777947224 + }, + "money_release_date": { + "type": 6, + "value": 1677777947224 + }, "money_release_status": "approved", "wasDebited": true }, @@ -33440,9 +42890,18 @@ "original_amount": 14284655, "total_amount": 14284655, "id": 1678145303669, - "date_created": { "type": 6, "value": 1678145303669 }, - "date_last_updated": { "type": 6, "value": 1678145303669 }, - "date_of_expiration": { "type": 6, "value": 1678145303669 }, + "date_created": { + "type": 6, + "value": 1678145303669 + }, + "date_last_updated": { + "type": 6, + "value": 1678145303669 + }, + "date_of_expiration": { + "type": 6, + "value": 1678145303669 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33493,9 +42952,18 @@ "original_amount": 14195700, "total_amount": 14195700, "id": 1678220742550, - "date_created": { "type": 6, "value": 1678220742550 }, - "date_last_updated": { "type": 6, "value": 1678220742550 }, - "date_of_expiration": { "type": 6, "value": 1678220742550 }, + "date_created": { + "type": 6, + "value": 1678220742550 + }, + "date_last_updated": { + "type": 6, + "value": 1678220742550 + }, + "date_of_expiration": { + "type": 6, + "value": 1678220742550 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33523,7 +42991,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02u6401mvoohx0q0i46f0", "revision_nr": 1, "created": 1697467091264, "modified": 1697467091264 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02u6401mvoohx0q0i46f0", + "revision_nr": 1, + "created": 1697467091264, + "modified": 1697467091264 + } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183", @@ -33537,14 +43014,26 @@ "total_amount": 14038113, "history_id": 1686128267183, "id": 1686128267183, - "date_created": { "type": 6, "value": 1686128267183 }, - "date_last_updated": { "type": 6, "value": 1688771582648 }, - "date_of_expiration": { "type": 6, "value": 1686128267183 }, + "date_created": { + "type": 6, + "value": 1686128267183 + }, + "date_last_updated": { + "type": 6, + "value": 1688771582648 + }, + "date_of_expiration": { + "type": 6, + "value": 1686128267183 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": { "type": 6, "value": 1688771582648 }, + "money_release_date": { + "type": 6, + "value": 1688771582648 + }, "money_release_status": "rejected" }, "revision": "lnt02u5z01mtoohxccu5d60c", @@ -33566,7 +43055,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02u6j01myoohx1dop63st", "revision_nr": 1, "created": 1697467091280, "modified": 1697467091280 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02u6j01myoohx1dop63st", + "revision_nr": 1, + "created": 1697467091280, + "modified": 1697467091280 + } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156", @@ -33580,14 +43078,26 @@ "total_amount": 28480355, "history_id": 1686128970156, "id": 1686128970156, - "date_created": { "type": 6, "value": 1686128970156 }, - "date_last_updated": { "type": 6, "value": 1688771592581 }, - "date_of_expiration": { "type": 6, "value": 1686128970156 }, + "date_created": { + "type": 6, + "value": 1686128970156 + }, + "date_last_updated": { + "type": 6, + "value": 1688771592581 + }, + "date_of_expiration": { + "type": 6, + "value": 1686128970156 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": { "type": 6, "value": 1688771592581 }, + "money_release_date": { + "type": 6, + "value": 1688771592581 + }, "money_release_status": "rejected" }, "revision": "lnt02u6c01mwoohx67xp8131", @@ -33642,9 +43152,18 @@ "original_amount": 50000, "total_amount": 50000, "id": 1686190557366, - "date_created": { "type": 6, "value": 1686190557366 }, - "date_last_updated": { "type": 6, "value": 1686190557366 }, - "date_of_expiration": { "type": 6, "value": 1749348957366 }, + "date_created": { + "type": 6, + "value": 1686190557366 + }, + "date_last_updated": { + "type": 6, + "value": 1686190557366 + }, + "date_of_expiration": { + "type": 6, + "value": 1749348957366 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33704,9 +43223,18 @@ "original_amount": 30000, "total_amount": 30000, "id": 1686190633022, - "date_created": { "type": 6, "value": 1686190633022 }, - "date_last_updated": { "type": 6, "value": 1686190633022 }, - "date_of_expiration": { "type": 6, "value": 1717813033022 }, + "date_created": { + "type": 6, + "value": 1686190633022 + }, + "date_last_updated": { + "type": 6, + "value": 1686190633022 + }, + "date_of_expiration": { + "type": 6, + "value": 1717813033022 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33766,9 +43294,18 @@ "original_amount": 50000, "total_amount": 50000, "id": 1686190671429, - "date_created": { "type": 6, "value": 1686190671429 }, - "date_last_updated": { "type": 6, "value": 1686190671429 }, - "date_of_expiration": { "type": 6, "value": 1702001871429 }, + "date_created": { + "type": 6, + "value": 1686190671429 + }, + "date_last_updated": { + "type": 6, + "value": 1686190671429 + }, + "date_of_expiration": { + "type": 6, + "value": 1702001871429 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33828,9 +43365,18 @@ "original_amount": 30000, "total_amount": 30000, "id": 1686190710908, - "date_created": { "type": 6, "value": 1686190710908 }, - "date_last_updated": { "type": 6, "value": 1686190710908 }, - "date_of_expiration": { "type": 6, "value": 1688782710908 }, + "date_created": { + "type": 6, + "value": 1686190710908 + }, + "date_last_updated": { + "type": 6, + "value": 1686190710908 + }, + "date_of_expiration": { + "type": 6, + "value": 1688782710908 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33890,9 +43436,18 @@ "original_amount": 14524522, "total_amount": 14524522, "id": 1687472497935, - "date_created": { "type": 6, "value": 1687472497935 }, - "date_last_updated": { "type": 6, "value": 1687472497935 }, - "date_of_expiration": { "type": 6, "value": 1750630897935 }, + "date_created": { + "type": 6, + "value": 1687472497935 + }, + "date_last_updated": { + "type": 6, + "value": 1687472497935 + }, + "date_of_expiration": { + "type": 6, + "value": 1750630897935 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33919,7 +43474,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02u8w01ngoohxga608gtg", "revision_nr": 1, "created": 1697467091366, "modified": 1697467091366 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02u8w01ngoohxga608gtg", + "revision_nr": 1, + "created": 1697467091366, + "modified": 1697467091366 + } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865", @@ -33933,15 +43497,30 @@ "total_amount": 13795833, "history_id": 1688575377865, "id": 1688575377865, - "date_created": { "type": 6, "value": 1688575377865 }, - "date_last_updated": { "type": 6, "value": 1688771604088 }, - "date_of_expiration": { "type": 6, "value": 1688575377865 }, + "date_created": { + "type": 6, + "value": 1688575377865 + }, + "date_last_updated": { + "type": 6, + "value": 1688771604088 + }, + "date_of_expiration": { + "type": 6, + "value": 1688575377865 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1688771604088 }, - "money_release_date": { "type": 6, "value": 1688771604088 }, + "date_approved": { + "type": 6, + "value": 1688771604088 + }, + "money_release_date": { + "type": 6, + "value": 1688771604088 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -33997,9 +43576,18 @@ "original_amount": 30600, "total_amount": 30600, "id": 1689804799815, - "date_created": { "type": 6, "value": 1689804799815 }, - "date_last_updated": { "type": 6, "value": 1689804799815 }, - "date_of_expiration": { "type": 6, "value": 1689804799815 }, + "date_created": { + "type": 6, + "value": 1689804799815 + }, + "date_last_updated": { + "type": 6, + "value": 1689804799815 + }, + "date_of_expiration": { + "type": 6, + "value": 1689804799815 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34069,9 +43657,18 @@ "total_amount": 30600, "id": 1690467644472, "history_id": 1690467644472, - "date_created": { "type": 6, "value": 1690467644472 }, - "date_last_updated": { "type": 6, "value": 1690467644472 }, - "date_of_expiration": { "type": 6, "value": 1693146044468 }, + "date_created": { + "type": 6, + "value": 1690467644472 + }, + "date_last_updated": { + "type": 6, + "value": 1690467644472 + }, + "date_of_expiration": { + "type": 6, + "value": 1693146044468 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34140,9 +43737,18 @@ "total_amount": 30600, "id": "1693147070930", "history_id": "1693147070930", - "date_created": { "type": 6, "value": 1693147070930 }, - "date_last_updated": { "type": 6, "value": 1693147070930 }, - "date_of_expiration": { "type": 6, "value": 1693147070930 }, + "date_created": { + "type": 6, + "value": 1693147070930 + }, + "date_last_updated": { + "type": 6, + "value": 1693147070930 + }, + "date_of_expiration": { + "type": 6, + "value": 1693147070930 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34211,9 +43817,18 @@ "total_amount": 2500, "id": "1693780247117", "history_id": "1693780247117", - "date_created": { "type": 6, "value": 1693780247117 }, - "date_last_updated": { "type": 6, "value": 1693780247117 }, - "date_of_expiration": { "type": 6, "value": 1696372247116 }, + "date_created": { + "type": 6, + "value": 1693780247117 + }, + "date_last_updated": { + "type": 6, + "value": 1693780247117 + }, + "date_of_expiration": { + "type": 6, + "value": 1696372247116 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34283,9 +43898,18 @@ "total_amount": 2550, "id": "1696382633982", "history_id": "1696382633982", - "date_created": { "type": 6, "value": 1696382633982 }, - "date_last_updated": { "type": 6, "value": 1696382633982 }, - "date_of_expiration": { "type": 6, "value": 1696382633982 }, + "date_created": { + "type": 6, + "value": 1696382633982 + }, + "date_last_updated": { + "type": 6, + "value": 1696382633982 + }, + "date_of_expiration": { + "type": 6, + "value": 1696382633982 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34355,9 +43979,18 @@ "total_amount": 2550, "id": "1696384242905", "history_id": "1696384242905", - "date_created": { "type": 6, "value": 1696384242905 }, - "date_last_updated": { "type": 6, "value": 1696384242905 }, - "date_of_expiration": { "type": 6, "value": 1696384242905 }, + "date_created": { + "type": 6, + "value": 1696384242905 + }, + "date_last_updated": { + "type": 6, + "value": 1696384242905 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384242905 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -34427,9 +44060,18 @@ "total_amount": 2550, "id": "1696384242925", "history_id": "1696384242925", - "date_created": { "type": 6, "value": 1696384242925 }, - "date_last_updated": { "type": 6, "value": 1696384242925 }, - "date_of_expiration": { "type": 6, "value": 1696384242925 }, + "date_created": { + "type": 6, + "value": 1696384242925 + }, + "date_last_updated": { + "type": 6, + "value": 1696384242925 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384242925 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -34499,9 +44141,18 @@ "total_amount": 2550, "id": "1696384242931", "history_id": "1696384242931", - "date_created": { "type": 6, "value": 1696384242931 }, - "date_last_updated": { "type": 6, "value": 1696384242931 }, - "date_of_expiration": { "type": 6, "value": 1696384242931 }, + "date_created": { + "type": 6, + "value": 1696384242931 + }, + "date_last_updated": { + "type": 6, + "value": 1696384242931 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384242931 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -34571,9 +44222,18 @@ "total_amount": 2550, "id": "1696384243125", "history_id": "1696384243125", - "date_created": { "type": 6, "value": 1696384243125 }, - "date_last_updated": { "type": 6, "value": 1696384243125 }, - "date_of_expiration": { "type": 6, "value": 1696384243125 }, + "date_created": { + "type": 6, + "value": 1696384243125 + }, + "date_last_updated": { + "type": 6, + "value": 1696384243125 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384243125 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -34643,9 +44303,18 @@ "total_amount": 2550, "id": "1696384243425", "history_id": "1696384243425", - "date_created": { "type": 6, "value": 1696384243425 }, - "date_last_updated": { "type": 6, "value": 1696384243425 }, - "date_of_expiration": { "type": 6, "value": 1696384243425 }, + "date_created": { + "type": 6, + "value": 1696384243425 + }, + "date_last_updated": { + "type": 6, + "value": 1696384243425 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384243425 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -34715,9 +44384,18 @@ "total_amount": 2550, "id": "1696384244783", "history_id": "1696384244783", - "date_created": { "type": 6, "value": 1696384244783 }, - "date_last_updated": { "type": 6, "value": 1696384244783 }, - "date_of_expiration": { "type": 6, "value": 1696384244783 }, + "date_created": { + "type": 6, + "value": 1696384244783 + }, + "date_last_updated": { + "type": 6, + "value": 1696384244783 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384244783 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -34787,9 +44465,18 @@ "total_amount": 2550, "id": "1696384244885", "history_id": "1696384244885", - "date_created": { "type": 6, "value": 1696384244885 }, - "date_last_updated": { "type": 6, "value": 1696384244885 }, - "date_of_expiration": { "type": 6, "value": 1696384244885 }, + "date_created": { + "type": 6, + "value": 1696384244885 + }, + "date_last_updated": { + "type": 6, + "value": 1696384244885 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384244885 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -34805,13 +44492,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history", - "content": { "type": 1, "value": {}, "revision": "lnt02u4b01mfoohxe3kie0su", "revision_nr": 1, "created": 1697467091678, "modified": 1697467091678 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02u4b01mfoohxe3kie0su", + "revision_nr": 1, + "created": 1697467091678, + "modified": 1697467091678 + } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02uhq01osoohx0cvfhqug", "revision_nr": 1, "created": 1697467091683, @@ -34822,7 +44520,12 @@ "path": "ivipcoin-db::__movement_wallet__/050294855698242330", "content": { "type": 1, - "value": { "dataModificacao": 1677774434896, "dateValidity": 1678238494873, "totalValue": 9.579933648427893, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677774434896, + "dateValidity": 1678238494873, + "totalValue": 9.579933648427893, + "currencyType": "USD" + }, "revision": "lnt02u4101mcoohx9kes928b", "revision_nr": 1, "created": 1697467091689, @@ -34833,7 +44536,13 @@ "path": "ivipcoin-db::__movement_wallet__/050395970230084904", "content": { "type": 1, - "value": { "dataModificacao": 1696468517081, "dateValidity": 1696468517276, "balances": {}, "history": {}, "currencyType": "USD" }, + "value": { + "dataModificacao": 1696468517081, + "dateValidity": 1696468517276, + "balances": {}, + "history": {}, + "currencyType": "USD" + }, "revision": "lnt02ui101otoohx79y3g6bb", "revision_nr": 1, "created": 1697467091694, @@ -34844,7 +44553,11 @@ "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt02ui701owoohxg7i0hjqp", "revision_nr": 1, "created": 1697467091700, @@ -34855,7 +44568,11 @@ "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances/IVIP", "content": { "type": 1, - "value": { "available": "812799.00000000", "symbol": "IVIP", "value": 263.24 }, + "value": { + "available": "812799.00000000", + "symbol": "IVIP", + "value": 263.24 + }, "revision": "lnt02uic01oxoohxcn993ohm", "revision_nr": 1, "created": 1697467091705, @@ -34864,7 +44581,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02ui601ovoohx74bo7c6u", "revision_nr": 1, "created": 1697467091711, "modified": 1697467091711 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ui601ovoohx74bo7c6u", + "revision_nr": 1, + "created": 1697467091711, + "modified": 1697467091711 + } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810/description", @@ -34879,7 +44603,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02uis01p1oohx3w0q3av4", "revision_nr": 1, "created": 1697467091721, "modified": 1697467091721 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02uis01p1oohx3w0q3av4", + "revision_nr": 1, + "created": 1697467091721, + "modified": 1697467091721 + } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810", @@ -34893,15 +44626,30 @@ "total_amount": 50, "history_id": 1678221951810, "id": 1678221951810, - "date_created": { "type": 6, "value": 1678221951810 }, - "date_last_updated": { "type": 6, "value": 1678281719635 }, - "date_of_expiration": { "type": 6, "value": 1680813951810 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678281719635 }, - "money_release_date": { "type": 6, "value": 1678281719635 }, + "date_created": { + "type": 6, + "value": 1678221951810 + }, + "date_last_updated": { + "type": 6, + "value": 1678281719635 + }, + "date_of_expiration": { + "type": 6, + "value": 1680813951810 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678281719635 + }, + "money_release_date": { + "type": 6, + "value": 1678281719635 + }, "money_release_status": "approved", "wasDebited": true }, @@ -34924,7 +44672,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02uj801p4oohxd69i5xpd", "revision_nr": 1, "created": 1697467091737, "modified": 1697467091737 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02uj801p4oohxd69i5xpd", + "revision_nr": 1, + "created": 1697467091737, + "modified": 1697467091737 + } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784", @@ -34938,15 +44695,30 @@ "total_amount": 100, "history_id": 1679009072784, "id": 1679009072784, - "date_created": { "type": 6, "value": 1679009072784 }, - "date_last_updated": { "type": 6, "value": 1679322587158 }, - "date_of_expiration": { "type": 6, "value": 1681601072784 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679322587158 }, - "money_release_date": { "type": 6, "value": 1679322587158 }, + "date_created": { + "type": 6, + "value": 1679009072784 + }, + "date_last_updated": { + "type": 6, + "value": 1679322587158 + }, + "date_of_expiration": { + "type": 6, + "value": 1681601072784 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679322587158 + }, + "money_release_date": { + "type": 6, + "value": 1679322587158 + }, "money_release_status": "approved", "wasDebited": true }, @@ -34969,7 +44741,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02ujo01p7oohx4trl7c59", "revision_nr": 1, "created": 1697467091752, "modified": 1697467091752 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02ujo01p7oohx4trl7c59", + "revision_nr": 1, + "created": 1697467091752, + "modified": 1697467091752 + } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145", @@ -34983,14 +44764,26 @@ "total_amount": 100, "history_id": 1679009122145, "id": 1679009122145, - "date_created": { "type": 6, "value": 1679009122145 }, - "date_last_updated": { "type": 6, "value": 1679322754987 }, - "date_of_expiration": { "type": 6, "value": 1681601122145 }, + "date_created": { + "type": 6, + "value": 1679009122145 + }, + "date_last_updated": { + "type": 6, + "value": 1679322754987 + }, + "date_of_expiration": { + "type": 6, + "value": 1681601122145 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1679322754987 }, + "money_release_date": { + "type": 6, + "value": 1679322754987 + }, "money_release_status": "rejected" }, "revision": "lnt02ujj01p5oohxgn247mcd", @@ -35035,9 +44828,18 @@ "original_amount": 812799, "total_amount": 812799, "id": 1680059811857, - "date_created": { "type": 6, "value": 1680059811857 }, - "date_last_updated": { "type": 6, "value": 1680059811857 }, - "date_of_expiration": { "type": 6, "value": 1680059811857 }, + "date_created": { + "type": 6, + "value": 1680059811857 + }, + "date_last_updated": { + "type": 6, + "value": 1680059811857 + }, + "date_of_expiration": { + "type": 6, + "value": 1680059811857 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35065,7 +44867,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02ukg01pcoohx2pp370ah", "revision_nr": 1, "created": 1697467091781, "modified": 1697467091781 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02ukg01pcoohx2pp370ah", + "revision_nr": 1, + "created": 1697467091781, + "modified": 1697467091781 + } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463", @@ -35079,9 +44890,18 @@ "total_amount": 812799, "history_id": 1687793732463, "id": 1687793732463, - "date_created": { "type": 6, "value": 1687793732463 }, - "date_last_updated": { "type": 6, "value": 1687793732463 }, - "date_of_expiration": { "type": 6, "value": 1687793732463 }, + "date_created": { + "type": 6, + "value": 1687793732463 + }, + "date_last_updated": { + "type": 6, + "value": 1687793732463 + }, + "date_of_expiration": { + "type": 6, + "value": 1687793732463 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -35095,13 +44915,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history", - "content": { "type": 1, "value": {}, "revision": "lnt02uin01oyoohx60jy3go8", "revision_nr": 1, "created": 1697467091791, "modified": 1697467091791 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02uin01oyoohx60jy3go8", + "revision_nr": 1, + "created": 1697467091791, + "modified": 1697467091791 + } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02ukv01pdoohxchg97qna", "revision_nr": 1, "created": 1697467091797, @@ -35112,7 +44943,13 @@ "path": "ivipcoin-db::__movement_wallet__/053298757978599290", "content": { "type": 1, - "value": { "dataModificacao": 1678221202102, "dateValidity": 1679026523803, "totalValue": 28.34, "currencyType": "USD", "balancesModificacao": 1689822000000 }, + "value": { + "dataModificacao": 1678221202102, + "dateValidity": 1679026523803, + "totalValue": 28.34, + "currencyType": "USD", + "balancesModificacao": 1689822000000 + }, "revision": "lnt02ui601ouoohx1qmf5pat", "revision_nr": 1, "created": 1697467091802, @@ -35123,7 +44960,11 @@ "path": "ivipcoin-db::__movement_wallet__/054341335642486000/balances/IVIP", "content": { "type": 1, - "value": { "available": "51023.00000000", "symbol": "IVIP", "value": 6.23 }, + "value": { + "available": "51023.00000000", + "symbol": "IVIP", + "value": 6.23 + }, "revision": "lnt02ul601pgoohxh5r3gpyw", "revision_nr": 1, "created": 1697467091809, @@ -35132,7 +44973,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02ul601pfoohx0r0n1u83", "revision_nr": 1, "created": 1697467091813, "modified": 1697467091813 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ul601pfoohx0r0n1u83", + "revision_nr": 1, + "created": 1697467091813, + "modified": 1697467091813 + } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893/description", @@ -35147,7 +44995,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02ulm01pkoohxasf47lmf", "revision_nr": 1, "created": 1697467091824, "modified": 1697467091824 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02ulm01pkoohxasf47lmf", + "revision_nr": 1, + "created": 1697467091824, + "modified": 1697467091824 + } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893", @@ -35161,15 +45018,30 @@ "total_amount": 120, "history_id": 1689173674893, "id": 1689173674893, - "date_created": { "type": 6, "value": 1689173674893 }, - "date_last_updated": { "type": 6, "value": 1689181059550 }, - "date_of_expiration": { "type": 6, "value": 1691765674893 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689181059550 }, - "money_release_date": { "type": 6, "value": 1689181059550 }, + "date_created": { + "type": 6, + "value": 1689173674893 + }, + "date_last_updated": { + "type": 6, + "value": 1689181059550 + }, + "date_of_expiration": { + "type": 6, + "value": 1691765674893 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689181059550 + }, + "money_release_date": { + "type": 6, + "value": 1689181059550 + }, "money_release_status": "approved", "wasDebited": true }, @@ -35215,9 +45087,18 @@ "original_amount": 51023, "total_amount": 51023, "id": 1689182033050, - "date_created": { "type": 6, "value": 1689182033050 }, - "date_last_updated": { "type": 6, "value": 1689182033050 }, - "date_of_expiration": { "type": 6, "value": 1689182033050 }, + "date_created": { + "type": 6, + "value": 1689182033050 + }, + "date_last_updated": { + "type": 6, + "value": 1689182033050 + }, + "date_of_expiration": { + "type": 6, + "value": 1689182033050 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35234,13 +45115,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history", - "content": { "type": 1, "value": {}, "revision": "lnt02ulh01phoohx8mn38tm1", "revision_nr": 1, "created": 1697467091844, "modified": 1697467091844 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ulh01phoohx8mn38tm1", + "revision_nr": 1, + "created": 1697467091844, + "modified": 1697467091844 + } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02umc01pnoohxakjy1abc", "revision_nr": 1, "created": 1697467091849, @@ -35251,7 +45143,16 @@ "path": "ivipcoin-db::__movement_wallet__/054341335642486000", "content": { "type": 1, - "value": { "dataModificacao": 1689173582935, "dateValidity": 1689173582935, "totalValue": 24.77, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696906800000 } }, + "value": { + "dataModificacao": 1689173582935, + "dateValidity": 1689173582935, + "totalValue": 24.77, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696906800000 + } + }, "revision": "lnt02ul601peoohx7ppo41n9", "revision_nr": 1, "created": 1697467091853, @@ -35262,7 +45163,13 @@ "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699670706134 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699670706134 + } + }, "revision": "lnt02umm01proohxddng32pq", "revision_nr": 1, "created": 1697467091860, @@ -35325,16 +45232,28 @@ "total_amount": 99635.8518, "id": "1697078706134", "history_id": "1697078706134", - "date_created": { "type": 6, "value": 1697078706134 }, - "date_last_updated": { "type": 6, "value": 1697118443226 }, + "date_created": { + "type": 6, + "value": 1697078706134 + }, + "date_last_updated": { + "type": 6, + "value": 1697118443226 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1697118443226 }, - "money_release_date": { "type": 6, "value": 1697118443226 }, + "date_approved": { + "type": 6, + "value": 1697118443226 + }, + "money_release_date": { + "type": 6, + "value": 1697118443226 + }, "money_release_status": "approved", "wasDebited": true }, @@ -35348,7 +45267,13 @@ "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699711608666 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699711608666 + } + }, "revision": "lnt02unc01pwoohxadl37lqd", "revision_nr": 1, "created": 1697467091885, @@ -35411,16 +45336,28 @@ "total_amount": 25, "id": "1697119608666", "history_id": "1697119608666", - "date_created": { "type": 6, "value": 1697119608666 }, - "date_last_updated": { "type": 6, "value": 1697121223741 }, + "date_created": { + "type": 6, + "value": 1697119608666 + }, + "date_last_updated": { + "type": 6, + "value": 1697121223741 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1697121223741 }, - "money_release_date": { "type": 6, "value": 1697121223741 }, + "date_approved": { + "type": 6, + "value": 1697121223741 + }, + "money_release_date": { + "type": 6, + "value": 1697121223741 + }, "money_release_status": "approved", "wasDebited": true }, @@ -35475,9 +45412,18 @@ "total_amount": 46978, "id": "1697122378430", "history_id": "1697122378430", - "date_created": { "type": 6, "value": 1697122378430 }, - "date_last_updated": { "type": 6, "value": 1697122378430 }, - "date_of_expiration": { "type": 6, "value": 1697122378430 }, + "date_created": { + "type": 6, + "value": 1697122378430 + }, + "date_last_updated": { + "type": 6, + "value": 1697122378430 + }, + "date_of_expiration": { + "type": 6, + "value": 1697122378430 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -35494,13 +45440,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history", - "content": { "type": 1, "value": {}, "revision": "lnt02umm01ppoohx0anqfwjt", "revision_nr": 1, "created": 1697467091926, "modified": 1697467091926 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02umm01ppoohx0anqfwjt", + "revision_nr": 1, + "created": 1697467091926, + "modified": 1697467091926 + } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02uom01q3oohx39ymbmyr", "revision_nr": 1, "created": 1697467091931, @@ -35511,7 +45468,16 @@ "path": "ivipcoin-db::__movement_wallet__/055644012114111740", "content": { "type": 1, - "value": { "dataModificacao": 1697078617873, "dateValidity": 1697078617917, "balances": {}, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697079600000 } }, + "value": { + "dataModificacao": 1697078617873, + "dateValidity": 1697078617917, + "balances": {}, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697079600000 + } + }, "revision": "lnt02uml01pooohx88dj8s22", "revision_nr": 1, "created": 1697467091936, @@ -35522,7 +45488,11 @@ "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt02uow01q6oohxfdp8d9dv", "revision_nr": 1, "created": 1697467091942, @@ -35533,7 +45503,11 @@ "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances/IVIP", "content": { "type": 1, - "value": { "available": "5352934.00000000", "symbol": "IVIP", "value": 720.46 }, + "value": { + "available": "5352934.00000000", + "symbol": "IVIP", + "value": 720.46 + }, "revision": "lnt02up201q7oohxcn0wcmi0", "revision_nr": 1, "created": 1697467091947, @@ -35542,7 +45516,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02uow01q5oohxed8f04cb", "revision_nr": 1, "created": 1697467091952, "modified": 1697467091952 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02uow01q5oohxed8f04cb", + "revision_nr": 1, + "created": 1697467091952, + "modified": 1697467091952 + } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797/description", @@ -35557,7 +45538,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02upj01qboohx5ewe7we6", "revision_nr": 1, "created": 1697467091964, "modified": 1697467091964 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02upj01qboohx5ewe7we6", + "revision_nr": 1, + "created": 1697467091964, + "modified": 1697467091964 + } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797", @@ -35571,15 +45561,30 @@ "total_amount": 800, "history_id": 1684093509797, "id": 1684093509797, - "date_created": { "type": 6, "value": 1684093509797 }, - "date_last_updated": { "type": 6, "value": 1684093833853 }, - "date_of_expiration": { "type": 6, "value": 1686685509797 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684093833853 }, - "money_release_date": { "type": 6, "value": 1684093833853 }, + "date_created": { + "type": 6, + "value": 1684093509797 + }, + "date_last_updated": { + "type": 6, + "value": 1684093833853 + }, + "date_of_expiration": { + "type": 6, + "value": 1686685509797 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684093833853 + }, + "money_release_date": { + "type": 6, + "value": 1684093833853 + }, "money_release_status": "approved", "wasDebited": true }, @@ -35602,7 +45607,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02upy01qeoohxgrzp0dcr", "revision_nr": 1, "created": 1697467091980, "modified": 1697467091980 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02upy01qeoohxgrzp0dcr", + "revision_nr": 1, + "created": 1697467091980, + "modified": 1697467091980 + } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149", @@ -35616,15 +45630,30 @@ "total_amount": 299, "history_id": 1684583054149, "id": 1684583054149, - "date_created": { "type": 6, "value": 1684583054149 }, - "date_last_updated": { "type": 6, "value": 1684595303300 }, - "date_of_expiration": { "type": 6, "value": 1687175054149 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684595303300 }, - "money_release_date": { "type": 6, "value": 1684595303300 }, + "date_created": { + "type": 6, + "value": 1684583054149 + }, + "date_last_updated": { + "type": 6, + "value": 1684595303300 + }, + "date_of_expiration": { + "type": 6, + "value": 1687175054149 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684595303300 + }, + "money_release_date": { + "type": 6, + "value": 1684595303300 + }, "money_release_status": "approved", "wasDebited": true }, @@ -35670,9 +45699,18 @@ "original_amount": 5352934, "total_amount": 5352934, "id": 1684624980630, - "date_created": { "type": 6, "value": 1684624980630 }, - "date_last_updated": { "type": 6, "value": 1684624980630 }, - "date_of_expiration": { "type": 6, "value": 1684624980630 }, + "date_created": { + "type": 6, + "value": 1684624980630 + }, + "date_last_updated": { + "type": 6, + "value": 1684624980630 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624980630 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35700,7 +45738,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02uqo01qjoohxek9i76to", "revision_nr": 1, "created": 1697467092008, "modified": 1697467092008 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02uqo01qjoohxek9i76to", + "revision_nr": 1, + "created": 1697467092008, + "modified": 1697467092008 + } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845", @@ -35714,9 +45761,18 @@ "total_amount": 5352934, "history_id": 1689104056845, "id": 1689104056845, - "date_created": { "type": 6, "value": 1689104056845 }, - "date_last_updated": { "type": 6, "value": 1689104056845 }, - "date_of_expiration": { "type": 6, "value": 1689104056845 }, + "date_created": { + "type": 6, + "value": 1689104056845 + }, + "date_last_updated": { + "type": 6, + "value": 1689104056845 + }, + "date_of_expiration": { + "type": 6, + "value": 1689104056845 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -35741,7 +45797,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02ur501qmoohx233ybczj", "revision_nr": 1, "created": 1697467092023, "modified": 1697467092023 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02ur501qmoohx233ybczj", + "revision_nr": 1, + "created": 1697467092023, + "modified": 1697467092023 + } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830", @@ -35755,9 +45820,18 @@ "total_amount": 5352934, "history_id": 1689104143830, "id": 1689104143830, - "date_created": { "type": 6, "value": 1689104143830 }, - "date_last_updated": { "type": 6, "value": 1689104143830 }, - "date_of_expiration": { "type": 6, "value": 1689104143830 }, + "date_created": { + "type": 6, + "value": 1689104143830 + }, + "date_last_updated": { + "type": 6, + "value": 1689104143830 + }, + "date_of_expiration": { + "type": 6, + "value": 1689104143830 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -35782,7 +45856,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02urm01qpoohx755phem5", "revision_nr": 1, "created": 1697467092040, "modified": 1697467092040 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02urm01qpoohx755phem5", + "revision_nr": 1, + "created": 1697467092040, + "modified": 1697467092040 + } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803", @@ -35796,9 +45879,18 @@ "total_amount": 5352934, "history_id": 1689646587803, "id": 1689646587803, - "date_created": { "type": 6, "value": 1689646587803 }, - "date_last_updated": { "type": 6, "value": 1689646587803 }, - "date_of_expiration": { "type": 6, "value": 1689646587803 }, + "date_created": { + "type": 6, + "value": 1689646587803 + }, + "date_last_updated": { + "type": 6, + "value": 1689646587803 + }, + "date_of_expiration": { + "type": 6, + "value": 1689646587803 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -35836,7 +45928,11 @@ "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 160588.02 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 160588.02 + }, "revision": "lnt02us701qvoohx6sxpgn0x", "revision_nr": 1, "created": 1697467092060, @@ -35845,7 +45941,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02us701quoohx3rdf1ww2", "revision_nr": 1, "created": 1697467092064, "modified": 1697467092064 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02us701quoohx3rdf1ww2", + "revision_nr": 1, + "created": 1697467092064, + "modified": 1697467092064 + } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details", @@ -35879,17 +45982,32 @@ "total_amount": 5192345.98, "id": 1692620472334, "history_id": 1692620472334, - "date_created": { "type": 6, "value": 1692620472334 }, - "date_last_updated": { "type": 6, "value": 1692620515386 }, - "date_of_expiration": { "type": 6, "value": 1692620472334 }, + "date_created": { + "type": 6, + "value": 1692620472334 + }, + "date_last_updated": { + "type": 6, + "value": 1692620515386 + }, + "date_of_expiration": { + "type": 6, + "value": 1692620472334 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1692620515386 }, - "money_release_date": { "type": 6, "value": 1692620515386 }, + "date_approved": { + "type": 6, + "value": 1692620515386 + }, + "money_release_date": { + "type": 6, + "value": 1692620515386 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -35901,13 +46019,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history", - "content": { "type": 1, "value": {}, "revision": "lnt02upc01q8oohx4suoc10e", "revision_nr": 1, "created": 1697467092080, "modified": 1697467092080 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02upc01q8oohx4suoc10e", + "revision_nr": 1, + "created": 1697467092080, + "modified": 1697467092080 + } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1692384424311 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1692384424311 + } + }, "revision": "lnt02usw01qwoohxcvx3arkp", "revision_nr": 1, "created": 1697467092085, @@ -35918,7 +46051,16 @@ "path": "ivipcoin-db::__movement_wallet__/056546769240355840", "content": { "type": 1, - "value": { "dataModificacao": 1678095088185, "dateValidity": 1678245807542, "totalValue": 218.81, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1692586800000 } }, + "value": { + "dataModificacao": 1678095088185, + "dateValidity": 1678245807542, + "totalValue": 218.81, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1692586800000 + } + }, "revision": "lnt02uow01q4oohx5och40tk", "revision_nr": 1, "created": 1697467092091, @@ -35929,7 +46071,14 @@ "path": "ivipcoin-db::__movement_wallet__/057251085848447400", "content": { "type": 1, - "value": { "dataModificacao": 1677956784862, "dateValidity": 1678334303407, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677956784862, + "dateValidity": 1678334303407, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02ut801qxoohx2ucqcpl4", "revision_nr": 1, "created": 1697467092097, @@ -35940,7 +46089,11 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/balances/IVIP", "content": { "type": 1, - "value": { "available": "561917.00000000", "symbol": "IVIP", "value": 59.89 }, + "value": { + "available": "561917.00000000", + "symbol": "IVIP", + "value": 59.89 + }, "revision": "lnt02utd01r0oohx0p8d8trm", "revision_nr": 1, "created": 1697467092102, @@ -35949,7 +46102,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02utd01qzoohx7dh1hdr4", "revision_nr": 1, "created": 1697467092108, "modified": 1697467092108 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02utd01qzoohx7dh1hdr4", + "revision_nr": 1, + "created": 1697467092108, + "modified": 1697467092108 + } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168/description", @@ -35964,7 +46124,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02utt01r4oohx6aal73e4", "revision_nr": 1, "created": 1697467092118, "modified": 1697467092118 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02utt01r4oohx6aal73e4", + "revision_nr": 1, + "created": 1697467092118, + "modified": 1697467092118 + } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168", @@ -35978,15 +46147,30 @@ "total_amount": 20, "history_id": 1679346644168, "id": 1679346644168, - "date_created": { "type": 6, "value": 1679346644168 }, - "date_last_updated": { "type": 6, "value": 1679346955591 }, - "date_of_expiration": { "type": 6, "value": 1681938644168 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679346955591 }, - "money_release_date": { "type": 6, "value": 1679346955591 }, + "date_created": { + "type": 6, + "value": 1679346644168 + }, + "date_last_updated": { + "type": 6, + "value": 1679346955591 + }, + "date_of_expiration": { + "type": 6, + "value": 1681938644168 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679346955591 + }, + "money_release_date": { + "type": 6, + "value": 1679346955591 + }, "money_release_status": "approved", "wasDebited": true }, @@ -36009,7 +46193,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02uu901r7oohxh9n8hs9t", "revision_nr": 1, "created": 1697467092134, "modified": 1697467092134 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02uu901r7oohxh9n8hs9t", + "revision_nr": 1, + "created": 1697467092134, + "modified": 1697467092134 + } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559", @@ -36023,15 +46216,30 @@ "total_amount": 20, "history_id": 1679707462559, "id": 1679707462559, - "date_created": { "type": 6, "value": 1679707462559 }, - "date_last_updated": { "type": 6, "value": 1679708737072 }, - "date_of_expiration": { "type": 6, "value": 1682299462559 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679708737072 }, - "money_release_date": { "type": 6, "value": 1679708737072 }, + "date_created": { + "type": 6, + "value": 1679707462559 + }, + "date_last_updated": { + "type": 6, + "value": 1679708737072 + }, + "date_of_expiration": { + "type": 6, + "value": 1682299462559 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679708737072 + }, + "money_release_date": { + "type": 6, + "value": 1679708737072 + }, "money_release_status": "approved", "wasDebited": true }, @@ -36077,9 +46285,18 @@ "original_amount": 213025, "total_amount": 213025, "id": 1679871671858, - "date_created": { "type": 6, "value": 1679871671858 }, - "date_last_updated": { "type": 6, "value": 1679871671858 }, - "date_of_expiration": { "type": 6, "value": 1679871671858 }, + "date_created": { + "type": 6, + "value": 1679871671858 + }, + "date_last_updated": { + "type": 6, + "value": 1679871671858 + }, + "date_of_expiration": { + "type": 6, + "value": 1679871671858 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -36107,7 +46324,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02uuz01rcoohx0kq1emmp", "revision_nr": 1, "created": 1697467092162, "modified": 1697467092162 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02uuz01rcoohx0kq1emmp", + "revision_nr": 1, + "created": 1697467092162, + "modified": 1697467092162 + } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947", @@ -36121,9 +46347,18 @@ "total_amount": 20, "history_id": 1689132225947, "id": 1689132225947, - "date_created": { "type": 6, "value": 1689132225947 }, - "date_last_updated": { "type": 6, "value": 1689132225947 }, - "date_of_expiration": { "type": 6, "value": 1691724225947 }, + "date_created": { + "type": 6, + "value": 1689132225947 + }, + "date_last_updated": { + "type": 6, + "value": 1689132225947 + }, + "date_of_expiration": { + "type": 6, + "value": 1691724225947 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -36148,7 +46383,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02uvg01rfoohxften2y0r", "revision_nr": 1, "created": 1697467092178, "modified": 1697467092178 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02uvg01rfoohxften2y0r", + "revision_nr": 1, + "created": 1697467092178, + "modified": 1697467092178 + } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633", @@ -36162,9 +46406,18 @@ "total_amount": 50, "history_id": 1689175940633, "id": 1689175940633, - "date_created": { "type": 6, "value": 1689175940633 }, - "date_last_updated": { "type": 6, "value": 1689175940633 }, - "date_of_expiration": { "type": 6, "value": 1691767940633 }, + "date_created": { + "type": 6, + "value": 1689175940633 + }, + "date_last_updated": { + "type": 6, + "value": 1689175940633 + }, + "date_of_expiration": { + "type": 6, + "value": 1691767940633 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -36189,7 +46442,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02uvx01rioohx8i3i0oor", "revision_nr": 1, "created": 1697467092194, "modified": 1697467092194 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02uvx01rioohx8i3i0oor", + "revision_nr": 1, + "created": 1697467092194, + "modified": 1697467092194 + } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517", @@ -36203,9 +46465,18 @@ "total_amount": 50, "history_id": 1689367674517, "id": 1689367674517, - "date_created": { "type": 6, "value": 1689367674517 }, - "date_last_updated": { "type": 6, "value": 1689367674517 }, - "date_of_expiration": { "type": 6, "value": 1691959674517 }, + "date_created": { + "type": 6, + "value": 1689367674517 + }, + "date_last_updated": { + "type": 6, + "value": 1689367674517 + }, + "date_of_expiration": { + "type": 6, + "value": 1691959674517 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -36230,7 +46501,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02uwb01rloohxhj6bgwlp", "revision_nr": 1, "created": 1697467092209, "modified": 1697467092209 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02uwb01rloohxhj6bgwlp", + "revision_nr": 1, + "created": 1697467092209, + "modified": 1697467092209 + } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746", @@ -36244,15 +46524,30 @@ "total_amount": 50, "history_id": 1689622072746, "id": 1689622072746, - "date_created": { "type": 6, "value": 1689622072746 }, - "date_last_updated": { "type": 6, "value": 1689622391229 }, - "date_of_expiration": { "type": 6, "value": 1692214072746 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689622391229 }, - "money_release_date": { "type": 6, "value": 1689622391229 }, + "date_created": { + "type": 6, + "value": 1689622072746 + }, + "date_last_updated": { + "type": 6, + "value": 1689622391229 + }, + "date_of_expiration": { + "type": 6, + "value": 1692214072746 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689622391229 + }, + "money_release_date": { + "type": 6, + "value": 1689622391229 + }, "money_release_status": "approved", "wasDebited": true }, @@ -36298,9 +46593,18 @@ "original_amount": 32205, "total_amount": 32205, "id": 1689623842206, - "date_created": { "type": 6, "value": 1689623842206 }, - "date_last_updated": { "type": 6, "value": 1689623842206 }, - "date_of_expiration": { "type": 6, "value": 1689623842206 }, + "date_created": { + "type": 6, + "value": 1689623842206 + }, + "date_last_updated": { + "type": 6, + "value": 1689623842206 + }, + "date_of_expiration": { + "type": 6, + "value": 1689623842206 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -36319,7 +46623,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692566630901 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692566630901 + } + }, "revision": "lnt02uwy01rpoohx6930f8mw", "revision_nr": 1, "created": 1697467092230, @@ -36381,8 +46691,14 @@ "total_amount": 20, "id": 1689974630901, "history_id": 1689974630901, - "date_created": { "type": 6, "value": 1689974630901 }, - "date_last_updated": { "type": 6, "value": 1689974630901 }, + "date_created": { + "type": 6, + "value": 1689974630901 + }, + "date_last_updated": { + "type": 6, + "value": 1689974630901 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -36400,7 +46716,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692837872747 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692837872747 + } + }, "revision": "lnt02uxo01ruoohx9vpbfpip", "revision_nr": 1, "created": 1697467092258, @@ -36462,16 +46784,28 @@ "total_amount": 20, "id": 1690245872747, "history_id": 1690245872747, - "date_created": { "type": 6, "value": 1690245872747 }, - "date_last_updated": { "type": 6, "value": 1690309276564 }, + "date_created": { + "type": 6, + "value": 1690245872747 + }, + "date_last_updated": { + "type": 6, + "value": 1690309276564 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1690309276564 }, - "money_release_date": { "type": 6, "value": 1690309276564 }, + "date_approved": { + "type": 6, + "value": 1690309276564 + }, + "money_release_date": { + "type": 6, + "value": 1690309276564 + }, "money_release_status": "approved", "wasDebited": true }, @@ -36517,9 +46851,18 @@ "original_amount": 16406, "total_amount": 16406, "id": 1690318679149, - "date_created": { "type": 6, "value": 1690318679149 }, - "date_last_updated": { "type": 6, "value": 1690318679149 }, - "date_of_expiration": { "type": 6, "value": 1690318679149 }, + "date_created": { + "type": 6, + "value": 1690318679149 + }, + "date_last_updated": { + "type": 6, + "value": 1690318679149 + }, + "date_of_expiration": { + "type": 6, + "value": 1690318679149 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -36538,7 +46881,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695065586359 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695065586359 + } + }, "revision": "lnt02uyp01s1oohxepfgcgrt", "revision_nr": 1, "created": 1697467092295, @@ -36600,16 +46949,28 @@ "total_amount": 20, "id": 1692473586359, "history_id": 1692473586359, - "date_created": { "type": 6, "value": 1692473586359 }, - "date_last_updated": { "type": 6, "value": 1692476570838 }, + "date_created": { + "type": 6, + "value": 1692473586359 + }, + "date_last_updated": { + "type": 6, + "value": 1692476570838 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1692476570838 }, - "money_release_date": { "type": 6, "value": 1692476570838 }, + "date_approved": { + "type": 6, + "value": 1692476570838 + }, + "money_release_date": { + "type": 6, + "value": 1692476570838 + }, "money_release_status": "approved", "wasDebited": true }, @@ -36663,9 +47024,18 @@ "total_amount": 32045, "id": 1692476742525, "history_id": 1692476742525, - "date_created": { "type": 6, "value": 1692476742525 }, - "date_last_updated": { "type": 6, "value": 1692476742525 }, - "date_of_expiration": { "type": 6, "value": 1692476742525 }, + "date_created": { + "type": 6, + "value": 1692476742525 + }, + "date_last_updated": { + "type": 6, + "value": 1692476742525 + }, + "date_of_expiration": { + "type": 6, + "value": 1692476742525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -36684,7 +47054,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695588810545 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695588810545 + } + }, "revision": "lnt02uzu01s9oohxgk7o1mep", "revision_nr": 1, "created": 1697467092337, @@ -36746,8 +47122,14 @@ "total_amount": 20, "id": "1692996810545", "history_id": "1692996810545", - "date_created": { "type": 6, "value": 1692996810545 }, - "date_last_updated": { "type": 6, "value": 1692996810545 }, + "date_created": { + "type": 6, + "value": 1692996810545 + }, + "date_last_updated": { + "type": 6, + "value": 1692996810545 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -36765,7 +47147,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695588844899 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695588844899 + } + }, "revision": "lnt02v0l01seoohxb1enht29", "revision_nr": 1, "created": 1697467092362, @@ -36827,16 +47215,28 @@ "total_amount": 20, "id": "1692996844899", "history_id": "1692996844899", - "date_created": { "type": 6, "value": 1692996844899 }, - "date_last_updated": { "type": 6, "value": 1692999921567 }, + "date_created": { + "type": 6, + "value": 1692996844899 + }, + "date_last_updated": { + "type": 6, + "value": 1692999921567 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1692999921567 }, - "money_release_date": { "type": 6, "value": 1692999921567 }, + "date_approved": { + "type": 6, + "value": 1692999921567 + }, + "money_release_date": { + "type": 6, + "value": 1692999921567 + }, "money_release_status": "approved", "wasDebited": true }, @@ -36890,9 +47290,18 @@ "total_amount": 40254, "id": "1693000377717", "history_id": "1693000377717", - "date_created": { "type": 6, "value": 1693000377717 }, - "date_last_updated": { "type": 6, "value": 1693000377717 }, - "date_of_expiration": { "type": 6, "value": 1693000377717 }, + "date_created": { + "type": 6, + "value": 1693000377717 + }, + "date_last_updated": { + "type": 6, + "value": 1693000377717 + }, + "date_of_expiration": { + "type": 6, + "value": 1693000377717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -36911,7 +47320,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1696197427916 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1696197427916 + } + }, "revision": "lnt02v1p01smoohx8ax76ukk", "revision_nr": 1, "created": 1697467092402, @@ -36973,8 +47388,14 @@ "total_amount": 20, "id": "1693605427916", "history_id": "1693605427916", - "date_created": { "type": 6, "value": 1693605427916 }, - "date_last_updated": { "type": 6, "value": 1693605427916 }, + "date_created": { + "type": 6, + "value": 1693605427916 + }, + "date_last_updated": { + "type": 6, + "value": 1693605427916 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -36992,7 +47413,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1696197762263 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1696197762263 + } + }, "revision": "lnt02v2h01sroohx02is2bnt", "revision_nr": 1, "created": 1697467092430, @@ -37054,16 +47481,28 @@ "total_amount": 20, "id": "1693605762263", "history_id": "1693605762263", - "date_created": { "type": 6, "value": 1693605762263 }, - "date_last_updated": { "type": 6, "value": 1693606033196 }, + "date_created": { + "type": 6, + "value": 1693605762263 + }, + "date_last_updated": { + "type": 6, + "value": 1693606033196 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1693606033196 }, - "money_release_date": { "type": 6, "value": 1693606033196 }, + "date_approved": { + "type": 6, + "value": 1693606033196 + }, + "money_release_date": { + "type": 6, + "value": 1693606033196 + }, "money_release_status": "approved", "wasDebited": true }, @@ -37117,9 +47556,18 @@ "total_amount": 33429, "id": "1693606719867", "history_id": "1693606719867", - "date_created": { "type": 6, "value": 1693606719867 }, - "date_last_updated": { "type": 6, "value": 1693606719867 }, - "date_of_expiration": { "type": 6, "value": 1693606719867 }, + "date_created": { + "type": 6, + "value": 1693606719867 + }, + "date_last_updated": { + "type": 6, + "value": 1693606719867 + }, + "date_of_expiration": { + "type": 6, + "value": 1693606719867 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -37138,7 +47586,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697246922996 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697246922996 + } + }, "revision": "lnt02v3m01szoohxa0i9blk1", "revision_nr": 1, "created": 1697467092470, @@ -37200,16 +47654,28 @@ "total_amount": 20, "id": "1694654922996", "history_id": "1694654922996", - "date_created": { "type": 6, "value": 1694654922996 }, - "date_last_updated": { "type": 6, "value": 1694655660738 }, + "date_created": { + "type": 6, + "value": 1694654922996 + }, + "date_last_updated": { + "type": 6, + "value": 1694655660738 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694655660738 }, - "money_release_date": { "type": 6, "value": 1694655660738 }, + "date_approved": { + "type": 6, + "value": 1694655660738 + }, + "money_release_date": { + "type": 6, + "value": 1694655660738 + }, "money_release_status": "approved", "wasDebited": true }, @@ -37223,7 +47689,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697320326075 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697320326075 + } + }, "revision": "lnt02v4d01t4oohxh1s22sdd", "revision_nr": 1, "created": 1697467092498, @@ -37285,16 +47757,28 @@ "total_amount": 100, "id": "1694728326075", "history_id": "1694728326075", - "date_created": { "type": 6, "value": 1694728326075 }, - "date_last_updated": { "type": 6, "value": 1694731342567 }, + "date_created": { + "type": 6, + "value": 1694728326075 + }, + "date_last_updated": { + "type": 6, + "value": 1694731342567 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694731342567 }, - "money_release_date": { "type": 6, "value": 1694731342567 }, + "date_approved": { + "type": 6, + "value": 1694731342567 + }, + "money_release_date": { + "type": 6, + "value": 1694731342567 + }, "money_release_status": "approved", "wasDebited": true }, @@ -37308,7 +47792,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697320859603 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697320859603 + } + }, "revision": "lnt02v5201t9oohx5d7jhpew", "revision_nr": 1, "created": 1697467092525, @@ -37370,8 +47860,14 @@ "total_amount": 100, "id": "1694728859604", "history_id": "1694728859604", - "date_created": { "type": 6, "value": 1694728859604 }, - "date_last_updated": { "type": 6, "value": 1694728859604 }, + "date_created": { + "type": 6, + "value": 1694728859604 + }, + "date_last_updated": { + "type": 6, + "value": 1694728859604 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -37429,9 +47925,18 @@ "total_amount": 121808, "id": "1694731526035", "history_id": "1694731526035", - "date_created": { "type": 6, "value": 1694731526035 }, - "date_last_updated": { "type": 6, "value": 1694731526035 }, - "date_of_expiration": { "type": 6, "value": 1694731526035 }, + "date_created": { + "type": 6, + "value": 1694731526035 + }, + "date_last_updated": { + "type": 6, + "value": 1694731526035 + }, + "date_of_expiration": { + "type": 6, + "value": 1694731526035 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -37490,9 +47995,18 @@ "total_amount": 25384, "id": "1694793493188", "history_id": "1694793493188", - "date_created": { "type": 6, "value": 1694793493188 }, - "date_last_updated": { "type": 6, "value": 1694793493188 }, - "date_of_expiration": { "type": 6, "value": 1694793493188 }, + "date_created": { + "type": 6, + "value": 1694793493188 + }, + "date_last_updated": { + "type": 6, + "value": 1694793493188 + }, + "date_of_expiration": { + "type": 6, + "value": 1694793493188 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -37511,7 +48025,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697558109290 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697558109290 + } + }, "revision": "lnt02v6o01tkoohxekafgj2q", "revision_nr": 1, "created": 1697467092581, @@ -37573,16 +48093,28 @@ "total_amount": 20, "id": "1694966109291", "history_id": "1694966109291", - "date_created": { "type": 6, "value": 1694966109291 }, - "date_last_updated": { "type": 6, "value": 1694973497859 }, + "date_created": { + "type": 6, + "value": 1694966109291 + }, + "date_last_updated": { + "type": 6, + "value": 1694973497859 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694973497859 }, - "money_release_date": { "type": 6, "value": 1694973497859 }, + "date_approved": { + "type": 6, + "value": 1694973497859 + }, + "money_release_date": { + "type": 6, + "value": 1694973497859 + }, "money_release_status": "approved", "wasDebited": true }, @@ -37636,9 +48168,18 @@ "total_amount": 25302, "id": "1694988703973", "history_id": "1694988703973", - "date_created": { "type": 6, "value": 1694988703973 }, - "date_last_updated": { "type": 6, "value": 1694988703973 }, - "date_of_expiration": { "type": 6, "value": 1694988703973 }, + "date_created": { + "type": 6, + "value": 1694988703973 + }, + "date_last_updated": { + "type": 6, + "value": 1694988703973 + }, + "date_of_expiration": { + "type": 6, + "value": 1694988703973 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -37657,7 +48198,13 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699112028284 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699112028284 + } + }, "revision": "lnt02v7u01tsoohx4dmgaijv", "revision_nr": 1, "created": 1697467092624, @@ -37720,16 +48267,28 @@ "total_amount": 20, "id": "1696520028285", "history_id": "1696520028285", - "date_created": { "type": 6, "value": 1696520028285 }, - "date_last_updated": { "type": 6, "value": 1696520650654 }, + "date_created": { + "type": 6, + "value": 1696520028285 + }, + "date_last_updated": { + "type": 6, + "value": 1696520650654 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696520650654 }, - "money_release_date": { "type": 6, "value": 1696520650654 }, + "date_approved": { + "type": 6, + "value": 1696520650654 + }, + "money_release_date": { + "type": 6, + "value": 1696520650654 + }, "money_release_status": "approved", "wasDebited": true }, @@ -37784,9 +48343,18 @@ "total_amount": 22059, "id": "1696520773436", "history_id": "1696520773436", - "date_created": { "type": 6, "value": 1696520773436 }, - "date_last_updated": { "type": 6, "value": 1696520773436 }, - "date_of_expiration": { "type": 6, "value": 1696520773436 }, + "date_created": { + "type": 6, + "value": 1696520773436 + }, + "date_last_updated": { + "type": 6, + "value": 1696520773436 + }, + "date_of_expiration": { + "type": 6, + "value": 1696520773436 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -37803,13 +48371,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history", - "content": { "type": 1, "value": {}, "revision": "lnt02uto01r1oohxgnki5s6u", "revision_nr": 1, "created": 1697467092664, "modified": 1697467092664 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02uto01r1oohxgnki5s6u", + "revision_nr": 1, + "created": 1697467092664, + "modified": 1697467092664 + } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1696173793593 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1696173793593 + } + }, "revision": "lnt02v9401tzoohxfjh8hso3", "revision_nr": 1, "created": 1697467092669, @@ -37820,7 +48403,16 @@ "path": "ivipcoin-db::__movement_wallet__/057751007037449620", "content": { "type": 1, - "value": { "dataModificacao": 1679345183302, "dateValidity": 1679345183302, "totalValue": 17.88, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697338800000 } }, + "value": { + "dataModificacao": 1679345183302, + "dateValidity": 1679345183302, + "totalValue": 17.88, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, "revision": "lnt02utd01qyoohxg1052kbl", "revision_nr": 1, "created": 1697467092675, @@ -37831,7 +48423,11 @@ "path": "ivipcoin-db::__movement_wallet__/058359081725899656/balances/IVIP", "content": { "type": 1, - "value": { "available": "-14612195.00000000", "symbol": "IVIP", "value": -15912.37 }, + "value": { + "available": "-14612195.00000000", + "symbol": "IVIP", + "value": -15912.37 + }, "revision": "lnt02v9f01u2oohxfw3cacsy", "revision_nr": 1, "created": 1697467092680, @@ -37840,7 +48436,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02v9f01u1oohx18ng409o", "revision_nr": 1, "created": 1697467092685, "modified": 1697467092685 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02v9f01u1oohx18ng409o", + "revision_nr": 1, + "created": 1697467092685, + "modified": 1697467092685 + } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933/description", @@ -37855,7 +48458,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02v9u01u6oohxf9ii5tjq", "revision_nr": 1, "created": 1697467092695, "modified": 1697467092695 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02v9u01u6oohxf9ii5tjq", + "revision_nr": 1, + "created": 1697467092695, + "modified": 1697467092695 + } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933", @@ -37869,15 +48481,30 @@ "total_amount": 3000, "history_id": 1683732218933, "id": 1683732218933, - "date_created": { "type": 6, "value": 1683732218933 }, - "date_last_updated": { "type": 6, "value": 1683733093240 }, - "date_of_expiration": { "type": 6, "value": 1686324218933 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683733093240 }, - "money_release_date": { "type": 6, "value": 1683733093240 }, + "date_created": { + "type": 6, + "value": 1683732218933 + }, + "date_last_updated": { + "type": 6, + "value": 1683733093240 + }, + "date_of_expiration": { + "type": 6, + "value": 1686324218933 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683733093240 + }, + "money_release_date": { + "type": 6, + "value": 1683733093240 + }, "money_release_status": "approved", "wasDebited": true }, @@ -37923,9 +48550,18 @@ "original_amount": 14612195, "total_amount": 14612195, "id": 1684627186163, - "date_created": { "type": 6, "value": 1684627186163 }, - "date_last_updated": { "type": 6, "value": 1684627186163 }, - "date_of_expiration": { "type": 6, "value": 1684627186163 }, + "date_created": { + "type": 6, + "value": 1684627186163 + }, + "date_last_updated": { + "type": 6, + "value": 1684627186163 + }, + "date_of_expiration": { + "type": 6, + "value": 1684627186163 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37966,7 +48602,11 @@ "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 438365.85 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 438365.85 + }, "revision": "lnt02vap01ueoohxd16m5bdh", "revision_nr": 1, "created": 1697467092727, @@ -37975,7 +48615,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02vap01udoohx440k5wc6", "revision_nr": 1, "created": 1697467092732, "modified": 1697467092732 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02vap01udoohx440k5wc6", + "revision_nr": 1, + "created": 1697467092732, + "modified": 1697467092732 + } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details", @@ -38009,17 +48656,32 @@ "total_amount": 14173829.15, "id": 1692302387863, "history_id": 1692302387863, - "date_created": { "type": 6, "value": 1692302387863 }, - "date_last_updated": { "type": 6, "value": 1692973252038 }, - "date_of_expiration": { "type": 6, "value": 1692302387863 }, + "date_created": { + "type": 6, + "value": 1692302387863 + }, + "date_last_updated": { + "type": 6, + "value": 1692973252038 + }, + "date_of_expiration": { + "type": 6, + "value": 1692302387863 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1692973252038 }, - "money_release_date": { "type": 6, "value": 1692973252038 }, + "date_approved": { + "type": 6, + "value": 1692973252038 + }, + "money_release_date": { + "type": 6, + "value": 1692973252038 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -38055,7 +48717,11 @@ "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 438365.85 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 438365.85 + }, "revision": "lnt02vbm01ukoohx7oeshnmk", "revision_nr": 1, "created": 1697467092759, @@ -38064,7 +48730,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02vbm01ujoohx31oscnic", "revision_nr": 1, "created": 1697467092764, "modified": 1697467092764 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02vbm01ujoohx31oscnic", + "revision_nr": 1, + "created": 1697467092764, + "modified": 1697467092764 + } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details", @@ -38098,17 +48771,32 @@ "total_amount": 14173829.15, "id": 1692441112310, "history_id": 1692441112310, - "date_created": { "type": 6, "value": 1692441112310 }, - "date_last_updated": { "type": 6, "value": 1692972725453 }, - "date_of_expiration": { "type": 6, "value": 1692441112310 }, + "date_created": { + "type": 6, + "value": 1692441112310 + }, + "date_last_updated": { + "type": 6, + "value": 1692972725453 + }, + "date_of_expiration": { + "type": 6, + "value": 1692441112310 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1692972725453 }, - "money_release_date": { "type": 6, "value": 1692972725453 }, + "date_approved": { + "type": 6, + "value": 1692972725453 + }, + "money_release_date": { + "type": 6, + "value": 1692972725453 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -38120,13 +48808,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history", - "content": { "type": 1, "value": {}, "revision": "lnt02v9p01u3oohxbsbbato4", "revision_nr": 1, "created": 1697467092781, "modified": 1697467092781 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02v9p01u3oohxbsbbato4", + "revision_nr": 1, + "created": 1697467092781, + "modified": 1697467092781 + } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02vcd01uloohx1wwnfgrp", "revision_nr": 1, "created": 1697467092786, @@ -38137,7 +48836,16 @@ "path": "ivipcoin-db::__movement_wallet__/058359081725899656", "content": { "type": 1, - "value": { "dataModificacao": 1683669489240, "dateValidity": 1683669489240, "totalValue": 600.6, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696129200000 } }, + "value": { + "dataModificacao": 1683669489240, + "dateValidity": 1683669489240, + "totalValue": 600.6, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696129200000 + } + }, "revision": "lnt02v9f01u0oohxbjbz9rst", "revision_nr": 1, "created": 1697467092792, @@ -38148,7 +48856,11 @@ "path": "ivipcoin-db::__movement_wallet__/059914438431437400/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02vco01unoohxc8iv1h8c", "revision_nr": 1, "created": 1697467092797, @@ -38159,7 +48871,14 @@ "path": "ivipcoin-db::__movement_wallet__/059914438431437400", "content": { "type": 1, - "value": { "dataModificacao": 1684637987083, "dateValidity": 1684637987083, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684637987083, + "dateValidity": 1684637987083, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02vco01umoohx7uq8fcwn", "revision_nr": 1, "created": 1697467092802, @@ -38170,7 +48889,11 @@ "path": "ivipcoin-db::__movement_wallet__/060044476007192536/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "available": "30.00000000", "value": 6.027 }, + "value": { + "symbol": "BRL", + "available": "30.00000000", + "value": 6.027 + }, "revision": "lnt02vcz01uqoohx28mzc4d0", "revision_nr": 1, "created": 1697467092807, @@ -38179,7 +48902,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02vcz01upoohx345i9bi2", "revision_nr": 1, "created": 1697467092812, "modified": 1697467092812 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02vcz01upoohx345i9bi2", + "revision_nr": 1, + "created": 1697467092812, + "modified": 1697467092812 + } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649/description", @@ -38194,7 +48924,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02vdd01uuoohxblnwdrdb", "revision_nr": 1, "created": 1697467092823, "modified": 1697467092823 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02vdd01uuoohxblnwdrdb", + "revision_nr": 1, + "created": 1697467092823, + "modified": 1697467092823 + } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649", @@ -38208,15 +48947,30 @@ "total_amount": 30, "history_id": 1684092073649, "id": 1684092073649, - "date_created": { "type": 6, "value": 1684092073649 }, - "date_last_updated": { "type": 6, "value": 1684092282901 }, - "date_of_expiration": { "type": 6, "value": 1686684073649 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684092282901 }, - "money_release_date": { "type": 6, "value": 1684092282901 }, + "date_created": { + "type": 6, + "value": 1684092073649 + }, + "date_last_updated": { + "type": 6, + "value": 1684092282901 + }, + "date_of_expiration": { + "type": 6, + "value": 1686684073649 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684092282901 + }, + "money_release_date": { + "type": 6, + "value": 1684092282901 + }, "money_release_status": "approved", "wasDebited": true }, @@ -38228,13 +48982,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history", - "content": { "type": 1, "value": {}, "revision": "lnt02vd801uroohxgqc6dp8a", "revision_nr": 1, "created": 1697467092833, "modified": 1697467092833 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02vd801uroohxgqc6dp8a", + "revision_nr": 1, + "created": 1697467092833, + "modified": 1697467092833 + } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02vdt01uvoohxd8pl79k1", "revision_nr": 1, "created": 1697467092838, @@ -38245,7 +49010,12 @@ "path": "ivipcoin-db::__movement_wallet__/060044476007192536", "content": { "type": 1, - "value": { "dataModificacao": 1684091907959, "dateValidity": 1684091907959, "totalValue": 6.03, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684091907959, + "dateValidity": 1684091907959, + "totalValue": 6.03, + "currencyType": "USD" + }, "revision": "lnt02vcy01uooohx38hl3wg8", "revision_nr": 1, "created": 1697467092844, @@ -38256,7 +49026,11 @@ "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt02ve401uyoohx03n55h86", "revision_nr": 1, "created": 1697467092850, @@ -38267,7 +49041,11 @@ "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances/IVIP", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "IVIP", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "IVIP", + "value": 0 + }, "revision": "lnt02vea01uzoohx0cueao1e", "revision_nr": 1, "created": 1697467092855, @@ -38276,7 +49054,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02ve401uxoohxfurn499r", "revision_nr": 1, "created": 1697467092861, "modified": 1697467092861 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ve401uxoohxfurn499r", + "revision_nr": 1, + "created": 1697467092861, + "modified": 1697467092861 + } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358/description", @@ -38291,7 +49076,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02veq01v3oohxb97e9327", "revision_nr": 1, "created": 1697467092871, "modified": 1697467092871 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02veq01v3oohxb97e9327", + "revision_nr": 1, + "created": 1697467092871, + "modified": 1697467092871 + } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358", @@ -38305,15 +49099,30 @@ "total_amount": 30, "history_id": 1684104224358, "id": 1684104224358, - "date_created": { "type": 6, "value": 1684104224358 }, - "date_last_updated": { "type": 6, "value": 1684104710880 }, - "date_of_expiration": { "type": 6, "value": 1686696224358 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684104710880 }, - "money_release_date": { "type": 6, "value": 1684104710880 }, + "date_created": { + "type": 6, + "value": 1684104224358 + }, + "date_last_updated": { + "type": 6, + "value": 1684104710880 + }, + "date_of_expiration": { + "type": 6, + "value": 1686696224358 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684104710880 + }, + "money_release_date": { + "type": 6, + "value": 1684104710880 + }, "money_release_status": "approved", "wasDebited": true }, @@ -38359,9 +49168,18 @@ "original_amount": 145829, "total_amount": 145829, "id": 1684702707589, - "date_created": { "type": 6, "value": 1684702707589 }, - "date_last_updated": { "type": 6, "value": 1684702707589 }, - "date_of_expiration": { "type": 6, "value": 1684702707589 }, + "date_created": { + "type": 6, + "value": 1684702707589 + }, + "date_last_updated": { + "type": 6, + "value": 1684702707589 + }, + "date_of_expiration": { + "type": 6, + "value": 1684702707589 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38389,7 +49207,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02vff01v8oohx82hmdjgl", "revision_nr": 1, "created": 1697467092897, "modified": 1697467092897 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02vff01v8oohx82hmdjgl", + "revision_nr": 1, + "created": 1697467092897, + "modified": 1697467092897 + } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656", @@ -38403,9 +49230,18 @@ "total_amount": 20, "history_id": 1685061340656, "id": 1685061340656, - "date_created": { "type": 6, "value": 1685061340656 }, - "date_last_updated": { "type": 6, "value": 1685061340656 }, - "date_of_expiration": { "type": 6, "value": 1687653340656 }, + "date_created": { + "type": 6, + "value": 1685061340656 + }, + "date_last_updated": { + "type": 6, + "value": 1685061340656 + }, + "date_of_expiration": { + "type": 6, + "value": 1687653340656 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -38430,7 +49266,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02vfy01vboohxdpmyetn4", "revision_nr": 1, "created": 1697467092915, "modified": 1697467092915 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02vfy01vboohxdpmyetn4", + "revision_nr": 1, + "created": 1697467092915, + "modified": 1697467092915 + } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809", @@ -38444,14 +49289,26 @@ "total_amount": 1055, "history_id": 1685664745809, "id": 1685664745809, - "date_created": { "type": 6, "value": 1685664745809 }, - "date_last_updated": { "type": 6, "value": 1685727284727 }, - "date_of_expiration": { "type": 6, "value": 1688256745809 }, + "date_created": { + "type": 6, + "value": 1685664745809 + }, + "date_last_updated": { + "type": 6, + "value": 1685727284727 + }, + "date_of_expiration": { + "type": 6, + "value": 1688256745809 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1685727284727 }, + "money_release_date": { + "type": 6, + "value": 1685727284727 + }, "money_release_status": "rejected" }, "revision": "lnt02vfq01v9oohx304b355p", @@ -38515,9 +49372,18 @@ "total_amount": 145829, "id": 1690250551090, "history_id": 1690250551090, - "date_created": { "type": 6, "value": 1690250551090 }, - "date_last_updated": { "type": 6, "value": 1690250551090 }, - "date_of_expiration": { "type": 6, "value": 1690250551090 }, + "date_created": { + "type": 6, + "value": 1690250551090 + }, + "date_last_updated": { + "type": 6, + "value": 1690250551090 + }, + "date_of_expiration": { + "type": 6, + "value": 1690250551090 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -38586,17 +49452,32 @@ "total_amount": 145829, "id": 1690380108963, "history_id": 1690380108963, - "date_created": { "type": 6, "value": 1690380108963 }, - "date_last_updated": { "type": 6, "value": 1690392697340 }, - "date_of_expiration": { "type": 6, "value": 1690380108963 }, + "date_created": { + "type": 6, + "value": 1690380108963 + }, + "date_last_updated": { + "type": 6, + "value": 1690392697340 + }, + "date_of_expiration": { + "type": 6, + "value": 1690380108963 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1690392697340 }, - "money_release_date": { "type": 6, "value": 1690392697340 }, + "date_approved": { + "type": 6, + "value": 1690392697340 + }, + "money_release_date": { + "type": 6, + "value": 1690392697340 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -38608,13 +49489,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history", - "content": { "type": 1, "value": {}, "revision": "lnt02vel01v0oohxfar49dm5", "revision_nr": 1, "created": 1697467092969, "modified": 1697467092969 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02vel01v0oohxfar49dm5", + "revision_nr": 1, + "created": 1697467092969, + "modified": 1697467092969 + } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02vhl01vkoohxgmxp0vj2", "revision_nr": 1, "created": 1697467092976, @@ -38625,7 +49517,16 @@ "path": "ivipcoin-db::__movement_wallet__/060281793071125250", "content": { "type": 1, - "value": { "dataModificacao": 1684104139226, "dateValidity": 1684104139226, "totalValue": 6.02, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1693018800000 } }, + "value": { + "dataModificacao": 1684104139226, + "dateValidity": 1684104139226, + "totalValue": 6.02, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1693018800000 + } + }, "revision": "lnt02ve401uwoohx4lzk92vv", "revision_nr": 1, "created": 1697467092980, @@ -38636,7 +49537,11 @@ "path": "ivipcoin-db::__movement_wallet__/060606366606758000/balances/IVIP", "content": { "type": 1, - "value": { "available": "2596003.86000000", "symbol": "IVIP", "value": 270.012 }, + "value": { + "available": "2596003.86000000", + "symbol": "IVIP", + "value": 270.012 + }, "revision": "lnt02vhx01vnoohxfmaw6lh1", "revision_nr": 1, "created": 1697467092986, @@ -38645,7 +49550,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02vhx01vmoohx4kaucorx", "revision_nr": 1, "created": 1697467092992, "modified": 1697467092992 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02vhx01vmoohx4kaucorx", + "revision_nr": 1, + "created": 1697467092992, + "modified": 1697467092992 + } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729/description", @@ -38660,7 +49572,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02vie01vroohxc1r80d3h", "revision_nr": 1, "created": 1697467093003, "modified": 1697467093003 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02vie01vroohxc1r80d3h", + "revision_nr": 1, + "created": 1697467093003, + "modified": 1697467093003 + } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729", @@ -38674,15 +49595,30 @@ "total_amount": 1800, "history_id": 1679009450729, "id": 1679009450729, - "date_created": { "type": 6, "value": 1679009450729 }, - "date_last_updated": { "type": 6, "value": 1679009578413 }, - "date_of_expiration": { "type": 6, "value": 1681601450729 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679009578413 }, - "money_release_date": { "type": 6, "value": 1679009578413 }, + "date_created": { + "type": 6, + "value": 1679009450729 + }, + "date_last_updated": { + "type": 6, + "value": 1679009578413 + }, + "date_of_expiration": { + "type": 6, + "value": 1681601450729 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679009578413 + }, + "money_release_date": { + "type": 6, + "value": 1679009578413 + }, "money_release_status": "approved", "wasDebited": true }, @@ -38728,9 +49664,18 @@ "original_amount": 10484307, "total_amount": 10484307, "id": 1679267499015, - "date_created": { "type": 6, "value": 1679267499015 }, - "date_last_updated": { "type": 6, "value": 1679267499015 }, - "date_of_expiration": { "type": 6, "value": 1679267499015 }, + "date_created": { + "type": 6, + "value": 1679267499015 + }, + "date_last_updated": { + "type": 6, + "value": 1679267499015 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267499015 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38791,9 +49736,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1688476464326, - "date_created": { "type": 6, "value": 1688476464326 }, - "date_last_updated": { "type": 6, "value": 1688476464326 }, - "date_of_expiration": { "type": 6, "value": 1720098864326 }, + "date_created": { + "type": 6, + "value": 1688476464326 + }, + "date_last_updated": { + "type": 6, + "value": 1688476464326 + }, + "date_of_expiration": { + "type": 6, + "value": 1720098864326 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38853,9 +49807,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1688476478538, - "date_created": { "type": 6, "value": 1688476478538 }, - "date_last_updated": { "type": 6, "value": 1688476478538 }, - "date_of_expiration": { "type": 6, "value": 1751634878538 }, + "date_created": { + "type": 6, + "value": 1688476478538 + }, + "date_last_updated": { + "type": 6, + "value": 1688476478538 + }, + "date_of_expiration": { + "type": 6, + "value": 1751634878538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38924,9 +49887,18 @@ "total_amount": 5684843, "id": "1693784335259", "history_id": "1693784335259", - "date_created": { "type": 6, "value": 1693784335259 }, - "date_last_updated": { "type": 6, "value": 1693784335259 }, - "date_of_expiration": { "type": 6, "value": 1696376335258 }, + "date_created": { + "type": 6, + "value": 1693784335259 + }, + "date_last_updated": { + "type": 6, + "value": 1693784335259 + }, + "date_of_expiration": { + "type": 6, + "value": 1696376335258 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38996,9 +49968,18 @@ "total_amount": 5798539.86, "id": "1696384249715", "history_id": "1696384249715", - "date_created": { "type": 6, "value": 1696384249715 }, - "date_last_updated": { "type": 6, "value": 1696384249715 }, - "date_of_expiration": { "type": 6, "value": 1696384249715 }, + "date_created": { + "type": 6, + "value": 1696384249715 + }, + "date_last_updated": { + "type": 6, + "value": 1696384249715 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384249715 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -39068,9 +50049,18 @@ "total_amount": 5798539.86, "id": "1696384254400", "history_id": "1696384254400", - "date_created": { "type": 6, "value": 1696384254400 }, - "date_last_updated": { "type": 6, "value": 1696384254400 }, - "date_of_expiration": { "type": 6, "value": 1696384254400 }, + "date_created": { + "type": 6, + "value": 1696384254400 + }, + "date_last_updated": { + "type": 6, + "value": 1696384254400 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384254400 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -39140,9 +50130,18 @@ "total_amount": 5798539.86, "id": "1696384253628", "history_id": "1696384253628", - "date_created": { "type": 6, "value": 1696384253628 }, - "date_last_updated": { "type": 6, "value": 1696384253628 }, - "date_of_expiration": { "type": 6, "value": 1696384253628 }, + "date_created": { + "type": 6, + "value": 1696384253628 + }, + "date_last_updated": { + "type": 6, + "value": 1696384253628 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384253628 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -39212,9 +50211,18 @@ "total_amount": 8000000, "id": "1696457810654", "history_id": "1696457810654", - "date_created": { "type": 6, "value": 1696457810654 }, - "date_last_updated": { "type": 6, "value": 1696457810654 }, - "date_of_expiration": { "type": 6, "value": 1699136210615 }, + "date_created": { + "type": 6, + "value": 1696457810654 + }, + "date_last_updated": { + "type": 6, + "value": 1696457810654 + }, + "date_of_expiration": { + "type": 6, + "value": 1699136210615 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -39230,13 +50238,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history", - "content": { "type": 1, "value": {}, "revision": "lnt02vi801vooohxc8ju63ry", "revision_nr": 1, "created": 1697467093165, "modified": 1697467093165 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02vi801vooohxc8ju63ry", + "revision_nr": 1, + "created": 1697467093165, + "modified": 1697467093165 + } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02vn101wkoohx8eymdc20", "revision_nr": 1, "created": 1697467093171, @@ -39252,7 +50271,10 @@ "dateValidity": 1679023260971, "totalValue": 563.3215233209353, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1697338800000 } + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } }, "revision": "lnt02vhx01vloohx3p349gu6", "revision_nr": 1, @@ -39264,7 +50286,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BTC", "content": { "type": 1, - "value": { "symbol": "BTC", "value": 0.12708406600000002, "available": "0.00000509" }, + "value": { + "symbol": "BTC", + "value": 0.12708406600000002, + "available": "0.00000509" + }, "revision": "lnt02vne01wnoohxbqdv3pch", "revision_nr": 1, "created": 1697467093183, @@ -39275,7 +50301,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BNB", "content": { "type": 1, - "value": { "symbol": "BNB", "value": 0.0088529947, "available": "0.00002689" }, + "value": { + "symbol": "BNB", + "value": 0.0088529947, + "available": "0.00002689" + }, "revision": "lnt02vnj01wooohxg7m0dpbd", "revision_nr": 1, "created": 1697467093188, @@ -39286,7 +50316,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BUSD", "content": { "type": 1, - "value": { "symbol": "BUSD", "value": 0.032112, "available": "0.03211200" }, + "value": { + "symbol": "BUSD", + "value": 0.032112, + "available": "0.03211200" + }, "revision": "lnt02vno01wpoohx2l4l1jh5", "revision_nr": 1, "created": 1697467093193, @@ -39297,7 +50331,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/KAVA", "content": { "type": 1, - "value": { "symbol": "KAVA", "value": 1.4510568362399998, "available": "1.41843288" }, + "value": { + "symbol": "KAVA", + "value": 1.4510568362399998, + "available": "1.41843288" + }, "revision": "lnt02vnt01wqoohx6esy3kop", "revision_nr": 1, "created": 1697467093199, @@ -39308,7 +50346,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "value": 0.145340815, "available": "0.76697000" }, + "value": { + "symbol": "BRL", + "value": 0.145340815, + "available": "0.76697000" + }, "revision": "lnt02vnz01wroohx3mlwgegu", "revision_nr": 1, "created": 1697467093205, @@ -39319,7 +50361,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/IDEX", "content": { "type": 1, - "value": { "symbol": "IDEX", "value": 0.0002743, "available": "0.00500000" }, + "value": { + "symbol": "IDEX", + "value": 0.0002743, + "available": "0.00500000" + }, "revision": "lnt02vo501wsoohx0gybf9vi", "revision_nr": 1, "created": 1697467093210, @@ -39330,7 +50376,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/NFT", "content": { "type": 1, - "value": { "symbol": "NFT", "value": 0.15272504798763, "available": "372500.117043" }, + "value": { + "symbol": "NFT", + "value": 0.15272504798763, + "available": "372500.117043" + }, "revision": "lnt02voa01wtoohxffumbxmr", "revision_nr": 1, "created": 1697467093215, @@ -39341,7 +50391,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/LUNC", "content": { "type": 1, - "value": { "symbol": "LUNC", "value": 7.524e-8, "available": "0.00060000" }, + "value": { + "symbol": "LUNC", + "value": 7.524e-8, + "available": "0.00060000" + }, "revision": "lnt02vof01wuoohxdmbmdq17", "revision_nr": 1, "created": 1697467093220, @@ -39352,7 +50406,11 @@ "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/GFT", "content": { "type": 1, - "value": { "symbol": "GFT", "value": 0.001235, "available": "0.10000000" }, + "value": { + "symbol": "GFT", + "value": 0.001235, + "available": "0.10000000" + }, "revision": "lnt02vok01wvoohx4lpfg22h", "revision_nr": 1, "created": 1697467093227, @@ -39361,13 +50419,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02vne01wmoohx0ve066fw", "revision_nr": 1, "created": 1697467093232, "modified": 1697467093232 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02vne01wmoohx0ve066fw", + "revision_nr": 1, + "created": 1697467093232, + "modified": 1697467093232 + } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650", "content": { "type": 1, - "value": { "dataModificacao": 1678997573060, "dateValidity": 1679015562550, "history": {}, "totalValue": 1.919, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678997573060, + "dateValidity": 1679015562550, + "history": {}, + "totalValue": 1.919, + "currencyType": "USD" + }, "revision": "lnt02vne01wloohx271keby1", "revision_nr": 1, "created": 1697467093238, @@ -39378,7 +50449,11 @@ "path": "ivipcoin-db::__movement_wallet__/062575214502477384/balances/IVIP", "content": { "type": 1, - "value": { "available": "1808506.00000000", "symbol": "IVIP", "value": 279.32 }, + "value": { + "available": "1808506.00000000", + "symbol": "IVIP", + "value": 279.32 + }, "revision": "lnt02vp201wyoohxhis92zwj", "revision_nr": 1, "created": 1697467093244, @@ -39387,13 +50462,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02vp201wxoohxfi5lgfn2", "revision_nr": 1, "created": 1697467093249, "modified": 1697467093249 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02vp201wxoohxfi5lgfn2", + "revision_nr": 1, + "created": 1697467093249, + "modified": 1697467093249 + } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693586433996 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693586433996 + } + }, "revision": "lnt02vpd01x1oohxdwcw6d1k", "revision_nr": 1, "created": 1697467093255, @@ -39455,16 +50543,28 @@ "total_amount": 1000, "id": 1690994433997, "history_id": 1690994433997, - "date_created": { "type": 6, "value": 1690994433997 }, - "date_last_updated": { "type": 6, "value": 1691009312957 }, + "date_created": { + "type": 6, + "value": 1690994433997 + }, + "date_last_updated": { + "type": 6, + "value": 1691009312957 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691009312957 }, - "money_release_date": { "type": 6, "value": 1691009312957 }, + "date_approved": { + "type": 6, + "value": 1691009312957 + }, + "money_release_date": { + "type": 6, + "value": 1691009312957 + }, "money_release_status": "approved", "wasDebited": true }, @@ -39518,9 +50618,18 @@ "total_amount": 207673, "id": 1691064347943, "history_id": 1691064347943, - "date_created": { "type": 6, "value": 1691064347943 }, - "date_last_updated": { "type": 6, "value": 1691064347943 }, - "date_of_expiration": { "type": 6, "value": 1691064347943 }, + "date_created": { + "type": 6, + "value": 1691064347943 + }, + "date_last_updated": { + "type": 6, + "value": 1691064347943 + }, + "date_of_expiration": { + "type": 6, + "value": 1691064347943 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39579,9 +50688,18 @@ "total_amount": 292108, "id": 1691234903050, "history_id": 1691234903050, - "date_created": { "type": 6, "value": 1691234903050 }, - "date_last_updated": { "type": 6, "value": 1691234903050 }, - "date_of_expiration": { "type": 6, "value": 1691234903050 }, + "date_created": { + "type": 6, + "value": 1691234903050 + }, + "date_last_updated": { + "type": 6, + "value": 1691234903050 + }, + "date_of_expiration": { + "type": 6, + "value": 1691234903050 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39640,9 +50758,18 @@ "total_amount": 293284, "id": 1691237670718, "history_id": 1691237670718, - "date_created": { "type": 6, "value": 1691237670718 }, - "date_last_updated": { "type": 6, "value": 1691237670718 }, - "date_of_expiration": { "type": 6, "value": 1691237670718 }, + "date_created": { + "type": 6, + "value": 1691237670718 + }, + "date_last_updated": { + "type": 6, + "value": 1691237670718 + }, + "date_of_expiration": { + "type": 6, + "value": 1691237670718 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39701,9 +50828,18 @@ "total_amount": 327037, "id": 1691454318499, "history_id": 1691454318499, - "date_created": { "type": 6, "value": 1691454318499 }, - "date_last_updated": { "type": 6, "value": 1691454318499 }, - "date_of_expiration": { "type": 6, "value": 1691454318499 }, + "date_created": { + "type": 6, + "value": 1691454318499 + }, + "date_last_updated": { + "type": 6, + "value": 1691454318499 + }, + "date_of_expiration": { + "type": 6, + "value": 1691454318499 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39722,7 +50858,13 @@ "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694087110176 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694087110176 + } + }, "revision": "lnt02vs101xioohx4kh0gkqd", "revision_nr": 1, "created": 1697467093350, @@ -39784,16 +50926,28 @@ "total_amount": 1000, "id": 1691495110179, "history_id": 1691495110179, - "date_created": { "type": 6, "value": 1691495110179 }, - "date_last_updated": { "type": 6, "value": 1691499951775 }, + "date_created": { + "type": 6, + "value": 1691495110179 + }, + "date_last_updated": { + "type": 6, + "value": 1691499951775 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691499951775 }, - "money_release_date": { "type": 6, "value": 1691499951775 }, + "date_approved": { + "type": 6, + "value": 1691499951775 + }, + "money_release_date": { + "type": 6, + "value": 1691499951775 + }, "money_release_status": "approved", "wasDebited": true }, @@ -39847,9 +51001,18 @@ "total_amount": 332596, "id": 1691500327136, "history_id": 1691500327136, - "date_created": { "type": 6, "value": 1691500327136 }, - "date_last_updated": { "type": 6, "value": 1691500327136 }, - "date_of_expiration": { "type": 6, "value": 1691500327136 }, + "date_created": { + "type": 6, + "value": 1691500327136 + }, + "date_last_updated": { + "type": 6, + "value": 1691500327136 + }, + "date_of_expiration": { + "type": 6, + "value": 1691500327136 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39908,9 +51071,18 @@ "total_amount": 372254, "id": 1691711802306, "history_id": 1691711802306, - "date_created": { "type": 6, "value": 1691711802306 }, - "date_last_updated": { "type": 6, "value": 1691711802306 }, - "date_of_expiration": { "type": 6, "value": 1691711802306 }, + "date_created": { + "type": 6, + "value": 1691711802306 + }, + "date_last_updated": { + "type": 6, + "value": 1691711802306 + }, + "date_of_expiration": { + "type": 6, + "value": 1691711802306 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39969,9 +51141,18 @@ "total_amount": 378088, "id": 1691848017758, "history_id": 1691848017758, - "date_created": { "type": 6, "value": 1691848017758 }, - "date_last_updated": { "type": 6, "value": 1691848017758 }, - "date_of_expiration": { "type": 6, "value": 1691848017758 }, + "date_created": { + "type": 6, + "value": 1691848017758 + }, + "date_last_updated": { + "type": 6, + "value": 1691848017758 + }, + "date_of_expiration": { + "type": 6, + "value": 1691848017758 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40030,9 +51211,18 @@ "total_amount": 456006, "id": 1692027842104, "history_id": 1692027842104, - "date_created": { "type": 6, "value": 1692027842104 }, - "date_last_updated": { "type": 6, "value": 1692027842104 }, - "date_of_expiration": { "type": 6, "value": 1692027842104 }, + "date_created": { + "type": 6, + "value": 1692027842104 + }, + "date_last_updated": { + "type": 6, + "value": 1692027842104 + }, + "date_of_expiration": { + "type": 6, + "value": 1692027842104 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40091,9 +51281,18 @@ "total_amount": 475181, "id": 1692250715020, "history_id": 1692250715020, - "date_created": { "type": 6, "value": 1692250715020 }, - "date_last_updated": { "type": 6, "value": 1692250715020 }, - "date_of_expiration": { "type": 6, "value": 1692250715020 }, + "date_created": { + "type": 6, + "value": 1692250715020 + }, + "date_last_updated": { + "type": 6, + "value": 1692250715020 + }, + "date_of_expiration": { + "type": 6, + "value": 1692250715020 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40112,7 +51311,13 @@ "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695079270157 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695079270157 + } + }, "revision": "lnt02vv301y2oohx3sbt9wfo", "revision_nr": 1, "created": 1697467093460, @@ -40174,8 +51379,14 @@ "total_amount": 1500, "id": 1692487270158, "history_id": 1692487270158, - "date_created": { "type": 6, "value": 1692487270158 }, - "date_last_updated": { "type": 6, "value": 1692487270158 }, + "date_created": { + "type": 6, + "value": 1692487270158 + }, + "date_last_updated": { + "type": 6, + "value": 1692487270158 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -40193,7 +51404,13 @@ "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695079578184 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695079578184 + } + }, "revision": "lnt02vvv01y7oohxfyeoft9u", "revision_nr": 1, "created": 1697467093489, @@ -40255,8 +51472,14 @@ "total_amount": 1500, "id": 1692487578184, "history_id": 1692487578184, - "date_created": { "type": 6, "value": 1692487578184 }, - "date_last_updated": { "type": 6, "value": 1692487578184 }, + "date_created": { + "type": 6, + "value": 1692487578184 + }, + "date_last_updated": { + "type": 6, + "value": 1692487578184 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -40314,9 +51537,18 @@ "total_amount": 328542, "id": 1692488711638, "history_id": 1692488711638, - "date_created": { "type": 6, "value": 1692488711638 }, - "date_last_updated": { "type": 6, "value": 1692488711638 }, - "date_of_expiration": { "type": 6, "value": 1692488711638 }, + "date_created": { + "type": 6, + "value": 1692488711638 + }, + "date_last_updated": { + "type": 6, + "value": 1692488711638 + }, + "date_of_expiration": { + "type": 6, + "value": 1692488711638 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40335,7 +51567,13 @@ "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695240164836 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695240164836 + } + }, "revision": "lnt02vx601yfoohxe97k256i", "revision_nr": 1, "created": 1697467093536, @@ -40397,16 +51635,28 @@ "total_amount": 1500, "id": 1692648164836, "history_id": 1692648164836, - "date_created": { "type": 6, "value": 1692648164836 }, - "date_last_updated": { "type": 6, "value": 1692666231441 }, + "date_created": { + "type": 6, + "value": 1692648164836 + }, + "date_last_updated": { + "type": 6, + "value": 1692666231441 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1692666231441 }, - "money_release_date": { "type": 6, "value": 1692666231441 }, + "date_approved": { + "type": 6, + "value": 1692666231441 + }, + "money_release_date": { + "type": 6, + "value": 1692666231441 + }, "money_release_status": "approved", "wasDebited": true }, @@ -40460,9 +51710,18 @@ "total_amount": 285329, "id": "1692666772551", "history_id": "1692666772551", - "date_created": { "type": 6, "value": 1692666772551 }, - "date_last_updated": { "type": 6, "value": 1692666772551 }, - "date_of_expiration": { "type": 6, "value": 1692666772551 }, + "date_created": { + "type": 6, + "value": 1692666772551 + }, + "date_last_updated": { + "type": 6, + "value": 1692666772551 + }, + "date_of_expiration": { + "type": 6, + "value": 1692666772551 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40521,9 +51780,18 @@ "total_amount": 285329, "id": "1692666803752", "history_id": "1692666803752", - "date_created": { "type": 6, "value": 1692666803752 }, - "date_last_updated": { "type": 6, "value": 1692666803752 }, - "date_of_expiration": { "type": 6, "value": 1692666803752 }, + "date_created": { + "type": 6, + "value": 1692666803752 + }, + "date_last_updated": { + "type": 6, + "value": 1692666803752 + }, + "date_of_expiration": { + "type": 6, + "value": 1692666803752 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40582,9 +51850,18 @@ "total_amount": 282682, "id": "1692730130844", "history_id": "1692730130844", - "date_created": { "type": 6, "value": 1692730130844 }, - "date_last_updated": { "type": 6, "value": 1692730130844 }, - "date_of_expiration": { "type": 6, "value": 1692730130844 }, + "date_created": { + "type": 6, + "value": 1692730130844 + }, + "date_last_updated": { + "type": 6, + "value": 1692730130844 + }, + "date_of_expiration": { + "type": 6, + "value": 1692730130844 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40643,9 +51920,18 @@ "total_amount": 526629, "id": "1692751123570", "history_id": "1692751123570", - "date_created": { "type": 6, "value": 1692751123570 }, - "date_last_updated": { "type": 6, "value": 1692751123570 }, - "date_of_expiration": { "type": 6, "value": 1692751123570 }, + "date_created": { + "type": 6, + "value": 1692751123570 + }, + "date_last_updated": { + "type": 6, + "value": 1692751123570 + }, + "date_of_expiration": { + "type": 6, + "value": 1692751123570 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40704,9 +51990,18 @@ "total_amount": 614430, "id": "1692814492618", "history_id": "1692814492618", - "date_created": { "type": 6, "value": 1692814492618 }, - "date_last_updated": { "type": 6, "value": 1692814492618 }, - "date_of_expiration": { "type": 6, "value": 1692814492618 }, + "date_created": { + "type": 6, + "value": 1692814492618 + }, + "date_last_updated": { + "type": 6, + "value": 1692814492618 + }, + "date_of_expiration": { + "type": 6, + "value": 1692814492618 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40725,7 +52020,13 @@ "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697297622264 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697297622264 + } + }, "revision": "lnt02w0901yzoohx8jrveqer", "revision_nr": 1, "created": 1697467093646, @@ -40787,16 +52088,28 @@ "total_amount": 2000, "id": "1694705622264", "history_id": "1694705622264", - "date_created": { "type": 6, "value": 1694705622264 }, - "date_last_updated": { "type": 6, "value": 1694716697493 }, + "date_created": { + "type": 6, + "value": 1694705622264 + }, + "date_last_updated": { + "type": 6, + "value": 1694716697493 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694716697493 }, - "money_release_date": { "type": 6, "value": 1694716697493 }, + "date_approved": { + "type": 6, + "value": 1694716697493 + }, + "money_release_date": { + "type": 6, + "value": 1694716697493 + }, "money_release_status": "approved", "wasDebited": true }, @@ -40850,9 +52163,18 @@ "total_amount": 2446285, "id": "1694719090426", "history_id": "1694719090426", - "date_created": { "type": 6, "value": 1694719090426 }, - "date_last_updated": { "type": 6, "value": 1694719090426 }, - "date_of_expiration": { "type": 6, "value": 1694719090426 }, + "date_created": { + "type": 6, + "value": 1694719090426 + }, + "date_last_updated": { + "type": 6, + "value": 1694719090426 + }, + "date_of_expiration": { + "type": 6, + "value": 1694719090426 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40922,9 +52244,18 @@ "total_amount": 1136670, "id": "1695328321082", "history_id": "1695328321082", - "date_created": { "type": 6, "value": 1695328321082 }, - "date_last_updated": { "type": 6, "value": 1695328321082 }, - "date_of_expiration": { "type": 6, "value": 1758486721058 }, + "date_created": { + "type": 6, + "value": 1695328321082 + }, + "date_last_updated": { + "type": 6, + "value": 1695328321082 + }, + "date_of_expiration": { + "type": 6, + "value": 1758486721058 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -40994,9 +52325,18 @@ "total_amount": 4958277, "id": "1696508927650", "history_id": "1696508927650", - "date_created": { "type": 6, "value": 1696508927650 }, - "date_last_updated": { "type": 6, "value": 1696508927650 }, - "date_of_expiration": { "type": 6, "value": 1699187327619 }, + "date_created": { + "type": 6, + "value": 1696508927650 + }, + "date_last_updated": { + "type": 6, + "value": 1696508927650 + }, + "date_of_expiration": { + "type": 6, + "value": 1699187327619 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -41012,13 +52352,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history", - "content": { "type": 1, "value": {}, "revision": "lnt02vpd01wzoohxgtbocgwp", "revision_nr": 1, "created": 1697467093737, "modified": 1697467093737 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02vpd01wzoohxgtbocgwp", + "revision_nr": 1, + "created": 1697467093737, + "modified": 1697467093737 + } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1691240400848 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1691240400848 + } + }, "revision": "lnt02w2x01zeoohx8rifgf3e", "revision_nr": 1, "created": 1697467093744, @@ -41029,7 +52384,15 @@ "path": "ivipcoin-db::__movement_wallet__/062575214502477384", "content": { "type": 1, - "value": { "dataModificacao": 1690559154331, "dateValidity": 1690559154379, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696561200000 } }, + "value": { + "dataModificacao": 1690559154331, + "dateValidity": 1690559154379, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, "revision": "lnt02vp201wwoohxdqor0kib", "revision_nr": 1, "created": 1697467093749, @@ -41040,7 +52403,11 @@ "path": "ivipcoin-db::__movement_wallet__/065013731763701400/balances/BRL", "content": { "type": 1, - "value": { "available": "150.00000000", "symbol": "BRL", "value": 30.33 }, + "value": { + "available": "150.00000000", + "symbol": "BRL", + "value": 30.33 + }, "revision": "lnt02w3901zhoohxcmwb9r5c", "revision_nr": 1, "created": 1697467093755, @@ -41049,7 +52416,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02w3901zgoohxewf6ewc4", "revision_nr": 1, "created": 1697467093760, "modified": 1697467093760 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02w3901zgoohxewf6ewc4", + "revision_nr": 1, + "created": 1697467093760, + "modified": 1697467093760 + } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357/description", @@ -41064,7 +52438,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02w3p01zloohx31xyd2uq", "revision_nr": 1, "created": 1697467093773, "modified": 1697467093773 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02w3p01zloohx31xyd2uq", + "revision_nr": 1, + "created": 1697467093773, + "modified": 1697467093773 + } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357", @@ -41078,15 +52461,30 @@ "total_amount": 150, "history_id": 1689114820357, "id": 1689114820357, - "date_created": { "type": 6, "value": 1689114820357 }, - "date_last_updated": { "type": 6, "value": 1689691551563 }, - "date_of_expiration": { "type": 6, "value": 1691706820357 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689691551563 }, - "money_release_date": { "type": 6, "value": 1689691551563 }, + "date_created": { + "type": 6, + "value": 1689114820357 + }, + "date_last_updated": { + "type": 6, + "value": 1689691551563 + }, + "date_of_expiration": { + "type": 6, + "value": 1691706820357 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689691551563 + }, + "money_release_date": { + "type": 6, + "value": 1689691551563 + }, "money_release_status": "approved", "wasDebited": true }, @@ -41098,13 +52496,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history", - "content": { "type": 1, "value": {}, "revision": "lnt02w3k01zioohx29r35s3o", "revision_nr": 1, "created": 1697467093784, "modified": 1697467093784 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02w3k01zioohx29r35s3o", + "revision_nr": 1, + "created": 1697467093784, + "modified": 1697467093784 + } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02w4801zmoohx0cqt2kvp", "revision_nr": 1, "created": 1697467093790, @@ -41115,7 +52524,16 @@ "path": "ivipcoin-db::__movement_wallet__/065013731763701400", "content": { "type": 1, - "value": { "dataModificacao": 1689114736496, "dateValidity": 1689114736496, "totalValue": 30.93, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1691895600000 } }, + "value": { + "dataModificacao": 1689114736496, + "dateValidity": 1689114736496, + "totalValue": 30.93, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1691895600000 + } + }, "revision": "lnt02w3901zfoohx5wcpgmol", "revision_nr": 1, "created": 1697467093795, @@ -41170,7 +52588,11 @@ "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.198 + }, "revision": "lnt02w5501zwoohxgmbl6twv", "revision_nr": 1, "created": 1697467093822, @@ -41179,21 +52601,52 @@ }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02w5501zvoohxd6qahewy", "revision_nr": 1, "created": 1697467093828, "modified": 1697467093828 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02w5501zvoohxd6qahewy", + "revision_nr": 1, + "created": 1697467093828, + "modified": 1697467093828 + } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info/collector", - "content": { "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, "revision": "lnt02w5g01zyoohxc593cbnf", "revision_nr": 1, "created": 1697467093833, "modified": 1697467093833 } + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt02w5g01zyoohxc593cbnf", + "revision_nr": 1, + "created": 1697467093833, + "modified": 1697467093833 + } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02w5g01zxoohxg14w33m0", "revision_nr": 1, "created": 1697467093840, "modified": 1697467093840 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02w5g01zxoohxg14w33m0", + "revision_nr": 1, + "created": 1697467093840, + "modified": 1697467093840 + } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 20.2, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02w4p01zroohxa6e46rsp", "revision_nr": 1, "created": 1697467093845, @@ -41212,9 +52665,18 @@ "total_amount": 20.2, "history_id": 1679067982009, "id": 55838238501, - "date_created": { "type": 6, "value": 1679067982887 }, - "date_last_updated": { "type": 6, "value": 1679154643000 }, - "date_of_expiration": { "type": 6, "value": 1679154382597 }, + "date_created": { + "type": 6, + "value": 1679067982887 + }, + "date_last_updated": { + "type": 6, + "value": 1679154643000 + }, + "date_of_expiration": { + "type": 6, + "value": 1679154382597 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", @@ -41229,13 +52691,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history", - "content": { "type": 1, "value": {}, "revision": "lnt02w4j01zooohx4cga6s01", "revision_nr": 1, "created": 1697467093860, "modified": 1697467093860 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02w4j01zooohx4cga6s01", + "revision_nr": 1, + "created": 1697467093860, + "modified": 1697467093860 + } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02w6c01zzoohxgdsqd5bl", "revision_nr": 1, "created": 1697467093865, @@ -41246,7 +52719,13 @@ "path": "ivipcoin-db::__movement_wallet__/066749403784981840", "content": { "type": 1, - "value": { "dataModificacao": 1679067783161, "dateValidity": 1679067783161, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1679067783161, + "dateValidity": 1679067783161, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02w4j01znoohx9b2yghyv", "revision_nr": 1, "created": 1697467093870, @@ -41257,7 +52736,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances/BRL", "content": { "type": 1, - "value": { "available": "20.00000000", "symbol": "BRL", "value": 3.86 }, + "value": { + "available": "20.00000000", + "symbol": "BRL", + "value": 3.86 + }, "revision": "lnt02w6n0202oohxbw6lc2tz", "revision_nr": 1, "created": 1697467093876, @@ -41268,7 +52751,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances/IVIP", "content": { "type": 1, - "value": { "available": "12224831.00000000", "symbol": "IVIP", "value": 1888.088 }, + "value": { + "available": "12224831.00000000", + "symbol": "IVIP", + "value": 1888.088 + }, "revision": "lnt02w6s0203oohx4qztg68h", "revision_nr": 1, "created": 1697467093881, @@ -41277,7 +52764,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02w6n0201oohx69k7dt67", "revision_nr": 1, "created": 1697467093887, "modified": 1697467093887 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02w6n0201oohx69k7dt67", + "revision_nr": 1, + "created": 1697467093887, + "modified": 1697467093887 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832/description", @@ -41292,7 +52786,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02w790207oohxatol22jp", "revision_nr": 1, "created": 1697467093898, "modified": 1697467093898 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02w790207oohxatol22jp", + "revision_nr": 1, + "created": 1697467093898, + "modified": 1697467093898 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832", @@ -41306,15 +52809,30 @@ "total_amount": 1600, "history_id": 1684181007832, "id": 1684181007832, - "date_created": { "type": 6, "value": 1684181007832 }, - "date_last_updated": { "type": 6, "value": 1684185342475 }, - "date_of_expiration": { "type": 6, "value": 1686773007832 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684185342475 }, - "money_release_date": { "type": 6, "value": 1684185342475 }, + "date_created": { + "type": 6, + "value": 1684181007832 + }, + "date_last_updated": { + "type": 6, + "value": 1684185342475 + }, + "date_of_expiration": { + "type": 6, + "value": 1686773007832 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684185342475 + }, + "money_release_date": { + "type": 6, + "value": 1684185342475 + }, "money_release_status": "approved", "wasDebited": true }, @@ -41339,7 +52857,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, "revision": "lnt02w7q020coohx3y435o1v", "revision_nr": 1, "created": 1697467093916, @@ -41348,11 +52870,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02w7q020boohx3divdgi3", "revision_nr": 1, "created": 1697467093922, "modified": 1697467093922 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02w7q020boohx3divdgi3", + "revision_nr": 1, + "created": 1697467093922, + "modified": 1697467093922 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details", - "content": { "type": 1, "value": {}, "revision": "lnt02w7q020aoohxchov4931", "revision_nr": 1, "created": 1697467093928, "modified": 1697467093928 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02w7q020aoohxchov4931", + "revision_nr": 1, + "created": 1697467093928, + "modified": 1697467093928 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168", @@ -41366,9 +52902,18 @@ "total_amount": 1810.08, "history_id": 1684623306168, "id": 1684623306168, - "date_created": { "type": 6, "value": 1684623306168 }, - "date_last_updated": { "type": 6, "value": 1684623306168 }, - "date_of_expiration": { "type": 6, "value": 1687215306168 }, + "date_created": { + "type": 6, + "value": 1684623306168 + }, + "date_last_updated": { + "type": 6, + "value": 1684623306168 + }, + "date_of_expiration": { + "type": 6, + "value": 1687215306168 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -41417,9 +52962,18 @@ "original_amount": 15956517, "total_amount": 15956517, "id": 1684624428265, - "date_created": { "type": 6, "value": 1684624428265 }, - "date_last_updated": { "type": 6, "value": 1684624428265 }, - "date_of_expiration": { "type": 6, "value": 1684624428265 }, + "date_created": { + "type": 6, + "value": 1684624428265 + }, + "date_last_updated": { + "type": 6, + "value": 1684624428265 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624428265 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -41449,7 +53003,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, "revision": "lnt02w8w020joohxcman8jhb", "revision_nr": 1, "created": 1697467093958, @@ -41458,11 +53016,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02w8w020ioohx79fb72p4", "revision_nr": 1, "created": 1697467093963, "modified": 1697467093963 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02w8w020ioohx79fb72p4", + "revision_nr": 1, + "created": 1697467093963, + "modified": 1697467093963 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details", - "content": { "type": 1, "value": {}, "revision": "lnt02w8w020hoohx5kf4gvr0", "revision_nr": 1, "created": 1697467093968, "modified": 1697467093968 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02w8w020hoohx5kf4gvr0", + "revision_nr": 1, + "created": 1697467093968, + "modified": 1697467093968 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509", @@ -41476,9 +53048,18 @@ "total_amount": 1429.92, "history_id": 1684624857509, "id": 1684624857509, - "date_created": { "type": 6, "value": 1684624857509 }, - "date_last_updated": { "type": 6, "value": 1684624857509 }, - "date_of_expiration": { "type": 6, "value": 1687216857509 }, + "date_created": { + "type": 6, + "value": 1684624857509 + }, + "date_last_updated": { + "type": 6, + "value": 1684624857509 + }, + "date_of_expiration": { + "type": 6, + "value": 1687216857509 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -41527,9 +53108,18 @@ "original_amount": 6448848, "total_amount": 6448848, "id": 1684624906138, - "date_created": { "type": 6, "value": 1684624906138 }, - "date_last_updated": { "type": 6, "value": 1684624906138 }, - "date_of_expiration": { "type": 6, "value": 1684624906138 }, + "date_created": { + "type": 6, + "value": 1684624906138 + }, + "date_last_updated": { + "type": 6, + "value": 1684624906138 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624906138 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -41557,7 +53147,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wa1020ooohx06n3fr19", "revision_nr": 1, "created": 1697467093998, "modified": 1697467093998 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wa1020ooohx06n3fr19", + "revision_nr": 1, + "created": 1697467093998, + "modified": 1697467093998 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217", @@ -41571,15 +53170,30 @@ "total_amount": 1000, "history_id": 1687293918217, "id": 1687293918217, - "date_created": { "type": 6, "value": 1687293918217 }, - "date_last_updated": { "type": 6, "value": 1687293955023 }, - "date_of_expiration": { "type": 6, "value": 1689885918217 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1687293955023 }, - "money_release_date": { "type": 6, "value": 1687293955023 }, + "date_created": { + "type": 6, + "value": 1687293918217 + }, + "date_last_updated": { + "type": 6, + "value": 1687293955023 + }, + "date_of_expiration": { + "type": 6, + "value": 1689885918217 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1687293955023 + }, + "money_release_date": { + "type": 6, + "value": 1687293955023 + }, "money_release_status": "approved", "wasDebited": true }, @@ -41639,9 +53253,18 @@ "total_amount": 452.52, "id": 1687294024615, "contract_id": "1684623306168", - "date_created": { "type": 6, "value": 1687294024615 }, - "date_last_updated": { "type": 6, "value": 1687294024615 }, - "date_of_expiration": { "type": 6, "value": 1687294024615 }, + "date_created": { + "type": 6, + "value": 1687294024615 + }, + "date_last_updated": { + "type": 6, + "value": 1687294024615 + }, + "date_of_expiration": { + "type": 6, + "value": 1687294024615 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -41705,9 +53328,18 @@ "total_amount": 357.48, "id": 1687294024774, "contract_id": "1684624857509", - "date_created": { "type": 6, "value": 1687294024774 }, - "date_last_updated": { "type": 6, "value": 1687294024774 }, - "date_of_expiration": { "type": 6, "value": 1687294024774 }, + "date_created": { + "type": 6, + "value": 1687294024774 + }, + "date_last_updated": { + "type": 6, + "value": 1687294024774 + }, + "date_of_expiration": { + "type": 6, + "value": 1687294024774 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -41767,9 +53399,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1688524692305, - "date_created": { "type": 6, "value": 1688524692305 }, - "date_last_updated": { "type": 6, "value": 1688524692305 }, - "date_of_expiration": { "type": 6, "value": 1691203092305 }, + "date_created": { + "type": 6, + "value": 1688524692305 + }, + "date_last_updated": { + "type": 6, + "value": 1688524692305 + }, + "date_of_expiration": { + "type": 6, + "value": 1691203092305 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -41819,9 +53460,18 @@ "original_amount": 155466, "total_amount": 155466, "id": 1688525524308, - "date_created": { "type": 6, "value": 1688525524308 }, - "date_last_updated": { "type": 6, "value": 1688525524308 }, - "date_of_expiration": { "type": 6, "value": 1688525524308 }, + "date_created": { + "type": 6, + "value": 1688525524308 + }, + "date_last_updated": { + "type": 6, + "value": 1688525524308 + }, + "date_of_expiration": { + "type": 6, + "value": 1688525524308 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -41849,7 +53499,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wca0212oohx01v4g7sg", "revision_nr": 1, "created": 1697467094079, "modified": 1697467094079 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wca0212oohx01v4g7sg", + "revision_nr": 1, + "created": 1697467094079, + "modified": 1697467094079 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298", @@ -41863,15 +53522,30 @@ "total_amount": 2500000, "history_id": 1689182003298, "id": 1689182003298, - "date_created": { "type": 6, "value": 1689182003298 }, - "date_last_updated": { "type": 6, "value": 1689256552452 }, - "date_of_expiration": { "type": 6, "value": 1689182003298 }, + "date_created": { + "type": 6, + "value": 1689182003298 + }, + "date_last_updated": { + "type": 6, + "value": 1689256552452 + }, + "date_of_expiration": { + "type": 6, + "value": 1689182003298 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1689256552452 }, - "money_release_date": { "type": 6, "value": 1689256552452 }, + "date_approved": { + "type": 6, + "value": 1689256552452 + }, + "money_release_date": { + "type": 6, + "value": 1689256552452 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -41894,7 +53568,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wcs0215oohx34txho7d", "revision_nr": 1, "created": 1697467094098, "modified": 1697467094098 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wcs0215oohx34txho7d", + "revision_nr": 1, + "created": 1697467094098, + "modified": 1697467094098 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308", @@ -41908,15 +53591,30 @@ "total_amount": 800, "history_id": 1689689388308, "id": 1689689388308, - "date_created": { "type": 6, "value": 1689689388308 }, - "date_last_updated": { "type": 6, "value": 1689690587708 }, - "date_of_expiration": { "type": 6, "value": 1692281388308 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689690587708 }, - "money_release_date": { "type": 6, "value": 1689690587708 }, + "date_created": { + "type": 6, + "value": 1689689388308 + }, + "date_last_updated": { + "type": 6, + "value": 1689690587708 + }, + "date_of_expiration": { + "type": 6, + "value": 1692281388308 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689690587708 + }, + "money_release_date": { + "type": 6, + "value": 1689690587708 + }, "money_release_status": "approved", "wasDebited": true }, @@ -41976,9 +53674,18 @@ "total_amount": 452.52, "id": 1689690928096, "contract_id": "1684623306168", - "date_created": { "type": 6, "value": 1689690928096 }, - "date_last_updated": { "type": 6, "value": 1689690928096 }, - "date_of_expiration": { "type": 6, "value": 1689690928096 }, + "date_created": { + "type": 6, + "value": 1689690928096 + }, + "date_last_updated": { + "type": 6, + "value": 1689690928096 + }, + "date_of_expiration": { + "type": 6, + "value": 1689690928096 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -42042,9 +53749,18 @@ "total_amount": 357.48, "id": 1689690928337, "contract_id": "1684624857509", - "date_created": { "type": 6, "value": 1689690928337 }, - "date_last_updated": { "type": 6, "value": 1689690928337 }, - "date_of_expiration": { "type": 6, "value": 1689690928337 }, + "date_created": { + "type": 6, + "value": 1689690928337 + }, + "date_last_updated": { + "type": 6, + "value": 1689690928337 + }, + "date_of_expiration": { + "type": 6, + "value": 1689690928337 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -42113,9 +53829,18 @@ "total_amount": 8160000, "id": 1691203130486, "history_id": 1691203130486, - "date_created": { "type": 6, "value": 1691203130486 }, - "date_last_updated": { "type": 6, "value": 1691203130486 }, - "date_of_expiration": { "type": 6, "value": 1691203130486 }, + "date_created": { + "type": 6, + "value": 1691203130486 + }, + "date_last_updated": { + "type": 6, + "value": 1691203130486 + }, + "date_of_expiration": { + "type": 6, + "value": 1691203130486 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -42184,9 +53909,18 @@ "total_amount": 200000, "id": 1691556958476, "history_id": 1691556958476, - "date_created": { "type": 6, "value": 1691556958476 }, - "date_last_updated": { "type": 6, "value": 1691556958476 }, - "date_of_expiration": { "type": 6, "value": 1694235358473 }, + "date_created": { + "type": 6, + "value": 1691556958476 + }, + "date_last_updated": { + "type": 6, + "value": 1691556958476 + }, + "date_of_expiration": { + "type": 6, + "value": 1694235358473 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -42255,9 +53989,18 @@ "total_amount": 30, "id": 1691557017053, "history_id": 1691557017053, - "date_created": { "type": 6, "value": 1691557017053 }, - "date_last_updated": { "type": 6, "value": 1691557017053 }, - "date_of_expiration": { "type": 6, "value": 1717909017027 }, + "date_created": { + "type": 6, + "value": 1691557017053 + }, + "date_last_updated": { + "type": 6, + "value": 1691557017053 + }, + "date_of_expiration": { + "type": 6, + "value": 1717909017027 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -42275,7 +54018,13 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694808463023 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694808463023 + } + }, "revision": "lnt02wg4021poohxb2c83n4c", "revision_nr": 1, "created": 1697467094217, @@ -42337,16 +54086,28 @@ "total_amount": 720, "id": 1692216463023, "history_id": 1692216463023, - "date_created": { "type": 6, "value": 1692216463023 }, - "date_last_updated": { "type": 6, "value": 1692217576651 }, + "date_created": { + "type": 6, + "value": 1692216463023 + }, + "date_last_updated": { + "type": 6, + "value": 1692217576651 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1692217576651 }, - "money_release_date": { "type": 6, "value": 1692217576651 }, + "date_approved": { + "type": 6, + "value": 1692217576651 + }, + "money_release_date": { + "type": 6, + "value": 1692217576651 + }, "money_release_status": "approved", "wasDebited": true }, @@ -42406,9 +54167,18 @@ "total_amount": 452.52, "id": 1692296799894, "contract_id": "1684623306168", - "date_created": { "type": 6, "value": 1692296799894 }, - "date_last_updated": { "type": 6, "value": 1692296799894 }, - "date_of_expiration": { "type": 6, "value": 1692296799894 }, + "date_created": { + "type": 6, + "value": 1692296799894 + }, + "date_last_updated": { + "type": 6, + "value": 1692296799894 + }, + "date_of_expiration": { + "type": 6, + "value": 1692296799894 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -42472,9 +54242,18 @@ "total_amount": 357.48, "id": 1692296800012, "contract_id": "1684624857509", - "date_created": { "type": 6, "value": 1692296800012 }, - "date_last_updated": { "type": 6, "value": 1692296800012 }, - "date_of_expiration": { "type": 6, "value": 1692296800012 }, + "date_created": { + "type": 6, + "value": 1692296800012 + }, + "date_last_updated": { + "type": 6, + "value": 1692296800012 + }, + "date_of_expiration": { + "type": 6, + "value": 1692296800012 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -42543,9 +54322,18 @@ "total_amount": 204000, "id": "1694237371329", "history_id": "1694237371329", - "date_created": { "type": 6, "value": 1694237371329 }, - "date_last_updated": { "type": 6, "value": 1694237371329 }, - "date_of_expiration": { "type": 6, "value": 1694237371329 }, + "date_created": { + "type": 6, + "value": 1694237371329 + }, + "date_last_updated": { + "type": 6, + "value": 1694237371329 + }, + "date_of_expiration": { + "type": 6, + "value": 1694237371329 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -42614,16 +54402,28 @@ "total_amount": 1030591, "id": "1694237443497", "history_id": "1694237443497", - "date_created": { "type": 6, "value": 1694237443497 }, - "date_last_updated": { "type": 6, "value": 1696462319577 }, - "date_of_expiration": { "type": 6, "value": 1696829443496 }, + "date_created": { + "type": 6, + "value": 1694237443497 + }, + "date_last_updated": { + "type": 6, + "value": 1696462319577 + }, + "date_of_expiration": { + "type": 6, + "value": 1696829443496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1696462319577 }, + "money_release_date": { + "type": 6, + "value": 1696462319577 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -42637,7 +54437,13 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697304530286 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697304530286 + } + }, "revision": "lnt02wj90228oohx4nf877y3", "revision_nr": 1, "created": 1697467094331, @@ -42699,16 +54505,28 @@ "total_amount": 820, "id": "1694712530286", "history_id": "1694712530286", - "date_created": { "type": 6, "value": 1694712530286 }, - "date_last_updated": { "type": 6, "value": 1694717255639 }, + "date_created": { + "type": 6, + "value": 1694712530286 + }, + "date_last_updated": { + "type": 6, + "value": 1694717255639 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694717255639 }, - "money_release_date": { "type": 6, "value": 1694717255639 }, + "date_approved": { + "type": 6, + "value": 1694717255639 + }, + "money_release_date": { + "type": 6, + "value": 1694717255639 + }, "money_release_status": "approved", "wasDebited": true }, @@ -42775,9 +54593,18 @@ "total_amount": 452.52, "id": "1694723447405", "history_id": "1694723447405", - "date_created": { "type": 6, "value": 1694723447405 }, - "date_last_updated": { "type": 6, "value": 1694723447405 }, - "date_of_expiration": { "type": 6, "value": 1694723447405 }, + "date_created": { + "type": 6, + "value": 1694723447405 + }, + "date_last_updated": { + "type": 6, + "value": 1694723447405 + }, + "date_of_expiration": { + "type": 6, + "value": 1694723447405 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -42848,9 +54675,18 @@ "total_amount": 357.48, "id": "1694723447463", "history_id": "1694723447463", - "date_created": { "type": 6, "value": 1694723447463 }, - "date_last_updated": { "type": 6, "value": 1694723447463 }, - "date_of_expiration": { "type": 6, "value": 1694723447463 }, + "date_created": { + "type": 6, + "value": 1694723447463 + }, + "date_last_updated": { + "type": 6, + "value": 1694723447463 + }, + "date_of_expiration": { + "type": 6, + "value": 1694723447463 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -42920,9 +54756,18 @@ "total_amount": 8000000, "id": "1696464489805", "history_id": "1696464489805", - "date_created": { "type": 6, "value": 1696464489805 }, - "date_last_updated": { "type": 6, "value": 1696464489805 }, - "date_of_expiration": { "type": 6, "value": 1699142889771 }, + "date_created": { + "type": 6, + "value": 1696464489805 + }, + "date_last_updated": { + "type": 6, + "value": 1696464489805 + }, + "date_of_expiration": { + "type": 6, + "value": 1699142889771 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -42938,7 +54783,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history", - "content": { "type": 1, "value": {}, "revision": "lnt02w730204oohx35gcfx51", "revision_nr": 1, "created": 1697467094431, "modified": 1697467094431 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02w730204oohx35gcfx51", + "revision_nr": 1, + "created": 1697467094431, + "modified": 1697467094431 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/description", @@ -42955,7 +54807,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, "revision": "lnt02wme022uoohxhevm8ixx", "revision_nr": 1, "created": 1697467094444, @@ -42964,7 +54820,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02wme022toohx4tlt9s3m", "revision_nr": 1, "created": 1697467094449, "modified": 1697467094449 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02wme022toohx4tlt9s3m", + "revision_nr": 1, + "created": 1697467094449, + "modified": 1697467094449 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168", @@ -42977,7 +54840,10 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": { "type": 6, "value": 1684623306168 }, + "date_created": { + "type": 6, + "value": 1684623306168 + }, "history_id": 1684623306168, "currency_id": "BRL", "status": "paid" @@ -43003,7 +54869,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, "revision": "lnt02wn0022yoohxgqbgaiur", "revision_nr": 1, "created": 1697467094466, @@ -43012,7 +54882,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02wn0022xoohxcjlj26hz", "revision_nr": 1, "created": 1697467094471, "modified": 1697467094471 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02wn0022xoohxcjlj26hz", + "revision_nr": 1, + "created": 1697467094471, + "modified": 1697467094471 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509", @@ -43025,7 +54902,10 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": { "type": 6, "value": 1684624857509 }, + "date_created": { + "type": 6, + "value": 1684624857509 + }, "history_id": 1684624857509, "currency_id": "BRL", "status": "paid" @@ -43038,7 +54918,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt02wm8022qoohxc3vva1vb", "revision_nr": 1, "created": 1697467094483, "modified": 1697467094483 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wm8022qoohxc3vva1vb", + "revision_nr": 1, + "created": 1697467094483, + "modified": 1697467094483 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/description", @@ -43055,7 +54942,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, "revision": "lnt02wnu0233oohx8ujcfa0s", "revision_nr": 1, "created": 1697467094496, @@ -43064,7 +54955,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02wnu0232oohx7gy7e29t", "revision_nr": 1, "created": 1697467094502, "modified": 1697467094502 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02wnu0232oohx7gy7e29t", + "revision_nr": 1, + "created": 1697467094502, + "modified": 1697467094502 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168", @@ -43077,7 +54975,10 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": { "type": 6, "value": 1684623306168 }, + "date_created": { + "type": 6, + "value": 1684623306168 + }, "history_id": 1684623306168, "currency_id": "BRL", "status": "paid" @@ -43103,7 +55004,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, "revision": "lnt02woh0237oohx02y95yjj", "revision_nr": 1, "created": 1697467094519, @@ -43112,7 +55017,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02woh0236oohx6pq59wdw", "revision_nr": 1, "created": 1697467094526, "modified": 1697467094526 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02woh0236oohx6pq59wdw", + "revision_nr": 1, + "created": 1697467094526, + "modified": 1697467094526 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509", @@ -43125,7 +55037,10 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": { "type": 6, "value": 1684624857509 }, + "date_created": { + "type": 6, + "value": 1684624857509 + }, "history_id": 1684624857509, "currency_id": "BRL", "status": "paid" @@ -43138,7 +55053,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt02wnn022zoohxdba5herq", "revision_nr": 1, "created": 1697467094538, "modified": 1697467094538 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wnn022zoohxdba5herq", + "revision_nr": 1, + "created": 1697467094538, + "modified": 1697467094538 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/description", @@ -43155,7 +55077,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, "revision": "lnt02wpc023coohxd6z65sc0", "revision_nr": 1, "created": 1697467094549, @@ -43164,7 +55090,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02wpc023boohx5i757pyd", "revision_nr": 1, "created": 1697467094556, "modified": 1697467094556 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02wpc023boohx5i757pyd", + "revision_nr": 1, + "created": 1697467094556, + "modified": 1697467094556 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168", @@ -43177,7 +55110,10 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": { "type": 6, "value": 1684623306168 }, + "date_created": { + "type": 6, + "value": 1684623306168 + }, "history_id": 1684623306168, "currency_id": "BRL", "status": "paid" @@ -43203,7 +55139,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, "revision": "lnt02wpz023goohx37jw6c94", "revision_nr": 1, "created": 1697467094572, @@ -43212,7 +55152,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02wpz023foohx5dsudunv", "revision_nr": 1, "created": 1697467094578, "modified": 1697467094578 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02wpz023foohx5dsudunv", + "revision_nr": 1, + "created": 1697467094578, + "modified": 1697467094578 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509", @@ -43225,7 +55172,10 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": { "type": 6, "value": 1684624857509 }, + "date_created": { + "type": 6, + "value": 1684624857509 + }, "history_id": 1684624857509, "currency_id": "BRL", "status": "paid" @@ -43238,7 +55188,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt02wp60238oohx8h517kvp", "revision_nr": 1, "created": 1697467094591, "modified": 1697467094591 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wp60238oohx8h517kvp", + "revision_nr": 1, + "created": 1697467094591, + "modified": 1697467094591 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/description", @@ -43255,7 +55212,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 134.08 + }, "revision": "lnt02wqt023loohx7hhwfaaw", "revision_nr": 1, "created": 1697467094603, @@ -43264,7 +55225,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02wqt023koohxcia28fb0", "revision_nr": 1, "created": 1697467094610, "modified": 1697467094610 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02wqt023koohxcia28fb0", + "revision_nr": 1, + "created": 1697467094610, + "modified": 1697467094610 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168", @@ -43277,11 +55245,17 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": { "type": 6, "value": 1684623306168 }, + "date_created": { + "type": 6, + "value": 1684623306168 + }, "history_id": 1684623306168, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694723447423 } + "date_last_updated": { + "type": 6, + "value": 1694723447423 + } }, "revision": "lnt02wqn023ioohx44j7di3w", "revision_nr": 1, @@ -43304,7 +55278,11 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 105.92 + }, "revision": "lnt02wri023poohx7m3a9bkv", "revision_nr": 1, "created": 1697467094627, @@ -43313,7 +55291,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02wri023ooohxdz416n0d", "revision_nr": 1, "created": 1697467094633, "modified": 1697467094633 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02wri023ooohxdz416n0d", + "revision_nr": 1, + "created": 1697467094633, + "modified": 1697467094633 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509", @@ -43326,11 +55311,17 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": { "type": 6, "value": 1684624857509 }, + "date_created": { + "type": 6, + "value": 1684624857509 + }, "history_id": 1684624857509, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694723447480 } + "date_last_updated": { + "type": 6, + "value": 1694723447480 + } }, "revision": "lnt02wrc023moohx5awbci3j", "revision_nr": 1, @@ -43340,17 +55331,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt02wqn023hoohxd6jvcjaj", "revision_nr": 1, "created": 1697467094644, "modified": 1697467094644 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wqn023hoohxd6jvcjaj", + "revision_nr": 1, + "created": 1697467094644, + "modified": 1697467094644 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt02wm8022poohxg1y623mu", "revision_nr": 1, "created": 1697467094650, "modified": 1697467094650 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wm8022poohxg1y623mu", + "revision_nr": 1, + "created": 1697467094650, + "modified": 1697467094650 + } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit", "content": { "type": 1, - "value": { "approvedLimit": 3000, "limitUsed": 750, "analysisRequested": { "type": 6, "value": 1684185845062 }, "lastReview": { "type": 6, "value": 1684186352172 } }, + "value": { + "approvedLimit": 3000, + "limitUsed": 750, + "analysisRequested": { + "type": 6, + "value": 1684185845062 + }, + "lastReview": { + "type": 6, + "value": 1684186352172 + } + }, "revision": "lnt02wm7022ooohx4km2cy2x", "revision_nr": 1, "created": 1697467094656, @@ -43361,7 +55377,16 @@ "path": "ivipcoin-db::__movement_wallet__/072156872012598910", "content": { "type": 1, - "value": { "dataModificacao": 1684180740501, "dateValidity": 1684180740501, "totalValue": 6472.835, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696561200000 } }, + "value": { + "dataModificacao": 1684180740501, + "dateValidity": 1684180740501, + "totalValue": 6472.835, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, "revision": "lnt02w6n0200oohx0u975e6s", "revision_nr": 1, "created": 1697467094662, @@ -43372,7 +55397,14 @@ "path": "ivipcoin-db::__movement_wallet__/072270616449276800", "content": { "type": 1, - "value": { "dataModificacao": 1683670601575, "dateValidity": 1683670601575, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1683670601575, + "dateValidity": 1683670601575, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02wsm023qoohx3uw46syo", "revision_nr": 1, "created": 1697467094669, @@ -43383,7 +55415,11 @@ "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt02wst023toohxdqosddfu", "revision_nr": 1, "created": 1697467094676, @@ -43394,7 +55430,11 @@ "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances/IVIP", "content": { "type": 1, - "value": { "available": "44999.00000000", "symbol": "IVIP", "value": 15.26 }, + "value": { + "available": "44999.00000000", + "symbol": "IVIP", + "value": 15.26 + }, "revision": "lnt02wt0023uoohxb1v8dlsp", "revision_nr": 1, "created": 1697467094681, @@ -43403,7 +55443,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02wst023soohx8ruk3dkq", "revision_nr": 1, "created": 1697467094687, "modified": 1697467094687 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wst023soohx8ruk3dkq", + "revision_nr": 1, + "created": 1697467094687, + "modified": 1697467094687 + } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664/description", @@ -43418,7 +55465,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wth023yoohx04d3bekc", "revision_nr": 1, "created": 1697467094700, "modified": 1697467094700 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wth023yoohx04d3bekc", + "revision_nr": 1, + "created": 1697467094700, + "modified": 1697467094700 + } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664", @@ -43432,15 +55488,30 @@ "total_amount": 50, "history_id": 1689017003664, "id": 1689017003664, - "date_created": { "type": 6, "value": 1689017003664 }, - "date_last_updated": { "type": 6, "value": 1689025727768 }, - "date_of_expiration": { "type": 6, "value": 1691609003664 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689025727768 }, - "money_release_date": { "type": 6, "value": 1689025727768 }, + "date_created": { + "type": 6, + "value": 1689017003664 + }, + "date_last_updated": { + "type": 6, + "value": 1689025727768 + }, + "date_of_expiration": { + "type": 6, + "value": 1691609003664 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689025727768 + }, + "money_release_date": { + "type": 6, + "value": 1689025727768 + }, "money_release_status": "approved", "wasDebited": true }, @@ -43486,9 +55557,18 @@ "original_amount": 44999, "total_amount": 44999, "id": 1689029121257, - "date_created": { "type": 6, "value": 1689029121257 }, - "date_last_updated": { "type": 6, "value": 1689029121257 }, - "date_of_expiration": { "type": 6, "value": 1689029121257 }, + "date_created": { + "type": 6, + "value": 1689029121257 + }, + "date_last_updated": { + "type": 6, + "value": 1689029121257 + }, + "date_of_expiration": { + "type": 6, + "value": 1689029121257 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -43505,13 +55585,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history", - "content": { "type": 1, "value": {}, "revision": "lnt02wtb023voohxdmzyhik3", "revision_nr": 1, "created": 1697467094726, "modified": 1697467094726 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wtb023voohxdmzyhik3", + "revision_nr": 1, + "created": 1697467094726, + "modified": 1697467094726 + } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02wue0241oohx2g5ifhut", "revision_nr": 1, "created": 1697467094732, @@ -43522,7 +55613,13 @@ "path": "ivipcoin-db::__movement_wallet__/072316538247009010", "content": { "type": 1, - "value": { "dataModificacao": 1689016980183, "dateValidity": 1689016980183, "totalValue": 10.2, "currencyType": "USD", "balancesModificacao": 1689822000000 }, + "value": { + "dataModificacao": 1689016980183, + "dateValidity": 1689016980183, + "totalValue": 10.2, + "currencyType": "USD", + "balancesModificacao": 1689822000000 + }, "revision": "lnt02wst023roohx0wm73nyn", "revision_nr": 1, "created": 1697467094738, @@ -43533,7 +55630,11 @@ "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt02wuq0244oohx2ksz14gn", "revision_nr": 1, "created": 1697467094744, @@ -43544,7 +55645,11 @@ "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances/IVIP", "content": { "type": 1, - "value": { "available": "88319.00000000", "symbol": "IVIP", "value": 24.34 }, + "value": { + "available": "88319.00000000", + "symbol": "IVIP", + "value": 24.34 + }, "revision": "lnt02wuw0245oohx3v3lga6r", "revision_nr": 1, "created": 1697467094750, @@ -43553,7 +55658,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02wuq0243oohxclj4h6wb", "revision_nr": 1, "created": 1697467094757, "modified": 1697467094757 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wuq0243oohxclj4h6wb", + "revision_nr": 1, + "created": 1697467094757, + "modified": 1697467094757 + } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656/description", @@ -43568,7 +55680,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wvg0249oohx9bw28rqu", "revision_nr": 1, "created": 1697467094771, "modified": 1697467094771 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wvg0249oohx9bw28rqu", + "revision_nr": 1, + "created": 1697467094771, + "modified": 1697467094771 + } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656", @@ -43582,15 +55703,30 @@ "total_amount": 100, "history_id": 1684153197656, "id": 1684153197656, - "date_created": { "type": 6, "value": 1684153197656 }, - "date_last_updated": { "type": 6, "value": 1684153475791 }, - "date_of_expiration": { "type": 6, "value": 1686745197656 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684153475791 }, - "money_release_date": { "type": 6, "value": 1684153475791 }, + "date_created": { + "type": 6, + "value": 1684153197656 + }, + "date_last_updated": { + "type": 6, + "value": 1684153475791 + }, + "date_of_expiration": { + "type": 6, + "value": 1686745197656 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684153475791 + }, + "money_release_date": { + "type": 6, + "value": 1684153475791 + }, "money_release_status": "approved", "wasDebited": true }, @@ -43636,9 +55772,18 @@ "original_amount": 488292, "total_amount": 488292, "id": 1684634671417, - "date_created": { "type": 6, "value": 1684634671417 }, - "date_last_updated": { "type": 6, "value": 1684634671417 }, - "date_of_expiration": { "type": 6, "value": 1684634671417 }, + "date_created": { + "type": 6, + "value": 1684634671417 + }, + "date_last_updated": { + "type": 6, + "value": 1684634671417 + }, + "date_of_expiration": { + "type": 6, + "value": 1684634671417 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -43666,7 +55811,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wwe024eoohxbmeu4gz8", "revision_nr": 1, "created": 1697467094806, "modified": 1697467094806 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wwe024eoohxbmeu4gz8", + "revision_nr": 1, + "created": 1697467094806, + "modified": 1697467094806 + } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970", @@ -43680,15 +55834,30 @@ "total_amount": 120, "history_id": 1685124719970, "id": 1685124719970, - "date_created": { "type": 6, "value": 1685124719970 }, - "date_last_updated": { "type": 6, "value": 1685364677545 }, - "date_of_expiration": { "type": 6, "value": 1687716719970 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685364677545 }, - "money_release_date": { "type": 6, "value": 1685364677545 }, + "date_created": { + "type": 6, + "value": 1685124719970 + }, + "date_last_updated": { + "type": 6, + "value": 1685364677545 + }, + "date_of_expiration": { + "type": 6, + "value": 1687716719970 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685364677545 + }, + "money_release_date": { + "type": 6, + "value": 1685364677545 + }, "money_release_status": "approved", "wasDebited": true }, @@ -43711,7 +55880,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wx1024hoohxev5mgend", "revision_nr": 1, "created": 1697467094828, "modified": 1697467094828 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wx1024hoohxev5mgend", + "revision_nr": 1, + "created": 1697467094828, + "modified": 1697467094828 + } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718", @@ -43725,15 +55903,30 @@ "total_amount": 1510, "history_id": 1685203508718, "id": 1685203508718, - "date_created": { "type": 6, "value": 1685203508718 }, - "date_last_updated": { "type": 6, "value": 1685211121604 }, - "date_of_expiration": { "type": 6, "value": 1687795508718 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685211121604 }, - "money_release_date": { "type": 6, "value": 1685211121604 }, + "date_created": { + "type": 6, + "value": 1685203508718 + }, + "date_last_updated": { + "type": 6, + "value": 1685211121604 + }, + "date_of_expiration": { + "type": 6, + "value": 1687795508718 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685211121604 + }, + "money_release_date": { + "type": 6, + "value": 1685211121604 + }, "money_release_status": "approved", "wasDebited": true }, @@ -43779,9 +55972,18 @@ "original_amount": 5725017, "total_amount": 5725017, "id": 1685744132878, - "date_created": { "type": 6, "value": 1685744132878 }, - "date_last_updated": { "type": 6, "value": 1685744132878 }, - "date_of_expiration": { "type": 6, "value": 1685744132878 }, + "date_created": { + "type": 6, + "value": 1685744132878 + }, + "date_last_updated": { + "type": 6, + "value": 1685744132878 + }, + "date_of_expiration": { + "type": 6, + "value": 1685744132878 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -43809,7 +56011,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wy3024moohxhteg8npx", "revision_nr": 1, "created": 1697467094865, "modified": 1697467094865 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wy3024moohxhteg8npx", + "revision_nr": 1, + "created": 1697467094865, + "modified": 1697467094865 + } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807", @@ -43823,15 +56034,30 @@ "total_amount": 5122916, "history_id": 1687787978807, "id": 1687787978807, - "date_created": { "type": 6, "value": 1687787978807 }, - "date_last_updated": { "type": 6, "value": 1687975273708 }, - "date_of_expiration": { "type": 6, "value": 1687787978807 }, + "date_created": { + "type": 6, + "value": 1687787978807 + }, + "date_last_updated": { + "type": 6, + "value": 1687975273708 + }, + "date_of_expiration": { + "type": 6, + "value": 1687787978807 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1687975273708 }, - "money_release_date": { "type": 6, "value": 1687975273708 }, + "date_approved": { + "type": 6, + "value": 1687975273708 + }, + "money_release_date": { + "type": 6, + "value": 1687975273708 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -43854,7 +56080,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02wyl024poohxeybn1p62", "revision_nr": 1, "created": 1697467094883, "modified": 1697467094883 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02wyl024poohxeybn1p62", + "revision_nr": 1, + "created": 1697467094883, + "modified": 1697467094883 + } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848", @@ -43868,15 +56103,30 @@ "total_amount": 1002074, "history_id": 1688549736848, "id": 1688549736848, - "date_created": { "type": 6, "value": 1688549736848 }, - "date_last_updated": { "type": 6, "value": 1688562736770 }, - "date_of_expiration": { "type": 6, "value": 1688549736848 }, + "date_created": { + "type": 6, + "value": 1688549736848 + }, + "date_last_updated": { + "type": 6, + "value": 1688562736770 + }, + "date_of_expiration": { + "type": 6, + "value": 1688549736848 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1688562736770 }, - "money_release_date": { "type": 6, "value": 1688562736770 }, + "date_approved": { + "type": 6, + "value": 1688562736770 + }, + "money_release_date": { + "type": 6, + "value": 1688562736770 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -43941,17 +56191,32 @@ "total_amount": 88319, "id": 1690225683361, "history_id": 1690225683361, - "date_created": { "type": 6, "value": 1690225683361 }, - "date_last_updated": { "type": 6, "value": 1690398452462 }, - "date_of_expiration": { "type": 6, "value": 1690225683361 }, + "date_created": { + "type": 6, + "value": 1690225683361 + }, + "date_last_updated": { + "type": 6, + "value": 1690398452462 + }, + "date_of_expiration": { + "type": 6, + "value": 1690225683361 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1690398452462 }, - "money_release_date": { "type": 6, "value": 1690398452462 }, + "date_approved": { + "type": 6, + "value": 1690398452462 + }, + "money_release_date": { + "type": 6, + "value": 1690398452462 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -43963,13 +56228,32 @@ }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history", - "content": { "type": 1, "value": {}, "revision": "lnt02wv90246oohx5tajb4n1", "revision_nr": 1, "created": 1697467094920, "modified": 1697467094920 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02wv90246oohx5tajb4n1", + "revision_nr": 1, + "created": 1697467094920, + "modified": 1697467094920 + } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/credit", "content": { "type": 1, - "value": { "approvedLimit": 3000, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1687788045586 }, "lastReview": { "type": 6, "value": 1687975284723 } }, + "value": { + "approvedLimit": 3000, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1687788045586 + }, + "lastReview": { + "type": 6, + "value": 1687975284723 + } + }, "revision": "lnt02wzt024uoohxhn3145ai", "revision_nr": 1, "created": 1697467094926, @@ -43980,7 +56264,13 @@ "path": "ivipcoin-db::__movement_wallet__/072402089290148910", "content": { "type": 1, - "value": { "dataModificacao": 1684153171860, "dateValidity": 1684153171860, "totalValue": 6.86, "currencyType": "USD", "balancesModificacao": 1690398452515 }, + "value": { + "dataModificacao": 1684153171860, + "dateValidity": 1684153171860, + "totalValue": 6.86, + "currencyType": "USD", + "balancesModificacao": 1690398452515 + }, "revision": "lnt02wuq0242oohxa7wg2fna", "revision_nr": 1, "created": 1697467094932, @@ -43991,7 +56281,13 @@ "path": "ivipcoin-db::__movement_wallet__/073789164441763200", "content": { "type": 1, - "value": { "dataModificacao": 1696199966019, "dateValidity": 1696199966060, "balances": {}, "history": {}, "currencyType": "USD" }, + "value": { + "dataModificacao": 1696199966019, + "dateValidity": 1696199966060, + "balances": {}, + "history": {}, + "currencyType": "USD" + }, "revision": "lnt02x04024voohxc05hab8g", "revision_nr": 1, "created": 1697467094938, @@ -44011,7 +56307,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x0h0250oohx0iqr2a7z", "revision_nr": 1, "created": 1697467094950, "modified": 1697467094950 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x0h0250oohx0iqr2a7z", + "revision_nr": 1, + "created": 1697467094950, + "modified": 1697467094950 + } }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430", @@ -44025,14 +56330,26 @@ "total_amount": 20, "history_id": 1678088421430, "id": 1678088421430, - "date_created": { "type": 6, "value": 1678088421430 }, - "date_last_updated": { "type": 6, "value": 1678715837019 }, - "date_of_expiration": { "type": 6, "value": 1680680421430 }, + "date_created": { + "type": 6, + "value": 1678088421430 + }, + "date_last_updated": { + "type": 6, + "value": 1678715837019 + }, + "date_of_expiration": { + "type": 6, + "value": 1680680421430 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678715837019 }, + "money_release_date": { + "type": 6, + "value": 1678715837019 + }, "money_release_status": "rejected" }, "revision": "lnt02x0a024yoohxgh18c9pe", @@ -44043,13 +56360,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history", - "content": { "type": 1, "value": {}, "revision": "lnt02x0a024xoohxgfde0qxl", "revision_nr": 1, "created": 1697467094964, "modified": 1697467094964 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02x0a024xoohxgfde0qxl", + "revision_nr": 1, + "created": 1697467094964, + "modified": 1697467094964 + } }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820", "content": { "type": 1, - "value": { "dataModificacao": 1677902662156, "dateValidity": 1678146242488, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677902662156, + "dateValidity": 1678146242488, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02x0a024woohx00io1btr", "revision_nr": 1, "created": 1697467094969, @@ -44060,7 +56390,11 @@ "path": "ivipcoin-db::__movement_wallet__/075270012379589070/balances/BRL", "content": { "type": 1, - "value": { "available": "30.00000000", "symbol": "BRL", "value": 6.28 }, + "value": { + "available": "30.00000000", + "symbol": "BRL", + "value": 6.28 + }, "revision": "lnt02x150253oohxgaq741qg", "revision_nr": 1, "created": 1697467094977, @@ -44069,7 +56403,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02x150252oohx123w6upf", "revision_nr": 1, "created": 1697467094982, "modified": 1697467094982 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02x150252oohx123w6upf", + "revision_nr": 1, + "created": 1697467094982, + "modified": 1697467094982 + } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341/description", @@ -44084,7 +56425,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x1o0257oohx7xza9e0r", "revision_nr": 1, "created": 1697467094994, "modified": 1697467094994 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x1o0257oohx7xza9e0r", + "revision_nr": 1, + "created": 1697467094994, + "modified": 1697467094994 + } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341", @@ -44098,15 +56448,30 @@ "total_amount": 30, "history_id": 1689767358341, "id": 1689767358341, - "date_created": { "type": 6, "value": 1689767358341 }, - "date_last_updated": { "type": 6, "value": 1690408278554 }, - "date_of_expiration": { "type": 6, "value": 1692359358341 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1690408278554 }, - "money_release_date": { "type": 6, "value": 1690408278554 }, + "date_created": { + "type": 6, + "value": 1689767358341 + }, + "date_last_updated": { + "type": 6, + "value": 1690408278554 + }, + "date_of_expiration": { + "type": 6, + "value": 1692359358341 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1690408278554 + }, + "money_release_date": { + "type": 6, + "value": 1690408278554 + }, "money_release_status": "approved", "wasDebited": true }, @@ -44118,13 +56483,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history", - "content": { "type": 1, "value": {}, "revision": "lnt02x1i0254oohx7au4gokq", "revision_nr": 1, "created": 1697467095006, "modified": 1697467095006 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02x1i0254oohx7au4gokq", + "revision_nr": 1, + "created": 1697467095006, + "modified": 1697467095006 + } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02x260258oohxgovk92du", "revision_nr": 1, "created": 1697467095011, @@ -44135,7 +56511,13 @@ "path": "ivipcoin-db::__movement_wallet__/075270012379589070", "content": { "type": 1, - "value": { "dataModificacao": 1689767257899, "dateValidity": 1689767257899, "totalValue": 0, "currencyType": "USD", "balancesModificacao": 1690416536434 }, + "value": { + "dataModificacao": 1689767257899, + "dateValidity": 1689767257899, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": 1690416536434 + }, "revision": "lnt02x150251oohx85sm08si", "revision_nr": 1, "created": 1697467095017, @@ -44146,7 +56528,11 @@ "path": "ivipcoin-db::__movement_wallet__/075429520947661650/balances/BRL", "content": { "type": 1, - "value": { "available": "186.00000000", "symbol": "BRL", "value": 36.47 }, + "value": { + "available": "186.00000000", + "symbol": "BRL", + "value": 36.47 + }, "revision": "lnt02x2h025boohx8xk0c7ni", "revision_nr": 1, "created": 1697467095025, @@ -44155,7 +56541,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02x2h025aoohxf6obgypi", "revision_nr": 1, "created": 1697467095031, "modified": 1697467095031 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02x2h025aoohxf6obgypi", + "revision_nr": 1, + "created": 1697467095031, + "modified": 1697467095031 + } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914/description", @@ -44170,7 +56563,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x31025foohx5c3ibwed", "revision_nr": 1, "created": 1697467095044, "modified": 1697467095044 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x31025foohx5c3ibwed", + "revision_nr": 1, + "created": 1697467095044, + "modified": 1697467095044 + } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914", @@ -44184,15 +56586,30 @@ "total_amount": 240, "history_id": 1684093506914, "id": 1684093506914, - "date_created": { "type": 6, "value": 1684093506914 }, - "date_last_updated": { "type": 6, "value": 1684096086351 }, - "date_of_expiration": { "type": 6, "value": 1686685506914 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684096086351 }, - "money_release_date": { "type": 6, "value": 1684096086351 }, + "date_created": { + "type": 6, + "value": 1684093506914 + }, + "date_last_updated": { + "type": 6, + "value": 1684096086351 + }, + "date_of_expiration": { + "type": 6, + "value": 1686685506914 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684096086351 + }, + "money_release_date": { + "type": 6, + "value": 1684096086351 + }, "money_release_status": "approved", "wasDebited": true }, @@ -44248,9 +56665,18 @@ "original_amount": 54, "total_amount": 54, "id": 1689771495719, - "date_created": { "type": 6, "value": 1689771495719 }, - "date_last_updated": { "type": 6, "value": 1689771495719 }, - "date_of_expiration": { "type": 6, "value": 1716123495719 }, + "date_created": { + "type": 6, + "value": 1689771495719 + }, + "date_last_updated": { + "type": 6, + "value": 1689771495719 + }, + "date_of_expiration": { + "type": 6, + "value": 1716123495719 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -44266,13 +56692,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history", - "content": { "type": 1, "value": {}, "revision": "lnt02x2v025coohxa23d7h8c", "revision_nr": 1, "created": 1697467095073, "modified": 1697467095073 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02x2v025coohxa23d7h8c", + "revision_nr": 1, + "created": 1697467095073, + "modified": 1697467095073 + } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02x41025joohxdkq637ha", "revision_nr": 1, "created": 1697467095079, @@ -44288,7 +56725,10 @@ "dateValidity": 1684093342801, "totalValue": 38.464800000000004, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1697425200000 } + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } }, "revision": "lnt02x2h0259oohxaj0e20hm", "revision_nr": 1, @@ -44300,7 +56740,11 @@ "path": "ivipcoin-db::__movement_wallet__/076012264992064480/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02x4d025loohxgg9odpuc", "revision_nr": 1, "created": 1697467095092, @@ -44318,7 +56762,10 @@ "history": {}, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1697079600000 } + "balancesModificacao": { + "type": 6, + "value": 1697079600000 + } }, "revision": "lnt02x4d025koohxdtxce1s6", "revision_nr": 1, @@ -44330,7 +56777,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/balances/IVIP", "content": { "type": 1, - "value": { "available": "932705.00000000", "symbol": "IVIP", "value": 508.13 }, + "value": { + "available": "932705.00000000", + "symbol": "IVIP", + "value": 508.13 + }, "revision": "lnt02x4q025ooohx3v8khwfo", "revision_nr": 1, "created": 1697467095104, @@ -44339,7 +56790,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02x4q025noohx8grkb1ww", "revision_nr": 1, "created": 1697467095111, "modified": 1697467095111 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02x4q025noohx8grkb1ww", + "revision_nr": 1, + "created": 1697467095111, + "modified": 1697467095111 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271/description", @@ -44354,7 +56812,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x59025soohxbkyn6tf5", "revision_nr": 1, "created": 1697467095123, "modified": 1697467095123 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x59025soohxbkyn6tf5", + "revision_nr": 1, + "created": 1697467095123, + "modified": 1697467095123 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271", @@ -44368,15 +56835,30 @@ "total_amount": 100, "history_id": 1683069444271, "id": 1683069444271, - "date_created": { "type": 6, "value": 1683069444271 }, - "date_last_updated": { "type": 6, "value": 1684153250305 }, - "date_of_expiration": { "type": 6, "value": 1685661444271 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684153250305 }, - "money_release_date": { "type": 6, "value": 1684153250305 }, + "date_created": { + "type": 6, + "value": 1683069444271 + }, + "date_last_updated": { + "type": 6, + "value": 1684153250305 + }, + "date_of_expiration": { + "type": 6, + "value": 1685661444271 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684153250305 + }, + "money_release_date": { + "type": 6, + "value": 1684153250305 + }, "money_release_status": "approved", "wasDebited": true }, @@ -44399,7 +56881,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x5q025voohx70f212jj", "revision_nr": 1, "created": 1697467095140, "modified": 1697467095140 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x5q025voohx70f212jj", + "revision_nr": 1, + "created": 1697467095140, + "modified": 1697467095140 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297", @@ -44413,15 +56904,30 @@ "total_amount": 100, "history_id": 1684135234297, "id": 1684135234297, - "date_created": { "type": 6, "value": 1684135234297 }, - "date_last_updated": { "type": 6, "value": 1684190546714 }, - "date_of_expiration": { "type": 6, "value": 1686727234297 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684190546714 }, - "money_release_date": { "type": 6, "value": 1684190546714 }, + "date_created": { + "type": 6, + "value": 1684135234297 + }, + "date_last_updated": { + "type": 6, + "value": 1684190546714 + }, + "date_of_expiration": { + "type": 6, + "value": 1686727234297 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684190546714 + }, + "money_release_date": { + "type": 6, + "value": 1684190546714 + }, "money_release_status": "approved", "wasDebited": true }, @@ -44444,7 +56950,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x69025yoohx31rm0hrc", "revision_nr": 1, "created": 1697467095160, "modified": 1697467095160 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x69025yoohx31rm0hrc", + "revision_nr": 1, + "created": 1697467095160, + "modified": 1697467095160 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791", @@ -44458,15 +56973,30 @@ "total_amount": 100, "history_id": 1684178465791, "id": 1684178465791, - "date_created": { "type": 6, "value": 1684178465791 }, - "date_last_updated": { "type": 6, "value": 1684181715990 }, - "date_of_expiration": { "type": 6, "value": 1686770465791 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684181715990 }, - "money_release_date": { "type": 6, "value": 1684181715990 }, + "date_created": { + "type": 6, + "value": 1684178465791 + }, + "date_last_updated": { + "type": 6, + "value": 1684181715990 + }, + "date_of_expiration": { + "type": 6, + "value": 1686770465791 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684181715990 + }, + "money_release_date": { + "type": 6, + "value": 1684181715990 + }, "money_release_status": "approved", "wasDebited": true }, @@ -44491,7 +57021,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02x6u0263oohx0kntbe29", "revision_nr": 1, "created": 1697467095180, @@ -44500,11 +57034,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02x6u0262oohx7eekb2db", "revision_nr": 1, "created": 1697467095186, "modified": 1697467095186 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02x6u0262oohx7eekb2db", + "revision_nr": 1, + "created": 1697467095186, + "modified": 1697467095186 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details", - "content": { "type": 1, "value": {}, "revision": "lnt02x6u0261oohx62xcf2at", "revision_nr": 1, "created": 1697467095191, "modified": 1697467095191 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02x6u0261oohx62xcf2at", + "revision_nr": 1, + "created": 1697467095191, + "modified": 1697467095191 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499", @@ -44518,9 +57066,18 @@ "total_amount": 1300, "history_id": 1684353970499, "id": 1684353970499, - "date_created": { "type": 6, "value": 1684353970499 }, - "date_last_updated": { "type": 6, "value": 1684353970499 }, - "date_of_expiration": { "type": 6, "value": 1686945970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, + "date_last_updated": { + "type": 6, + "value": 1684353970499 + }, + "date_of_expiration": { + "type": 6, + "value": 1686945970499 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -44569,9 +57126,18 @@ "original_amount": 6331951, "total_amount": 6331951, "id": 1684627580539, - "date_created": { "type": 6, "value": 1684627580539 }, - "date_last_updated": { "type": 6, "value": 1684627580539 }, - "date_of_expiration": { "type": 6, "value": 1684627580539 }, + "date_created": { + "type": 6, + "value": 1684627580539 + }, + "date_last_updated": { + "type": 6, + "value": 1684627580539 + }, + "date_of_expiration": { + "type": 6, + "value": 1684627580539 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -44633,9 +57199,18 @@ "original_amount": 320, "total_amount": 320, "id": 1684628335504, - "date_created": { "type": 6, "value": 1684628335504 }, - "date_last_updated": { "type": 6, "value": 1684628335504 }, - "date_of_expiration": { "type": 6, "value": 1684628335504 }, + "date_created": { + "type": 6, + "value": 1684628335504 + }, + "date_last_updated": { + "type": 6, + "value": 1684628335504 + }, + "date_of_expiration": { + "type": 6, + "value": 1684628335504 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -44685,9 +57260,18 @@ "original_amount": 1561756, "total_amount": 1561756, "id": 1684633146254, - "date_created": { "type": 6, "value": 1684633146254 }, - "date_last_updated": { "type": 6, "value": 1684633146254 }, - "date_of_expiration": { "type": 6, "value": 1684633146254 }, + "date_created": { + "type": 6, + "value": 1684633146254 + }, + "date_last_updated": { + "type": 6, + "value": 1684633146254 + }, + "date_of_expiration": { + "type": 6, + "value": 1684633146254 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -44715,7 +57299,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x8v026doohx4m0b0j5h", "revision_nr": 1, "created": 1697467095253, "modified": 1697467095253 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x8v026doohx4m0b0j5h", + "revision_nr": 1, + "created": 1697467095253, + "modified": 1697467095253 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878", @@ -44729,15 +57322,30 @@ "total_amount": 130, "history_id": 1687191698878, "id": 1687191698878, - "date_created": { "type": 6, "value": 1687191698878 }, - "date_last_updated": { "type": 6, "value": 1687543965861 }, - "date_of_expiration": { "type": 6, "value": 1689783698878 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1687543965861 }, - "money_release_date": { "type": 6, "value": 1687543965861 }, + "date_created": { + "type": 6, + "value": 1687191698878 + }, + "date_last_updated": { + "type": 6, + "value": 1687543965861 + }, + "date_of_expiration": { + "type": 6, + "value": 1689783698878 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1687543965861 + }, + "money_release_date": { + "type": 6, + "value": 1687543965861 + }, "money_release_status": "approved", "wasDebited": true }, @@ -44760,7 +57368,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x9d026goohxbpye1gfi", "revision_nr": 1, "created": 1697467095272, "modified": 1697467095272 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x9d026goohxbpye1gfi", + "revision_nr": 1, + "created": 1697467095272, + "modified": 1697467095272 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837", @@ -44774,9 +57391,18 @@ "total_amount": 1000, "history_id": 1689106982837, "id": 1689106982837, - "date_created": { "type": 6, "value": 1689106982837 }, - "date_last_updated": { "type": 6, "value": 1689106982837 }, - "date_of_expiration": { "type": 6, "value": 1689106982837 }, + "date_created": { + "type": 6, + "value": 1689106982837 + }, + "date_last_updated": { + "type": 6, + "value": 1689106982837 + }, + "date_of_expiration": { + "type": 6, + "value": 1689106982837 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -44801,7 +57427,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02x9x026joohx8ddaazff", "revision_nr": 1, "created": 1697467095293, "modified": 1697467095293 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02x9x026joohx8ddaazff", + "revision_nr": 1, + "created": 1697467095293, + "modified": 1697467095293 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445", @@ -44815,9 +57450,18 @@ "total_amount": 100000, "history_id": 1689107140445, "id": 1689107140445, - "date_created": { "type": 6, "value": 1689107140445 }, - "date_last_updated": { "type": 6, "value": 1689107140445 }, - "date_of_expiration": { "type": 6, "value": 1689107140445 }, + "date_created": { + "type": 6, + "value": 1689107140445 + }, + "date_last_updated": { + "type": 6, + "value": 1689107140445 + }, + "date_of_expiration": { + "type": 6, + "value": 1689107140445 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -44879,9 +57523,18 @@ "total_amount": 130, "id": 1689751872577, "contract_id": "1684353970499", - "date_created": { "type": 6, "value": 1689751872577 }, - "date_last_updated": { "type": 6, "value": 1689751872577 }, - "date_of_expiration": { "type": 6, "value": 1689751872577 }, + "date_created": { + "type": 6, + "value": 1689751872577 + }, + "date_last_updated": { + "type": 6, + "value": 1689751872577 + }, + "date_of_expiration": { + "type": 6, + "value": 1689751872577 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -44908,7 +57561,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xaz026poohx7q989ndd", "revision_nr": 1, "created": 1697467095329, "modified": 1697467095329 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xaz026poohx7q989ndd", + "revision_nr": 1, + "created": 1697467095329, + "modified": 1697467095329 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412", @@ -44922,15 +57584,30 @@ "total_amount": 130, "history_id": 1689787472412, "id": 1689787472412, - "date_created": { "type": 6, "value": 1689787472412 }, - "date_last_updated": { "type": 6, "value": 1690469763902 }, - "date_of_expiration": { "type": 6, "value": 1692379472412 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1690469763902 }, - "money_release_date": { "type": 6, "value": 1690469763902 }, + "date_created": { + "type": 6, + "value": 1689787472412 + }, + "date_last_updated": { + "type": 6, + "value": 1690469763902 + }, + "date_of_expiration": { + "type": 6, + "value": 1692379472412 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1690469763902 + }, + "money_release_date": { + "type": 6, + "value": 1690469763902 + }, "money_release_status": "approved", "wasDebited": true }, @@ -44990,9 +57667,18 @@ "total_amount": 130, "id": 1690471265404, "contract_id": "1684353970499", - "date_created": { "type": 6, "value": 1690471265404 }, - "date_last_updated": { "type": 6, "value": 1690471265404 }, - "date_of_expiration": { "type": 6, "value": 1690471265404 }, + "date_created": { + "type": 6, + "value": 1690471265404 + }, + "date_last_updated": { + "type": 6, + "value": 1690471265404 + }, + "date_of_expiration": { + "type": 6, + "value": 1690471265404 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -45010,7 +57696,13 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1695216566475 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1695216566475 + } + }, "revision": "lnt02xbx026uoohx7zd21yh1", "revision_nr": 1, "created": 1697467095363, @@ -45072,16 +57764,28 @@ "total_amount": 130, "id": 1692624566475, "history_id": 1692624566475, - "date_created": { "type": 6, "value": 1692624566475 }, - "date_last_updated": { "type": 6, "value": 1692625291282 }, + "date_created": { + "type": 6, + "value": 1692624566475 + }, + "date_last_updated": { + "type": 6, + "value": 1692625291282 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1692625291282 }, - "money_release_date": { "type": 6, "value": 1692625291282 }, + "date_approved": { + "type": 6, + "value": 1692625291282 + }, + "money_release_date": { + "type": 6, + "value": 1692625291282 + }, "money_release_status": "approved", "wasDebited": true }, @@ -45148,9 +57852,18 @@ "total_amount": 130, "id": "1692660761580", "history_id": "1692660761580", - "date_created": { "type": 6, "value": 1692660761580 }, - "date_last_updated": { "type": 6, "value": 1692660761580 }, - "date_of_expiration": { "type": 6, "value": 1692660761580 }, + "date_created": { + "type": 6, + "value": 1692660761580 + }, + "date_last_updated": { + "type": 6, + "value": 1692660761580 + }, + "date_of_expiration": { + "type": 6, + "value": 1692660761580 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -45190,7 +57903,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 208830.06 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 208830.06 + }, "revision": "lnt02xdt0277oohxax652k0f", "revision_nr": 1, "created": 1697467095431, @@ -45199,7 +57916,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xdt0276oohxbyio7cnu", "revision_nr": 1, "created": 1697467095437, "modified": 1697467095437 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xdt0276oohxbyio7cnu", + "revision_nr": 1, + "created": 1697467095437, + "modified": 1697467095437 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details", @@ -45233,17 +57957,32 @@ "total_amount": 6752171.94, "id": "1692785689941", "history_id": "1692785689941", - "date_created": { "type": 6, "value": 1692785689941 }, - "date_last_updated": { "type": 6, "value": 1692972204887 }, - "date_of_expiration": { "type": 6, "value": 1692785689941 }, + "date_created": { + "type": 6, + "value": 1692785689941 + }, + "date_last_updated": { + "type": 6, + "value": 1692972204887 + }, + "date_of_expiration": { + "type": 6, + "value": 1692785689941 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1692972204887 }, - "money_release_date": { "type": 6, "value": 1692972204887 }, + "date_approved": { + "type": 6, + "value": 1692972204887 + }, + "money_release_date": { + "type": 6, + "value": 1692972204887 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -45257,7 +57996,13 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699203881018 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699203881018 + } + }, "revision": "lnt02xeh0279oohx4nnmdxb3", "revision_nr": 1, "created": 1697467095458, @@ -45320,16 +58065,28 @@ "total_amount": 130, "id": "1696611881018", "history_id": "1696611881018", - "date_created": { "type": 6, "value": 1696611881018 }, - "date_last_updated": { "type": 6, "value": 1696612563868 }, + "date_created": { + "type": 6, + "value": 1696611881018 + }, + "date_last_updated": { + "type": 6, + "value": 1696612563868 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696612563868 }, - "money_release_date": { "type": 6, "value": 1696612563868 }, + "date_approved": { + "type": 6, + "value": 1696612563868 + }, + "money_release_date": { + "type": 6, + "value": 1696612563868 + }, "money_release_status": "approved", "wasDebited": true }, @@ -45397,9 +58154,18 @@ "total_amount": 130, "id": "1696613460272", "history_id": "1696613460272", - "date_created": { "type": 6, "value": 1696613460272 }, - "date_last_updated": { "type": 6, "value": 1696613460272 }, - "date_of_expiration": { "type": 6, "value": 1696613460272 }, + "date_created": { + "type": 6, + "value": 1696613460272 + }, + "date_last_updated": { + "type": 6, + "value": 1696613460272 + }, + "date_of_expiration": { + "type": 6, + "value": 1696613460272 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -45415,7 +58181,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history", - "content": { "type": 1, "value": {}, "revision": "lnt02x53025poohx76i3d8lj", "revision_nr": 1, "created": 1697467095513, "modified": 1697467095513 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02x53025poohx76i3d8lj", + "revision_nr": 1, + "created": 1697467095513, + "modified": 1697467095513 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/description", @@ -45432,7 +58205,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xgg027noohx54b33u6s", "revision_nr": 1, "created": 1697467095527, @@ -45441,7 +58218,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xgg027moohx3i7h4dn3", "revision_nr": 1, "created": 1697467095532, "modified": 1697467095532 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xgg027moohx3i7h4dn3", + "revision_nr": 1, + "created": 1697467095532, + "modified": 1697467095532 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499", @@ -45454,7 +58238,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL", "status": "paid" @@ -45467,7 +58254,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt02xg9027joohxe8x73k7c", "revision_nr": 1, "created": 1697467095545, "modified": 1697467095545 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xg9027joohxe8x73k7c", + "revision_nr": 1, + "created": 1697467095545, + "modified": 1697467095545 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/description", @@ -45484,7 +58278,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xhb027soohx5wit3i5x", "revision_nr": 1, "created": 1697467095558, @@ -45493,7 +58291,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xhb027roohx2yhn0byr", "revision_nr": 1, "created": 1697467095563, "modified": 1697467095563 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xhb027roohx2yhn0byr", + "revision_nr": 1, + "created": 1697467095563, + "modified": 1697467095563 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499", @@ -45506,7 +58311,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL", "status": "paid" @@ -45519,7 +58327,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt02xh5027ooohx7yzkahxu", "revision_nr": 1, "created": 1697467095576, "modified": 1697467095576 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xh5027ooohx7yzkahxu", + "revision_nr": 1, + "created": 1697467095576, + "modified": 1697467095576 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/description", @@ -45536,7 +58351,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xi6027xoohx6zsab6y3", "revision_nr": 1, "created": 1697467095588, @@ -45545,7 +58364,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xi6027woohxanr47f79", "revision_nr": 1, "created": 1697467095595, "modified": 1697467095595 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xi6027woohxanr47f79", + "revision_nr": 1, + "created": 1697467095595, + "modified": 1697467095595 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499", @@ -45558,7 +58384,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL", "status": "paid" @@ -45571,7 +58400,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt02xi0027toohx3d9r9h0a", "revision_nr": 1, "created": 1697467095608, "modified": 1697467095608 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xi0027toohx3d9r9h0a", + "revision_nr": 1, + "created": 1697467095608, + "modified": 1697467095608 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/description", @@ -45588,7 +58424,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xj20282oohx4r5f7enb", "revision_nr": 1, "created": 1697467095620, @@ -45597,7 +58437,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xj20281oohxe91ybiqu", "revision_nr": 1, "created": 1697467095626, "modified": 1697467095626 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xj20281oohxe91ybiqu", + "revision_nr": 1, + "created": 1697467095626, + "modified": 1697467095626 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499", @@ -45610,11 +58457,17 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1696613460287 } + "date_last_updated": { + "type": 6, + "value": 1696613460287 + } }, "revision": "lnt02xiw027zoohxdpy0biiv", "revision_nr": 1, @@ -45624,7 +58477,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt02xiw027yoohx2ax123fh", "revision_nr": 1, "created": 1697467095640, "modified": 1697467095640 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xiw027yoohx2ax123fh", + "revision_nr": 1, + "created": 1697467095640, + "modified": 1697467095640 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/description", @@ -45641,7 +58501,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xjy0287oohx5iz51wqi", "revision_nr": 1, "created": 1697467095652, @@ -45650,7 +58514,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xjy0286oohx6djg80dy", "revision_nr": 1, "created": 1697467095659, "modified": 1697467095659 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xjy0286oohx6djg80dy", + "revision_nr": 1, + "created": 1697467095659, + "modified": 1697467095659 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499", @@ -45663,7 +58534,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, @@ -45675,7 +58549,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310", - "content": { "type": 1, "value": {}, "revision": "lnt02xjs0283oohx33kdea1s", "revision_nr": 1, "created": 1697467095671, "modified": 1697467095671 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xjs0283oohx33kdea1s", + "revision_nr": 1, + "created": 1697467095671, + "modified": 1697467095671 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/description", @@ -45692,7 +58573,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xkt028coohxf966eeni", "revision_nr": 1, "created": 1697467095683, @@ -45701,7 +58586,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xkt028boohxeoyt1wgy", "revision_nr": 1, "created": 1697467095690, "modified": 1697467095690 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xkt028boohxeoyt1wgy", + "revision_nr": 1, + "created": 1697467095690, + "modified": 1697467095690 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499", @@ -45714,7 +58606,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, @@ -45726,7 +58621,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311", - "content": { "type": 1, "value": {}, "revision": "lnt02xkn0288oohxci3t6xru", "revision_nr": 1, "created": 1697467095702, "modified": 1697467095702 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xkn0288oohxci3t6xru", + "revision_nr": 1, + "created": 1697467095702, + "modified": 1697467095702 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/description", @@ -45743,7 +58645,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xlq028hoohxhaai5l37", "revision_nr": 1, "created": 1697467095716, @@ -45752,7 +58658,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xlp028goohx135fgsaj", "revision_nr": 1, "created": 1697467095723, "modified": 1697467095723 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xlp028goohx135fgsaj", + "revision_nr": 1, + "created": 1697467095723, + "modified": 1697467095723 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499", @@ -45765,7 +58678,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, @@ -45777,7 +58693,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312", - "content": { "type": 1, "value": {}, "revision": "lnt02xli028doohx640z1dtn", "revision_nr": 1, "created": 1697467095735, "modified": 1697467095735 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xli028doohx640z1dtn", + "revision_nr": 1, + "created": 1697467095735, + "modified": 1697467095735 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/description", @@ -45794,7 +58717,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xml028moohxbt09epl8", "revision_nr": 1, "created": 1697467095749, @@ -45803,7 +58730,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xml028loohx1r118385", "revision_nr": 1, "created": 1697467095755, "modified": 1697467095755 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xml028loohx1r118385", + "revision_nr": 1, + "created": 1697467095755, + "modified": 1697467095755 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499", @@ -45816,7 +58750,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, @@ -45828,7 +58765,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401", - "content": { "type": 1, "value": {}, "revision": "lnt02xmf028ioohx8brgdd7z", "revision_nr": 1, "created": 1697467095766, "modified": 1697467095766 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xmf028ioohx8brgdd7z", + "revision_nr": 1, + "created": 1697467095766, + "modified": 1697467095766 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/description", @@ -45845,7 +58789,11 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xni028roohx9tks36ng", "revision_nr": 1, "created": 1697467095781, @@ -45854,7 +58802,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xni028qoohxc04nbyin", "revision_nr": 1, "created": 1697467095787, "modified": 1697467095787 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xni028qoohxc04nbyin", + "revision_nr": 1, + "created": 1697467095787, + "modified": 1697467095787 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499", @@ -45867,7 +58822,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, @@ -45879,13 +58837,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402", - "content": { "type": 1, "value": {}, "revision": "lnt02xna028noohx9myuef80", "revision_nr": 1, "created": 1697467095800, "modified": 1697467095800 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xna028noohx9myuef80", + "revision_nr": 1, + "created": 1697467095800, + "modified": 1697467095800 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 30.00%", + "amount": 300 + }, "revision": "lnt02xo8028voohx710mah5w", "revision_nr": 1, "created": 1697467095807, @@ -45894,7 +58863,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02xo8028uoohx5ne55ntf", "revision_nr": 1, "created": 1697467095812, "modified": 1697467095812 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02xo8028uoohx5ne55ntf", + "revision_nr": 1, + "created": 1697467095812, + "modified": 1697467095812 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/description", @@ -45918,7 +58894,10 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { "type": 6, "value": 1684353970499 }, + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, @@ -45930,17 +58909,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403", - "content": { "type": 1, "value": {}, "revision": "lnt02xo8028soohxabvm2al0", "revision_nr": 1, "created": 1697467095830, "modified": 1697467095830 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xo8028soohxabvm2al0", + "revision_nr": 1, + "created": 1697467095830, + "modified": 1697467095830 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt02xg9027ioohx472606in", "revision_nr": 1, "created": 1697467095837, "modified": 1697467095837 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xg9027ioohx472606in", + "revision_nr": 1, + "created": 1697467095837, + "modified": 1697467095837 + } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 800, "analysisRequested": { "type": 6, "value": 1684328944557 }, "lastReview": { "type": 6, "value": 1684329405576 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 800, + "analysisRequested": { + "type": 6, + "value": 1684328944557 + }, + "lastReview": { + "type": 6, + "value": 1684329405576 + } + }, "revision": "lnt02xg9027hoohx7pij5h00", "revision_nr": 1, "created": 1697467095844, @@ -45951,7 +58955,16 @@ "path": "ivipcoin-db::__movement_wallet__/076519781500715040", "content": { "type": 1, - "value": { "dataModificacao": 1682778060382, "dateValidity": 1682778060382, "totalValue": 296.475, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697425200000 } }, + "value": { + "dataModificacao": 1682778060382, + "dateValidity": 1682778060382, + "totalValue": 296.475, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } + }, "revision": "lnt02x4q025moohx1nax342w", "revision_nr": 1, "created": 1697467095850, @@ -45962,7 +58975,14 @@ "path": "ivipcoin-db::__movement_wallet__/078019109826485740", "content": { "type": 1, - "value": { "dataModificacao": 1677453360716, "dateValidity": 1677453360716, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677453360716, + "dateValidity": 1677453360716, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02xpm028xoohx96zb6iou", "revision_nr": 1, "created": 1697467095858, @@ -45982,7 +59002,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xq10292oohxdx30cq8w", "revision_nr": 1, "created": 1697467095871, "modified": 1697467095871 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xq10292oohxdx30cq8w", + "revision_nr": 1, + "created": 1697467095871, + "modified": 1697467095871 + } }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149", @@ -45996,14 +59025,26 @@ "total_amount": 500, "history_id": 1677768924149, "id": 1677768924149, - "date_created": { "type": 6, "value": 1677768924149 }, - "date_last_updated": { "type": 6, "value": 1678713027494 }, - "date_of_expiration": { "type": 6, "value": 1680360924149 }, + "date_created": { + "type": 6, + "value": 1677768924149 + }, + "date_last_updated": { + "type": 6, + "value": 1678713027494 + }, + "date_of_expiration": { + "type": 6, + "value": 1680360924149 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678713027494 }, + "money_release_date": { + "type": 6, + "value": 1678713027494 + }, "money_release_status": "rejected" }, "revision": "lnt02xpu0290oohxhuguht1s", @@ -46014,13 +59055,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history", - "content": { "type": 1, "value": {}, "revision": "lnt02xpu028zoohxh6hmcp7q", "revision_nr": 1, "created": 1697467095882, "modified": 1697467095882 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xpu028zoohxh6hmcp7q", + "revision_nr": 1, + "created": 1697467095882, + "modified": 1697467095882 + } }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450", "content": { "type": 1, - "value": { "dataModificacao": 1677768631228, "dateValidity": 1677768631228, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677768631228, + "dateValidity": 1677768631228, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02xpu028yoohx85di0fyi", "revision_nr": 1, "created": 1697467095890, @@ -46031,7 +59085,11 @@ "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "available": "0.00000000", "value": 0 }, + "value": { + "symbol": "BRL", + "available": "0.00000000", + "value": 0 + }, "revision": "lnt02xqq0295oohx347l91vn", "revision_nr": 1, "created": 1697467095897, @@ -46042,7 +59100,11 @@ "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances/IVIP", "content": { "type": 1, - "value": { "symbol": "IVIP", "available": "0.00000000", "value": 0 }, + "value": { + "symbol": "IVIP", + "available": "0.00000000", + "value": 0 + }, "revision": "lnt02xqx0296oohx0icjgezl", "revision_nr": 1, "created": 1697467095903, @@ -46051,7 +59113,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02xqq0294oohxht4u8iwo", "revision_nr": 1, "created": 1697467095909, "modified": 1697467095909 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xqq0294oohxht4u8iwo", + "revision_nr": 1, + "created": 1697467095909, + "modified": 1697467095909 + } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523/description", @@ -46066,7 +59135,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xrg029aoohx09daehqb", "revision_nr": 1, "created": 1697467095922, "modified": 1697467095922 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xrg029aoohx09daehqb", + "revision_nr": 1, + "created": 1697467095922, + "modified": 1697467095922 + } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523", @@ -46080,15 +59158,30 @@ "total_amount": 100, "history_id": 1684172899523, "id": 1684172899523, - "date_created": { "type": 6, "value": 1684172899523 }, - "date_last_updated": { "type": 6, "value": 1684186044298 }, - "date_of_expiration": { "type": 6, "value": 1686764899523 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684186044298 }, - "money_release_date": { "type": 6, "value": 1684186044298 }, + "date_created": { + "type": 6, + "value": 1684172899523 + }, + "date_last_updated": { + "type": 6, + "value": 1684186044298 + }, + "date_of_expiration": { + "type": 6, + "value": 1686764899523 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684186044298 + }, + "money_release_date": { + "type": 6, + "value": 1684186044298 + }, "money_release_status": "approved", "wasDebited": true }, @@ -46134,9 +59227,18 @@ "original_amount": 487073, "total_amount": 487073, "id": 1684625628231, - "date_created": { "type": 6, "value": 1684625628231 }, - "date_last_updated": { "type": 6, "value": 1684625628231 }, - "date_of_expiration": { "type": 6, "value": 1684625628231 }, + "date_created": { + "type": 6, + "value": 1684625628231 + }, + "date_last_updated": { + "type": 6, + "value": 1684625628231 + }, + "date_of_expiration": { + "type": 6, + "value": 1684625628231 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46164,7 +59266,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xsc029foohxbpp5bjmw", "revision_nr": 1, "created": 1697467095955, "modified": 1697467095955 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xsc029foohxbpp5bjmw", + "revision_nr": 1, + "created": 1697467095955, + "modified": 1697467095955 + } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031", @@ -46178,9 +59289,18 @@ "total_amount": 487073, "history_id": 1688602924031, "id": 1688602924031, - "date_created": { "type": 6, "value": 1688602924031 }, - "date_last_updated": { "type": 6, "value": 1688602924031 }, - "date_of_expiration": { "type": 6, "value": 1688602924031 }, + "date_created": { + "type": 6, + "value": 1688602924031 + }, + "date_last_updated": { + "type": 6, + "value": 1688602924031 + }, + "date_of_expiration": { + "type": 6, + "value": 1688602924031 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -46205,7 +59325,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xsw029ioohxcw1zciig", "revision_nr": 1, "created": 1697467095976, "modified": 1697467095976 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xsw029ioohxcw1zciig", + "revision_nr": 1, + "created": 1697467095976, + "modified": 1697467095976 + } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209", @@ -46219,9 +59348,18 @@ "total_amount": 487073, "history_id": 1689096874209, "id": 1689096874209, - "date_created": { "type": 6, "value": 1689096874209 }, - "date_last_updated": { "type": 6, "value": 1689096874209 }, - "date_of_expiration": { "type": 6, "value": 1689096874209 }, + "date_created": { + "type": 6, + "value": 1689096874209 + }, + "date_last_updated": { + "type": 6, + "value": 1689096874209 + }, + "date_of_expiration": { + "type": 6, + "value": 1689096874209 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -46246,7 +59384,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xtg029loohxcgkg1ydo", "revision_nr": 1, "created": 1697467095995, "modified": 1697467095995 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xtg029loohxcgkg1ydo", + "revision_nr": 1, + "created": 1697467095995, + "modified": 1697467095995 + } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273", @@ -46260,9 +59407,18 @@ "total_amount": 487073, "history_id": 1689182689273, "id": 1689182689273, - "date_created": { "type": 6, "value": 1689182689273 }, - "date_last_updated": { "type": 6, "value": 1689182689273 }, - "date_of_expiration": { "type": 6, "value": 1689182689273 }, + "date_created": { + "type": 6, + "value": 1689182689273 + }, + "date_last_updated": { + "type": 6, + "value": 1689182689273 + }, + "date_of_expiration": { + "type": 6, + "value": 1689182689273 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -46287,7 +59443,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xtz029ooohx2l66evdu", "revision_nr": 1, "created": 1697467096013, "modified": 1697467096013 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xtz029ooohx2l66evdu", + "revision_nr": 1, + "created": 1697467096013, + "modified": 1697467096013 + } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070", @@ -46301,15 +59466,30 @@ "total_amount": 487073, "history_id": 1689197773070, "id": 1689197773070, - "date_created": { "type": 6, "value": 1689197773070 }, - "date_last_updated": { "type": 6, "value": 1689256321891 }, - "date_of_expiration": { "type": 6, "value": 1689197773070 }, + "date_created": { + "type": 6, + "value": 1689197773070 + }, + "date_last_updated": { + "type": 6, + "value": 1689256321891 + }, + "date_of_expiration": { + "type": 6, + "value": 1689197773070 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1689256321891 }, - "money_release_date": { "type": 6, "value": 1689256321891 }, + "date_approved": { + "type": 6, + "value": 1689256321891 + }, + "money_release_date": { + "type": 6, + "value": 1689256321891 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -46321,13 +59501,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history", - "content": { "type": 1, "value": {}, "revision": "lnt02xr90297oohxh8nn63no", "revision_nr": 1, "created": 1697467096027, "modified": 1697467096027 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xr90297oohxh8nn63no", + "revision_nr": 1, + "created": 1697467096027, + "modified": 1697467096027 + } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02xuj029poohxh1ks274t", "revision_nr": 1, "created": 1697467096033, @@ -46338,7 +59529,12 @@ "path": "ivipcoin-db::__movement_wallet__/078345372944250480", "content": { "type": 1, - "value": { "dataModificacao": 1684172840672, "dateValidity": 1684172840672, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684172840672, + "dateValidity": 1684172840672, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02xqq0293oohx25h2hrtf", "revision_nr": 1, "created": 1697467096040, @@ -46349,7 +59545,11 @@ "path": "ivipcoin-db::__movement_wallet__/080731978336071380/balances/IVIP", "content": { "type": 1, - "value": { "available": "1863605.00000000", "symbol": "IVIP", "value": 199.32 }, + "value": { + "available": "1863605.00000000", + "symbol": "IVIP", + "value": 199.32 + }, "revision": "lnt02xux029soohxcei43nhu", "revision_nr": 1, "created": 1697467096047, @@ -46358,7 +59558,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02xux029roohxgbv2ciyt", "revision_nr": 1, "created": 1697467096052, "modified": 1697467096052 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xux029roohxgbv2ciyt", + "revision_nr": 1, + "created": 1697467096052, + "modified": 1697467096052 + } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483/description", @@ -46373,7 +59580,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xvf029woohxad7d6uua", "revision_nr": 1, "created": 1697467096065, "modified": 1697467096065 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xvf029woohxad7d6uua", + "revision_nr": 1, + "created": 1697467096065, + "modified": 1697467096065 + } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483", @@ -46387,15 +59603,30 @@ "total_amount": 2020, "history_id": 1684105639483, "id": 1684105639483, - "date_created": { "type": 6, "value": 1684105639483 }, - "date_last_updated": { "type": 6, "value": 1684162218116 }, - "date_of_expiration": { "type": 6, "value": 1686697639483 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684162218116 }, - "money_release_date": { "type": 6, "value": 1684162218116 }, + "date_created": { + "type": 6, + "value": 1684105639483 + }, + "date_last_updated": { + "type": 6, + "value": 1684162218116 + }, + "date_of_expiration": { + "type": 6, + "value": 1686697639483 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684162218116 + }, + "money_release_date": { + "type": 6, + "value": 1684162218116 + }, "money_release_status": "approved", "wasDebited": true }, @@ -46441,9 +59672,18 @@ "original_amount": 9838878, "total_amount": 9838878, "id": 1684624287649, - "date_created": { "type": 6, "value": 1684624287649 }, - "date_last_updated": { "type": 6, "value": 1684624287649 }, - "date_of_expiration": { "type": 6, "value": 1684624287649 }, + "date_created": { + "type": 6, + "value": 1684624287649 + }, + "date_last_updated": { + "type": 6, + "value": 1684624287649 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624287649 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46504,9 +59744,18 @@ "original_amount": 7975273, "total_amount": 7975273, "id": 1685667269938, - "date_created": { "type": 6, "value": 1685667269938 }, - "date_last_updated": { "type": 6, "value": 1685667269938 }, - "date_of_expiration": { "type": 6, "value": 1748825669938 }, + "date_created": { + "type": 6, + "value": 1685667269938 + }, + "date_last_updated": { + "type": 6, + "value": 1685667269938 + }, + "date_of_expiration": { + "type": 6, + "value": 1748825669938 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46522,13 +59771,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history", - "content": { "type": 1, "value": {}, "revision": "lnt02xv8029toohx0g9xb1lt", "revision_nr": 1, "created": 1697467096112, "modified": 1697467096112 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xv8029toohx0g9xb1lt", + "revision_nr": 1, + "created": 1697467096112, + "modified": 1697467096112 + } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02xww02a2oohxdm6ig5ag", "revision_nr": 1, "created": 1697467096118, @@ -46544,7 +59804,10 @@ "dateValidity": 1684103814248, "totalValue": 103.1880266333287, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1697166000000 } + "balancesModificacao": { + "type": 6, + "value": 1697166000000 + } }, "revision": "lnt02xuw029qoohx1t0m0moj", "revision_nr": 1, @@ -46556,7 +59819,11 @@ "path": "ivipcoin-db::__movement_wallet__/081398362853569280/balances/IVIP", "content": { "type": 1, - "value": { "available": "2366500.54000000", "symbol": "IVIP", "value": 355.3 }, + "value": { + "available": "2366500.54000000", + "symbol": "IVIP", + "value": 355.3 + }, "revision": "lnt02xx802a5oohx0bkveyub", "revision_nr": 1, "created": 1697467096130, @@ -46565,7 +59832,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02xx802a4oohxe46v57lo", "revision_nr": 1, "created": 1697467096137, "modified": 1697467096137 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xx802a4oohxe46v57lo", + "revision_nr": 1, + "created": 1697467096137, + "modified": 1697467096137 + } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145/description", @@ -46580,7 +59854,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xxs02a9oohx3084eisn", "revision_nr": 1, "created": 1697467096151, "modified": 1697467096151 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xxs02a9oohx3084eisn", + "revision_nr": 1, + "created": 1697467096151, + "modified": 1697467096151 + } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145", @@ -46594,15 +59877,30 @@ "total_amount": 1500, "history_id": 1677928546145, "id": 1677928546145, - "date_created": { "type": 6, "value": 1677928546145 }, - "date_last_updated": { "type": 6, "value": 1677929119050 }, - "date_of_expiration": { "type": 6, "value": 1680520546145 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677929119050 }, - "money_release_date": { "type": 6, "value": 1677929119050 }, + "date_created": { + "type": 6, + "value": 1677928546145 + }, + "date_last_updated": { + "type": 6, + "value": 1677929119050 + }, + "date_of_expiration": { + "type": 6, + "value": 1680520546145 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677929119050 + }, + "money_release_date": { + "type": 6, + "value": 1677929119050 + }, "money_release_status": "approved", "wasDebited": true }, @@ -46625,7 +59923,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xyd02acoohx8jiu3z5d", "revision_nr": 1, "created": 1697467096171, "modified": 1697467096171 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xyd02acoohx8jiu3z5d", + "revision_nr": 1, + "created": 1697467096171, + "modified": 1697467096171 + } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274", @@ -46639,15 +59946,30 @@ "total_amount": 20, "history_id": 1677787145274, "id": 1677787145274, - "date_created": { "type": 6, "value": 1677787145274 }, - "date_last_updated": { "type": 6, "value": 1677787605317 }, - "date_of_expiration": { "type": 6, "value": 1680379145274 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677787605317 }, - "money_release_date": { "type": 6, "value": 1677787605317 }, + "date_created": { + "type": 6, + "value": 1677787145274 + }, + "date_last_updated": { + "type": 6, + "value": 1677787605317 + }, + "date_of_expiration": { + "type": 6, + "value": 1680379145274 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677787605317 + }, + "money_release_date": { + "type": 6, + "value": 1677787605317 + }, "money_release_status": "approved", "wasDebited": true }, @@ -46693,9 +60015,18 @@ "original_amount": 10760563, "total_amount": 10760563, "id": 1678059759995, - "date_created": { "type": 6, "value": 1678059759995 }, - "date_last_updated": { "type": 6, "value": 1678059759995 }, - "date_of_expiration": { "type": 6, "value": 1678059759995 }, + "date_created": { + "type": 6, + "value": 1678059759995 + }, + "date_last_updated": { + "type": 6, + "value": 1678059759995 + }, + "date_of_expiration": { + "type": 6, + "value": 1678059759995 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46723,7 +60054,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02xz802ahoohxf1sf0m1c", "revision_nr": 1, "created": 1697467096202, "modified": 1697467096202 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02xz802ahoohxf1sf0m1c", + "revision_nr": 1, + "created": 1697467096202, + "modified": 1697467096202 + } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429", @@ -46737,15 +60077,30 @@ "total_amount": 153, "history_id": 1678742795429, "id": 1678742795429, - "date_created": { "type": 6, "value": 1678742795429 }, - "date_last_updated": { "type": 6, "value": 1678742838748 }, - "date_of_expiration": { "type": 6, "value": 1681334795429 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678742838748 }, - "money_release_date": { "type": 6, "value": 1678742838748 }, + "date_created": { + "type": 6, + "value": 1678742795429 + }, + "date_last_updated": { + "type": 6, + "value": 1678742838748 + }, + "date_of_expiration": { + "type": 6, + "value": 1681334795429 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678742838748 + }, + "money_release_date": { + "type": 6, + "value": 1678742838748 + }, "money_release_status": "approved", "wasDebited": true }, @@ -46802,9 +60157,18 @@ "original_amount": 3, "total_amount": 3, "id": 1678209797800, - "date_created": { "type": 6, "value": 1678209797800 }, - "date_last_updated": { "type": 6, "value": 1678209797800 }, - "date_of_expiration": { "type": 6, "value": 1678209797800 }, + "date_created": { + "type": 6, + "value": 1678209797800 + }, + "date_last_updated": { + "type": 6, + "value": 1678209797800 + }, + "date_of_expiration": { + "type": 6, + "value": 1678209797800 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46865,9 +60229,18 @@ "original_amount": 2, "total_amount": 2, "id": 1678215371496, - "date_created": { "type": 6, "value": 1678215371496 }, - "date_last_updated": { "type": 6, "value": 1678215371496 }, - "date_of_expiration": { "type": 6, "value": 1678215371496 }, + "date_created": { + "type": 6, + "value": 1678215371496 + }, + "date_last_updated": { + "type": 6, + "value": 1678215371496 + }, + "date_of_expiration": { + "type": 6, + "value": 1678215371496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46928,9 +60301,18 @@ "original_amount": 9.4, "total_amount": 9.4, "id": 1679267048083, - "date_created": { "type": 6, "value": 1679267048083 }, - "date_last_updated": { "type": 6, "value": 1679267048083 }, - "date_of_expiration": { "type": 6, "value": 1679267048083 }, + "date_created": { + "type": 6, + "value": 1679267048083 + }, + "date_last_updated": { + "type": 6, + "value": 1679267048083 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267048083 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46980,9 +60362,18 @@ "original_amount": 974525, "total_amount": 974525, "id": 1679268223760, - "date_created": { "type": 6, "value": 1679268223760 }, - "date_last_updated": { "type": 6, "value": 1679268223760 }, - "date_of_expiration": { "type": 6, "value": 1679268223760 }, + "date_created": { + "type": 6, + "value": 1679268223760 + }, + "date_last_updated": { + "type": 6, + "value": 1679268223760 + }, + "date_of_expiration": { + "type": 6, + "value": 1679268223760 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47044,9 +60435,18 @@ "original_amount": 10, "total_amount": 10, "id": 1679914966258, - "date_created": { "type": 6, "value": 1679914966258 }, - "date_last_updated": { "type": 6, "value": 1679914966258 }, - "date_of_expiration": { "type": 6, "value": 1679914966258 }, + "date_created": { + "type": 6, + "value": 1679914966258 + }, + "date_last_updated": { + "type": 6, + "value": 1679914966258 + }, + "date_of_expiration": { + "type": 6, + "value": 1679914966258 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47107,9 +60507,18 @@ "original_amount": 203, "total_amount": 203, "id": 1684348398411, - "date_created": { "type": 6, "value": 1684348398411 }, - "date_last_updated": { "type": 6, "value": 1684348398411 }, - "date_of_expiration": { "type": 6, "value": 1684348398411 }, + "date_created": { + "type": 6, + "value": 1684348398411 + }, + "date_last_updated": { + "type": 6, + "value": 1684348398411 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348398411 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47170,9 +60579,18 @@ "original_amount": 9, "total_amount": 9, "id": 1684624161069, - "date_created": { "type": 6, "value": 1684624161069 }, - "date_last_updated": { "type": 6, "value": 1684624161069 }, - "date_of_expiration": { "type": 6, "value": 1684624161069 }, + "date_created": { + "type": 6, + "value": 1684624161069 + }, + "date_last_updated": { + "type": 6, + "value": 1684624161069 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624161069 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47222,9 +60640,18 @@ "original_amount": 1081302, "total_amount": 1081302, "id": 1684624222413, - "date_created": { "type": 6, "value": 1684624222413 }, - "date_last_updated": { "type": 6, "value": 1684624222413 }, - "date_of_expiration": { "type": 6, "value": 1684624222413 }, + "date_created": { + "type": 6, + "value": 1684624222413 + }, + "date_last_updated": { + "type": 6, + "value": 1684624222413 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624222413 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47286,9 +60713,18 @@ "original_amount": 7, "total_amount": 7, "id": 1684624292772, - "date_created": { "type": 6, "value": 1684624292772 }, - "date_last_updated": { "type": 6, "value": 1684624292772 }, - "date_of_expiration": { "type": 6, "value": 1684624292772 }, + "date_created": { + "type": 6, + "value": 1684624292772 + }, + "date_last_updated": { + "type": 6, + "value": 1684624292772 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624292772 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47315,7 +60751,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02y4j02b9oohx3h5x6wph", "revision_nr": 1, "created": 1697467096393, "modified": 1697467096393 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02y4j02b9oohx3h5x6wph", + "revision_nr": 1, + "created": 1697467096393, + "modified": 1697467096393 + } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831", @@ -47329,15 +60774,30 @@ "total_amount": 1061299, "history_id": 1688520874831, "id": 1688520874831, - "date_created": { "type": 6, "value": 1688520874831 }, - "date_last_updated": { "type": 6, "value": 1689257884324 }, - "date_of_expiration": { "type": 6, "value": 1688520874831 }, + "date_created": { + "type": 6, + "value": 1688520874831 + }, + "date_last_updated": { + "type": 6, + "value": 1689257884324 + }, + "date_of_expiration": { + "type": 6, + "value": 1688520874831 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1689257884324 }, - "money_release_date": { "type": 6, "value": 1689257884324 }, + "date_approved": { + "type": 6, + "value": 1689257884324 + }, + "money_release_date": { + "type": 6, + "value": 1689257884324 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -47360,7 +60820,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02y5202bcoohx1ynb2hy8", "revision_nr": 1, "created": 1697467096413, "modified": 1697467096413 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02y5202bcoohx1ynb2hy8", + "revision_nr": 1, + "created": 1697467096413, + "modified": 1697467096413 + } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454", @@ -47374,15 +60843,30 @@ "total_amount": 10045174, "history_id": 1689257644454, "id": 1689257644454, - "date_created": { "type": 6, "value": 1689257644454 }, - "date_last_updated": { "type": 6, "value": 1689356814071 }, - "date_of_expiration": { "type": 6, "value": 1689257644454 }, + "date_created": { + "type": 6, + "value": 1689257644454 + }, + "date_last_updated": { + "type": 6, + "value": 1689356814071 + }, + "date_of_expiration": { + "type": 6, + "value": 1689257644454 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1689356814071 }, - "money_release_date": { "type": 6, "value": 1689356814071 }, + "date_approved": { + "type": 6, + "value": 1689356814071 + }, + "money_release_date": { + "type": 6, + "value": 1689356814071 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -47405,7 +60889,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02y5m02bfoohxg7v3fd5o", "revision_nr": 1, "created": 1697467096432, "modified": 1697467096432 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02y5m02bfoohxg7v3fd5o", + "revision_nr": 1, + "created": 1697467096432, + "modified": 1697467096432 + } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269", @@ -47419,15 +60912,30 @@ "total_amount": 1000, "history_id": 1689463707269, "id": 1689463707269, - "date_created": { "type": 6, "value": 1689463707269 }, - "date_last_updated": { "type": 6, "value": 1689688497994 }, - "date_of_expiration": { "type": 6, "value": 1692055707269 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689688497994 }, - "money_release_date": { "type": 6, "value": 1689688497994 }, + "date_created": { + "type": 6, + "value": 1689463707269 + }, + "date_last_updated": { + "type": 6, + "value": 1689688497994 + }, + "date_of_expiration": { + "type": 6, + "value": 1692055707269 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689688497994 + }, + "money_release_date": { + "type": 6, + "value": 1689688497994 + }, "money_release_status": "approved", "wasDebited": true }, @@ -47473,9 +60981,18 @@ "original_amount": 661120, "total_amount": 661120, "id": 1689688682027, - "date_created": { "type": 6, "value": 1689688682027 }, - "date_last_updated": { "type": 6, "value": 1689688682027 }, - "date_of_expiration": { "type": 6, "value": 1689688682027 }, + "date_created": { + "type": 6, + "value": 1689688682027 + }, + "date_last_updated": { + "type": 6, + "value": 1689688682027 + }, + "date_of_expiration": { + "type": 6, + "value": 1689688682027 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47494,7 +61011,13 @@ "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692810437203 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692810437203 + } + }, "revision": "lnt02y6b02bjoohxc5b6e99z", "revision_nr": 1, "created": 1697467096459, @@ -47556,8 +61079,14 @@ "total_amount": 100, "id": 1690218437204, "history_id": 1690218437204, - "date_created": { "type": 6, "value": 1690218437204 }, - "date_last_updated": { "type": 6, "value": 1690218437204 }, + "date_created": { + "type": 6, + "value": 1690218437204 + }, + "date_last_updated": { + "type": 6, + "value": 1690218437204 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -47626,9 +61155,18 @@ "total_amount": 2362853, "id": 1691105324726, "history_id": 1691105324726, - "date_created": { "type": 6, "value": 1691105324726 }, - "date_last_updated": { "type": 6, "value": 1691105324726 }, - "date_of_expiration": { "type": 6, "value": 1693783724725 }, + "date_created": { + "type": 6, + "value": 1691105324726 + }, + "date_last_updated": { + "type": 6, + "value": 1691105324726 + }, + "date_of_expiration": { + "type": 6, + "value": 1693783724725 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47697,9 +61235,18 @@ "total_amount": 2410110.06, "id": "1693783873313", "history_id": "1693783873313", - "date_created": { "type": 6, "value": 1693783873313 }, - "date_last_updated": { "type": 6, "value": 1693783873313 }, - "date_of_expiration": { "type": 6, "value": 1693783873313 }, + "date_created": { + "type": 6, + "value": 1693783873313 + }, + "date_last_updated": { + "type": 6, + "value": 1693783873313 + }, + "date_of_expiration": { + "type": 6, + "value": 1693783873313 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47768,9 +61315,18 @@ "total_amount": 2410324, "id": "1693916505659", "history_id": "1693916505659", - "date_created": { "type": 6, "value": 1693916505659 }, - "date_last_updated": { "type": 6, "value": 1693916505659 }, - "date_of_expiration": { "type": 6, "value": 1696508505658 }, + "date_created": { + "type": 6, + "value": 1693916505659 + }, + "date_last_updated": { + "type": 6, + "value": 1693916505659 + }, + "date_of_expiration": { + "type": 6, + "value": 1696508505658 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47840,9 +61396,18 @@ "total_amount": 2458530.48, "id": "1696508517073", "history_id": "1696508517073", - "date_created": { "type": 6, "value": 1696508517073 }, - "date_last_updated": { "type": 6, "value": 1696508517073 }, - "date_of_expiration": { "type": 6, "value": 1696508517073 }, + "date_created": { + "type": 6, + "value": 1696508517073 + }, + "date_last_updated": { + "type": 6, + "value": 1696508517073 + }, + "date_of_expiration": { + "type": 6, + "value": 1696508517073 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47912,9 +61477,18 @@ "total_amount": 100000, "id": "1696541853446", "history_id": "1696541853446", - "date_created": { "type": 6, "value": 1696541853446 }, - "date_last_updated": { "type": 6, "value": 1696541853446 }, - "date_of_expiration": { "type": 6, "value": 1759700253408 }, + "date_created": { + "type": 6, + "value": 1696541853446 + }, + "date_last_updated": { + "type": 6, + "value": 1696541853446 + }, + "date_of_expiration": { + "type": 6, + "value": 1759700253408 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47984,9 +61558,18 @@ "total_amount": 2366500, "id": "1696640077573", "history_id": "1696640077573", - "date_created": { "type": 6, "value": 1696640077573 }, - "date_last_updated": { "type": 6, "value": 1696640077573 }, - "date_of_expiration": { "type": 6, "value": 1699318477538 }, + "date_created": { + "type": 6, + "value": 1696640077573 + }, + "date_last_updated": { + "type": 6, + "value": 1696640077573 + }, + "date_of_expiration": { + "type": 6, + "value": 1699318477538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48002,13 +61585,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history", - "content": { "type": 1, "value": {}, "revision": "lnt02xxl02a6oohxhfr9evx1", "revision_nr": 1, "created": 1697467096651, "modified": 1697467096651 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02xxl02a6oohxhfr9evx1", + "revision_nr": 1, + "created": 1697467096651, + "modified": 1697467096651 + } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02ybv02cboohx1dixar57", "revision_nr": 1, "created": 1697467096658, @@ -48019,7 +61613,16 @@ "path": "ivipcoin-db::__movement_wallet__/081398362853569280", "content": { "type": 1, - "value": { "dataModificacao": 1677420406636, "dateValidity": 1678944817912, "totalValue": 779.84, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696561200000 } }, + "value": { + "dataModificacao": 1677420406636, + "dateValidity": 1678944817912, + "totalValue": 779.84, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, "revision": "lnt02xx802a3oohxc4okh07a", "revision_nr": 1, "created": 1697467096665, @@ -48030,7 +61633,11 @@ "path": "ivipcoin-db::__movement_wallet__/083249759247314030/balances/IVIP", "content": { "type": 1, - "value": { "available": "1189036.00000000", "symbol": "IVIP", "value": 151.17 }, + "value": { + "available": "1189036.00000000", + "symbol": "IVIP", + "value": 151.17 + }, "revision": "lnt02yc902ceoohx8ua110lc", "revision_nr": 1, "created": 1697467096671, @@ -48039,13 +61646,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02yc902cdoohx6y0heayg", "revision_nr": 1, "created": 1697467096678, "modified": 1697467096678 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02yc902cdoohx6y0heayg", + "revision_nr": 1, + "created": 1697467096678, + "modified": 1697467096678 + } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698791726584 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698791726584 + } + }, "revision": "lnt02ycm02choohx7unogbr6", "revision_nr": 1, "created": 1697467096684, @@ -48108,8 +61728,14 @@ "total_amount": 10000, "id": "1696199726584", "history_id": "1696199726584", - "date_created": { "type": 6, "value": 1696199726584 }, - "date_last_updated": { "type": 6, "value": 1696199726584 }, + "date_created": { + "type": 6, + "value": 1696199726584 + }, + "date_last_updated": { + "type": 6, + "value": 1696199726584 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -48127,7 +61753,13 @@ "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698801123721 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698801123721 + } + }, "revision": "lnt02ydj02cmoohxeau1eqpl", "revision_nr": 1, "created": 1697467096718, @@ -48190,16 +61822,28 @@ "total_amount": 10000, "id": "1696209123721", "history_id": "1696209123721", - "date_created": { "type": 6, "value": 1696209123721 }, - "date_last_updated": { "type": 6, "value": 1696272500859 }, + "date_created": { + "type": 6, + "value": 1696209123721 + }, + "date_last_updated": { + "type": 6, + "value": 1696272500859 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696272500859 }, - "money_release_date": { "type": 6, "value": 1696272500859 }, + "date_approved": { + "type": 6, + "value": 1696272500859 + }, + "money_release_date": { + "type": 6, + "value": 1696272500859 + }, "money_release_status": "approved", "wasDebited": true }, @@ -48265,9 +61909,18 @@ "total_amount": 10000, "id": "1696355307483", "history_id": "1696355307483", - "date_created": { "type": 6, "value": 1696355307483 }, - "date_last_updated": { "type": 6, "value": 1696355307483 }, - "date_of_expiration": { "type": 6, "value": 1699033707483 }, + "date_created": { + "type": 6, + "value": 1696355307483 + }, + "date_last_updated": { + "type": 6, + "value": 1696355307483 + }, + "date_of_expiration": { + "type": 6, + "value": 1699033707483 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48285,7 +61938,13 @@ "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699201715603 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699201715603 + } + }, "revision": "lnt02yf802cvoohx1p5f7xz5", "revision_nr": 1, "created": 1697467096779, @@ -48348,16 +62007,28 @@ "total_amount": 250, "id": "1696609715603", "history_id": "1696609715603", - "date_created": { "type": 6, "value": 1696609715603 }, - "date_last_updated": { "type": 6, "value": 1696611008116 }, + "date_created": { + "type": 6, + "value": 1696609715603 + }, + "date_last_updated": { + "type": 6, + "value": 1696611008116 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696611008116 }, - "money_release_date": { "type": 6, "value": 1696611008116 }, + "date_approved": { + "type": 6, + "value": 1696611008116 + }, + "money_release_date": { + "type": 6, + "value": 1696611008116 + }, "money_release_status": "approved", "wasDebited": true }, @@ -48371,7 +62042,13 @@ "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699202450136 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699202450136 + } + }, "revision": "lnt02yga02d0oohx9s9be541", "revision_nr": 1, "created": 1697467096821, @@ -48434,16 +62111,28 @@ "total_amount": 868000, "id": "1696610450136", "history_id": "1696610450136", - "date_created": { "type": 6, "value": 1696610450136 }, - "date_last_updated": { "type": 6, "value": 1696611986733 }, + "date_created": { + "type": 6, + "value": 1696610450136 + }, + "date_last_updated": { + "type": 6, + "value": 1696611986733 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696611986733 }, - "money_release_date": { "type": 6, "value": 1696611986733 }, + "date_approved": { + "type": 6, + "value": 1696611986733 + }, + "money_release_date": { + "type": 6, + "value": 1696611986733 + }, "money_release_status": "approved", "wasDebited": true }, @@ -48498,9 +62187,18 @@ "total_amount": 321036, "id": "1696611534552", "history_id": "1696611534552", - "date_created": { "type": 6, "value": 1696611534552 }, - "date_last_updated": { "type": 6, "value": 1696611534552 }, - "date_of_expiration": { "type": 6, "value": 1696611534552 }, + "date_created": { + "type": 6, + "value": 1696611534552 + }, + "date_last_updated": { + "type": 6, + "value": 1696611534552 + }, + "date_of_expiration": { + "type": 6, + "value": 1696611534552 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -48517,13 +62215,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history", - "content": { "type": 1, "value": {}, "revision": "lnt02ycm02cfoohx6c113m7b", "revision_nr": 1, "created": 1697467096879, "modified": 1697467096879 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ycm02cfoohx6c113m7b", + "revision_nr": 1, + "created": 1697467096879, + "modified": 1697467096879 + } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02yi702d7oohxck4yehl7", "revision_nr": 1, "created": 1697467096886, @@ -48534,7 +62243,15 @@ "path": "ivipcoin-db::__movement_wallet__/083249759247314030", "content": { "type": 1, - "value": { "dataModificacao": 1696067091160, "dateValidity": 1696067091189, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696820400000 } }, + "value": { + "dataModificacao": 1696067091160, + "dateValidity": 1696067091189, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } + }, "revision": "lnt02yc902ccoohx9p4q83yz", "revision_nr": 1, "created": 1697467096893, @@ -48545,7 +62262,13 @@ "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698340651115 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698340651115 + } + }, "revision": "lnt02yim02dboohx4vog8y1v", "revision_nr": 1, "created": 1697467096900, @@ -48608,8 +62331,14 @@ "total_amount": 1000, "id": "1695748651115", "history_id": "1695748651115", - "date_created": { "type": 6, "value": 1695748651115 }, - "date_last_updated": { "type": 6, "value": 1695748651115 }, + "date_created": { + "type": 6, + "value": 1695748651115 + }, + "date_last_updated": { + "type": 6, + "value": 1695748651115 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -48627,7 +62356,13 @@ "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698340743839 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698340743839 + } + }, "revision": "lnt02yjj02dgoohx2i49hrf3", "revision_nr": 1, "created": 1697467096934, @@ -48690,8 +62425,14 @@ "total_amount": 1000, "id": "1695748743840", "history_id": "1695748743840", - "date_created": { "type": 6, "value": 1695748743840 }, - "date_last_updated": { "type": 6, "value": 1695748743840 }, + "date_created": { + "type": 6, + "value": 1695748743840 + }, + "date_last_updated": { + "type": 6, + "value": 1695748743840 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -48709,7 +62450,13 @@ "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698340845971 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698340845971 + } + }, "revision": "lnt02ykj02dloohxakul8882", "revision_nr": 1, "created": 1697467096971, @@ -48772,8 +62519,14 @@ "total_amount": 1000, "id": "1695748845971", "history_id": "1695748845971", - "date_created": { "type": 6, "value": 1695748845971 }, - "date_last_updated": { "type": 6, "value": 1695748845971 }, + "date_created": { + "type": 6, + "value": 1695748845971 + }, + "date_last_updated": { + "type": 6, + "value": 1695748845971 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -48789,13 +62542,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history", - "content": { "type": 1, "value": {}, "revision": "lnt02yil02d9oohxet4ah26j", "revision_nr": 1, "created": 1697467097005, "modified": 1697467097005 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02yil02d9oohxet4ah26j", + "revision_nr": 1, + "created": 1697467097005, + "modified": 1697467097005 + } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02ylp02dpoohxb6vj8x2x", "revision_nr": 1, "created": 1697467097012, @@ -48806,7 +62570,16 @@ "path": "ivipcoin-db::__movement_wallet__/084938385673306140", "content": { "type": 1, - "value": { "dataModificacao": 1695748509301, "dateValidity": 1695748509557, "balances": {}, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1695870000000 } }, + "value": { + "dataModificacao": 1695748509301, + "dateValidity": 1695748509557, + "balances": {}, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1695870000000 + } + }, "revision": "lnt02yil02d8oohx39ace2jc", "revision_nr": 1, "created": 1697467097019, @@ -48826,7 +62599,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02ymb02duoohxc0655v09", "revision_nr": 1, "created": 1697467097034, "modified": 1697467097034 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02ymb02duoohxc0655v09", + "revision_nr": 1, + "created": 1697467097034, + "modified": 1697467097034 + } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732", @@ -48840,15 +62622,30 @@ "total_amount": 200, "history_id": 1678035077732, "id": 1678035077732, - "date_created": { "type": 6, "value": 1678035077732 }, - "date_last_updated": { "type": 6, "value": 1678129028692 }, - "date_of_expiration": { "type": 6, "value": 1680627077732 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678129028692 }, - "money_release_date": { "type": 6, "value": 1678129028692 }, + "date_created": { + "type": 6, + "value": 1678035077732 + }, + "date_last_updated": { + "type": 6, + "value": 1678129028692 + }, + "date_of_expiration": { + "type": 6, + "value": 1680627077732 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678129028692 + }, + "money_release_date": { + "type": 6, + "value": 1678129028692 + }, "money_release_status": "approved", "wasDebited": true }, @@ -48894,9 +62691,18 @@ "original_amount": 1426241, "total_amount": 1426241, "id": 1678163430853, - "date_created": { "type": 6, "value": 1678163430853 }, - "date_last_updated": { "type": 6, "value": 1678163430853 }, - "date_of_expiration": { "type": 6, "value": 1678163430853 }, + "date_created": { + "type": 6, + "value": 1678163430853 + }, + "date_last_updated": { + "type": 6, + "value": 1678163430853 + }, + "date_of_expiration": { + "type": 6, + "value": 1678163430853 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48924,7 +62730,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02yn802dzoohxf7ag7uiz", "revision_nr": 1, "created": 1697467097066, "modified": 1697467097066 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02yn802dzoohxf7ag7uiz", + "revision_nr": 1, + "created": 1697467097066, + "modified": 1697467097066 + } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198", @@ -48938,15 +62753,30 @@ "total_amount": 200, "history_id": 1681136191198, "id": 1681136191198, - "date_created": { "type": 6, "value": 1681136191198 }, - "date_last_updated": { "type": 6, "value": 1681137381704 }, - "date_of_expiration": { "type": 6, "value": 1683728191198 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1681137381704 }, - "money_release_date": { "type": 6, "value": 1681137381704 }, + "date_created": { + "type": 6, + "value": 1681136191198 + }, + "date_last_updated": { + "type": 6, + "value": 1681137381704 + }, + "date_of_expiration": { + "type": 6, + "value": 1683728191198 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1681137381704 + }, + "money_release_date": { + "type": 6, + "value": 1681137381704 + }, "money_release_status": "approved", "wasDebited": true }, @@ -48992,9 +62822,18 @@ "original_amount": 976097, "total_amount": 976097, "id": 1684632748749, - "date_created": { "type": 6, "value": 1684632748749 }, - "date_last_updated": { "type": 6, "value": 1684632748749 }, - "date_of_expiration": { "type": 6, "value": 1684632748749 }, + "date_created": { + "type": 6, + "value": 1684632748749 + }, + "date_last_updated": { + "type": 6, + "value": 1684632748749 + }, + "date_of_expiration": { + "type": 6, + "value": 1684632748749 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49022,7 +62861,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02yo702e4oohx70vp62bf", "revision_nr": 1, "created": 1697467097101, "modified": 1697467097101 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02yo702e4oohx70vp62bf", + "revision_nr": 1, + "created": 1697467097101, + "modified": 1697467097101 + } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732", @@ -49036,9 +62884,18 @@ "total_amount": 1200, "history_id": 1685109385732, "id": 1685109385732, - "date_created": { "type": 6, "value": 1685109385732 }, - "date_last_updated": { "type": 6, "value": 1685109385732 }, - "date_of_expiration": { "type": 6, "value": 1687701385732 }, + "date_created": { + "type": 6, + "value": 1685109385732 + }, + "date_last_updated": { + "type": 6, + "value": 1685109385732 + }, + "date_of_expiration": { + "type": 6, + "value": 1687701385732 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -49063,7 +62920,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02yor02e7oohx6k4ea9sg", "revision_nr": 1, "created": 1697467097121, "modified": 1697467097121 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02yor02e7oohx6k4ea9sg", + "revision_nr": 1, + "created": 1697467097121, + "modified": 1697467097121 + } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881", @@ -49077,9 +62943,18 @@ "total_amount": 1200, "history_id": 1685109442881, "id": 1685109442881, - "date_created": { "type": 6, "value": 1685109442881 }, - "date_last_updated": { "type": 6, "value": 1685109442881 }, - "date_of_expiration": { "type": 6, "value": 1687701442881 }, + "date_created": { + "type": 6, + "value": 1685109442881 + }, + "date_last_updated": { + "type": 6, + "value": 1685109442881 + }, + "date_of_expiration": { + "type": 6, + "value": 1687701442881 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -49104,7 +62979,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02ypb02eaoohx1tad2ajm", "revision_nr": 1, "created": 1697467097143, "modified": 1697467097143 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02ypb02eaoohx1tad2ajm", + "revision_nr": 1, + "created": 1697467097143, + "modified": 1697467097143 + } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014", @@ -49118,15 +63002,30 @@ "total_amount": 1200, "history_id": 1685213653014, "id": 1685213653014, - "date_created": { "type": 6, "value": 1685213653014 }, - "date_last_updated": { "type": 6, "value": 1685364258194 }, - "date_of_expiration": { "type": 6, "value": 1687805653014 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685364258194 }, - "money_release_date": { "type": 6, "value": 1685364258194 }, + "date_created": { + "type": 6, + "value": 1685213653014 + }, + "date_last_updated": { + "type": 6, + "value": 1685364258194 + }, + "date_of_expiration": { + "type": 6, + "value": 1687805653014 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685364258194 + }, + "money_release_date": { + "type": 6, + "value": 1685364258194 + }, "money_release_status": "approved", "wasDebited": true }, @@ -49182,9 +63081,18 @@ "original_amount": 2402000, "total_amount": 2402000, "id": 1685666059762, - "date_created": { "type": 6, "value": 1685666059762 }, - "date_last_updated": { "type": 6, "value": 1685666059762 }, - "date_of_expiration": { "type": 6, "value": 1717288459762 }, + "date_created": { + "type": 6, + "value": 1685666059762 + }, + "date_last_updated": { + "type": 6, + "value": 1685666059762 + }, + "date_of_expiration": { + "type": 6, + "value": 1717288459762 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49234,9 +63142,18 @@ "original_amount": 4214736, "total_amount": 4214736, "id": 1685744731387, - "date_created": { "type": 6, "value": 1685744731387 }, - "date_last_updated": { "type": 6, "value": 1685744731387 }, - "date_of_expiration": { "type": 6, "value": 1685744731387 }, + "date_created": { + "type": 6, + "value": 1685744731387 + }, + "date_last_updated": { + "type": 6, + "value": 1685744731387 + }, + "date_of_expiration": { + "type": 6, + "value": 1685744731387 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49297,9 +63214,18 @@ "original_amount": 4000000, "total_amount": 4000000, "id": 1688521364022, - "date_created": { "type": 6, "value": 1688521364022 }, - "date_last_updated": { "type": 6, "value": 1688521364022 }, - "date_of_expiration": { "type": 6, "value": 1691199764022 }, + "date_created": { + "type": 6, + "value": 1688521364022 + }, + "date_last_updated": { + "type": 6, + "value": 1688521364022 + }, + "date_of_expiration": { + "type": 6, + "value": 1691199764022 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49368,9 +63294,18 @@ "total_amount": 4080000, "id": 1691199857902, "history_id": 1691199857902, - "date_created": { "type": 6, "value": 1691199857902 }, - "date_last_updated": { "type": 6, "value": 1691199857902 }, - "date_of_expiration": { "type": 6, "value": 1691199857902 }, + "date_created": { + "type": 6, + "value": 1691199857902 + }, + "date_last_updated": { + "type": 6, + "value": 1691199857902 + }, + "date_of_expiration": { + "type": 6, + "value": 1691199857902 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49410,7 +63345,11 @@ "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 124986.6534 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 124986.6534 + }, "revision": "lnt02ysd02esoohx1k32gmgs", "revision_nr": 1, "created": 1697467097254, @@ -49419,7 +63358,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02ysd02eroohx0zprga56", "revision_nr": 1, "created": 1697467097261, "modified": 1697467097261 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02ysd02eroohx0zprga56", + "revision_nr": 1, + "created": 1697467097261, + "modified": 1697467097261 + } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details", @@ -49453,16 +63399,28 @@ "total_amount": 4166221.78, "id": 1691271945589, "history_id": 1691271945589, - "date_created": { "type": 6, "value": 1691271945589 }, - "date_last_updated": { "type": 6, "value": 1692196076970 }, - "date_of_expiration": { "type": 6, "value": 1691271945589 }, + "date_created": { + "type": 6, + "value": 1691271945589 + }, + "date_last_updated": { + "type": 6, + "value": 1692196076970 + }, + "date_of_expiration": { + "type": 6, + "value": 1691271945589 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": { "type": 6, "value": 1692196076970 }, + "money_release_date": { + "type": 6, + "value": 1692196076970 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -49498,7 +63456,11 @@ "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 124986.6534 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 124986.6534 + }, "revision": "lnt02ytl02eyoohxakp8gtis", "revision_nr": 1, "created": 1697467097295, @@ -49507,7 +63469,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02ytl02exoohx6rc0gp3z", "revision_nr": 1, "created": 1697467097302, "modified": 1697467097302 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02ytl02exoohx6rc0gp3z", + "revision_nr": 1, + "created": 1697467097302, + "modified": 1697467097302 + } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details", @@ -49541,17 +63510,32 @@ "total_amount": 4166221.78, "id": 1691437746780, "history_id": 1691437746780, - "date_created": { "type": 6, "value": 1691437746780 }, - "date_last_updated": { "type": 6, "value": 1691509186843 }, - "date_of_expiration": { "type": 6, "value": 1691437746780 }, + "date_created": { + "type": 6, + "value": 1691437746780 + }, + "date_last_updated": { + "type": 6, + "value": 1691509186843 + }, + "date_of_expiration": { + "type": 6, + "value": 1691437746780 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1691509186843 }, - "money_release_date": { "type": 6, "value": 1691509186843 }, + "date_approved": { + "type": 6, + "value": 1691509186843 + }, + "money_release_date": { + "type": 6, + "value": 1691509186843 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -49563,13 +63547,32 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history", - "content": { "type": 1, "value": {}, "revision": "lnt02ym302droohx0hxk7ri3", "revision_nr": 1, "created": 1697467097322, "modified": 1697467097322 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ym302droohx0hxk7ri3", + "revision_nr": 1, + "created": 1697467097322, + "modified": 1697467097322 + } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1679167350161 }, "lastReview": { "type": 6, "value": 1679261140619 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1679167350161 + }, + "lastReview": { + "type": 6, + "value": 1679261140619 + } + }, "revision": "lnt02yui02ezoohx06ndcn9o", "revision_nr": 1, "created": 1697467097329, @@ -49586,7 +63589,10 @@ "totalValue": 14.089318085490447, "currencyType": "USD", "balances": {}, - "balancesModificacao": { "type": 6, "value": 1696561200000 } + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } }, "revision": "lnt02ym302dqoohx3my2fyx6", "revision_nr": 1, @@ -49607,7 +63613,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02yv402f4oohx3gz2e18x", "revision_nr": 1, "created": 1697467097350, "modified": 1697467097350 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02yv402f4oohx3gz2e18x", + "revision_nr": 1, + "created": 1697467097350, + "modified": 1697467097350 + } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133", @@ -49621,14 +63636,26 @@ "total_amount": 300, "history_id": 1677939492133, "id": 1677939492133, - "date_created": { "type": 6, "value": 1677939492133 }, - "date_last_updated": { "type": 6, "value": 1678714240045 }, - "date_of_expiration": { "type": 6, "value": 1680531492133 }, + "date_created": { + "type": 6, + "value": 1677939492133 + }, + "date_last_updated": { + "type": 6, + "value": 1678714240045 + }, + "date_of_expiration": { + "type": 6, + "value": 1680531492133 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678714240045 }, + "money_release_date": { + "type": 6, + "value": 1678714240045 + }, "money_release_status": "rejected" }, "revision": "lnt02yuw02f2oohxa4jxb347", @@ -49639,13 +63666,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history", - "content": { "type": 1, "value": {}, "revision": "lnt02yuw02f1oohxa0sm3s35", "revision_nr": 1, "created": 1697467097364, "modified": 1697467097364 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02yuw02f1oohxa0sm3s35", + "revision_nr": 1, + "created": 1697467097364, + "modified": 1697467097364 + } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02yvo02f5oohx2pu4dzxd", "revision_nr": 1, "created": 1697467097370, @@ -49656,7 +63694,13 @@ "path": "ivipcoin-db::__movement_wallet__/085869720472730110", "content": { "type": 1, - "value": { "dataModificacao": 1677772587436, "dateValidity": 1678142633851, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677772587436, + "dateValidity": 1678142633851, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02yuw02f0oohxcwlz7ye2", "revision_nr": 1, "created": 1697467097377, @@ -49667,7 +63711,11 @@ "path": "ivipcoin-db::__movement_wallet__/087877902032143410/balances/IVIP", "content": { "type": 1, - "value": { "available": "1370911.00000000", "symbol": "IVIP", "value": 901.85 }, + "value": { + "available": "1370911.00000000", + "symbol": "IVIP", + "value": 901.85 + }, "revision": "lnt02yw102f8oohx20yo25df", "revision_nr": 1, "created": 1697467097384, @@ -49676,7 +63724,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02yw102f7oohxhjho6i30", "revision_nr": 1, "created": 1697467097392, "modified": 1697467097392 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02yw102f7oohxhjho6i30", + "revision_nr": 1, + "created": 1697467097392, + "modified": 1697467097392 + } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816/description", @@ -49691,7 +63746,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02ywn02fcoohxhmhq3r7f", "revision_nr": 1, "created": 1697467097407, "modified": 1697467097407 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02ywn02fcoohxhmhq3r7f", + "revision_nr": 1, + "created": 1697467097407, + "modified": 1697467097407 + } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816", @@ -49705,15 +63769,30 @@ "total_amount": 140, "history_id": 1678097305816, "id": 1678097305816, - "date_created": { "type": 6, "value": 1678097305816 }, - "date_last_updated": { "type": 6, "value": 1678214824970 }, - "date_of_expiration": { "type": 6, "value": 1680689305816 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678214824970 }, - "money_release_date": { "type": 6, "value": 1678214824970 }, + "date_created": { + "type": 6, + "value": 1678097305816 + }, + "date_last_updated": { + "type": 6, + "value": 1678214824970 + }, + "date_of_expiration": { + "type": 6, + "value": 1680689305816 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678214824970 + }, + "money_release_date": { + "type": 6, + "value": 1678214824970 + }, "money_release_status": "approved", "wasDebited": true }, @@ -49771,7 +63850,11 @@ "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 1.00%", "amount": 1.1111 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 1.00%", + "amount": 1.1111 + }, "revision": "lnt02yxt02fkoohx0g9yga6v", "revision_nr": 1, "created": 1697467097448, @@ -49780,13 +63863,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt02yxt02fjoohx8ede1fv4", "revision_nr": 1, "created": 1697467097457, "modified": 1697467097457 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt02yxt02fjoohx8ede1fv4", + "revision_nr": 1, + "created": 1697467097457, + "modified": 1697467097457 + } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, "revision": "lnt02yy902fmoohxb2l93tye", "revision_nr": 1, "created": 1697467097463, @@ -49795,13 +63887,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt02yy902floohx4znwgzya", "revision_nr": 1, "created": 1697467097471, "modified": 1697467097471 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt02yy902floohx4znwgzya", + "revision_nr": 1, + "created": 1697467097471, + "modified": 1697467097471 + } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 112.22, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 112.22, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt02yx902ffoohx6yf400qu", "revision_nr": 1, "created": 1697467097478, @@ -49820,9 +63927,18 @@ "total_amount": 112.22, "history_id": 1679947244258, "id": 1312322778, - "date_created": { "type": 6, "value": 1679947245050 }, - "date_last_updated": { "type": 6, "value": 1679947245050 }, - "date_of_expiration": { "type": 6, "value": 1680033644758 }, + "date_created": { + "type": 6, + "value": 1679947245050 + }, + "date_last_updated": { + "type": 6, + "value": 1679947245050 + }, + "date_of_expiration": { + "type": 6, + "value": 1680033644758 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -49871,9 +63987,18 @@ "original_amount": 500004, "total_amount": 500004, "id": 1680260155565, - "date_created": { "type": 6, "value": 1680260155565 }, - "date_last_updated": { "type": 6, "value": 1680260155565 }, - "date_of_expiration": { "type": 6, "value": 1680260155565 }, + "date_created": { + "type": 6, + "value": 1680260155565 + }, + "date_last_updated": { + "type": 6, + "value": 1680260155565 + }, + "date_of_expiration": { + "type": 6, + "value": 1680260155565 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49924,9 +64049,18 @@ "original_amount": 267396, "total_amount": 267396, "id": 1680391431083, - "date_created": { "type": 6, "value": 1680391431083 }, - "date_last_updated": { "type": 6, "value": 1680391431083 }, - "date_of_expiration": { "type": 6, "value": 1680391431083 }, + "date_created": { + "type": 6, + "value": 1680391431083 + }, + "date_last_updated": { + "type": 6, + "value": 1680391431083 + }, + "date_of_expiration": { + "type": 6, + "value": 1680391431083 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49954,7 +64088,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02z0202ftoohxbggxg2k5", "revision_nr": 1, "created": 1697467097528, "modified": 1697467097528 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02z0202ftoohxbggxg2k5", + "revision_nr": 1, + "created": 1697467097528, + "modified": 1697467097528 + } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250", @@ -49968,15 +64111,30 @@ "total_amount": 99.99, "history_id": 1683913607250, "id": 1683913607250, - "date_created": { "type": 6, "value": 1683913607250 }, - "date_last_updated": { "type": 6, "value": 1683918275703 }, - "date_of_expiration": { "type": 6, "value": 1686505607250 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683918275703 }, - "money_release_date": { "type": 6, "value": 1683918275703 }, + "date_created": { + "type": 6, + "value": 1683913607250 + }, + "date_last_updated": { + "type": 6, + "value": 1683918275703 + }, + "date_of_expiration": { + "type": 6, + "value": 1686505607250 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683918275703 + }, + "money_release_date": { + "type": 6, + "value": 1683918275703 + }, "money_release_status": "approved", "wasDebited": true }, @@ -50022,9 +64180,18 @@ "original_amount": 487512, "total_amount": 487512, "id": 1684628885106, - "date_created": { "type": 6, "value": 1684628885106 }, - "date_last_updated": { "type": 6, "value": 1684628885106 }, - "date_of_expiration": { "type": 6, "value": 1684628885106 }, + "date_created": { + "type": 6, + "value": 1684628885106 + }, + "date_last_updated": { + "type": 6, + "value": 1684628885106 + }, + "date_of_expiration": { + "type": 6, + "value": 1684628885106 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50043,7 +64210,13 @@ "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693414337210 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693414337210 + } + }, "revision": "lnt02z0t02fxoohxhgjdf70q", "revision_nr": 1, "created": 1697467097555, @@ -50105,8 +64278,14 @@ "total_amount": 20, "id": 1690822337211, "history_id": 1690822337211, - "date_created": { "type": 6, "value": 1690822337211 }, - "date_last_updated": { "type": 6, "value": 1690822337211 }, + "date_created": { + "type": 6, + "value": 1690822337211 + }, + "date_last_updated": { + "type": 6, + "value": 1690822337211 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -50124,7 +64303,13 @@ "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693414439890 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693414439890 + } + }, "revision": "lnt02z1s02g2oohx4ug06fx4", "revision_nr": 1, "created": 1697467097592, @@ -50186,16 +64371,28 @@ "total_amount": 100, "id": 1690822439890, "history_id": 1690822439890, - "date_created": { "type": 6, "value": 1690822439890 }, - "date_last_updated": { "type": 6, "value": 1690837212866 }, + "date_created": { + "type": 6, + "value": 1690822439890 + }, + "date_last_updated": { + "type": 6, + "value": 1690837212866 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1690837212866 }, - "money_release_date": { "type": 6, "value": 1690837212866 }, + "date_approved": { + "type": 6, + "value": 1690837212866 + }, + "money_release_date": { + "type": 6, + "value": 1690837212866 + }, "money_release_status": "approved", "wasDebited": true }, @@ -50250,9 +64447,18 @@ "total_amount": 115999, "id": "1695782499707", "history_id": "1695782499707", - "date_created": { "type": 6, "value": 1695782499707 }, - "date_last_updated": { "type": 6, "value": 1695782499707 }, - "date_of_expiration": { "type": 6, "value": 1695782499707 }, + "date_created": { + "type": 6, + "value": 1695782499707 + }, + "date_last_updated": { + "type": 6, + "value": 1695782499707 + }, + "date_of_expiration": { + "type": 6, + "value": 1695782499707 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -50269,13 +64475,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history", - "content": { "type": 1, "value": {}, "revision": "lnt02ywg02f9oohxbvac1b2p", "revision_nr": 1, "created": 1697467097646, "modified": 1697467097646 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02ywg02f9oohxbvac1b2p", + "revision_nr": 1, + "created": 1697467097646, + "modified": 1697467097646 + } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02z3i02g9oohxeajd26sj", "revision_nr": 1, "created": 1697467097653, @@ -50286,7 +64503,16 @@ "path": "ivipcoin-db::__movement_wallet__/087877902032143410", "content": { "type": 1, - "value": { "dataModificacao": 1677405879103, "dateValidity": 1678984144008, "totalValue": 47.38, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696906800000 } }, + "value": { + "dataModificacao": 1677405879103, + "dateValidity": 1678984144008, + "totalValue": 47.38, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696906800000 + } + }, "revision": "lnt02yw102f6oohxf1skh9t5", "revision_nr": 1, "created": 1697467097661, @@ -50297,7 +64523,11 @@ "path": "ivipcoin-db::__movement_wallet__/088753368634775000/balances/IVIP", "content": { "type": 1, - "value": { "available": "16470.00000000", "symbol": "IVIP", "value": 4.22 }, + "value": { + "available": "16470.00000000", + "symbol": "IVIP", + "value": 4.22 + }, "revision": "lnt02z3x02gcoohxcmiiet1y", "revision_nr": 1, "created": 1697467097667, @@ -50306,7 +64536,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02z3x02gboohx4rsm0hrq", "revision_nr": 1, "created": 1697467097674, "modified": 1697467097674 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02z3x02gboohx4rsm0hrq", + "revision_nr": 1, + "created": 1697467097674, + "modified": 1697467097674 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598/description", @@ -50321,7 +64558,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02z4h02ggoohx6c063zm5", "revision_nr": 1, "created": 1697467097688, "modified": 1697467097688 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02z4h02ggoohx6c063zm5", + "revision_nr": 1, + "created": 1697467097688, + "modified": 1697467097688 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598", @@ -50335,15 +64581,30 @@ "total_amount": 500, "history_id": 1684164750598, "id": 1684164750598, - "date_created": { "type": 6, "value": 1684164750598 }, - "date_last_updated": { "type": 6, "value": 1684185652543 }, - "date_of_expiration": { "type": 6, "value": 1686756750598 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684185652543 }, - "money_release_date": { "type": 6, "value": 1684185652543 }, + "date_created": { + "type": 6, + "value": 1684164750598 + }, + "date_last_updated": { + "type": 6, + "value": 1684185652543 + }, + "date_of_expiration": { + "type": 6, + "value": 1686756750598 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684185652543 + }, + "money_release_date": { + "type": 6, + "value": 1684185652543 + }, "money_release_status": "approved", "wasDebited": true }, @@ -50366,7 +64627,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02z5102gjoohx67indtv4", "revision_nr": 1, "created": 1697467097710, "modified": 1697467097710 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02z5102gjoohx67indtv4", + "revision_nr": 1, + "created": 1697467097710, + "modified": 1697467097710 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184", @@ -50380,9 +64650,18 @@ "total_amount": 1800, "history_id": 1684165632184, "id": 1684165632184, - "date_created": { "type": 6, "value": 1684165632184 }, - "date_last_updated": { "type": 6, "value": 1684165632184 }, - "date_of_expiration": { "type": 6, "value": 1686757632184 }, + "date_created": { + "type": 6, + "value": 1684165632184 + }, + "date_last_updated": { + "type": 6, + "value": 1684165632184 + }, + "date_of_expiration": { + "type": 6, + "value": 1686757632184 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -50407,7 +64686,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02z5o02gmoohxede1c4j4", "revision_nr": 1, "created": 1697467097731, "modified": 1697467097731 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02z5o02gmoohxede1c4j4", + "revision_nr": 1, + "created": 1697467097731, + "modified": 1697467097731 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873", @@ -50421,15 +64709,30 @@ "total_amount": 150, "history_id": 1684452112873, "id": 1684452112873, - "date_created": { "type": 6, "value": 1684452112873 }, - "date_last_updated": { "type": 6, "value": 1684452414072 }, - "date_of_expiration": { "type": 6, "value": 1687044112873 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684452414072 }, - "money_release_date": { "type": 6, "value": 1684452414072 }, + "date_created": { + "type": 6, + "value": 1684452112873 + }, + "date_last_updated": { + "type": 6, + "value": 1684452414072 + }, + "date_of_expiration": { + "type": 6, + "value": 1687044112873 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684452414072 + }, + "money_release_date": { + "type": 6, + "value": 1684452414072 + }, "money_release_status": "approved", "wasDebited": true }, @@ -50452,7 +64755,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02z6902gpoohx820c9krp", "revision_nr": 1, "created": 1697467097752, "modified": 1697467097752 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02z6902gpoohx820c9krp", + "revision_nr": 1, + "created": 1697467097752, + "modified": 1697467097752 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805", @@ -50466,14 +64778,26 @@ "total_amount": 500, "history_id": 1684519388805, "id": 1684519388805, - "date_created": { "type": 6, "value": 1684519388805 }, - "date_last_updated": { "type": 6, "value": 1684556278179 }, - "date_of_expiration": { "type": 6, "value": 1687111388805 }, + "date_created": { + "type": 6, + "value": 1684519388805 + }, + "date_last_updated": { + "type": 6, + "value": 1684556278179 + }, + "date_of_expiration": { + "type": 6, + "value": 1687111388805 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1684556278179 }, + "money_release_date": { + "type": 6, + "value": 1684556278179 + }, "money_release_status": "rejected" }, "revision": "lnt02z6202gnoohx7rxl3h9b", @@ -50495,7 +64819,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02z6v02gsoohxaz5v6dyk", "revision_nr": 1, "created": 1697467097775, "modified": 1697467097775 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02z6v02gsoohxaz5v6dyk", + "revision_nr": 1, + "created": 1697467097775, + "modified": 1697467097775 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500", @@ -50509,14 +64842,26 @@ "total_amount": 950, "history_id": 1684538973500, "id": 1684538973500, - "date_created": { "type": 6, "value": 1684538973500 }, - "date_last_updated": { "type": 6, "value": 1684555702071 }, - "date_of_expiration": { "type": 6, "value": 1687130973500 }, + "date_created": { + "type": 6, + "value": 1684538973500 + }, + "date_last_updated": { + "type": 6, + "value": 1684555702071 + }, + "date_of_expiration": { + "type": 6, + "value": 1687130973500 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1684555702071 }, + "money_release_date": { + "type": 6, + "value": 1684555702071 + }, "money_release_status": "rejected" }, "revision": "lnt02z6o02gqoohxh3927b6y", @@ -50538,7 +64883,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02z7g02gvoohxhgoha2x4", "revision_nr": 1, "created": 1697467097796, "modified": 1697467097796 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02z7g02gvoohxhgoha2x4", + "revision_nr": 1, + "created": 1697467097796, + "modified": 1697467097796 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383", @@ -50552,14 +64906,26 @@ "total_amount": 950, "history_id": 1684540522383, "id": 1684540522383, - "date_created": { "type": 6, "value": 1684540522383 }, - "date_last_updated": { "type": 6, "value": 1684618713877 }, - "date_of_expiration": { "type": 6, "value": 1687132522383 }, + "date_created": { + "type": 6, + "value": 1684540522383 + }, + "date_last_updated": { + "type": 6, + "value": 1684618713877 + }, + "date_of_expiration": { + "type": 6, + "value": 1687132522383 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1684618713877 }, + "money_release_date": { + "type": 6, + "value": 1684618713877 + }, "money_release_status": "rejected" }, "revision": "lnt02z7a02gtoohxbtblgu4g", @@ -50581,7 +64947,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02z8102gyoohx2q33a0bm", "revision_nr": 1, "created": 1697467097815, "modified": 1697467097815 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02z8102gyoohx2q33a0bm", + "revision_nr": 1, + "created": 1697467097815, + "modified": 1697467097815 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647", @@ -50595,15 +64970,30 @@ "total_amount": 950, "history_id": 1684589302647, "id": 1684589302647, - "date_created": { "type": 6, "value": 1684589302647 }, - "date_last_updated": { "type": 6, "value": 1684594446380 }, - "date_of_expiration": { "type": 6, "value": 1687181302647 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684594446380 }, - "money_release_date": { "type": 6, "value": 1684594446380 }, + "date_created": { + "type": 6, + "value": 1684589302647 + }, + "date_last_updated": { + "type": 6, + "value": 1684594446380 + }, + "date_of_expiration": { + "type": 6, + "value": 1687181302647 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684594446380 + }, + "money_release_date": { + "type": 6, + "value": 1684594446380 + }, "money_release_status": "approved", "wasDebited": true }, @@ -50649,9 +65039,18 @@ "original_amount": 7793170, "total_amount": 7793170, "id": 1684624236329, - "date_created": { "type": 6, "value": 1684624236329 }, - "date_last_updated": { "type": 6, "value": 1684624236329 }, - "date_of_expiration": { "type": 6, "value": 1684624236329 }, + "date_created": { + "type": 6, + "value": 1684624236329 + }, + "date_last_updated": { + "type": 6, + "value": 1684624236329 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624236329 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50713,9 +65112,18 @@ "original_amount": 160, "total_amount": 160, "id": 1684624348122, - "date_created": { "type": 6, "value": 1684624348122 }, - "date_last_updated": { "type": 6, "value": 1684624348122 }, - "date_of_expiration": { "type": 6, "value": 1684624348122 }, + "date_created": { + "type": 6, + "value": 1684624348122 + }, + "date_last_updated": { + "type": 6, + "value": 1684624348122 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624348122 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50765,9 +65173,18 @@ "original_amount": 779317, "total_amount": 779317, "id": 1684624387279, - "date_created": { "type": 6, "value": 1684624387279 }, - "date_last_updated": { "type": 6, "value": 1684624387279 }, - "date_of_expiration": { "type": 6, "value": 1684624387279 }, + "date_created": { + "type": 6, + "value": 1684624387279 + }, + "date_last_updated": { + "type": 6, + "value": 1684624387279 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624387279 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50829,9 +65246,18 @@ "original_amount": 20, "total_amount": 20, "id": 1684624827425, - "date_created": { "type": 6, "value": 1684624827425 }, - "date_last_updated": { "type": 6, "value": 1684624827425 }, - "date_of_expiration": { "type": 6, "value": 1684624827425 }, + "date_created": { + "type": 6, + "value": 1684624827425 + }, + "date_last_updated": { + "type": 6, + "value": 1684624827425 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624827425 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50881,9 +65307,18 @@ "original_amount": 97414, "total_amount": 97414, "id": 1684624867474, - "date_created": { "type": 6, "value": 1684624867474 }, - "date_last_updated": { "type": 6, "value": 1684624867474 }, - "date_of_expiration": { "type": 6, "value": 1684624867474 }, + "date_created": { + "type": 6, + "value": 1684624867474 + }, + "date_last_updated": { + "type": 6, + "value": 1684624867474 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624867474 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50945,9 +65380,18 @@ "original_amount": 40000000, "total_amount": 40000000, "id": 1685361710845, - "date_created": { "type": 6, "value": 1685361710845 }, - "date_last_updated": { "type": 6, "value": 1685361710845 }, - "date_of_expiration": { "type": 6, "value": 1685361710845 }, + "date_created": { + "type": 6, + "value": 1685361710845 + }, + "date_last_updated": { + "type": 6, + "value": 1685361710845 + }, + "date_of_expiration": { + "type": 6, + "value": 1685361710845 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50997,9 +65441,18 @@ "original_amount": 400000, "total_amount": 400000, "id": 1685391792305, - "date_created": { "type": 6, "value": 1685391792305 }, - "date_last_updated": { "type": 6, "value": 1685391792305 }, - "date_of_expiration": { "type": 6, "value": 1685391792305 }, + "date_created": { + "type": 6, + "value": 1685391792305 + }, + "date_last_updated": { + "type": 6, + "value": 1685391792305 + }, + "date_of_expiration": { + "type": 6, + "value": 1685391792305 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51061,9 +65514,18 @@ "original_amount": 2000000, "total_amount": 2000000, "id": 1685391842660, - "date_created": { "type": 6, "value": 1685391842660 }, - "date_last_updated": { "type": 6, "value": 1685391842660 }, - "date_of_expiration": { "type": 6, "value": 1685391842660 }, + "date_created": { + "type": 6, + "value": 1685391842660 + }, + "date_last_updated": { + "type": 6, + "value": 1685391842660 + }, + "date_of_expiration": { + "type": 6, + "value": 1685391842660 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51113,9 +65575,18 @@ "original_amount": 160000, "total_amount": 160000, "id": 1685391972284, - "date_created": { "type": 6, "value": 1685391972284 }, - "date_last_updated": { "type": 6, "value": 1685391972284 }, - "date_of_expiration": { "type": 6, "value": 1685391972284 }, + "date_created": { + "type": 6, + "value": 1685391972284 + }, + "date_last_updated": { + "type": 6, + "value": 1685391972284 + }, + "date_of_expiration": { + "type": 6, + "value": 1685391972284 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51177,9 +65648,18 @@ "original_amount": 1400000, "total_amount": 1400000, "id": 1685392038537, - "date_created": { "type": 6, "value": 1685392038537 }, - "date_last_updated": { "type": 6, "value": 1685392038537 }, - "date_of_expiration": { "type": 6, "value": 1685392038537 }, + "date_created": { + "type": 6, + "value": 1685392038537 + }, + "date_last_updated": { + "type": 6, + "value": 1685392038537 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392038537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51229,9 +65709,18 @@ "original_amount": 10000, "total_amount": 10000, "id": 1685392165654, - "date_created": { "type": 6, "value": 1685392165654 }, - "date_last_updated": { "type": 6, "value": 1685392165654 }, - "date_of_expiration": { "type": 6, "value": 1685392165654 }, + "date_created": { + "type": 6, + "value": 1685392165654 + }, + "date_last_updated": { + "type": 6, + "value": 1685392165654 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392165654 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51282,9 +65771,18 @@ "original_amount": 30000, "total_amount": 30000, "id": 1685392465062, - "date_created": { "type": 6, "value": 1685392465062 }, - "date_last_updated": { "type": 6, "value": 1685392465062 }, - "date_of_expiration": { "type": 6, "value": 1685392465062 }, + "date_created": { + "type": 6, + "value": 1685392465062 + }, + "date_last_updated": { + "type": 6, + "value": 1685392465062 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392465062 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51312,7 +65810,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zeh02huoohx2yfkeib7", "revision_nr": 1, "created": 1697467098048, "modified": 1697467098048 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zeh02huoohx2yfkeib7", + "revision_nr": 1, + "created": 1697467098048, + "modified": 1697467098048 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543", @@ -51326,9 +65833,18 @@ "total_amount": 4669901, "history_id": 1685396749543, "id": 1685396749543, - "date_created": { "type": 6, "value": 1685396749543 }, - "date_last_updated": { "type": 6, "value": 1685396749543 }, - "date_of_expiration": { "type": 6, "value": 1685396749543 }, + "date_created": { + "type": 6, + "value": 1685396749543 + }, + "date_last_updated": { + "type": 6, + "value": 1685396749543 + }, + "date_of_expiration": { + "type": 6, + "value": 1685396749543 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -51387,9 +65903,18 @@ "original_amount": 86699010, "total_amount": 86699010, "id": 1685409104532, - "date_created": { "type": 6, "value": 1685409104532 }, - "date_last_updated": { "type": 6, "value": 1685409104532 }, - "date_of_expiration": { "type": 6, "value": 1685409104532 }, + "date_created": { + "type": 6, + "value": 1685409104532 + }, + "date_last_updated": { + "type": 6, + "value": 1685409104532 + }, + "date_of_expiration": { + "type": 6, + "value": 1685409104532 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51450,9 +65975,18 @@ "original_amount": 1544789, "total_amount": 1544789, "id": 1685494858663, - "date_created": { "type": 6, "value": 1685494858663 }, - "date_last_updated": { "type": 6, "value": 1685494858663 }, - "date_of_expiration": { "type": 6, "value": 1685494858663 }, + "date_created": { + "type": 6, + "value": 1685494858663 + }, + "date_last_updated": { + "type": 6, + "value": 1685494858663 + }, + "date_of_expiration": { + "type": 6, + "value": 1685494858663 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51513,9 +66047,18 @@ "original_amount": 13900000, "total_amount": 13900000, "id": 1685494914975, - "date_created": { "type": 6, "value": 1685494914975 }, - "date_last_updated": { "type": 6, "value": 1685494914975 }, - "date_of_expiration": { "type": 6, "value": 1685494914975 }, + "date_created": { + "type": 6, + "value": 1685494914975 + }, + "date_last_updated": { + "type": 6, + "value": 1685494914975 + }, + "date_of_expiration": { + "type": 6, + "value": 1685494914975 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51565,9 +66108,18 @@ "original_amount": 3105, "total_amount": 3105, "id": 1685495030715, - "date_created": { "type": 6, "value": 1685495030715 }, - "date_last_updated": { "type": 6, "value": 1685495030715 }, - "date_of_expiration": { "type": 6, "value": 1685495030715 }, + "date_created": { + "type": 6, + "value": 1685495030715 + }, + "date_last_updated": { + "type": 6, + "value": 1685495030715 + }, + "date_of_expiration": { + "type": 6, + "value": 1685495030715 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51595,7 +66147,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zha02i8oohxfds66lv0", "revision_nr": 1, "created": 1697467098148, "modified": 1697467098148 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zha02i8oohxfds66lv0", + "revision_nr": 1, + "created": 1697467098148, + "modified": 1697467098148 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046", @@ -51609,14 +66170,26 @@ "total_amount": 15447894, "history_id": 1685495440046, "id": 1685495440046, - "date_created": { "type": 6, "value": 1685495440046 }, - "date_last_updated": { "type": 6, "value": 1685728987171 }, - "date_of_expiration": { "type": 6, "value": 1685495440046 }, + "date_created": { + "type": 6, + "value": 1685495440046 + }, + "date_last_updated": { + "type": 6, + "value": 1685728987171 + }, + "date_of_expiration": { + "type": 6, + "value": 1685495440046 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": { "type": 6, "value": 1685728987171 }, + "money_release_date": { + "type": 6, + "value": 1685728987171 + }, "money_release_status": "rejected" }, "revision": "lnt02zh002i6oohx3bi67fxu", @@ -51672,9 +66245,18 @@ "original_amount": 154478940, "total_amount": 154478940, "id": 1685496474860, - "date_created": { "type": 6, "value": 1685496474860 }, - "date_last_updated": { "type": 6, "value": 1685496474860 }, - "date_of_expiration": { "type": 6, "value": 1685496474860 }, + "date_created": { + "type": 6, + "value": 1685496474860 + }, + "date_last_updated": { + "type": 6, + "value": 1685496474860 + }, + "date_of_expiration": { + "type": 6, + "value": 1685496474860 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51735,9 +66317,18 @@ "original_amount": 14660794, "total_amount": 14660794, "id": 1685572512459, - "date_created": { "type": 6, "value": 1685572512459 }, - "date_last_updated": { "type": 6, "value": 1685572512459 }, - "date_of_expiration": { "type": 6, "value": 1685572512459 }, + "date_created": { + "type": 6, + "value": 1685572512459 + }, + "date_last_updated": { + "type": 6, + "value": 1685572512459 + }, + "date_of_expiration": { + "type": 6, + "value": 1685572512459 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51764,7 +66355,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zj202ihoohx6ih28pp0", "revision_nr": 1, "created": 1697467098213, "modified": 1697467098213 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zj202ihoohx6ih28pp0", + "revision_nr": 1, + "created": 1697467098213, + "modified": 1697467098213 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795", @@ -51778,14 +66378,26 @@ "total_amount": 10637617, "history_id": 1685574712795, "id": 1685574712795, - "date_created": { "type": 6, "value": 1685574712795 }, - "date_last_updated": { "type": 6, "value": 1685728539697 }, - "date_of_expiration": { "type": 6, "value": 1685574712795 }, + "date_created": { + "type": 6, + "value": 1685574712795 + }, + "date_last_updated": { + "type": 6, + "value": 1685728539697 + }, + "date_of_expiration": { + "type": 6, + "value": 1685574712795 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": { "type": 6, "value": 1685728539697 }, + "money_release_date": { + "type": 6, + "value": 1685728539697 + }, "money_release_status": "rejected" }, "revision": "lnt02ziu02ifoohx53fe40k0", @@ -51807,7 +66419,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zjo02ikoohx89ocb56q", "revision_nr": 1, "created": 1697467098235, "modified": 1697467098235 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zjo02ikoohx89ocb56q", + "revision_nr": 1, + "created": 1697467098235, + "modified": 1697467098235 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706", @@ -51821,14 +66442,26 @@ "total_amount": 14660794, "history_id": 1685587807706, "id": 1685587807706, - "date_created": { "type": 6, "value": 1685587807706 }, - "date_last_updated": { "type": 6, "value": 1685728442582 }, - "date_of_expiration": { "type": 6, "value": 1685587807706 }, + "date_created": { + "type": 6, + "value": 1685587807706 + }, + "date_last_updated": { + "type": 6, + "value": 1685728442582 + }, + "date_of_expiration": { + "type": 6, + "value": 1685587807706 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": { "type": 6, "value": 1685728442582 }, + "money_release_date": { + "type": 6, + "value": 1685728442582 + }, "money_release_status": "rejected" }, "revision": "lnt02zjg02iioohx7dtkgced", @@ -51850,7 +66483,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zk802inoohxep4sd4xr", "revision_nr": 1, "created": 1697467098258, "modified": 1697467098258 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zk802inoohxep4sd4xr", + "revision_nr": 1, + "created": 1697467098258, + "modified": 1697467098258 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790", @@ -51864,15 +66506,30 @@ "total_amount": 14660794, "history_id": 1685623890790, "id": 1685623890790, - "date_created": { "type": 6, "value": 1685623890790 }, - "date_last_updated": { "type": 6, "value": 1685647998019 }, - "date_of_expiration": { "type": 6, "value": 1685623890790 }, + "date_created": { + "type": 6, + "value": 1685623890790 + }, + "date_last_updated": { + "type": 6, + "value": 1685647998019 + }, + "date_of_expiration": { + "type": 6, + "value": 1685623890790 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1685647998019 }, - "money_release_date": { "type": 6, "value": 1685647998019 }, + "date_approved": { + "type": 6, + "value": 1685647998019 + }, + "money_release_date": { + "type": 6, + "value": 1685647998019 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -51929,9 +66586,18 @@ "original_amount": 146607940, "total_amount": 146607940, "id": 1685625562355, - "date_created": { "type": 6, "value": 1685625562355 }, - "date_last_updated": { "type": 6, "value": 1685625562355 }, - "date_of_expiration": { "type": 6, "value": 1685625562355 }, + "date_created": { + "type": 6, + "value": 1685625562355 + }, + "date_last_updated": { + "type": 6, + "value": 1685625562355 + }, + "date_of_expiration": { + "type": 6, + "value": 1685625562355 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -51981,9 +66647,18 @@ "original_amount": 1490, "total_amount": 1490, "id": 1685639526258, - "date_created": { "type": 6, "value": 1685639526258 }, - "date_last_updated": { "type": 6, "value": 1685639526258 }, - "date_of_expiration": { "type": 6, "value": 1685639526258 }, + "date_created": { + "type": 6, + "value": 1685639526258 + }, + "date_last_updated": { + "type": 6, + "value": 1685639526258 + }, + "date_of_expiration": { + "type": 6, + "value": 1685639526258 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -52011,7 +66686,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zlv02ivoohx5iid3adn", "revision_nr": 1, "created": 1697467098314, "modified": 1697467098314 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zlv02ivoohx5iid3adn", + "revision_nr": 1, + "created": 1697467098314, + "modified": 1697467098314 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824", @@ -52025,15 +66709,30 @@ "total_amount": 1490, "history_id": 1685647933824, "id": 1685647933824, - "date_created": { "type": 6, "value": 1685647933824 }, - "date_last_updated": { "type": 6, "value": 1685648093267 }, - "date_of_expiration": { "type": 6, "value": 1685647933824 }, + "date_created": { + "type": 6, + "value": 1685647933824 + }, + "date_last_updated": { + "type": 6, + "value": 1685648093267 + }, + "date_of_expiration": { + "type": 6, + "value": 1685647933824 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1685648093267 }, - "money_release_date": { "type": 6, "value": 1685648093267 }, + "date_approved": { + "type": 6, + "value": 1685648093267 + }, + "money_release_date": { + "type": 6, + "value": 1685648093267 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -52090,9 +66789,18 @@ "original_amount": 13603163, "total_amount": 13603163, "id": 1685653675417, - "date_created": { "type": 6, "value": 1685653675417 }, - "date_last_updated": { "type": 6, "value": 1685653675417 }, - "date_of_expiration": { "type": 6, "value": 1685653675417 }, + "date_created": { + "type": 6, + "value": 1685653675417 + }, + "date_last_updated": { + "type": 6, + "value": 1685653675417 + }, + "date_of_expiration": { + "type": 6, + "value": 1685653675417 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -52119,7 +66827,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zn302j1oohxdy1pckkp", "revision_nr": 1, "created": 1697467098358, "modified": 1697467098358 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zn302j1oohxdy1pckkp", + "revision_nr": 1, + "created": 1697467098358, + "modified": 1697467098358 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749", @@ -52133,9 +66850,18 @@ "total_amount": 3463, "history_id": 1688596994749, "id": 1688596994749, - "date_created": { "type": 6, "value": 1688596994749 }, - "date_last_updated": { "type": 6, "value": 1688596994749 }, - "date_of_expiration": { "type": 6, "value": 1691188994749 }, + "date_created": { + "type": 6, + "value": 1688596994749 + }, + "date_last_updated": { + "type": 6, + "value": 1688596994749 + }, + "date_of_expiration": { + "type": 6, + "value": 1691188994749 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -52160,7 +66886,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02znn02j4oohx6s4l0qs8", "revision_nr": 1, "created": 1697467098378, "modified": 1697467098378 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02znn02j4oohx6s4l0qs8", + "revision_nr": 1, + "created": 1697467098378, + "modified": 1697467098378 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712", @@ -52174,9 +66909,18 @@ "total_amount": 1000, "history_id": 1689384333712, "id": 1689384333712, - "date_created": { "type": 6, "value": 1689384333712 }, - "date_last_updated": { "type": 6, "value": 1689384333712 }, - "date_of_expiration": { "type": 6, "value": 1691976333712 }, + "date_created": { + "type": 6, + "value": 1689384333712 + }, + "date_last_updated": { + "type": 6, + "value": 1689384333712 + }, + "date_of_expiration": { + "type": 6, + "value": 1691976333712 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -52192,7 +66936,13 @@ "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692547137377 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692547137377 + } + }, "revision": "lnt02zo102j6oohx6m550vki", "revision_nr": 1, "created": 1697467098393, @@ -52254,8 +67004,14 @@ "total_amount": 1671, "id": 1689955137377, "history_id": 1689955137377, - "date_created": { "type": 6, "value": 1689955137377 }, - "date_last_updated": { "type": 6, "value": 1689955137377 }, + "date_created": { + "type": 6, + "value": 1689955137377 + }, + "date_last_updated": { + "type": 6, + "value": 1689955137377 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -52273,7 +67029,13 @@ "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693429523298 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693429523298 + } + }, "revision": "lnt02zp302jboohx7kx28uuw", "revision_nr": 1, "created": 1697467098430, @@ -52335,16 +67097,28 @@ "total_amount": 20, "id": 1690837523298, "history_id": 1690837523298, - "date_created": { "type": 6, "value": 1690837523298 }, - "date_last_updated": { "type": 6, "value": 1690840864751 }, + "date_created": { + "type": 6, + "value": 1690837523298 + }, + "date_last_updated": { + "type": 6, + "value": 1690840864751 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1690840864751 }, - "money_release_date": { "type": 6, "value": 1690840864751 }, + "date_approved": { + "type": 6, + "value": 1690840864751 + }, + "money_release_date": { + "type": 6, + "value": 1690840864751 + }, "money_release_status": "approved", "wasDebited": true }, @@ -52398,9 +67172,18 @@ "total_amount": 17960, "id": 1690844181474, "history_id": 1690844181474, - "date_created": { "type": 6, "value": 1690844181474 }, - "date_last_updated": { "type": 6, "value": 1690844181474 }, - "date_of_expiration": { "type": 6, "value": 1690844181474 }, + "date_created": { + "type": 6, + "value": 1690844181474 + }, + "date_last_updated": { + "type": 6, + "value": 1690844181474 + }, + "date_of_expiration": { + "type": 6, + "value": 1690844181474 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -52417,13 +67200,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history", - "content": { "type": 1, "value": {}, "revision": "lnt02z4a02gdoohx4c01dpfz", "revision_nr": 1, "created": 1697467098489, "modified": 1697467098489 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02z4a02gdoohx4c01dpfz", + "revision_nr": 1, + "created": 1697467098489, + "modified": 1697467098489 + } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1688858744635 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1688858744635 + } + }, "revision": "lnt02zqx02jioohxfdiy96yz", "revision_nr": 1, "created": 1697467098496, @@ -52434,7 +67232,16 @@ "path": "ivipcoin-db::__movement_wallet__/088753368634775000", "content": { "type": 1, - "value": { "dataModificacao": 1684160584822, "dateValidity": 1684160584822, "totalValue": 8.87, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1695956400000 } }, + "value": { + "dataModificacao": 1684160584822, + "dateValidity": 1684160584822, + "totalValue": 8.87, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1695956400000 + } + }, "revision": "lnt02z3x02gaoohxd8ps7ja3", "revision_nr": 1, "created": 1697467098504, @@ -52445,7 +67252,11 @@ "path": "ivipcoin-db::__movement_wallet__/091878369033558510/balances/IVIP", "content": { "type": 1, - "value": { "available": "465751.00000000", "symbol": "IVIP", "value": 507.45 }, + "value": { + "available": "465751.00000000", + "symbol": "IVIP", + "value": 507.45 + }, "revision": "lnt02zrc02jloohx91hrc14o", "revision_nr": 1, "created": 1697467098511, @@ -52454,7 +67265,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/balances", - "content": { "type": 1, "value": {}, "revision": "lnt02zrc02jkoohx99lugdvz", "revision_nr": 1, "created": 1697467098519, "modified": 1697467098519 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02zrc02jkoohx99lugdvz", + "revision_nr": 1, + "created": 1697467098519, + "modified": 1697467098519 + } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301/description", @@ -52469,7 +67287,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zrz02jpoohx7ibja3io", "revision_nr": 1, "created": 1697467098534, "modified": 1697467098534 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zrz02jpoohx7ibja3io", + "revision_nr": 1, + "created": 1697467098534, + "modified": 1697467098534 + } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301", @@ -52483,15 +67310,30 @@ "total_amount": 200, "history_id": 1689132397301, "id": 1689132397301, - "date_created": { "type": 6, "value": 1689132397301 }, - "date_last_updated": { "type": 6, "value": 1689153725926 }, - "date_of_expiration": { "type": 6, "value": 1691724397301 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689153725926 }, - "money_release_date": { "type": 6, "value": 1689153725926 }, + "date_created": { + "type": 6, + "value": 1689132397301 + }, + "date_last_updated": { + "type": 6, + "value": 1689153725926 + }, + "date_of_expiration": { + "type": 6, + "value": 1691724397301 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689153725926 + }, + "money_release_date": { + "type": 6, + "value": 1689153725926 + }, "money_release_status": "approved", "wasDebited": true }, @@ -52537,9 +67379,18 @@ "original_amount": 82125, "total_amount": 82125, "id": 1689197549929, - "date_created": { "type": 6, "value": 1689197549929 }, - "date_last_updated": { "type": 6, "value": 1689197549929 }, - "date_of_expiration": { "type": 6, "value": 1689197549929 }, + "date_created": { + "type": 6, + "value": 1689197549929 + }, + "date_last_updated": { + "type": 6, + "value": 1689197549929 + }, + "date_of_expiration": { + "type": 6, + "value": 1689197549929 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -52558,7 +67409,13 @@ "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698492550248 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698492550248 + } + }, "revision": "lnt02zsr02jtoohx84bqg5n1", "revision_nr": 1, "created": 1697467098562, @@ -52621,8 +67478,14 @@ "total_amount": 458, "id": "1695900550248", "history_id": "1695900550248", - "date_created": { "type": 6, "value": 1695900550248 }, - "date_last_updated": { "type": 6, "value": 1695900550248 }, + "date_created": { + "type": 6, + "value": 1695900550248 + }, + "date_last_updated": { + "type": 6, + "value": 1695900550248 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -52640,7 +67503,13 @@ "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698492550761 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698492550761 + } + }, "revision": "lnt02ztt02jyoohx5plsau3o", "revision_nr": 1, "created": 1697467098600, @@ -52703,8 +67572,14 @@ "total_amount": 458, "id": "1695900550761", "history_id": "1695900550761", - "date_created": { "type": 6, "value": 1695900550761 }, - "date_last_updated": { "type": 6, "value": 1695900550761 }, + "date_created": { + "type": 6, + "value": 1695900550761 + }, + "date_last_updated": { + "type": 6, + "value": 1695900550761 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -52722,7 +67597,13 @@ "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698492565784 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698492565784 + } + }, "revision": "lnt02zus02k3oohxgxl4bplr", "revision_nr": 1, "created": 1697467098634, @@ -52785,16 +67666,28 @@ "total_amount": 458, "id": "1695900565784", "history_id": "1695900565784", - "date_created": { "type": 6, "value": 1695900565784 }, - "date_last_updated": { "type": 6, "value": 1695901613220 }, + "date_created": { + "type": 6, + "value": 1695900565784 + }, + "date_last_updated": { + "type": 6, + "value": 1695901613220 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1695901613220 }, - "money_release_date": { "type": 6, "value": 1695901613220 }, + "date_approved": { + "type": 6, + "value": 1695901613220 + }, + "money_release_date": { + "type": 6, + "value": 1695901613220 + }, "money_release_status": "approved", "wasDebited": true }, @@ -52849,9 +67742,18 @@ "total_amount": 383626, "id": "1695903994262", "history_id": "1695903994262", - "date_created": { "type": 6, "value": 1695903994262 }, - "date_last_updated": { "type": 6, "value": 1695903994262 }, - "date_of_expiration": { "type": 6, "value": 1695903994262 }, + "date_created": { + "type": 6, + "value": 1695903994262 + }, + "date_last_updated": { + "type": 6, + "value": 1695903994262 + }, + "date_of_expiration": { + "type": 6, + "value": 1695903994262 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -52868,13 +67770,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history", - "content": { "type": 1, "value": {}, "revision": "lnt02zrr02jmoohx8e0a95al", "revision_nr": 1, "created": 1697467098693, "modified": 1697467098693 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02zrr02jmoohx8e0a95al", + "revision_nr": 1, + "created": 1697467098693, + "modified": 1697467098693 + } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02zwl02kaoohxccw9fu1o", "revision_nr": 1, "created": 1697467098700, @@ -52885,7 +67798,16 @@ "path": "ivipcoin-db::__movement_wallet__/091878369033558510", "content": { "type": 1, - "value": { "dataModificacao": 1689132373088, "dateValidity": 1689132373088, "totalValue": 41.04, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696129200000 } }, + "value": { + "dataModificacao": 1689132373088, + "dateValidity": 1689132373088, + "totalValue": 41.04, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696129200000 + } + }, "revision": "lnt02zrc02jjoohxhldiff6j", "revision_nr": 1, "created": 1697467098708, @@ -52905,7 +67827,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zx802kfoohx2otq2fta", "revision_nr": 1, "created": 1697467098724, "modified": 1697467098724 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zx802kfoohx2otq2fta", + "revision_nr": 1, + "created": 1697467098724, + "modified": 1697467098724 + } }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675", @@ -52919,14 +67850,26 @@ "total_amount": 50, "history_id": 1678089239675, "id": 1678089239675, - "date_created": { "type": 6, "value": 1678089239675 }, - "date_last_updated": { "type": 6, "value": 1678716487775 }, - "date_of_expiration": { "type": 6, "value": 1680681239675 }, + "date_created": { + "type": 6, + "value": 1678089239675 + }, + "date_last_updated": { + "type": 6, + "value": 1678716487775 + }, + "date_of_expiration": { + "type": 6, + "value": 1680681239675 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678716487775 }, + "money_release_date": { + "type": 6, + "value": 1678716487775 + }, "money_release_status": "rejected" }, "revision": "lnt02zx002kdoohxft9vgbum", @@ -52937,13 +67880,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history", - "content": { "type": 1, "value": {}, "revision": "lnt02zx002kcoohxcqxg7jf8", "revision_nr": 1, "created": 1697467098738, "modified": 1697467098738 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02zx002kcoohxcqxg7jf8", + "revision_nr": 1, + "created": 1697467098738, + "modified": 1697467098738 + } }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480", "content": { "type": 1, - "value": { "dataModificacao": 1677466864789, "dateValidity": 1678103589466, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677466864789, + "dateValidity": 1678103589466, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02zx002kboohxcqwv8q3v", "revision_nr": 1, "created": 1697467098745, @@ -52963,7 +67919,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zy902kkoohx2cad0j4a", "revision_nr": 1, "created": 1697467098760, "modified": 1697467098760 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zy902kkoohx2cad0j4a", + "revision_nr": 1, + "created": 1697467098760, + "modified": 1697467098760 + } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269", @@ -52977,9 +67942,18 @@ "total_amount": 1500, "history_id": 1689457461269, "id": 1689457461269, - "date_created": { "type": 6, "value": 1689457461269 }, - "date_last_updated": { "type": 6, "value": 1689457461269 }, - "date_of_expiration": { "type": 6, "value": 1692049461269 }, + "date_created": { + "type": 6, + "value": 1689457461269 + }, + "date_last_updated": { + "type": 6, + "value": 1689457461269 + }, + "date_of_expiration": { + "type": 6, + "value": 1692049461269 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -53004,7 +67978,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt02zyw02knoohxbxmxfs52", "revision_nr": 1, "created": 1697467098783, "modified": 1697467098783 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt02zyw02knoohxbxmxfs52", + "revision_nr": 1, + "created": 1697467098783, + "modified": 1697467098783 + } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479", @@ -53018,9 +68001,18 @@ "total_amount": 1500, "history_id": 1689629737479, "id": 1689629737479, - "date_created": { "type": 6, "value": 1689629737479 }, - "date_last_updated": { "type": 6, "value": 1689629737479 }, - "date_of_expiration": { "type": 6, "value": 1692221737479 }, + "date_created": { + "type": 6, + "value": 1689629737479 + }, + "date_last_updated": { + "type": 6, + "value": 1689629737479 + }, + "date_of_expiration": { + "type": 6, + "value": 1692221737479 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -53034,13 +68026,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history", - "content": { "type": 1, "value": {}, "revision": "lnt02zy102khoohxcf1h58q6", "revision_nr": 1, "created": 1697467098797, "modified": 1697467098797 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02zy102khoohxcf1h58q6", + "revision_nr": 1, + "created": 1697467098797, + "modified": 1697467098797 + } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt02zzh02kooohxfown5zsl", "revision_nr": 1, "created": 1697467098804, @@ -53051,7 +68054,13 @@ "path": "ivipcoin-db::__movement_wallet__/095633229427881890", "content": { "type": 1, - "value": { "dataModificacao": 1689457427075, "dateValidity": 1689457427075, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1689457427075, + "dateValidity": 1689457427075, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02zy102kgoohxdpvaci1n", "revision_nr": 1, "created": 1697467098811, @@ -53071,7 +68080,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0300202ktoohxc3qd7q7w", "revision_nr": 1, "created": 1697467098827, "modified": 1697467098827 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0300202ktoohxc3qd7q7w", + "revision_nr": 1, + "created": 1697467098827, + "modified": 1697467098827 + } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520", @@ -53085,9 +68103,18 @@ "total_amount": 100, "history_id": 1684543373520, "id": 1684543373520, - "date_created": { "type": 6, "value": 1684543373520 }, - "date_last_updated": { "type": 6, "value": 1684543373520 }, - "date_of_expiration": { "type": 6, "value": 1687135373520 }, + "date_created": { + "type": 6, + "value": 1684543373520 + }, + "date_last_updated": { + "type": 6, + "value": 1684543373520 + }, + "date_of_expiration": { + "type": 6, + "value": 1687135373520 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -53101,13 +68128,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history", - "content": { "type": 1, "value": {}, "revision": "lnt02zzv02kqoohxg9e8ctx9", "revision_nr": 1, "created": 1697467098842, "modified": 1697467098842 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt02zzv02kqoohxg9e8ctx9", + "revision_nr": 1, + "created": 1697467098842, + "modified": 1697467098842 + } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt0300q02kuoohxfoos9x4e", "revision_nr": 1, "created": 1697467098849, @@ -53118,7 +68156,13 @@ "path": "ivipcoin-db::__movement_wallet__/096124016860355650", "content": { "type": 1, - "value": { "dataModificacao": 1684187165100, "dateValidity": 1684187165100, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684187165100, + "dateValidity": 1684187165100, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt02zzv02kpoohxccspfurw", "revision_nr": 1, "created": 1697467098856, @@ -53129,7 +68173,13 @@ "path": "ivipcoin-db::__movement_wallet__/096261179492313170", "content": { "type": 1, - "value": { "dataModificacao": 1696117965905, "dateValidity": 1696117965942, "balances": {}, "history": {}, "currencyType": "USD" }, + "value": { + "dataModificacao": 1696117965905, + "dateValidity": 1696117965942, + "balances": {}, + "history": {}, + "currencyType": "USD" + }, "revision": "lnt0301402kvoohxfjkvcjj8", "revision_nr": 1, "created": 1697467098863, @@ -53140,7 +68190,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances/BRL", "content": { "type": 1, - "value": { "available": "10.00000000", "symbol": "BRL", "value": 1.92 }, + "value": { + "available": "10.00000000", + "symbol": "BRL", + "value": 1.92 + }, "revision": "lnt0301b02kyoohxcxazaeac", "revision_nr": 1, "created": 1697467098870, @@ -53151,7 +68205,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances/IVIP", "content": { "type": 1, - "value": { "available": "480000.00000000", "symbol": "IVIP", "value": 62.92 }, + "value": { + "available": "480000.00000000", + "symbol": "IVIP", + "value": 62.92 + }, "revision": "lnt0301i02kzoohxhhelat0d", "revision_nr": 1, "created": 1697467098878, @@ -53160,7 +68218,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances", - "content": { "type": 1, "value": {}, "revision": "lnt0301b02kxoohxbfrtdi8o", "revision_nr": 1, "created": 1697467098885, "modified": 1697467098885 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0301b02kxoohxbfrtdi8o", + "revision_nr": 1, + "created": 1697467098885, + "modified": 1697467098885 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483/description", @@ -53175,7 +68240,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0302602l3oohx7ftxc2ry", "revision_nr": 1, "created": 1697467098901, "modified": 1697467098901 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0302602l3oohx7ftxc2ry", + "revision_nr": 1, + "created": 1697467098901, + "modified": 1697467098901 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483", @@ -53189,15 +68263,30 @@ "total_amount": 3000, "history_id": 1680564390483, "id": 1680564390483, - "date_created": { "type": 6, "value": 1680564390483 }, - "date_last_updated": { "type": 6, "value": 1680570580299 }, - "date_of_expiration": { "type": 6, "value": 1683156390483 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1680570580299 }, - "money_release_date": { "type": 6, "value": 1680570580299 }, + "date_created": { + "type": 6, + "value": 1680564390483 + }, + "date_last_updated": { + "type": 6, + "value": 1680570580299 + }, + "date_of_expiration": { + "type": 6, + "value": 1683156390483 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1680570580299 + }, + "money_release_date": { + "type": 6, + "value": 1680570580299 + }, "money_release_status": "approved", "wasDebited": true }, @@ -53220,7 +68309,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0302t02l6oohxepb5cwuc", "revision_nr": 1, "created": 1697467098924, "modified": 1697467098924 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0302t02l6oohxepb5cwuc", + "revision_nr": 1, + "created": 1697467098924, + "modified": 1697467098924 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667", @@ -53234,15 +68332,30 @@ "total_amount": 2000, "history_id": 1680570737667, "id": 1680570737667, - "date_created": { "type": 6, "value": 1680570737667 }, - "date_last_updated": { "type": 6, "value": 1680570777315 }, - "date_of_expiration": { "type": 6, "value": 1683162737667 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1680570777315 }, - "money_release_date": { "type": 6, "value": 1680570777315 }, + "date_created": { + "type": 6, + "value": 1680570737667 + }, + "date_last_updated": { + "type": 6, + "value": 1680570777315 + }, + "date_of_expiration": { + "type": 6, + "value": 1683162737667 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1680570777315 + }, + "money_release_date": { + "type": 6, + "value": 1680570777315 + }, "money_release_status": "approved", "wasDebited": true }, @@ -53267,7 +68380,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt0303e02lboohx55xg6kbk", "revision_nr": 1, "created": 1697467098946, @@ -53276,11 +68393,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0303e02laoohxda545ksz", "revision_nr": 1, "created": 1697467098954, "modified": 1697467098954 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0303e02laoohxda545ksz", + "revision_nr": 1, + "created": 1697467098954, + "modified": 1697467098954 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details", - "content": { "type": 1, "value": {}, "revision": "lnt0303e02l9oohx3w5r6kbn", "revision_nr": 1, "created": 1697467098962, "modified": 1697467098962 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0303e02l9oohx3w5r6kbn", + "revision_nr": 1, + "created": 1697467098962, + "modified": 1697467098962 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806", @@ -53294,9 +68425,18 @@ "total_amount": 12000, "history_id": 1680571158806, "id": 1680571158806, - "date_created": { "type": 6, "value": 1680571158806 }, - "date_last_updated": { "type": 6, "value": 1680571158806 }, - "date_of_expiration": { "type": 6, "value": 1683163158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, + "date_last_updated": { + "type": 6, + "value": 1680571158806 + }, + "date_of_expiration": { + "type": 6, + "value": 1683163158806 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -53359,9 +68499,18 @@ "total_amount": 1200, "id": 1683548182568, "contract_id": "1680571158806", - "date_created": { "type": 6, "value": 1683548182568 }, - "date_last_updated": { "type": 6, "value": 1683548182568 }, - "date_of_expiration": { "type": 6, "value": 1683548182568 }, + "date_created": { + "type": 6, + "value": 1683548182568 + }, + "date_last_updated": { + "type": 6, + "value": 1683548182568 + }, + "date_of_expiration": { + "type": 6, + "value": 1683548182568 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -53425,9 +68574,18 @@ "total_amount": 1200, "id": 1684367503606, "contract_id": "1680571158806", - "date_created": { "type": 6, "value": 1684367503606 }, - "date_last_updated": { "type": 6, "value": 1684367503606 }, - "date_of_expiration": { "type": 6, "value": 1684367503606 }, + "date_created": { + "type": 6, + "value": 1684367503606 + }, + "date_last_updated": { + "type": 6, + "value": 1684367503606 + }, + "date_of_expiration": { + "type": 6, + "value": 1684367503606 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -53456,7 +68614,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt0305r02lmoohx1u5ognkp", "revision_nr": 1, "created": 1697467099031, @@ -53465,11 +68627,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0305r02lloohxc8tq9k6w", "revision_nr": 1, "created": 1697467099038, "modified": 1697467099038 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0305r02lloohxc8tq9k6w", + "revision_nr": 1, + "created": 1697467099038, + "modified": 1697467099038 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details", - "content": { "type": 1, "value": {}, "revision": "lnt0305r02lkoohxgq8l7yfy", "revision_nr": 1, "created": 1697467099044, "modified": 1697467099044 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0305r02lkoohxgq8l7yfy", + "revision_nr": 1, + "created": 1697467099044, + "modified": 1697467099044 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554", @@ -53483,9 +68659,18 @@ "total_amount": 2320, "history_id": 1684367721554, "id": 1684367721554, - "date_created": { "type": 6, "value": 1684367721554 }, - "date_last_updated": { "type": 6, "value": 1684367721554 }, - "date_of_expiration": { "type": 6, "value": 1686959721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, + "date_last_updated": { + "type": 6, + "value": 1684367721554 + }, + "date_of_expiration": { + "type": 6, + "value": 1686959721554 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -53548,9 +68733,18 @@ "total_amount": 290, "id": 1684415962143, "contract_id": "1684367721554", - "date_created": { "type": 6, "value": 1684415962143 }, - "date_last_updated": { "type": 6, "value": 1684415962143 }, - "date_of_expiration": { "type": 6, "value": 1684415962143 }, + "date_created": { + "type": 6, + "value": 1684415962143 + }, + "date_last_updated": { + "type": 6, + "value": 1684415962143 + }, + "date_of_expiration": { + "type": 6, + "value": 1684415962143 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -53577,7 +68771,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0307d02lsoohxb43ngahw", "revision_nr": 1, "created": 1697467099089, "modified": 1697467099089 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0307d02lsoohxb43ngahw", + "revision_nr": 1, + "created": 1697467099089, + "modified": 1697467099089 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879", @@ -53591,15 +68794,30 @@ "total_amount": 1600, "history_id": 1684544477879, "id": 1684544477879, - "date_created": { "type": 6, "value": 1684544477879 }, - "date_last_updated": { "type": 6, "value": 1684545036886 }, - "date_of_expiration": { "type": 6, "value": 1687136477879 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684545036886 }, - "money_release_date": { "type": 6, "value": 1684545036886 }, + "date_created": { + "type": 6, + "value": 1684544477879 + }, + "date_last_updated": { + "type": 6, + "value": 1684545036886 + }, + "date_of_expiration": { + "type": 6, + "value": 1687136477879 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684545036886 + }, + "money_release_date": { + "type": 6, + "value": 1684545036886 + }, "money_release_status": "approved", "wasDebited": true }, @@ -53645,9 +68863,18 @@ "original_amount": 77493341, "total_amount": 77493341, "id": 1684624390329, - "date_created": { "type": 6, "value": 1684624390329 }, - "date_last_updated": { "type": 6, "value": 1684624390329 }, - "date_of_expiration": { "type": 6, "value": 1684624390329 }, + "date_created": { + "type": 6, + "value": 1684624390329 + }, + "date_last_updated": { + "type": 6, + "value": 1684624390329 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624390329 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53677,7 +68904,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 5 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 5 + }, "revision": "lnt0308f02lzoohx2ehv4dmc", "revision_nr": 1, "created": 1697467099129, @@ -53686,11 +68917,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0308e02lyoohxd7yz1qct", "revision_nr": 1, "created": 1697467099137, "modified": 1697467099137 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0308e02lyoohxd7yz1qct", + "revision_nr": 1, + "created": 1697467099137, + "modified": 1697467099137 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details", - "content": { "type": 1, "value": {}, "revision": "lnt0308e02lxoohx4jiz1jg5", "revision_nr": 1, "created": 1697467099145, "modified": 1697467099145 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0308e02lxoohx4jiz1jg5", + "revision_nr": 1, + "created": 1697467099145, + "modified": 1697467099145 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049", @@ -53704,9 +68949,18 @@ "total_amount": 255, "history_id": 1684661775049, "id": 1684661775049, - "date_created": { "type": 6, "value": 1684661775049 }, - "date_last_updated": { "type": 6, "value": 1684661775049 }, - "date_of_expiration": { "type": 6, "value": 1687253775049 }, + "date_created": { + "type": 6, + "value": 1684661775049 + }, + "date_last_updated": { + "type": 6, + "value": 1684661775049 + }, + "date_of_expiration": { + "type": 6, + "value": 1687253775049 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -53755,9 +69009,18 @@ "original_amount": 1218292, "total_amount": 1218292, "id": 1684661800868, - "date_created": { "type": 6, "value": 1684661800868 }, - "date_last_updated": { "type": 6, "value": 1684661800868 }, - "date_of_expiration": { "type": 6, "value": 1684661800868 }, + "date_created": { + "type": 6, + "value": 1684661800868 + }, + "date_last_updated": { + "type": 6, + "value": 1684661800868 + }, + "date_of_expiration": { + "type": 6, + "value": 1684661800868 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53785,7 +69048,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0309y02m4oohxci1213cz", "revision_nr": 1, "created": 1697467099182, "modified": 1697467099182 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0309y02m4oohxci1213cz", + "revision_nr": 1, + "created": 1697467099182, + "modified": 1697467099182 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443", @@ -53799,15 +69071,30 @@ "total_amount": 255, "history_id": 1685452383443, "id": 1685452383443, - "date_created": { "type": 6, "value": 1685452383443 }, - "date_last_updated": { "type": 6, "value": 1685485920714 }, - "date_of_expiration": { "type": 6, "value": 1688044383443 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685485920714 }, - "money_release_date": { "type": 6, "value": 1685485920714 }, + "date_created": { + "type": 6, + "value": 1685452383443 + }, + "date_last_updated": { + "type": 6, + "value": 1685485920714 + }, + "date_of_expiration": { + "type": 6, + "value": 1688044383443 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685485920714 + }, + "money_release_date": { + "type": 6, + "value": 1685485920714 + }, "money_release_status": "approved", "wasDebited": true }, @@ -53867,9 +69154,18 @@ "total_amount": 255, "id": 1685486477860, "contract_id": "1684661775049", - "date_created": { "type": 6, "value": 1685486477860 }, - "date_last_updated": { "type": 6, "value": 1685486477860 }, - "date_of_expiration": { "type": 6, "value": 1685486477860 }, + "date_created": { + "type": 6, + "value": 1685486477860 + }, + "date_last_updated": { + "type": 6, + "value": 1685486477860 + }, + "date_of_expiration": { + "type": 6, + "value": 1685486477860 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -53929,9 +69225,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667437011, - "date_created": { "type": 6, "value": 1685667437011 }, - "date_last_updated": { "type": 6, "value": 1685667437011 }, - "date_of_expiration": { "type": 6, "value": 1748825837011 }, + "date_created": { + "type": 6, + "value": 1685667437011 + }, + "date_last_updated": { + "type": 6, + "value": 1685667437011 + }, + "date_of_expiration": { + "type": 6, + "value": 1748825837011 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53991,9 +69296,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667452001, - "date_created": { "type": 6, "value": 1685667452001 }, - "date_last_updated": { "type": 6, "value": 1685667452001 }, - "date_of_expiration": { "type": 6, "value": 1717289852001 }, + "date_created": { + "type": 6, + "value": 1685667452001 + }, + "date_last_updated": { + "type": 6, + "value": 1685667452001 + }, + "date_of_expiration": { + "type": 6, + "value": 1717289852001 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54053,9 +69367,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667466065, - "date_created": { "type": 6, "value": 1685667466065 }, - "date_last_updated": { "type": 6, "value": 1685667466065 }, - "date_of_expiration": { "type": 6, "value": 1701478666065 }, + "date_created": { + "type": 6, + "value": 1685667466065 + }, + "date_last_updated": { + "type": 6, + "value": 1685667466065 + }, + "date_of_expiration": { + "type": 6, + "value": 1701478666065 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54115,9 +69438,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667479611, - "date_created": { "type": 6, "value": 1685667479611 }, - "date_last_updated": { "type": 6, "value": 1685667479611 }, - "date_of_expiration": { "type": 6, "value": 1688259479611 }, + "date_created": { + "type": 6, + "value": 1685667479611 + }, + "date_last_updated": { + "type": 6, + "value": 1685667479611 + }, + "date_of_expiration": { + "type": 6, + "value": 1688259479611 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54177,9 +69509,18 @@ "original_amount": 22711633, "total_amount": 22711633, "id": 1687307213896, - "date_created": { "type": 6, "value": 1687307213896 }, - "date_last_updated": { "type": 6, "value": 1687307213896 }, - "date_of_expiration": { "type": 6, "value": 1718929613896 }, + "date_created": { + "type": 6, + "value": 1687307213896 + }, + "date_last_updated": { + "type": 6, + "value": 1687307213896 + }, + "date_of_expiration": { + "type": 6, + "value": 1718929613896 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54239,9 +69580,18 @@ "original_amount": 24000000, "total_amount": 24000000, "id": 1687313762388, - "date_created": { "type": 6, "value": 1687313762388 }, - "date_last_updated": { "type": 6, "value": 1687313762388 }, - "date_of_expiration": { "type": 6, "value": 1750472162388 }, + "date_created": { + "type": 6, + "value": 1687313762388 + }, + "date_last_updated": { + "type": 6, + "value": 1687313762388 + }, + "date_of_expiration": { + "type": 6, + "value": 1750472162388 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54301,9 +69651,18 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1688400402521, - "date_created": { "type": 6, "value": 1688400402521 }, - "date_last_updated": { "type": 6, "value": 1688400402521 }, - "date_of_expiration": { "type": 6, "value": 1688400402521 }, + "date_created": { + "type": 6, + "value": 1688400402521 + }, + "date_last_updated": { + "type": 6, + "value": 1688400402521 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400402521 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54364,9 +69723,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1688403044242, - "date_created": { "type": 6, "value": 1688403044242 }, - "date_last_updated": { "type": 6, "value": 1688403044242 }, - "date_of_expiration": { "type": 6, "value": 1691081444242 }, + "date_created": { + "type": 6, + "value": 1688403044242 + }, + "date_last_updated": { + "type": 6, + "value": 1688403044242 + }, + "date_of_expiration": { + "type": 6, + "value": 1691081444242 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54393,7 +69761,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt030gk02myoohxgika9p4e", "revision_nr": 1, "created": 1697467099419, "modified": 1697467099419 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt030gk02myoohxgika9p4e", + "revision_nr": 1, + "created": 1697467099419, + "modified": 1697467099419 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915", @@ -54407,15 +69784,30 @@ "total_amount": 1500, "history_id": 1689132091915, "id": 1689132091915, - "date_created": { "type": 6, "value": 1689132091915 }, - "date_last_updated": { "type": 6, "value": 1689210471960 }, - "date_of_expiration": { "type": 6, "value": 1691724091915 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689210471960 }, - "money_release_date": { "type": 6, "value": 1689210471960 }, + "date_created": { + "type": 6, + "value": 1689132091915 + }, + "date_last_updated": { + "type": 6, + "value": 1689210471960 + }, + "date_of_expiration": { + "type": 6, + "value": 1691724091915 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689210471960 + }, + "money_release_date": { + "type": 6, + "value": 1689210471960 + }, "money_release_status": "approved", "wasDebited": true }, @@ -54475,9 +69867,18 @@ "total_amount": 1200, "id": 1689211234387, "contract_id": "1680571158806", - "date_created": { "type": 6, "value": 1689211234387 }, - "date_last_updated": { "type": 6, "value": 1689211234387 }, - "date_of_expiration": { "type": 6, "value": 1689211234387 }, + "date_created": { + "type": 6, + "value": 1689211234387 + }, + "date_last_updated": { + "type": 6, + "value": 1689211234387 + }, + "date_of_expiration": { + "type": 6, + "value": 1689211234387 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -54541,9 +69942,18 @@ "total_amount": 290, "id": 1689211234773, "contract_id": "1684367721554", - "date_created": { "type": 6, "value": 1689211234773 }, - "date_last_updated": { "type": 6, "value": 1689211234773 }, - "date_of_expiration": { "type": 6, "value": 1689211234773 }, + "date_created": { + "type": 6, + "value": 1689211234773 + }, + "date_last_updated": { + "type": 6, + "value": 1689211234773 + }, + "date_of_expiration": { + "type": 6, + "value": 1689211234773 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -54603,9 +70013,18 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1691081485992, - "date_created": { "type": 6, "value": 1691081485992 }, - "date_last_updated": { "type": 6, "value": 1691081485992 }, - "date_of_expiration": { "type": 6, "value": 1691081485992 }, + "date_created": { + "type": 6, + "value": 1691081485992 + }, + "date_last_updated": { + "type": 6, + "value": 1691081485992 + }, + "date_of_expiration": { + "type": 6, + "value": 1691081485992 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54675,9 +70094,18 @@ "total_amount": 8000000, "id": 1691082200859, "history_id": 1691082200859, - "date_created": { "type": 6, "value": 1691082200859 }, - "date_last_updated": { "type": 6, "value": 1691082200859 }, - "date_of_expiration": { "type": 6, "value": 1693760600858 }, + "date_created": { + "type": 6, + "value": 1691082200859 + }, + "date_last_updated": { + "type": 6, + "value": 1691082200859 + }, + "date_of_expiration": { + "type": 6, + "value": 1693760600858 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54695,7 +70123,13 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694387537743 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694387537743 + } + }, "revision": "lnt030jr02ndoohxe3yxe64h", "revision_nr": 1, "created": 1697467099534, @@ -54757,16 +70191,28 @@ "total_amount": 1490, "id": 1691795537743, "history_id": 1691795537743, - "date_created": { "type": 6, "value": 1691795537743 }, - "date_last_updated": { "type": 6, "value": 1691805156867 }, + "date_created": { + "type": 6, + "value": 1691795537743 + }, + "date_last_updated": { + "type": 6, + "value": 1691805156867 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691805156867 }, - "money_release_date": { "type": 6, "value": 1691805156867 }, + "date_approved": { + "type": 6, + "value": 1691805156867 + }, + "money_release_date": { + "type": 6, + "value": 1691805156867 + }, "money_release_status": "approved", "wasDebited": true }, @@ -54826,9 +70272,18 @@ "total_amount": 1200, "id": 1691838943906, "contract_id": "1680571158806", - "date_created": { "type": 6, "value": 1691838943906 }, - "date_last_updated": { "type": 6, "value": 1691838943906 }, - "date_of_expiration": { "type": 6, "value": 1691838943906 }, + "date_created": { + "type": 6, + "value": 1691838943906 + }, + "date_last_updated": { + "type": 6, + "value": 1691838943906 + }, + "date_of_expiration": { + "type": 6, + "value": 1691838943906 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -54892,9 +70347,18 @@ "total_amount": 290, "id": 1691838944125, "contract_id": "1684367721554", - "date_created": { "type": 6, "value": 1691838944125 }, - "date_last_updated": { "type": 6, "value": 1691838944125 }, - "date_of_expiration": { "type": 6, "value": 1691838944125 }, + "date_created": { + "type": 6, + "value": 1691838944125 + }, + "date_last_updated": { + "type": 6, + "value": 1691838944125 + }, + "date_of_expiration": { + "type": 6, + "value": 1691838944125 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -54963,9 +70427,18 @@ "total_amount": 8160000, "id": "1693760654707", "history_id": "1693760654707", - "date_created": { "type": 6, "value": 1693760654707 }, - "date_last_updated": { "type": 6, "value": 1693760654707 }, - "date_of_expiration": { "type": 6, "value": 1693760654707 }, + "date_created": { + "type": 6, + "value": 1693760654707 + }, + "date_last_updated": { + "type": 6, + "value": 1693760654707 + }, + "date_of_expiration": { + "type": 6, + "value": 1693760654707 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -55034,16 +70507,28 @@ "total_amount": 5000000, "id": "1693869394011", "history_id": "1693869394011", - "date_created": { "type": 6, "value": 1693869394011 }, - "date_last_updated": { "type": 6, "value": 1696424640740 }, - "date_of_expiration": { "type": 6, "value": 1696461394011 }, + "date_created": { + "type": 6, + "value": 1693869394011 + }, + "date_last_updated": { + "type": 6, + "value": 1696424640740 + }, + "date_of_expiration": { + "type": 6, + "value": 1696461394011 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1696424640740 }, + "money_release_date": { + "type": 6, + "value": 1696424640740 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -55057,7 +70542,13 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697073911857 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697073911857 + } + }, "revision": "lnt030nq02nwoohxbce21jr4", "revision_nr": 1, "created": 1697467099677, @@ -55119,16 +70610,28 @@ "total_amount": 1490, "id": "1694481911857", "history_id": "1694481911857", - "date_created": { "type": 6, "value": 1694481911857 }, - "date_last_updated": { "type": 6, "value": 1694626658166 }, + "date_created": { + "type": 6, + "value": 1694481911857 + }, + "date_last_updated": { + "type": 6, + "value": 1694626658166 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694626658166 }, - "money_release_date": { "type": 6, "value": 1694626658166 }, + "date_approved": { + "type": 6, + "value": 1694626658166 + }, + "money_release_date": { + "type": 6, + "value": 1694626658166 + }, "money_release_status": "approved", "wasDebited": true }, @@ -55195,9 +70698,18 @@ "total_amount": 1200, "id": "1694627290479", "history_id": "1694627290479", - "date_created": { "type": 6, "value": 1694627290479 }, - "date_last_updated": { "type": 6, "value": 1694627290479 }, - "date_of_expiration": { "type": 6, "value": 1694627290479 }, + "date_created": { + "type": 6, + "value": 1694627290479 + }, + "date_last_updated": { + "type": 6, + "value": 1694627290479 + }, + "date_of_expiration": { + "type": 6, + "value": 1694627290479 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -55268,9 +70780,18 @@ "total_amount": 290, "id": "1694627290565", "history_id": "1694627290565", - "date_created": { "type": 6, "value": 1694627290565 }, - "date_last_updated": { "type": 6, "value": 1694627290565 }, - "date_of_expiration": { "type": 6, "value": 1694627290565 }, + "date_created": { + "type": 6, + "value": 1694627290565 + }, + "date_last_updated": { + "type": 6, + "value": 1694627290565 + }, + "date_of_expiration": { + "type": 6, + "value": 1694627290565 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -55340,9 +70861,18 @@ "total_amount": 8000000, "id": "1696555808953", "history_id": "1696555808953", - "date_created": { "type": 6, "value": 1696555808953 }, - "date_last_updated": { "type": 6, "value": 1696555808953 }, - "date_of_expiration": { "type": 6, "value": 1699234208931 }, + "date_created": { + "type": 6, + "value": 1696555808953 + }, + "date_last_updated": { + "type": 6, + "value": 1696555808953 + }, + "date_of_expiration": { + "type": 6, + "value": 1699234208931 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -55360,7 +70890,13 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699411744331 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699411744331 + } + }, "revision": "lnt030rb02odoohxcsah23bx", "revision_nr": 1, "created": 1697467099807, @@ -55423,16 +70959,28 @@ "total_amount": 1490, "id": "1696819744331", "history_id": "1696819744331", - "date_created": { "type": 6, "value": 1696819744331 }, - "date_last_updated": { "type": 6, "value": 1696855141326 }, + "date_created": { + "type": 6, + "value": 1696819744331 + }, + "date_last_updated": { + "type": 6, + "value": 1696855141326 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696855141326 }, - "money_release_date": { "type": 6, "value": 1696855141326 }, + "date_approved": { + "type": 6, + "value": 1696855141326 + }, + "money_release_date": { + "type": 6, + "value": 1696855141326 + }, "money_release_status": "approved", "wasDebited": true }, @@ -55500,9 +71048,18 @@ "total_amount": 1200, "id": "1696861214347", "history_id": "1696861214347", - "date_created": { "type": 6, "value": 1696861214347 }, - "date_last_updated": { "type": 6, "value": 1696861214347 }, - "date_of_expiration": { "type": 6, "value": 1696861214347 }, + "date_created": { + "type": 6, + "value": 1696861214347 + }, + "date_last_updated": { + "type": 6, + "value": 1696861214347 + }, + "date_of_expiration": { + "type": 6, + "value": 1696861214347 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -55574,9 +71131,18 @@ "total_amount": 290, "id": "1696861218511", "history_id": "1696861218511", - "date_created": { "type": 6, "value": 1696861218511 }, - "date_last_updated": { "type": 6, "value": 1696861218511 }, - "date_of_expiration": { "type": 6, "value": 1696861218511 }, + "date_created": { + "type": 6, + "value": 1696861218511 + }, + "date_last_updated": { + "type": 6, + "value": 1696861218511 + }, + "date_of_expiration": { + "type": 6, + "value": 1696861218511 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -55592,7 +71158,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history", - "content": { "type": 1, "value": {}, "revision": "lnt0301x02l0oohxen7fhnvg", "revision_nr": 1, "created": 1697467099907, "modified": 1697467099907 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0301x02l0oohxen7fhnvg", + "revision_nr": 1, + "created": 1697467099907, + "modified": 1697467099907 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/description", @@ -55609,7 +71182,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt030ui02ovoohx72r38eo2", "revision_nr": 1, "created": 1697467099921, @@ -55618,7 +71195,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt030ui02ouoohx0va9024q", "revision_nr": 1, "created": 1697467099929, "modified": 1697467099929 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt030ui02ouoohx0va9024q", + "revision_nr": 1, + "created": 1697467099929, + "modified": 1697467099929 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806", @@ -55631,7 +71215,10 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid" @@ -55644,7 +71231,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305", - "content": { "type": 1, "value": {}, "revision": "lnt030ub02oroohx0ipx9n78", "revision_nr": 1, "created": 1697467099944, "modified": 1697467099944 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt030ub02oroohx0ipx9n78", + "revision_nr": 1, + "created": 1697467099944, + "modified": 1697467099944 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/description", @@ -55661,7 +71255,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt030vk02p0oohx4pm8flq9", "revision_nr": 1, "created": 1697467099961, @@ -55670,7 +71268,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt030vk02ozoohxcu60czfo", "revision_nr": 1, "created": 1697467099969, "modified": 1697467099969 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt030vk02ozoohxcu60czfo", + "revision_nr": 1, + "created": 1697467099969, + "modified": 1697467099969 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806", @@ -55683,7 +71288,10 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid" @@ -55709,7 +71317,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt030wf02p4oohx8j5t5vv0", "revision_nr": 1, "created": 1697467099991, @@ -55718,7 +71330,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554/costs", - "content": { "type": 2, "value": {}, "revision": "lnt030wf02p3oohx4n286wcg", "revision_nr": 1, "created": 1697467099998, "modified": 1697467099998 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt030wf02p3oohx4n286wcg", + "revision_nr": 1, + "created": 1697467099998, + "modified": 1697467099998 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554", @@ -55731,7 +71350,10 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { "type": 6, "value": 1684367721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid" @@ -55757,7 +71379,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 5 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 1 parcela(s) 2.00%", + "amount": 5 + }, "revision": "lnt030xa02p8oohx90f5acpi", "revision_nr": 1, "created": 1697467100022, @@ -55766,7 +71392,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049/costs", - "content": { "type": 2, "value": {}, "revision": "lnt030x902p7oohx2t6rf4bx", "revision_nr": 1, "created": 1697467100030, "modified": 1697467100030 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt030x902p7oohx2t6rf4bx", + "revision_nr": 1, + "created": 1697467100030, + "modified": 1697467100030 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049", @@ -55779,7 +71412,10 @@ "total_amount": 255, "installments": 1, "installment_amount": 255, - "date_created": { "type": 6, "value": 1684661775049 }, + "date_created": { + "type": 6, + "value": 1684661775049 + }, "history_id": 1684661775049, "currency_id": "BRL", "status": "paid" @@ -55792,7 +71428,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt030vd02owoohx161u8mpb", "revision_nr": 1, "created": 1697467100044, "modified": 1697467100044 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt030vd02owoohx161u8mpb", + "revision_nr": 1, + "created": 1697467100044, + "modified": 1697467100044 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/description", @@ -55809,7 +71452,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt030yc02pdoohxdxq5axb2", "revision_nr": 1, "created": 1697467100059, @@ -55818,7 +71465,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt030yc02pcoohx7ci97mof", "revision_nr": 1, "created": 1697467100066, "modified": 1697467100066 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt030yc02pcoohx7ci97mof", + "revision_nr": 1, + "created": 1697467100066, + "modified": 1697467100066 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806", @@ -55831,7 +71485,10 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid" @@ -55857,7 +71514,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt030z702phoohxdlgw0ab2", "revision_nr": 1, "created": 1697467100091, @@ -55866,7 +71527,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554/costs", - "content": { "type": 2, "value": {}, "revision": "lnt030z702pgoohx6ncig1pg", "revision_nr": 1, "created": 1697467100098, "modified": 1697467100098 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt030z702pgoohx6ncig1pg", + "revision_nr": 1, + "created": 1697467100098, + "modified": 1697467100098 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554", @@ -55879,7 +71547,10 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { "type": 6, "value": 1684367721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid" @@ -55892,7 +71563,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt030y402p9oohxac8p37vh", "revision_nr": 1, "created": 1697467100113, "modified": 1697467100113 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt030y402p9oohxac8p37vh", + "revision_nr": 1, + "created": 1697467100113, + "modified": 1697467100113 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/description", @@ -55909,7 +71587,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt0310902pmoohx56907vjm", "revision_nr": 1, "created": 1697467100129, @@ -55918,7 +71600,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0310902ploohxaph051bh", "revision_nr": 1, "created": 1697467100137, "modified": 1697467100137 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0310902ploohxaph051bh", + "revision_nr": 1, + "created": 1697467100137, + "modified": 1697467100137 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806", @@ -55931,7 +71620,10 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid" @@ -55957,7 +71649,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt0311402pqoohx3kcl0pob", "revision_nr": 1, "created": 1697467100166, @@ -55966,7 +71662,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0311402ppoohxhz0ue4ue", "revision_nr": 1, "created": 1697467100174, "modified": 1697467100174 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0311402ppoohxhz0ue4ue", + "revision_nr": 1, + "created": 1697467100174, + "modified": 1697467100174 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554", @@ -55979,7 +71682,10 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { "type": 6, "value": 1684367721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid" @@ -55992,7 +71698,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt0310102pioohxfynhdkn2", "revision_nr": 1, "created": 1697467100189, "modified": 1697467100189 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0310102pioohxfynhdkn2", + "revision_nr": 1, + "created": 1697467100189, + "modified": 1697467100189 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/description", @@ -56009,7 +71722,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt0312d02pvoohxhvajh85s", "revision_nr": 1, "created": 1697467100206, @@ -56018,7 +71735,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0312d02puoohx27ahh4w9", "revision_nr": 1, "created": 1697467100213, "modified": 1697467100213 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0312d02puoohx27ahh4w9", + "revision_nr": 1, + "created": 1697467100213, + "modified": 1697467100213 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806", @@ -56031,11 +71755,17 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694627290497 } + "date_last_updated": { + "type": 6, + "value": 1694627290497 + } }, "revision": "lnt0312602psoohx1kai2lxr", "revision_nr": 1, @@ -56058,7 +71788,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt0313802pzoohxbux23x35", "revision_nr": 1, "created": 1697467100235, @@ -56067,7 +71801,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0313802pyoohxg9urhml2", "revision_nr": 1, "created": 1697467100242, "modified": 1697467100242 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0313802pyoohxg9urhml2", + "revision_nr": 1, + "created": 1697467100242, + "modified": 1697467100242 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554", @@ -56080,11 +71821,17 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { "type": 6, "value": 1684367721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694627290583 } + "date_last_updated": { + "type": 6, + "value": 1694627290583 + } }, "revision": "lnt0313102pwoohx15p13e6d", "revision_nr": 1, @@ -56094,7 +71841,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt0312502proohx305j4uer", "revision_nr": 1, "created": 1697467100258, "modified": 1697467100258 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0312502proohx305j4uer", + "revision_nr": 1, + "created": 1697467100258, + "modified": 1697467100258 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/description", @@ -56111,7 +71865,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt0314a02q4oohxh4s2hrkh", "revision_nr": 1, "created": 1697467100274, @@ -56120,7 +71878,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0314a02q3oohx9l513ucc", "revision_nr": 1, "created": 1697467100282, "modified": 1697467100282 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0314a02q3oohx9l513ucc", + "revision_nr": 1, + "created": 1697467100282, + "modified": 1697467100282 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806", @@ -56133,11 +71898,17 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1696861218119 } + "date_last_updated": { + "type": 6, + "value": 1696861218119 + } }, "revision": "lnt0314202q1oohx7hf8dsl4", "revision_nr": 1, @@ -56160,7 +71931,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt0315502q8oohxbcx3dpp8", "revision_nr": 1, "created": 1697467100305, @@ -56169,7 +71944,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0315502q7oohxb30j16uw", "revision_nr": 1, "created": 1697467100312, "modified": 1697467100312 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0315502q7oohxb30j16uw", + "revision_nr": 1, + "created": 1697467100312, + "modified": 1697467100312 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554", @@ -56182,11 +71964,17 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { "type": 6, "value": 1684367721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1696861218540 } + "date_last_updated": { + "type": 6, + "value": 1696861218540 + } }, "revision": "lnt0314x02q5oohx1o89h2qb", "revision_nr": 1, @@ -56196,7 +71984,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310", - "content": { "type": 1, "value": {}, "revision": "lnt0314202q0oohxbd79flc7", "revision_nr": 1, "created": 1697467100328, "modified": 1697467100328 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0314202q0oohxbd79flc7", + "revision_nr": 1, + "created": 1697467100328, + "modified": 1697467100328 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/description", @@ -56213,7 +72008,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt0316902qdoohxcr14co7q", "revision_nr": 1, "created": 1697467100345, @@ -56222,7 +72021,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0316902qcoohxg2i38ayc", "revision_nr": 1, "created": 1697467100352, "modified": 1697467100352 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0316902qcoohxg2i38ayc", + "revision_nr": 1, + "created": 1697467100352, + "modified": 1697467100352 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806", @@ -56235,7 +72041,10 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL" }, @@ -56260,7 +72069,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt0317302qhoohx16ss091r", "revision_nr": 1, "created": 1697467100376, @@ -56269,7 +72082,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0317302qgoohxbl85hwmo", "revision_nr": 1, "created": 1697467100383, "modified": 1697467100383 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0317302qgoohxbl85hwmo", + "revision_nr": 1, + "created": 1697467100383, + "modified": 1697467100383 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554", @@ -56282,7 +72102,10 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { "type": 6, "value": 1684367721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL" }, @@ -56294,7 +72117,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311", - "content": { "type": 1, "value": {}, "revision": "lnt0316002q9oohx8v3qajxd", "revision_nr": 1, "created": 1697467100399, "modified": 1697467100399 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0316002q9oohx8v3qajxd", + "revision_nr": 1, + "created": 1697467100399, + "modified": 1697467100399 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/description", @@ -56311,7 +72141,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt0318702qmoohx6otq9nm3", "revision_nr": 1, "created": 1697467100414, @@ -56320,7 +72154,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0318702qloohx3fs9cwvw", "revision_nr": 1, "created": 1697467100422, "modified": 1697467100422 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0318702qloohx3fs9cwvw", + "revision_nr": 1, + "created": 1697467100422, + "modified": 1697467100422 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806", @@ -56333,7 +72174,10 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL" }, @@ -56358,7 +72202,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt0319102qqoohx002e9dn6", "revision_nr": 1, "created": 1697467100445, @@ -56367,7 +72215,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0319102qpoohx969teciw", "revision_nr": 1, "created": 1697467100454, "modified": 1697467100454 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0319102qpoohx969teciw", + "revision_nr": 1, + "created": 1697467100454, + "modified": 1697467100454 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554", @@ -56380,7 +72235,10 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { "type": 6, "value": 1684367721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL" }, @@ -56392,7 +72250,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312", - "content": { "type": 1, "value": {}, "revision": "lnt0317z02qioohx46t3ciqa", "revision_nr": 1, "created": 1697467100470, "modified": 1697467100470 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0317z02qioohx46t3ciqa", + "revision_nr": 1, + "created": 1697467100470, + "modified": 1697467100470 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/description", @@ -56409,7 +72274,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt031a602qvoohx0b1vetfa", "revision_nr": 1, "created": 1697467100485, @@ -56418,7 +72287,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt031a602quoohx26pkbztb", "revision_nr": 1, "created": 1697467100492, "modified": 1697467100492 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt031a602quoohx26pkbztb", + "revision_nr": 1, + "created": 1697467100492, + "modified": 1697467100492 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806", @@ -56431,7 +72307,10 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL" }, @@ -56456,7 +72335,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 8 parcela(s) 16.00%", + "amount": 320 + }, "revision": "lnt031b102qzoohx2o1y6qe9", "revision_nr": 1, "created": 1697467100516, @@ -56465,7 +72348,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554/costs", - "content": { "type": 2, "value": {}, "revision": "lnt031b102qyoohxe20i9iwo", "revision_nr": 1, "created": 1697467100525, "modified": 1697467100525 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt031b102qyoohxe20i9iwo", + "revision_nr": 1, + "created": 1697467100525, + "modified": 1697467100525 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554", @@ -56478,7 +72368,10 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { "type": 6, "value": 1684367721554 }, + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL" }, @@ -56490,7 +72383,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401", - "content": { "type": 1, "value": {}, "revision": "lnt0319y02qroohx99nyavu1", "revision_nr": 1, "created": 1697467100540, "modified": 1697467100540 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0319y02qroohx99nyavu1", + "revision_nr": 1, + "created": 1697467100540, + "modified": 1697467100540 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/description", @@ -56507,7 +72407,11 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 2000 + }, "revision": "lnt031c302r4oohxfc17f078", "revision_nr": 1, "created": 1697467100555, @@ -56516,7 +72420,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/costs", - "content": { "type": 2, "value": {}, "revision": "lnt031c302r3oohxhtwsa8kz", "revision_nr": 1, "created": 1697467100563, "modified": 1697467100563 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt031c302r3oohxhtwsa8kz", + "revision_nr": 1, + "created": 1697467100563, + "modified": 1697467100563 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806", @@ -56529,7 +72440,10 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { "type": 6, "value": 1680571158806 }, + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL" }, @@ -56541,17 +72455,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402", - "content": { "type": 1, "value": {}, "revision": "lnt031bw02r0oohxa0befr4n", "revision_nr": 1, "created": 1697467100578, "modified": 1697467100578 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031bw02r0oohxa0befr4n", + "revision_nr": 1, + "created": 1697467100578, + "modified": 1697467100578 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt030ub02oqoohxba069n1q", "revision_nr": 1, "created": 1697467100586, "modified": 1697467100586 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt030ub02oqoohxba069n1q", + "revision_nr": 1, + "created": 1697467100586, + "modified": 1697467100586 + } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit", "content": { "type": 1, - "value": { "approvedLimit": 10000, "limitUsed": 7250, "analysisRequested": { "type": 6, "value": 1680570808027 }, "lastReview": { "type": 6, "value": 1680978393740 } }, + "value": { + "approvedLimit": 10000, + "limitUsed": 7250, + "analysisRequested": { + "type": 6, + "value": 1680570808027 + }, + "lastReview": { + "type": 6, + "value": 1680978393740 + } + }, "revision": "lnt030ub02opoohxgctjbli9", "revision_nr": 1, "created": 1697467100595, @@ -56562,7 +72501,16 @@ "path": "ivipcoin-db::__movement_wallet__/098302449130142080", "content": { "type": 1, - "value": { "dataModificacao": 1680465637248, "dateValidity": 1680465637248, "totalValue": 7716.736, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696820400000 } }, + "value": { + "dataModificacao": 1680465637248, + "dateValidity": 1680465637248, + "totalValue": 7716.736, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } + }, "revision": "lnt0301b02kwoohxcn6u2dqt", "revision_nr": 1, "created": 1697467100603, @@ -56573,7 +72521,11 @@ "path": "ivipcoin-db::__movement_wallet__/099867702110120200/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt031dn02r6oohxbeng7r42", "revision_nr": 1, "created": 1697467100610, @@ -56584,7 +72536,14 @@ "path": "ivipcoin-db::__movement_wallet__/099867702110120200", "content": { "type": 1, - "value": { "dataModificacao": 1684118396230, "dateValidity": 1684118396230, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684118396230, + "dateValidity": 1684118396230, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031dn02r5oohx9cbz0qtf", "revision_nr": 1, "created": 1697467100618, @@ -56595,7 +72554,14 @@ "path": "ivipcoin-db::__movement_wallet__/100571192646522480", "content": { "type": 1, - "value": { "dataModificacao": 1677468345456, "dateValidity": 1677468345456, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677468345456, + "dateValidity": 1677468345456, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031e202r7oohx8z74dd70", "revision_nr": 1, "created": 1697467100627, @@ -56606,7 +72572,11 @@ "path": "ivipcoin-db::__movement_wallet__/101099073948007100/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt031eb02r9oohx183shxpv", "revision_nr": 1, "created": 1697467100634, @@ -56617,7 +72587,14 @@ "path": "ivipcoin-db::__movement_wallet__/101099073948007100", "content": { "type": 1, - "value": { "dataModificacao": 1685622109779, "dateValidity": 1685622109779, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1685622109779, + "dateValidity": 1685622109779, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031eb02r8oohxeji36dr5", "revision_nr": 1, "created": 1697467100642, @@ -56637,7 +72614,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031ey02reoohxfi6d315q", "revision_nr": 1, "created": 1697467100658, "modified": 1697467100658 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031ey02reoohxfi6d315q", + "revision_nr": 1, + "created": 1697467100658, + "modified": 1697467100658 + } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855", @@ -56651,15 +72637,30 @@ "total_amount": 1700, "history_id": 1683387433855, "id": 1683387433855, - "date_created": { "type": 6, "value": 1683387433855 }, - "date_last_updated": { "type": 6, "value": 1683393632539 }, - "date_of_expiration": { "type": 6, "value": 1685979433855 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683393632539 }, - "money_release_date": { "type": 6, "value": 1683393632539 }, + "date_created": { + "type": 6, + "value": 1683387433855 + }, + "date_last_updated": { + "type": 6, + "value": 1683393632539 + }, + "date_of_expiration": { + "type": 6, + "value": 1685979433855 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683393632539 + }, + "money_release_date": { + "type": 6, + "value": 1683393632539 + }, "money_release_status": "approved", "wasDebited": true }, @@ -56682,7 +72683,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031fl02rhoohx9bybafxr", "revision_nr": 1, "created": 1697467100681, "modified": 1697467100681 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031fl02rhoohx9bybafxr", + "revision_nr": 1, + "created": 1697467100681, + "modified": 1697467100681 + } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058", @@ -56696,15 +72706,30 @@ "total_amount": 1000, "history_id": 1683729448058, "id": 1683729448058, - "date_created": { "type": 6, "value": 1683729448058 }, - "date_last_updated": { "type": 6, "value": 1683730132161 }, - "date_of_expiration": { "type": 6, "value": 1686321448058 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683730132161 }, - "money_release_date": { "type": 6, "value": 1683730132161 }, + "date_created": { + "type": 6, + "value": 1683729448058 + }, + "date_last_updated": { + "type": 6, + "value": 1683730132161 + }, + "date_of_expiration": { + "type": 6, + "value": 1686321448058 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683730132161 + }, + "money_release_date": { + "type": 6, + "value": 1683730132161 + }, "money_release_status": "approved", "wasDebited": true }, @@ -56750,9 +72775,18 @@ "original_amount": 14591858, "total_amount": 14591858, "id": 1684018976722, - "date_created": { "type": 6, "value": 1684018976722 }, - "date_last_updated": { "type": 6, "value": 1684018976722 }, - "date_of_expiration": { "type": 6, "value": 1684018976722 }, + "date_created": { + "type": 6, + "value": 1684018976722 + }, + "date_last_updated": { + "type": 6, + "value": 1684018976722 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018976722 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -56780,7 +72814,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031gq02rmoohx7g6n0np9", "revision_nr": 1, "created": 1697467100721, "modified": 1697467100721 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031gq02rmoohx7g6n0np9", + "revision_nr": 1, + "created": 1697467100721, + "modified": 1697467100721 + } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706", @@ -56794,9 +72837,18 @@ "total_amount": 14591858, "history_id": 1686488141706, "id": 1686488141706, - "date_created": { "type": 6, "value": 1686488141706 }, - "date_last_updated": { "type": 6, "value": 1686488141706 }, - "date_of_expiration": { "type": 6, "value": 1686488141706 }, + "date_created": { + "type": 6, + "value": 1686488141706 + }, + "date_last_updated": { + "type": 6, + "value": 1686488141706 + }, + "date_of_expiration": { + "type": 6, + "value": 1686488141706 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -56821,7 +72873,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031hc02rpoohx5c1dgrg6", "revision_nr": 1, "created": 1697467100744, "modified": 1697467100744 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031hc02rpoohx5c1dgrg6", + "revision_nr": 1, + "created": 1697467100744, + "modified": 1697467100744 + } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256", @@ -56835,9 +72896,18 @@ "total_amount": 14591858, "history_id": 1686581079256, "id": 1686581079256, - "date_created": { "type": 6, "value": 1686581079256 }, - "date_last_updated": { "type": 6, "value": 1686581079256 }, - "date_of_expiration": { "type": 6, "value": 1686581079256 }, + "date_created": { + "type": 6, + "value": 1686581079256 + }, + "date_last_updated": { + "type": 6, + "value": 1686581079256 + }, + "date_of_expiration": { + "type": 6, + "value": 1686581079256 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -56862,7 +72932,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031i002rsoohxajqhb3dv", "revision_nr": 1, "created": 1697467100768, "modified": 1697467100768 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031i002rsoohxajqhb3dv", + "revision_nr": 1, + "created": 1697467100768, + "modified": 1697467100768 + } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098", @@ -56876,9 +72955,18 @@ "total_amount": 14591858, "history_id": 1686647052098, "id": 1686647052098, - "date_created": { "type": 6, "value": 1686647052098 }, - "date_last_updated": { "type": 6, "value": 1686647052098 }, - "date_of_expiration": { "type": 6, "value": 1686647052098 }, + "date_created": { + "type": 6, + "value": 1686647052098 + }, + "date_last_updated": { + "type": 6, + "value": 1686647052098 + }, + "date_of_expiration": { + "type": 6, + "value": 1686647052098 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -56903,7 +72991,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031io02rvoohx3k11e90x", "revision_nr": 1, "created": 1697467100792, "modified": 1697467100792 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031io02rvoohx3k11e90x", + "revision_nr": 1, + "created": 1697467100792, + "modified": 1697467100792 + } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224", @@ -56917,15 +73014,30 @@ "total_amount": 14591858, "history_id": 1686750536224, "id": 1686750536224, - "date_created": { "type": 6, "value": 1686750536224 }, - "date_last_updated": { "type": 6, "value": 1686865334419 }, - "date_of_expiration": { "type": 6, "value": 1686750536224 }, + "date_created": { + "type": 6, + "value": 1686750536224 + }, + "date_last_updated": { + "type": 6, + "value": 1686865334419 + }, + "date_of_expiration": { + "type": 6, + "value": 1686750536224 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1686865334419 }, - "money_release_date": { "type": 6, "value": 1686865334419 }, + "date_approved": { + "type": 6, + "value": 1686865334419 + }, + "money_release_date": { + "type": 6, + "value": 1686865334419 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -56948,7 +73060,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031jb02ryoohx04zfcapk", "revision_nr": 1, "created": 1697467100814, "modified": 1697467100814 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031jb02ryoohx04zfcapk", + "revision_nr": 1, + "created": 1697467100814, + "modified": 1697467100814 + } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655", @@ -56962,9 +73083,18 @@ "total_amount": 14591858, "history_id": 1686865268655, "id": 1686865268655, - "date_created": { "type": 6, "value": 1686865268655 }, - "date_last_updated": { "type": 6, "value": 1686865268655 }, - "date_of_expiration": { "type": 6, "value": 1686865268655 }, + "date_created": { + "type": 6, + "value": 1686865268655 + }, + "date_last_updated": { + "type": 6, + "value": 1686865268655 + }, + "date_of_expiration": { + "type": 6, + "value": 1686865268655 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -56978,13 +73108,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history", - "content": { "type": 1, "value": {}, "revision": "lnt031eq02rboohx0l7xh4dx", "revision_nr": 1, "created": 1697467100831, "modified": 1697467100831 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031eq02rboohx0l7xh4dx", + "revision_nr": 1, + "created": 1697467100831, + "modified": 1697467100831 + } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1694712457445 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1694712457445 + } + }, "revision": "lnt031jz02rzoohxh54hfht6", "revision_nr": 1, "created": 1697467100839, @@ -57001,7 +73146,10 @@ "balances": {}, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1695610800000 } + "balancesModificacao": { + "type": 6, + "value": 1695610800000 + } }, "revision": "lnt031eq02raoohxhdnl9tfo", "revision_nr": 1, @@ -57013,7 +73161,14 @@ "path": "ivipcoin-db::__movement_wallet__/101924508374940270", "content": { "type": 1, - "value": { "dataModificacao": 1679287665883, "dateValidity": 1679287665883, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1679287665883, + "dateValidity": 1679287665883, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031kf02s0oohx55il8oi6", "revision_nr": 1, "created": 1697467100854, @@ -57024,7 +73179,14 @@ "path": "ivipcoin-db::__movement_wallet__/102162769887914180", "content": { "type": 1, - "value": { "dataModificacao": 1689113009824, "dateValidity": 1689113009824, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1689113009824, + "dateValidity": 1689113009824, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031kn02s1oohx50cy778l", "revision_nr": 1, "created": 1697467100862, @@ -57035,7 +73197,14 @@ "path": "ivipcoin-db::__movement_wallet__/102585657323784220", "content": { "type": 1, - "value": { "dataModificacao": 1679436379945, "dateValidity": 1679436379945, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1679436379945, + "dateValidity": 1679436379945, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031ku02s2oohx98ai0ste", "revision_nr": 1, "created": 1697467100871, @@ -57046,7 +73215,13 @@ "path": "ivipcoin-db::__movement_wallet__/102986238363877330", "content": { "type": 1, - "value": { "dataModificacao": 1696096915384, "dateValidity": 1696096916164, "balances": {}, "history": {}, "currencyType": "USD" }, + "value": { + "dataModificacao": 1696096915384, + "dateValidity": 1696096916164, + "balances": {}, + "history": {}, + "currencyType": "USD" + }, "revision": "lnt031l302s3oohxfutd2oge", "revision_nr": 1, "created": 1697467100879, @@ -57057,7 +73232,14 @@ "path": "ivipcoin-db::__movement_wallet__/103931688787322940", "content": { "type": 1, - "value": { "dataModificacao": 1679165777705, "dateValidity": 1679165777705, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1679165777705, + "dateValidity": 1679165777705, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031lb02s4oohx8jidcmnt", "revision_nr": 1, "created": 1697467100887, @@ -57068,7 +73250,11 @@ "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "available": "0.00000000", "value": 0 }, + "value": { + "symbol": "BRL", + "available": "0.00000000", + "value": 0 + }, "revision": "lnt031lk02s7oohx3gel5weu", "revision_nr": 1, "created": 1697467100895, @@ -57079,7 +73265,11 @@ "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances/IVIP", "content": { "type": 1, - "value": { "symbol": "IVIP", "available": "0.00000000", "value": 0 }, + "value": { + "symbol": "IVIP", + "available": "0.00000000", + "value": 0 + }, "revision": "lnt031lr02s8oohxbahvevmm", "revision_nr": 1, "created": 1697467100903, @@ -57088,7 +73278,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances", - "content": { "type": 1, "value": {}, "revision": "lnt031lk02s6oohx5jlxccqn", "revision_nr": 1, "created": 1697467100910, "modified": 1697467100910 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031lk02s6oohx5jlxccqn", + "revision_nr": 1, + "created": 1697467100910, + "modified": 1697467100910 + } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717/description", @@ -57103,7 +73300,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031me02scoohx34tx31io", "revision_nr": 1, "created": 1697467100925, "modified": 1697467100925 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031me02scoohx34tx31io", + "revision_nr": 1, + "created": 1697467100925, + "modified": 1697467100925 + } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717", @@ -57117,15 +73323,30 @@ "total_amount": 50, "history_id": 1684170542717, "id": 1684170542717, - "date_created": { "type": 6, "value": 1684170542717 }, - "date_last_updated": { "type": 6, "value": 1684186221404 }, - "date_of_expiration": { "type": 6, "value": 1686762542717 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684186221404 }, - "money_release_date": { "type": 6, "value": 1684186221404 }, + "date_created": { + "type": 6, + "value": 1684170542717 + }, + "date_last_updated": { + "type": 6, + "value": 1684186221404 + }, + "date_of_expiration": { + "type": 6, + "value": 1686762542717 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684186221404 + }, + "money_release_date": { + "type": 6, + "value": 1684186221404 + }, "money_release_status": "approved", "wasDebited": true }, @@ -57171,9 +73392,18 @@ "original_amount": 243536, "total_amount": 243536, "id": 1684624294208, - "date_created": { "type": 6, "value": 1684624294208 }, - "date_last_updated": { "type": 6, "value": 1684624294208 }, - "date_of_expiration": { "type": 6, "value": 1684624294208 }, + "date_created": { + "type": 6, + "value": 1684624294208 + }, + "date_last_updated": { + "type": 6, + "value": 1684624294208 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624294208 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -57201,7 +73431,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031nm02shoohx01yufask", "revision_nr": 1, "created": 1697467100970, "modified": 1697467100970 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031nm02shoohx01yufask", + "revision_nr": 1, + "created": 1697467100970, + "modified": 1697467100970 + } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830", @@ -57215,15 +73454,30 @@ "total_amount": 243536, "history_id": 1688846842830, "id": 1688846842830, - "date_created": { "type": 6, "value": 1688846842830 }, - "date_last_updated": { "type": 6, "value": 1688846892432 }, - "date_of_expiration": { "type": 6, "value": 1688846842830 }, + "date_created": { + "type": 6, + "value": 1688846842830 + }, + "date_last_updated": { + "type": 6, + "value": 1688846892432 + }, + "date_of_expiration": { + "type": 6, + "value": 1688846842830 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1688846892432 }, - "money_release_date": { "type": 6, "value": 1688846892432 }, + "date_approved": { + "type": 6, + "value": 1688846892432 + }, + "money_release_date": { + "type": 6, + "value": 1688846892432 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -57235,13 +73489,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history", - "content": { "type": 1, "value": {}, "revision": "lnt031m602s9oohx0m5zgib3", "revision_nr": 1, "created": 1697467100985, "modified": 1697467100985 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031m602s9oohx0m5zgib3", + "revision_nr": 1, + "created": 1697467100985, + "modified": 1697467100985 + } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt031o902sioohx4ej6e636", "revision_nr": 1, "created": 1697467100993, @@ -57252,7 +73517,12 @@ "path": "ivipcoin-db::__movement_wallet__/106900896878269870", "content": { "type": 1, - "value": { "dataModificacao": 1684170470840, "dateValidity": 1684170470840, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684170470840, + "dateValidity": 1684170470840, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031lk02s5oohxdlxnfmeq", "revision_nr": 1, "created": 1697467101000, @@ -57263,7 +73533,14 @@ "path": "ivipcoin-db::__movement_wallet__/108390022183703310", "content": { "type": 1, - "value": { "dataModificacao": 1680695438579, "dateValidity": 1680695438579, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1680695438579, + "dateValidity": 1680695438579, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031oo02sjoohx82ml8677", "revision_nr": 1, "created": 1697467101009, @@ -57274,7 +73551,14 @@ "path": "ivipcoin-db::__movement_wallet__/108783781111851280", "content": { "type": 1, - "value": { "dataModificacao": 1681661884795, "dateValidity": 1681661884795, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1681661884795, + "dateValidity": 1681661884795, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031ox02skoohx84cjfley", "revision_nr": 1, "created": 1697467101016, @@ -57294,7 +73578,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031pe02spoohxhrkp3q0v", "revision_nr": 1, "created": 1697467101033, "modified": 1697467101033 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031pe02spoohxhrkp3q0v", + "revision_nr": 1, + "created": 1697467101033, + "modified": 1697467101033 + } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042", @@ -57308,15 +73601,30 @@ "total_amount": 500, "history_id": 1684095990042, "id": 1684095990042, - "date_created": { "type": 6, "value": 1684095990042 }, - "date_last_updated": { "type": 6, "value": 1684120166798 }, - "date_of_expiration": { "type": 6, "value": 1686687990042 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684120166798 }, - "money_release_date": { "type": 6, "value": 1684120166798 }, + "date_created": { + "type": 6, + "value": 1684095990042 + }, + "date_last_updated": { + "type": 6, + "value": 1684120166798 + }, + "date_of_expiration": { + "type": 6, + "value": 1686687990042 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684120166798 + }, + "money_release_date": { + "type": 6, + "value": 1684120166798 + }, "money_release_status": "approved", "wasDebited": true }, @@ -57362,9 +73670,18 @@ "original_amount": 1792114, "total_amount": 1792114, "id": 1686325443110, - "date_created": { "type": 6, "value": 1686325443110 }, - "date_last_updated": { "type": 6, "value": 1686325443110 }, - "date_of_expiration": { "type": 6, "value": 1686325443110 }, + "date_created": { + "type": 6, + "value": 1686325443110 + }, + "date_last_updated": { + "type": 6, + "value": 1686325443110 + }, + "date_of_expiration": { + "type": 6, + "value": 1686325443110 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -57434,9 +73751,18 @@ "total_amount": 1792114, "id": 1690019958173, "history_id": 1690019958173, - "date_created": { "type": 6, "value": 1690019958173 }, - "date_last_updated": { "type": 6, "value": 1690019958173 }, - "date_of_expiration": { "type": 6, "value": 1690019958173 }, + "date_created": { + "type": 6, + "value": 1690019958173 + }, + "date_last_updated": { + "type": 6, + "value": 1690019958173 + }, + "date_of_expiration": { + "type": 6, + "value": 1690019958173 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -57476,7 +73802,11 @@ "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 53763.42 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 53763.42 + }, "revision": "lnt031rm02t1oohx8u5o0r0i", "revision_nr": 1, "created": 1697467101113, @@ -57485,7 +73815,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt031rm02t0oohx6vnw5oxu", "revision_nr": 1, "created": 1697467101120, "modified": 1697467101120 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt031rm02t0oohx6vnw5oxu", + "revision_nr": 1, + "created": 1697467101120, + "modified": 1697467101120 + } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details", @@ -57519,17 +73856,32 @@ "total_amount": 1738350.58, "id": "1694046051457", "history_id": "1694046051457", - "date_created": { "type": 6, "value": 1694046051457 }, - "date_last_updated": { "type": 6, "value": 1694470685227 }, - "date_of_expiration": { "type": 6, "value": 1694046051457 }, + "date_created": { + "type": 6, + "value": 1694046051457 + }, + "date_last_updated": { + "type": 6, + "value": 1694470685227 + }, + "date_of_expiration": { + "type": 6, + "value": 1694046051457 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1694470685227 }, - "money_release_date": { "type": 6, "value": 1694470685227 }, + "date_approved": { + "type": 6, + "value": 1694470685227 + }, + "money_release_date": { + "type": 6, + "value": 1694470685227 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -57541,13 +73893,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history", - "content": { "type": 1, "value": {}, "revision": "lnt031p402smoohxe63vfec6", "revision_nr": 1, "created": 1697467101144, "modified": 1697467101144 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031p402smoohxe63vfec6", + "revision_nr": 1, + "created": 1697467101144, + "modified": 1697467101144 + } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt031so02t2oohx4p27comb", "revision_nr": 1, "created": 1697467101152, @@ -57558,7 +73921,11 @@ "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt031sw02t4oohx9zaqb7w5", "revision_nr": 1, "created": 1697467101161, @@ -57569,7 +73936,11 @@ "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances/IVIP", "content": { "type": 1, - "value": { "available": "1792114.00000000", "symbol": "IVIP", "value": 199.51 }, + "value": { + "available": "1792114.00000000", + "symbol": "IVIP", + "value": 199.51 + }, "revision": "lnt031t502t5oohx7dqualqz", "revision_nr": 1, "created": 1697467101169, @@ -57578,13 +73949,29 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances", - "content": { "type": 1, "value": {}, "revision": "lnt031sw02t3oohxgbhnd4lg", "revision_nr": 1, "created": 1697467101176, "modified": 1697467101176 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031sw02t3oohxgbhnd4lg", + "revision_nr": 1, + "created": 1697467101176, + "modified": 1697467101176 + } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730", "content": { "type": 1, - "value": { "dataModificacao": 1684095886828, "dateValidity": 1684095886828, "totalValue": 82.74, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1694401200000 } }, + "value": { + "dataModificacao": 1684095886828, + "dateValidity": 1684095886828, + "totalValue": 82.74, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1694401200000 + } + }, "revision": "lnt031p402sloohxay47h4ka", "revision_nr": 1, "created": 1697467101184, @@ -57604,7 +73991,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031u202taoohx7lzhfj8h", "revision_nr": 1, "created": 1697467101201, "modified": 1697467101201 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031u202taoohx7lzhfj8h", + "revision_nr": 1, + "created": 1697467101201, + "modified": 1697467101201 + } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275", @@ -57618,9 +74014,18 @@ "total_amount": 100, "history_id": 1684539878275, "id": 1684539878275, - "date_created": { "type": 6, "value": 1684539878275 }, - "date_last_updated": { "type": 6, "value": 1684539878275 }, - "date_of_expiration": { "type": 6, "value": 1687131878275 }, + "date_created": { + "type": 6, + "value": 1684539878275 + }, + "date_last_updated": { + "type": 6, + "value": 1684539878275 + }, + "date_of_expiration": { + "type": 6, + "value": 1687131878275 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -57634,13 +74039,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history", - "content": { "type": 1, "value": {}, "revision": "lnt031ts02t7oohx1s5mcxne", "revision_nr": 1, "created": 1697467101217, "modified": 1697467101217 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031ts02t7oohx1s5mcxne", + "revision_nr": 1, + "created": 1697467101217, + "modified": 1697467101217 + } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt031up02tboohxdxmf37ws", "revision_nr": 1, "created": 1697467101225, @@ -57651,7 +74067,13 @@ "path": "ivipcoin-db::__movement_wallet__/110121616136666500", "content": { "type": 1, - "value": { "dataModificacao": 1684536217510, "dateValidity": 1684536217510, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684536217510, + "dateValidity": 1684536217510, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031ts02t6oohx6wq89p68", "revision_nr": 1, "created": 1697467101232, @@ -57662,7 +74084,14 @@ "path": "ivipcoin-db::__movement_wallet__/110261910786918940", "content": { "type": 1, - "value": { "dataModificacao": 1679301294113, "dateValidity": 1679301294113, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1679301294113, + "dateValidity": 1679301294113, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt031v402tcoohx4xrm3age", "revision_nr": 1, "created": 1697467101240, @@ -57673,7 +74102,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "value": 0.132, "available": "0.66666666" }, + "value": { + "symbol": "BRL", + "value": 0.132, + "available": "0.66666666" + }, "revision": "lnt031vc02tfoohxewzp5pr1", "revision_nr": 1, "created": 1697467101248, @@ -57684,7 +74117,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances/IVIP", "content": { "type": 1, - "value": { "symbol": "IVIP", "value": 0, "available": "0.00000000" }, + "value": { + "symbol": "IVIP", + "value": 0, + "available": "0.00000000" + }, "revision": "lnt031vk02tgoohx5w2na068", "revision_nr": 1, "created": 1697467101256, @@ -57693,7 +74130,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances", - "content": { "type": 1, "value": {}, "revision": "lnt031vc02teoohx0rnf1u7b", "revision_nr": 1, "created": 1697467101264, "modified": 1697467101264 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031vc02teoohx0rnf1u7b", + "revision_nr": 1, + "created": 1697467101264, + "modified": 1697467101264 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1678154662168/details", @@ -57731,9 +74175,18 @@ "original_amount": 1594392, "total_amount": 1594392, "id": 1678154662168, - "date_created": { "type": 6, "value": 1678154662168 }, - "date_last_updated": { "type": 6, "value": 1678154662168 }, - "date_of_expiration": { "type": 6, "value": 1678154662168 }, + "date_created": { + "type": 6, + "value": 1678154662168 + }, + "date_last_updated": { + "type": 6, + "value": 1678154662168 + }, + "date_of_expiration": { + "type": 6, + "value": 1678154662168 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -57761,7 +74214,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031wo02tmoohx1bl0gy7o", "revision_nr": 1, "created": 1697467101296, "modified": 1697467101296 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031wo02tmoohx1bl0gy7o", + "revision_nr": 1, + "created": 1697467101296, + "modified": 1697467101296 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639", @@ -57775,15 +74237,30 @@ "total_amount": 223, "history_id": 1677860043639, "id": 1677860043639, - "date_created": { "type": 6, "value": 1677860043639 }, - "date_last_updated": { "type": 6, "value": 1677860915639 }, - "date_of_expiration": { "type": 6, "value": 1680452043639 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677860915639 }, - "money_release_date": { "type": 6, "value": 1677860915639 }, + "date_created": { + "type": 6, + "value": 1677860043639 + }, + "date_last_updated": { + "type": 6, + "value": 1677860915639 + }, + "date_of_expiration": { + "type": 6, + "value": 1680452043639 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677860915639 + }, + "money_release_date": { + "type": 6, + "value": 1677860915639 + }, "money_release_status": "approved", "wasDebited": true }, @@ -57829,9 +74306,18 @@ "original_amount": 2760078, "total_amount": 2760078, "id": 1680547247302, - "date_created": { "type": 6, "value": 1680547247302 }, - "date_last_updated": { "type": 6, "value": 1680547247302 }, - "date_of_expiration": { "type": 6, "value": 1680547247302 }, + "date_created": { + "type": 6, + "value": 1680547247302 + }, + "date_last_updated": { + "type": 6, + "value": 1680547247302 + }, + "date_of_expiration": { + "type": 6, + "value": 1680547247302 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -57859,7 +74345,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031xs02troohxhhowehq4", "revision_nr": 1, "created": 1697467101337, "modified": 1697467101337 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031xs02troohxhhowehq4", + "revision_nr": 1, + "created": 1697467101337, + "modified": 1697467101337 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709", @@ -57873,15 +74368,30 @@ "total_amount": 52, "history_id": 1684007108709, "id": 1684007108709, - "date_created": { "type": 6, "value": 1684007108709 }, - "date_last_updated": { "type": 6, "value": 1684007729125 }, - "date_of_expiration": { "type": 6, "value": 1686599108709 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684007729125 }, - "money_release_date": { "type": 6, "value": 1684007729125 }, + "date_created": { + "type": 6, + "value": 1684007108709 + }, + "date_last_updated": { + "type": 6, + "value": 1684007729125 + }, + "date_of_expiration": { + "type": 6, + "value": 1686599108709 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684007729125 + }, + "money_release_date": { + "type": 6, + "value": 1684007729125 + }, "money_release_status": "approved", "wasDebited": true }, @@ -57941,9 +74451,18 @@ "total_amount": 51.667, "id": 1684007784160, "contract_id": "1680547112243", - "date_created": { "type": 6, "value": 1684007784160 }, - "date_last_updated": { "type": 6, "value": 1684007784160 }, - "date_of_expiration": { "type": 6, "value": 1684007784160 }, + "date_created": { + "type": 6, + "value": 1684007784160 + }, + "date_last_updated": { + "type": 6, + "value": 1684007784160 + }, + "date_of_expiration": { + "type": 6, + "value": 1684007784160 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -57970,7 +74489,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt031z402txoohx3jcehmv7", "revision_nr": 1, "created": 1697467101384, "modified": 1697467101384 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt031z402txoohx3jcehmv7", + "revision_nr": 1, + "created": 1697467101384, + "modified": 1697467101384 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886", @@ -57984,15 +74512,30 @@ "total_amount": 52, "history_id": 1685634389886, "id": 1685634389886, - "date_created": { "type": 6, "value": 1685634389886 }, - "date_last_updated": { "type": 6, "value": 1685645771760 }, - "date_of_expiration": { "type": 6, "value": 1688226389886 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685645771760 }, - "money_release_date": { "type": 6, "value": 1685645771760 }, + "date_created": { + "type": 6, + "value": 1685634389886 + }, + "date_last_updated": { + "type": 6, + "value": 1685645771760 + }, + "date_of_expiration": { + "type": 6, + "value": 1688226389886 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685645771760 + }, + "money_release_date": { + "type": 6, + "value": 1685645771760 + }, "money_release_status": "approved", "wasDebited": true }, @@ -58052,9 +74595,18 @@ "total_amount": 51.667, "id": 1685657159164, "contract_id": "1680547112243", - "date_created": { "type": 6, "value": 1685657159164 }, - "date_last_updated": { "type": 6, "value": 1685657159164 }, - "date_of_expiration": { "type": 6, "value": 1685657159164 }, + "date_created": { + "type": 6, + "value": 1685657159164 + }, + "date_last_updated": { + "type": 6, + "value": 1685657159164 + }, + "date_of_expiration": { + "type": 6, + "value": 1685657159164 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -58118,9 +74670,18 @@ "total_amount": 2300063, "id": 1686939269544, "contract_id": "1680547112243", - "date_created": { "type": 6, "value": 1686939269544 }, - "date_last_updated": { "type": 6, "value": 1686939269544 }, - "date_of_expiration": { "type": 6, "value": 1686939269544 }, + "date_created": { + "type": 6, + "value": 1686939269544 + }, + "date_last_updated": { + "type": 6, + "value": 1686939269544 + }, + "date_of_expiration": { + "type": 6, + "value": 1686939269544 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -58149,7 +74710,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt0321802u8oohx61626xzp", "revision_nr": 1, "created": 1697467101460, @@ -58158,11 +74723,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0321802u7oohxc23fe3vv", "revision_nr": 1, "created": 1697467101467, "modified": 1697467101467 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0321802u7oohxc23fe3vv", + "revision_nr": 1, + "created": 1697467101467, + "modified": 1697467101467 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details", - "content": { "type": 1, "value": {}, "revision": "lnt0321702u6oohx58qpgxbf", "revision_nr": 1, "created": 1697467101475, "modified": 1697467101475 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0321702u6oohx58qpgxbf", + "revision_nr": 1, + "created": 1697467101475, + "modified": 1697467101475 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243", @@ -58176,9 +74755,18 @@ "total_amount": 620, "history_id": 1680547112243, "id": 1680547112243, - "date_created": { "type": 6, "value": 1680547112243 }, - "date_last_updated": { "type": 6, "value": 1680547112243 }, - "date_of_expiration": { "type": 6, "value": 1683139112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, + "date_last_updated": { + "type": 6, + "value": 1680547112243 + }, + "date_of_expiration": { + "type": 6, + "value": 1683139112243 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -58204,7 +74792,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0322a02uboohx83xhb3iz", "revision_nr": 1, "created": 1697467101498, "modified": 1697467101498 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0322a02uboohx83xhb3iz", + "revision_nr": 1, + "created": 1697467101498, + "modified": 1697467101498 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040", @@ -58218,15 +74815,30 @@ "total_amount": 2054407, "history_id": 1686940226040, "id": 1686940226040, - "date_created": { "type": 6, "value": 1686940226040 }, - "date_last_updated": { "type": 6, "value": 1687368323358 }, - "date_of_expiration": { "type": 6, "value": 1686940226040 }, + "date_created": { + "type": 6, + "value": 1686940226040 + }, + "date_last_updated": { + "type": 6, + "value": 1687368323358 + }, + "date_of_expiration": { + "type": 6, + "value": 1686940226040 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1687368323358 }, - "money_release_date": { "type": 6, "value": 1687368323358 }, + "date_approved": { + "type": 6, + "value": 1687368323358 + }, + "money_release_date": { + "type": 6, + "value": 1687368323358 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -58238,7 +74850,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history", - "content": { "type": 1, "value": {}, "revision": "lnt031w002thoohxfqjle0lz", "revision_nr": 1, "created": 1697467101515, "modified": 1697467101515 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt031w002thoohxfqjle0lz", + "revision_nr": 1, + "created": 1697467101515, + "modified": 1697467101515 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/description", @@ -58255,7 +74874,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt0323902uioohx4uvm6hah", "revision_nr": 1, "created": 1697467101532, @@ -58264,7 +74887,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0323802uhoohx9mfoaef1", "revision_nr": 1, "created": 1697467101540, "modified": 1697467101540 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0323802uhoohx9mfoaef1", + "revision_nr": 1, + "created": 1697467101540, + "modified": 1697467101540 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243", @@ -58277,7 +74907,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58290,7 +74923,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305", - "content": { "type": 1, "value": {}, "revision": "lnt0323002ueoohxevfbgz11", "revision_nr": 1, "created": 1697467101555, "modified": 1697467101555 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0323002ueoohxevfbgz11", + "revision_nr": 1, + "created": 1697467101555, + "modified": 1697467101555 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/description", @@ -58307,7 +74947,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt0324b02unoohx6nuo9zha", "revision_nr": 1, "created": 1697467101571, @@ -58316,7 +74960,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0324b02umoohx4tfoch90", "revision_nr": 1, "created": 1697467101579, "modified": 1697467101579 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0324b02umoohx4tfoch90", + "revision_nr": 1, + "created": 1697467101579, + "modified": 1697467101579 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243", @@ -58329,7 +74980,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58342,7 +74996,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt0324302ujoohx2ggr6lkl", "revision_nr": 1, "created": 1697467101596, "modified": 1697467101596 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0324302ujoohx2ggr6lkl", + "revision_nr": 1, + "created": 1697467101596, + "modified": 1697467101596 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/description", @@ -58359,7 +75020,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt0325g02usoohx821od1vs", "revision_nr": 1, "created": 1697467101612, @@ -58368,7 +75033,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0325g02uroohxauqv944o", "revision_nr": 1, "created": 1697467101622, "modified": 1697467101622 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0325g02uroohxauqv944o", + "revision_nr": 1, + "created": 1697467101622, + "modified": 1697467101622 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243", @@ -58381,7 +75053,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58394,7 +75069,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt0325902uooohxfh9p0o3d", "revision_nr": 1, "created": 1697467101641, "modified": 1697467101641 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0325902uooohxfh9p0o3d", + "revision_nr": 1, + "created": 1697467101641, + "modified": 1697467101641 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/description", @@ -58411,7 +75093,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt0326q02uxoohxbtw081i7", "revision_nr": 1, "created": 1697467101658, @@ -58420,7 +75106,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0326q02uwoohxg3ro7pmq", "revision_nr": 1, "created": 1697467101666, "modified": 1697467101666 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0326q02uwoohxg3ro7pmq", + "revision_nr": 1, + "created": 1697467101666, + "modified": 1697467101666 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243", @@ -58433,7 +75126,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58446,7 +75142,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt0326h02utoohxdvvg2xw2", "revision_nr": 1, "created": 1697467101686, "modified": 1697467101686 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0326h02utoohxdvvg2xw2", + "revision_nr": 1, + "created": 1697467101686, + "modified": 1697467101686 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/description", @@ -58463,7 +75166,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt0328102v2oohxcsgaeiqx", "revision_nr": 1, "created": 1697467101710, @@ -58472,7 +75179,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0328102v1oohxhf5cek6h", "revision_nr": 1, "created": 1697467101722, "modified": 1697467101722 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0328102v1oohxhf5cek6h", + "revision_nr": 1, + "created": 1697467101722, + "modified": 1697467101722 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243", @@ -58485,7 +75199,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58498,7 +75215,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt0327q02uyoohx8xk1hoc0", "revision_nr": 1, "created": 1697467101738, "modified": 1697467101738 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0327q02uyoohx8xk1hoc0", + "revision_nr": 1, + "created": 1697467101738, + "modified": 1697467101738 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/description", @@ -58515,7 +75239,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt0329f02v7oohx2vgr0g2a", "revision_nr": 1, "created": 1697467101757, @@ -58524,7 +75252,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0329f02v6oohxac0f3uw3", "revision_nr": 1, "created": 1697467101765, "modified": 1697467101765 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0329f02v6oohxac0f3uw3", + "revision_nr": 1, + "created": 1697467101765, + "modified": 1697467101765 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243", @@ -58537,7 +75272,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58550,7 +75288,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310", - "content": { "type": 1, "value": {}, "revision": "lnt0329702v3oohx9pe03dt0", "revision_nr": 1, "created": 1697467101783, "modified": 1697467101783 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0329702v3oohx9pe03dt0", + "revision_nr": 1, + "created": 1697467101783, + "modified": 1697467101783 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/description", @@ -58567,7 +75312,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt032an02vcoohxhfy87eh7", "revision_nr": 1, "created": 1697467101799, @@ -58576,7 +75325,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt032an02vboohxfhfk564c", "revision_nr": 1, "created": 1697467101807, "modified": 1697467101807 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt032an02vboohxfhfk564c", + "revision_nr": 1, + "created": 1697467101807, + "modified": 1697467101807 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243", @@ -58589,7 +75345,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58602,7 +75361,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311", - "content": { "type": 1, "value": {}, "revision": "lnt032af02v8oohxfvz779hm", "revision_nr": 1, "created": 1697467101823, "modified": 1697467101823 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032af02v8oohxfvz779hm", + "revision_nr": 1, + "created": 1697467101823, + "modified": 1697467101823 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/description", @@ -58619,7 +75385,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt032br02vhoohxcw1e8rgp", "revision_nr": 1, "created": 1697467101840, @@ -58628,7 +75398,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt032br02vgoohxhh6m8bx4", "revision_nr": 1, "created": 1697467101848, "modified": 1697467101848 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt032br02vgoohxhh6m8bx4", + "revision_nr": 1, + "created": 1697467101848, + "modified": 1697467101848 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243", @@ -58641,7 +75418,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58654,7 +75434,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312", - "content": { "type": 1, "value": {}, "revision": "lnt032bj02vdoohx60sc46wu", "revision_nr": 1, "created": 1697467101863, "modified": 1697467101863 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032bj02vdoohx60sc46wu", + "revision_nr": 1, + "created": 1697467101863, + "modified": 1697467101863 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/description", @@ -58671,7 +75458,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt032cv02vmoohx81gv3ec4", "revision_nr": 1, "created": 1697467101879, @@ -58680,7 +75471,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt032cv02vloohx2q8c8lrl", "revision_nr": 1, "created": 1697467101886, "modified": 1697467101886 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt032cv02vloohx2q8c8lrl", + "revision_nr": 1, + "created": 1697467101886, + "modified": 1697467101886 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243", @@ -58693,7 +75491,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58706,7 +75507,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401", - "content": { "type": 1, "value": {}, "revision": "lnt032cn02vioohxg30u3i0y", "revision_nr": 1, "created": 1697467101903, "modified": 1697467101903 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032cn02vioohxg30u3i0y", + "revision_nr": 1, + "created": 1697467101903, + "modified": 1697467101903 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/description", @@ -58723,7 +75531,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt032e002vroohx4x8w69ka", "revision_nr": 1, "created": 1697467101919, @@ -58732,7 +75544,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt032e002vqoohxc0z50x0i", "revision_nr": 1, "created": 1697467101927, "modified": 1697467101927 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt032e002vqoohxc0z50x0i", + "revision_nr": 1, + "created": 1697467101927, + "modified": 1697467101927 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243", @@ -58745,7 +75564,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58758,7 +75580,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402", - "content": { "type": 1, "value": {}, "revision": "lnt032dr02vnoohx6yytbdip", "revision_nr": 1, "created": 1697467101944, "modified": 1697467101944 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032dr02vnoohx6yytbdip", + "revision_nr": 1, + "created": 1697467101944, + "modified": 1697467101944 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/description", @@ -58775,7 +75604,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt032f702vwoohxaadlg085", "revision_nr": 1, "created": 1697467101963, @@ -58784,7 +75617,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt032f602vvoohxam936qib", "revision_nr": 1, "created": 1697467101971, "modified": 1697467101971 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt032f602vvoohxam936qib", + "revision_nr": 1, + "created": 1697467101971, + "modified": 1697467101971 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243", @@ -58797,7 +75637,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58810,7 +75653,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403", - "content": { "type": 1, "value": {}, "revision": "lnt032ew02vsoohx2c3qbt88", "revision_nr": 1, "created": 1697467101986, "modified": 1697467101986 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032ew02vsoohx2c3qbt88", + "revision_nr": 1, + "created": 1697467101986, + "modified": 1697467101986 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/description", @@ -58827,7 +75677,11 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 120 + }, "revision": "lnt032ga02w1oohxbc6j2v8h", "revision_nr": 1, "created": 1697467102002, @@ -58836,7 +75690,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/costs", - "content": { "type": 2, "value": {}, "revision": "lnt032ga02w0oohx5qgs6meu", "revision_nr": 1, "created": 1697467102011, "modified": 1697467102011 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt032ga02w0oohx5qgs6meu", + "revision_nr": 1, + "created": 1697467102011, + "modified": 1697467102011 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243", @@ -58849,7 +75710,10 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { "type": 6, "value": 1680547112243 }, + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" @@ -58862,17 +75726,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404", - "content": { "type": 1, "value": {}, "revision": "lnt032g202vxoohxd8wl1ujz", "revision_nr": 1, "created": 1697467102027, "modified": 1697467102027 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032g202vxoohxd8wl1ujz", + "revision_nr": 1, + "created": 1697467102027, + "modified": 1697467102027 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt0322z02udoohx3kbcf15l", "revision_nr": 1, "created": 1697467102035, "modified": 1697467102035 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0322z02udoohx3kbcf15l", + "revision_nr": 1, + "created": 1697467102035, + "modified": 1697467102035 + } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 0, "analysisRequested": { "type": 6, "value": 1679181714669 }, "lastReview": { "type": 6, "value": 1679261067910 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1679181714669 + }, + "lastReview": { + "type": 6, + "value": 1679261067910 + } + }, "revision": "lnt0322z02ucoohxeh5u0x3i", "revision_nr": 1, "created": 1697467102043, @@ -58883,7 +75772,12 @@ "path": "ivipcoin-db::__movement_wallet__/110520917322827200", "content": { "type": 1, - "value": { "dataModificacao": 1677859170230, "dateValidity": 1678919633238, "totalValue": 0.13, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677859170230, + "dateValidity": 1678919633238, + "totalValue": 0.13, + "currencyType": "USD" + }, "revision": "lnt031vc02tdoohxc1b92x8p", "revision_nr": 1, "created": 1697467102050, @@ -58894,7 +75788,11 @@ "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt032hv02w4oohx3u7l09fn", "revision_nr": 1, "created": 1697467102058, @@ -58905,7 +75803,11 @@ "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances/IVIP", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "IVIP", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "IVIP", + "value": 0 + }, "revision": "lnt032i202w5oohxfmv50hq9", "revision_nr": 1, "created": 1697467102066, @@ -58914,7 +75816,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances", - "content": { "type": 1, "value": {}, "revision": "lnt032hv02w3oohx28jahr2v", "revision_nr": 1, "created": 1697467102076, "modified": 1697467102076 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032hv02w3oohx28jahr2v", + "revision_nr": 1, + "created": 1697467102076, + "modified": 1697467102076 + } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045/description", @@ -58929,7 +75838,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt032is02w9oohx3md6gubu", "revision_nr": 1, "created": 1697467102094, "modified": 1697467102094 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt032is02w9oohx3md6gubu", + "revision_nr": 1, + "created": 1697467102094, + "modified": 1697467102094 + } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045", @@ -58943,9 +75861,18 @@ "total_amount": 20, "history_id": 1684156066045, "id": 1684156066045, - "date_created": { "type": 6, "value": 1684156066045 }, - "date_last_updated": { "type": 6, "value": 1684156066045 }, - "date_of_expiration": { "type": 6, "value": 1686748066045 }, + "date_created": { + "type": 6, + "value": 1684156066045 + }, + "date_last_updated": { + "type": 6, + "value": 1684156066045 + }, + "date_of_expiration": { + "type": 6, + "value": 1686748066045 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -58970,7 +75897,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt032jh02wcoohx86fm9xrx", "revision_nr": 1, "created": 1697467102118, "modified": 1697467102118 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt032jh02wcoohx86fm9xrx", + "revision_nr": 1, + "created": 1697467102118, + "modified": 1697467102118 + } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281", @@ -58984,9 +75920,18 @@ "total_amount": 100, "history_id": 1684156180281, "id": 1684156180281, - "date_created": { "type": 6, "value": 1684156180281 }, - "date_last_updated": { "type": 6, "value": 1684156180281 }, - "date_of_expiration": { "type": 6, "value": 1686748180281 }, + "date_created": { + "type": 6, + "value": 1684156180281 + }, + "date_last_updated": { + "type": 6, + "value": 1684156180281 + }, + "date_of_expiration": { + "type": 6, + "value": 1686748180281 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -59011,7 +75956,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt032k902wfoohxcz00el77", "revision_nr": 1, "created": 1697467102145, "modified": 1697467102145 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt032k902wfoohxcz00el77", + "revision_nr": 1, + "created": 1697467102145, + "modified": 1697467102145 + } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109", @@ -59025,15 +75979,30 @@ "total_amount": 100, "history_id": 1684157124109, "id": 1684157124109, - "date_created": { "type": 6, "value": 1684157124109 }, - "date_last_updated": { "type": 6, "value": 1684162160711 }, - "date_of_expiration": { "type": 6, "value": 1686749124109 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684162160711 }, - "money_release_date": { "type": 6, "value": 1684162160711 }, + "date_created": { + "type": 6, + "value": 1684157124109 + }, + "date_last_updated": { + "type": 6, + "value": 1684162160711 + }, + "date_of_expiration": { + "type": 6, + "value": 1686749124109 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684162160711 + }, + "money_release_date": { + "type": 6, + "value": 1684162160711 + }, "money_release_status": "approved", "wasDebited": true }, @@ -59079,9 +76048,18 @@ "original_amount": 487073, "total_amount": 487073, "id": 1684667280508, - "date_created": { "type": 6, "value": 1684667280508 }, - "date_last_updated": { "type": 6, "value": 1684667280508 }, - "date_of_expiration": { "type": 6, "value": 1684667280508 }, + "date_created": { + "type": 6, + "value": 1684667280508 + }, + "date_last_updated": { + "type": 6, + "value": 1684667280508 + }, + "date_of_expiration": { + "type": 6, + "value": 1684667280508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -59109,7 +76087,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt032lc02wkoohx9fx2csxx", "revision_nr": 1, "created": 1697467102184, "modified": 1697467102184 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt032lc02wkoohx9fx2csxx", + "revision_nr": 1, + "created": 1697467102184, + "modified": 1697467102184 + } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189", @@ -59123,15 +76110,30 @@ "total_amount": 120, "history_id": 1685125796189, "id": 1685125796189, - "date_created": { "type": 6, "value": 1685125796189 }, - "date_last_updated": { "type": 6, "value": 1685184457369 }, - "date_of_expiration": { "type": 6, "value": 1687717796189 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685184457369 }, - "money_release_date": { "type": 6, "value": 1685184457369 }, + "date_created": { + "type": 6, + "value": 1685125796189 + }, + "date_last_updated": { + "type": 6, + "value": 1685184457369 + }, + "date_of_expiration": { + "type": 6, + "value": 1687717796189 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685184457369 + }, + "money_release_date": { + "type": 6, + "value": 1685184457369 + }, "money_release_status": "approved", "wasDebited": true }, @@ -59154,7 +76156,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt032m102wnoohxfpyzdfv4", "revision_nr": 1, "created": 1697467102211, "modified": 1697467102211 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt032m102wnoohxfpyzdfv4", + "revision_nr": 1, + "created": 1697467102211, + "modified": 1697467102211 + } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781", @@ -59168,15 +76179,30 @@ "total_amount": 1410, "history_id": 1685203490781, "id": 1685203490781, - "date_created": { "type": 6, "value": 1685203490781 }, - "date_last_updated": { "type": 6, "value": 1685211156964 }, - "date_of_expiration": { "type": 6, "value": 1687795490781 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685211156964 }, - "money_release_date": { "type": 6, "value": 1685211156964 }, + "date_created": { + "type": 6, + "value": 1685203490781 + }, + "date_last_updated": { + "type": 6, + "value": 1685211156964 + }, + "date_of_expiration": { + "type": 6, + "value": 1687795490781 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685211156964 + }, + "money_release_date": { + "type": 6, + "value": 1685211156964 + }, "money_release_status": "approved", "wasDebited": true }, @@ -59222,9 +76248,18 @@ "original_amount": 5206344, "total_amount": 5206344, "id": 1685730135668, - "date_created": { "type": 6, "value": 1685730135668 }, - "date_last_updated": { "type": 6, "value": 1685730135668 }, - "date_of_expiration": { "type": 6, "value": 1685730135668 }, + "date_created": { + "type": 6, + "value": 1685730135668 + }, + "date_last_updated": { + "type": 6, + "value": 1685730135668 + }, + "date_of_expiration": { + "type": 6, + "value": 1685730135668 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -59252,7 +76287,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt032n802wsoohx792l3hmb", "revision_nr": 1, "created": 1697467102251, "modified": 1697467102251 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt032n802wsoohx792l3hmb", + "revision_nr": 1, + "created": 1697467102251, + "modified": 1697467102251 + } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168", @@ -59266,15 +76310,30 @@ "total_amount": 100, "history_id": 1686621899168, "id": 1686621899168, - "date_created": { "type": 6, "value": 1686621899168 }, - "date_last_updated": { "type": 6, "value": 1686658529648 }, - "date_of_expiration": { "type": 6, "value": 1689213899168 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1686658529648 }, - "money_release_date": { "type": 6, "value": 1686658529648 }, + "date_created": { + "type": 6, + "value": 1686621899168 + }, + "date_last_updated": { + "type": 6, + "value": 1686658529648 + }, + "date_of_expiration": { + "type": 6, + "value": 1689213899168 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686658529648 + }, + "money_release_date": { + "type": 6, + "value": 1686658529648 + }, "money_release_status": "approved", "wasDebited": true }, @@ -59320,9 +76379,18 @@ "original_amount": 637246, "total_amount": 637246, "id": 1686792689847, - "date_created": { "type": 6, "value": 1686792689847 }, - "date_last_updated": { "type": 6, "value": 1686792689847 }, - "date_of_expiration": { "type": 6, "value": 1686792689847 }, + "date_created": { + "type": 6, + "value": 1686792689847 + }, + "date_last_updated": { + "type": 6, + "value": 1686792689847 + }, + "date_of_expiration": { + "type": 6, + "value": 1686792689847 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -59383,9 +76451,18 @@ "original_amount": 5832008, "total_amount": 5832008, "id": 1688230681708, - "date_created": { "type": 6, "value": 1688230681708 }, - "date_last_updated": { "type": 6, "value": 1688230681708 }, - "date_of_expiration": { "type": 6, "value": 1751389081708 }, + "date_created": { + "type": 6, + "value": 1688230681708 + }, + "date_last_updated": { + "type": 6, + "value": 1688230681708 + }, + "date_of_expiration": { + "type": 6, + "value": 1751389081708 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -59454,17 +76531,32 @@ "total_amount": 498655, "id": 1690233382656, "history_id": 1690233382656, - "date_created": { "type": 6, "value": 1690233382656 }, - "date_last_updated": { "type": 6, "value": 1690398784450 }, - "date_of_expiration": { "type": 6, "value": 1690233382656 }, + "date_created": { + "type": 6, + "value": 1690233382656 + }, + "date_last_updated": { + "type": 6, + "value": 1690398784450 + }, + "date_of_expiration": { + "type": 6, + "value": 1690233382656 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1690398784450 }, - "money_release_date": { "type": 6, "value": 1690398784450 }, + "date_approved": { + "type": 6, + "value": 1690398784450 + }, + "money_release_date": { + "type": 6, + "value": 1690398784450 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -59476,13 +76568,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history", - "content": { "type": 1, "value": {}, "revision": "lnt032ik02w6oohx3nq47qc2", "revision_nr": 1, "created": 1697467102346, "modified": 1697467102346 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032ik02w6oohx3nq47qc2", + "revision_nr": 1, + "created": 1697467102346, + "modified": 1697467102346 + } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt032q202x2oohx9lfgcv8g", "revision_nr": 1, "created": 1697467102355, @@ -59493,7 +76596,13 @@ "path": "ivipcoin-db::__movement_wallet__/111597444051012800", "content": { "type": 1, - "value": { "dataModificacao": 1684155865709, "dateValidity": 1684155865709, "totalValue": 22.552945262588203, "currencyType": "USD", "balancesModificacao": 1691060735628 }, + "value": { + "dataModificacao": 1684155865709, + "dateValidity": 1684155865709, + "totalValue": 22.552945262588203, + "currencyType": "USD", + "balancesModificacao": 1691060735628 + }, "revision": "lnt032hu02w2oohxbxclhc65", "revision_nr": 1, "created": 1697467102363, @@ -59504,7 +76613,14 @@ "path": "ivipcoin-db::__movement_wallet__/112180841461099860", "content": { "type": 1, - "value": { "dataModificacao": 1689619740886, "dateValidity": 1689619740886, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1689619740886, + "dateValidity": 1689619740886, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt032qj02x3oohx1wsy5pk6", "revision_nr": 1, "created": 1697467102376, @@ -59515,7 +76631,14 @@ "path": "ivipcoin-db::__movement_wallet__/112268931101963340", "content": { "type": 1, - "value": { "dataModificacao": 1677432431553, "dateValidity": 1677432431553, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677432431553, + "dateValidity": 1677432431553, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt032qw02x4oohxankldjtg", "revision_nr": 1, "created": 1697467102388, @@ -59526,7 +76649,11 @@ "path": "ivipcoin-db::__movement_wallet__/112720380478065870/balances/IVIP", "content": { "type": 1, - "value": { "available": "5721757.00000000", "symbol": "IVIP", "value": 612.41 }, + "value": { + "available": "5721757.00000000", + "symbol": "IVIP", + "value": 612.41 + }, "revision": "lnt032r902x7oohxgvjl2zrz", "revision_nr": 1, "created": 1697467102399, @@ -59535,7 +76662,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/balances", - "content": { "type": 1, "value": {}, "revision": "lnt032r902x6oohx4yoccz9z", "revision_nr": 1, "created": 1697467102412, "modified": 1697467102412 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032r902x6oohx4yoccz9z", + "revision_nr": 1, + "created": 1697467102412, + "modified": 1697467102412 + } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458/description", @@ -59550,7 +76684,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt032s502xboohx2dw29bfw", "revision_nr": 1, "created": 1697467102431, "modified": 1697467102431 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt032s502xboohx2dw29bfw", + "revision_nr": 1, + "created": 1697467102431, + "modified": 1697467102431 + } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458", @@ -59564,15 +76707,30 @@ "total_amount": 1600, "history_id": 1677943939458, "id": 1677943939458, - "date_created": { "type": 6, "value": 1677943939458 }, - "date_last_updated": { "type": 6, "value": 1677962646599 }, - "date_of_expiration": { "type": 6, "value": 1680535939458 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677962646599 }, - "money_release_date": { "type": 6, "value": 1677962646599 }, + "date_created": { + "type": 6, + "value": 1677943939458 + }, + "date_last_updated": { + "type": 6, + "value": 1677962646599 + }, + "date_of_expiration": { + "type": 6, + "value": 1680535939458 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677962646599 + }, + "money_release_date": { + "type": 6, + "value": 1677962646599 + }, "money_release_status": "approved", "wasDebited": true }, @@ -59618,9 +76776,18 @@ "original_amount": 11445515, "total_amount": 11445515, "id": 1678154526038, - "date_created": { "type": 6, "value": 1678154526038 }, - "date_last_updated": { "type": 6, "value": 1678154526038 }, - "date_of_expiration": { "type": 6, "value": 1678154526038 }, + "date_created": { + "type": 6, + "value": 1678154526038 + }, + "date_last_updated": { + "type": 6, + "value": 1678154526038 + }, + "date_of_expiration": { + "type": 6, + "value": 1678154526038 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -59648,7 +76815,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt032tl02xgoohx0evh00gj", "revision_nr": 1, "created": 1697467102481, "modified": 1697467102481 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt032tl02xgoohx0evh00gj", + "revision_nr": 1, + "created": 1697467102481, + "modified": 1697467102481 + } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353", @@ -59662,9 +76838,18 @@ "total_amount": 1766725, "history_id": 1689270623353, "id": 1689270623353, - "date_created": { "type": 6, "value": 1689270623353 }, - "date_last_updated": { "type": 6, "value": 1689270623353 }, - "date_of_expiration": { "type": 6, "value": 1689270623353 }, + "date_created": { + "type": 6, + "value": 1689270623353 + }, + "date_last_updated": { + "type": 6, + "value": 1689270623353 + }, + "date_of_expiration": { + "type": 6, + "value": 1689270623353 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -59731,17 +76916,32 @@ "total_amount": 1000, "id": 1690310464254, "history_id": 1690310464254, - "date_created": { "type": 6, "value": 1690310464254 }, - "date_last_updated": { "type": 6, "value": 1690393130972 }, - "date_of_expiration": { "type": 6, "value": 1690310464254 }, + "date_created": { + "type": 6, + "value": 1690310464254 + }, + "date_last_updated": { + "type": 6, + "value": 1690393130972 + }, + "date_of_expiration": { + "type": 6, + "value": 1690310464254 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1690393130972 }, - "money_release_date": { "type": 6, "value": 1690393130972 }, + "date_approved": { + "type": 6, + "value": 1690393130972 + }, + "money_release_date": { + "type": 6, + "value": 1690393130972 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -59777,7 +76977,11 @@ "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 171682.74 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 171682.74 + }, "revision": "lnt032vf02xqoohxfxfi3003", "revision_nr": 1, "created": 1697467102547, @@ -59786,7 +76990,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt032vf02xpoohx31qu84zt", "revision_nr": 1, "created": 1697467102555, "modified": 1697467102555 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt032vf02xpoohx31qu84zt", + "revision_nr": 1, + "created": 1697467102555, + "modified": 1697467102555 + } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details", @@ -59821,16 +77032,28 @@ "total_amount": 5551075.26, "id": "1695843073185", "history_id": "1695843073185", - "date_created": { "type": 6, "value": 1695843073185 }, - "date_last_updated": { "type": 6, "value": 1696513738903 }, - "date_of_expiration": { "type": 6, "value": 1695843073185 }, + "date_created": { + "type": 6, + "value": 1695843073185 + }, + "date_last_updated": { + "type": 6, + "value": 1696513738903 + }, + "date_of_expiration": { + "type": 6, + "value": 1695843073185 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_other_reason", - "money_release_date": { "type": 6, "value": 1696513738903 }, + "money_release_date": { + "type": 6, + "value": 1696513738903 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -59866,7 +77089,11 @@ "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 171682.74 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 171682.74 + }, "revision": "lnt032wt02xwoohxd1n93042", "revision_nr": 1, "created": 1697467102597, @@ -59875,7 +77102,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt032ws02xvoohx90tt75iy", "revision_nr": 1, "created": 1697467102605, "modified": 1697467102605 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt032ws02xvoohx90tt75iy", + "revision_nr": 1, + "created": 1697467102605, + "modified": 1697467102605 + } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details", @@ -59910,17 +77144,32 @@ "total_amount": 5551075.26, "id": "1695843125867", "history_id": "1695843125867", - "date_created": { "type": 6, "value": 1695843125867 }, - "date_last_updated": { "type": 6, "value": 1696288649131 }, - "date_of_expiration": { "type": 6, "value": 1695843125867 }, + "date_created": { + "type": 6, + "value": 1695843125867 + }, + "date_last_updated": { + "type": 6, + "value": 1696288649131 + }, + "date_of_expiration": { + "type": 6, + "value": 1695843125867 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": { "type": 6, "value": 1696288649131 }, - "money_release_date": { "type": 6, "value": 1696288649131 }, + "date_approved": { + "type": 6, + "value": 1696288649131 + }, + "money_release_date": { + "type": 6, + "value": 1696288649131 + }, "money_release_status": "drawee", "wasDebited": true }, @@ -59932,13 +77181,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history", - "content": { "type": 1, "value": {}, "revision": "lnt032rw02x8oohxe8scchrk", "revision_nr": 1, "created": 1697467102629, "modified": 1697467102629 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032rw02x8oohxe8scchrk", + "revision_nr": 1, + "created": 1697467102629, + "modified": 1697467102629 + } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt032xx02xxoohx1t0e7ue6", "revision_nr": 1, "created": 1697467102637, @@ -59949,7 +77209,16 @@ "path": "ivipcoin-db::__movement_wallet__/112720380478065870", "content": { "type": 1, - "value": { "dataModificacao": 1677943677925, "dateValidity": 1678919503018, "totalValue": 308.8, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697425200000 } }, + "value": { + "dataModificacao": 1677943677925, + "dateValidity": 1678919503018, + "totalValue": 308.8, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } + }, "revision": "lnt032r802x5oohxegx8ag5h", "revision_nr": 1, "created": 1697467102646, @@ -59960,7 +77229,11 @@ "path": "ivipcoin-db::__movement_wallet__/113397082035573860/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt032ye02xzoohx33bs9i14", "revision_nr": 1, "created": 1697467102656, @@ -59971,7 +77244,14 @@ "path": "ivipcoin-db::__movement_wallet__/113397082035573860", "content": { "type": 1, - "value": { "dataModificacao": 1684093885315, "dateValidity": 1684093885315, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684093885315, + "dateValidity": 1684093885315, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt032ye02xyoohxbojj61h2", "revision_nr": 1, "created": 1697467102665, @@ -59982,7 +77262,11 @@ "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BNB", "content": { "type": 1, - "value": { "symbol": "BNB", "value": 329390, "available": "1000.00000000" }, + "value": { + "symbol": "BNB", + "value": 329390, + "available": "1000.00000000" + }, "revision": "lnt032yx02y2oohxe50oezs9", "revision_nr": 1, "created": 1697467102673, @@ -59993,7 +77277,11 @@ "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BTC", "content": { "type": 1, - "value": { "symbol": "BTC", "value": 24969.54, "available": "1.00000000" }, + "value": { + "symbol": "BTC", + "value": 24969.54, + "available": "1.00000000" + }, "revision": "lnt032z502y3oohxhfyt33fw", "revision_nr": 1, "created": 1697467102681, @@ -60004,7 +77292,11 @@ "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BUSD", "content": { "type": 1, - "value": { "symbol": "BUSD", "value": 10000, "available": "10000.00000000" }, + "value": { + "symbol": "BUSD", + "value": 10000, + "available": "10000.00000000" + }, "revision": "lnt032zd02y4oohx1pah5ces", "revision_nr": 1, "created": 1697467102691, @@ -60015,7 +77307,11 @@ "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/ETH", "content": { "type": 1, - "value": { "symbol": "ETH", "value": 168116, "available": "100.00000000" }, + "value": { + "symbol": "ETH", + "value": 168116, + "available": "100.00000000" + }, "revision": "lnt032zn02y5oohx5wf92slp", "revision_nr": 1, "created": 1697467102699, @@ -60026,7 +77322,11 @@ "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/LTC", "content": { "type": 1, - "value": { "symbol": "LTC", "value": 39525, "available": "500.00000000" }, + "value": { + "symbol": "LTC", + "value": 39525, + "available": "500.00000000" + }, "revision": "lnt032zv02y6oohxdpu98sl0", "revision_nr": 1, "created": 1697467102708, @@ -60037,7 +77337,11 @@ "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/TRX", "content": { "type": 1, - "value": { "symbol": "TRX", "value": 32965, "available": "500000.00000000" }, + "value": { + "symbol": "TRX", + "value": 32965, + "available": "500000.00000000" + }, "revision": "lnt0330402y7oohxclir0q9z", "revision_nr": 1, "created": 1697467102716, @@ -60048,7 +77352,11 @@ "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/USDT", "content": { "type": 1, - "value": { "symbol": "USDT", "value": 10020, "available": "10000.00000000" }, + "value": { + "symbol": "USDT", + "value": 10020, + "available": "10000.00000000" + }, "revision": "lnt0330c02y8oohxgbgg7x8b", "revision_nr": 1, "created": 1697467102725, @@ -60059,7 +77367,11 @@ "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/XRP", "content": { "type": 1, - "value": { "symbol": "XRP", "value": 18315, "available": "50000.00000000" }, + "value": { + "symbol": "XRP", + "value": 18315, + "available": "50000.00000000" + }, "revision": "lnt0330l02y9oohx1q994nn2", "revision_nr": 1, "created": 1697467102732, @@ -60068,13 +77380,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances", - "content": { "type": 1, "value": {}, "revision": "lnt032yx02y1oohx3scr4pf1", "revision_nr": 1, "created": 1697467102740, "modified": 1697467102740 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt032yx02y1oohx3scr4pf1", + "revision_nr": 1, + "created": 1697467102740, + "modified": 1697467102740 + } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800", "content": { "type": 1, - "value": { "dataModificacao": 1678997585705, "dateValidity": 1679015574916, "totalValue": 633300.54, "history": {}, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678997585705, + "dateValidity": 1679015574916, + "totalValue": 633300.54, + "history": {}, + "currencyType": "USD" + }, "revision": "lnt032yx02y0oohx51kedibo", "revision_nr": 1, "created": 1697467102748, @@ -60085,7 +77410,14 @@ "path": "ivipcoin-db::__movement_wallet__/113679410552544270", "content": { "type": 1, - "value": { "dataModificacao": 1677932902892, "dateValidity": 1678217961007, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677932902892, + "dateValidity": 1678217961007, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt0331802yaoohxboklfm8r", "revision_nr": 1, "created": 1697467102758, @@ -60096,7 +77428,14 @@ "path": "ivipcoin-db::__movement_wallet__/113719047968885220", "content": { "type": 1, - "value": { "dataModificacao": 1678200529926, "dateValidity": 1678214929961, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678200529926, + "dateValidity": 1678214929961, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt0331i02yboohxcwnra0mt", "revision_nr": 1, "created": 1697467102765, @@ -60107,7 +77446,14 @@ "path": "ivipcoin-db::__movement_wallet__/114964316693074270", "content": { "type": 1, - "value": { "dataModificacao": 1680104445044, "dateValidity": 1680104445044, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1680104445044, + "dateValidity": 1680104445044, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt0331p02ycoohxafyvd9ku", "revision_nr": 1, "created": 1697467102774, @@ -60118,7 +77464,11 @@ "path": "ivipcoin-db::__movement_wallet__/115436385305746960/balances/IVIP", "content": { "type": 1, - "value": { "available": "1000000.88000000", "symbol": "IVIP", "value": 106.42 }, + "value": { + "available": "1000000.88000000", + "symbol": "IVIP", + "value": 106.42 + }, "revision": "lnt0331z02yfoohx66j36tg7", "revision_nr": 1, "created": 1697467102783, @@ -60127,7 +77477,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/balances", - "content": { "type": 1, "value": {}, "revision": "lnt0331z02yeoohxf20c36du", "revision_nr": 1, "created": 1697467102791, "modified": 1697467102791 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0331z02yeoohxf20c36du", + "revision_nr": 1, + "created": 1697467102791, + "modified": 1697467102791 + } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127/description", @@ -60142,7 +77499,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0332n02yjoohx96s7hmt9", "revision_nr": 1, "created": 1697467102808, "modified": 1697467102808 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0332n02yjoohx96s7hmt9", + "revision_nr": 1, + "created": 1697467102808, + "modified": 1697467102808 + } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127", @@ -60156,15 +77522,30 @@ "total_amount": 1500, "history_id": 1689207673127, "id": 1689207673127, - "date_created": { "type": 6, "value": 1689207673127 }, - "date_last_updated": { "type": 6, "value": 1689250350894 }, - "date_of_expiration": { "type": 6, "value": 1691799673127 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689250350894 }, - "money_release_date": { "type": 6, "value": 1689250350894 }, + "date_created": { + "type": 6, + "value": 1689207673127 + }, + "date_last_updated": { + "type": 6, + "value": 1689250350894 + }, + "date_of_expiration": { + "type": 6, + "value": 1691799673127 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689250350894 + }, + "money_release_date": { + "type": 6, + "value": 1689250350894 + }, "money_release_status": "approved", "wasDebited": true }, @@ -60210,9 +77591,18 @@ "original_amount": 593666, "total_amount": 593666, "id": 1689260591470, - "date_created": { "type": 6, "value": 1689260591470 }, - "date_last_updated": { "type": 6, "value": 1689260591470 }, - "date_of_expiration": { "type": 6, "value": 1689260591470 }, + "date_created": { + "type": 6, + "value": 1689260591470 + }, + "date_last_updated": { + "type": 6, + "value": 1689260591470 + }, + "date_of_expiration": { + "type": 6, + "value": 1689260591470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60231,7 +77621,13 @@ "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692464251151 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692464251151 + } + }, "revision": "lnt0333l02ynoohx0hw9hq08", "revision_nr": 1, "created": 1697467102843, @@ -60293,8 +77689,14 @@ "total_amount": 650, "id": 1689872251156, "history_id": 1689872251156, - "date_created": { "type": 6, "value": 1689872251156 }, - "date_last_updated": { "type": 6, "value": 1689872251156 }, + "date_created": { + "type": 6, + "value": 1689872251156 + }, + "date_last_updated": { + "type": 6, + "value": 1689872251156 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -60312,7 +77714,13 @@ "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1692903106238 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1692903106238 + } + }, "revision": "lnt0334s02ysoohx4629f2z5", "revision_nr": 1, "created": 1697467102883, @@ -60374,16 +77782,28 @@ "total_amount": 650, "id": 1690311106238, "history_id": 1690311106238, - "date_created": { "type": 6, "value": 1690311106238 }, - "date_last_updated": { "type": 6, "value": 1690311305225 }, + "date_created": { + "type": 6, + "value": 1690311106238 + }, + "date_last_updated": { + "type": 6, + "value": 1690311305225 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1690311305225 }, - "money_release_date": { "type": 6, "value": 1690311305225 }, + "date_approved": { + "type": 6, + "value": 1690311305225 + }, + "money_release_date": { + "type": 6, + "value": 1690311305225 + }, "money_release_status": "approved", "wasDebited": true }, @@ -60429,9 +77849,18 @@ "original_amount": 526109, "total_amount": 526109, "id": 1690311787862, - "date_created": { "type": 6, "value": 1690311787862 }, - "date_last_updated": { "type": 6, "value": 1690311787862 }, - "date_of_expiration": { "type": 6, "value": 1690311787862 }, + "date_created": { + "type": 6, + "value": 1690311787862 + }, + "date_last_updated": { + "type": 6, + "value": 1690311787862 + }, + "date_of_expiration": { + "type": 6, + "value": 1690311787862 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60501,9 +77930,18 @@ "total_amount": 1119775, "id": 1691353182696, "history_id": 1691353182696, - "date_created": { "type": 6, "value": 1691353182696 }, - "date_last_updated": { "type": 6, "value": 1691353182696 }, - "date_of_expiration": { "type": 6, "value": 1694031582695 }, + "date_created": { + "type": 6, + "value": 1691353182696 + }, + "date_last_updated": { + "type": 6, + "value": 1691353182696 + }, + "date_of_expiration": { + "type": 6, + "value": 1694031582695 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60521,7 +77959,13 @@ "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694348197423 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694348197423 + } + }, "revision": "lnt0337j02z3oohx1gs8h1kd", "revision_nr": 1, "created": 1697467102983, @@ -60583,16 +78027,28 @@ "total_amount": 500, "id": 1691756197423, "history_id": 1691756197423, - "date_created": { "type": 6, "value": 1691756197423 }, - "date_last_updated": { "type": 6, "value": 1691760960390 }, + "date_created": { + "type": 6, + "value": 1691756197423 + }, + "date_last_updated": { + "type": 6, + "value": 1691760960390 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691760960390 }, - "money_release_date": { "type": 6, "value": 1691760960390 }, + "date_approved": { + "type": 6, + "value": 1691760960390 + }, + "money_release_date": { + "type": 6, + "value": 1691760960390 + }, "money_release_status": "approved", "wasDebited": true }, @@ -60646,9 +78102,18 @@ "total_amount": 917399, "id": 1691761354889, "history_id": 1691761354889, - "date_created": { "type": 6, "value": 1691761354889 }, - "date_last_updated": { "type": 6, "value": 1691761354889 }, - "date_of_expiration": { "type": 6, "value": 1691761354889 }, + "date_created": { + "type": 6, + "value": 1691761354889 + }, + "date_last_updated": { + "type": 6, + "value": 1691761354889 + }, + "date_of_expiration": { + "type": 6, + "value": 1691761354889 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -60718,9 +78183,18 @@ "total_amount": 1142170.5, "id": "1694032195852", "history_id": "1694032195852", - "date_created": { "type": 6, "value": 1694032195852 }, - "date_last_updated": { "type": 6, "value": 1694032195852 }, - "date_of_expiration": { "type": 6, "value": 1694032195852 }, + "date_created": { + "type": 6, + "value": 1694032195852 + }, + "date_last_updated": { + "type": 6, + "value": 1694032195852 + }, + "date_of_expiration": { + "type": 6, + "value": 1694032195852 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60789,9 +78263,18 @@ "total_amount": 2059569, "id": "1694041733454", "history_id": "1694041733454", - "date_created": { "type": 6, "value": 1694041733454 }, - "date_last_updated": { "type": 6, "value": 1694041733454 }, - "date_of_expiration": { "type": 6, "value": 1696633733454 }, + "date_created": { + "type": 6, + "value": 1694041733454 + }, + "date_last_updated": { + "type": 6, + "value": 1694041733454 + }, + "date_of_expiration": { + "type": 6, + "value": 1696633733454 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60861,9 +78344,18 @@ "total_amount": 2100760.38, "id": "1696633733454", "history_id": "1696633733454", - "date_created": { "type": 6, "value": 1696655091607 }, - "date_last_updated": { "type": 6, "value": 1696655091607 }, - "date_of_expiration": { "type": 6, "value": 1696655091607 }, + "date_created": { + "type": 6, + "value": 1696655091607 + }, + "date_last_updated": { + "type": 6, + "value": 1696655091607 + }, + "date_of_expiration": { + "type": 6, + "value": 1696655091607 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60933,9 +78425,18 @@ "total_amount": 1100760, "id": "1696668184975", "history_id": "1696668184975", - "date_created": { "type": 6, "value": 1696668184975 }, - "date_last_updated": { "type": 6, "value": 1696668184975 }, - "date_of_expiration": { "type": 6, "value": 1699346584935 }, + "date_created": { + "type": 6, + "value": 1696668184975 + }, + "date_last_updated": { + "type": 6, + "value": 1696668184975 + }, + "date_of_expiration": { + "type": 6, + "value": 1699346584935 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60953,7 +78454,13 @@ "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699795525577 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699795525577 + } + }, "revision": "lnt033eb02zroohxd5v1bb08", "revision_nr": 1, "created": 1697467103227, @@ -61016,16 +78523,28 @@ "total_amount": 1600, "id": "1697203525578", "history_id": "1697203525578", - "date_created": { "type": 6, "value": 1697203525578 }, - "date_last_updated": { "type": 6, "value": 1697203941571 }, + "date_created": { + "type": 6, + "value": 1697203525578 + }, + "date_last_updated": { + "type": 6, + "value": 1697203941571 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1697203941571 }, - "money_release_date": { "type": 6, "value": 1697203941571 }, + "date_approved": { + "type": 6, + "value": 1697203941571 + }, + "money_release_date": { + "type": 6, + "value": 1697203941571 + }, "money_release_status": "approved", "wasDebited": true }, @@ -61080,9 +78599,18 @@ "total_amount": 2947170, "id": "1697204057820", "history_id": "1697204057820", - "date_created": { "type": 6, "value": 1697204057820 }, - "date_last_updated": { "type": 6, "value": 1697204057820 }, - "date_of_expiration": { "type": 6, "value": 1697204057820 }, + "date_created": { + "type": 6, + "value": 1697204057820 + }, + "date_last_updated": { + "type": 6, + "value": 1697204057820 + }, + "date_of_expiration": { + "type": 6, + "value": 1697204057820 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -61099,13 +78627,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history", - "content": { "type": 1, "value": {}, "revision": "lnt0332f02ygoohxey146mz5", "revision_nr": 1, "created": 1697467103294, "modified": 1697467103294 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0332f02ygoohxey146mz5", + "revision_nr": 1, + "created": 1697467103294, + "modified": 1697467103294 + } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {}, "analysisRequested": { "type": 6, "value": 1695990240020 } }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {}, + "analysisRequested": { + "type": 6, + "value": 1695990240020 + } + }, "revision": "lnt033ge02zyoohx9ihkcber", "revision_nr": 1, "created": 1697467103302, @@ -61116,7 +78659,16 @@ "path": "ivipcoin-db::__movement_wallet__/115436385305746960", "content": { "type": 1, - "value": { "dataModificacao": 1689197249139, "dateValidity": 1689197249139, "totalValue": 309.3, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697166000000 } }, + "value": { + "dataModificacao": 1689197249139, + "dateValidity": 1689197249139, + "totalValue": 309.3, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697166000000 + } + }, "revision": "lnt0331y02ydoohx5tru02rm", "revision_nr": 1, "created": 1697467103310, @@ -61127,7 +78679,14 @@ "path": "ivipcoin-db::__movement_wallet__/115766338093199020", "content": { "type": 1, - "value": { "dataModificacao": 1679078083825, "dateValidity": 1679078083825, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1679078083825, + "dateValidity": 1679078083825, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt033gu02zzoohx9x82bmp9", "revision_nr": 1, "created": 1697467103318, @@ -61138,7 +78697,11 @@ "path": "ivipcoin-db::__movement_wallet__/116261495252090180/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt033h20301oohx3zdb9fia", "revision_nr": 1, "created": 1697467103328, @@ -61149,7 +78712,11 @@ "path": "ivipcoin-db::__movement_wallet__/116261495252090180/balances/IVIP", "content": { "type": 1, - "value": { "available": "36743092.00000000", "symbol": "IVIP", "value": 7620.42 }, + "value": { + "available": "36743092.00000000", + "symbol": "IVIP", + "value": 7620.42 + }, "revision": "lnt033hc0303oohxf24p0nc4", "revision_nr": 1, "created": 1697467103339, @@ -61158,7 +78725,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/balances", - "content": { "type": 1, "value": {}, "revision": "lnt033hc0302oohx7dbaaqnj", "revision_nr": 1, "created": 1697467103347, "modified": 1697467103347 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt033hc0302oohx7dbaaqnj", + "revision_nr": 1, + "created": 1697467103347, + "modified": 1697467103347 + } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891/description", @@ -61173,7 +78747,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033i30307oohxdwgm0w2r", "revision_nr": 1, "created": 1697467103364, "modified": 1697467103364 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033i30307oohxdwgm0w2r", + "revision_nr": 1, + "created": 1697467103364, + "modified": 1697467103364 + } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891", @@ -61187,15 +78770,30 @@ "total_amount": 10000, "history_id": 1685463962891, "id": 1685463962891, - "date_created": { "type": 6, "value": 1685463962891 }, - "date_last_updated": { "type": 6, "value": 1685468486567 }, - "date_of_expiration": { "type": 6, "value": 1688055962891 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685468486567 }, - "money_release_date": { "type": 6, "value": 1685468486567 }, + "date_created": { + "type": 6, + "value": 1685463962891 + }, + "date_last_updated": { + "type": 6, + "value": 1685468486567 + }, + "date_of_expiration": { + "type": 6, + "value": 1688055962891 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685468486567 + }, + "money_release_date": { + "type": 6, + "value": 1685468486567 + }, "money_release_status": "approved", "wasDebited": true }, @@ -61241,9 +78839,18 @@ "original_amount": 36743092, "total_amount": 36743092, "id": 1688996128425, - "date_created": { "type": 6, "value": 1688996128425 }, - "date_last_updated": { "type": 6, "value": 1688996128425 }, - "date_of_expiration": { "type": 6, "value": 1688996128425 }, + "date_created": { + "type": 6, + "value": 1688996128425 + }, + "date_last_updated": { + "type": 6, + "value": 1688996128425 + }, + "date_of_expiration": { + "type": 6, + "value": 1688996128425 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61260,13 +78867,29 @@ }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history", - "content": { "type": 1, "value": {}, "revision": "lnt033hv0304oohxd9na4lpx", "revision_nr": 1, "created": 1697467103398, "modified": 1697467103398 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt033hv0304oohxd9na4lpx", + "revision_nr": 1, + "created": 1697467103398, + "modified": 1697467103398 + } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180", "content": { "type": 1, - "value": { "dataModificacao": 1685463582486, "dateValidity": 1685463582486, "totalValue": 5105.87, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696215600000 } }, + "value": { + "dataModificacao": 1685463582486, + "dateValidity": 1685463582486, + "totalValue": 5105.87, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696215600000 + } + }, "revision": "lnt033h20300oohx3hyx5vdy", "revision_nr": 1, "created": 1697467103406, @@ -61277,7 +78900,11 @@ "path": "ivipcoin-db::__movement_wallet__/116696192475580050/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt033jj030boohxa5sdg2ng", "revision_nr": 1, "created": 1697467103414, @@ -61288,7 +78915,13 @@ "path": "ivipcoin-db::__movement_wallet__/116696192475580050", "content": { "type": 1, - "value": { "dataModificacao": 1678753662620, "dateValidity": 1678768062657, "balances": {}, "history": {}, "totalValue": 0 }, + "value": { + "dataModificacao": 1678753662620, + "dateValidity": 1678768062657, + "balances": {}, + "history": {}, + "totalValue": 0 + }, "revision": "lnt033ji030aoohxdq757p74", "revision_nr": 1, "created": 1697467103423, @@ -61299,7 +78932,14 @@ "path": "ivipcoin-db::__movement_wallet__/117188412170673220", "content": { "type": 1, - "value": { "dataModificacao": 1678532146149, "dateValidity": 1678546546189, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678532146149, + "dateValidity": 1678546546189, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt033jz030coohx4ze8gwqo", "revision_nr": 1, "created": 1697467103431, @@ -61310,7 +78950,11 @@ "path": "ivipcoin-db::__movement_wallet__/117718803693710020/balances/IVIP", "content": { "type": 1, - "value": { "available": "0.70000000", "symbol": "IVIP", "value": 0.00037 }, + "value": { + "available": "0.70000000", + "symbol": "IVIP", + "value": 0.00037 + }, "revision": "lnt033k7030foohx6ii8bbq3", "revision_nr": 1, "created": 1697467103441, @@ -61319,7 +78963,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/balances", - "content": { "type": 1, "value": {}, "revision": "lnt033k7030eoohxhoy785fp", "revision_nr": 1, "created": 1697467103449, "modified": 1697467103449 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt033k7030eoohxhoy785fp", + "revision_nr": 1, + "created": 1697467103449, + "modified": 1697467103449 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308/description", @@ -61334,7 +78985,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033kz030joohx9y9g386d", "revision_nr": 1, "created": 1697467103467, "modified": 1697467103467 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033kz030joohx9y9g386d", + "revision_nr": 1, + "created": 1697467103467, + "modified": 1697467103467 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308", @@ -61348,15 +79008,30 @@ "total_amount": 200, "history_id": 1677877705308, "id": 1677877705308, - "date_created": { "type": 6, "value": 1677877705308 }, - "date_last_updated": { "type": 6, "value": 1677878165656 }, - "date_of_expiration": { "type": 6, "value": 1680469705308 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677878165656 }, - "money_release_date": { "type": 6, "value": 1677878165656 }, + "date_created": { + "type": 6, + "value": 1677877705308 + }, + "date_last_updated": { + "type": 6, + "value": 1677878165656 + }, + "date_of_expiration": { + "type": 6, + "value": 1680469705308 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677878165656 + }, + "money_release_date": { + "type": 6, + "value": 1677878165656 + }, "money_release_status": "approved", "wasDebited": true }, @@ -61402,9 +79077,18 @@ "original_amount": 1428465, "total_amount": 1428465, "id": 1678145189537, - "date_created": { "type": 6, "value": 1678145189537 }, - "date_last_updated": { "type": 6, "value": 1678145189537 }, - "date_of_expiration": { "type": 6, "value": 1678145189537 }, + "date_created": { + "type": 6, + "value": 1678145189537 + }, + "date_last_updated": { + "type": 6, + "value": 1678145189537 + }, + "date_of_expiration": { + "type": 6, + "value": 1678145189537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61432,7 +79116,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033m5030ooohx4tet4of0", "revision_nr": 1, "created": 1697467103512, "modified": 1697467103512 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033m5030ooohx4tet4of0", + "revision_nr": 1, + "created": 1697467103512, + "modified": 1697467103512 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062", @@ -61446,9 +79139,18 @@ "total_amount": 2000, "history_id": 1683395429062, "id": 1683395429062, - "date_created": { "type": 6, "value": 1683395429062 }, - "date_last_updated": { "type": 6, "value": 1683395429062 }, - "date_of_expiration": { "type": 6, "value": 1685987429062 }, + "date_created": { + "type": 6, + "value": 1683395429062 + }, + "date_last_updated": { + "type": 6, + "value": 1683395429062 + }, + "date_of_expiration": { + "type": 6, + "value": 1685987429062 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -61473,7 +79175,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033mx030roohx42bnfrgz", "revision_nr": 1, "created": 1697467103538, "modified": 1697467103538 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033mx030roohx42bnfrgz", + "revision_nr": 1, + "created": 1697467103538, + "modified": 1697467103538 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429", @@ -61487,15 +79198,30 @@ "total_amount": 350, "history_id": 1684179573429, "id": 1684179573429, - "date_created": { "type": 6, "value": 1684179573429 }, - "date_last_updated": { "type": 6, "value": 1684181611494 }, - "date_of_expiration": { "type": 6, "value": 1686771573429 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684181611494 }, - "money_release_date": { "type": 6, "value": 1684181611494 }, + "date_created": { + "type": 6, + "value": 1684179573429 + }, + "date_last_updated": { + "type": 6, + "value": 1684181611494 + }, + "date_of_expiration": { + "type": 6, + "value": 1686771573429 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684181611494 + }, + "money_release_date": { + "type": 6, + "value": 1684181611494 + }, "money_release_status": "approved", "wasDebited": true }, @@ -61520,7 +79246,11 @@ "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 6.00%", "amount": 60 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 6.00%", + "amount": 60 + }, "revision": "lnt033nm030woohxgopcfr0o", "revision_nr": 1, "created": 1697467103563, @@ -61529,11 +79259,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt033nm030voohx817o9bsm", "revision_nr": 1, "created": 1697467103571, "modified": 1697467103571 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt033nm030voohx817o9bsm", + "revision_nr": 1, + "created": 1697467103571, + "modified": 1697467103571 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details", - "content": { "type": 1, "value": {}, "revision": "lnt033nm030uoohxbzvsafyy", "revision_nr": 1, "created": 1697467103579, "modified": 1697467103579 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt033nm030uoohxbzvsafyy", + "revision_nr": 1, + "created": 1697467103579, + "modified": 1697467103579 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706", @@ -61547,9 +79291,18 @@ "total_amount": 1060, "history_id": 1684182120706, "id": 1684182120706, - "date_created": { "type": 6, "value": 1684182120706 }, - "date_last_updated": { "type": 6, "value": 1684182120706 }, - "date_of_expiration": { "type": 6, "value": 1686774120706 }, + "date_created": { + "type": 6, + "value": 1684182120706 + }, + "date_last_updated": { + "type": 6, + "value": 1684182120706 + }, + "date_of_expiration": { + "type": 6, + "value": 1686774120706 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -61598,9 +79351,18 @@ "original_amount": 6575487, "total_amount": 6575487, "id": 1684624218931, - "date_created": { "type": 6, "value": 1684624218931 }, - "date_last_updated": { "type": 6, "value": 1684624218931 }, - "date_of_expiration": { "type": 6, "value": 1684624218931 }, + "date_created": { + "type": 6, + "value": 1684624218931 + }, + "date_last_updated": { + "type": 6, + "value": 1684624218931 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624218931 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61628,7 +79390,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033pa0311oohx2ftw4e6w", "revision_nr": 1, "created": 1697467103625, "modified": 1697467103625 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033pa0311oohx2ftw4e6w", + "revision_nr": 1, + "created": 1697467103625, + "modified": 1697467103625 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157", @@ -61642,9 +79413,18 @@ "total_amount": 2982650, "history_id": 1685388624157, "id": 1685388624157, - "date_created": { "type": 6, "value": 1685388624157 }, - "date_last_updated": { "type": 6, "value": 1685388624157 }, - "date_of_expiration": { "type": 6, "value": 1685388624157 }, + "date_created": { + "type": 6, + "value": 1685388624157 + }, + "date_last_updated": { + "type": 6, + "value": 1685388624157 + }, + "date_of_expiration": { + "type": 6, + "value": 1685388624157 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -61669,7 +79449,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033q20314oohx92ls7kv4", "revision_nr": 1, "created": 1697467103651, "modified": 1697467103651 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033q20314oohx92ls7kv4", + "revision_nr": 1, + "created": 1697467103651, + "modified": 1697467103651 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740", @@ -61683,9 +79472,18 @@ "total_amount": 8003952, "history_id": 1685389940740, "id": 1685389940740, - "date_created": { "type": 6, "value": 1685389940740 }, - "date_last_updated": { "type": 6, "value": 1685389940740 }, - "date_of_expiration": { "type": 6, "value": 1685389940740 }, + "date_created": { + "type": 6, + "value": 1685389940740 + }, + "date_last_updated": { + "type": 6, + "value": 1685389940740 + }, + "date_of_expiration": { + "type": 6, + "value": 1685389940740 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -61743,9 +79541,18 @@ "original_amount": 3568754, "total_amount": 3568754, "id": 1685665639073, - "date_created": { "type": 6, "value": 1685665639073 }, - "date_last_updated": { "type": 6, "value": 1685665639073 }, - "date_of_expiration": { "type": 6, "value": 1688257639073 }, + "date_created": { + "type": 6, + "value": 1685665639073 + }, + "date_last_updated": { + "type": 6, + "value": 1685665639073 + }, + "date_of_expiration": { + "type": 6, + "value": 1688257639073 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61806,9 +79613,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685668997292, - "date_created": { "type": 6, "value": 1685668997292 }, - "date_last_updated": { "type": 6, "value": 1685668997292 }, - "date_of_expiration": { "type": 6, "value": 1701480197292 }, + "date_created": { + "type": 6, + "value": 1685668997292 + }, + "date_last_updated": { + "type": 6, + "value": 1685668997292 + }, + "date_of_expiration": { + "type": 6, + "value": 1701480197292 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61868,9 +79684,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685669010794, - "date_created": { "type": 6, "value": 1685669010794 }, - "date_last_updated": { "type": 6, "value": 1685669010794 }, - "date_of_expiration": { "type": 6, "value": 1717291410794 }, + "date_created": { + "type": 6, + "value": 1685669010794 + }, + "date_last_updated": { + "type": 6, + "value": 1685669010794 + }, + "date_of_expiration": { + "type": 6, + "value": 1717291410794 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61930,9 +79755,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685669017906, - "date_created": { "type": 6, "value": 1685669017906 }, - "date_last_updated": { "type": 6, "value": 1685669017906 }, - "date_of_expiration": { "type": 6, "value": 1748827417906 }, + "date_created": { + "type": 6, + "value": 1685669017906 + }, + "date_last_updated": { + "type": 6, + "value": 1685669017906 + }, + "date_of_expiration": { + "type": 6, + "value": 1748827417906 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61959,7 +79793,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033tp031joohx0keh7iux", "revision_nr": 1, "created": 1697467103781, "modified": 1697467103781 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033tp031joohx0keh7iux", + "revision_nr": 1, + "created": 1697467103781, + "modified": 1697467103781 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839", @@ -61973,9 +79816,18 @@ "total_amount": 470112, "history_id": 1686742076839, "id": 1686742076839, - "date_created": { "type": 6, "value": 1686742076839 }, - "date_last_updated": { "type": 6, "value": 1686742076839 }, - "date_of_expiration": { "type": 6, "value": 1686742076839 }, + "date_created": { + "type": 6, + "value": 1686742076839 + }, + "date_last_updated": { + "type": 6, + "value": 1686742076839 + }, + "date_of_expiration": { + "type": 6, + "value": 1686742076839 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62000,7 +79852,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033ue031moohxhzyx4g1p", "revision_nr": 1, "created": 1697467103807, "modified": 1697467103807 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033ue031moohxhzyx4g1p", + "revision_nr": 1, + "created": 1697467103807, + "modified": 1697467103807 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859", @@ -62014,9 +79875,18 @@ "total_amount": 530, "history_id": 1686831828859, "id": 1686831828859, - "date_created": { "type": 6, "value": 1686831828859 }, - "date_last_updated": { "type": 6, "value": 1686831828859 }, - "date_of_expiration": { "type": 6, "value": 1689423828859 }, + "date_created": { + "type": 6, + "value": 1686831828859 + }, + "date_last_updated": { + "type": 6, + "value": 1686831828859 + }, + "date_of_expiration": { + "type": 6, + "value": 1689423828859 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62041,7 +79911,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033v5031poohxh2oj49r6", "revision_nr": 1, "created": 1697467103833, "modified": 1697467103833 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033v5031poohxh2oj49r6", + "revision_nr": 1, + "created": 1697467103833, + "modified": 1697467103833 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569", @@ -62055,15 +79934,30 @@ "total_amount": 530, "history_id": 1686831937569, "id": 1686831937569, - "date_created": { "type": 6, "value": 1686831937569 }, - "date_last_updated": { "type": 6, "value": 1686838238027 }, - "date_of_expiration": { "type": 6, "value": 1689423937569 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1686838238027 }, - "money_release_date": { "type": 6, "value": 1686838238027 }, + "date_created": { + "type": 6, + "value": 1686831937569 + }, + "date_last_updated": { + "type": 6, + "value": 1686838238027 + }, + "date_of_expiration": { + "type": 6, + "value": 1689423937569 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686838238027 + }, + "money_release_date": { + "type": 6, + "value": 1686838238027 + }, "money_release_status": "approved", "wasDebited": true }, @@ -62123,9 +80017,18 @@ "total_amount": 530, "id": 1686838699070, "contract_id": "1684182120706", - "date_created": { "type": 6, "value": 1686838699070 }, - "date_last_updated": { "type": 6, "value": 1686838699070 }, - "date_of_expiration": { "type": 6, "value": 1686838699070 }, + "date_created": { + "type": 6, + "value": 1686838699070 + }, + "date_last_updated": { + "type": 6, + "value": 1686838699070 + }, + "date_of_expiration": { + "type": 6, + "value": 1686838699070 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -62152,7 +80055,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033wm031voohx3xyxeijv", "revision_nr": 1, "created": 1697467103888, "modified": 1697467103888 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033wm031voohx3xyxeijv", + "revision_nr": 1, + "created": 1697467103888, + "modified": 1697467103888 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989", @@ -62166,9 +80078,18 @@ "total_amount": 3897629, "history_id": 1686838872989, "id": 1686838872989, - "date_created": { "type": 6, "value": 1686838872989 }, - "date_last_updated": { "type": 6, "value": 1686838872989 }, - "date_of_expiration": { "type": 6, "value": 1686838872989 }, + "date_created": { + "type": 6, + "value": 1686838872989 + }, + "date_last_updated": { + "type": 6, + "value": 1686838872989 + }, + "date_of_expiration": { + "type": 6, + "value": 1686838872989 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62226,9 +80147,18 @@ "original_amount": 3640129.08, "total_amount": 3640129.08, "id": 1688400243137, - "date_created": { "type": 6, "value": 1688400243137 }, - "date_last_updated": { "type": 6, "value": 1688400243137 }, - "date_of_expiration": { "type": 6, "value": 1688400243137 }, + "date_created": { + "type": 6, + "value": 1688400243137 + }, + "date_last_updated": { + "type": 6, + "value": 1688400243137 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400243137 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -62256,7 +80186,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033y10321oohxcal5el6t", "revision_nr": 1, "created": 1697467103939, "modified": 1697467103939 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033y10321oohxcal5el6t", + "revision_nr": 1, + "created": 1697467103939, + "modified": 1697467103939 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822", @@ -62270,9 +80209,18 @@ "total_amount": 4926607, "history_id": 1688424411822, "id": 1688424411822, - "date_created": { "type": 6, "value": 1688424411822 }, - "date_last_updated": { "type": 6, "value": 1688424411822 }, - "date_of_expiration": { "type": 6, "value": 1688424411822 }, + "date_created": { + "type": 6, + "value": 1688424411822 + }, + "date_last_updated": { + "type": 6, + "value": 1688424411822 + }, + "date_of_expiration": { + "type": 6, + "value": 1688424411822 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62297,7 +80245,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033yt0324oohx2lupf7g0", "revision_nr": 1, "created": 1697467103966, "modified": 1697467103966 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033yt0324oohx2lupf7g0", + "revision_nr": 1, + "created": 1697467103966, + "modified": 1697467103966 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030", @@ -62311,15 +80268,30 @@ "total_amount": 1082278, "history_id": 1689020922030, "id": 1689020922030, - "date_created": { "type": 6, "value": 1689020922030 }, - "date_last_updated": { "type": 6, "value": 1689021819362 }, - "date_of_expiration": { "type": 6, "value": 1689020922030 }, + "date_created": { + "type": 6, + "value": 1689020922030 + }, + "date_last_updated": { + "type": 6, + "value": 1689021819362 + }, + "date_of_expiration": { + "type": 6, + "value": 1689020922030 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1689021819362 }, - "money_release_date": { "type": 6, "value": 1689021819362 }, + "date_approved": { + "type": 6, + "value": 1689021819362 + }, + "money_release_date": { + "type": 6, + "value": 1689021819362 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -62342,7 +80314,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt033zi0327oohx15mr6xhj", "revision_nr": 1, "created": 1697467103991, "modified": 1697467103991 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt033zi0327oohx15mr6xhj", + "revision_nr": 1, + "created": 1697467103991, + "modified": 1697467103991 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644", @@ -62356,9 +80337,18 @@ "total_amount": 5031032, "history_id": 1689102393644, "id": 1689102393644, - "date_created": { "type": 6, "value": 1689102393644 }, - "date_last_updated": { "type": 6, "value": 1689102393644 }, - "date_of_expiration": { "type": 6, "value": 1689102393644 }, + "date_created": { + "type": 6, + "value": 1689102393644 + }, + "date_last_updated": { + "type": 6, + "value": 1689102393644 + }, + "date_of_expiration": { + "type": 6, + "value": 1689102393644 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62383,7 +80373,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0340a032aoohx2tqthci1", "revision_nr": 1, "created": 1697467104018, "modified": 1697467104018 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0340a032aoohx2tqthci1", + "revision_nr": 1, + "created": 1697467104018, + "modified": 1697467104018 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410", @@ -62397,9 +80396,18 @@ "total_amount": 5995148, "history_id": 1689189282410, "id": 1689189282410, - "date_created": { "type": 6, "value": 1689189282410 }, - "date_last_updated": { "type": 6, "value": 1689189282410 }, - "date_of_expiration": { "type": 6, "value": 1689189282410 }, + "date_created": { + "type": 6, + "value": 1689189282410 + }, + "date_last_updated": { + "type": 6, + "value": 1689189282410 + }, + "date_of_expiration": { + "type": 6, + "value": 1689189282410 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62424,7 +80432,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03410032doohx3z8f1rh1", "revision_nr": 1, "created": 1697467104044, "modified": 1697467104044 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03410032doohx3z8f1rh1", + "revision_nr": 1, + "created": 1697467104044, + "modified": 1697467104044 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089", @@ -62438,9 +80455,18 @@ "total_amount": 1000000, "history_id": 1689258056089, "id": 1689258056089, - "date_created": { "type": 6, "value": 1689258056089 }, - "date_last_updated": { "type": 6, "value": 1689258056089 }, - "date_of_expiration": { "type": 6, "value": 1689258056089 }, + "date_created": { + "type": 6, + "value": 1689258056089 + }, + "date_last_updated": { + "type": 6, + "value": 1689258056089 + }, + "date_of_expiration": { + "type": 6, + "value": 1689258056089 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62465,7 +80491,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0341r032goohx4yn32f42", "revision_nr": 1, "created": 1697467104072, "modified": 1697467104072 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0341r032goohx4yn32f42", + "revision_nr": 1, + "created": 1697467104072, + "modified": 1697467104072 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969", @@ -62479,9 +80514,18 @@ "total_amount": 530, "history_id": 1689390236969, "id": 1689390236969, - "date_created": { "type": 6, "value": 1689390236969 }, - "date_last_updated": { "type": 6, "value": 1689390236969 }, - "date_of_expiration": { "type": 6, "value": 1691982236969 }, + "date_created": { + "type": 6, + "value": 1689390236969 + }, + "date_last_updated": { + "type": 6, + "value": 1689390236969 + }, + "date_of_expiration": { + "type": 6, + "value": 1691982236969 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62506,7 +80550,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0342h032joohx17gm1be6", "revision_nr": 1, "created": 1697467104098, "modified": 1697467104098 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0342h032joohx17gm1be6", + "revision_nr": 1, + "created": 1697467104098, + "modified": 1697467104098 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440", @@ -62520,9 +80573,18 @@ "total_amount": 530, "history_id": 1689424277440, "id": 1689424277440, - "date_created": { "type": 6, "value": 1689424277440 }, - "date_last_updated": { "type": 6, "value": 1689424277440 }, - "date_of_expiration": { "type": 6, "value": 1692016277440 }, + "date_created": { + "type": 6, + "value": 1689424277440 + }, + "date_last_updated": { + "type": 6, + "value": 1689424277440 + }, + "date_of_expiration": { + "type": 6, + "value": 1692016277440 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62547,7 +80609,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03437032moohx48sr1jps", "revision_nr": 1, "created": 1697467104125, "modified": 1697467104125 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03437032moohx48sr1jps", + "revision_nr": 1, + "created": 1697467104125, + "modified": 1697467104125 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512", @@ -62561,15 +80632,30 @@ "total_amount": 530, "history_id": 1689612021512, "id": 1689612021512, - "date_created": { "type": 6, "value": 1689612021512 }, - "date_last_updated": { "type": 6, "value": 1690308352467 }, - "date_of_expiration": { "type": 6, "value": 1692204021512 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1690308352467 }, - "money_release_date": { "type": 6, "value": 1690308352467 }, + "date_created": { + "type": 6, + "value": 1689612021512 + }, + "date_last_updated": { + "type": 6, + "value": 1690308352467 + }, + "date_of_expiration": { + "type": 6, + "value": 1692204021512 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1690308352467 + }, + "money_release_date": { + "type": 6, + "value": 1690308352467 + }, "money_release_status": "approved", "wasDebited": true }, @@ -62592,7 +80678,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03440032poohx855i1zz0", "revision_nr": 1, "created": 1697467104152, "modified": 1697467104152 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03440032poohx855i1zz0", + "revision_nr": 1, + "created": 1697467104152, + "modified": 1697467104152 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534", @@ -62606,9 +80701,18 @@ "total_amount": 2000000, "history_id": 1689612840534, "id": 1689612840534, - "date_created": { "type": 6, "value": 1689612840534 }, - "date_last_updated": { "type": 6, "value": 1689612840534 }, - "date_of_expiration": { "type": 6, "value": 1689612840534 }, + "date_created": { + "type": 6, + "value": 1689612840534 + }, + "date_last_updated": { + "type": 6, + "value": 1689612840534 + }, + "date_of_expiration": { + "type": 6, + "value": 1689612840534 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -62670,9 +80774,18 @@ "total_amount": 530, "id": 1690326796884, "contract_id": "1684182120706", - "date_created": { "type": 6, "value": 1690326796884 }, - "date_last_updated": { "type": 6, "value": 1690326796884 }, - "date_of_expiration": { "type": 6, "value": 1690326796884 }, + "date_created": { + "type": 6, + "value": 1690326796884 + }, + "date_last_updated": { + "type": 6, + "value": 1690326796884 + }, + "date_of_expiration": { + "type": 6, + "value": 1690326796884 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -62741,16 +80854,28 @@ "total_amount": 6990049, "id": 1690327152842, "history_id": 1690327152842, - "date_created": { "type": 6, "value": 1690327152842 }, - "date_last_updated": { "type": 6, "value": 1690392853723 }, - "date_of_expiration": { "type": 6, "value": 1690327152842 }, + "date_created": { + "type": 6, + "value": 1690327152842 + }, + "date_last_updated": { + "type": 6, + "value": 1690392853723 + }, + "date_of_expiration": { + "type": 6, + "value": 1690327152842 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_amount", - "money_release_date": { "type": 6, "value": 1690392853723 }, + "money_release_date": { + "type": 6, + "value": 1690392853723 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -62815,17 +80940,32 @@ "total_amount": 3280090, "id": 1690371637044, "history_id": 1690371637044, - "date_created": { "type": 6, "value": 1690371637044 }, - "date_last_updated": { "type": 6, "value": 1690392785648 }, - "date_of_expiration": { "type": 6, "value": 1690371637044 }, + "date_created": { + "type": 6, + "value": 1690371637044 + }, + "date_last_updated": { + "type": 6, + "value": 1690392785648 + }, + "date_of_expiration": { + "type": 6, + "value": 1690371637044 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1690392785648 }, - "money_release_date": { "type": 6, "value": 1690392785648 }, + "date_approved": { + "type": 6, + "value": 1690392785648 + }, + "money_release_date": { + "type": 6, + "value": 1690392785648 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -62890,9 +81030,18 @@ "total_amount": 3678031, "id": "1694007742356", "history_id": "1694007742356", - "date_created": { "type": 6, "value": 1694007742356 }, - "date_last_updated": { "type": 6, "value": 1694007742356 }, - "date_of_expiration": { "type": 6, "value": 1696599742356 }, + "date_created": { + "type": 6, + "value": 1694007742356 + }, + "date_last_updated": { + "type": 6, + "value": 1694007742356 + }, + "date_of_expiration": { + "type": 6, + "value": 1696599742356 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -62962,9 +81111,18 @@ "total_amount": 3751591.62, "id": "1696599770690", "history_id": "1696599770690", - "date_created": { "type": 6, "value": 1696599770690 }, - "date_last_updated": { "type": 6, "value": 1696599770690 }, - "date_of_expiration": { "type": 6, "value": 1696599770690 }, + "date_created": { + "type": 6, + "value": 1696599770690 + }, + "date_last_updated": { + "type": 6, + "value": 1696599770690 + }, + "date_of_expiration": { + "type": 6, + "value": 1696599770690 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63034,9 +81192,18 @@ "total_amount": 3783519, "id": "1696599812843", "history_id": "1696599812843", - "date_created": { "type": 6, "value": 1696599812843 }, - "date_last_updated": { "type": 6, "value": 1696599812843 }, - "date_of_expiration": { "type": 6, "value": 1699278212817 }, + "date_created": { + "type": 6, + "value": 1696599812843 + }, + "date_last_updated": { + "type": 6, + "value": 1696599812843 + }, + "date_of_expiration": { + "type": 6, + "value": 1699278212817 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63052,7 +81219,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history", - "content": { "type": 1, "value": {}, "revision": "lnt033kp030goohx89sk89ga", "revision_nr": 1, "created": 1697467104375, "modified": 1697467104375 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt033kp030goohx89sk89ga", + "revision_nr": 1, + "created": 1697467104375, + "modified": 1697467104375 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/description", @@ -63069,7 +81243,11 @@ "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 6.00%", "amount": 60 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 6.00%", + "amount": 60 + }, "revision": "lnt034an033joohxb0md9n7p", "revision_nr": 1, "created": 1697467104392, @@ -63078,7 +81256,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/costs", - "content": { "type": 2, "value": {}, "revision": "lnt034an033ioohx994ah7tt", "revision_nr": 1, "created": 1697467104401, "modified": 1697467104401 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt034an033ioohx994ah7tt", + "revision_nr": 1, + "created": 1697467104401, + "modified": 1697467104401 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706", @@ -63091,7 +81276,10 @@ "total_amount": 1060, "installments": 2, "installment_amount": 530, - "date_created": { "type": 6, "value": 1684182120706 }, + "date_created": { + "type": 6, + "value": 1684182120706 + }, "history_id": 1684182120706, "currency_id": "BRL", "status": "paid" @@ -63104,7 +81292,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt034af033foohx6eo73oyw", "revision_nr": 1, "created": 1697467104417, "modified": 1697467104417 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt034af033foohx6eo73oyw", + "revision_nr": 1, + "created": 1697467104417, + "modified": 1697467104417 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/description", @@ -63121,7 +81316,11 @@ "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 6.00%", "amount": 60 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 2 parcela(s) 6.00%", + "amount": 60 + }, "revision": "lnt034bu033ooohxewbe34ea", "revision_nr": 1, "created": 1697467104434, @@ -63130,7 +81329,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/costs", - "content": { "type": 2, "value": {}, "revision": "lnt034bu033noohx9v35fa4u", "revision_nr": 1, "created": 1697467104444, "modified": 1697467104444 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt034bu033noohx9v35fa4u", + "revision_nr": 1, + "created": 1697467104444, + "modified": 1697467104444 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706", @@ -63143,7 +81349,10 @@ "total_amount": 1060, "installments": 2, "installment_amount": 530, - "date_created": { "type": 6, "value": 1684182120706 }, + "date_created": { + "type": 6, + "value": 1684182120706 + }, "history_id": 1684182120706, "currency_id": "BRL", "status": "paid" @@ -63156,17 +81365,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt034bl033koohx6s70e8bh", "revision_nr": 1, "created": 1697467104462, "modified": 1697467104462 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt034bl033koohx6s70e8bh", + "revision_nr": 1, + "created": 1697467104462, + "modified": 1697467104462 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt034af033eoohxhh55fyxk", "revision_nr": 1, "created": 1697467104470, "modified": 1697467104470 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt034af033eoohxhh55fyxk", + "revision_nr": 1, + "created": 1697467104470, + "modified": 1697467104470 + } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 0, "analysisRequested": { "type": 6, "value": 1683344368087 }, "lastReview": { "type": 6, "value": 1683344393183 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 0, + "analysisRequested": { + "type": 6, + "value": 1683344368087 + }, + "lastReview": { + "type": 6, + "value": 1683344393183 + } + }, "revision": "lnt034af033doohx2nyvboob", "revision_nr": 1, "created": 1697467104478, @@ -63177,7 +81411,16 @@ "path": "ivipcoin-db::__movement_wallet__/117718803693710020", "content": { "type": 1, - "value": { "dataModificacao": 1677877676290, "dateValidity": 1678707203279, "totalValue": 2242.137, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697338800000 } }, + "value": { + "dataModificacao": 1677877676290, + "dateValidity": 1678707203279, + "totalValue": 2242.137, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, "revision": "lnt033k7030doohxhtz67mvp", "revision_nr": 1, "created": 1697467104487, @@ -63188,7 +81431,11 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances/BRL", "content": { "type": 1, - "value": { "available": "5.00000000", "symbol": "BRL", "value": 0.98 }, + "value": { + "available": "5.00000000", + "symbol": "BRL", + "value": 0.98 + }, "revision": "lnt034dj033roohx2u75dtib", "revision_nr": 1, "created": 1697467104495, @@ -63199,7 +81446,11 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances/IVIP", "content": { "type": 1, - "value": { "available": "0.20000000", "symbol": "IVIP", "value": 0.000021 }, + "value": { + "available": "0.20000000", + "symbol": "IVIP", + "value": 0.000021 + }, "revision": "lnt034dr033soohx3ytg6qbv", "revision_nr": 1, "created": 1697467104504, @@ -63208,7 +81459,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances", - "content": { "type": 1, "value": {}, "revision": "lnt034dj033qoohx10h978a3", "revision_nr": 1, "created": 1697467104513, "modified": 1697467104513 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt034dj033qoohx10h978a3", + "revision_nr": 1, + "created": 1697467104513, + "modified": 1697467104513 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568/description", @@ -63223,7 +81481,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt034ej033woohxh5a4gxh5", "revision_nr": 1, "created": 1697467104531, "modified": 1697467104531 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt034ej033woohxh5a4gxh5", + "revision_nr": 1, + "created": 1697467104531, + "modified": 1697467104531 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568", @@ -63237,15 +81504,30 @@ "total_amount": 200, "history_id": 1684492352568, "id": 1684492352568, - "date_created": { "type": 6, "value": 1684492352568 }, - "date_last_updated": { "type": 6, "value": 1684492507764 }, - "date_of_expiration": { "type": 6, "value": 1687084352568 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684492507764 }, - "money_release_date": { "type": 6, "value": 1684492507764 }, + "date_created": { + "type": 6, + "value": 1684492352568 + }, + "date_last_updated": { + "type": 6, + "value": 1684492507764 + }, + "date_of_expiration": { + "type": 6, + "value": 1687084352568 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684492507764 + }, + "money_release_date": { + "type": 6, + "value": 1684492507764 + }, "money_release_status": "approved", "wasDebited": true }, @@ -63291,9 +81573,18 @@ "original_amount": 974146, "total_amount": 974146, "id": 1684624220546, - "date_created": { "type": 6, "value": 1684624220546 }, - "date_last_updated": { "type": 6, "value": 1684624220546 }, - "date_of_expiration": { "type": 6, "value": 1684624220546 }, + "date_created": { + "type": 6, + "value": 1684624220546 + }, + "date_last_updated": { + "type": 6, + "value": 1684624220546 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624220546 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63323,7 +81614,11 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt034fs0343oohx8yfj46my", "revision_nr": 1, "created": 1697467104577, @@ -63332,11 +81627,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt034fs0342oohx6kje1q76", "revision_nr": 1, "created": 1697467104585, "modified": 1697467104585 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt034fs0342oohx6kje1q76", + "revision_nr": 1, + "created": 1697467104585, + "modified": 1697467104585 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details", - "content": { "type": 1, "value": {}, "revision": "lnt034fs0341oohxbav7eh3w", "revision_nr": 1, "created": 1697467104593, "modified": 1697467104593 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt034fs0341oohxbav7eh3w", + "revision_nr": 1, + "created": 1697467104593, + "modified": 1697467104593 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623", @@ -63350,9 +81659,18 @@ "total_amount": 1100, "history_id": 1684625319623, "id": 1684625319623, - "date_created": { "type": 6, "value": 1684625319623 }, - "date_last_updated": { "type": 6, "value": 1684625319623 }, - "date_of_expiration": { "type": 6, "value": 1687217319623 }, + "date_created": { + "type": 6, + "value": 1684625319623 + }, + "date_last_updated": { + "type": 6, + "value": 1684625319623 + }, + "date_of_expiration": { + "type": 6, + "value": 1687217319623 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -63401,9 +81719,18 @@ "original_amount": 4870731, "total_amount": 4870731, "id": 1684625351966, - "date_created": { "type": 6, "value": 1684625351966 }, - "date_last_updated": { "type": 6, "value": 1684625351966 }, - "date_of_expiration": { "type": 6, "value": 1684625351966 }, + "date_created": { + "type": 6, + "value": 1684625351966 + }, + "date_last_updated": { + "type": 6, + "value": 1684625351966 + }, + "date_of_expiration": { + "type": 6, + "value": 1684625351966 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63431,7 +81758,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt034hh0348oohxa70wc9o5", "revision_nr": 1, "created": 1697467104638, "modified": 1697467104638 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt034hh0348oohxa70wc9o5", + "revision_nr": 1, + "created": 1697467104638, + "modified": 1697467104638 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516", @@ -63445,15 +81781,30 @@ "total_amount": 400, "history_id": 1685027205516, "id": 1685027205516, - "date_created": { "type": 6, "value": 1685027205516 }, - "date_last_updated": { "type": 6, "value": 1685312683393 }, - "date_of_expiration": { "type": 6, "value": 1687619205516 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685312683393 }, - "money_release_date": { "type": 6, "value": 1685312683393 }, + "date_created": { + "type": 6, + "value": 1685027205516 + }, + "date_last_updated": { + "type": 6, + "value": 1685312683393 + }, + "date_of_expiration": { + "type": 6, + "value": 1687619205516 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685312683393 + }, + "money_release_date": { + "type": 6, + "value": 1685312683393 + }, "money_release_status": "approved", "wasDebited": true }, @@ -63510,9 +81861,18 @@ "original_amount": 10000000, "total_amount": 10000000, "id": 1685234226998, - "date_created": { "type": 6, "value": 1685234226998 }, - "date_last_updated": { "type": 6, "value": 1685234226998 }, - "date_of_expiration": { "type": 6, "value": 1685234226998 }, + "date_created": { + "type": 6, + "value": 1685234226998 + }, + "date_last_updated": { + "type": 6, + "value": 1685234226998 + }, + "date_of_expiration": { + "type": 6, + "value": 1685234226998 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -63573,9 +81933,18 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685456788341, - "date_created": { "type": 6, "value": 1685456788341 }, - "date_last_updated": { "type": 6, "value": 1685456788341 }, - "date_of_expiration": { "type": 6, "value": 1685456788341 }, + "date_created": { + "type": 6, + "value": 1685456788341 + }, + "date_last_updated": { + "type": 6, + "value": 1685456788341 + }, + "date_of_expiration": { + "type": 6, + "value": 1685456788341 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -63635,9 +82004,18 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685665895143, - "date_created": { "type": 6, "value": 1685665895143 }, - "date_last_updated": { "type": 6, "value": 1685665895143 }, - "date_of_expiration": { "type": 6, "value": 1748824295143 }, + "date_created": { + "type": 6, + "value": 1685665895143 + }, + "date_last_updated": { + "type": 6, + "value": 1685665895143 + }, + "date_of_expiration": { + "type": 6, + "value": 1748824295143 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63697,9 +82075,18 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685665913616, - "date_created": { "type": 6, "value": 1685665913616 }, - "date_last_updated": { "type": 6, "value": 1685665913616 }, - "date_of_expiration": { "type": 6, "value": 1717288313616 }, + "date_created": { + "type": 6, + "value": 1685665913616 + }, + "date_last_updated": { + "type": 6, + "value": 1685665913616 + }, + "date_of_expiration": { + "type": 6, + "value": 1717288313616 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63759,9 +82146,18 @@ "original_amount": 1844877, "total_amount": 1844877, "id": 1685665938582, - "date_created": { "type": 6, "value": 1685665938582 }, - "date_last_updated": { "type": 6, "value": 1685665938582 }, - "date_of_expiration": { "type": 6, "value": 1701477138582 }, + "date_created": { + "type": 6, + "value": 1685665938582 + }, + "date_last_updated": { + "type": 6, + "value": 1685665938582 + }, + "date_of_expiration": { + "type": 6, + "value": 1701477138582 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63822,9 +82218,18 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685665980650, - "date_created": { "type": 6, "value": 1685665980650 }, - "date_last_updated": { "type": 6, "value": 1685665980650 }, - "date_of_expiration": { "type": 6, "value": 1688257980650 }, + "date_created": { + "type": 6, + "value": 1685665980650 + }, + "date_last_updated": { + "type": 6, + "value": 1685665980650 + }, + "date_of_expiration": { + "type": 6, + "value": 1688257980650 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63874,9 +82279,18 @@ "original_amount": 1403508, "total_amount": 1403508, "id": 1685743358755, - "date_created": { "type": 6, "value": 1685743358755 }, - "date_last_updated": { "type": 6, "value": 1685743358755 }, - "date_of_expiration": { "type": 6, "value": 1685743358755 }, + "date_created": { + "type": 6, + "value": 1685743358755 + }, + "date_last_updated": { + "type": 6, + "value": 1685743358755 + }, + "date_of_expiration": { + "type": 6, + "value": 1685743358755 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63904,7 +82318,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt034na034voohx43iga5av", "revision_nr": 1, "created": 1697467104847, "modified": 1697467104847 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt034na034voohx43iga5av", + "revision_nr": 1, + "created": 1697467104847, + "modified": 1697467104847 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502", @@ -63918,15 +82341,30 @@ "total_amount": 250, "history_id": 1686581106502, "id": 1686581106502, - "date_created": { "type": 6, "value": 1686581106502 }, - "date_last_updated": { "type": 6, "value": 1686583207910 }, - "date_of_expiration": { "type": 6, "value": 1689173106502 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1686583207910 }, - "money_release_date": { "type": 6, "value": 1686583207910 }, + "date_created": { + "type": 6, + "value": 1686581106502 + }, + "date_last_updated": { + "type": 6, + "value": 1686583207910 + }, + "date_of_expiration": { + "type": 6, + "value": 1689173106502 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686583207910 + }, + "money_release_date": { + "type": 6, + "value": 1686583207910 + }, "money_release_status": "approved", "wasDebited": true }, @@ -63986,9 +82424,18 @@ "total_amount": 220, "id": 1686597954870, "contract_id": "1684625319623", - "date_created": { "type": 6, "value": 1686597954870 }, - "date_last_updated": { "type": 6, "value": 1686597954870 }, - "date_of_expiration": { "type": 6, "value": 1686597954870 }, + "date_created": { + "type": 6, + "value": 1686597954870 + }, + "date_last_updated": { + "type": 6, + "value": 1686597954870 + }, + "date_of_expiration": { + "type": 6, + "value": 1686597954870 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -64048,9 +82495,18 @@ "original_amount": 2000000, "total_amount": 2000000, "id": 1687313544975, - "date_created": { "type": 6, "value": 1687313544975 }, - "date_last_updated": { "type": 6, "value": 1687313544975 }, - "date_of_expiration": { "type": 6, "value": 1718935944975 }, + "date_created": { + "type": 6, + "value": 1687313544975 + }, + "date_last_updated": { + "type": 6, + "value": 1687313544975 + }, + "date_of_expiration": { + "type": 6, + "value": 1718935944975 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64110,9 +82566,18 @@ "original_amount": 1020000, "total_amount": 1020000, "id": 1688400283150, - "date_created": { "type": 6, "value": 1688400283150 }, - "date_last_updated": { "type": 6, "value": 1688400283150 }, - "date_of_expiration": { "type": 6, "value": 1688400283150 }, + "date_created": { + "type": 6, + "value": 1688400283150 + }, + "date_last_updated": { + "type": 6, + "value": 1688400283150 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400283150 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64173,9 +82638,18 @@ "original_amount": 3268385, "total_amount": 3268385, "id": 1688400827775, - "date_created": { "type": 6, "value": 1688400827775 }, - "date_last_updated": { "type": 6, "value": 1688400827775 }, - "date_of_expiration": { "type": 6, "value": 1691079227775 }, + "date_created": { + "type": 6, + "value": 1688400827775 + }, + "date_last_updated": { + "type": 6, + "value": 1688400827775 + }, + "date_of_expiration": { + "type": 6, + "value": 1691079227775 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64202,7 +82676,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt034r2035aoohxfsrge6um", "revision_nr": 1, "created": 1697467104982, "modified": 1697467104982 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt034r2035aoohxfsrge6um", + "revision_nr": 1, + "created": 1697467104982, + "modified": 1697467104982 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442", @@ -64216,15 +82699,30 @@ "total_amount": 200, "history_id": 1689085555442, "id": 1689085555442, - "date_created": { "type": 6, "value": 1689085555442 }, - "date_last_updated": { "type": 6, "value": 1689168403996 }, - "date_of_expiration": { "type": 6, "value": 1691677555442 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689168403996 }, - "money_release_date": { "type": 6, "value": 1689168403996 }, + "date_created": { + "type": 6, + "value": 1689085555442 + }, + "date_last_updated": { + "type": 6, + "value": 1689168403996 + }, + "date_of_expiration": { + "type": 6, + "value": 1691677555442 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689168403996 + }, + "money_release_date": { + "type": 6, + "value": 1689168403996 + }, "money_release_status": "approved", "wasDebited": true }, @@ -64284,9 +82782,18 @@ "total_amount": 220, "id": 1689168458989, "contract_id": "1684625319623", - "date_created": { "type": 6, "value": 1689168458989 }, - "date_last_updated": { "type": 6, "value": 1689168458989 }, - "date_of_expiration": { "type": 6, "value": 1689168458989 }, + "date_created": { + "type": 6, + "value": 1689168458989 + }, + "date_last_updated": { + "type": 6, + "value": 1689168458989 + }, + "date_of_expiration": { + "type": 6, + "value": 1689168458989 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -64346,9 +82853,18 @@ "original_amount": 3333752.7, "total_amount": 3333752.7, "id": 1691079300942, - "date_created": { "type": 6, "value": 1691079300942 }, - "date_last_updated": { "type": 6, "value": 1691079300942 }, - "date_of_expiration": { "type": 6, "value": 1691079300942 }, + "date_created": { + "type": 6, + "value": 1691079300942 + }, + "date_last_updated": { + "type": 6, + "value": 1691079300942 + }, + "date_of_expiration": { + "type": 6, + "value": 1691079300942 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64418,9 +82934,18 @@ "total_amount": 1488875, "id": 1691084485881, "history_id": 1691084485881, - "date_created": { "type": 6, "value": 1691084485881 }, - "date_last_updated": { "type": 6, "value": 1691084485881 }, - "date_of_expiration": { "type": 6, "value": 1693762885881 }, + "date_created": { + "type": 6, + "value": 1691084485881 + }, + "date_last_updated": { + "type": 6, + "value": 1691084485881 + }, + "date_of_expiration": { + "type": 6, + "value": 1693762885881 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64438,7 +82963,13 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694610080318 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694610080318 + } + }, "revision": "lnt034v9035moohx36l9hoiw", "revision_nr": 1, "created": 1697467105139, @@ -64500,16 +83031,28 @@ "total_amount": 250, "id": 1692018080319, "history_id": 1692018080319, - "date_created": { "type": 6, "value": 1692018080319 }, - "date_last_updated": { "type": 6, "value": 1692020547554 }, + "date_created": { + "type": 6, + "value": 1692018080319 + }, + "date_last_updated": { + "type": 6, + "value": 1692020547554 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1692020547554 }, - "money_release_date": { "type": 6, "value": 1692020547554 }, + "date_approved": { + "type": 6, + "value": 1692020547554 + }, + "money_release_date": { + "type": 6, + "value": 1692020547554 + }, "money_release_status": "approved", "wasDebited": true }, @@ -64569,9 +83112,18 @@ "total_amount": 220, "id": 1692288719964, "contract_id": "1684625319623", - "date_created": { "type": 6, "value": 1692288719964 }, - "date_last_updated": { "type": 6, "value": 1692288719964 }, - "date_of_expiration": { "type": 6, "value": 1692288719964 }, + "date_created": { + "type": 6, + "value": 1692288719964 + }, + "date_last_updated": { + "type": 6, + "value": 1692288719964 + }, + "date_of_expiration": { + "type": 6, + "value": 1692288719964 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -64640,9 +83192,18 @@ "total_amount": 1518652.5, "id": "1693763097865", "history_id": "1693763097865", - "date_created": { "type": 6, "value": 1693763097865 }, - "date_last_updated": { "type": 6, "value": 1693763097865 }, - "date_of_expiration": { "type": 6, "value": 1693763097865 }, + "date_created": { + "type": 6, + "value": 1693763097865 + }, + "date_last_updated": { + "type": 6, + "value": 1693763097865 + }, + "date_of_expiration": { + "type": 6, + "value": 1693763097865 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64711,16 +83272,28 @@ "total_amount": 1487490, "id": "1693915531936", "history_id": "1693915531936", - "date_created": { "type": 6, "value": 1693915531936 }, - "date_last_updated": { "type": 6, "value": 1696424640989 }, - "date_of_expiration": { "type": 6, "value": 1696507531936 }, + "date_created": { + "type": 6, + "value": 1693915531936 + }, + "date_last_updated": { + "type": 6, + "value": 1696424640989 + }, + "date_of_expiration": { + "type": 6, + "value": 1696507531936 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1696424640989 }, + "money_release_date": { + "type": 6, + "value": 1696424640989 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -64734,7 +83307,13 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1696598496774 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1696598496774 + } + }, "revision": "lnt034zk0362oohxh70ffdg4", "revision_nr": 1, "created": 1697467105289, @@ -64796,16 +83375,28 @@ "total_amount": 220, "id": "1694006496775", "history_id": "1694006496775", - "date_created": { "type": 6, "value": 1694006496775 }, - "date_last_updated": { "type": 6, "value": 1694007160077 }, + "date_created": { + "type": 6, + "value": 1694006496775 + }, + "date_last_updated": { + "type": 6, + "value": 1694007160077 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694007160077 }, - "money_release_date": { "type": 6, "value": 1694007160077 }, + "date_approved": { + "type": 6, + "value": 1694007160077 + }, + "money_release_date": { + "type": 6, + "value": 1694007160077 + }, "money_release_status": "approved", "wasDebited": true }, @@ -64872,9 +83463,18 @@ "total_amount": 220, "id": "1694572285717", "history_id": "1694572285717", - "date_created": { "type": 6, "value": 1694572285717 }, - "date_last_updated": { "type": 6, "value": 1694572285717 }, - "date_of_expiration": { "type": 6, "value": 1694572285717 }, + "date_created": { + "type": 6, + "value": 1694572285717 + }, + "date_last_updated": { + "type": 6, + "value": 1694572285717 + }, + "date_of_expiration": { + "type": 6, + "value": 1694572285717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -64944,9 +83544,18 @@ "total_amount": 40, "id": "1696081581090", "history_id": "1696081581090", - "date_created": { "type": 6, "value": 1696081581090 }, - "date_last_updated": { "type": 6, "value": 1696081581090 }, - "date_of_expiration": { "type": 6, "value": 1722347181089 }, + "date_created": { + "type": 6, + "value": 1696081581090 + }, + "date_last_updated": { + "type": 6, + "value": 1696081581090 + }, + "date_of_expiration": { + "type": 6, + "value": 1722347181089 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64964,7 +83573,13 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698673702609 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698673702609 + } + }, "revision": "lnt0352w036foohxhdmc3py1", "revision_nr": 1, "created": 1697467105409, @@ -65027,16 +83642,28 @@ "total_amount": 225, "id": "1696081702609", "history_id": "1696081702609", - "date_created": { "type": 6, "value": 1696081702609 }, - "date_last_updated": { "type": 6, "value": 1696085552609 }, + "date_created": { + "type": 6, + "value": 1696081702609 + }, + "date_last_updated": { + "type": 6, + "value": 1696085552609 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1696085552609 }, - "money_release_date": { "type": 6, "value": 1696085552609 }, + "date_approved": { + "type": 6, + "value": 1696085552609 + }, + "money_release_date": { + "type": 6, + "value": 1696085552609 + }, "money_release_status": "approved", "wasDebited": true }, @@ -65104,9 +83731,18 @@ "total_amount": 220, "id": "1696085699487", "history_id": "1696085699487", - "date_created": { "type": 6, "value": 1696085699487 }, - "date_last_updated": { "type": 6, "value": 1696085699487 }, - "date_of_expiration": { "type": 6, "value": 1696085699487 }, + "date_created": { + "type": 6, + "value": 1696085699487 + }, + "date_last_updated": { + "type": 6, + "value": 1696085699487 + }, + "date_of_expiration": { + "type": 6, + "value": 1696085699487 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -65176,9 +83812,18 @@ "total_amount": 31163, "id": "1696349167615", "history_id": "1696349167615", - "date_created": { "type": 6, "value": 1696349167615 }, - "date_last_updated": { "type": 6, "value": 1696349167615 }, - "date_of_expiration": { "type": 6, "value": 1759507567614 }, + "date_created": { + "type": 6, + "value": 1696349167615 + }, + "date_last_updated": { + "type": 6, + "value": 1696349167615 + }, + "date_of_expiration": { + "type": 6, + "value": 1759507567614 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65248,9 +83893,18 @@ "total_amount": 1487490, "id": "1696462181596", "history_id": "1696462181596", - "date_created": { "type": 6, "value": 1696462181596 }, - "date_last_updated": { "type": 6, "value": 1696462181596 }, - "date_of_expiration": { "type": 6, "value": 1699140581513 }, + "date_created": { + "type": 6, + "value": 1696462181596 + }, + "date_last_updated": { + "type": 6, + "value": 1696462181596 + }, + "date_of_expiration": { + "type": 6, + "value": 1699140581513 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65266,7 +83920,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history", - "content": { "type": 1, "value": {}, "revision": "lnt034e9033toohx15f273lb", "revision_nr": 1, "created": 1697467105563, "modified": 1697467105563 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt034e9033toohx15f273lb", + "revision_nr": 1, + "created": 1697467105563, + "modified": 1697467105563 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/description", @@ -65283,7 +83944,11 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt0357q0371oohx7unhgrh2", "revision_nr": 1, "created": 1697467105582, @@ -65292,7 +83957,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0357q0370oohx28ke82p5", "revision_nr": 1, "created": 1697467105591, "modified": 1697467105591 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0357q0370oohx28ke82p5", + "revision_nr": 1, + "created": 1697467105591, + "modified": 1697467105591 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623", @@ -65305,7 +83977,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684625319623 }, + "date_created": { + "type": 6, + "value": 1684625319623 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid" @@ -65318,7 +83993,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt0357f036xoohxaopz611g", "revision_nr": 1, "created": 1697467105608, "modified": 1697467105608 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0357f036xoohxaopz611g", + "revision_nr": 1, + "created": 1697467105608, + "modified": 1697467105608 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/description", @@ -65335,7 +84017,11 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt0358y0376oohxaabh3chz", "revision_nr": 1, "created": 1697467105628, @@ -65344,7 +84030,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0358x0375oohxdh7mawsq", "revision_nr": 1, "created": 1697467105636, "modified": 1697467105636 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0358x0375oohxdh7mawsq", + "revision_nr": 1, + "created": 1697467105636, + "modified": 1697467105636 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623", @@ -65357,7 +84050,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684625319623 }, + "date_created": { + "type": 6, + "value": 1684625319623 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid" @@ -65370,7 +84066,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt0358o0372oohxe298a4ga", "revision_nr": 1, "created": 1697467105654, "modified": 1697467105654 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0358o0372oohxe298a4ga", + "revision_nr": 1, + "created": 1697467105654, + "modified": 1697467105654 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/description", @@ -65387,7 +84090,11 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt035a7037boohxfzfae6d8", "revision_nr": 1, "created": 1697467105671, @@ -65396,7 +84103,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/costs", - "content": { "type": 2, "value": {}, "revision": "lnt035a7037aoohxhe79ho2w", "revision_nr": 1, "created": 1697467105679, "modified": 1697467105679 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt035a7037aoohxhe79ho2w", + "revision_nr": 1, + "created": 1697467105679, + "modified": 1697467105679 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623", @@ -65409,7 +84123,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684625319623 }, + "date_created": { + "type": 6, + "value": 1684625319623 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid" @@ -65422,7 +84139,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt0359y0377oohxbvee0vio", "revision_nr": 1, "created": 1697467105698, "modified": 1697467105698 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0359y0377oohxbvee0vio", + "revision_nr": 1, + "created": 1697467105698, + "modified": 1697467105698 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/description", @@ -65439,7 +84163,11 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt035bg037goohx1ox145tf", "revision_nr": 1, "created": 1697467105717, @@ -65448,7 +84176,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/costs", - "content": { "type": 2, "value": {}, "revision": "lnt035bg037foohx16ydc6fx", "revision_nr": 1, "created": 1697467105725, "modified": 1697467105725 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt035bg037foohx16ydc6fx", + "revision_nr": 1, + "created": 1697467105725, + "modified": 1697467105725 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623", @@ -65461,11 +84196,17 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684625319623 }, + "date_created": { + "type": 6, + "value": 1684625319623 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1694572285736 } + "date_last_updated": { + "type": 6, + "value": 1694572285736 + } }, "revision": "lnt035b6037doohx5op6eluw", "revision_nr": 1, @@ -65475,7 +84216,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt035b6037coohx3ujlgpc6", "revision_nr": 1, "created": 1697467105743, "modified": 1697467105743 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt035b6037coohx3ujlgpc6", + "revision_nr": 1, + "created": 1697467105743, + "modified": 1697467105743 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/description", @@ -65492,7 +84240,11 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt035co037loohxg61hdfww", "revision_nr": 1, "created": 1697467105762, @@ -65501,7 +84253,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/costs", - "content": { "type": 2, "value": {}, "revision": "lnt035co037koohx3pztfk4e", "revision_nr": 1, "created": 1697467105772, "modified": 1697467105772 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt035co037koohx3pztfk4e", + "revision_nr": 1, + "created": 1697467105772, + "modified": 1697467105772 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623", @@ -65514,11 +84273,17 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1684625319623 }, + "date_created": { + "type": 6, + "value": 1684625319623 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1696085699499 } + "date_last_updated": { + "type": 6, + "value": 1696085699499 + } }, "revision": "lnt035cf037ioohx85oi0xny", "revision_nr": 1, @@ -65528,17 +84293,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310", - "content": { "type": 1, "value": {}, "revision": "lnt035cf037hoohx85xm83ml", "revision_nr": 1, "created": 1697467105790, "modified": 1697467105790 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt035cf037hoohx85xm83ml", + "revision_nr": 1, + "created": 1697467105790, + "modified": 1697467105790 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt0357f036woohx6m75fc66", "revision_nr": 1, "created": 1697467105798, "modified": 1697467105798 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0357f036woohx6m75fc66", + "revision_nr": 1, + "created": 1697467105798, + "modified": 1697467105798 + } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 400, "analysisRequested": { "type": 6, "value": 1684618378558 }, "lastReview": { "type": 6, "value": 1684618429410 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 400, + "analysisRequested": { + "type": 6, + "value": 1684618378558 + }, + "lastReview": { + "type": 6, + "value": 1684618429410 + } + }, "revision": "lnt0357f036voohxh5l9gdvs", "revision_nr": 1, "created": 1697467105809, @@ -65549,7 +84339,16 @@ "path": "ivipcoin-db::__movement_wallet__/118160549969984260", "content": { "type": 1, - "value": { "dataModificacao": 1684492261254, "dateValidity": 1684492261254, "totalValue": 1371.271, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697338800000 } }, + "value": { + "dataModificacao": 1684492261254, + "dateValidity": 1684492261254, + "totalValue": 1371.271, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, "revision": "lnt034dj033poohxb7f3bbhh", "revision_nr": 1, "created": 1697467105817, @@ -65560,7 +84359,14 @@ "path": "ivipcoin-db::__movement_wallet__/120996359783253070", "content": { "type": 1, - "value": { "dataModificacao": 1678148092390, "dateValidity": 1678198916837, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678148092390, + "dateValidity": 1678198916837, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt035ei037moohxbwhme7im", "revision_nr": 1, "created": 1697467105827, @@ -65571,7 +84377,11 @@ "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances/BRL", "content": { "type": 1, - "value": { "available": "9.00000000", "symbol": "BRL", "value": 1.74 }, + "value": { + "available": "9.00000000", + "symbol": "BRL", + "value": 1.74 + }, "revision": "lnt035es037poohx9j13gfpi", "revision_nr": 1, "created": 1697467105836, @@ -65582,7 +84392,11 @@ "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances/IVIP", "content": { "type": 1, - "value": { "available": "443235.00000000", "symbol": "IVIP", "value": 70.34 }, + "value": { + "available": "443235.00000000", + "symbol": "IVIP", + "value": 70.34 + }, "revision": "lnt035f0037qoohx40c45uql", "revision_nr": 1, "created": 1697467105845, @@ -65591,7 +84405,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances", - "content": { "type": 1, "value": {}, "revision": "lnt035es037ooohxgrwq0jgo", "revision_nr": 1, "created": 1697467105853, "modified": 1697467105853 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt035es037ooohxgrwq0jgo", + "revision_nr": 1, + "created": 1697467105853, + "modified": 1697467105853 + } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978/description", @@ -65606,7 +84427,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt035fq037uoohxf0pd4igq", "revision_nr": 1, "created": 1697467105872, "modified": 1697467105872 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt035fq037uoohxf0pd4igq", + "revision_nr": 1, + "created": 1697467105872, + "modified": 1697467105872 + } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978", @@ -65620,15 +84450,30 @@ "total_amount": 100, "history_id": 1684273040978, "id": 1684273040978, - "date_created": { "type": 6, "value": 1684273040978 }, - "date_last_updated": { "type": 6, "value": 1684331134751 }, - "date_of_expiration": { "type": 6, "value": 1686865040978 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684331134751 }, - "money_release_date": { "type": 6, "value": 1684331134751 }, + "date_created": { + "type": 6, + "value": 1684273040978 + }, + "date_last_updated": { + "type": 6, + "value": 1684331134751 + }, + "date_of_expiration": { + "type": 6, + "value": 1686865040978 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684331134751 + }, + "money_release_date": { + "type": 6, + "value": 1684331134751 + }, "money_release_status": "approved", "wasDebited": true }, @@ -65674,9 +84519,18 @@ "original_amount": 97852, "total_amount": 97852, "id": 1684624212629, - "date_created": { "type": 6, "value": 1684624212629 }, - "date_last_updated": { "type": 6, "value": 1684624212629 }, - "date_of_expiration": { "type": 6, "value": 1684624212629 }, + "date_created": { + "type": 6, + "value": 1684624212629 + }, + "date_last_updated": { + "type": 6, + "value": 1684624212629 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624212629 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65727,9 +84581,18 @@ "original_amount": 345383, "total_amount": 345383, "id": 1684624265601, - "date_created": { "type": 6, "value": 1684624265601 }, - "date_last_updated": { "type": 6, "value": 1684624265601 }, - "date_of_expiration": { "type": 6, "value": 1684624265601 }, + "date_created": { + "type": 6, + "value": 1684624265601 + }, + "date_last_updated": { + "type": 6, + "value": 1684624265601 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624265601 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65800,9 +84663,18 @@ "total_amount": 1000, "id": "1696563980031", "history_id": "1696563980031", - "date_created": { "type": 6, "value": 1696563980031 }, - "date_last_updated": { "type": 6, "value": 1696563980031 }, - "date_of_expiration": { "type": 6, "value": 1699242379931 }, + "date_created": { + "type": 6, + "value": 1696563980031 + }, + "date_last_updated": { + "type": 6, + "value": 1696563980031 + }, + "date_of_expiration": { + "type": 6, + "value": 1699242379931 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65818,13 +84690,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history", - "content": { "type": 1, "value": {}, "revision": "lnt035fh037roohx2cmbbu0d", "revision_nr": 1, "created": 1697467105965, "modified": 1697467105965 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt035fh037roohx2cmbbu0d", + "revision_nr": 1, + "created": 1697467105965, + "modified": 1697467105965 + } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt035il0383oohxesxd91ug", "revision_nr": 1, "created": 1697467105975, @@ -65835,7 +84718,16 @@ "path": "ivipcoin-db::__movement_wallet__/121847634268578820", "content": { "type": 1, - "value": { "dataModificacao": 1684189916126, "dateValidity": 1684189916126, "totalValue": 20.09, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696561200000 } }, + "value": { + "dataModificacao": 1684189916126, + "dateValidity": 1684189916126, + "totalValue": 20.09, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } + }, "revision": "lnt035er037noohx4dpwcxtr", "revision_nr": 1, "created": 1697467105983, @@ -65846,7 +84738,13 @@ "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693581922792 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693581922792 + } + }, "revision": "lnt035j30387oohxfpeqgxjn", "revision_nr": 1, "created": 1697467105994, @@ -65908,16 +84806,28 @@ "total_amount": 100, "id": 1690989922793, "history_id": 1690989922793, - "date_created": { "type": 6, "value": 1690989922793 }, - "date_last_updated": { "type": 6, "value": 1691006114626 }, + "date_created": { + "type": 6, + "value": 1690989922793 + }, + "date_last_updated": { + "type": 6, + "value": 1691006114626 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691006114626 }, - "money_release_date": { "type": 6, "value": 1691006114626 }, + "date_approved": { + "type": 6, + "value": 1691006114626 + }, + "money_release_date": { + "type": 6, + "value": 1691006114626 + }, "money_release_status": "approved", "wasDebited": true }, @@ -65971,9 +84881,18 @@ "total_amount": 108815, "id": 1691006310448, "history_id": 1691006310448, - "date_created": { "type": 6, "value": 1691006310448 }, - "date_last_updated": { "type": 6, "value": 1691006310448 }, - "date_of_expiration": { "type": 6, "value": 1691006310448 }, + "date_created": { + "type": 6, + "value": 1691006310448 + }, + "date_last_updated": { + "type": 6, + "value": 1691006310448 + }, + "date_of_expiration": { + "type": 6, + "value": 1691006310448 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -66043,9 +84962,18 @@ "total_amount": 108815, "id": 1691006485984, "history_id": 1691006485984, - "date_created": { "type": 6, "value": 1691006485984 }, - "date_last_updated": { "type": 6, "value": 1691006485984 }, - "date_of_expiration": { "type": 6, "value": 1754164885917 }, + "date_created": { + "type": 6, + "value": 1691006485984 + }, + "date_last_updated": { + "type": 6, + "value": 1691006485984 + }, + "date_of_expiration": { + "type": 6, + "value": 1754164885917 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -66063,7 +84991,13 @@ "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694177260996 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694177260996 + } + }, "revision": "lnt035m7038joohx23g4f7tq", "revision_nr": 1, "created": 1697467106104, @@ -66125,16 +85059,28 @@ "total_amount": 50, "id": 1691585260996, "history_id": 1691585260996, - "date_created": { "type": 6, "value": 1691585260996 }, - "date_last_updated": { "type": 6, "value": 1691589440313 }, + "date_created": { + "type": 6, + "value": 1691585260996 + }, + "date_last_updated": { + "type": 6, + "value": 1691589440313 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691589440313 }, - "money_release_date": { "type": 6, "value": 1691589440313 }, + "date_approved": { + "type": 6, + "value": 1691589440313 + }, + "money_release_date": { + "type": 6, + "value": 1691589440313 + }, "money_release_status": "approved", "wasDebited": true }, @@ -66188,9 +85134,18 @@ "total_amount": 76363, "id": 1691589566120, "history_id": 1691589566120, - "date_created": { "type": 6, "value": 1691589566120 }, - "date_last_updated": { "type": 6, "value": 1691589566120 }, - "date_of_expiration": { "type": 6, "value": 1691589566120 }, + "date_created": { + "type": 6, + "value": 1691589566120 + }, + "date_last_updated": { + "type": 6, + "value": 1691589566120 + }, + "date_of_expiration": { + "type": 6, + "value": 1691589566120 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -66260,9 +85215,18 @@ "total_amount": 20000, "id": 1691589908652, "history_id": 1691589908652, - "date_created": { "type": 6, "value": 1691589908652 }, - "date_last_updated": { "type": 6, "value": 1691589908652 }, - "date_of_expiration": { "type": 6, "value": 1694268308648 }, + "date_created": { + "type": 6, + "value": 1691589908652 + }, + "date_last_updated": { + "type": 6, + "value": 1691589908652 + }, + "date_of_expiration": { + "type": 6, + "value": 1694268308648 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -66331,9 +85295,18 @@ "total_amount": 20400, "id": "1694268632615", "history_id": "1694268632615", - "date_created": { "type": 6, "value": 1694268632615 }, - "date_last_updated": { "type": 6, "value": 1694268632615 }, - "date_of_expiration": { "type": 6, "value": 1694268632615 }, + "date_created": { + "type": 6, + "value": 1694268632615 + }, + "date_last_updated": { + "type": 6, + "value": 1694268632615 + }, + "date_of_expiration": { + "type": 6, + "value": 1694268632615 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -66402,16 +85375,28 @@ "total_amount": 63131, "id": "1694304834658", "history_id": "1694304834658", - "date_created": { "type": 6, "value": 1694304834658 }, - "date_last_updated": { "type": 6, "value": 1696462319684 }, - "date_of_expiration": { "type": 6, "value": 1696896834657 }, + "date_created": { + "type": 6, + "value": 1694304834658 + }, + "date_last_updated": { + "type": 6, + "value": 1696462319684 + }, + "date_of_expiration": { + "type": 6, + "value": 1696896834657 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1696462319684 }, + "money_release_date": { + "type": 6, + "value": 1696462319684 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -66425,7 +85410,13 @@ "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697308841417 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697308841417 + } + }, "revision": "lnt035rd0393oohx6kc036th", "revision_nr": 1, "created": 1697467106290, @@ -66487,16 +85478,28 @@ "total_amount": 20, "id": "1694716841418", "history_id": "1694716841418", - "date_created": { "type": 6, "value": 1694716841418 }, - "date_last_updated": { "type": 6, "value": 1694718639334 }, + "date_created": { + "type": 6, + "value": 1694716841418 + }, + "date_last_updated": { + "type": 6, + "value": 1694718639334 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1694718639334 }, - "money_release_date": { "type": 6, "value": 1694718639334 }, + "date_approved": { + "type": 6, + "value": 1694718639334 + }, + "money_release_date": { + "type": 6, + "value": 1694718639334 + }, "money_release_status": "approved", "wasDebited": true }, @@ -66550,9 +85553,18 @@ "total_amount": 22823, "id": "1694723873975", "history_id": "1694723873975", - "date_created": { "type": 6, "value": 1694723873975 }, - "date_last_updated": { "type": 6, "value": 1694723873975 }, - "date_of_expiration": { "type": 6, "value": 1694723873975 }, + "date_created": { + "type": 6, + "value": 1694723873975 + }, + "date_last_updated": { + "type": 6, + "value": 1694723873975 + }, + "date_of_expiration": { + "type": 6, + "value": 1694723873975 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -66571,7 +85583,13 @@ "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697477737888 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697477737888 + } + }, "revision": "lnt035tf039boohx9a0r1ccz", "revision_nr": 1, "created": 1697467106364, @@ -66633,8 +85651,14 @@ "total_amount": 28.17, "id": "1694885737888", "history_id": "1694885737888", - "date_created": { "type": 6, "value": 1694885737888 }, - "date_last_updated": { "type": 6, "value": 1694885737888 }, + "date_created": { + "type": 6, + "value": 1694885737888 + }, + "date_last_updated": { + "type": 6, + "value": 1694885737888 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -66652,7 +85676,13 @@ "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697743250157 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697743250157 + } + }, "revision": "lnt035ur039goohxfvvzekif", "revision_nr": 1, "created": 1697467106411, @@ -66714,16 +85744,28 @@ "total_amount": 29370, "id": "1695151250157", "history_id": "1695151250157", - "date_created": { "type": 6, "value": 1695151250157 }, - "date_last_updated": { "type": 6, "value": 1695156966903 }, + "date_created": { + "type": 6, + "value": 1695151250157 + }, + "date_last_updated": { + "type": 6, + "value": 1695156966903 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1695156966903 }, - "money_release_date": { "type": 6, "value": 1695156966903 }, + "date_approved": { + "type": 6, + "value": 1695156966903 + }, + "money_release_date": { + "type": 6, + "value": 1695156966903 + }, "money_release_status": "approved", "wasDebited": true }, @@ -66788,16 +85830,28 @@ "total_amount": 36455, "id": "1695152833307", "history_id": "1695152833307", - "date_created": { "type": 6, "value": 1695152833307 }, - "date_last_updated": { "type": 6, "value": 1695678283636 }, - "date_of_expiration": { "type": 6, "value": 1710877633306 }, + "date_created": { + "type": 6, + "value": 1695152833307 + }, + "date_last_updated": { + "type": 6, + "value": 1695678283636 + }, + "date_of_expiration": { + "type": 6, + "value": 1710877633306 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1695678283636 }, + "money_release_date": { + "type": 6, + "value": 1695678283636 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -66862,16 +85916,28 @@ "total_amount": 29370, "id": "1695158486667", "history_id": "1695158486667", - "date_created": { "type": 6, "value": 1695158486667 }, - "date_last_updated": { "type": 6, "value": 1695678321877 }, - "date_of_expiration": { "type": 6, "value": 1726780886665 }, + "date_created": { + "type": 6, + "value": 1695158486667 + }, + "date_last_updated": { + "type": 6, + "value": 1695678321877 + }, + "date_of_expiration": { + "type": 6, + "value": 1726780886665 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": { "type": 6, "value": 1695678321877 }, + "money_release_date": { + "type": 6, + "value": 1695678321877 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -66937,9 +86003,18 @@ "total_amount": 128956, "id": "1696466013923", "history_id": "1696466013923", - "date_created": { "type": 6, "value": 1696466013923 }, - "date_last_updated": { "type": 6, "value": 1696466013923 }, - "date_of_expiration": { "type": 6, "value": 1699144413853 }, + "date_created": { + "type": 6, + "value": 1696466013923 + }, + "date_last_updated": { + "type": 6, + "value": 1696466013923 + }, + "date_of_expiration": { + "type": 6, + "value": 1699144413853 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -66955,13 +86030,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history", - "content": { "type": 1, "value": {}, "revision": "lnt035j30385oohxdjbe4hkx", "revision_nr": 1, "created": 1697467106572, "modified": 1697467106572 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt035j30385oohxdjbe4hkx", + "revision_nr": 1, + "created": 1697467106572, + "modified": 1697467106572 + } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt035zg039woohxgifwg0ym", "revision_nr": 1, "created": 1697467106580, @@ -66972,7 +86058,16 @@ "path": "ivipcoin-db::__movement_wallet__/122764830599810350", "content": { "type": 1, - "value": { "dataModificacao": 1690989855646, "dateValidity": 1690989855726, "balances": {}, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697338800000 } }, + "value": { + "dataModificacao": 1690989855646, + "dateValidity": 1690989855726, + "balances": {}, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } + }, "revision": "lnt035j30384oohxeeg13cf7", "revision_nr": 1, "created": 1697467106589, @@ -66983,7 +86078,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/balances/IVIP", "content": { "type": 1, - "value": { "available": "7503835.00000000", "symbol": "IVIP", "value": 789.35 }, + "value": { + "available": "7503835.00000000", + "symbol": "IVIP", + "value": 789.35 + }, "revision": "lnt035zx039zoohxc84fa7m6", "revision_nr": 1, "created": 1697467106598, @@ -66992,7 +86091,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/balances", - "content": { "type": 1, "value": {}, "revision": "lnt035zx039yoohx732i9hy6", "revision_nr": 1, "created": 1697467106608, "modified": 1697467106608 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt035zx039yoohx732i9hy6", + "revision_nr": 1, + "created": 1697467106608, + "modified": 1697467106608 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/description", @@ -67042,7 +86148,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 1.00%", "amount": 5 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 1.00%", + "amount": 5 + }, "revision": "lnt0361k03a8oohxcdf9cxk6", "revision_nr": 1, "created": 1697467106657, @@ -67051,21 +86161,52 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0361k03a7oohx6dn7hckf", "revision_nr": 1, "created": 1697467106666, "modified": 1697467106666 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0361k03a7oohx6dn7hckf", + "revision_nr": 1, + "created": 1697467106666, + "modified": 1697467106666 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info/collector", - "content": { "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, "revision": "lnt0362203aaoohx1ak56llp", "revision_nr": 1, "created": 1697467106679, "modified": 1697467106679 } + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt0362203aaoohx1ak56llp", + "revision_nr": 1, + "created": 1697467106679, + "modified": 1697467106679 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt0362203a9oohxcidzawq0", "revision_nr": 1, "created": 1697467106691, "modified": 1697467106691 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt0362203a9oohxcidzawq0", + "revision_nr": 1, + "created": 1697467106691, + "modified": 1697467106691 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 505, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 505, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt0360p03a3oohxdfpadx2n", "revision_nr": 1, "created": 1697467106700, @@ -67084,16 +86225,31 @@ "total_amount": 505, "history_id": 1679152509855, "id": 55900907390, - "date_created": { "type": 6, "value": 1679152510620 }, - "date_last_updated": { "type": 6, "value": 1679153713000 }, - "date_of_expiration": { "type": 6, "value": 1679238910378 }, + "date_created": { + "type": 6, + "value": 1679152510620 + }, + "date_last_updated": { + "type": 6, + "value": 1679153713000 + }, + "date_of_expiration": { + "type": 6, + "value": 1679238910378 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679153713000 }, - "money_release_date": { "type": 6, "value": 1679153713000 }, + "date_approved": { + "type": 6, + "value": 1679153713000 + }, + "money_release_date": { + "type": 6, + "value": 1679153713000 + }, "wasDebited": true }, "revision": "lnt0360g03a1oohxf6pnbrj4", @@ -67115,7 +86271,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0363i03adoohx8x9edquh", "revision_nr": 1, "created": 1697467106727, "modified": 1697467106727 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0363i03adoohx8x9edquh", + "revision_nr": 1, + "created": 1697467106727, + "modified": 1697467106727 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722", @@ -67129,9 +86294,18 @@ "total_amount": 505, "history_id": 1679153875722, "id": 1679153875722, - "date_created": { "type": 6, "value": 1679153875722 }, - "date_last_updated": { "type": 6, "value": 1679153875722 }, - "date_of_expiration": { "type": 6, "value": 1681745875722 }, + "date_created": { + "type": 6, + "value": 1679153875722 + }, + "date_last_updated": { + "type": 6, + "value": 1679153875722 + }, + "date_of_expiration": { + "type": 6, + "value": 1681745875722 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -67156,7 +86330,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0364b03agoohxhsmp2o1s", "revision_nr": 1, "created": 1697467106758, "modified": 1697467106758 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0364b03agoohxhsmp2o1s", + "revision_nr": 1, + "created": 1697467106758, + "modified": 1697467106758 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055", @@ -67170,9 +86353,18 @@ "total_amount": 505, "history_id": 1679154208055, "id": 1679154208055, - "date_created": { "type": 6, "value": 1679154208055 }, - "date_last_updated": { "type": 6, "value": 1679154208055 }, - "date_of_expiration": { "type": 6, "value": 1681746208055 }, + "date_created": { + "type": 6, + "value": 1679154208055 + }, + "date_last_updated": { + "type": 6, + "value": 1679154208055 + }, + "date_of_expiration": { + "type": 6, + "value": 1681746208055 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -67199,7 +86391,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt0365403aloohx174z9dvw", "revision_nr": 1, "created": 1697467106785, @@ -67208,11 +86404,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0365403akoohx24dhhrgu", "revision_nr": 1, "created": 1697467106794, "modified": 1697467106794 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0365403akoohx24dhhrgu", + "revision_nr": 1, + "created": 1697467106794, + "modified": 1697467106794 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details", - "content": { "type": 1, "value": {}, "revision": "lnt0365303ajoohx5yx9alvc", "revision_nr": 1, "created": 1697467106803, "modified": 1697467106803 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0365303ajoohx5yx9alvc", + "revision_nr": 1, + "created": 1697467106803, + "modified": 1697467106803 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490", @@ -67226,9 +86436,18 @@ "total_amount": 1100, "history_id": 1679263150490, "id": 1679263150490, - "date_created": { "type": 6, "value": 1679263150490 }, - "date_last_updated": { "type": 6, "value": 1679263150490 }, - "date_of_expiration": { "type": 6, "value": 1681855150490 }, + "date_created": { + "type": 6, + "value": 1679263150490 + }, + "date_last_updated": { + "type": 6, + "value": 1679263150490 + }, + "date_of_expiration": { + "type": 6, + "value": 1681855150490 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -67277,9 +86496,18 @@ "original_amount": 11643076, "total_amount": 11643076, "id": 1679266956838, - "date_created": { "type": 6, "value": 1679266956838 }, - "date_last_updated": { "type": 6, "value": 1679266956838 }, - "date_of_expiration": { "type": 6, "value": 1679266956838 }, + "date_created": { + "type": 6, + "value": 1679266956838 + }, + "date_last_updated": { + "type": 6, + "value": 1679266956838 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266956838 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -67342,7 +86570,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 1.00%", "amount": 15 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 1.00%", + "amount": 15 + }, "revision": "lnt0367q03avoohxgzzt4qoj", "revision_nr": 1, "created": 1697467106879, @@ -67351,13 +86583,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0367q03auoohxf8sk4trf", "revision_nr": 1, "created": 1697467106889, "modified": 1697467106889 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0367q03auoohxf8sk4trf", + "revision_nr": 1, + "created": 1697467106889, + "modified": 1697467106889 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, + "value": { + "account_holder_name": "zBCfpF dcGeyDOq lplNs" + }, "revision": "lnt0368903axoohx9ucvd0s5", "revision_nr": 1, "created": 1697467106898, @@ -67366,13 +86607,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt0368903awoohx7zqz1dw2", "revision_nr": 1, "created": 1697467106907, "modified": 1697467106907 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt0368903awoohx7zqz1dw2", + "revision_nr": 1, + "created": 1697467106907, + "modified": 1697467106907 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 1515, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 1515, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt0366y03aqoohx9r2jaxb7", "revision_nr": 1, "created": 1697467106916, @@ -67391,9 +86647,18 @@ "total_amount": 1515, "history_id": 1679696530924, "id": 1313587077, - "date_created": { "type": 6, "value": 1679696531656 }, - "date_last_updated": { "type": 6, "value": 1679696531656 }, - "date_of_expiration": { "type": 6, "value": 1679782931438 }, + "date_created": { + "type": 6, + "value": 1679696531656 + }, + "date_last_updated": { + "type": 6, + "value": 1679696531656 + }, + "date_of_expiration": { + "type": 6, + "value": 1679782931438 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -67419,7 +86684,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0369j03b0oohxetc9frcl", "revision_nr": 1, "created": 1697467106945, "modified": 1697467106945 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0369j03b0oohxetc9frcl", + "revision_nr": 1, + "created": 1697467106945, + "modified": 1697467106945 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215", @@ -67433,15 +86707,30 @@ "total_amount": 1500, "history_id": 1679696876215, "id": 1679696876215, - "date_created": { "type": 6, "value": 1679696876215 }, - "date_last_updated": { "type": 6, "value": 1679697420511 }, - "date_of_expiration": { "type": 6, "value": 1682288876215 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679697420511 }, - "money_release_date": { "type": 6, "value": 1679697420511 }, + "date_created": { + "type": 6, + "value": 1679696876215 + }, + "date_last_updated": { + "type": 6, + "value": 1679697420511 + }, + "date_of_expiration": { + "type": 6, + "value": 1682288876215 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679697420511 + }, + "money_release_date": { + "type": 6, + "value": 1679697420511 + }, "money_release_status": "approved", "wasDebited": true }, @@ -67464,7 +86753,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt036ad03b3oohxa0b4f305", "revision_nr": 1, "created": 1697467106974, "modified": 1697467106974 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt036ad03b3oohxa0b4f305", + "revision_nr": 1, + "created": 1697467106974, + "modified": 1697467106974 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004", @@ -67478,15 +86776,30 @@ "total_amount": 500, "history_id": 1679698976004, "id": 1679698976004, - "date_created": { "type": 6, "value": 1679698976004 }, - "date_last_updated": { "type": 6, "value": 1679699560373 }, - "date_of_expiration": { "type": 6, "value": 1682290976004 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679699560373 }, - "money_release_date": { "type": 6, "value": 1679699560373 }, + "date_created": { + "type": 6, + "value": 1679698976004 + }, + "date_last_updated": { + "type": 6, + "value": 1679699560373 + }, + "date_of_expiration": { + "type": 6, + "value": 1682290976004 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679699560373 + }, + "money_release_date": { + "type": 6, + "value": 1679699560373 + }, "money_release_status": "approved", "wasDebited": true }, @@ -67532,9 +86845,18 @@ "original_amount": 10651254, "total_amount": 10651254, "id": 1679872088470, - "date_created": { "type": 6, "value": 1679872088470 }, - "date_last_updated": { "type": 6, "value": 1679872088470 }, - "date_of_expiration": { "type": 6, "value": 1679872088470 }, + "date_created": { + "type": 6, + "value": 1679872088470 + }, + "date_last_updated": { + "type": 6, + "value": 1679872088470 + }, + "date_of_expiration": { + "type": 6, + "value": 1679872088470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -67562,7 +86884,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt036bo03b8oohxaq97f2w4", "revision_nr": 1, "created": 1697467107022, "modified": 1697467107022 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt036bo03b8oohxaq97f2w4", + "revision_nr": 1, + "created": 1697467107022, + "modified": 1697467107022 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540", @@ -67576,15 +86907,30 @@ "total_amount": 500, "history_id": 1680996986540, "id": 1680996986540, - "date_created": { "type": 6, "value": 1680996986540 }, - "date_last_updated": { "type": 6, "value": 1681057774524 }, - "date_of_expiration": { "type": 6, "value": 1683588986540 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1681057774524 }, - "money_release_date": { "type": 6, "value": 1681057774524 }, + "date_created": { + "type": 6, + "value": 1680996986540 + }, + "date_last_updated": { + "type": 6, + "value": 1681057774524 + }, + "date_of_expiration": { + "type": 6, + "value": 1683588986540 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1681057774524 + }, + "money_release_date": { + "type": 6, + "value": 1681057774524 + }, "money_release_status": "approved", "wasDebited": true }, @@ -67644,9 +86990,18 @@ "total_amount": 220, "id": 1682640956216, "contract_id": "1679263150490", - "date_created": { "type": 6, "value": 1682640956216 }, - "date_last_updated": { "type": 6, "value": 1682640956216 }, - "date_of_expiration": { "type": 6, "value": 1682640956216 }, + "date_created": { + "type": 6, + "value": 1682640956216 + }, + "date_last_updated": { + "type": 6, + "value": 1682640956216 + }, + "date_of_expiration": { + "type": 6, + "value": 1682640956216 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -67710,9 +87065,18 @@ "total_amount": 220, "id": 1683194553322, "contract_id": "1679263150490", - "date_created": { "type": 6, "value": 1683194553322 }, - "date_last_updated": { "type": 6, "value": 1683194553322 }, - "date_of_expiration": { "type": 6, "value": 1683194553322 }, + "date_created": { + "type": 6, + "value": 1683194553322 + }, + "date_last_updated": { + "type": 6, + "value": 1683194553322 + }, + "date_of_expiration": { + "type": 6, + "value": 1683194553322 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -67773,9 +87137,18 @@ "original_amount": 1510, "total_amount": 1510, "id": 1684019013862, - "date_created": { "type": 6, "value": 1684019013862 }, - "date_last_updated": { "type": 6, "value": 1684019013862 }, - "date_of_expiration": { "type": 6, "value": 1684019013862 }, + "date_created": { + "type": 6, + "value": 1684019013862 + }, + "date_last_updated": { + "type": 6, + "value": 1684019013862 + }, + "date_of_expiration": { + "type": 6, + "value": 1684019013862 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -67839,9 +87212,18 @@ "total_amount": 220, "id": 1684155209634, "contract_id": "1679263150490", - "date_created": { "type": 6, "value": 1684155209634 }, - "date_last_updated": { "type": 6, "value": 1684155209634 }, - "date_of_expiration": { "type": 6, "value": 1684155209634 }, + "date_created": { + "type": 6, + "value": 1684155209634 + }, + "date_last_updated": { + "type": 6, + "value": 1684155209634 + }, + "date_of_expiration": { + "type": 6, + "value": 1684155209634 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -67870,7 +87252,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, "revision": "lnt036fn03bpoohx06l69qem", "revision_nr": 1, "created": 1697467107164, @@ -67879,11 +87265,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt036fn03booohx8m2cf8ol", "revision_nr": 1, "created": 1697467107173, "modified": 1697467107173 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt036fn03booohx8m2cf8ol", + "revision_nr": 1, + "created": 1697467107173, + "modified": 1697467107173 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details", - "content": { "type": 1, "value": {}, "revision": "lnt036fn03bnoohxdi2s55bn", "revision_nr": 1, "created": 1697467107183, "modified": 1697467107183 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt036fn03bnoohxdi2s55bn", + "revision_nr": 1, + "created": 1697467107183, + "modified": 1697467107183 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574", @@ -67897,9 +87297,18 @@ "total_amount": 648, "history_id": 1684158510574, "id": 1684158510574, - "date_created": { "type": 6, "value": 1684158510574 }, - "date_last_updated": { "type": 6, "value": 1684158510574 }, - "date_of_expiration": { "type": 6, "value": 1686750510574 }, + "date_created": { + "type": 6, + "value": 1684158510574 + }, + "date_last_updated": { + "type": 6, + "value": 1684158510574 + }, + "date_of_expiration": { + "type": 6, + "value": 1686750510574 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -67959,9 +87368,18 @@ "original_amount": 5, "total_amount": 5, "id": 1684348943785, - "date_created": { "type": 6, "value": 1684348943785 }, - "date_last_updated": { "type": 6, "value": 1684348943785 }, - "date_of_expiration": { "type": 6, "value": 1684348943785 }, + "date_created": { + "type": 6, + "value": 1684348943785 + }, + "date_last_updated": { + "type": 6, + "value": 1684348943785 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348943785 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -68022,9 +87440,18 @@ "original_amount": 416.90000000000003, "total_amount": 416.90000000000003, "id": 1684624245338, - "date_created": { "type": 6, "value": 1684624245338 }, - "date_last_updated": { "type": 6, "value": 1684624245338 }, - "date_of_expiration": { "type": 6, "value": 1684624245338 }, + "date_created": { + "type": 6, + "value": 1684624245338 + }, + "date_last_updated": { + "type": 6, + "value": 1684624245338 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624245338 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -68074,9 +87501,18 @@ "original_amount": 11552888, "total_amount": 11552888, "id": 1684624330381, - "date_created": { "type": 6, "value": 1684624330381 }, - "date_last_updated": { "type": 6, "value": 1684624330381 }, - "date_of_expiration": { "type": 6, "value": 1684624330381 }, + "date_created": { + "type": 6, + "value": 1684624330381 + }, + "date_last_updated": { + "type": 6, + "value": 1684624330381 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624330381 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -68104,7 +87540,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt036j203c0oohx0oo604xu", "revision_nr": 1, "created": 1697467107287, "modified": 1697467107287 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt036j203c0oohx0oo604xu", + "revision_nr": 1, + "created": 1697467107287, + "modified": 1697467107287 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635", @@ -68118,9 +87563,18 @@ "total_amount": 100, "history_id": 1686781360635, "id": 1686781360635, - "date_created": { "type": 6, "value": 1686781360635 }, - "date_last_updated": { "type": 6, "value": 1686781360635 }, - "date_of_expiration": { "type": 6, "value": 1689373360635 }, + "date_created": { + "type": 6, + "value": 1686781360635 + }, + "date_last_updated": { + "type": 6, + "value": 1686781360635 + }, + "date_of_expiration": { + "type": 6, + "value": 1689373360635 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -68145,7 +87599,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt036jw03c3oohxduaw15g1", "revision_nr": 1, "created": 1697467107317, "modified": 1697467107317 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt036jw03c3oohxduaw15g1", + "revision_nr": 1, + "created": 1697467107317, + "modified": 1697467107317 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175", @@ -68159,15 +87622,30 @@ "total_amount": 162, "history_id": 1686838534175, "id": 1686838534175, - "date_created": { "type": 6, "value": 1686838534175 }, - "date_last_updated": { "type": 6, "value": 1686839135258 }, - "date_of_expiration": { "type": 6, "value": 1689430534175 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1686839135258 }, - "money_release_date": { "type": 6, "value": 1686839135258 }, + "date_created": { + "type": 6, + "value": 1686838534175 + }, + "date_last_updated": { + "type": 6, + "value": 1686839135258 + }, + "date_of_expiration": { + "type": 6, + "value": 1689430534175 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686839135258 + }, + "money_release_date": { + "type": 6, + "value": 1686839135258 + }, "money_release_status": "approved", "wasDebited": true }, @@ -68227,9 +87705,18 @@ "total_amount": 162, "id": 1686839367288, "contract_id": "1684158510574", - "date_created": { "type": 6, "value": 1686839367288 }, - "date_last_updated": { "type": 6, "value": 1686839367288 }, - "date_of_expiration": { "type": 6, "value": 1686839367288 }, + "date_created": { + "type": 6, + "value": 1686839367288 + }, + "date_last_updated": { + "type": 6, + "value": 1686839367288 + }, + "date_of_expiration": { + "type": 6, + "value": 1686839367288 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -68289,9 +87776,18 @@ "original_amount": 5132122, "total_amount": 5132122, "id": 1687526304583, - "date_created": { "type": 6, "value": 1687526304583 }, - "date_last_updated": { "type": 6, "value": 1687526304583 }, - "date_of_expiration": { "type": 6, "value": 1750684704583 }, + "date_created": { + "type": 6, + "value": 1687526304583 + }, + "date_last_updated": { + "type": 6, + "value": 1687526304583 + }, + "date_of_expiration": { + "type": 6, + "value": 1750684704583 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -68310,7 +87806,13 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1693646965462 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1693646965462 + } + }, "revision": "lnt036lz03cboohx0d1rhih6", "revision_nr": 1, "created": 1697467107394, @@ -68372,16 +87874,28 @@ "total_amount": 510, "id": 1691054965462, "history_id": 1691054965462, - "date_created": { "type": 6, "value": 1691054965462 }, - "date_last_updated": { "type": 6, "value": 1691089636675 }, + "date_created": { + "type": 6, + "value": 1691054965462 + }, + "date_last_updated": { + "type": 6, + "value": 1691089636675 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691089636675 }, - "money_release_date": { "type": 6, "value": 1691089636675 }, + "date_approved": { + "type": 6, + "value": 1691089636675 + }, + "money_release_date": { + "type": 6, + "value": 1691089636675 + }, "money_release_status": "approved", "wasDebited": true }, @@ -68395,7 +87909,13 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694044211694 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694044211694 + } + }, "revision": "lnt036na03cgoohx0ssgg39l", "revision_nr": 1, "created": 1697467107442, @@ -68457,16 +87977,28 @@ "total_amount": 300, "id": 1691452211694, "history_id": 1691452211694, - "date_created": { "type": 6, "value": 1691452211694 }, - "date_last_updated": { "type": 6, "value": 1691455199247 }, + "date_created": { + "type": 6, + "value": 1691452211694 + }, + "date_last_updated": { + "type": 6, + "value": 1691455199247 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691455199247 }, - "money_release_date": { "type": 6, "value": 1691455199247 }, + "date_approved": { + "type": 6, + "value": 1691455199247 + }, + "money_release_date": { + "type": 6, + "value": 1691455199247 + }, "money_release_status": "approved", "wasDebited": true }, @@ -68502,7 +88034,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 750698.52 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 750698.52 + }, "revision": "lnt036p603cpoohxgky9gpyx", "revision_nr": 1, "created": 1697467107508, @@ -68511,7 +88047,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt036p603cooohx7ms7fj7x", "revision_nr": 1, "created": 1697467107517, "modified": 1697467107517 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt036p603cooohx7ms7fj7x", + "revision_nr": 1, + "created": 1697467107517, + "modified": 1697467107517 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details", @@ -68545,17 +88088,32 @@ "total_amount": 24272585.48, "id": 1692030522501, "history_id": 1692030522501, - "date_created": { "type": 6, "value": 1692030522501 }, - "date_last_updated": { "type": 6, "value": 1692031200472 }, - "date_of_expiration": { "type": 6, "value": 1692030522501 }, + "date_created": { + "type": 6, + "value": 1692030522501 + }, + "date_last_updated": { + "type": 6, + "value": 1692031200472 + }, + "date_of_expiration": { + "type": 6, + "value": 1692030522501 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1692031200472 }, - "money_release_date": { "type": 6, "value": 1692031200472 }, + "date_approved": { + "type": 6, + "value": 1692031200472 + }, + "money_release_date": { + "type": 6, + "value": 1692031200472 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -68569,7 +88127,13 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697750847215 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697750847215 + } + }, "revision": "lnt036q803croohx28ji0012", "revision_nr": 1, "created": 1697467107545, @@ -68631,16 +88195,28 @@ "total_amount": 150, "id": "1695158847215", "history_id": "1695158847215", - "date_created": { "type": 6, "value": 1695158847215 }, - "date_last_updated": { "type": 6, "value": 1695159625727 }, + "date_created": { + "type": 6, + "value": 1695158847215 + }, + "date_last_updated": { + "type": 6, + "value": 1695159625727 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1695159625727 }, - "money_release_date": { "type": 6, "value": 1695159625727 }, + "date_approved": { + "type": 6, + "value": 1695159625727 + }, + "money_release_date": { + "type": 6, + "value": 1695159625727 + }, "money_release_status": "approved", "wasDebited": true }, @@ -68707,9 +88283,18 @@ "total_amount": 220, "id": "1695159884735", "history_id": "1695159884735", - "date_created": { "type": 6, "value": 1695159884735 }, - "date_last_updated": { "type": 6, "value": 1695159884735 }, - "date_of_expiration": { "type": 6, "value": 1695159884735 }, + "date_created": { + "type": 6, + "value": 1695159884735 + }, + "date_last_updated": { + "type": 6, + "value": 1695159884735 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159884735 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -68780,9 +88365,18 @@ "total_amount": 162, "id": "1695159884797", "history_id": "1695159884797", - "date_created": { "type": 6, "value": 1695159884797 }, - "date_last_updated": { "type": 6, "value": 1695159884797 }, - "date_of_expiration": { "type": 6, "value": 1695159884797 }, + "date_created": { + "type": 6, + "value": 1695159884797 + }, + "date_last_updated": { + "type": 6, + "value": 1695159884797 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159884797 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -68853,9 +88447,18 @@ "total_amount": 220, "id": "1695159884893", "history_id": "1695159884893", - "date_created": { "type": 6, "value": 1695159884893 }, - "date_last_updated": { "type": 6, "value": 1695159884893 }, - "date_of_expiration": { "type": 6, "value": 1695159884893 }, + "date_created": { + "type": 6, + "value": 1695159884893 + }, + "date_last_updated": { + "type": 6, + "value": 1695159884893 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159884893 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -68926,9 +88529,18 @@ "total_amount": 162, "id": "1695159884951", "history_id": "1695159884951", - "date_created": { "type": 6, "value": 1695159884951 }, - "date_last_updated": { "type": 6, "value": 1695159884951 }, - "date_of_expiration": { "type": 6, "value": 1695159884951 }, + "date_created": { + "type": 6, + "value": 1695159884951 + }, + "date_last_updated": { + "type": 6, + "value": 1695159884951 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159884951 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -68999,9 +88611,18 @@ "total_amount": 162, "id": "1695159885077", "history_id": "1695159885077", - "date_created": { "type": 6, "value": 1695159885077 }, - "date_last_updated": { "type": 6, "value": 1695159885077 }, - "date_of_expiration": { "type": 6, "value": 1695159885077 }, + "date_created": { + "type": 6, + "value": 1695159885077 + }, + "date_last_updated": { + "type": 6, + "value": 1695159885077 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159885077 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -69019,7 +88640,13 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1698764022012 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1698764022012 + } + }, "revision": "lnt036x403dgoohx0o3y28km", "revision_nr": 1, "created": 1697467107794, @@ -69082,8 +88709,14 @@ "total_amount": 100000, "id": "1696172022012", "history_id": "1696172022012", - "date_created": { "type": 6, "value": 1696172022012 }, - "date_last_updated": { "type": 6, "value": 1696172022012 }, + "date_created": { + "type": 6, + "value": 1696172022012 + }, + "date_last_updated": { + "type": 6, + "value": 1696172022012 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -69101,7 +88734,13 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1699705029373 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1699705029373 + } + }, "revision": "lnt036yh03dloohx8wwp9p9l", "revision_nr": 1, "created": 1697467107842, @@ -69164,16 +88803,28 @@ "total_amount": 2500, "id": "1697113029373", "history_id": "1697113029373", - "date_created": { "type": 6, "value": 1697113029373 }, - "date_last_updated": { "type": 6, "value": 1697113404981 }, + "date_created": { + "type": 6, + "value": 1697113029373 + }, + "date_last_updated": { + "type": 6, + "value": 1697113404981 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1697113404981 }, - "money_release_date": { "type": 6, "value": 1697113404981 }, + "date_approved": { + "type": 6, + "value": 1697113404981 + }, + "money_release_date": { + "type": 6, + "value": 1697113404981 + }, "money_release_status": "approved", "wasDebited": true }, @@ -69228,9 +88879,18 @@ "total_amount": 3812023, "id": "1697159292046", "history_id": "1697159292046", - "date_created": { "type": 6, "value": 1697159292046 }, - "date_last_updated": { "type": 6, "value": 1697159292046 }, - "date_of_expiration": { "type": 6, "value": 1697159292046 }, + "date_created": { + "type": 6, + "value": 1697159292046 + }, + "date_last_updated": { + "type": 6, + "value": 1697159292046 + }, + "date_of_expiration": { + "type": 6, + "value": 1697159292046 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -69247,7 +88907,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history", - "content": { "type": 1, "value": {}, "revision": "lnt0360g03a0oohx9sar73dn", "revision_nr": 1, "created": 1697467107919, "modified": 1697467107919 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0360g03a0oohx9sar73dn", + "revision_nr": 1, + "created": 1697467107919, + "modified": 1697467107919 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/description", @@ -69264,7 +88931,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt0371503dyoohx77zodkq3", "revision_nr": 1, "created": 1697467107939, @@ -69273,7 +88944,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0371503dxoohx8x4g9o7m", "revision_nr": 1, "created": 1697467107948, "modified": 1697467107948 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0371503dxoohx8x4g9o7m", + "revision_nr": 1, + "created": 1697467107948, + "modified": 1697467107948 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490", @@ -69286,7 +88964,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1679263150490 }, + "date_created": { + "type": 6, + "value": 1679263150490 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid" @@ -69299,7 +88980,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304", - "content": { "type": 1, "value": {}, "revision": "lnt0370v03duoohx98j73tka", "revision_nr": 1, "created": 1697467107969, "modified": 1697467107969 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0370v03duoohx98j73tka", + "revision_nr": 1, + "created": 1697467107969, + "modified": 1697467107969 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/description", @@ -69316,7 +89004,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt0372i03e3oohxhl4a5oiu", "revision_nr": 1, "created": 1697467107988, @@ -69325,7 +89017,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0372i03e2oohx780jb28q", "revision_nr": 1, "created": 1697467107997, "modified": 1697467107997 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0372i03e2oohx780jb28q", + "revision_nr": 1, + "created": 1697467107997, + "modified": 1697467107997 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490", @@ -69338,7 +89037,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1679263150490 }, + "date_created": { + "type": 6, + "value": 1679263150490 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid" @@ -69351,7 +89053,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305", - "content": { "type": 1, "value": {}, "revision": "lnt0372903dzoohxekvrgsvi", "revision_nr": 1, "created": 1697467108016, "modified": 1697467108016 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0372903dzoohxekvrgsvi", + "revision_nr": 1, + "created": 1697467108016, + "modified": 1697467108016 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/description", @@ -69368,7 +89077,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt0373v03e8oohxeqgddfsk", "revision_nr": 1, "created": 1697467108036, @@ -69377,7 +89090,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0373v03e7oohxbgy2fkqp", "revision_nr": 1, "created": 1697467108045, "modified": 1697467108045 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0373v03e7oohxbgy2fkqp", + "revision_nr": 1, + "created": 1697467108045, + "modified": 1697467108045 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490", @@ -69390,7 +89110,10 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1679263150490 }, + "date_created": { + "type": 6, + "value": 1679263150490 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid" @@ -69416,7 +89139,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, "revision": "lnt0374x03ecoohxcoag0c65", "revision_nr": 1, "created": 1697467108076, @@ -69425,7 +89152,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0374x03eboohx0wv39bvc", "revision_nr": 1, "created": 1697467108085, "modified": 1697467108085 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0374x03eboohx0wv39bvc", + "revision_nr": 1, + "created": 1697467108085, + "modified": 1697467108085 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574", @@ -69438,7 +89172,10 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": { "type": 6, "value": 1684158510574 }, + "date_created": { + "type": 6, + "value": 1684158510574 + }, "history_id": 1684158510574, "currency_id": "BRL", "status": "paid" @@ -69451,7 +89188,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt0373k03e4oohx5h96fhzl", "revision_nr": 1, "created": 1697467108103, "modified": 1697467108103 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0373k03e4oohx5h96fhzl", + "revision_nr": 1, + "created": 1697467108103, + "modified": 1697467108103 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/description", @@ -69468,7 +89212,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt0376803ehoohx9wnq5d2l", "revision_nr": 1, "created": 1697467108122, @@ -69477,7 +89225,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0376803egoohx682bfdbn", "revision_nr": 1, "created": 1697467108131, "modified": 1697467108131 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0376803egoohx682bfdbn", + "revision_nr": 1, + "created": 1697467108131, + "modified": 1697467108131 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490", @@ -69490,11 +89245,17 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1679263150490 }, + "date_created": { + "type": 6, + "value": 1679263150490 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1695159884751 } + "date_last_updated": { + "type": 6, + "value": 1695159884751 + } }, "revision": "lnt0375z03eeoohx417f72ia", "revision_nr": 1, @@ -69517,7 +89278,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, "revision": "lnt0377b03eloohx0kbea77y", "revision_nr": 1, "created": 1697467108160, @@ -69526,7 +89291,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0377b03ekoohx49mueevh", "revision_nr": 1, "created": 1697467108169, "modified": 1697467108169 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0377b03ekoohx49mueevh", + "revision_nr": 1, + "created": 1697467108169, + "modified": 1697467108169 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574", @@ -69539,11 +89311,17 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": { "type": 6, "value": 1684158510574 }, + "date_created": { + "type": 6, + "value": 1684158510574 + }, "history_id": 1684158510574, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1695159884809 } + "date_last_updated": { + "type": 6, + "value": 1695159884809 + } }, "revision": "lnt0377203eioohx4dpfc7e5", "revision_nr": 1, @@ -69553,7 +89331,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt0375z03edoohxdxs10r1u", "revision_nr": 1, "created": 1697467108189, "modified": 1697467108189 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0375z03edoohxdxs10r1u", + "revision_nr": 1, + "created": 1697467108189, + "modified": 1697467108189 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/description", @@ -69570,7 +89355,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 5 parcela(s) 10.00%", + "amount": 100 + }, "revision": "lnt0378m03eqoohx9cizd2z3", "revision_nr": 1, "created": 1697467108209, @@ -69579,7 +89368,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0378m03epoohxdn4s68ne", "revision_nr": 1, "created": 1697467108218, "modified": 1697467108218 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0378m03epoohxdn4s68ne", + "revision_nr": 1, + "created": 1697467108218, + "modified": 1697467108218 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490", @@ -69592,11 +89388,17 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { "type": 6, "value": 1679263150490 }, + "date_created": { + "type": 6, + "value": 1679263150490 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1695159884904 } + "date_last_updated": { + "type": 6, + "value": 1695159884904 + } }, "revision": "lnt0378d03enoohxdtdl2fci", "revision_nr": 1, @@ -69619,7 +89421,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, "revision": "lnt0379p03euoohx0h1wcy1z", "revision_nr": 1, "created": 1697467108246, @@ -69628,7 +89434,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574/costs", - "content": { "type": 2, "value": {}, "revision": "lnt0379o03etoohx9yqod8k1", "revision_nr": 1, "created": 1697467108256, "modified": 1697467108256 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt0379o03etoohx9yqod8k1", + "revision_nr": 1, + "created": 1697467108256, + "modified": 1697467108256 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574", @@ -69641,11 +89454,17 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": { "type": 6, "value": 1684158510574 }, + "date_created": { + "type": 6, + "value": 1684158510574 + }, "history_id": 1684158510574, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1695159884962 } + "date_last_updated": { + "type": 6, + "value": 1695159884962 + } }, "revision": "lnt0379f03eroohxbp6yc5pv", "revision_nr": 1, @@ -69655,7 +89474,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt0378d03emoohx2prjfbpy", "revision_nr": 1, "created": 1697467108276, "modified": 1697467108276 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0378d03emoohx2prjfbpy", + "revision_nr": 1, + "created": 1697467108276, + "modified": 1697467108276 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/description", @@ -69672,7 +89498,11 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 8.00%", + "amount": 48 + }, "revision": "lnt037b203ezoohx5uaq9ygs", "revision_nr": 1, "created": 1697467108295, @@ -69681,7 +89511,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/costs", - "content": { "type": 2, "value": {}, "revision": "lnt037b203eyoohxdg3td4ht", "revision_nr": 1, "created": 1697467108306, "modified": 1697467108306 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt037b203eyoohxdg3td4ht", + "revision_nr": 1, + "created": 1697467108306, + "modified": 1697467108306 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574", @@ -69694,11 +89531,17 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": { "type": 6, "value": 1684158510574 }, + "date_created": { + "type": 6, + "value": 1684158510574 + }, "history_id": 1684158510574, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1695159885096 } + "date_last_updated": { + "type": 6, + "value": 1695159885096 + } }, "revision": "lnt037as03ewoohx7xx9fu7z", "revision_nr": 1, @@ -69708,17 +89551,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt037as03evoohx10wd800q", "revision_nr": 1, "created": 1697467108325, "modified": 1697467108325 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt037as03evoohx10wd800q", + "revision_nr": 1, + "created": 1697467108325, + "modified": 1697467108325 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt0370v03dtoohxaf215u6p", "revision_nr": 1, "created": 1697467108334, "modified": 1697467108334 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0370v03dtoohxaf215u6p", + "revision_nr": 1, + "created": 1697467108334, + "modified": 1697467108334 + } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit", "content": { "type": 1, - "value": { "approvedLimit": 1000, "limitUsed": 850, "analysisRequested": { "type": 6, "value": 1679157145695 }, "lastReview": { "type": 6, "value": 1679261263210 } }, + "value": { + "approvedLimit": 1000, + "limitUsed": 850, + "analysisRequested": { + "type": 6, + "value": 1679157145695 + }, + "lastReview": { + "type": 6, + "value": 1679261263210 + } + }, "revision": "lnt0370v03dsoohxdf33d0y8", "revision_nr": 1, "created": 1697467108343, @@ -69729,7 +89597,16 @@ "path": "ivipcoin-db::__movement_wallet__/125193903817094830", "content": { "type": 1, - "value": { "dataModificacao": 1679152336550, "dateValidity": 1679152336550, "totalValue": 1379.3, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697252400000 } }, + "value": { + "dataModificacao": 1679152336550, + "dateValidity": 1679152336550, + "totalValue": 1379.3, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } + }, "revision": "lnt035zx039xoohx96sjaa71", "revision_nr": 1, "created": 1697467108352, @@ -69749,7 +89626,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037d603f4oohx6bzi3v0f", "revision_nr": 1, "created": 1697467108373, "modified": 1697467108373 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037d603f4oohx6bzi3v0f", + "revision_nr": 1, + "created": 1697467108373, + "modified": 1697467108373 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406", @@ -69763,15 +89649,30 @@ "total_amount": 1500, "history_id": 1677727950406, "id": 1677727950406, - "date_created": { "type": 6, "value": 1677727950406 }, - "date_last_updated": { "type": 6, "value": 1677728283262 }, - "date_of_expiration": { "type": 6, "value": 1680319950406 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677728283262 }, - "money_release_date": { "type": 6, "value": 1677728283262 }, + "date_created": { + "type": 6, + "value": 1677727950406 + }, + "date_last_updated": { + "type": 6, + "value": 1677728283262 + }, + "date_of_expiration": { + "type": 6, + "value": 1680319950406 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677728283262 + }, + "money_release_date": { + "type": 6, + "value": 1677728283262 + }, "money_release_status": "approved", "wasDebited": true }, @@ -69794,7 +89695,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037e103f7oohx5qf530bm", "revision_nr": 1, "created": 1697467108402, "modified": 1697467108402 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037e103f7oohx5qf530bm", + "revision_nr": 1, + "created": 1697467108402, + "modified": 1697467108402 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321", @@ -69808,15 +89718,30 @@ "total_amount": 100, "history_id": 1677797747321, "id": 1677797747321, - "date_created": { "type": 6, "value": 1677797747321 }, - "date_last_updated": { "type": 6, "value": 1677803124428 }, - "date_of_expiration": { "type": 6, "value": 1680389747321 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677803124428 }, - "money_release_date": { "type": 6, "value": 1677803124428 }, + "date_created": { + "type": 6, + "value": 1677797747321 + }, + "date_last_updated": { + "type": 6, + "value": 1677803124428 + }, + "date_of_expiration": { + "type": 6, + "value": 1680389747321 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677803124428 + }, + "money_release_date": { + "type": 6, + "value": 1677803124428 + }, "money_release_status": "approved", "wasDebited": true }, @@ -69839,7 +89764,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037et03faoohxb7ks3qv7", "revision_nr": 1, "created": 1697467108431, "modified": 1697467108431 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037et03faoohxb7ks3qv7", + "revision_nr": 1, + "created": 1697467108431, + "modified": 1697467108431 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960", @@ -69853,14 +89787,26 @@ "total_amount": 1000, "history_id": 1678363438960, "id": 1678363438960, - "date_created": { "type": 6, "value": 1678363438960 }, - "date_last_updated": { "type": 6, "value": 1678711461621 }, - "date_of_expiration": { "type": 6, "value": 1680955438960 }, + "date_created": { + "type": 6, + "value": 1678363438960 + }, + "date_last_updated": { + "type": 6, + "value": 1678711461621 + }, + "date_of_expiration": { + "type": 6, + "value": 1680955438960 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678711461621 }, + "money_release_date": { + "type": 6, + "value": 1678711461621 + }, "money_release_status": "rejected" }, "revision": "lnt037ek03f8oohx4evjcm2f", @@ -69905,9 +89851,18 @@ "original_amount": 11439584, "total_amount": 11439584, "id": 1678155991324, - "date_created": { "type": 6, "value": 1678155991324 }, - "date_last_updated": { "type": 6, "value": 1678155991324 }, - "date_of_expiration": { "type": 6, "value": 1678155991324 }, + "date_created": { + "type": 6, + "value": 1678155991324 + }, + "date_last_updated": { + "type": 6, + "value": 1678155991324 + }, + "date_of_expiration": { + "type": 6, + "value": 1678155991324 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -69970,7 +89925,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 1.9800000000000002 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 1.9800000000000002 + }, "revision": "lnt037gz03fkoohxbfdf01g1", "revision_nr": 1, "created": 1697467108510, @@ -69979,13 +89938,22 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt037gz03fjoohxb4trfecy", "revision_nr": 1, "created": 1697467108519, "modified": 1697467108519 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt037gz03fjoohxb4trfecy", + "revision_nr": 1, + "created": 1697467108519, + "modified": 1697467108519 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info/collector", "content": { "type": 1, - "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, + "value": { + "account_holder_name": "Paulo Fagner de Oliveira" + }, "revision": "lnt037hj03fmoohx7agd53o9", "revision_nr": 1, "created": 1697467108530, @@ -69994,13 +89962,28 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt037hj03floohxgk3mhffc", "revision_nr": 1, "created": 1697467108539, "modified": 1697467108539 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt037hj03floohxgk3mhffc", + "revision_nr": 1, + "created": 1697467108539, + "modified": 1697467108539 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 201.98, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 201.98, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt037g703ffoohx29mx1h7u", "revision_nr": 1, "created": 1697467108548, @@ -70019,9 +90002,18 @@ "total_amount": 201.98, "history_id": 1677377774383, "id": 55108764779, - "date_created": { "type": 6, "value": 1677377775134 }, - "date_last_updated": { "type": 6, "value": 1677377775134 }, - "date_of_expiration": { "type": 6, "value": 1677464174923 }, + "date_created": { + "type": 6, + "value": 1677377775134 + }, + "date_last_updated": { + "type": 6, + "value": 1677377775134 + }, + "date_of_expiration": { + "type": 6, + "value": 1677464174923 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -70049,7 +90041,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt037iy03froohxe1db3i5d", "revision_nr": 1, "created": 1697467108579, @@ -70058,11 +90054,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt037iy03fqoohx835x1me2", "revision_nr": 1, "created": 1697467108589, "modified": 1697467108589 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt037iy03fqoohx835x1me2", + "revision_nr": 1, + "created": 1697467108589, + "modified": 1697467108589 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details", - "content": { "type": 1, "value": {}, "revision": "lnt037ix03fpoohx3u05hqbx", "revision_nr": 1, "created": 1697467108598, "modified": 1697467108598 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt037ix03fpoohx3u05hqbx", + "revision_nr": 1, + "created": 1697467108598, + "modified": 1697467108598 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609", @@ -70076,9 +90086,18 @@ "total_amount": 3600, "history_id": 1679262602609, "id": 1679262602609, - "date_created": { "type": 6, "value": 1679262602609 }, - "date_last_updated": { "type": 6, "value": 1679262602609 }, - "date_of_expiration": { "type": 6, "value": 1681854602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, + "date_last_updated": { + "type": 6, + "value": 1679262602609 + }, + "date_of_expiration": { + "type": 6, + "value": 1681854602609 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -70127,9 +90146,18 @@ "original_amount": 17473846, "total_amount": 17473846, "id": 1679266870095, - "date_created": { "type": 6, "value": 1679266870095 }, - "date_last_updated": { "type": 6, "value": 1679266870095 }, - "date_of_expiration": { "type": 6, "value": 1679266870095 }, + "date_created": { + "type": 6, + "value": 1679266870095 + }, + "date_last_updated": { + "type": 6, + "value": 1679266870095 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266870095 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70159,7 +90187,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt037ku03fyoohx0fegafh5", "revision_nr": 1, "created": 1697467108648, @@ -70168,11 +90200,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt037ku03fxoohxhjhocfai", "revision_nr": 1, "created": 1697467108658, "modified": 1697467108658 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt037ku03fxoohxhjhocfai", + "revision_nr": 1, + "created": 1697467108658, + "modified": 1697467108658 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details", - "content": { "type": 1, "value": {}, "revision": "lnt037ku03fwoohxb6lo75ls", "revision_nr": 1, "created": 1697467108667, "modified": 1697467108667 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt037ku03fwoohxb6lo75ls", + "revision_nr": 1, + "created": 1697467108667, + "modified": 1697467108667 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362", @@ -70186,15 +90232,30 @@ "total_amount": 3600, "history_id": 1678654062362, "id": 1678654062362, - "date_created": { "type": 6, "value": 1678654062362 }, - "date_last_updated": { "type": 6, "value": 1679405448783 }, - "date_of_expiration": { "type": 6, "value": 1681246062362 }, + "date_created": { + "type": 6, + "value": 1678654062362 + }, + "date_last_updated": { + "type": 6, + "value": 1679405448783 + }, + "date_of_expiration": { + "type": 6, + "value": 1681246062362 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1679405448783 }, - "money_release_date": { "type": 6, "value": 1679405448783 }, + "date_approved": { + "type": 6, + "value": 1679405448783 + }, + "money_release_date": { + "type": 6, + "value": 1679405448783 + }, "money_release_status": "rejected", "wasDebited": true }, @@ -70217,7 +90278,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037m903g1oohxa07wcgen", "revision_nr": 1, "created": 1697467108699, "modified": 1697467108699 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037m903g1oohxa07wcgen", + "revision_nr": 1, + "created": 1697467108699, + "modified": 1697467108699 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323", @@ -70231,9 +90301,18 @@ "total_amount": 100, "history_id": 1679871546323, "id": 1679871546323, - "date_created": { "type": 6, "value": 1679871546323 }, - "date_last_updated": { "type": 6, "value": 1679871546323 }, - "date_of_expiration": { "type": 6, "value": 1682463546323 }, + "date_created": { + "type": 6, + "value": 1679871546323 + }, + "date_last_updated": { + "type": 6, + "value": 1679871546323 + }, + "date_of_expiration": { + "type": 6, + "value": 1682463546323 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -70258,7 +90337,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037n103g4oohxbyjx7ks0", "revision_nr": 1, "created": 1697467108727, "modified": 1697467108727 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037n103g4oohxbyjx7ks0", + "revision_nr": 1, + "created": 1697467108727, + "modified": 1697467108727 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709", @@ -70272,15 +90360,30 @@ "total_amount": 360, "history_id": 1682619072709, "id": 1682619072709, - "date_created": { "type": 6, "value": 1682619072709 }, - "date_last_updated": { "type": 6, "value": 1682620234522 }, - "date_of_expiration": { "type": 6, "value": 1685211072709 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1682620234522 }, - "money_release_date": { "type": 6, "value": 1682620234522 }, + "date_created": { + "type": 6, + "value": 1682619072709 + }, + "date_last_updated": { + "type": 6, + "value": 1682620234522 + }, + "date_of_expiration": { + "type": 6, + "value": 1685211072709 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1682620234522 + }, + "money_release_date": { + "type": 6, + "value": 1682620234522 + }, "money_release_status": "approved", "wasDebited": true }, @@ -70340,9 +90443,18 @@ "total_amount": 360, "id": 1682620551210, "contract_id": "1679262602609", - "date_created": { "type": 6, "value": 1682620551210 }, - "date_last_updated": { "type": 6, "value": 1682620551210 }, - "date_of_expiration": { "type": 6, "value": 1682620551210 }, + "date_created": { + "type": 6, + "value": 1682620551210 + }, + "date_last_updated": { + "type": 6, + "value": 1682620551210 + }, + "date_of_expiration": { + "type": 6, + "value": 1682620551210 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -70369,7 +90481,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037oo03gaoohx39gcdhx1", "revision_nr": 1, "created": 1697467108786, "modified": 1697467108786 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037oo03gaoohx39gcdhx1", + "revision_nr": 1, + "created": 1697467108786, + "modified": 1697467108786 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919", @@ -70383,15 +90504,30 @@ "total_amount": 200, "history_id": 1683422461919, "id": 1683422461919, - "date_created": { "type": 6, "value": 1683422461919 }, - "date_last_updated": { "type": 6, "value": 1683459942487 }, - "date_of_expiration": { "type": 6, "value": 1686014461919 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683459942487 }, - "money_release_date": { "type": 6, "value": 1683459942487 }, + "date_created": { + "type": 6, + "value": 1683422461919 + }, + "date_last_updated": { + "type": 6, + "value": 1683459942487 + }, + "date_of_expiration": { + "type": 6, + "value": 1686014461919 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683459942487 + }, + "money_release_date": { + "type": 6, + "value": 1683459942487 + }, "money_release_status": "approved", "wasDebited": true }, @@ -70414,7 +90550,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037pi03gdoohx4ffta4wq", "revision_nr": 1, "created": 1697467108815, "modified": 1697467108815 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037pi03gdoohx4ffta4wq", + "revision_nr": 1, + "created": 1697467108815, + "modified": 1697467108815 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546", @@ -70428,15 +90573,30 @@ "total_amount": 200, "history_id": 1683947136546, "id": 1683947136546, - "date_created": { "type": 6, "value": 1683947136546 }, - "date_last_updated": { "type": 6, "value": 1683947355818 }, - "date_of_expiration": { "type": 6, "value": 1686539136546 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683947355818 }, - "money_release_date": { "type": 6, "value": 1683947355818 }, + "date_created": { + "type": 6, + "value": 1683947136546 + }, + "date_last_updated": { + "type": 6, + "value": 1683947355818 + }, + "date_of_expiration": { + "type": 6, + "value": 1686539136546 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683947355818 + }, + "money_release_date": { + "type": 6, + "value": 1683947355818 + }, "money_release_status": "approved", "wasDebited": true }, @@ -70496,9 +90656,18 @@ "total_amount": 360, "id": 1683947563493, "contract_id": "1679262602609", - "date_created": { "type": 6, "value": 1683947563493 }, - "date_last_updated": { "type": 6, "value": 1683947563493 }, - "date_of_expiration": { "type": 6, "value": 1683947563493 }, + "date_created": { + "type": 6, + "value": 1683947563493 + }, + "date_last_updated": { + "type": 6, + "value": 1683947563493 + }, + "date_of_expiration": { + "type": 6, + "value": 1683947563493 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -70525,7 +90694,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037r303gjoohxea7t1dx3", "revision_nr": 1, "created": 1697467108873, "modified": 1697467108873 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037r303gjoohxea7t1dx3", + "revision_nr": 1, + "created": 1697467108873, + "modified": 1697467108873 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523", @@ -70539,15 +90717,30 @@ "total_amount": 66.32, "history_id": 1683948027523, "id": 1683948027523, - "date_created": { "type": 6, "value": 1683948027523 }, - "date_last_updated": { "type": 6, "value": 1683948080092 }, - "date_of_expiration": { "type": 6, "value": 1686540027523 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1683948080092 }, - "money_release_date": { "type": 6, "value": 1683948080092 }, + "date_created": { + "type": 6, + "value": 1683948027523 + }, + "date_last_updated": { + "type": 6, + "value": 1683948080092 + }, + "date_of_expiration": { + "type": 6, + "value": 1686540027523 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683948080092 + }, + "money_release_date": { + "type": 6, + "value": 1683948080092 + }, "money_release_status": "approved", "wasDebited": true }, @@ -70593,9 +90786,18 @@ "original_amount": 574594, "total_amount": 574594, "id": 1684018958560, - "date_created": { "type": 6, "value": 1684018958560 }, - "date_last_updated": { "type": 6, "value": 1684018958560 }, - "date_of_expiration": { "type": 6, "value": 1684018958560 }, + "date_created": { + "type": 6, + "value": 1684018958560 + }, + "date_last_updated": { + "type": 6, + "value": 1684018958560 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018958560 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70623,7 +90825,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037sh03gooohx6j1se1cr", "revision_nr": 1, "created": 1697467108923, "modified": 1697467108923 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037sh03gooohx6j1se1cr", + "revision_nr": 1, + "created": 1697467108923, + "modified": 1697467108923 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439", @@ -70637,15 +90848,30 @@ "total_amount": 130, "history_id": 1684158010439, "id": 1684158010439, - "date_created": { "type": 6, "value": 1684158010439 }, - "date_last_updated": { "type": 6, "value": 1684163590445 }, - "date_of_expiration": { "type": 6, "value": 1686750010439 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684163590445 }, - "money_release_date": { "type": 6, "value": 1684163590445 }, + "date_created": { + "type": 6, + "value": 1684158010439 + }, + "date_last_updated": { + "type": 6, + "value": 1684163590445 + }, + "date_of_expiration": { + "type": 6, + "value": 1686750010439 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684163590445 + }, + "money_release_date": { + "type": 6, + "value": 1684163590445 + }, "money_release_status": "approved", "wasDebited": true }, @@ -70668,7 +90894,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037tb03groohxdqaydqau", "revision_nr": 1, "created": 1697467108954, "modified": 1697467108954 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037tb03groohxdqaydqau", + "revision_nr": 1, + "created": 1697467108954, + "modified": 1697467108954 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068", @@ -70682,15 +90917,30 @@ "total_amount": 55, "history_id": 1684458859068, "id": 1684458859068, - "date_created": { "type": 6, "value": 1684458859068 }, - "date_last_updated": { "type": 6, "value": 1684459557882 }, - "date_of_expiration": { "type": 6, "value": 1687050859068 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1684459557882 }, - "money_release_date": { "type": 6, "value": 1684459557882 }, + "date_created": { + "type": 6, + "value": 1684458859068 + }, + "date_last_updated": { + "type": 6, + "value": 1684459557882 + }, + "date_of_expiration": { + "type": 6, + "value": 1687050859068 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684459557882 + }, + "money_release_date": { + "type": 6, + "value": 1684459557882 + }, "money_release_status": "approved", "wasDebited": true }, @@ -70736,9 +90986,18 @@ "original_amount": 901085, "total_amount": 901085, "id": 1684624396163, - "date_created": { "type": 6, "value": 1684624396163 }, - "date_last_updated": { "type": 6, "value": 1684624396163 }, - "date_of_expiration": { "type": 6, "value": 1684624396163 }, + "date_created": { + "type": 6, + "value": 1684624396163 + }, + "date_last_updated": { + "type": 6, + "value": 1684624396163 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624396163 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70799,9 +91058,18 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1685667418933, - "date_created": { "type": 6, "value": 1685667418933 }, - "date_last_updated": { "type": 6, "value": 1685667418933 }, - "date_of_expiration": { "type": 6, "value": 1748825818933 }, + "date_created": { + "type": 6, + "value": 1685667418933 + }, + "date_last_updated": { + "type": 6, + "value": 1685667418933 + }, + "date_of_expiration": { + "type": 6, + "value": 1748825818933 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70862,9 +91130,18 @@ "original_amount": 4000000, "total_amount": 4000000, "id": 1685668065254, - "date_created": { "type": 6, "value": 1685668065254 }, - "date_last_updated": { "type": 6, "value": 1685668065254 }, - "date_of_expiration": { "type": 6, "value": 1717290465254 }, + "date_created": { + "type": 6, + "value": 1685668065254 + }, + "date_last_updated": { + "type": 6, + "value": 1685668065254 + }, + "date_of_expiration": { + "type": 6, + "value": 1717290465254 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70924,9 +91201,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685668086801, - "date_created": { "type": 6, "value": 1685668086801 }, - "date_last_updated": { "type": 6, "value": 1685668086801 }, - "date_of_expiration": { "type": 6, "value": 1688260086801 }, + "date_created": { + "type": 6, + "value": 1685668086801 + }, + "date_last_updated": { + "type": 6, + "value": 1685668086801 + }, + "date_of_expiration": { + "type": 6, + "value": 1688260086801 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70986,9 +91272,18 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1685668239552, - "date_created": { "type": 6, "value": 1685668239552 }, - "date_last_updated": { "type": 6, "value": 1685668239552 }, - "date_of_expiration": { "type": 6, "value": 1701479439552 }, + "date_created": { + "type": 6, + "value": 1685668239552 + }, + "date_last_updated": { + "type": 6, + "value": 1685668239552 + }, + "date_of_expiration": { + "type": 6, + "value": 1701479439552 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71015,7 +91310,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt037y203h8oohxhw2c3lsr", "revision_nr": 1, "created": 1697467109126, "modified": 1697467109126 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt037y203h8oohxhw2c3lsr", + "revision_nr": 1, + "created": 1697467109126, + "modified": 1697467109126 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834", @@ -71029,15 +91333,30 @@ "total_amount": 400, "history_id": 1686858477834, "id": 1686858477834, - "date_created": { "type": 6, "value": 1686858477834 }, - "date_last_updated": { "type": 6, "value": 1686859225618 }, - "date_of_expiration": { "type": 6, "value": 1689450477834 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1686859225618 }, - "money_release_date": { "type": 6, "value": 1686859225618 }, + "date_created": { + "type": 6, + "value": 1686858477834 + }, + "date_last_updated": { + "type": 6, + "value": 1686859225618 + }, + "date_of_expiration": { + "type": 6, + "value": 1689450477834 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686859225618 + }, + "money_release_date": { + "type": 6, + "value": 1686859225618 + }, "money_release_status": "approved", "wasDebited": true }, @@ -71097,9 +91416,18 @@ "total_amount": 360, "id": 1686859298764, "contract_id": "1679262602609", - "date_created": { "type": 6, "value": 1686859298764 }, - "date_last_updated": { "type": 6, "value": 1686859298764 }, - "date_of_expiration": { "type": 6, "value": 1686859298764 }, + "date_created": { + "type": 6, + "value": 1686859298764 + }, + "date_last_updated": { + "type": 6, + "value": 1686859298764 + }, + "date_of_expiration": { + "type": 6, + "value": 1686859298764 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -71149,9 +91477,18 @@ "original_amount": 256510, "total_amount": 256510, "id": 1686859421606, - "date_created": { "type": 6, "value": 1686859421606 }, - "date_last_updated": { "type": 6, "value": 1686859421606 }, - "date_of_expiration": { "type": 6, "value": 1686859421606 }, + "date_created": { + "type": 6, + "value": 1686859421606 + }, + "date_last_updated": { + "type": 6, + "value": 1686859421606 + }, + "date_of_expiration": { + "type": 6, + "value": 1686859421606 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71212,9 +91549,18 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1688400452024, - "date_created": { "type": 6, "value": 1688400452024 }, - "date_last_updated": { "type": 6, "value": 1688400452024 }, - "date_of_expiration": { "type": 6, "value": 1688400452024 }, + "date_created": { + "type": 6, + "value": 1688400452024 + }, + "date_last_updated": { + "type": 6, + "value": 1688400452024 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400452024 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71275,9 +91621,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1688403103597, - "date_created": { "type": 6, "value": 1688403103597 }, - "date_last_updated": { "type": 6, "value": 1688403103597 }, - "date_of_expiration": { "type": 6, "value": 1691081503597 }, + "date_created": { + "type": 6, + "value": 1688403103597 + }, + "date_last_updated": { + "type": 6, + "value": 1688403103597 + }, + "date_of_expiration": { + "type": 6, + "value": 1691081503597 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71304,7 +91659,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0381z03hmoohx91pbfbdd", "revision_nr": 1, "created": 1697467109265, "modified": 1697467109265 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0381z03hmoohx91pbfbdd", + "revision_nr": 1, + "created": 1697467109265, + "modified": 1697467109265 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266", @@ -71318,9 +91682,18 @@ "total_amount": 8000000, "history_id": 1688735047266, "id": 1688735047266, - "date_created": { "type": 6, "value": 1688735047266 }, - "date_last_updated": { "type": 6, "value": 1688735047266 }, - "date_of_expiration": { "type": 6, "value": 1688735047266 }, + "date_created": { + "type": 6, + "value": 1688735047266 + }, + "date_last_updated": { + "type": 6, + "value": 1688735047266 + }, + "date_of_expiration": { + "type": 6, + "value": 1688735047266 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -71345,7 +91718,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt0382u03hpoohxaxyd0t4f", "revision_nr": 1, "created": 1697467109296, "modified": 1697467109296 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt0382u03hpoohxaxyd0t4f", + "revision_nr": 1, + "created": 1697467109296, + "modified": 1697467109296 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052", @@ -71359,9 +91741,18 @@ "total_amount": 11000000, "history_id": 1689292258052, "id": 1689292258052, - "date_created": { "type": 6, "value": 1689292258052 }, - "date_last_updated": { "type": 6, "value": 1689292258052 }, - "date_of_expiration": { "type": 6, "value": 1689292258052 }, + "date_created": { + "type": 6, + "value": 1689292258052 + }, + "date_last_updated": { + "type": 6, + "value": 1689292258052 + }, + "date_of_expiration": { + "type": 6, + "value": 1689292258052 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -71419,9 +91810,18 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1691081627683, - "date_created": { "type": 6, "value": 1691081627683 }, - "date_last_updated": { "type": 6, "value": 1691081627683 }, - "date_of_expiration": { "type": 6, "value": 1691081627683 }, + "date_created": { + "type": 6, + "value": 1691081627683 + }, + "date_last_updated": { + "type": 6, + "value": 1691081627683 + }, + "date_of_expiration": { + "type": 6, + "value": 1691081627683 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71491,9 +91891,18 @@ "total_amount": 8000000, "id": 1691082859805, "history_id": 1691082859805, - "date_created": { "type": 6, "value": 1691082859805 }, - "date_last_updated": { "type": 6, "value": 1691082859805 }, - "date_of_expiration": { "type": 6, "value": 1693761259804 }, + "date_created": { + "type": 6, + "value": 1691082859805 + }, + "date_last_updated": { + "type": 6, + "value": 1691082859805 + }, + "date_of_expiration": { + "type": 6, + "value": 1693761259804 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71511,7 +91920,13 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694126049576 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694126049576 + } + }, "revision": "lnt0385d03hyoohx4ty4htq2", "revision_nr": 1, "created": 1697467109388, @@ -71573,16 +91988,28 @@ "total_amount": 360, "id": 1691534049577, "history_id": 1691534049577, - "date_created": { "type": 6, "value": 1691534049577 }, - "date_last_updated": { "type": 6, "value": 1691536908177 }, + "date_created": { + "type": 6, + "value": 1691534049577 + }, + "date_last_updated": { + "type": 6, + "value": 1691536908177 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691536908177 }, - "money_release_date": { "type": 6, "value": 1691536908177 }, + "date_approved": { + "type": 6, + "value": 1691536908177 + }, + "money_release_date": { + "type": 6, + "value": 1691536908177 + }, "money_release_status": "approved", "wasDebited": true }, @@ -71647,9 +92074,18 @@ "total_amount": 8160000, "id": "1693761380582", "history_id": "1693761380582", - "date_created": { "type": 6, "value": 1693761380582 }, - "date_last_updated": { "type": 6, "value": 1693761380582 }, - "date_of_expiration": { "type": 6, "value": 1693761380582 }, + "date_created": { + "type": 6, + "value": 1693761380582 + }, + "date_last_updated": { + "type": 6, + "value": 1693761380582 + }, + "date_of_expiration": { + "type": 6, + "value": 1693761380582 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71718,9 +92154,18 @@ "total_amount": 8000000, "id": "1693780032051", "history_id": "1693780032051", - "date_created": { "type": 6, "value": 1693780032051 }, - "date_last_updated": { "type": 6, "value": 1693780032051 }, - "date_of_expiration": { "type": 6, "value": 1696372032050 }, + "date_created": { + "type": 6, + "value": 1693780032051 + }, + "date_last_updated": { + "type": 6, + "value": 1693780032051 + }, + "date_of_expiration": { + "type": 6, + "value": 1696372032050 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71738,7 +92183,13 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697914050195 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697914050195 + } + }, "revision": "lnt0388x03iboohxc2fbfxz2", "revision_nr": 1, "created": 1697467109515, @@ -71800,16 +92251,28 @@ "total_amount": 720, "id": "1695322050196", "history_id": "1695322050196", - "date_created": { "type": 6, "value": 1695322050196 }, - "date_last_updated": { "type": 6, "value": 1695406105258 }, + "date_created": { + "type": 6, + "value": 1695322050196 + }, + "date_last_updated": { + "type": 6, + "value": 1695406105258 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1695406105258 }, - "money_release_date": { "type": 6, "value": 1695406105258 }, + "date_approved": { + "type": 6, + "value": 1695406105258 + }, + "money_release_date": { + "type": 6, + "value": 1695406105258 + }, "money_release_status": "approved", "wasDebited": true }, @@ -71876,9 +92339,18 @@ "total_amount": 360, "id": "1695423451385", "history_id": "1695423451385", - "date_created": { "type": 6, "value": 1695423451385 }, - "date_last_updated": { "type": 6, "value": 1695423451385 }, - "date_of_expiration": { "type": 6, "value": 1695423451385 }, + "date_created": { + "type": 6, + "value": 1695423451385 + }, + "date_last_updated": { + "type": 6, + "value": 1695423451385 + }, + "date_of_expiration": { + "type": 6, + "value": 1695423451385 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -71949,9 +92421,18 @@ "total_amount": 360, "id": "1695423451505", "history_id": "1695423451505", - "date_created": { "type": 6, "value": 1695423451505 }, - "date_last_updated": { "type": 6, "value": 1695423451505 }, - "date_of_expiration": { "type": 6, "value": 1695423451505 }, + "date_created": { + "type": 6, + "value": 1695423451505 + }, + "date_last_updated": { + "type": 6, + "value": 1695423451505 + }, + "date_of_expiration": { + "type": 6, + "value": 1695423451505 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -72022,9 +92503,18 @@ "total_amount": 360, "id": "1695423451671", "history_id": "1695423451671", - "date_created": { "type": 6, "value": 1695423451671 }, - "date_last_updated": { "type": 6, "value": 1695423451671 }, - "date_of_expiration": { "type": 6, "value": 1695423451671 }, + "date_created": { + "type": 6, + "value": 1695423451671 + }, + "date_last_updated": { + "type": 6, + "value": 1695423451671 + }, + "date_of_expiration": { + "type": 6, + "value": 1695423451671 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -72094,9 +92584,18 @@ "total_amount": 8160000, "id": "1696380984974", "history_id": "1696380984974", - "date_created": { "type": 6, "value": 1696380984974 }, - "date_last_updated": { "type": 6, "value": 1696380984974 }, - "date_of_expiration": { "type": 6, "value": 1696380984974 }, + "date_created": { + "type": 6, + "value": 1696380984974 + }, + "date_last_updated": { + "type": 6, + "value": 1696380984974 + }, + "date_of_expiration": { + "type": 6, + "value": 1696380984974 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -72166,9 +92665,18 @@ "total_amount": 8160000, "id": "1696380984991", "history_id": "1696380984991", - "date_created": { "type": 6, "value": 1696380984991 }, - "date_last_updated": { "type": 6, "value": 1696380984991 }, - "date_of_expiration": { "type": 6, "value": 1696380984991 }, + "date_created": { + "type": 6, + "value": 1696380984991 + }, + "date_last_updated": { + "type": 6, + "value": 1696380984991 + }, + "date_of_expiration": { + "type": 6, + "value": 1696380984991 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -72238,9 +92746,18 @@ "total_amount": 8160000, "id": "1696380985024", "history_id": "1696380985024", - "date_created": { "type": 6, "value": 1696380985024 }, - "date_last_updated": { "type": 6, "value": 1696380985024 }, - "date_of_expiration": { "type": 6, "value": 1696380985024 }, + "date_created": { + "type": 6, + "value": 1696380985024 + }, + "date_last_updated": { + "type": 6, + "value": 1696380985024 + }, + "date_of_expiration": { + "type": 6, + "value": 1696380985024 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -72310,9 +92827,18 @@ "total_amount": 8160000, "id": "1696380985244", "history_id": "1696380985244", - "date_created": { "type": 6, "value": 1696380985244 }, - "date_last_updated": { "type": 6, "value": 1696380985244 }, - "date_of_expiration": { "type": 6, "value": 1696380985244 }, + "date_created": { + "type": 6, + "value": 1696380985244 + }, + "date_last_updated": { + "type": 6, + "value": 1696380985244 + }, + "date_of_expiration": { + "type": 6, + "value": 1696380985244 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -72382,9 +92908,18 @@ "total_amount": 8160000, "id": "1696384232144", "history_id": "1696384232144", - "date_created": { "type": 6, "value": 1696384232144 }, - "date_last_updated": { "type": 6, "value": 1696384232144 }, - "date_of_expiration": { "type": 6, "value": 1696384232144 }, + "date_created": { + "type": 6, + "value": 1696384232144 + }, + "date_last_updated": { + "type": 6, + "value": 1696384232144 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384232144 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -72454,9 +92989,18 @@ "total_amount": 8160000, "id": "1696384243583", "history_id": "1696384243583", - "date_created": { "type": 6, "value": 1696384243583 }, - "date_last_updated": { "type": 6, "value": 1696384243583 }, - "date_of_expiration": { "type": 6, "value": 1696384243583 }, + "date_created": { + "type": 6, + "value": 1696384243583 + }, + "date_last_updated": { + "type": 6, + "value": 1696384243583 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384243583 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -72526,9 +93070,18 @@ "total_amount": 8160000, "id": "1696384243588", "history_id": "1696384243588", - "date_created": { "type": 6, "value": 1696384243588 }, - "date_last_updated": { "type": 6, "value": 1696384243588 }, - "date_of_expiration": { "type": 6, "value": 1696384243588 }, + "date_created": { + "type": 6, + "value": 1696384243588 + }, + "date_last_updated": { + "type": 6, + "value": 1696384243588 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384243588 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -72598,9 +93151,18 @@ "total_amount": 8000000, "id": "1696406601868", "history_id": "1696406601868", - "date_created": { "type": 6, "value": 1696406601868 }, - "date_last_updated": { "type": 6, "value": 1696406601868 }, - "date_of_expiration": { "type": 6, "value": 1699085001847 }, + "date_created": { + "type": 6, + "value": 1696406601868 + }, + "date_last_updated": { + "type": 6, + "value": 1696406601868 + }, + "date_of_expiration": { + "type": 6, + "value": 1699085001847 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -72616,7 +93178,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history", - "content": { "type": 1, "value": {}, "revision": "lnt037cw03f1oohx7thn5p78", "revision_nr": 1, "created": 1697467110013, "modified": 1697467110013 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt037cw03f1oohx7thn5p78", + "revision_nr": 1, + "created": 1697467110013, + "modified": 1697467110013 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/description", @@ -72633,7 +93202,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038nc03jtoohx0bocg7ga", "revision_nr": 1, "created": 1697467110034, @@ -72642,7 +93215,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038nc03jsoohx587k7dh6", "revision_nr": 1, "created": 1697467110044, "modified": 1697467110044 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038nc03jsoohx587k7dh6", + "revision_nr": 1, + "created": 1697467110044, + "modified": 1697467110044 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609", @@ -72655,7 +93235,10 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid" @@ -72668,7 +93251,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304", - "content": { "type": 1, "value": {}, "revision": "lnt038n103jpoohxctej7npg", "revision_nr": 1, "created": 1697467110063, "modified": 1697467110063 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038n103jpoohxctej7npg", + "revision_nr": 1, + "created": 1697467110063, + "modified": 1697467110063 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/description", @@ -72685,7 +93275,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038oq03jyoohxb9kbbgdg", "revision_nr": 1, "created": 1697467110084, @@ -72694,7 +93288,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038oq03jxoohx7uqtace4", "revision_nr": 1, "created": 1697467110095, "modified": 1697467110095 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038oq03jxoohx7uqtace4", + "revision_nr": 1, + "created": 1697467110095, + "modified": 1697467110095 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609", @@ -72707,7 +93308,10 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid" @@ -72720,7 +93324,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305", - "content": { "type": 1, "value": {}, "revision": "lnt038of03juoohx9zm568od", "revision_nr": 1, "created": 1697467110114, "modified": 1697467110114 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038of03juoohx9zm568od", + "revision_nr": 1, + "created": 1697467110114, + "modified": 1697467110114 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/description", @@ -72737,7 +93348,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038q403k3oohxdgj5dcn7", "revision_nr": 1, "created": 1697467110133, @@ -72746,7 +93361,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038q403k2oohxchutbj79", "revision_nr": 1, "created": 1697467110145, "modified": 1697467110145 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038q403k2oohxchutbj79", + "revision_nr": 1, + "created": 1697467110145, + "modified": 1697467110145 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609", @@ -72759,7 +93381,10 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid" @@ -72772,7 +93397,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt038pu03jzoohxeyv0bhc4", "revision_nr": 1, "created": 1697467110164, "modified": 1697467110164 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038pu03jzoohxeyv0bhc4", + "revision_nr": 1, + "created": 1697467110164, + "modified": 1697467110164 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/description", @@ -72789,7 +93421,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038ri03k8oohxfmwx8rsd", "revision_nr": 1, "created": 1697467110184, @@ -72798,7 +93434,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038ri03k7oohx06f26fh6", "revision_nr": 1, "created": 1697467110194, "modified": 1697467110194 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038ri03k7oohx06f26fh6", + "revision_nr": 1, + "created": 1697467110194, + "modified": 1697467110194 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609", @@ -72811,11 +93454,17 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1695423451406 } + "date_last_updated": { + "type": 6, + "value": 1695423451406 + } }, "revision": "lnt038r803k5oohx46ji4yu9", "revision_nr": 1, @@ -72825,7 +93474,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt038r803k4oohx4uuycsnd", "revision_nr": 1, "created": 1697467110214, "modified": 1697467110214 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038r803k4oohx4uuycsnd", + "revision_nr": 1, + "created": 1697467110214, + "modified": 1697467110214 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/description", @@ -72842,7 +93498,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038sw03kdoohx0uqd8xjt", "revision_nr": 1, "created": 1697467110234, @@ -72851,7 +93511,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038sw03kcoohxfrj7gqja", "revision_nr": 1, "created": 1697467110243, "modified": 1697467110243 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038sw03kcoohxfrj7gqja", + "revision_nr": 1, + "created": 1697467110243, + "modified": 1697467110243 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609", @@ -72864,11 +93531,17 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1695423451526 } + "date_last_updated": { + "type": 6, + "value": 1695423451526 + } }, "revision": "lnt038sm03kaoohxg56lb151", "revision_nr": 1, @@ -72878,7 +93551,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt038sm03k9oohx2yn4buf5", "revision_nr": 1, "created": 1697467110264, "modified": 1697467110264 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038sm03k9oohx2yn4buf5", + "revision_nr": 1, + "created": 1697467110264, + "modified": 1697467110264 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/description", @@ -72895,7 +93575,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038ub03kioohxai5s8qyv", "revision_nr": 1, "created": 1697467110285, @@ -72904,7 +93588,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038ub03khoohxfq9qhh5j", "revision_nr": 1, "created": 1697467110294, "modified": 1697467110294 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038ub03khoohxfq9qhh5j", + "revision_nr": 1, + "created": 1697467110294, + "modified": 1697467110294 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609", @@ -72917,11 +93608,17 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "date_last_updated": { "type": 6, "value": 1695423451684 } + "date_last_updated": { + "type": 6, + "value": 1695423451684 + } }, "revision": "lnt038u003kfoohxhzak3dkp", "revision_nr": 1, @@ -72931,7 +93628,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt038u003keoohxgawuh9t9", "revision_nr": 1, "created": 1697467110313, "modified": 1697467110313 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038u003keoohxgawuh9t9", + "revision_nr": 1, + "created": 1697467110313, + "modified": 1697467110313 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/description", @@ -72948,7 +93652,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038vo03knoohx9sol2i60", "revision_nr": 1, "created": 1697467110333, @@ -72957,7 +93665,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038vo03kmoohxdm977kt9", "revision_nr": 1, "created": 1697467110344, "modified": 1697467110344 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038vo03kmoohxdm977kt9", + "revision_nr": 1, + "created": 1697467110344, + "modified": 1697467110344 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609", @@ -72970,7 +93685,10 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL" }, @@ -72982,7 +93700,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310", - "content": { "type": 1, "value": {}, "revision": "lnt038vd03kjoohxed5fdimh", "revision_nr": 1, "created": 1697467110363, "modified": 1697467110363 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038vd03kjoohxed5fdimh", + "revision_nr": 1, + "created": 1697467110363, + "modified": 1697467110363 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/description", @@ -72999,7 +93724,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038x103ksoohxcqtc6n7e", "revision_nr": 1, "created": 1697467110382, @@ -73008,7 +93737,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038x103kroohx7vzy5ami", "revision_nr": 1, "created": 1697467110394, "modified": 1697467110394 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038x103kroohx7vzy5ami", + "revision_nr": 1, + "created": 1697467110394, + "modified": 1697467110394 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609", @@ -73021,7 +93757,10 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL" }, @@ -73033,7 +93772,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311", - "content": { "type": 1, "value": {}, "revision": "lnt038wr03kooohxh7rpbzqv", "revision_nr": 1, "created": 1697467110414, "modified": 1697467110414 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038wr03kooohxh7rpbzqv", + "revision_nr": 1, + "created": 1697467110414, + "modified": 1697467110414 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/description", @@ -73050,7 +93796,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038yg03kxoohx5gyoavij", "revision_nr": 1, "created": 1697467110434, @@ -73059,7 +93809,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038yg03kwoohxet8sbll8", "revision_nr": 1, "created": 1697467110445, "modified": 1697467110445 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038yg03kwoohxet8sbll8", + "revision_nr": 1, + "created": 1697467110445, + "modified": 1697467110445 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609", @@ -73072,7 +93829,10 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL" }, @@ -73084,7 +93844,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312", - "content": { "type": 1, "value": {}, "revision": "lnt038y603ktoohx7oa60b5q", "revision_nr": 1, "created": 1697467110466, "modified": 1697467110466 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038y603ktoohx7oa60b5q", + "revision_nr": 1, + "created": 1697467110466, + "modified": 1697467110466 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/description", @@ -73101,7 +93868,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, "revision": "lnt038zv03l2oohxba2877rj", "revision_nr": 1, "created": 1697467110485, @@ -73110,7 +93881,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/costs", - "content": { "type": 2, "value": {}, "revision": "lnt038zv03l1oohxbi10g564", "revision_nr": 1, "created": 1697467110495, "modified": 1697467110495 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt038zv03l1oohxbi10g564", + "revision_nr": 1, + "created": 1697467110495, + "modified": 1697467110495 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609", @@ -73123,7 +93901,10 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { "type": 6, "value": 1679262602609 }, + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL" }, @@ -73135,17 +93916,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401", - "content": { "type": 1, "value": {}, "revision": "lnt038zm03kyoohx49c4bl1p", "revision_nr": 1, "created": 1697467110516, "modified": 1697467110516 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038zm03kyoohx49c4bl1p", + "revision_nr": 1, + "created": 1697467110516, + "modified": 1697467110516 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt038n103jooohx8kbw74nm", "revision_nr": 1, "created": 1697467110527, "modified": 1697467110527 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt038n103jooohx8kbw74nm", + "revision_nr": 1, + "created": 1697467110527, + "modified": 1697467110527 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit", "content": { "type": 1, - "value": { "approvedLimit": 3000, "limitUsed": 2100, "analysisRequested": { "type": 6, "value": 1679184639579 }, "lastReview": { "type": 6, "value": 1679260956380 } }, + "value": { + "approvedLimit": 3000, + "limitUsed": 2100, + "analysisRequested": { + "type": 6, + "value": 1679184639579 + }, + "lastReview": { + "type": 6, + "value": 1679260956380 + } + }, "revision": "lnt038n103jnoohxfhp56gyy", "revision_nr": 1, "created": 1697467110537, @@ -73156,7 +93962,11 @@ "path": "ivipcoin-db::__movement_wallet__/125797630999374460/balances/IVIP", "content": { "type": 1, - "value": { "available": "9285619.00000000", "symbol": "IVIP", "value": 990 }, + "value": { + "available": "9285619.00000000", + "symbol": "IVIP", + "value": 990 + }, "revision": "lnt0391l03l4oohx2uge02jc", "revision_nr": 1, "created": 1697467110546, @@ -73165,7 +93975,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/balances", - "content": { "type": 1, "value": {}, "revision": "lnt0391l03l3oohx3ah484f7", "revision_nr": 1, "created": 1697467110556, "modified": 1697467110556 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0391l03l3oohx3ah484f7", + "revision_nr": 1, + "created": 1697467110556, + "modified": 1697467110556 + } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460", @@ -73176,7 +93993,10 @@ "dateValidity": 1679033074324, "totalValue": 3498.3833869132864, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1697425200000 } + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } }, "revision": "lnt037cw03f0oohxap91hd62", "revision_nr": 1, @@ -73188,7 +94008,11 @@ "path": "ivipcoin-db::__movement_wallet__/126091022706906300/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "available": "454.90000000", "value": 90.844 }, + "value": { + "symbol": "BRL", + "available": "454.90000000", + "value": 90.844 + }, "revision": "lnt0392f03l7oohx7kw18d8y", "revision_nr": 1, "created": 1697467110577, @@ -73197,7 +94021,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/balances", - "content": { "type": 1, "value": {}, "revision": "lnt0392f03l6oohxeklxhztm", "revision_nr": 1, "created": 1697467110588, "modified": 1697467110588 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0392f03l6oohxeklxhztm", + "revision_nr": 1, + "created": 1697467110588, + "modified": 1697467110588 + } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492/description", @@ -73246,9 +94077,18 @@ "original_amount": 7, "total_amount": 7, "id": 1679266939492, - "date_created": { "type": 6, "value": 1679266939492 }, - "date_last_updated": { "type": 6, "value": 1679266939492 }, - "date_of_expiration": { "type": 6, "value": 1679266939492 }, + "date_created": { + "type": 6, + "value": 1679266939492 + }, + "date_last_updated": { + "type": 6, + "value": 1679266939492 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266939492 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73309,9 +94149,18 @@ "original_amount": 50, "total_amount": 50, "id": 1679266973884, - "date_created": { "type": 6, "value": 1679266973884 }, - "date_last_updated": { "type": 6, "value": 1679266973884 }, - "date_of_expiration": { "type": 6, "value": 1679266973884 }, + "date_created": { + "type": 6, + "value": 1679266973884 + }, + "date_last_updated": { + "type": 6, + "value": 1679266973884 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266973884 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73372,9 +94221,18 @@ "original_amount": 100, "total_amount": 100, "id": 1679267111761, - "date_created": { "type": 6, "value": 1679267111761 }, - "date_last_updated": { "type": 6, "value": 1679267111761 }, - "date_of_expiration": { "type": 6, "value": 1679267111761 }, + "date_created": { + "type": 6, + "value": 1679267111761 + }, + "date_last_updated": { + "type": 6, + "value": 1679267111761 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267111761 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73435,9 +94293,18 @@ "original_amount": 25, "total_amount": 25, "id": 1679872001608, - "date_created": { "type": 6, "value": 1679872001608 }, - "date_last_updated": { "type": 6, "value": 1679872001608 }, - "date_of_expiration": { "type": 6, "value": 1679872001608 }, + "date_created": { + "type": 6, + "value": 1679872001608 + }, + "date_last_updated": { + "type": 6, + "value": 1679872001608 + }, + "date_of_expiration": { + "type": 6, + "value": 1679872001608 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73498,9 +94365,18 @@ "original_amount": 120, "total_amount": 120, "id": 1684018958586, - "date_created": { "type": 6, "value": 1684018958586 }, - "date_last_updated": { "type": 6, "value": 1684018958586 }, - "date_of_expiration": { "type": 6, "value": 1684018958586 }, + "date_created": { + "type": 6, + "value": 1684018958586 + }, + "date_last_updated": { + "type": 6, + "value": 1684018958586 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018958586 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73561,9 +94437,18 @@ "original_amount": 13, "total_amount": 13, "id": 1684348450676, - "date_created": { "type": 6, "value": 1684348450676 }, - "date_last_updated": { "type": 6, "value": 1684348450676 }, - "date_of_expiration": { "type": 6, "value": 1684348450676 }, + "date_created": { + "type": 6, + "value": 1684348450676 + }, + "date_last_updated": { + "type": 6, + "value": 1684348450676 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348450676 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73624,9 +94509,18 @@ "original_amount": 30, "total_amount": 30, "id": 1684624165029, - "date_created": { "type": 6, "value": 1684624165029 }, - "date_last_updated": { "type": 6, "value": 1684624165029 }, - "date_of_expiration": { "type": 6, "value": 1684624165029 }, + "date_created": { + "type": 6, + "value": 1684624165029 + }, + "date_last_updated": { + "type": 6, + "value": 1684624165029 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624165029 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73687,9 +94581,18 @@ "original_amount": 109.9, "total_amount": 109.9, "id": 1684624981228, - "date_created": { "type": 6, "value": 1684624981228 }, - "date_last_updated": { "type": 6, "value": 1684624981228 }, - "date_of_expiration": { "type": 6, "value": 1684624981228 }, + "date_created": { + "type": 6, + "value": 1684624981228 + }, + "date_last_updated": { + "type": 6, + "value": 1684624981228 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624981228 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73705,13 +94608,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history", - "content": { "type": 1, "value": {}, "revision": "lnt0393003l8oohx3hgad414", "revision_nr": 1, "created": 1697467110846, "modified": 1697467110846 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt0393003l8oohx3hgad414", + "revision_nr": 1, + "created": 1697467110846, + "modified": 1697467110846 + } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300", "content": { "type": 1, - "value": { "dataModificacao": 1677885325302, "dateValidity": 1677929034802, "totalValue": 89.197, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677885325302, + "dateValidity": 1677929034802, + "totalValue": 89.197, + "currencyType": "USD" + }, "revision": "lnt0392e03l5oohx5989fak1", "revision_nr": 1, "created": 1697467110856, @@ -73722,7 +94637,11 @@ "path": "ivipcoin-db::__movement_wallet__/127785137141729800/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt039ag03lyoohx8s467njn", "revision_nr": 1, "created": 1697467110865, @@ -73739,7 +94658,10 @@ "balances": {}, "history": {}, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1695178800000 } + "balancesModificacao": { + "type": 6, + "value": 1695178800000 + } }, "revision": "lnt039ag03lxoohx9eqw38ui", "revision_nr": 1, @@ -73751,7 +94673,14 @@ "path": "ivipcoin-db::__movement_wallet__/127995869380983060", "content": { "type": 1, - "value": { "dataModificacao": 1678268990831, "dateValidity": 1678279790864, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678268990831, + "dateValidity": 1678279790864, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt039az03lzoohx8y9cbbqf", "revision_nr": 1, "created": 1697467110885, @@ -73762,7 +94691,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/balances/IVIP", "content": { "type": 1, - "value": { "available": "15415938.00000000", "symbol": "IVIP", "value": 3434.39 }, + "value": { + "available": "15415938.00000000", + "symbol": "IVIP", + "value": 3434.39 + }, "revision": "lnt039ba03m2oohx4u84by12", "revision_nr": 1, "created": 1697467110896, @@ -73771,7 +94704,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/balances", - "content": { "type": 1, "value": {}, "revision": "lnt039b903m1oohxgaa3hfiz", "revision_nr": 1, "created": 1697467110908, "modified": 1697467110908 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039b903m1oohxgaa3hfiz", + "revision_nr": 1, + "created": 1697467110908, + "modified": 1697467110908 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800/description", @@ -73786,7 +94726,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt039c603m6oohx5qfrhqt9", "revision_nr": 1, "created": 1697467110927, "modified": 1697467110927 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt039c603m6oohx5qfrhqt9", + "revision_nr": 1, + "created": 1697467110927, + "modified": 1697467110927 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800", @@ -73800,15 +94749,30 @@ "total_amount": 2000, "history_id": 1677726769800, "id": 1677726769800, - "date_created": { "type": 6, "value": 1677726769800 }, - "date_last_updated": { "type": 6, "value": 1677754857517 }, - "date_of_expiration": { "type": 6, "value": 1680318769800 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677754857517 }, - "money_release_date": { "type": 6, "value": 1677754857517 }, + "date_created": { + "type": 6, + "value": 1677726769800 + }, + "date_last_updated": { + "type": 6, + "value": 1677754857517 + }, + "date_of_expiration": { + "type": 6, + "value": 1680318769800 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677754857517 + }, + "money_release_date": { + "type": 6, + "value": 1677754857517 + }, "money_release_status": "approved", "wasDebited": true }, @@ -73831,7 +94795,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt039cz03m9oohx5hstbi6a", "revision_nr": 1, "created": 1697467110960, "modified": 1697467110960 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt039cz03m9oohx5hstbi6a", + "revision_nr": 1, + "created": 1697467110960, + "modified": 1697467110960 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996", @@ -73845,15 +94818,30 @@ "total_amount": 3000, "history_id": 1678032850996, "id": 1678032850996, - "date_created": { "type": 6, "value": 1678032850996 }, - "date_last_updated": { "type": 6, "value": 1678041708688 }, - "date_of_expiration": { "type": 6, "value": 1680624850996 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678041708688 }, - "money_release_date": { "type": 6, "value": 1678041708688 }, + "date_created": { + "type": 6, + "value": 1678032850996 + }, + "date_last_updated": { + "type": 6, + "value": 1678041708688 + }, + "date_of_expiration": { + "type": 6, + "value": 1680624850996 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678041708688 + }, + "money_release_date": { + "type": 6, + "value": 1678041708688 + }, "money_release_status": "approved", "wasDebited": true }, @@ -73899,9 +94887,18 @@ "original_amount": 35378057, "total_amount": 35378057, "id": 1678076967863, - "date_created": { "type": 6, "value": 1678076967863 }, - "date_last_updated": { "type": 6, "value": 1678076967863 }, - "date_of_expiration": { "type": 6, "value": 1678076967863 }, + "date_created": { + "type": 6, + "value": 1678076967863 + }, + "date_last_updated": { + "type": 6, + "value": 1678076967863 + }, + "date_of_expiration": { + "type": 6, + "value": 1678076967863 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73931,7 +94928,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, "revision": "lnt039ej03mgoohx7qfd2c2q", "revision_nr": 1, "created": 1697467111013, @@ -73940,11 +94941,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039ej03mfoohxagftgvq2", "revision_nr": 1, "created": 1697467111024, "modified": 1697467111024 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039ej03mfoohxagftgvq2", + "revision_nr": 1, + "created": 1697467111024, + "modified": 1697467111024 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details", - "content": { "type": 1, "value": {}, "revision": "lnt039ej03meoohxdnv3b2sr", "revision_nr": 1, "created": 1697467111033, "modified": 1697467111033 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039ej03meoohxdnv3b2sr", + "revision_nr": 1, + "created": 1697467111033, + "modified": 1697467111033 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425", @@ -73958,9 +94973,18 @@ "total_amount": 2240, "history_id": 1679268249425, "id": 1679268249425, - "date_created": { "type": 6, "value": 1679268249425 }, - "date_last_updated": { "type": 6, "value": 1679268249425 }, - "date_of_expiration": { "type": 6, "value": 1681860249425 }, + "date_created": { + "type": 6, + "value": 1679268249425 + }, + "date_last_updated": { + "type": 6, + "value": 1679268249425 + }, + "date_of_expiration": { + "type": 6, + "value": 1681860249425 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -74009,9 +95033,18 @@ "original_amount": 10651254, "total_amount": 10651254, "id": 1679871677212, - "date_created": { "type": 6, "value": 1679871677212 }, - "date_last_updated": { "type": 6, "value": 1679871677212 }, - "date_of_expiration": { "type": 6, "value": 1679871677212 }, + "date_created": { + "type": 6, + "value": 1679871677212 + }, + "date_last_updated": { + "type": 6, + "value": 1679871677212 + }, + "date_of_expiration": { + "type": 6, + "value": 1679871677212 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74041,7 +95074,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, "revision": "lnt039gj03mnoohxgubt8g0w", "revision_nr": 1, "created": 1697467111084, @@ -74050,11 +95087,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039gj03mmoohx5c5u2b5q", "revision_nr": 1, "created": 1697467111095, "modified": 1697467111095 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039gj03mmoohx5c5u2b5q", + "revision_nr": 1, + "created": 1697467111095, + "modified": 1697467111095 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details", - "content": { "type": 1, "value": {}, "revision": "lnt039gj03mloohx3kvr16s1", "revision_nr": 1, "created": 1697467111105, "modified": 1697467111105 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039gj03mloohx3kvr16s1", + "revision_nr": 1, + "created": 1697467111105, + "modified": 1697467111105 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314", @@ -74068,9 +95119,18 @@ "total_amount": 1120, "history_id": 1679872304314, "id": 1679872304314, - "date_created": { "type": 6, "value": 1679872304314 }, - "date_last_updated": { "type": 6, "value": 1679872304314 }, - "date_of_expiration": { "type": 6, "value": 1682464304314 }, + "date_created": { + "type": 6, + "value": 1679872304314 + }, + "date_last_updated": { + "type": 6, + "value": 1679872304314 + }, + "date_of_expiration": { + "type": 6, + "value": 1682464304314 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -74119,9 +95179,18 @@ "original_amount": 5325627, "total_amount": 5325627, "id": 1679872334513, - "date_created": { "type": 6, "value": 1679872334513 }, - "date_last_updated": { "type": 6, "value": 1679872334513 }, - "date_of_expiration": { "type": 6, "value": 1679872334513 }, + "date_created": { + "type": 6, + "value": 1679872334513 + }, + "date_last_updated": { + "type": 6, + "value": 1679872334513 + }, + "date_of_expiration": { + "type": 6, + "value": 1679872334513 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74149,7 +95218,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt039ih03msoohx3r1g0zfg", "revision_nr": 1, "created": 1697467111157, "modified": 1697467111157 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt039ih03msoohx3r1g0zfg", + "revision_nr": 1, + "created": 1697467111157, + "modified": 1697467111157 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300", @@ -74163,15 +95241,30 @@ "total_amount": 840, "history_id": 1682619398300, "id": 1682619398300, - "date_created": { "type": 6, "value": 1682619398300 }, - "date_last_updated": { "type": 6, "value": 1682619761924 }, - "date_of_expiration": { "type": 6, "value": 1685211398300 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1682619761924 }, - "money_release_date": { "type": 6, "value": 1682619761924 }, + "date_created": { + "type": 6, + "value": 1682619398300 + }, + "date_last_updated": { + "type": 6, + "value": 1682619761924 + }, + "date_of_expiration": { + "type": 6, + "value": 1685211398300 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1682619761924 + }, + "money_release_date": { + "type": 6, + "value": 1682619761924 + }, "money_release_status": "approved", "wasDebited": true }, @@ -74231,9 +95324,18 @@ "total_amount": 560, "id": 1682619932343, "contract_id": "1679268249425", - "date_created": { "type": 6, "value": 1682619932343 }, - "date_last_updated": { "type": 6, "value": 1682619932343 }, - "date_of_expiration": { "type": 6, "value": 1682619932343 }, + "date_created": { + "type": 6, + "value": 1682619932343 + }, + "date_last_updated": { + "type": 6, + "value": 1682619932343 + }, + "date_of_expiration": { + "type": 6, + "value": 1682619932343 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -74297,9 +95399,18 @@ "total_amount": 280, "id": 1682619932484, "contract_id": "1679872304314", - "date_created": { "type": 6, "value": 1682619932484 }, - "date_last_updated": { "type": 6, "value": 1682619932484 }, - "date_of_expiration": { "type": 6, "value": 1682619932484 }, + "date_created": { + "type": 6, + "value": 1682619932484 + }, + "date_last_updated": { + "type": 6, + "value": 1682619932484 + }, + "date_of_expiration": { + "type": 6, + "value": 1682619932484 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -74359,9 +95470,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667547180, - "date_created": { "type": 6, "value": 1685667547180 }, - "date_last_updated": { "type": 6, "value": 1685667547180 }, - "date_of_expiration": { "type": 6, "value": 1748825947180 }, + "date_created": { + "type": 6, + "value": 1685667547180 + }, + "date_last_updated": { + "type": 6, + "value": 1685667547180 + }, + "date_of_expiration": { + "type": 6, + "value": 1748825947180 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74389,7 +95509,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt039m003n4oohxc5gq420x", "revision_nr": 1, "created": 1697467111281, "modified": 1697467111281 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt039m003n4oohxc5gq420x", + "revision_nr": 1, + "created": 1697467111281, + "modified": 1697467111281 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924", @@ -74403,15 +95532,30 @@ "total_amount": 3000000, "history_id": 1688772261924, "id": 1688772261924, - "date_created": { "type": 6, "value": 1688772261924 }, - "date_last_updated": { "type": 6, "value": 1689009849267 }, - "date_of_expiration": { "type": 6, "value": 1688772261924 }, + "date_created": { + "type": 6, + "value": 1688772261924 + }, + "date_last_updated": { + "type": 6, + "value": 1689009849267 + }, + "date_of_expiration": { + "type": 6, + "value": 1688772261924 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1689009849267 }, - "money_release_date": { "type": 6, "value": 1689009849267 }, + "date_approved": { + "type": 6, + "value": 1689009849267 + }, + "money_release_date": { + "type": 6, + "value": 1689009849267 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -74447,7 +95591,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 748170 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 748170 + }, "revision": "lnt039n503naoohx6ax73tk5", "revision_nr": 1, "created": 1697467111324, @@ -74456,7 +95604,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039n503n9oohxc3n6fx0r", "revision_nr": 1, "created": 1697467111334, "modified": 1697467111334 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039n503n9oohxc3n6fx0r", + "revision_nr": 1, + "created": 1697467111334, + "modified": 1697467111334 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details", @@ -74490,17 +95645,32 @@ "total_amount": 24190830, "id": 1692276235458, "history_id": 1692276235458, - "date_created": { "type": 6, "value": 1692276235458 }, - "date_last_updated": { "type": 6, "value": 1692366435287 }, - "date_of_expiration": { "type": 6, "value": 1692276235458 }, + "date_created": { + "type": 6, + "value": 1692276235458 + }, + "date_last_updated": { + "type": 6, + "value": 1692366435287 + }, + "date_of_expiration": { + "type": 6, + "value": 1692276235458 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1692366435287 }, - "money_release_date": { "type": 6, "value": 1692366435287 }, + "date_approved": { + "type": 6, + "value": 1692366435287 + }, + "money_release_date": { + "type": 6, + "value": 1692366435287 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -74512,7 +95682,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history", - "content": { "type": 1, "value": {}, "revision": "lnt039bw03m3oohx5jfq1ubd", "revision_nr": 1, "created": 1697467111363, "modified": 1697467111363 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039bw03m3oohx5jfq1ubd", + "revision_nr": 1, + "created": 1697467111363, + "modified": 1697467111363 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/description", @@ -74529,7 +95706,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, "revision": "lnt039ou03nhoohx7g049oby", "revision_nr": 1, "created": 1697467111385, @@ -74538,7 +95719,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039ou03ngoohx1l0jdd5r", "revision_nr": 1, "created": 1697467111396, "modified": 1697467111396 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039ou03ngoohx1l0jdd5r", + "revision_nr": 1, + "created": 1697467111396, + "modified": 1697467111396 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425", @@ -74551,7 +95739,10 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": { "type": 6, "value": 1679268249425 }, + "date_created": { + "type": 6, + "value": 1679268249425 + }, "history_id": 1679268249425, "currency_id": "BRL", "status": "paid" @@ -74577,7 +95768,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, "revision": "lnt039q003nloohxhsv2f91d", "revision_nr": 1, "created": 1697467111426, @@ -74586,7 +95781,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039q003nkoohx1t4cfjxm", "revision_nr": 1, "created": 1697467111436, "modified": 1697467111436 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039q003nkoohx1t4cfjxm", + "revision_nr": 1, + "created": 1697467111436, + "modified": 1697467111436 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314", @@ -74599,7 +95801,10 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": { "type": 6, "value": 1679872304314 }, + "date_created": { + "type": 6, + "value": 1679872304314 + }, "history_id": 1679872304314, "currency_id": "BRL", "status": "paid" @@ -74612,7 +95817,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304", - "content": { "type": 1, "value": {}, "revision": "lnt039ok03ndoohxc97obd6v", "revision_nr": 1, "created": 1697467111459, "modified": 1697467111459 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039ok03ndoohxc97obd6v", + "revision_nr": 1, + "created": 1697467111459, + "modified": 1697467111459 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/description", @@ -74629,7 +95841,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, "revision": "lnt039rh03nqoohx6lo6cfhs", "revision_nr": 1, "created": 1697467111479, @@ -74638,7 +95854,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039rh03npoohx1zfs1ggj", "revision_nr": 1, "created": 1697467111489, "modified": 1697467111489 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039rh03npoohx1zfs1ggj", + "revision_nr": 1, + "created": 1697467111489, + "modified": 1697467111489 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425", @@ -74651,7 +95874,10 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": { "type": 6, "value": 1679268249425 }, + "date_created": { + "type": 6, + "value": 1679268249425 + }, "history_id": 1679268249425, "currency_id": "BRL" }, @@ -74676,7 +95902,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, "revision": "lnt039sm03nuoohx19gn9ork", "revision_nr": 1, "created": 1697467111520, @@ -74685,7 +95915,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039sm03ntoohx9oli1eqq", "revision_nr": 1, "created": 1697467111531, "modified": 1697467111531 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039sm03ntoohx9oli1eqq", + "revision_nr": 1, + "created": 1697467111531, + "modified": 1697467111531 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314", @@ -74698,7 +95935,10 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": { "type": 6, "value": 1679872304314 }, + "date_created": { + "type": 6, + "value": 1679872304314 + }, "history_id": 1679872304314, "currency_id": "BRL" }, @@ -74710,7 +95950,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305", - "content": { "type": 1, "value": {}, "revision": "lnt039r703nmoohxan28dix6", "revision_nr": 1, "created": 1697467111550, "modified": 1697467111550 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039r703nmoohxan28dix6", + "revision_nr": 1, + "created": 1697467111550, + "modified": 1697467111550 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/description", @@ -74727,7 +95974,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, "revision": "lnt039u003nzoohx2n3000gc", "revision_nr": 1, "created": 1697467111571, @@ -74736,7 +95987,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039u003nyoohxa6yq8zmj", "revision_nr": 1, "created": 1697467111581, "modified": 1697467111581 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039u003nyoohxa6yq8zmj", + "revision_nr": 1, + "created": 1697467111581, + "modified": 1697467111581 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425", @@ -74749,7 +96007,10 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": { "type": 6, "value": 1679268249425 }, + "date_created": { + "type": 6, + "value": 1679268249425 + }, "history_id": 1679268249425, "currency_id": "BRL" }, @@ -74774,7 +96035,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, "revision": "lnt039v703o3oohxgoizeke0", "revision_nr": 1, "created": 1697467111613, @@ -74783,7 +96048,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039v703o2oohx1bkua6jg", "revision_nr": 1, "created": 1697467111623, "modified": 1697467111623 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039v703o2oohx1bkua6jg", + "revision_nr": 1, + "created": 1697467111623, + "modified": 1697467111623 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314", @@ -74796,7 +96068,10 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": { "type": 6, "value": 1679872304314 }, + "date_created": { + "type": 6, + "value": 1679872304314 + }, "history_id": 1679872304314, "currency_id": "BRL" }, @@ -74808,7 +96083,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt039tq03nvoohx2na8h0a1", "revision_nr": 1, "created": 1697467111644, "modified": 1697467111644 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039tq03nvoohx2na8h0a1", + "revision_nr": 1, + "created": 1697467111644, + "modified": 1697467111644 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/description", @@ -74825,7 +96107,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 240 + }, "revision": "lnt039wn03o8oohxaksv7hh5", "revision_nr": 1, "created": 1697467111665, @@ -74834,7 +96120,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039wn03o7oohxc3vg47su", "revision_nr": 1, "created": 1697467111675, "modified": 1697467111675 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039wn03o7oohxc3vg47su", + "revision_nr": 1, + "created": 1697467111675, + "modified": 1697467111675 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425", @@ -74847,7 +96140,10 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": { "type": 6, "value": 1679268249425 }, + "date_created": { + "type": 6, + "value": 1679268249425 + }, "history_id": 1679268249425, "currency_id": "BRL" }, @@ -74872,7 +96168,11 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 4 parcela(s) 12.00%", + "amount": 120 + }, "revision": "lnt039xt03ocoohx84xrhjhj", "revision_nr": 1, "created": 1697467111707, @@ -74881,7 +96181,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314/costs", - "content": { "type": 2, "value": {}, "revision": "lnt039xt03oboohx48va0q5h", "revision_nr": 1, "created": 1697467111717, "modified": 1697467111717 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt039xt03oboohx48va0q5h", + "revision_nr": 1, + "created": 1697467111717, + "modified": 1697467111717 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314", @@ -74894,7 +96201,10 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": { "type": 6, "value": 1679872304314 }, + "date_created": { + "type": 6, + "value": 1679872304314 + }, "history_id": 1679872304314, "currency_id": "BRL" }, @@ -74906,17 +96216,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt039wc03o4oohxe9vqewkr", "revision_nr": 1, "created": 1697467111737, "modified": 1697467111737 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039wc03o4oohxe9vqewkr", + "revision_nr": 1, + "created": 1697467111737, + "modified": 1697467111737 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt039oj03ncoohx9cokad76", "revision_nr": 1, "created": 1697467111747, "modified": 1697467111747 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039oj03ncoohx9cokad76", + "revision_nr": 1, + "created": 1697467111747, + "modified": 1697467111747 + } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit", "content": { "type": 1, - "value": { "approvedLimit": 10000, "limitUsed": 2250, "analysisRequested": { "type": 6, "value": 1679267023911 }, "lastReview": { "type": 6, "value": 1679267356871 } }, + "value": { + "approvedLimit": 10000, + "limitUsed": 2250, + "analysisRequested": { + "type": 6, + "value": 1679267023911 + }, + "lastReview": { + "type": 6, + "value": 1679267356871 + } + }, "revision": "lnt039oj03nboohx7jvl5e61", "revision_nr": 1, "created": 1697467111758, @@ -74927,7 +96262,16 @@ "path": "ivipcoin-db::__movement_wallet__/128701144173823280", "content": { "type": 1, - "value": { "dataModificacao": 1677412042762, "dateValidity": 1678206220392, "totalValue": 6834.92, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1695870000000 } }, + "value": { + "dataModificacao": 1677412042762, + "dateValidity": 1678206220392, + "totalValue": 6834.92, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1695870000000 + } + }, "revision": "lnt039b903m0oohxdpedbl17", "revision_nr": 1, "created": 1697467111768, @@ -74947,7 +96291,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03a0303ohoohx17z47e51", "revision_nr": 1, "created": 1697467111790, "modified": 1697467111790 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03a0303ohoohx17z47e51", + "revision_nr": 1, + "created": 1697467111790, + "modified": 1697467111790 + } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531", @@ -74961,9 +96314,18 @@ "total_amount": 500, "history_id": 1684145604531, "id": 1684145604531, - "date_created": { "type": 6, "value": 1684145604531 }, - "date_last_updated": { "type": 6, "value": 1684145604531 }, - "date_of_expiration": { "type": 6, "value": 1686737604531 }, + "date_created": { + "type": 6, + "value": 1684145604531 + }, + "date_last_updated": { + "type": 6, + "value": 1684145604531 + }, + "date_of_expiration": { + "type": 6, + "value": 1686737604531 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -74977,13 +96339,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history", - "content": { "type": 1, "value": {}, "revision": "lnt039zs03oeoohx5hpm8cyx", "revision_nr": 1, "created": 1697467111810, "modified": 1697467111810 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt039zs03oeoohx5hpm8cyx", + "revision_nr": 1, + "created": 1697467111810, + "modified": 1697467111810 + } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03a0y03oioohxbfel47gb", "revision_nr": 1, "created": 1697467111820, @@ -74994,7 +96367,13 @@ "path": "ivipcoin-db::__movement_wallet__/130251464382378670", "content": { "type": 1, - "value": { "dataModificacao": 1684145436275, "dateValidity": 1684145436275, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684145436275, + "dateValidity": 1684145436275, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt039zs03odoohx9fed5hex", "revision_nr": 1, "created": 1697467111831, @@ -75005,7 +96384,11 @@ "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances/BRL", "content": { "type": 1, - "value": { "symbol": "BRL", "value": 0, "available": "0.00000000" }, + "value": { + "symbol": "BRL", + "value": 0, + "available": "0.00000000" + }, "revision": "lnt03a1j03oloohxab9shvup", "revision_nr": 1, "created": 1697467111842, @@ -75016,7 +96399,11 @@ "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances/IVIP", "content": { "type": 1, - "value": { "symbol": "IVIP", "available": "1069072.00000000", "value": 37.92 }, + "value": { + "symbol": "IVIP", + "available": "1069072.00000000", + "value": 37.92 + }, "revision": "lnt03a1u03omoohx3p7d9cx7", "revision_nr": 1, "created": 1697467111851, @@ -75025,7 +96412,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances", - "content": { "type": 1, "value": {}, "revision": "lnt03a1j03okoohx2jtcenuo", "revision_nr": 1, "created": 1697467111861, "modified": 1697467111861 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03a1j03okoohx2jtcenuo", + "revision_nr": 1, + "created": 1697467111861, + "modified": 1697467111861 + } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002/description", @@ -75040,7 +96434,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03a2n03oqoohx1eslflgt", "revision_nr": 1, "created": 1697467111881, "modified": 1697467111881 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03a2n03oqoohx1eslflgt", + "revision_nr": 1, + "created": 1697467111881, + "modified": 1697467111881 + } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002", @@ -75054,14 +96457,26 @@ "total_amount": 20, "history_id": 1677984009002, "id": 1677984009002, - "date_created": { "type": 6, "value": 1677984009002 }, - "date_last_updated": { "type": 6, "value": 1678452148101 }, - "date_of_expiration": { "type": 6, "value": 1680576009002 }, + "date_created": { + "type": 6, + "value": 1677984009002 + }, + "date_last_updated": { + "type": 6, + "value": 1678452148101 + }, + "date_of_expiration": { + "type": 6, + "value": 1680576009002 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": { "type": 6, "value": 1678452148101 }, + "money_release_date": { + "type": 6, + "value": 1678452148101 + }, "money_release_status": "rejected" }, "revision": "lnt03a2d03oooohx1n2ibaqh", @@ -75083,7 +96498,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03a3l03otoohxdzyuaar9", "revision_nr": 1, "created": 1697467111915, "modified": 1697467111915 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03a3l03otoohxdzyuaar9", + "revision_nr": 1, + "created": 1697467111915, + "modified": 1697467111915 + } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082", @@ -75097,9 +96521,18 @@ "total_amount": 200, "history_id": 1678119185082, "id": 1678119185082, - "date_created": { "type": 6, "value": 1678119185082 }, - "date_last_updated": { "type": 6, "value": 1678119185082 }, - "date_of_expiration": { "type": 6, "value": 1680711185082 }, + "date_created": { + "type": 6, + "value": 1678119185082 + }, + "date_last_updated": { + "type": 6, + "value": 1678119185082 + }, + "date_of_expiration": { + "type": 6, + "value": 1680711185082 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -75124,7 +96557,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03a4g03owoohxhtvwgepl", "revision_nr": 1, "created": 1697467111947, "modified": 1697467111947 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03a4g03owoohxhtvwgepl", + "revision_nr": 1, + "created": 1697467111947, + "modified": 1697467111947 + } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612", @@ -75138,15 +96580,30 @@ "total_amount": 200, "history_id": 1678119441612, "id": 1678119441612, - "date_created": { "type": 6, "value": 1678119441612 }, - "date_last_updated": { "type": 6, "value": 1678372266897 }, - "date_of_expiration": { "type": 6, "value": 1680711441612 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1678372266897 }, - "money_release_date": { "type": 6, "value": 1678372266897 }, + "date_created": { + "type": 6, + "value": 1678119441612 + }, + "date_last_updated": { + "type": 6, + "value": 1678372266897 + }, + "date_of_expiration": { + "type": 6, + "value": 1680711441612 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678372266897 + }, + "money_release_date": { + "type": 6, + "value": 1678372266897 + }, "money_release_status": "approved", "wasDebited": true }, @@ -75192,9 +96649,18 @@ "original_amount": 1069072, "total_amount": 1069072, "id": 1679940518294, - "date_created": { "type": 6, "value": 1679940518294 }, - "date_last_updated": { "type": 6, "value": 1679940518294 }, - "date_of_expiration": { "type": 6, "value": 1679940518294 }, + "date_created": { + "type": 6, + "value": 1679940518294 + }, + "date_last_updated": { + "type": 6, + "value": 1679940518294 + }, + "date_of_expiration": { + "type": 6, + "value": 1679940518294 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -75211,13 +96677,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history", - "content": { "type": 1, "value": {}, "revision": "lnt03a2d03onoohxg5s60cxq", "revision_nr": 1, "created": 1697467111989, "modified": 1697467111989 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03a2d03onoohxg5s60cxq", + "revision_nr": 1, + "created": 1697467111989, + "modified": 1697467111989 + } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380", "content": { "type": 1, - "value": { "dataModificacao": 1677983983862, "dateValidity": 1678983329949, "totalValue": 37.76, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677983983862, + "dateValidity": 1678983329949, + "totalValue": 37.76, + "currencyType": "USD" + }, "revision": "lnt03a1j03ojoohxfg73hlsx", "revision_nr": 1, "created": 1697467112000, @@ -75228,7 +96706,11 @@ "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances/IVIP", "content": { "type": 1, - "value": { "available": "30608.00000000", "symbol": "IVIP", "value": 3.42 }, + "value": { + "available": "30608.00000000", + "symbol": "IVIP", + "value": 3.42 + }, "revision": "lnt03a6803p1oohx7t3cdnd8", "revision_nr": 1, "created": 1697467112011, @@ -75239,7 +96721,11 @@ "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances/BRL", "content": { "type": 1, - "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, + "value": { + "available": "0.00000000", + "symbol": "BRL", + "value": 0 + }, "revision": "lnt03a6j03p2oohxe0tr1wil", "revision_nr": 1, "created": 1697467112023, @@ -75248,13 +96734,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances", - "content": { "type": 1, "value": {}, "revision": "lnt03a6803p0oohxffkk3gjf", "revision_nr": 1, "created": 1697467112034, "modified": 1697467112034 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03a6803p0oohxffkk3gjf", + "revision_nr": 1, + "created": 1697467112034, + "modified": 1697467112034 + } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694034023188 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694034023188 + } + }, "revision": "lnt03a7603p5oohxaqrebes4", "revision_nr": 1, "created": 1697467112044, @@ -75316,8 +96815,14 @@ "total_amount": 20, "id": 1691442023188, "history_id": 1691442023188, - "date_created": { "type": 6, "value": 1691442023188 }, - "date_last_updated": { "type": 6, "value": 1691442023188 }, + "date_created": { + "type": 6, + "value": 1691442023188 + }, + "date_last_updated": { + "type": 6, + "value": 1691442023188 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -75335,7 +96840,13 @@ "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1694125856606 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1694125856606 + } + }, "revision": "lnt03a8n03paoohxcwyhfaos", "revision_nr": 1, "created": 1697467112097, @@ -75397,16 +96908,28 @@ "total_amount": 20, "id": 1691533856606, "history_id": 1691533856606, - "date_created": { "type": 6, "value": 1691533856606 }, - "date_last_updated": { "type": 6, "value": 1691537051872 }, + "date_created": { + "type": 6, + "value": 1691533856606 + }, + "date_last_updated": { + "type": 6, + "value": 1691537051872 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1691537051872 }, - "money_release_date": { "type": 6, "value": 1691537051872 }, + "date_approved": { + "type": 6, + "value": 1691537051872 + }, + "money_release_date": { + "type": 6, + "value": 1691537051872 + }, "money_release_status": "approved", "wasDebited": true }, @@ -75460,9 +96983,18 @@ "total_amount": 30608, "id": 1691597759364, "history_id": 1691597759364, - "date_created": { "type": 6, "value": 1691597759364 }, - "date_last_updated": { "type": 6, "value": 1691597759364 }, - "date_of_expiration": { "type": 6, "value": 1691597759364 }, + "date_created": { + "type": 6, + "value": 1691597759364 + }, + "date_last_updated": { + "type": 6, + "value": 1691597759364 + }, + "date_of_expiration": { + "type": 6, + "value": 1691597759364 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -75479,13 +97011,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history", - "content": { "type": 1, "value": {}, "revision": "lnt03a7603p3oohxb3o8298f", "revision_nr": 1, "created": 1697467112180, "modified": 1697467112180 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03a7603p3oohxb3o8298f", + "revision_nr": 1, + "created": 1697467112180, + "modified": 1697467112180 + } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03ab803phoohxgn5ofxr9", "revision_nr": 1, "created": 1697467112192, @@ -75496,7 +97039,15 @@ "path": "ivipcoin-db::__movement_wallet__/133675054149021250", "content": { "type": 1, - "value": { "dataModificacao": 1691441898494, "dateValidity": 1691441898538, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1691722800000 } }, + "value": { + "dataModificacao": 1691441898494, + "dateValidity": 1691441898538, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1691722800000 + } + }, "revision": "lnt03a6803ozoohxfj432kuw", "revision_nr": 1, "created": 1697467112203, @@ -75516,7 +97067,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03ac503pmoohx2w7ugl7u", "revision_nr": 1, "created": 1697467112223, "modified": 1697467112223 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03ac503pmoohx2w7ugl7u", + "revision_nr": 1, + "created": 1697467112223, + "modified": 1697467112223 + } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019", @@ -75530,9 +97090,18 @@ "total_amount": 20, "history_id": 1689202732019, "id": 1689202732019, - "date_created": { "type": 6, "value": 1689202732019 }, - "date_last_updated": { "type": 6, "value": 1689202732019 }, - "date_of_expiration": { "type": 6, "value": 1691794732019 }, + "date_created": { + "type": 6, + "value": 1689202732019 + }, + "date_last_updated": { + "type": 6, + "value": 1689202732019 + }, + "date_of_expiration": { + "type": 6, + "value": 1691794732019 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -75557,7 +97126,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03ad003ppoohx2c1ae867", "revision_nr": 1, "created": 1697467112256, "modified": 1697467112256 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03ad003ppoohx2c1ae867", + "revision_nr": 1, + "created": 1697467112256, + "modified": 1697467112256 + } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552", @@ -75571,9 +97149,18 @@ "total_amount": 20, "history_id": 1689455294552, "id": 1689455294552, - "date_created": { "type": 6, "value": 1689455294552 }, - "date_last_updated": { "type": 6, "value": 1689455294552 }, - "date_of_expiration": { "type": 6, "value": 1692047294552 }, + "date_created": { + "type": 6, + "value": 1689455294552 + }, + "date_last_updated": { + "type": 6, + "value": 1689455294552 + }, + "date_of_expiration": { + "type": 6, + "value": 1692047294552 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -75598,7 +97185,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03adx03psoohx069d05av", "revision_nr": 1, "created": 1697467112288, "modified": 1697467112288 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03adx03psoohx069d05av", + "revision_nr": 1, + "created": 1697467112288, + "modified": 1697467112288 + } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352", @@ -75612,9 +97208,18 @@ "total_amount": 20, "history_id": 1689455325352, "id": 1689455325352, - "date_created": { "type": 6, "value": 1689455325352 }, - "date_last_updated": { "type": 6, "value": 1689455325352 }, - "date_of_expiration": { "type": 6, "value": 1692047325352 }, + "date_created": { + "type": 6, + "value": 1689455325352 + }, + "date_last_updated": { + "type": 6, + "value": 1689455325352 + }, + "date_of_expiration": { + "type": 6, + "value": 1692047325352 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -75628,13 +97233,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history", - "content": { "type": 1, "value": {}, "revision": "lnt03abv03pjoohx8prlhia4", "revision_nr": 1, "created": 1697467112307, "modified": 1697467112307 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03abv03pjoohx8prlhia4", + "revision_nr": 1, + "created": 1697467112307, + "modified": 1697467112307 + } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03aer03ptoohx75z2hns9", "revision_nr": 1, "created": 1697467112318, @@ -75645,7 +97261,13 @@ "path": "ivipcoin-db::__movement_wallet__/133736879099726860", "content": { "type": 1, - "value": { "dataModificacao": 1689199381511, "dateValidity": 1689199381511, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1689199381511, + "dateValidity": 1689199381511, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03abv03pioohx3epgcmib", "revision_nr": 1, "created": 1697467112329, @@ -75665,7 +97287,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03afo03pyoohxd0wv327l", "revision_nr": 1, "created": 1697467112351, "modified": 1697467112351 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03afo03pyoohxd0wv327l", + "revision_nr": 1, + "created": 1697467112351, + "modified": 1697467112351 + } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876", @@ -75679,9 +97310,18 @@ "total_amount": 1700, "history_id": 1684183743876, "id": 1684183743876, - "date_created": { "type": 6, "value": 1684183743876 }, - "date_last_updated": { "type": 6, "value": 1684183743876 }, - "date_of_expiration": { "type": 6, "value": 1686775743876 }, + "date_created": { + "type": 6, + "value": 1684183743876 + }, + "date_last_updated": { + "type": 6, + "value": 1684183743876 + }, + "date_of_expiration": { + "type": 6, + "value": 1686775743876 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -75695,13 +97335,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history", - "content": { "type": 1, "value": {}, "revision": "lnt03afd03pvoohx74087m53", "revision_nr": 1, "created": 1697467112372, "modified": 1697467112372 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03afd03pvoohx74087m53", + "revision_nr": 1, + "created": 1697467112372, + "modified": 1697467112372 + } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03agk03pzoohx5y4ubwol", "revision_nr": 1, "created": 1697467112382, @@ -75712,7 +97363,13 @@ "path": "ivipcoin-db::__movement_wallet__/134682120797451790", "content": { "type": 1, - "value": { "dataModificacao": 1684171343507, "dateValidity": 1684171343507, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1684171343507, + "dateValidity": 1684171343507, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03afd03puoohx3z171n7d", "revision_nr": 1, "created": 1697467112393, @@ -75723,7 +97380,14 @@ "path": "ivipcoin-db::__movement_wallet__/137445448878708240", "content": { "type": 1, - "value": { "dataModificacao": 1678373632630, "dateValidity": 1678388032664, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678373632630, + "dateValidity": 1678388032664, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03ah503q0oohxe53c4jrv", "revision_nr": 1, "created": 1697467112404, @@ -75743,7 +97407,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03ahq03q5oohx68xhde85", "revision_nr": 1, "created": 1697467112424, "modified": 1697467112424 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03ahq03q5oohx68xhde85", + "revision_nr": 1, + "created": 1697467112424, + "modified": 1697467112424 + } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356", @@ -75757,9 +97430,18 @@ "total_amount": 20, "history_id": 1689208709356, "id": 1689208709356, - "date_created": { "type": 6, "value": 1689208709356 }, - "date_last_updated": { "type": 6, "value": 1689208709356 }, - "date_of_expiration": { "type": 6, "value": 1691800709356 }, + "date_created": { + "type": 6, + "value": 1689208709356 + }, + "date_last_updated": { + "type": 6, + "value": 1689208709356 + }, + "date_of_expiration": { + "type": 6, + "value": 1691800709356 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -75773,13 +97455,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history", - "content": { "type": 1, "value": {}, "revision": "lnt03ahg03q2oohx9tpg44e2", "revision_nr": 1, "created": 1697467112446, "modified": 1697467112446 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03ahg03q2oohx9tpg44e2", + "revision_nr": 1, + "created": 1697467112446, + "modified": 1697467112446 + } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03aim03q6oohxefjz69y7", "revision_nr": 1, "created": 1697467112457, @@ -75790,7 +97483,13 @@ "path": "ivipcoin-db::__movement_wallet__/138488500273925570", "content": { "type": 1, - "value": { "dataModificacao": 1689183505496, "dateValidity": 1689183505496, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1689183505496, + "dateValidity": 1689183505496, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03ahg03q1oohx1xvn4una", "revision_nr": 1, "created": 1697467112467, @@ -75801,7 +97500,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/balances/IVIP", "content": { "type": 1, - "value": { "available": "919038.84000000", "symbol": "IVIP", "value": 654.99 }, + "value": { + "available": "919038.84000000", + "symbol": "IVIP", + "value": 654.99 + }, "revision": "lnt03aj803q9oohx5od8079g", "revision_nr": 1, "created": 1697467112477, @@ -75810,7 +97513,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/balances", - "content": { "type": 1, "value": {}, "revision": "lnt03aj803q8oohxe4kag45i", "revision_nr": 1, "created": 1697467112488, "modified": 1697467112488 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03aj803q8oohxe4kag45i", + "revision_nr": 1, + "created": 1697467112488, + "modified": 1697467112488 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011/description", @@ -75825,7 +97535,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03ak203qdoohx86zb09xn", "revision_nr": 1, "created": 1697467112510, "modified": 1697467112510 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03ak203qdoohx86zb09xn", + "revision_nr": 1, + "created": 1697467112510, + "modified": 1697467112510 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011", @@ -75839,15 +97558,30 @@ "total_amount": 1000, "history_id": 1677847333011, "id": 1677847333011, - "date_created": { "type": 6, "value": 1677847333011 }, - "date_last_updated": { "type": 6, "value": 1677860564643 }, - "date_of_expiration": { "type": 6, "value": 1680439333011 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1677860564643 }, - "money_release_date": { "type": 6, "value": 1677860564643 }, + "date_created": { + "type": 6, + "value": 1677847333011 + }, + "date_last_updated": { + "type": 6, + "value": 1677860564643 + }, + "date_of_expiration": { + "type": 6, + "value": 1680439333011 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677860564643 + }, + "money_release_date": { + "type": 6, + "value": 1677860564643 + }, "money_release_status": "approved", "wasDebited": true }, @@ -75893,9 +97627,18 @@ "original_amount": 7131208, "total_amount": 7131208, "id": 1678180078100, - "date_created": { "type": 6, "value": 1678180078100 }, - "date_last_updated": { "type": 6, "value": 1678180078100 }, - "date_of_expiration": { "type": 6, "value": 1678180078100 }, + "date_created": { + "type": 6, + "value": 1678180078100 + }, + "date_last_updated": { + "type": 6, + "value": 1678180078100 + }, + "date_of_expiration": { + "type": 6, + "value": 1678180078100 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -75957,9 +97700,18 @@ "original_amount": 2000, "total_amount": 2000, "id": 1678198835623, - "date_created": { "type": 6, "value": 1678198835623 }, - "date_last_updated": { "type": 6, "value": 1678198835623 }, - "date_of_expiration": { "type": 6, "value": 1678198835623 }, + "date_created": { + "type": 6, + "value": 1678198835623 + }, + "date_last_updated": { + "type": 6, + "value": 1678198835623 + }, + "date_of_expiration": { + "type": 6, + "value": 1678198835623 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76020,9 +97772,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1678228246387, - "date_created": { "type": 6, "value": 1678228246387 }, - "date_last_updated": { "type": 6, "value": 1678228246387 }, - "date_of_expiration": { "type": 6, "value": 1678228246387 }, + "date_created": { + "type": 6, + "value": 1678228246387 + }, + "date_last_updated": { + "type": 6, + "value": 1678228246387 + }, + "date_of_expiration": { + "type": 6, + "value": 1678228246387 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76083,9 +97844,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1679266874503, - "date_created": { "type": 6, "value": 1679266874503 }, - "date_last_updated": { "type": 6, "value": 1679266874503 }, - "date_of_expiration": { "type": 6, "value": 1679266874503 }, + "date_created": { + "type": 6, + "value": 1679266874503 + }, + "date_last_updated": { + "type": 6, + "value": 1679266874503 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266874503 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76135,9 +97905,18 @@ "original_amount": 23286153, "total_amount": 23286153, "id": 1679267008673, - "date_created": { "type": 6, "value": 1679267008673 }, - "date_last_updated": { "type": 6, "value": 1679267008673 }, - "date_of_expiration": { "type": 6, "value": 1679267008673 }, + "date_created": { + "type": 6, + "value": 1679267008673 + }, + "date_last_updated": { + "type": 6, + "value": 1679267008673 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267008673 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76167,7 +97946,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03aot03qvoohxg3p38upx", "revision_nr": 1, "created": 1697467112680, @@ -76176,11 +97959,25 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03aot03quoohxemfj8kyl", "revision_nr": 1, "created": 1697467112690, "modified": 1697467112690 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03aot03quoohxemfj8kyl", + "revision_nr": 1, + "created": 1697467112690, + "modified": 1697467112690 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details", - "content": { "type": 1, "value": {}, "revision": "lnt03aot03qtoohx3mzldrln", "revision_nr": 1, "created": 1697467112700, "modified": 1697467112700 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03aot03qtoohx3mzldrln", + "revision_nr": 1, + "created": 1697467112700, + "modified": 1697467112700 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547", @@ -76194,9 +97991,18 @@ "total_amount": 12400, "history_id": 1684019947547, "id": 1684019947547, - "date_created": { "type": 6, "value": 1684019947547 }, - "date_last_updated": { "type": 6, "value": 1684019947547 }, - "date_of_expiration": { "type": 6, "value": 1686611947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, + "date_last_updated": { + "type": 6, + "value": 1684019947547 + }, + "date_of_expiration": { + "type": 6, + "value": 1686611947547 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -76256,9 +98062,18 @@ "original_amount": 1040, "total_amount": 1040, "id": 1684348689379, - "date_created": { "type": 6, "value": 1684348689379 }, - "date_last_updated": { "type": 6, "value": 1684348689379 }, - "date_of_expiration": { "type": 6, "value": 1684348689379 }, + "date_created": { + "type": 6, + "value": 1684348689379 + }, + "date_last_updated": { + "type": 6, + "value": 1684348689379 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348689379 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76308,9 +98123,18 @@ "original_amount": 53772878, "total_amount": 53772878, "id": 1684624162871, - "date_created": { "type": 6, "value": 1684624162871 }, - "date_last_updated": { "type": 6, "value": 1684624162871 }, - "date_of_expiration": { "type": 6, "value": 1684624162871 }, + "date_created": { + "type": 6, + "value": 1684624162871 + }, + "date_last_updated": { + "type": 6, + "value": 1684624162871 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624162871 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76372,9 +98196,18 @@ "original_amount": 258.1, "total_amount": 258.1, "id": 1684624267520, - "date_created": { "type": 6, "value": 1684624267520 }, - "date_last_updated": { "type": 6, "value": 1684624267520 }, - "date_of_expiration": { "type": 6, "value": 1684624267520 }, + "date_created": { + "type": 6, + "value": 1684624267520 + }, + "date_last_updated": { + "type": 6, + "value": 1684624267520 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624267520 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76424,9 +98257,18 @@ "original_amount": 1257135, "total_amount": 1257135, "id": 1684624311448, - "date_created": { "type": 6, "value": 1684624311448 }, - "date_last_updated": { "type": 6, "value": 1684624311448 }, - "date_of_expiration": { "type": 6, "value": 1684624311448 }, + "date_created": { + "type": 6, + "value": 1684624311448 + }, + "date_last_updated": { + "type": 6, + "value": 1684624311448 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624311448 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76488,9 +98330,18 @@ "original_amount": 12.600000000000001, "total_amount": 12.600000000000001, "id": 1684624493050, - "date_created": { "type": 6, "value": 1684624493050 }, - "date_last_updated": { "type": 6, "value": 1684624493050 }, - "date_of_expiration": { "type": 6, "value": 1684624493050 }, + "date_created": { + "type": 6, + "value": 1684624493050 + }, + "date_last_updated": { + "type": 6, + "value": 1684624493050 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624493050 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76551,9 +98402,18 @@ "original_amount": 13, "total_amount": 13, "id": 1684627629023, - "date_created": { "type": 6, "value": 1684627629023 }, - "date_last_updated": { "type": 6, "value": 1684627629023 }, - "date_of_expiration": { "type": 6, "value": 1684627629023 }, + "date_created": { + "type": 6, + "value": 1684627629023 + }, + "date_last_updated": { + "type": 6, + "value": 1684627629023 + }, + "date_of_expiration": { + "type": 6, + "value": 1684627629023 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76614,9 +98474,18 @@ "original_amount": 3.2, "total_amount": 3.2, "id": 1684692136128, - "date_created": { "type": 6, "value": 1684692136128 }, - "date_last_updated": { "type": 6, "value": 1684692136128 }, - "date_of_expiration": { "type": 6, "value": 1684692136128 }, + "date_created": { + "type": 6, + "value": 1684692136128 + }, + "date_last_updated": { + "type": 6, + "value": 1684692136128 + }, + "date_of_expiration": { + "type": 6, + "value": 1684692136128 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76666,9 +98535,18 @@ "original_amount": 139785, "total_amount": 139785, "id": 1684710449691, - "date_created": { "type": 6, "value": 1684710449691 }, - "date_last_updated": { "type": 6, "value": 1684710449691 }, - "date_of_expiration": { "type": 6, "value": 1684710449691 }, + "date_created": { + "type": 6, + "value": 1684710449691 + }, + "date_last_updated": { + "type": 6, + "value": 1684710449691 + }, + "date_of_expiration": { + "type": 6, + "value": 1684710449691 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76696,7 +98574,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03awm03rjoohxgd2q2ebr", "revision_nr": 1, "created": 1697467112961, "modified": 1697467112961 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03awm03rjoohxgd2q2ebr", + "revision_nr": 1, + "created": 1697467112961, + "modified": 1697467112961 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946", @@ -76710,9 +98597,18 @@ "total_amount": 30550000, "history_id": 1689025596946, "id": 1689025596946, - "date_created": { "type": 6, "value": 1689025596946 }, - "date_last_updated": { "type": 6, "value": 1689025596946 }, - "date_of_expiration": { "type": 6, "value": 1689025596946 }, + "date_created": { + "type": 6, + "value": 1689025596946 + }, + "date_last_updated": { + "type": 6, + "value": 1689025596946 + }, + "date_of_expiration": { + "type": 6, + "value": 1689025596946 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", @@ -76737,7 +98633,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03axl03rmoohxdjig3zz7", "revision_nr": 1, "created": 1697467112997, "modified": 1697467112997 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03axl03rmoohxdjig3zz7", + "revision_nr": 1, + "created": 1697467112997, + "modified": 1697467112997 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985", @@ -76751,15 +98656,30 @@ "total_amount": 48707317, "history_id": 1690515792985, "id": 1690515792985, - "date_created": { "type": 6, "value": 1690515792985 }, - "date_last_updated": { "type": 6, "value": 1690515792985 }, - "date_of_expiration": { "type": 6, "value": 1690515792985 }, + "date_created": { + "type": 6, + "value": 1690515792985 + }, + "date_last_updated": { + "type": 6, + "value": 1690515792985 + }, + "date_of_expiration": { + "type": 6, + "value": 1690515792985 + }, "operation_type": "regular_payment", "status": "refunded", "status_detail": "cc_discounted_due_default", "currency_id": "IVIP", - "date_approved": { "type": 6, "value": 1690515792985 }, - "money_release_date": { "type": 6, "value": 1690515792985 }, + "date_approved": { + "type": 6, + "value": 1690515792985 + }, + "money_release_date": { + "type": 6, + "value": 1690515792985 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -76795,7 +98715,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 1047600 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 3,00%", + "amount": 1047600 + }, "revision": "lnt03ayv03rsoohx0h4j3g9t", "revision_nr": 1, "created": 1697467113041, @@ -76804,7 +98728,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03ayv03rroohxeybu50xf", "revision_nr": 1, "created": 1697467113051, "modified": 1697467113051 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03ayv03rroohxeybu50xf", + "revision_nr": 1, + "created": 1697467113051, + "modified": 1697467113051 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details", @@ -76838,17 +98769,32 @@ "total_amount": 34920000, "id": 1690812074851, "history_id": 1690812074851, - "date_created": { "type": 6, "value": 1690812074851 }, - "date_last_updated": { "type": 6, "value": 1691184433764 }, - "date_of_expiration": { "type": 6, "value": 1690812074851 }, + "date_created": { + "type": 6, + "value": 1690812074851 + }, + "date_last_updated": { + "type": 6, + "value": 1691184433764 + }, + "date_of_expiration": { + "type": 6, + "value": 1690812074851 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": { "type": 6, "value": 1691184433764 }, - "money_release_date": { "type": 6, "value": 1691184433764 }, + "date_approved": { + "type": 6, + "value": 1691184433764 + }, + "money_release_date": { + "type": 6, + "value": 1691184433764 + }, "money_release_status": "discounted", "wasDebited": true }, @@ -76913,9 +98859,18 @@ "total_amount": 1959842, "id": 1691235380464, "history_id": 1691235380464, - "date_created": { "type": 6, "value": 1691235380464 }, - "date_last_updated": { "type": 6, "value": 1691235380464 }, - "date_of_expiration": { "type": 6, "value": 1693913780463 }, + "date_created": { + "type": 6, + "value": 1691235380464 + }, + "date_last_updated": { + "type": 6, + "value": 1691235380464 + }, + "date_of_expiration": { + "type": 6, + "value": 1693913780463 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76984,9 +98939,18 @@ "total_amount": 1999038.84, "id": "1693914295943", "history_id": "1693914295943", - "date_created": { "type": 6, "value": 1693914295943 }, - "date_last_updated": { "type": 6, "value": 1693914295943 }, - "date_of_expiration": { "type": 6, "value": 1693914295943 }, + "date_created": { + "type": 6, + "value": 1693914295943 + }, + "date_last_updated": { + "type": 6, + "value": 1693914295943 + }, + "date_of_expiration": { + "type": 6, + "value": 1693914295943 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -77002,7 +98966,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history", - "content": { "type": 1, "value": {}, "revision": "lnt03ajs03qaoohxcaj9fbio", "revision_nr": 1, "created": 1697467113169, "modified": 1697467113169 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03ajs03qaoohxcaj9fbio", + "revision_nr": 1, + "created": 1697467113169, + "modified": 1697467113169 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/description", @@ -77019,7 +98990,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03b2z03s7oohxe8k99xk3", "revision_nr": 1, "created": 1697467113195, @@ -77028,7 +99003,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03b2z03s6oohx1eew2jz7", "revision_nr": 1, "created": 1697467113209, "modified": 1697467113209 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03b2z03s6oohx1eew2jz7", + "revision_nr": 1, + "created": 1697467113209, + "modified": 1697467113209 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547", @@ -77041,7 +99023,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77054,7 +99039,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306", - "content": { "type": 1, "value": {}, "revision": "lnt03b2p03s3oohx6tl992qg", "revision_nr": 1, "created": 1697467113229, "modified": 1697467113229 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03b2p03s3oohx6tl992qg", + "revision_nr": 1, + "created": 1697467113229, + "modified": 1697467113229 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/description", @@ -77071,7 +99063,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03b4n03scoohx4c860lnb", "revision_nr": 1, "created": 1697467113250, @@ -77080,7 +99076,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03b4n03sboohx636d5zoc", "revision_nr": 1, "created": 1697467113262, "modified": 1697467113262 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03b4n03sboohx636d5zoc", + "revision_nr": 1, + "created": 1697467113262, + "modified": 1697467113262 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547", @@ -77093,7 +99096,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77106,7 +99112,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307", - "content": { "type": 1, "value": {}, "revision": "lnt03b4d03s8oohx21nr1jk7", "revision_nr": 1, "created": 1697467113284, "modified": 1697467113284 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03b4d03s8oohx21nr1jk7", + "revision_nr": 1, + "created": 1697467113284, + "modified": 1697467113284 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/description", @@ -77123,7 +99136,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03b6603shoohxd2pk1hei", "revision_nr": 1, "created": 1697467113304, @@ -77132,7 +99149,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03b6603sgoohxfg3f5sh3", "revision_nr": 1, "created": 1697467113315, "modified": 1697467113315 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03b6603sgoohxfg3f5sh3", + "revision_nr": 1, + "created": 1697467113315, + "modified": 1697467113315 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547", @@ -77145,7 +99169,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77158,7 +99185,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308", - "content": { "type": 1, "value": {}, "revision": "lnt03b5w03sdoohxear7eaht", "revision_nr": 1, "created": 1697467113337, "modified": 1697467113337 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03b5w03sdoohxear7eaht", + "revision_nr": 1, + "created": 1697467113337, + "modified": 1697467113337 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/description", @@ -77175,7 +99209,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03b7o03smoohx0exh0i5a", "revision_nr": 1, "created": 1697467113358, @@ -77184,7 +99222,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03b7o03sloohx36vff1n0", "revision_nr": 1, "created": 1697467113369, "modified": 1697467113369 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03b7o03sloohx36vff1n0", + "revision_nr": 1, + "created": 1697467113369, + "modified": 1697467113369 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547", @@ -77197,7 +99242,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77210,7 +99258,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309", - "content": { "type": 1, "value": {}, "revision": "lnt03b7d03sioohxg2yk3a49", "revision_nr": 1, "created": 1697467113390, "modified": 1697467113390 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03b7d03sioohxg2yk3a49", + "revision_nr": 1, + "created": 1697467113390, + "modified": 1697467113390 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/description", @@ -77227,7 +99282,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03b9503sroohx0uea6lex", "revision_nr": 1, "created": 1697467113412, @@ -77236,7 +99295,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03b9503sqoohxe2z9fgfg", "revision_nr": 1, "created": 1697467113422, "modified": 1697467113422 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03b9503sqoohxe2z9fgfg", + "revision_nr": 1, + "created": 1697467113422, + "modified": 1697467113422 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547", @@ -77249,7 +99315,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77262,7 +99331,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310", - "content": { "type": 1, "value": {}, "revision": "lnt03b8u03snoohxg0wa92so", "revision_nr": 1, "created": 1697467113444, "modified": 1697467113444 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03b8u03snoohxg0wa92so", + "revision_nr": 1, + "created": 1697467113444, + "modified": 1697467113444 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/description", @@ -77279,7 +99355,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03ban03swoohxc36peyz1", "revision_nr": 1, "created": 1697467113465, @@ -77288,7 +99368,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03ban03svoohx2rvsct5d", "revision_nr": 1, "created": 1697467113475, "modified": 1697467113475 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03ban03svoohx2rvsct5d", + "revision_nr": 1, + "created": 1697467113475, + "modified": 1697467113475 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547", @@ -77301,7 +99388,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77314,7 +99404,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311", - "content": { "type": 1, "value": {}, "revision": "lnt03bac03ssoohx7zqw4e0j", "revision_nr": 1, "created": 1697467113496, "modified": 1697467113496 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bac03ssoohx7zqw4e0j", + "revision_nr": 1, + "created": 1697467113496, + "modified": 1697467113496 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/description", @@ -77331,7 +99428,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03bc403t1oohxbze75ziu", "revision_nr": 1, "created": 1697467113518, @@ -77340,7 +99441,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03bc403t0oohx1razag52", "revision_nr": 1, "created": 1697467113529, "modified": 1697467113529 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03bc403t0oohx1razag52", + "revision_nr": 1, + "created": 1697467113529, + "modified": 1697467113529 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547", @@ -77353,7 +99461,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77366,7 +99477,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312", - "content": { "type": 1, "value": {}, "revision": "lnt03bbs03sxoohxgjm3ckp4", "revision_nr": 1, "created": 1697467113549, "modified": 1697467113549 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bbs03sxoohxgjm3ckp4", + "revision_nr": 1, + "created": 1697467113549, + "modified": 1697467113549 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/description", @@ -77383,7 +99501,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03bdk03t6oohxedrs6vae", "revision_nr": 1, "created": 1697467113572, @@ -77392,7 +99514,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03bdk03t5oohx5hfega07", "revision_nr": 1, "created": 1697467113582, "modified": 1697467113582 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03bdk03t5oohx5hfega07", + "revision_nr": 1, + "created": 1697467113582, + "modified": 1697467113582 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547", @@ -77405,7 +99534,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77418,7 +99550,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401", - "content": { "type": 1, "value": {}, "revision": "lnt03bd903t2oohx3bxpd8h8", "revision_nr": 1, "created": 1697467113603, "modified": 1697467113603 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bd903t2oohx3bxpd8h8", + "revision_nr": 1, + "created": 1697467113603, + "modified": 1697467113603 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/description", @@ -77435,7 +99574,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03bf103tboohxgobs0okl", "revision_nr": 1, "created": 1697467113624, @@ -77444,7 +99587,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03bf103taoohx94ba5t69", "revision_nr": 1, "created": 1697467113635, "modified": 1697467113635 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03bf103taoohx94ba5t69", + "revision_nr": 1, + "created": 1697467113635, + "modified": 1697467113635 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547", @@ -77457,7 +99607,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77470,7 +99623,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402", - "content": { "type": 1, "value": {}, "revision": "lnt03ber03t7oohx67nn34kp", "revision_nr": 1, "created": 1697467113657, "modified": 1697467113657 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03ber03t7oohx67nn34kp", + "revision_nr": 1, + "created": 1697467113657, + "modified": 1697467113657 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/description", @@ -77487,7 +99647,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03bgk03tgoohx8uc2gpvk", "revision_nr": 1, "created": 1697467113678, @@ -77496,7 +99660,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03bgj03tfoohx9rxb2kox", "revision_nr": 1, "created": 1697467113690, "modified": 1697467113690 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03bgj03tfoohx9rxb2kox", + "revision_nr": 1, + "created": 1697467113690, + "modified": 1697467113690 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547", @@ -77509,7 +99680,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77522,7 +99696,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403", - "content": { "type": 1, "value": {}, "revision": "lnt03bg903tcoohx0g13ggf8", "revision_nr": 1, "created": 1697467113711, "modified": 1697467113711 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bg903tcoohx0g13ggf8", + "revision_nr": 1, + "created": 1697467113711, + "modified": 1697467113711 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/description", @@ -77539,7 +99720,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03bi203tloohx7stj5lga", "revision_nr": 1, "created": 1697467113732, @@ -77548,7 +99733,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03bi203tkoohxbtb2emp8", "revision_nr": 1, "created": 1697467113742, "modified": 1697467113742 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03bi203tkoohxbtb2emp8", + "revision_nr": 1, + "created": 1697467113742, + "modified": 1697467113742 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547", @@ -77561,7 +99753,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77574,7 +99769,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404", - "content": { "type": 1, "value": {}, "revision": "lnt03bhr03thoohxge2yahoa", "revision_nr": 1, "created": 1697467113764, "modified": 1697467113764 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bhr03thoohxge2yahoa", + "revision_nr": 1, + "created": 1697467113764, + "modified": 1697467113764 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/description", @@ -77591,7 +99793,11 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 12 parcela(s) 24.00%", + "amount": 2400 + }, "revision": "lnt03bjj03tqoohx8gxch4yg", "revision_nr": 1, "created": 1697467113786, @@ -77600,7 +99806,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03bjj03tpoohx0cb56g7p", "revision_nr": 1, "created": 1697467113796, "modified": 1697467113796 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03bjj03tpoohx0cb56g7p", + "revision_nr": 1, + "created": 1697467113796, + "modified": 1697467113796 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547", @@ -77613,7 +99826,10 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { "type": 6, "value": 1684019947547 }, + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" @@ -77626,17 +99842,42 @@ }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405", - "content": { "type": 1, "value": {}, "revision": "lnt03bj803tmoohx9udj261r", "revision_nr": 1, "created": 1697467113816, "modified": 1697467113816 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bj803tmoohx9udj261r", + "revision_nr": 1, + "created": 1697467113816, + "modified": 1697467113816 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices", - "content": { "type": 1, "value": {}, "revision": "lnt03b2p03s2oohxfhj8gg9k", "revision_nr": 1, "created": 1697467113828, "modified": 1697467113828 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03b2p03s2oohxfhj8gg9k", + "revision_nr": 1, + "created": 1697467113828, + "modified": 1697467113828 + } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit", "content": { "type": 1, - "value": { "approvedLimit": 10000, "limitUsed": 10000, "analysisRequested": { "type": 6, "value": 1683976027691 }, "lastReview": { "type": 6, "value": 1684007556024 } }, + "value": { + "approvedLimit": 10000, + "limitUsed": 10000, + "analysisRequested": { + "type": 6, + "value": 1683976027691 + }, + "lastReview": { + "type": 6, + "value": 1684007556024 + } + }, "revision": "lnt03b2p03s1oohx8xir2nxl", "revision_nr": 1, "created": 1697467113839, @@ -77647,7 +99888,16 @@ "path": "ivipcoin-db::__movement_wallet__/138585273860332820", "content": { "type": 1, - "value": { "dataModificacao": 1677844580252, "dateValidity": 1678311387021, "totalValue": 3272.893, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696647600000 } }, + "value": { + "dataModificacao": 1677844580252, + "dateValidity": 1678311387021, + "totalValue": 3272.893, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696647600000 + } + }, "revision": "lnt03aj703q7oohxcyfiebqc", "revision_nr": 1, "created": 1697467113849, @@ -77664,7 +99914,10 @@ "balances": {}, "history": {}, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696215600000 } + "balancesModificacao": { + "type": 6, + "value": 1696215600000 + } }, "revision": "lnt03bll03troohx6w7z8q5a", "revision_nr": 1, @@ -77676,7 +99929,11 @@ "path": "ivipcoin-db::__movement_wallet__/140498756876340500/balances/IVIP", "content": { "type": 1, - "value": { "available": "220191.58000000", "symbol": "IVIP", "value": 29.61 }, + "value": { + "available": "220191.58000000", + "symbol": "IVIP", + "value": 29.61 + }, "revision": "lnt03blw03tuoohx2kf64i6u", "revision_nr": 1, "created": 1697467113871, @@ -77685,7 +99942,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/balances", - "content": { "type": 1, "value": {}, "revision": "lnt03blw03ttoohx250obyl8", "revision_nr": 1, "created": 1697467113881, "modified": 1697467113881 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03blw03ttoohx250obyl8", + "revision_nr": 1, + "created": 1697467113881, + "modified": 1697467113881 + } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189/description", @@ -77700,7 +99964,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03bmt03tyoohxcz46cibt", "revision_nr": 1, "created": 1697467113906, "modified": 1697467113906 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03bmt03tyoohxcz46cibt", + "revision_nr": 1, + "created": 1697467113906, + "modified": 1697467113906 + } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189", @@ -77714,15 +99987,30 @@ "total_amount": 1600, "history_id": 1685110971189, "id": 1685110971189, - "date_created": { "type": 6, "value": 1685110971189 }, - "date_last_updated": { "type": 6, "value": 1685143958384 }, - "date_of_expiration": { "type": 6, "value": 1687702971189 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1685143958384 }, - "money_release_date": { "type": 6, "value": 1685143958384 }, + "date_created": { + "type": 6, + "value": 1685110971189 + }, + "date_last_updated": { + "type": 6, + "value": 1685143958384 + }, + "date_of_expiration": { + "type": 6, + "value": 1687702971189 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685143958384 + }, + "money_release_date": { + "type": 6, + "value": 1685143958384 + }, "money_release_status": "approved", "wasDebited": true }, @@ -77768,9 +100056,18 @@ "original_amount": 5398200, "total_amount": 5398200, "id": 1685727229028, - "date_created": { "type": 6, "value": 1685727229028 }, - "date_last_updated": { "type": 6, "value": 1685727229028 }, - "date_of_expiration": { "type": 6, "value": 1685727229028 }, + "date_created": { + "type": 6, + "value": 1685727229028 + }, + "date_last_updated": { + "type": 6, + "value": 1685727229028 + }, + "date_of_expiration": { + "type": 6, + "value": 1685727229028 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -77831,9 +100128,18 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1687318007517, - "date_created": { "type": 6, "value": 1687318007517 }, - "date_last_updated": { "type": 6, "value": 1687318007517 }, - "date_of_expiration": { "type": 6, "value": 1750476407517 }, + "date_created": { + "type": 6, + "value": 1687318007517 + }, + "date_last_updated": { + "type": 6, + "value": 1687318007517 + }, + "date_of_expiration": { + "type": 6, + "value": 1750476407517 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -77893,9 +100199,18 @@ "original_amount": 320960, "total_amount": 320960, "id": 1688408922424, - "date_created": { "type": 6, "value": 1688408922424 }, - "date_last_updated": { "type": 6, "value": 1688408922424 }, - "date_of_expiration": { "type": 6, "value": 1691087322424 }, + "date_created": { + "type": 6, + "value": 1688408922424 + }, + "date_last_updated": { + "type": 6, + "value": 1688408922424 + }, + "date_of_expiration": { + "type": 6, + "value": 1691087322424 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -77955,9 +100270,18 @@ "original_amount": 327379.2, "total_amount": 327379.2, "id": 1691087650613, - "date_created": { "type": 6, "value": 1691087650613 }, - "date_last_updated": { "type": 6, "value": 1691087650613 }, - "date_of_expiration": { "type": 6, "value": 1691087650613 }, + "date_created": { + "type": 6, + "value": 1691087650613 + }, + "date_last_updated": { + "type": 6, + "value": 1691087650613 + }, + "date_of_expiration": { + "type": 6, + "value": 1691087650613 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78027,9 +100351,18 @@ "total_amount": 366669, "id": 1691114916429, "history_id": 1691114916429, - "date_created": { "type": 6, "value": 1691114916429 }, - "date_last_updated": { "type": 6, "value": 1691114916429 }, - "date_of_expiration": { "type": 6, "value": 1693793316390 }, + "date_created": { + "type": 6, + "value": 1691114916429 + }, + "date_last_updated": { + "type": 6, + "value": 1691114916429 + }, + "date_of_expiration": { + "type": 6, + "value": 1693793316390 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78098,9 +100431,18 @@ "total_amount": 374002.38, "id": "1693793335003", "history_id": "1693793335003", - "date_created": { "type": 6, "value": 1693793335003 }, - "date_last_updated": { "type": 6, "value": 1693793335003 }, - "date_of_expiration": { "type": 6, "value": 1693793335003 }, + "date_created": { + "type": 6, + "value": 1693793335003 + }, + "date_last_updated": { + "type": 6, + "value": 1693793335003 + }, + "date_of_expiration": { + "type": 6, + "value": 1693793335003 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78169,9 +100511,18 @@ "total_amount": 411950, "id": "1693793542322", "history_id": "1693793542322", - "date_created": { "type": 6, "value": 1693793542322 }, - "date_last_updated": { "type": 6, "value": 1693793542322 }, - "date_of_expiration": { "type": 6, "value": 1696385542321 }, + "date_created": { + "type": 6, + "value": 1693793542322 + }, + "date_last_updated": { + "type": 6, + "value": 1693793542322 + }, + "date_of_expiration": { + "type": 6, + "value": 1696385542321 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78241,9 +100592,18 @@ "total_amount": 420189, "id": "1696395329903", "history_id": "1696395329903", - "date_created": { "type": 6, "value": 1696395329903 }, - "date_last_updated": { "type": 6, "value": 1696395329903 }, - "date_of_expiration": { "type": 6, "value": 1696395329903 }, + "date_created": { + "type": 6, + "value": 1696395329903 + }, + "date_last_updated": { + "type": 6, + "value": 1696395329903 + }, + "date_of_expiration": { + "type": 6, + "value": 1696395329903 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78313,9 +100673,18 @@ "total_amount": 200000, "id": "1696472422028", "history_id": "1696472422028", - "date_created": { "type": 6, "value": 1696472422028 }, - "date_last_updated": { "type": 6, "value": 1696472422028 }, - "date_of_expiration": { "type": 6, "value": 1699150821996 }, + "date_created": { + "type": 6, + "value": 1696472422028 + }, + "date_last_updated": { + "type": 6, + "value": 1696472422028 + }, + "date_of_expiration": { + "type": 6, + "value": 1699150821996 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78331,13 +100700,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history", - "content": { "type": 1, "value": {}, "revision": "lnt03bmh03tvoohx67pwcy5m", "revision_nr": 1, "created": 1697467114267, "modified": 1697467114267 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bmh03tvoohx67pwcy5m", + "revision_nr": 1, + "created": 1697467114267, + "modified": 1697467114267 + } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03bx703uuoohxcsmj33oq", "revision_nr": 1, "created": 1697467114278, @@ -78353,7 +100733,10 @@ "dateValidity": 1684358980805, "totalValue": 82.79825942258582, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696647600000 } + "balancesModificacao": { + "type": 6, + "value": 1696647600000 + } }, "revision": "lnt03blw03tsoohxcvbbbuby", "revision_nr": 1, @@ -78365,7 +100748,11 @@ "path": "ivipcoin-db::__movement_wallet__/142977693689888340/balances/IVIP", "content": { "type": 1, - "value": { "available": "2112486.00000000", "symbol": "IVIP", "value": 239.28 }, + "value": { + "available": "2112486.00000000", + "symbol": "IVIP", + "value": 239.28 + }, "revision": "lnt03bxt03uxoohx79po0qd1", "revision_nr": 1, "created": 1697467114299, @@ -78374,7 +100761,14 @@ }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/balances", - "content": { "type": 1, "value": {}, "revision": "lnt03bxt03uwoohxdinx3s3u", "revision_nr": 1, "created": 1697467114310, "modified": 1697467114310 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bxt03uwoohxdinx3s3u", + "revision_nr": 1, + "created": 1697467114310, + "modified": 1697467114310 + } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825/description", @@ -78389,7 +100783,16 @@ }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825/details", - "content": { "type": 1, "value": { "costs": [] }, "revision": "lnt03byq03v1oohxhvlhf65d", "revision_nr": 1, "created": 1697467114332, "modified": 1697467114332 } + "content": { + "type": 1, + "value": { + "costs": [] + }, + "revision": "lnt03byq03v1oohxhvlhf65d", + "revision_nr": 1, + "created": 1697467114332, + "modified": 1697467114332 + } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825", @@ -78403,15 +100806,30 @@ "total_amount": 5000, "history_id": 1689206251825, "id": 1689206251825, - "date_created": { "type": 6, "value": 1689206251825 }, - "date_last_updated": { "type": 6, "value": 1689207259742 }, - "date_of_expiration": { "type": 6, "value": 1691798251825 }, - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": { "type": 6, "value": 1689207259742 }, - "money_release_date": { "type": 6, "value": 1689207259742 }, + "date_created": { + "type": 6, + "value": 1689206251825 + }, + "date_last_updated": { + "type": 6, + "value": 1689207259742 + }, + "date_of_expiration": { + "type": 6, + "value": 1691798251825 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689207259742 + }, + "money_release_date": { + "type": 6, + "value": 1689207259742 + }, "money_release_status": "approved", "wasDebited": true }, @@ -78457,9 +100875,18 @@ "original_amount": 2112486, "total_amount": 2112486, "id": 1689208259450, - "date_created": { "type": 6, "value": 1689208259450 }, - "date_last_updated": { "type": 6, "value": 1689208259450 }, - "date_of_expiration": { "type": 6, "value": 1689208259450 }, + "date_created": { + "type": 6, + "value": 1689208259450 + }, + "date_last_updated": { + "type": 6, + "value": 1689208259450 + }, + "date_of_expiration": { + "type": 6, + "value": 1689208259450 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78476,13 +100903,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history", - "content": { "type": 1, "value": {}, "revision": "lnt03bye03uyoohxep98d3ph", "revision_nr": 1, "created": 1697467114377, "modified": 1697467114377 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03bye03uyoohxep98d3ph", + "revision_nr": 1, + "created": 1697467114377, + "modified": 1697467114377 + } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03c0903v4oohxbemn1oas", "revision_nr": 1, "created": 1697467114388, @@ -78493,7 +100931,16 @@ "path": "ivipcoin-db::__movement_wallet__/142977693689888340", "content": { "type": 1, - "value": { "dataModificacao": 1689206116426, "dateValidity": 1689206116426, "totalValue": 1030, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1697079600000 } }, + "value": { + "dataModificacao": 1689206116426, + "dateValidity": 1689206116426, + "totalValue": 1030, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1697079600000 + } + }, "revision": "lnt03bxt03uvoohx0sbc9rvb", "revision_nr": 1, "created": 1697467114399, @@ -78511,7 +100958,10 @@ "history": {}, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696647600000 } + "balancesModificacao": { + "type": 6, + "value": 1696647600000 + } }, "revision": "lnt03c0v03v5oohx983v178s", "revision_nr": 1, @@ -78523,7 +100973,14 @@ "path": "ivipcoin-db::__movement_wallet__/146025594361679260", "content": { "type": 1, - "value": { "dataModificacao": 1679356008303, "dateValidity": 1679356008303, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1679356008303, + "dateValidity": 1679356008303, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03c1703v6oohxciu27axa", "revision_nr": 1, "created": 1697467114421, @@ -78534,7 +100991,13 @@ "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1697568433538 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1697568433538 + } + }, "revision": "lnt03c1h03vaoohx7ax46h3m", "revision_nr": 1, "created": 1697467114433, @@ -78596,8 +101059,14 @@ "total_amount": 20, "id": "1694976433538", "history_id": "1694976433538", - "date_created": { "type": 6, "value": 1694976433538 }, - "date_last_updated": { "type": 6, "value": 1694976433538 }, + "date_created": { + "type": 6, + "value": 1694976433538 + }, + "date_last_updated": { + "type": 6, + "value": 1694976433538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -78613,13 +101082,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history", - "content": { "type": 1, "value": {}, "revision": "lnt03c1h03v8oohxh2dn5xav", "revision_nr": 1, "created": 1697467114488, "modified": 1697467114488 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03c1h03v8oohxh2dn5xav", + "revision_nr": 1, + "created": 1697467114488, + "modified": 1697467114488 + } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03c3c03veoohxhto65yhu", "revision_nr": 1, "created": 1697467114499, @@ -78630,7 +101110,16 @@ "path": "ivipcoin-db::__movement_wallet__/146193775313990370", "content": { "type": 1, - "value": { "dataModificacao": 1694975442899, "dateValidity": 1694975443028, "balances": {}, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1696906800000 } }, + "value": { + "dataModificacao": 1694975442899, + "dateValidity": 1694975443028, + "balances": {}, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1696906800000 + } + }, "revision": "lnt03c1h03v7oohx2gsb1oq6", "revision_nr": 1, "created": 1697467114511, @@ -78641,7 +101130,11 @@ "path": "ivipcoin-db::__movement_wallet__/146193999422064450/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03c3z03vgoohxhbox40mc", "revision_nr": 1, "created": 1697467114523, @@ -78652,7 +101145,14 @@ "path": "ivipcoin-db::__movement_wallet__/146193999422064450", "content": { "type": 1, - "value": { "dataModificacao": 1677393088450, "dateValidity": 1677393088450, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677393088450, + "dateValidity": 1677393088450, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03c3z03vfoohxfyskb5ma", "revision_nr": 1, "created": 1697467114533, @@ -78663,7 +101163,14 @@ "path": "ivipcoin-db::__movement_wallet__/146386157285818500", "content": { "type": 1, - "value": { "dataModificacao": 1677820583824, "dateValidity": 1677838584623, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1677820583824, + "dateValidity": 1677838584623, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03c4l03vhoohx6pm1dhfz", "revision_nr": 1, "created": 1697467114543, @@ -78718,7 +101225,11 @@ "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/costs[0]", "content": { "type": 1, - "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.9900000000000001 }, + "value": { + "title": "Taxa de serviço", + "label": "Taxa de 0.99%", + "amount": 0.9900000000000001 + }, "revision": "lnt03c6303vroohxh6x66wtw", "revision_nr": 1, "created": 1697467114597, @@ -78727,21 +101238,52 @@ }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/costs", - "content": { "type": 2, "value": {}, "revision": "lnt03c6203vqoohxe7f9hsda", "revision_nr": 1, "created": 1697467114608, "modified": 1697467114608 } + "content": { + "type": 2, + "value": {}, + "revision": "lnt03c6203vqoohxe7f9hsda", + "revision_nr": 1, + "created": 1697467114608, + "modified": 1697467114608 + } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info/collector", - "content": { "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, "revision": "lnt03c6o03vtoohx07n50f59", "revision_nr": 1, "created": 1697467114618, "modified": 1697467114618 } + "content": { + "type": 1, + "value": { + "account_holder_name": "IVIPCOIN LTDA" + }, + "revision": "lnt03c6o03vtoohx07n50f59", + "revision_nr": 1, + "created": 1697467114618, + "modified": 1697467114618 + } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info", - "content": { "type": 1, "value": { "payer": {} }, "revision": "lnt03c6o03vsoohxdzki707q", "revision_nr": 1, "created": 1697467114629, "modified": 1697467114629 } + "content": { + "type": 1, + "value": { + "payer": {} + }, + "revision": "lnt03c6o03vsoohxdzki707q", + "revision_nr": 1, + "created": 1697467114629, + "modified": 1697467114629 + } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details", "content": { "type": 1, - "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 100.99, "overpaid_amount": 0, "installment_amount": 0 }, + "value": { + "installments": 1, + "net_received_amount": 0, + "total_paid_amount": 100.99, + "overpaid_amount": 0, + "installment_amount": 0 + }, "revision": "lnt03c5603vmoohx2zvp7nrn", "revision_nr": 1, "created": 1697467114640, @@ -78760,9 +101302,18 @@ "total_amount": 100.99, "history_id": 1678652275580, "id": 55661848873, - "date_created": { "type": 6, "value": 1678652276428 }, - "date_last_updated": { "type": 6, "value": 1678738862000 }, - "date_of_expiration": { "type": 6, "value": 1678738676084 }, + "date_created": { + "type": 6, + "value": 1678652276428 + }, + "date_last_updated": { + "type": 6, + "value": 1678738862000 + }, + "date_of_expiration": { + "type": 6, + "value": 1678738676084 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", @@ -78777,13 +101328,26 @@ }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history", - "content": { "type": 1, "value": {}, "revision": "lnt03c4v03vjoohxcpt82ww1", "revision_nr": 1, "created": 1697467114662, "modified": 1697467114662 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03c4v03vjoohxcpt82ww1", + "revision_nr": 1, + "created": 1697467114662, + "modified": 1697467114662 + } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200", "content": { "type": 1, - "value": { "dataModificacao": 1678651931786, "dateValidity": 1678669931823, "balances": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678651931786, + "dateValidity": 1678669931823, + "balances": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03c4v03vioohxfzj3h371", "revision_nr": 1, "created": 1697467114672, @@ -78794,7 +101358,11 @@ "path": "ivipcoin-db::__movement_wallet__/147062074886654460/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03c8h03vvoohx2man313u", "revision_nr": 1, "created": 1697467114684, @@ -78812,7 +101380,10 @@ "history": {}, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": { "type": 6, "value": 1696820400000 } + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } }, "revision": "lnt03c8g03vuoohx116tf2bs", "revision_nr": 1, @@ -78824,7 +101395,14 @@ "path": "ivipcoin-db::__movement_wallet__/149922673320977100", "content": { "type": 1, - "value": { "dataModificacao": 1678155962477, "dateValidity": 1678510544290, "balances": {}, "history": {}, "totalValue": 0, "currencyType": "USD" }, + "value": { + "dataModificacao": 1678155962477, + "dateValidity": 1678510544290, + "balances": {}, + "history": {}, + "totalValue": 0, + "currencyType": "USD" + }, "revision": "lnt03c9303vwoohxd8pdgb1m", "revision_nr": 1, "created": 1697467114707, @@ -78835,7 +101413,13 @@ "path": "ivipcoin-db::__movement_wallet__/151721738402511580", "content": { "type": 1, - "value": { "dataModificacao": 1696981676486, "dateValidity": 1696981676516, "balances": {}, "history": {}, "currencyType": "USD" }, + "value": { + "dataModificacao": 1696981676486, + "dateValidity": 1696981676516, + "balances": {}, + "history": {}, + "currencyType": "USD" + }, "revision": "lnt03c9f03vxoohx1o8p1tqp", "revision_nr": 1, "created": 1697467114718, @@ -78846,7 +101430,13 @@ "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/date_of_expiration", "content": { "type": 1, - "value": { ".type": "date", ".val": { "type": 6, "value": 1696549725001 } }, + "value": { + ".type": "date", + ".val": { + "type": 6, + "value": 1696549725001 + } + }, "revision": "lnt03c9r03w1oohx3164716f", "revision_nr": 1, "created": 1697467114729, @@ -78908,16 +101498,28 @@ "total_amount": 1000, "id": "1693957725002", "history_id": "1693957725002", - "date_created": { "type": 6, "value": 1693957725002 }, - "date_last_updated": { "type": 6, "value": 1693961791127 }, + "date_created": { + "type": 6, + "value": 1693957725002 + }, + "date_last_updated": { + "type": 6, + "value": 1693961791127 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": { "type": 6, "value": 1693961791127 }, - "money_release_date": { "type": 6, "value": 1693961791127 }, + "date_approved": { + "type": 6, + "value": 1693961791127 + }, + "money_release_date": { + "type": 6, + "value": 1693961791127 + }, "money_release_status": "approved", "wasDebited": true }, @@ -78982,9 +101584,18 @@ "total_amount": 1000, "id": "1694615393430", "history_id": "1694615393430", - "date_created": { "type": 6, "value": 1694615393430 }, - "date_last_updated": { "type": 6, "value": 1694615393430 }, - "date_of_expiration": { "type": 6, "value": 1757773793429 }, + "date_created": { + "type": 6, + "value": 1694615393430 + }, + "date_last_updated": { + "type": 6, + "value": 1694615393430 + }, + "date_of_expiration": { + "type": 6, + "value": 1757773793429 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -79000,13 +101611,24 @@ }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history", - "content": { "type": 1, "value": {}, "revision": "lnt03c9r03vzoohxe7p24rvw", "revision_nr": 1, "created": 1697467114829, "modified": 1697467114829 } + "content": { + "type": 1, + "value": {}, + "revision": "lnt03c9r03vzoohxe7p24rvw", + "revision_nr": 1, + "created": 1697467114829, + "modified": 1697467114829 + } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/credit", "content": { "type": 1, - "value": { "approvedLimit": 0, "limitUsed": 0, "invoices": {} }, + "value": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} + }, "revision": "lnt03cct03w9oohx0r5z2phj", "revision_nr": 1, "created": 1697467114840, @@ -79017,12 +101639,31 @@ "path": "ivipcoin-db::__movement_wallet__/152557644739400160", "content": { "type": 1, - "value": { "dataModificacao": 1693436516681, "dateValidity": 1693436516720, "balances": {}, "currencyType": "USD", "balancesModificacao": { "type": 6, "value": 1695092400000 } }, + "value": { + "dataModificacao": 1693436516681, + "dateValidity": 1693436516720, + "balances": {}, + "currencyType": "USD", + "balancesModificacao": { + "type": 6, + "value": 1695092400000 + } + }, "revision": "lnt03c9q03vyoohx42t5fia3", "revision_nr": 1, "created": 1697467114850, "modified": 1697467114850 } }, - { "path": "ivipcoin-db::__movement_wallet__", "content": { "type": 1, "value": {}, "revision": "lnt02q7u0003oohxe4t4gro0", "revision_nr": 1, "created": 1697467114861, "modified": 1697467114861 } } -] + { + "path": "ivipcoin-db::__movement_wallet__", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7u0003oohxe4t4gro0", + "revision_nr": 1, + "created": 1697467114861, + "modified": 1697467114861 + } + } +] \ No newline at end of file diff --git a/test/outputResultWithPathJSON.json b/test/outputResultWithPathJSON.json index 80d48e93..9159b616 100644 --- a/test/outputResultWithPathJSON.json +++ b/test/outputResultWithPathJSON.json @@ -1,6 +1,6 @@ [ { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances/BRL", "content": { "type": 1, "value": { @@ -10,12 +10,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719302, - "modified": 1700589719302 + "created": 1700748395446, + "modified": 1700748395446 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances/IVIP", "content": { "type": 1, "value": { @@ -25,12 +25,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719302, - "modified": 1700589719302 + "created": 1700748395446, + "modified": 1700748395446 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/barcode", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395446, + "modified": 1700748395446 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/barcode", "content": { "type": 1, "value": { @@ -38,12 +49,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719302, - "modified": 1700589719302 + "created": 1700748395446, + "modified": 1700748395446 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/costs[0]", "content": { "type": 1, "value": { @@ -53,12 +64,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719302, - "modified": 1700589719302 + "created": 1700748395446, + "modified": 1700748395446 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details", "content": { "type": 1, "value": { @@ -75,12 +86,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719302, - "modified": 1700589719302 + "created": 1700748395450, + "modified": 1700748395450 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468", "content": { "type": 1, "value": { @@ -103,12 +114,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719302, - "modified": 1700589719302 + "created": 1700748395450, + "modified": 1700748395450 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/barcode", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/barcode", "content": { "type": 1, "value": { @@ -116,12 +127,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719302, - "modified": 1700589719302 + "created": 1700748395450, + "modified": 1700748395450 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/costs[0]", "content": { "type": 1, "value": { @@ -131,12 +142,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719302, - "modified": 1700589719302 + "created": 1700748395450, + "modified": 1700748395450 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details", "content": { "type": 1, "value": { @@ -153,12 +164,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719302, - "modified": 1700589719302 + "created": 1700748395450, + "modified": 1700748395450 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788", "content": { "type": 1, "value": { @@ -181,12 +192,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719302, - "modified": 1700589719302 + "created": 1700748395450, + "modified": 1700748395450 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395450, + "modified": 1700748395450 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info/collector", "content": { "type": 1, "value": { @@ -194,12 +216,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719302, - "modified": 1700589719302 + "created": 1700748395450, + "modified": 1700748395450 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395450, + "modified": 1700748395450 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/costs[0]", "content": { "type": 1, "value": { @@ -209,12 +242,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719302, - "modified": 1700589719302 + "created": 1700748395450, + "modified": 1700748395450 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details", "content": { "type": 1, "value": { @@ -229,12 +262,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719302, - "modified": 1700589719302 + "created": 1700748395450, + "modified": 1700748395450 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865", "content": { "type": 1, "value": { @@ -257,12 +290,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719302, - "modified": 1700589719302 + "created": 1700748395450, + "modified": 1700748395450 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/costs[0]", "content": { "type": 1, "value": { @@ -272,12 +305,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info/collector", "content": { "type": 1, "value": { @@ -285,12 +329,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395451, + "modified": 1700748395451 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details", "content": { "type": 1, "value": { @@ -305,12 +360,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667", "content": { "type": 1, "value": { @@ -333,12 +388,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/barcode", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/barcode", "content": { "type": 1, "value": { @@ -346,12 +401,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/costs[0]", "content": { "type": 1, "value": { @@ -361,12 +416,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details", "content": { "type": 1, "value": { @@ -383,12 +438,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675", "content": { "type": 1, "value": { @@ -411,12 +466,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/barcode", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/barcode", "content": { "type": 1, "value": { @@ -424,12 +479,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/costs[0]", "content": { "type": 1, "value": { @@ -439,12 +494,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details", "content": { "type": 1, "value": { @@ -461,12 +516,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353", "content": { "type": 1, "value": { @@ -489,12 +544,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/barcode", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/barcode", "content": { "type": 1, "value": { @@ -502,12 +557,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/costs[0]", "content": { "type": 1, "value": { @@ -517,12 +572,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details", "content": { "type": 1, "value": { @@ -539,12 +594,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537", "content": { "type": 1, "value": { @@ -567,12 +622,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info/collector", "content": { "type": 1, "value": { @@ -580,12 +646,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/costs[0]", "content": { "type": 1, "value": { @@ -595,12 +672,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395451, + "modified": 1700748395451 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details", "content": { "type": 1, "value": { @@ -615,12 +692,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395452, + "modified": 1700748395452 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851", "content": { "type": 1, "value": { @@ -643,12 +720,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395452, + "modified": 1700748395452 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395452, + "modified": 1700748395452 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info/collector", "content": { "type": 1, "value": { @@ -656,12 +744,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395452, + "modified": 1700748395452 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395452, + "modified": 1700748395452 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/costs[0]", "content": { "type": 1, "value": { @@ -671,12 +770,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395452, + "modified": 1700748395452 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details", "content": { "type": 1, "value": { @@ -691,12 +790,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395452, + "modified": 1700748395452 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412", "content": { "type": 1, "value": { @@ -722,12 +821,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395452, + "modified": 1700748395452 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/costs[0]", "content": { "type": 1, "value": { @@ -737,12 +836,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395452, + "modified": 1700748395452 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395453, + "modified": 1700748395453 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info/collector", "content": { "type": 1, "value": { @@ -750,12 +860,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395453, + "modified": 1700748395453 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395453, + "modified": 1700748395453 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details", "content": { "type": 1, "value": { @@ -770,12 +891,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395453, + "modified": 1700748395453 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434", "content": { "type": 1, "value": { @@ -801,12 +922,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395453, + "modified": 1700748395453 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/costs[0]", "content": { "type": 1, "value": { @@ -816,12 +937,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395453, + "modified": 1700748395453 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395453, + "modified": 1700748395453 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info/collector", "content": { "type": 1, "value": { @@ -829,12 +961,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395453, + "modified": 1700748395453 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395453, + "modified": 1700748395453 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details", "content": { "type": 1, "value": { @@ -849,12 +992,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395453, + "modified": 1700748395453 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387", "content": { "type": 1, "value": { @@ -877,12 +1020,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395453, + "modified": 1700748395453 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/costs[0]", "content": { "type": 1, "value": { @@ -892,12 +1035,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395453, + "modified": 1700748395453 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info/collector", "content": { "type": 1, "value": { @@ -905,12 +1059,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details", "content": { "type": 1, "value": { @@ -925,12 +1090,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740", "content": { "type": 1, "value": { @@ -953,12 +1118,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info/collector", "content": { "type": 1, "value": { @@ -966,12 +1142,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/costs[0]", "content": { "type": 1, "value": { @@ -981,12 +1168,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details", "content": { "type": 1, "value": { @@ -1001,12 +1188,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189", "content": { "type": 1, "value": { @@ -1029,12 +1216,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891", "content": { "type": 1, "value": { @@ -1056,12 +1265,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908", "content": { "type": 1, "value": { @@ -1088,12 +1319,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840", "content": { "type": 1, "value": { @@ -1120,12 +1373,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778", "content": { "type": 1, "value": { @@ -1149,12 +1424,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156", "content": { "type": 1, "value": { @@ -1178,12 +1475,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105", "content": { "type": 1, "value": { @@ -1207,12 +1526,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870", "content": { "type": 1, "value": { @@ -1238,12 +1579,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645", "content": { "type": 1, "value": { @@ -1269,12 +1632,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976", "content": { "type": 1, "value": { @@ -1300,12 +1685,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160", "content": { "type": 1, "value": { @@ -1329,12 +1736,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033196645/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033196645/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033196645/details", "content": { "type": 1, "value": { @@ -1351,12 +1769,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033196645", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033196645", "content": { "type": 1, "value": { @@ -1381,12 +1799,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033334564/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033334564/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033334564/details", "content": { "type": 1, "value": { @@ -1403,12 +1832,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033334564", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033334564", "content": { "type": 1, "value": { @@ -1433,12 +1862,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033849155/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033849155/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033849155/details", "content": { "type": 1, "value": { @@ -1455,12 +1895,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033849155", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033849155", "content": { "type": 1, "value": { @@ -1485,12 +1925,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034274118/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034274118/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034274118/details", "content": { "type": 1, "value": { @@ -1507,12 +1958,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034274118", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034274118", "content": { "type": 1, "value": { @@ -1537,12 +1988,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034346295/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034346295/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034346295/details", "content": { "type": 1, "value": { @@ -1559,12 +2021,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034346295", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034346295", "content": { "type": 1, "value": { @@ -1589,12 +2051,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034463284/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034463284/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034463284/details", "content": { "type": 1, "value": { @@ -1611,12 +2084,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034463284", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034463284", "content": { "type": 1, "value": { @@ -1641,12 +2114,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034665927/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034665927/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034665927/details", "content": { "type": 1, "value": { @@ -1663,12 +2147,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034665927", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034665927", "content": { "type": 1, "value": { @@ -1693,12 +2177,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678041814665/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678041814665/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678041814665/details", "content": { "type": 1, "value": { @@ -1715,12 +2210,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678041814665", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678041814665", "content": { "type": 1, "value": { @@ -1745,12 +2240,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815", "content": { "type": 1, "value": { @@ -1774,12 +2291,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678160538199/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678160538199/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678160538199/details", "content": { "type": 1, "value": { @@ -1796,12 +2324,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678160538199", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678160538199", "content": { "type": 1, "value": { @@ -1826,12 +2354,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678284807612/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678284807612/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678284807612/details", "content": { "type": 1, "value": { @@ -1848,12 +2387,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678284807612", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678284807612", "content": { "type": 1, "value": { @@ -1878,12 +2417,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details/costs[0]", "content": { "type": 1, "value": { @@ -1893,12 +2432,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395454, + "modified": 1700748395454 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395455, + "modified": 1700748395455 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354", "content": { "type": 1, "value": { @@ -1921,12 +2471,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395455, + "modified": 1700748395455 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details/costs[0]", "content": { "type": 1, "value": { @@ -1936,12 +2486,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395455, + "modified": 1700748395455 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395455, + "modified": 1700748395455 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247", "content": { "type": 1, "value": { @@ -1966,12 +2527,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395455, + "modified": 1700748395455 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details/costs[0]", "content": { "type": 1, "value": { @@ -1981,12 +2542,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395455, + "modified": 1700748395455 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395455, + "modified": 1700748395455 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895", "content": { "type": 1, "value": { @@ -2012,12 +2584,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395455, + "modified": 1700748395455 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details/costs[0]", "content": { "type": 1, "value": { @@ -2027,12 +2599,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395455, + "modified": 1700748395455 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395455, + "modified": 1700748395455 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954", "content": { "type": 1, "value": { @@ -2056,12 +2639,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395455, + "modified": 1700748395455 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details/costs[0]", "content": { "type": 1, "value": { @@ -2071,12 +2654,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395455, + "modified": 1700748395455 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395455, + "modified": 1700748395455 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273", "content": { "type": 1, "value": { @@ -2102,12 +2696,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395455, + "modified": 1700748395455 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/barcode", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/barcode", "content": { "type": 1, "value": { @@ -2115,12 +2709,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/costs[0]", "content": { "type": 1, "value": { @@ -2130,12 +2724,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details", "content": { "type": 1, "value": { @@ -2152,12 +2746,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470", "content": { "type": 1, "value": { @@ -2180,12 +2774,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/barcode", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/barcode", "content": { "type": 1, "value": { @@ -2193,12 +2787,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/costs[0]", "content": { "type": 1, "value": { @@ -2208,12 +2802,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details", "content": { "type": 1, "value": { @@ -2230,12 +2824,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940", "content": { "type": 1, "value": { @@ -2258,12 +2852,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info/collector", "content": { "type": 1, "value": { @@ -2271,12 +2876,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395456, + "modified": 1700748395456 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/costs[0]", "content": { "type": 1, "value": { @@ -2286,12 +2902,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details", "content": { "type": 1, "value": { @@ -2306,12 +2922,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174", "content": { "type": 1, "value": { @@ -2337,12 +2953,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/costs[0]", "content": { "type": 1, "value": { @@ -2352,12 +2968,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395456, + "modified": 1700748395456 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info/collector", "content": { "type": 1, "value": { @@ -2365,12 +2992,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details", "content": { "type": 1, "value": { @@ -2385,12 +3023,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085", "content": { "type": 1, "value": { @@ -2413,12 +3051,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395456, + "modified": 1700748395456 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395456, + "modified": 1700748395456 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675", "content": { "type": 1, "value": { @@ -2440,12 +3100,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395456, + "modified": 1700748395456 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395456, + "modified": 1700748395456 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708", "content": { "type": 1, "value": { @@ -2467,12 +3149,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395456, + "modified": 1700748395456 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912", "content": { "type": 1, "value": { @@ -2494,12 +3198,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719303, - "modified": 1700589719303 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/barcode", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/barcode", "content": { "type": 1, "value": { @@ -2507,12 +3211,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/costs[0]", "content": { "type": 1, "value": { @@ -2522,12 +3226,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details", "content": { "type": 1, "value": { @@ -2544,12 +3248,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229", "content": { "type": 1, "value": { @@ -2572,12 +3276,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395456, + "modified": 1700748395456 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395456, + "modified": 1700748395456 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493", "content": { "type": 1, "value": { @@ -2599,12 +3325,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details/costs[0]", "content": { "type": 1, "value": { @@ -2614,12 +3340,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395456, + "modified": 1700748395456 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395460, + "modified": 1700748395460 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084", "content": { "type": 1, "value": { @@ -2642,12 +3379,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395460, + "modified": 1700748395460 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details/costs[0]", "content": { "type": 1, "value": { @@ -2657,12 +3394,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395460, + "modified": 1700748395460 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395460, + "modified": 1700748395460 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805", "content": { "type": 1, "value": { @@ -2685,12 +3433,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395460, + "modified": 1700748395460 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details/costs[0]", "content": { "type": 1, "value": { @@ -2700,12 +3448,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395460, + "modified": 1700748395460 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395460, + "modified": 1700748395460 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080", "content": { "type": 1, "value": { @@ -2728,12 +3487,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395460, + "modified": 1700748395460 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details/costs[0]", "content": { "type": 1, "value": { @@ -2743,12 +3502,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395460, + "modified": 1700748395460 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395460, + "modified": 1700748395460 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128", "content": { "type": 1, "value": { @@ -2771,12 +3541,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395460, + "modified": 1700748395460 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details/costs[0]", "content": { "type": 1, "value": { @@ -2786,12 +3556,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424", "content": { "type": 1, "value": { @@ -2814,12 +3595,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780561471/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780561471/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780561471/details", "content": { "type": 1, "value": { @@ -2836,12 +3628,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780561471", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780561471", "content": { "type": 1, "value": { @@ -2866,12 +3658,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780730626/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780730626/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780730626/details", "content": { "type": 1, "value": { @@ -2888,12 +3691,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780730626", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780730626", "content": { "type": 1, "value": { @@ -2918,12 +3721,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679798199684/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679798199684/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679798199684/details", "content": { "type": 1, "value": { @@ -2940,12 +3754,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1679798199684", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679798199684", "content": { "type": 1, "value": { @@ -2970,12 +3784,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1681764788277/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1681764788277/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395461, + "modified": 1700748395461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1681764788277/details", "content": { "type": 1, "value": { @@ -2992,12 +3817,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1681764788277", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1681764788277", "content": { "type": 1, "value": { @@ -3022,12 +3847,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323304615/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323304615/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395461, + "modified": 1700748395461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323304615/details", "content": { "type": 1, "value": { @@ -3044,12 +3880,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323304615", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323304615", "content": { "type": 1, "value": { @@ -3074,12 +3910,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323486538/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323486538/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395461, + "modified": 1700748395461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323486538/details", "content": { "type": 1, "value": { @@ -3096,12 +3943,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323486538", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323486538", "content": { "type": 1, "value": { @@ -3126,12 +3973,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324590308/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324590308/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324590308/details", "content": { "type": 1, "value": { @@ -3148,12 +4006,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324590308", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324590308", "content": { "type": 1, "value": { @@ -3178,12 +4036,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324593569/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324593569/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395461, + "modified": 1700748395461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324593569/details", "content": { "type": 1, "value": { @@ -3200,12 +4069,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324593569", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324593569", "content": { "type": 1, "value": { @@ -3230,12 +4099,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325423689/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325423689/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325423689/details", "content": { "type": 1, "value": { @@ -3252,12 +4132,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325423689", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325423689", "content": { "type": 1, "value": { @@ -3282,12 +4162,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325428664/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325428664/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325428664/details", "content": { "type": 1, "value": { @@ -3304,12 +4195,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325428664", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325428664", "content": { "type": 1, "value": { @@ -3334,12 +4225,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544384/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544384/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395461, + "modified": 1700748395461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544384/details", "content": { "type": 1, "value": { @@ -3358,12 +4260,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544384", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544384", "content": { "type": 1, "value": { @@ -3389,12 +4291,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544557/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544557/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544557/details", "content": { "type": 1, "value": { @@ -3413,12 +4326,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544557", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544557", "content": { "type": 1, "value": { @@ -3444,12 +4357,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984558/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984558/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984558/details", "content": { "type": 1, "value": { @@ -3468,12 +4392,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984558", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984558", "content": { "type": 1, "value": { @@ -3499,12 +4423,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984726/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984726/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395461, + "modified": 1700748395461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984726/details", "content": { "type": 1, "value": { @@ -3523,12 +4458,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984726", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984726", "content": { "type": 1, "value": { @@ -3554,12 +4489,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984913/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984913/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395461, + "modified": 1700748395461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984913/details", "content": { "type": 1, "value": { @@ -3578,12 +4524,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984913", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984913", "content": { "type": 1, "value": { @@ -3609,12 +4555,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details/costs[0]", "content": { "type": 1, "value": { @@ -3624,12 +4570,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395461, + "modified": 1700748395461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468", "content": { "type": 1, "value": { @@ -3652,12 +4609,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details/costs[0]", "content": { "type": 1, "value": { @@ -3667,12 +4624,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591", "content": { "type": 1, "value": { @@ -3695,12 +4663,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186", "content": { "type": 1, "value": { @@ -3726,12 +4716,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684348051817/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684348051817/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684348051817/details", "content": { "type": 1, "value": { @@ -3748,12 +4749,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684348051817", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684348051817", "content": { "type": 1, "value": { @@ -3778,12 +4779,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739701/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739701/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739701/details", "content": { "type": 1, "value": { @@ -3802,12 +4814,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739701", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739701", "content": { "type": 1, "value": { @@ -3833,12 +4845,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739822/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739822/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739822/details", "content": { "type": 1, "value": { @@ -3857,12 +4880,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739822", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739822", "content": { "type": 1, "value": { @@ -3888,12 +4911,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739934/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739934/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739934/details", "content": { "type": 1, "value": { @@ -3912,12 +4946,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739934", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739934", "content": { "type": 1, "value": { @@ -3943,12 +4977,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740031/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740031/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740031/details", "content": { "type": 1, "value": { @@ -3967,12 +5012,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740031", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740031", "content": { "type": 1, "value": { @@ -3998,12 +5043,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740155/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740155/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740155/details", "content": { "type": 1, "value": { @@ -4022,12 +5078,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740155", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740155", "content": { "type": 1, "value": { @@ -4053,12 +5109,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790150988/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790150988/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790150988/details", "content": { "type": 1, "value": { @@ -4075,12 +5142,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790150988", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790150988", "content": { "type": 1, "value": { @@ -4105,12 +5172,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790990972/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790990972/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790990972/details", "content": { "type": 1, "value": { @@ -4127,12 +5205,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790990972", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790990972", "content": { "type": 1, "value": { @@ -4157,12 +5235,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814", "content": { "type": 1, "value": { @@ -4184,12 +5284,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807", "content": { "type": 1, "value": { @@ -4211,12 +5333,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814", "content": { "type": 1, "value": { @@ -4242,12 +5386,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399", "content": { "type": 1, "value": { @@ -4269,12 +5435,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817", "content": { "type": 1, "value": { @@ -4298,12 +5486,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685391703693/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685391703693/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685391703693/details", "content": { "type": 1, "value": { @@ -4320,12 +5519,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685391703693", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685391703693", "content": { "type": 1, "value": { @@ -4350,12 +5549,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685392276817/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685392276817/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685392276817/details", "content": { "type": 1, "value": { @@ -4372,12 +5582,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685392276817", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685392276817", "content": { "type": 1, "value": { @@ -4402,12 +5612,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393515405/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393515405/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393515405/details", "content": { "type": 1, "value": { @@ -4424,12 +5645,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393515405", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393515405", "content": { "type": 1, "value": { @@ -4454,12 +5675,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393559293/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393559293/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393559293/details", "content": { "type": 1, "value": { @@ -4476,12 +5708,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393559293", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393559293", "content": { "type": 1, "value": { @@ -4506,12 +5738,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685394959774/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685394959774/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685394959774/details", "content": { "type": 1, "value": { @@ -4528,12 +5771,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685394959774", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685394959774", "content": { "type": 1, "value": { @@ -4558,12 +5801,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395256711/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395256711/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395256711/details", "content": { "type": 1, "value": { @@ -4580,12 +5834,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395256711", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395256711", "content": { "type": 1, "value": { @@ -4610,12 +5864,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395602952/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395602952/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395602952/details", "content": { "type": 1, "value": { @@ -4632,12 +5897,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395602952", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395602952", "content": { "type": 1, "value": { @@ -4662,12 +5927,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395698830/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395698830/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395698830/details", "content": { "type": 1, "value": { @@ -4684,12 +5960,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395698830", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395698830", "content": { "type": 1, "value": { @@ -4714,12 +5990,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457147497/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457147497/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457147497/details", "content": { "type": 1, "value": { @@ -4736,12 +6023,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457147497", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457147497", "content": { "type": 1, "value": { @@ -4766,12 +6053,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457225462/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457225462/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457225462/details", "content": { "type": 1, "value": { @@ -4788,12 +6086,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457225462", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457225462", "content": { "type": 1, "value": { @@ -4818,12 +6116,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458042396/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458042396/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458042396/details", "content": { "type": 1, "value": { @@ -4840,12 +6149,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458042396", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458042396", "content": { "type": 1, "value": { @@ -4870,12 +6179,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458118470/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458118470/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458118470/details", "content": { "type": 1, "value": { @@ -4892,12 +6212,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458118470", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458118470", "content": { "type": 1, "value": { @@ -4922,12 +6242,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719304, - "modified": 1700589719304 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685663081137/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685663081137/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685663081137/details", "content": { "type": 1, "value": { @@ -4944,12 +6275,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685663081137", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685663081137", "content": { "type": 1, "value": { @@ -4974,12 +6305,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685732640623/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685732640623/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685732640623/details", "content": { "type": 1, "value": { @@ -4996,12 +6338,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1685732640623", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685732640623", "content": { "type": 1, "value": { @@ -5026,12 +6368,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496", "content": { "type": 1, "value": { @@ -5053,12 +6417,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687279230710/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1687279230710/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687279230710/details", "content": { "type": 1, "value": { @@ -5077,12 +6452,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1687279230710", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687279230710", "content": { "type": 1, "value": { @@ -5108,12 +6483,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985", "content": { "type": 1, "value": { @@ -5135,12 +6532,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1688400997533/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1688400997533/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1688400997533/details", "content": { "type": 1, "value": { @@ -5157,12 +6565,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1688400997533", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1688400997533", "content": { "type": 1, "value": { @@ -5187,12 +6595,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395462, + "modified": 1700748395462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689203359364/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1689203359364/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689203359364/details", "content": { "type": 1, "value": { @@ -5209,12 +6628,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1689203359364", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689203359364", "content": { "type": 1, "value": { @@ -5238,12 +6657,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395462, + "modified": 1700748395462 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/date_of_expiration", "content": { "type": 1, "value": { @@ -5252,12 +6671,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395463, + "modified": 1700748395463 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395463, + "modified": 1700748395463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/details", "content": { "type": 1, "value": { @@ -5273,12 +6703,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395463, + "modified": 1700748395463 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188", "content": { "type": 1, "value": { @@ -5301,12 +6731,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395463, + "modified": 1700748395463 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/date_of_expiration", "content": { "type": 1, "value": { @@ -5315,12 +6745,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395463, + "modified": 1700748395463 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395463, + "modified": 1700748395463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/details", "content": { "type": 1, "value": { @@ -5336,12 +6777,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395463, + "modified": 1700748395463 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161", "content": { "type": 1, "value": { @@ -5367,12 +6808,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395463, + "modified": 1700748395463 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details/costs[0]", "content": { "type": 1, "value": { @@ -5382,12 +6823,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395463, + "modified": 1700748395463 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details", "content": { "type": 1, "value": { @@ -5403,12 +6844,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395463, + "modified": 1700748395463 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772", "content": { "type": 1, "value": { @@ -5435,12 +6876,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395463, + "modified": 1700748395463 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details/costs[0]", "content": { "type": 1, "value": { @@ -5450,12 +6891,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395463, + "modified": 1700748395463 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details", "content": { "type": 1, "value": { @@ -5471,12 +6912,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395463, + "modified": 1700748395463 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489", "content": { "type": 1, "value": { @@ -5504,12 +6945,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395463, + "modified": 1700748395463 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details/costs[0]", "content": { "type": 1, "value": { @@ -5519,12 +6960,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395463, + "modified": 1700748395463 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details", "content": { "type": 1, "value": { @@ -5540,12 +6981,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395463, + "modified": 1700748395463 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435", "content": { "type": 1, "value": { @@ -5572,12 +7013,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details/costs[0]", "content": { "type": 1, "value": { @@ -5587,12 +7028,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details", "content": { "type": 1, "value": { @@ -5608,12 +7049,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623", "content": { "type": 1, "value": { @@ -5640,12 +7081,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1691685725174/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1691685725174/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1691685725174/details", "content": { "type": 1, "value": { @@ -5661,12 +7113,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1691685725174", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1691685725174", "content": { "type": 1, "value": { @@ -5690,12 +7142,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/date_of_expiration", "content": { "type": 1, "value": { @@ -5704,12 +7156,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395464, + "modified": 1700748395464 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/details", "content": { "type": 1, "value": { @@ -5725,12 +7188,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443", "content": { "type": 1, "value": { @@ -5753,12 +7216,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/date_of_expiration", "content": { "type": 1, "value": { @@ -5767,12 +7230,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/details", "content": { "type": 1, "value": { @@ -5788,12 +7262,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550", "content": { "type": 1, "value": { @@ -5819,12 +7293,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/date_of_expiration", "content": { "type": 1, "value": { @@ -5833,12 +7307,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395464, + "modified": 1700748395464 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/details", "content": { "type": 1, "value": { @@ -5854,12 +7339,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621", "content": { "type": 1, "value": { @@ -5885,12 +7370,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/date_of_expiration", "content": { "type": 1, "value": { @@ -5899,12 +7384,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/details", "content": { "type": 1, "value": { @@ -5920,12 +7416,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954", "content": { "type": 1, "value": { @@ -5952,12 +7448,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/date_of_expiration", "content": { "type": 1, "value": { @@ -5966,12 +7462,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/details", "content": { "type": 1, "value": { @@ -5987,12 +7494,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376", "content": { "type": 1, "value": { @@ -6015,12 +7522,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/date_of_expiration", "content": { "type": 1, "value": { @@ -6029,12 +7536,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/details", "content": { "type": 1, "value": { @@ -6050,12 +7568,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664", "content": { "type": 1, "value": { @@ -6078,12 +7596,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395464, + "modified": 1700748395464 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901/details", "content": { "type": 1, "value": { @@ -6101,12 +7630,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901", "content": { "type": 1, "value": { @@ -6130,12 +7659,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214/details", "content": { "type": 1, "value": { @@ -6153,12 +7693,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214", "content": { "type": 1, "value": { @@ -6182,12 +7722,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395464, + "modified": 1700748395464 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060/details", "content": { "type": 1, "value": { @@ -6205,12 +7756,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060", "content": { "type": 1, "value": { @@ -6234,12 +7785,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429/details", "content": { "type": 1, "value": { @@ -6257,12 +7819,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429", "content": { "type": 1, "value": { @@ -6286,12 +7848,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details/costs[0]", "content": { "type": 1, "value": { @@ -6301,12 +7863,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details", "content": { "type": 1, "value": { @@ -6322,12 +7884,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136", "content": { "type": 1, "value": { @@ -6355,12 +7917,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974/details", "content": { "type": 1, "value": { @@ -6376,12 +7949,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974", "content": { "type": 1, "value": { @@ -6405,12 +7978,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188/details", "content": { "type": 1, "value": { @@ -6426,12 +8010,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188", "content": { "type": 1, "value": { @@ -6455,12 +8039,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120/details", "content": { "type": 1, "value": { @@ -6478,12 +8073,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120", "content": { "type": 1, "value": { @@ -6507,12 +8102,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395464, + "modified": 1700748395464 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222/details", "content": { "type": 1, "value": { @@ -6530,12 +8136,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222", "content": { "type": 1, "value": { @@ -6559,12 +8165,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395465, + "modified": 1700748395465 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107/details", "content": { "type": 1, "value": { @@ -6582,12 +8199,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107", "content": { "type": 1, "value": { @@ -6611,12 +8228,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395465, + "modified": 1700748395465 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696114300558/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696114300558/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696114300558/details", "content": { "type": 1, "value": { @@ -6632,12 +8260,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696114300558", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696114300558", "content": { "type": 1, "value": { @@ -6662,12 +8290,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395465, + "modified": 1700748395465 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096/details", "content": { "type": 1, "value": { @@ -6683,12 +8322,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096", "content": { "type": 1, "value": { @@ -6713,12 +8352,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395465, + "modified": 1700748395465 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622/details", "content": { "type": 1, "value": { @@ -6734,12 +8384,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622", "content": { "type": 1, "value": { @@ -6764,12 +8414,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395465, + "modified": 1700748395465 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684/details", "content": { "type": 1, "value": { @@ -6785,12 +8446,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684", "content": { "type": 1, "value": { @@ -6815,12 +8476,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719305, - "modified": 1700589719305 + "created": 1700748395465, + "modified": 1700748395465 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186/details", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186/details", "content": { "type": 1, "value": { @@ -6836,12 +8508,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186", "content": { "type": 1, "value": { @@ -6866,12 +8538,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395465, + "modified": 1700748395465 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/costs[0]", "content": { "type": 1, "value": { @@ -6881,12 +8564,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084", "content": { "type": 1, "value": { @@ -6904,12 +8587,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805/costs[0]", "content": { "type": 1, "value": { @@ -6919,12 +8602,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805", "content": { "type": 1, "value": { @@ -6942,12 +8625,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080/costs[0]", "content": { "type": 1, "value": { @@ -6957,12 +8640,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080", "content": { "type": 1, "value": { @@ -6980,12 +8663,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128/costs[0]", "content": { "type": 1, "value": { @@ -6995,12 +8678,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128", "content": { "type": 1, "value": { @@ -7018,12 +8701,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424/costs[0]", "content": { "type": 1, "value": { @@ -7033,12 +8716,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424", "content": { "type": 1, "value": { @@ -7056,12 +8739,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395465, + "modified": 1700748395465 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/costs[0]", "content": { "type": 1, "value": { @@ -7071,12 +8765,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084", "content": { "type": 1, "value": { @@ -7094,12 +8788,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805/costs[0]", "content": { "type": 1, "value": { @@ -7109,12 +8803,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805", "content": { "type": 1, "value": { @@ -7132,12 +8826,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395465, + "modified": 1700748395465 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080/costs[0]", "content": { "type": 1, "value": { @@ -7147,12 +8841,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080", "content": { "type": 1, "value": { @@ -7170,12 +8864,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128/costs[0]", "content": { "type": 1, "value": { @@ -7185,12 +8879,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128", "content": { "type": 1, "value": { @@ -7208,12 +8902,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424/costs[0]", "content": { "type": 1, "value": { @@ -7223,12 +8917,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424", "content": { "type": 1, "value": { @@ -7246,12 +8940,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/costs[0]", "content": { "type": 1, "value": { @@ -7261,12 +8966,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084", "content": { "type": 1, "value": { @@ -7284,12 +8989,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805/costs[0]", "content": { "type": 1, "value": { @@ -7299,12 +9004,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805", "content": { "type": 1, "value": { @@ -7322,12 +9027,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468/costs[0]", "content": { "type": 1, "value": { @@ -7337,12 +9042,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468", "content": { "type": 1, "value": { @@ -7360,12 +9065,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591/costs[0]", "content": { "type": 1, "value": { @@ -7375,12 +9080,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591", "content": { "type": 1, "value": { @@ -7398,12 +9103,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395466, + "modified": 1700748395466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/costs[0]", "content": { "type": 1, "value": { @@ -7413,12 +9129,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084", "content": { "type": 1, "value": { @@ -7436,12 +9152,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805/costs[0]", "content": { "type": 1, "value": { @@ -7451,12 +9167,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805", "content": { "type": 1, "value": { @@ -7474,12 +9190,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591/costs[0]", "content": { "type": 1, "value": { @@ -7489,12 +9205,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591", "content": { "type": 1, "value": { @@ -7512,12 +9228,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/costs[0]", "content": { "type": 1, "value": { @@ -7527,12 +9254,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395466, + "modified": 1700748395466 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084", "content": { "type": 1, "value": { @@ -7551,12 +9278,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591/costs[0]", "content": { "type": 1, "value": { @@ -7566,12 +9293,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591", "content": { "type": 1, "value": { @@ -7590,12 +9317,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/costs/0", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/costs[0]", "content": { "type": 1, "value": { @@ -7605,12 +9343,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084", "content": { "type": 1, "value": { @@ -7629,12 +9367,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313/credit", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit", "content": { "type": 1, "value": { @@ -7645,12 +9405,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/000523147298669313", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313", "content": { "type": 1, "value": { @@ -7662,12 +9422,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001286046930633944/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001286046930633944/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001286046930633944/credit", + "path": "ivipcoin-db::__movement_wallet__/001286046930633944/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001286046930633944/credit", "content": { "type": 1, "value": { @@ -7676,12 +9469,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001286046930633944", + "path": "ivipcoin-db::__movement_wallet__/001286046930633944", "content": { "type": 1, "value": { @@ -7692,12 +9485,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/balances/IVIP", "content": { "type": 1, "value": { @@ -7707,12 +9500,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429", "content": { "type": 1, "value": { @@ -7738,12 +9564,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details/costs[0]", "content": { "type": 1, "value": { @@ -7753,12 +9579,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939", "content": { "type": 1, "value": { @@ -7781,12 +9618,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details/costs[0]", "content": { "type": 1, "value": { @@ -7796,12 +9633,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872", "content": { "type": 1, "value": { @@ -7824,12 +9672,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684624250482/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684624250482/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684624250482/details", "content": { "type": 1, "value": { @@ -7846,12 +9705,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684624250482", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684624250482", "content": { "type": 1, "value": { @@ -7876,12 +9735,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230", "content": { "type": 1, "value": { @@ -7903,12 +9784,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083", "content": { "type": 1, "value": { @@ -7930,12 +9833,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893", "content": { "type": 1, "value": { @@ -7961,12 +9886,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519", "content": { "type": 1, "value": { @@ -7992,12 +9939,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180", "content": { "type": 1, "value": { @@ -8023,12 +9992,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685384470907/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685384470907/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685384470907/details", "content": { "type": 1, "value": { @@ -8045,12 +10025,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685384470907", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685384470907", "content": { "type": 1, "value": { @@ -8075,12 +10055,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107", "content": { "type": 1, "value": { @@ -8106,12 +10108,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392262218/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392262218/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392262218/details", "content": { "type": 1, "value": { @@ -8128,12 +10141,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392262218", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392262218", "content": { "type": 1, "value": { @@ -8158,12 +10171,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392563175/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392563175/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392563175/details", "content": { "type": 1, "value": { @@ -8180,12 +10204,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392563175", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392563175", "content": { "type": 1, "value": { @@ -8210,12 +10234,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685394042885/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685394042885/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685394042885/details", "content": { "type": 1, "value": { @@ -8232,12 +10267,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685394042885", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685394042885", "content": { "type": 1, "value": { @@ -8262,12 +10297,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685450530237/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685450530237/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685450530237/details", "content": { "type": 1, "value": { @@ -8284,12 +10330,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685450530237", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685450530237", "content": { "type": 1, "value": { @@ -8314,12 +10360,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685455769977/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685455769977/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685455769977/details", "content": { "type": 1, "value": { @@ -8336,12 +10393,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685455769977", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685455769977", "content": { "type": 1, "value": { @@ -8366,12 +10423,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685743296302/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685743296302/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685743296302/details", "content": { "type": 1, "value": { @@ -8388,12 +10456,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685743296302", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685743296302", "content": { "type": 1, "value": { @@ -8418,12 +10486,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685744480429/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685744480429/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685744480429/details", "content": { "type": 1, "value": { @@ -8440,12 +10519,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685744480429", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685744480429", "content": { "type": 1, "value": { @@ -8470,12 +10549,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685745152104/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685745152104/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685745152104/details", "content": { "type": 1, "value": { @@ -8492,12 +10582,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1685745152104", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685745152104", "content": { "type": 1, "value": { @@ -8522,12 +10612,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099", "content": { "type": 1, "value": { @@ -8553,12 +10665,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436781/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436781/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436781/details", "content": { "type": 1, "value": { @@ -8577,12 +10700,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436781", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436781", "content": { "type": 1, "value": { @@ -8608,12 +10731,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436954/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436954/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436954/details", "content": { "type": 1, "value": { @@ -8632,12 +10766,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436954", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436954", "content": { "type": 1, "value": { @@ -8663,12 +10797,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687345768938/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1687345768938/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687345768938/details", "content": { "type": 1, "value": { @@ -8685,12 +10830,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1687345768938", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687345768938", "content": { "type": 1, "value": { @@ -8715,12 +10860,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1687393215194/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687393215194/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395467, + "modified": 1700748395467 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687393215194/details", "content": { "type": 1, "value": { @@ -8737,12 +10893,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1687393215194", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687393215194", "content": { "type": 1, "value": { @@ -8767,12 +10923,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395467, + "modified": 1700748395467 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1687495116294/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687495116294/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687495116294/details", "content": { "type": 1, "value": { @@ -8789,12 +10956,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1687495116294", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687495116294", "content": { "type": 1, "value": { @@ -8819,12 +10986,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687547056698/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1687547056698/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687547056698/details", "content": { "type": 1, "value": { @@ -8841,12 +11019,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1687547056698", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687547056698", "content": { "type": 1, "value": { @@ -8871,12 +11049,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622", "content": { "type": 1, "value": { @@ -8898,12 +11098,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630", "content": { "type": 1, "value": { @@ -8929,12 +11151,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689082225194/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689082225194/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689082225194/details", "content": { "type": 1, "value": { @@ -8951,12 +11184,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689082225194", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689082225194", "content": { "type": 1, "value": { @@ -8981,12 +11214,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689114929852/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689114929852/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689114929852/details", "content": { "type": 1, "value": { @@ -9003,12 +11247,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689114929852", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689114929852", "content": { "type": 1, "value": { @@ -9033,12 +11277,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893", "content": { "type": 1, "value": { @@ -9064,12 +11330,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689195736692/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689195736692/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689195736692/details", "content": { "type": 1, "value": { @@ -9086,12 +11363,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689195736692", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689195736692", "content": { "type": 1, "value": { @@ -9116,12 +11393,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204261841/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204261841/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204261841/details", "content": { "type": 1, "value": { @@ -9138,12 +11426,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204261841", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204261841", "content": { "type": 1, "value": { @@ -9168,12 +11456,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204343069/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204343069/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204343069/details", "content": { "type": 1, "value": { @@ -9190,12 +11489,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204343069", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204343069", "content": { "type": 1, "value": { @@ -9220,12 +11519,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368", "content": { "type": 1, "value": { @@ -9247,12 +11568,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136", "content": { "type": 1, "value": { @@ -9278,12 +11621,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689619360780/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689619360780/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689619360780/details", "content": { "type": 1, "value": { @@ -9300,12 +11654,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1689619360780", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689619360780", "content": { "type": 1, "value": { @@ -9330,12 +11684,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1690237331737/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690237331737/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690237331737/details", "content": { "type": 1, "value": { @@ -9352,12 +11717,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1690237331737", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690237331737", "content": { "type": 1, "value": { @@ -9382,12 +11747,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690273510959/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1690273510959/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690273510959/details", "content": { "type": 1, "value": { @@ -9404,12 +11780,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1690273510959", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690273510959", "content": { "type": 1, "value": { @@ -9434,12 +11810,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/date_of_expiration", "content": { "type": 1, "value": { @@ -9448,12 +11824,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/details", "content": { "type": 1, "value": { @@ -9469,12 +11856,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014", "content": { "type": 1, "value": { @@ -9497,12 +11884,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267/details", "content": { "type": 1, "value": { @@ -9518,12 +11916,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267", "content": { "type": 1, "value": { @@ -9547,12 +11945,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428/details", "content": { "type": 1, "value": { @@ -9568,12 +11977,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428", "content": { "type": 1, "value": { @@ -9598,12 +12007,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371/details", "content": { "type": 1, "value": { @@ -9619,12 +12039,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371", "content": { "type": 1, "value": { @@ -9649,12 +12069,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900/details", "content": { "type": 1, "value": { @@ -9670,12 +12101,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900", "content": { "type": 1, "value": { @@ -9700,12 +12131,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/date_of_expiration", "content": { "type": 1, "value": { @@ -9714,12 +12145,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/details", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/details", "content": { "type": 1, "value": { @@ -9735,12 +12177,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545", "content": { "type": 1, "value": { @@ -9764,12 +12206,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/costs/0", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/costs[0]", "content": { "type": 1, "value": { @@ -9779,12 +12232,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939", "content": { "type": 1, "value": { @@ -9802,12 +12255,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872/costs/0", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872/costs[0]", "content": { "type": 1, "value": { @@ -9817,12 +12270,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872", "content": { "type": 1, "value": { @@ -9840,12 +12293,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977/credit", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit", "content": { "type": 1, "value": { @@ -9856,12 +12331,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/001345425233260977", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977", "content": { "type": 1, "value": { @@ -9873,12 +12348,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/002445768964969286/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/002445768964969286/balances/BRL", "content": { "type": 1, "value": { @@ -9888,12 +12363,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629", + "path": "ivipcoin-db::__movement_wallet__/002445768964969286/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629", "content": { "type": 1, "value": { @@ -9919,12 +12427,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/002445768964969286/credit", + "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/002445768964969286/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/002445768964969286/credit", "content": { "type": 1, "value": { @@ -9933,12 +12463,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/002445768964969286", + "path": "ivipcoin-db::__movement_wallet__/002445768964969286", "content": { "type": 1, "value": { @@ -9949,12 +12479,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/balances/IVIP", "content": { "type": 1, "value": { @@ -9964,12 +12494,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719306, - "modified": 1700589719306 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726", + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726", "content": { "type": 1, "value": { @@ -9993,12 +12556,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792", + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792", "content": { "type": 1, "value": { @@ -10022,12 +12607,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058", + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058", "content": { "type": 1, "value": { @@ -10053,12 +12660,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395468, + "modified": 1700748395468 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/history/1679908062539/details", + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1679908062539/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1679908062539/details", "content": { "type": 1, "value": { @@ -10075,12 +12693,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/history/1679908062539", + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1679908062539", "content": { "type": 1, "value": { @@ -10105,12 +12723,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/history/1687109837625/details", + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1687109837625/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1687109837625/details", "content": { "type": 1, "value": { @@ -10127,12 +12756,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/history/1687109837625", + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1687109837625", "content": { "type": 1, "value": { @@ -10156,12 +12785,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533/credit", + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/credit", "content": { "type": 1, "value": { @@ -10170,12 +12821,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/003757297582092533", + "path": "ivipcoin-db::__movement_wallet__/003757297582092533", "content": { "type": 1, "value": { @@ -10187,12 +12838,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/005753000686812060", + "path": "ivipcoin-db::__movement_wallet__/005753000686812060/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/005753000686812060/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/005753000686812060", "content": { "type": 1, "value": { @@ -10203,12 +12876,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007219693774253022/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/balances/BRL", "content": { "type": 1, "value": { @@ -10218,12 +12891,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365", + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365", "content": { "type": 1, "value": { @@ -10248,12 +12954,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118", + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118", "content": { "type": 1, "value": { @@ -10278,12 +13006,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/date_of_expiration", "content": { "type": 1, "value": { @@ -10292,12 +13020,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/details", + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/details", "content": { "type": 1, "value": { @@ -10313,12 +13052,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978", + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978", "content": { "type": 1, "value": { @@ -10345,12 +13084,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007219693774253022/credit", + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/credit", "content": { "type": 1, "value": { @@ -10359,12 +13120,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007219693774253022", + "path": "ivipcoin-db::__movement_wallet__/007219693774253022", "content": { "type": 1, "value": { @@ -10376,12 +13137,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007971641402707341/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007971641402707341/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/007971641402707341", + "path": "ivipcoin-db::__movement_wallet__/007971641402707341", "content": { "type": 1, "value": { @@ -10392,12 +13175,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/010022330876236384", + "path": "ivipcoin-db::__movement_wallet__/010022330876236384/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/010022330876236384/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/010022330876236384", "content": { "type": 1, "value": { @@ -10408,12 +13213,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055", "content": { "type": 1, "value": { @@ -10439,12 +13277,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683", "content": { "type": 1, "value": { @@ -10470,12 +13330,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1684625025298/details", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684625025298/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684625025298/details", "content": { "type": 1, "value": { @@ -10492,12 +13363,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1684625025298", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684625025298", "content": { "type": 1, "value": { @@ -10522,12 +13393,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404", "content": { "type": 1, "value": { @@ -10553,12 +13446,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720288992/details", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720288992/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720288992/details", "content": { "type": 1, "value": { @@ -10575,12 +13479,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720288992", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720288992", "content": { "type": 1, "value": { @@ -10604,12 +13508,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720363618/details", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720363618/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720363618/details", "content": { "type": 1, "value": { @@ -10626,12 +13541,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720363618", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720363618", "content": { "type": 1, "value": { @@ -10655,12 +13570,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1688400602023/details", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688400602023/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688400602023/details", "content": { "type": 1, "value": { @@ -10677,12 +13603,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1688400602023", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688400602023", "content": { "type": 1, "value": { @@ -10707,12 +13633,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1688595538475/details", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688595538475/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688595538475/details", "content": { "type": 1, "value": { @@ -10729,12 +13666,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1688595538475", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688595538475", "content": { "type": 1, "value": { @@ -10758,12 +13695,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792/details", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792/details", "content": { "type": 1, "value": { @@ -10779,12 +13727,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792", "content": { "type": 1, "value": { @@ -10808,12 +13756,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details/costs[0]", "content": { "type": 1, "value": { @@ -10823,12 +13771,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details", "content": { "type": 1, "value": { @@ -10844,12 +13792,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377", "content": { "type": 1, "value": { @@ -10876,12 +13824,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details/costs[0]", "content": { "type": 1, "value": { @@ -10891,12 +13839,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details", "content": { "type": 1, "value": { @@ -10912,12 +13860,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266", "content": { "type": 1, "value": { @@ -10944,12 +13892,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details/costs[0]", "content": { "type": 1, "value": { @@ -10959,12 +13907,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details", "content": { "type": 1, "value": { @@ -10980,12 +13928,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361", "content": { "type": 1, "value": { @@ -11013,12 +13961,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414/credit", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/credit", "content": { "type": 1, "value": { @@ -11027,12 +13997,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/011720487643927414", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414", "content": { "type": 1, "value": { @@ -11044,12 +14014,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012415886921139930/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012415886921139930/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/012415886921139930", + "path": "ivipcoin-db::__movement_wallet__/012415886921139930", "content": { "type": 1, "value": { @@ -11060,12 +14052,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384", + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384", "content": { "type": 1, "value": { @@ -11091,12 +14116,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/012886227244594872/history/1679266899414/details", + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1679266899414/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1679266899414/details", "content": { "type": 1, "value": { @@ -11113,12 +14149,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/012886227244594872/history/1679266899414", + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1679266899414", "content": { "type": 1, "value": { @@ -11143,12 +14179,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/012886227244594872/history/1685668294321/details", + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1685668294321/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1685668294321/details", "content": { "type": 1, "value": { @@ -11165,12 +14212,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/012886227244594872/history/1685668294321", + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1685668294321", "content": { "type": 1, "value": { @@ -11195,12 +14242,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/012886227244594872/credit", + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/credit", "content": { "type": 1, "value": { @@ -11209,12 +14278,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/012886227244594872", + "path": "ivipcoin-db::__movement_wallet__/012886227244594872", "content": { "type": 1, "value": { @@ -11226,12 +14295,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/balances/IVIP", "content": { "type": 1, "value": { @@ -11241,12 +14310,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531", "content": { "type": 1, "value": { @@ -11272,12 +14374,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1684624257232/details", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684624257232/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395469, + "modified": 1700748395469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684624257232/details", "content": { "type": 1, "value": { @@ -11294,12 +14407,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1684624257232", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684624257232", "content": { "type": 1, "value": { @@ -11324,12 +14437,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395469, + "modified": 1700748395469 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113576960/details", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113576960/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113576960/details", "content": { "type": 1, "value": { @@ -11346,12 +14470,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113576960", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113576960", "content": { "type": 1, "value": { @@ -11376,12 +14500,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113714689/details", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113714689/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113714689/details", "content": { "type": 1, "value": { @@ -11398,12 +14533,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113714689", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113714689", "content": { "type": 1, "value": { @@ -11427,12 +14562,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113759469/details", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113759469/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113759469/details", "content": { "type": 1, "value": { @@ -11449,12 +14595,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113759469", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113759469", "content": { "type": 1, "value": { @@ -11478,12 +14624,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313544564/details", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313544564/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313544564/details", "content": { "type": 1, "value": { @@ -11500,12 +14657,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313544564", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313544564", "content": { "type": 1, "value": { @@ -11529,12 +14686,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313588225/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313588225/details", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313588225/details", "content": { "type": 1, "value": { @@ -11551,12 +14719,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313588225", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313588225", "content": { "type": 1, "value": { @@ -11580,12 +14748,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1688595606369/details", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1688595606369/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1688595606369/details", "content": { "type": 1, "value": { @@ -11602,12 +14781,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1688595606369", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1688595606369", "content": { "type": 1, "value": { @@ -11631,12 +14810,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709/details", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709/details", "content": { "type": 1, "value": { @@ -11652,12 +14842,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709", "content": { "type": 1, "value": { @@ -11681,12 +14871,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298/credit", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/credit", "content": { "type": 1, "value": { @@ -11695,12 +14907,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/015094733487976298", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298", "content": { "type": 1, "value": { @@ -11712,12 +14924,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016159398553157178/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016159398553157178/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016159398553157178/credit", + "path": "ivipcoin-db::__movement_wallet__/016159398553157178/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016159398553157178/credit", "content": { "type": 1, "value": { @@ -11726,12 +14971,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016159398553157178", + "path": "ivipcoin-db::__movement_wallet__/016159398553157178", "content": { "type": 1, "value": { @@ -11742,12 +14987,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances/BRL", "content": { "type": 1, "value": { @@ -11757,12 +15002,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances/IVIP", "content": { "type": 1, "value": { @@ -11772,12 +15017,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992", "content": { "type": 1, "value": { @@ -11801,12 +15079,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429", "content": { "type": 1, "value": { @@ -11832,12 +15132,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255", "content": { "type": 1, "value": { @@ -11863,12 +15185,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1684626826140/details", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684626826140/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684626826140/details", "content": { "type": 1, "value": { @@ -11885,12 +15218,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1684626826140", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684626826140", "content": { "type": 1, "value": { @@ -11915,12 +15248,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259", "content": { "type": 1, "value": { @@ -11942,12 +15297,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106", "content": { "type": 1, "value": { @@ -11971,12 +15348,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415", "content": { "type": 1, "value": { @@ -12002,12 +15401,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322", "content": { "type": 1, "value": { @@ -12031,12 +15452,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440/credit", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/credit", "content": { "type": 1, "value": { @@ -12045,12 +15488,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/016475686934047440", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440", "content": { "type": 1, "value": { @@ -12061,12 +15504,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017170382309708910/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017170382309708910/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017170382309708910/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017170382309708910/credit", + "path": "ivipcoin-db::__movement_wallet__/017170382309708910/credit", "content": { "type": 1, "value": { @@ -12075,12 +15551,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017170382309708910", + "path": "ivipcoin-db::__movement_wallet__/017170382309708910", "content": { "type": 1, "value": { @@ -12091,12 +15567,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/balances/IVIP", "content": { "type": 1, "value": { @@ -12106,12 +15582,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589", "content": { "type": 1, "value": { @@ -12137,12 +15646,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details/costs[0]", "content": { "type": 1, "value": { @@ -12152,12 +15661,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388", "content": { "type": 1, "value": { @@ -12180,12 +15700,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684018960001/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1684018960001/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684018960001/details", "content": { "type": 1, "value": { @@ -12202,12 +15733,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1684018960001", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684018960001", "content": { "type": 1, "value": { @@ -12232,12 +15763,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297", "content": { "type": 1, "value": { @@ -12263,12 +15816,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684631103258/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1684631103258/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684631103258/details", "content": { "type": 1, "value": { @@ -12285,12 +15849,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1684631103258", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684631103258", "content": { "type": 1, "value": { @@ -12315,12 +15879,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760", "content": { "type": 1, "value": { @@ -12342,12 +15928,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395470, + "modified": 1700748395470 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726", "content": { "type": 1, "value": { @@ -12373,12 +15981,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686591730981/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1686591730981/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686591730981/details", "content": { "type": 1, "value": { @@ -12397,12 +16016,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1686591730981", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686591730981", "content": { "type": 1, "value": { @@ -12428,12 +16047,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645", "content": { "type": 1, "value": { @@ -12459,12 +16100,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688315152944/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1688315152944/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688315152944/details", "content": { "type": 1, "value": { @@ -12483,12 +16135,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1688315152944", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688315152944", "content": { "type": 1, "value": { @@ -12514,12 +16166,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688426195717/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1688426195717/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688426195717/details", "content": { "type": 1, "value": { @@ -12536,12 +16199,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1688426195717", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688426195717", "content": { "type": 1, "value": { @@ -12566,12 +16229,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322", "content": { "type": 1, "value": { @@ -12597,12 +16282,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349679189/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349679189/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349679189/details", "content": { "type": 1, "value": { @@ -12619,12 +16315,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349679189", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349679189", "content": { "type": 1, "value": { @@ -12649,12 +16345,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065", "content": { "type": 1, "value": { @@ -12680,12 +16398,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1689794977578/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689794977578/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689794977578/details", "content": { "type": 1, "value": { @@ -12702,12 +16431,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1689794977578", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689794977578", "content": { "type": 1, "value": { @@ -12731,12 +16460,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476", "content": { "type": 1, "value": { @@ -12758,12 +16509,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231/details", "content": { "type": 1, "value": { @@ -12779,12 +16541,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231", "content": { "type": 1, "value": { @@ -12808,12 +16570,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559/details", "content": { "type": 1, "value": { @@ -12829,12 +16602,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559", "content": { "type": 1, "value": { @@ -12858,12 +16631,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419/details", "content": { "type": 1, "value": { @@ -12879,12 +16663,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419", "content": { "type": 1, "value": { @@ -12908,12 +16692,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706/details", "content": { "type": 1, "value": { @@ -12929,12 +16724,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706", "content": { "type": 1, "value": { @@ -12958,12 +16753,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/date_of_expiration", "content": { "type": 1, "value": { @@ -12972,12 +16767,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/details", "content": { "type": 1, "value": { @@ -12993,12 +16799,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629", "content": { "type": 1, "value": { @@ -13025,12 +16831,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692210661601/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1692210661601/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692210661601/details", "content": { "type": 1, "value": { @@ -13049,12 +16866,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1692210661601", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692210661601", "content": { "type": 1, "value": { @@ -13080,12 +16897,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794/details", "content": { "type": 1, "value": { @@ -13101,12 +16929,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794", "content": { "type": 1, "value": { @@ -13130,12 +16958,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details/costs[0]", "content": { "type": 1, "value": { @@ -13145,12 +16973,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details", "content": { "type": 1, "value": { @@ -13166,12 +16994,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358", "content": { "type": 1, "value": { @@ -13199,12 +17027,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477/details", "content": { "type": 1, "value": { @@ -13220,12 +17059,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477", "content": { "type": 1, "value": { @@ -13252,12 +17091,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/date_of_expiration", "content": { "type": 1, "value": { @@ -13266,12 +17105,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/details", "content": { "type": 1, "value": { @@ -13287,12 +17137,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011", "content": { "type": 1, "value": { @@ -13319,12 +17169,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395471, + "modified": 1700748395471 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395472, + "modified": 1700748395472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887/details", "content": { "type": 1, "value": { @@ -13342,12 +17203,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887", "content": { "type": 1, "value": { @@ -13371,12 +17232,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719307, - "modified": 1700589719307 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395472, + "modified": 1700748395472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163/details", "content": { "type": 1, "value": { @@ -13392,12 +17264,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163", "content": { "type": 1, "value": { @@ -13424,12 +17296,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554/details", "content": { "type": 1, "value": { @@ -13445,12 +17328,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554", "content": { "type": 1, "value": { @@ -13475,12 +17358,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/date_of_expiration", "content": { "type": 1, "value": { @@ -13489,12 +17372,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/details", "content": { "type": 1, "value": { @@ -13510,12 +17404,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740", "content": { "type": 1, "value": { @@ -13543,12 +17437,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717/details", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395472, + "modified": 1700748395472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717/details", "content": { "type": 1, "value": { @@ -13566,12 +17471,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717", "content": { "type": 1, "value": { @@ -13596,12 +17501,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/costs/0", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395472, + "modified": 1700748395472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/costs[0]", "content": { "type": 1, "value": { @@ -13611,12 +17527,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388", "content": { "type": 1, "value": { @@ -13634,12 +17550,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/costs/0", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/costs[0]", "content": { "type": 1, "value": { @@ -13649,12 +17576,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388", "content": { "type": 1, "value": { @@ -13672,12 +17599,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/costs/0", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395472, + "modified": 1700748395472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/costs[0]", "content": { "type": 1, "value": { @@ -13687,12 +17625,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388", "content": { "type": 1, "value": { @@ -13710,12 +17648,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/costs/0", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395472, + "modified": 1700748395472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/costs[0]", "content": { "type": 1, "value": { @@ -13725,12 +17674,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388", "content": { "type": 1, "value": { @@ -13749,12 +17698,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/costs/0", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395472, + "modified": 1700748395472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/costs[0]", "content": { "type": 1, "value": { @@ -13764,12 +17724,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388", "content": { "type": 1, "value": { @@ -13788,12 +17748,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062/credit", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395472, + "modified": 1700748395472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395472, + "modified": 1700748395472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit", "content": { "type": 1, "value": { @@ -13804,12 +17786,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017609193050025062", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062", "content": { "type": 1, "value": { @@ -13821,12 +17803,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395472, + "modified": 1700748395472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392", + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392", "content": { "type": 1, "value": { @@ -13852,12 +17856,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017622605984978002/history/1685471938618/details", + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1685471938618/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1685471938618/details", "content": { "type": 1, "value": { @@ -13874,12 +17889,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017622605984978002/history/1685471938618", + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1685471938618", "content": { "type": 1, "value": { @@ -13904,12 +17919,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017622605984978002/credit", + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/credit", "content": { "type": 1, "value": { @@ -13918,12 +17955,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017622605984978002/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/balances/IVIP", "content": { "type": 1, "value": { @@ -13933,12 +17970,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/017622605984978002", + "path": "ivipcoin-db::__movement_wallet__/017622605984978002", "content": { "type": 1, "value": { @@ -13950,12 +17998,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/018061972197789932/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/018061972197789932", + "path": "ivipcoin-db::__movement_wallet__/018061972197789932/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/018061972197789932", "content": { "type": 1, "value": { @@ -13966,12 +18036,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/balances/IVIP", "content": { "type": 1, "value": { @@ -13981,12 +18051,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034", "content": { "type": 1, "value": { @@ -14010,12 +18113,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594", "content": { "type": 1, "value": { @@ -14041,12 +18166,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348", "content": { "type": 1, "value": { @@ -14071,12 +18218,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1678162119494/details", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678162119494/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678162119494/details", "content": { "type": 1, "value": { @@ -14093,12 +18251,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1678162119494", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678162119494", "content": { "type": 1, "value": { @@ -14123,12 +18281,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678201718893/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1678201718893/details", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678201718893/details", "content": { "type": 1, "value": { @@ -14145,12 +18314,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1678201718893", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678201718893", "content": { "type": 1, "value": { @@ -14175,12 +18344,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932", "content": { "type": 1, "value": { @@ -14204,12 +18395,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776", "content": { "type": 1, "value": { @@ -14235,12 +18448,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1687525932247/details", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687525932247/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687525932247/details", "content": { "type": 1, "value": { @@ -14257,12 +18481,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1687525932247", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687525932247", "content": { "type": 1, "value": { @@ -14287,12 +18511,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1688054453004/details", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688054453004/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688054453004/details", "content": { "type": 1, "value": { @@ -14309,12 +18544,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1688054453004", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688054453004", "content": { "type": 1, "value": { @@ -14339,12 +18574,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395", "content": { "type": 1, "value": { @@ -14366,12 +18623,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1688400574946/details", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688400574946/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688400574946/details", "content": { "type": 1, "value": { @@ -14388,12 +18656,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1688400574946", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688400574946", "content": { "type": 1, "value": { @@ -14417,12 +18685,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079119787/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079119787/details", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079119787/details", "content": { "type": 1, "value": { @@ -14439,12 +18718,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079119787", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079119787", "content": { "type": 1, "value": { @@ -14469,12 +18748,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079120545/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079120545/details", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079120545/details", "content": { "type": 1, "value": { @@ -14491,12 +18781,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079120545", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079120545", "content": { "type": 1, "value": { @@ -14521,12 +18811,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409/details", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409/details", "content": { "type": 1, "value": { @@ -14542,12 +18843,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409", "content": { "type": 1, "value": { @@ -14571,12 +18872,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046/details", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046/details", "content": { "type": 1, "value": { @@ -14592,12 +18904,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046", "content": { "type": 1, "value": { @@ -14621,12 +18933,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176/details", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176/details", "content": { "type": 1, "value": { @@ -14642,12 +18965,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176", "content": { "type": 1, "value": { @@ -14671,12 +18994,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226/details", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226/details", "content": { "type": 1, "value": { @@ -14692,12 +19026,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226", "content": { "type": 1, "value": { @@ -14722,12 +19056,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766/details", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766/details", "content": { "type": 1, "value": { @@ -14743,12 +19088,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766", "content": { "type": 1, "value": { @@ -14773,12 +19118,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264/credit", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/credit", "content": { "type": 1, "value": { @@ -14788,12 +19155,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019211721108032264", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264", "content": { "type": 1, "value": { @@ -14805,12 +19172,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019965556064975630/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/balances/BRL", "content": { "type": 1, "value": { @@ -14820,12 +19187,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068", + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068", "content": { "type": 1, "value": { @@ -14850,12 +19250,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395473, + "modified": 1700748395473 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588/details", + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588/details", "content": { "type": 1, "value": { @@ -14871,12 +19282,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588", + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588", "content": { "type": 1, "value": { @@ -14900,12 +19311,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019965556064975630/credit", + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/credit", "content": { "type": 1, "value": { @@ -14914,12 +19347,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/019965556064975630", + "path": "ivipcoin-db::__movement_wallet__/019965556064975630", "content": { "type": 1, "value": { @@ -14931,12 +19364,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances/BRL", "content": { "type": 1, "value": { @@ -14946,12 +19379,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances/IVIP", "content": { "type": 1, "value": { @@ -14961,12 +19394,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136", "content": { "type": 1, "value": { @@ -14992,12 +19458,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678147737654/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1678147737654/details", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678147737654/details", "content": { "type": 1, "value": { @@ -15014,12 +19491,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1678147737654", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678147737654", "content": { "type": 1, "value": { @@ -15044,12 +19521,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678160584706/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1678160584706/details", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678160584706/details", "content": { "type": 1, "value": { @@ -15066,12 +19554,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1678160584706", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678160584706", "content": { "type": 1, "value": { @@ -15096,12 +19584,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678162248934/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1678162248934/details", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678162248934/details", "content": { "type": 1, "value": { @@ -15118,12 +19617,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1678162248934", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678162248934", "content": { "type": 1, "value": { @@ -15148,12 +19647,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/barcode", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/barcode", "content": { "type": 1, "value": { @@ -15161,12 +19660,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/costs[0]", "content": { "type": 1, "value": { @@ -15176,12 +19675,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details", "content": { "type": 1, "value": { @@ -15198,12 +19697,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968", "content": { "type": 1, "value": { @@ -15226,12 +19725,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684348383580/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1684348383580/details", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684348383580/details", "content": { "type": 1, "value": { @@ -15248,12 +19758,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1684348383580", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684348383580", "content": { "type": 1, "value": { @@ -15278,12 +19788,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1684624810300/details", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684624810300/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684624810300/details", "content": { "type": 1, "value": { @@ -15300,12 +19821,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1684624810300", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684624810300", "content": { "type": 1, "value": { @@ -15330,12 +19851,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1685668591211/details", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1685668591211/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1685668591211/details", "content": { "type": 1, "value": { @@ -15352,12 +19884,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1685668591211", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1685668591211", "content": { "type": 1, "value": { @@ -15381,12 +19913,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853", "content": { "type": 1, "value": { @@ -15408,12 +19962,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details/costs[0]", "content": { "type": 1, "value": { @@ -15423,12 +19977,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details", "content": { "type": 1, "value": { @@ -15444,12 +19998,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659", "content": { "type": 1, "value": { @@ -15477,12 +20031,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719308, - "modified": 1700589719308 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details/costs[0]", "content": { "type": 1, "value": { @@ -15492,12 +20046,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details", "content": { "type": 1, "value": { @@ -15513,12 +20067,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870", "content": { "type": 1, "value": { @@ -15545,12 +20099,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604/credit", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/credit", "content": { "type": 1, "value": { @@ -15559,12 +20135,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/021977101011675604", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604", "content": { "type": 1, "value": { @@ -15576,12 +20152,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/balances/IVIP", "content": { "type": 1, "value": { @@ -15591,12 +20167,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436", + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436", "content": { "type": 1, "value": { @@ -15622,12 +20231,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555", + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555", "content": { "type": 1, "value": { @@ -15649,12 +20280,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748", + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748", "content": { "type": 1, "value": { @@ -15676,12 +20329,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689357674118/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/history/1689357674118/details", + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689357674118/details", "content": { "type": 1, "value": { @@ -15698,12 +20362,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/history/1689357674118", + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689357674118", "content": { "type": 1, "value": { @@ -15728,12 +20392,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809/details", + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809/details", "content": { "type": 1, "value": { @@ -15749,12 +20424,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809", + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809", "content": { "type": 1, "value": { @@ -15778,12 +20453,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750/credit", + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/credit", "content": { "type": 1, "value": { @@ -15792,12 +20489,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/023129781601157750", + "path": "ivipcoin-db::__movement_wallet__/023129781601157750", "content": { "type": 1, "value": { @@ -15809,12 +20506,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144", "content": { "type": 1, "value": { @@ -15840,12 +20559,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1688839141121/details", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688839141121/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688839141121/details", "content": { "type": 1, "value": { @@ -15862,12 +20592,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1688839141121", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688839141121", "content": { "type": 1, "value": { @@ -15892,12 +20622,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860", "content": { "type": 1, "value": { @@ -15923,12 +20675,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1689278842357/details", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689278842357/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689278842357/details", "content": { "type": 1, "value": { @@ -15945,12 +20708,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1689278842357", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689278842357", "content": { "type": 1, "value": { @@ -15974,12 +20737,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1689295244660/details", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689295244660/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689295244660/details", "content": { "type": 1, "value": { @@ -15996,12 +20770,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1689295244660", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689295244660", "content": { "type": 1, "value": { @@ -16025,12 +20799,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243", "content": { "type": 1, "value": { @@ -16052,12 +20848,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945", "content": { "type": 1, "value": { @@ -16079,12 +20897,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647/details", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395474, + "modified": 1700748395474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647/details", "content": { "type": 1, "value": { @@ -16100,12 +20929,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647", "content": { "type": 1, "value": { @@ -16129,12 +20958,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details/costs[0]", "content": { "type": 1, "value": { @@ -16144,12 +20973,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395474, + "modified": 1700748395474 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details", "content": { "type": 1, "value": { @@ -16165,12 +20994,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697", "content": { "type": 1, "value": { @@ -16197,12 +21026,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053/details", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053/details", "content": { "type": 1, "value": { @@ -16218,12 +21058,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053", "content": { "type": 1, "value": { @@ -16247,12 +21087,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974/details", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974/details", "content": { "type": 1, "value": { @@ -16268,12 +21119,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974", "content": { "type": 1, "value": { @@ -16300,12 +21151,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/date_of_expiration", "content": { "type": 1, "value": { @@ -16314,12 +21165,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/details", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/details", "content": { "type": 1, "value": { @@ -16335,12 +21197,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637", "content": { "type": 1, "value": { @@ -16367,12 +21229,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694612208335/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694612208335/details", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694612208335/details", "content": { "type": 1, "value": { @@ -16388,12 +21261,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694612208335", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694612208335", "content": { "type": 1, "value": { @@ -16417,12 +21290,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/date_of_expiration", "content": { "type": 1, "value": { @@ -16431,12 +21304,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/details", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/details", "content": { "type": 1, "value": { @@ -16452,12 +21336,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990", "content": { "type": 1, "value": { @@ -16484,12 +21368,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694641684988/details", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694641684988/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694641684988/details", "content": { "type": 1, "value": { @@ -16505,12 +21400,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694641684988", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694641684988", "content": { "type": 1, "value": { @@ -16534,12 +21429,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details/costs[0]", "content": { "type": 1, "value": { @@ -16549,12 +21444,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details", "content": { "type": 1, "value": { @@ -16570,12 +21465,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880", "content": { "type": 1, "value": { @@ -16603,12 +21498,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047/details", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047/details", "content": { "type": 1, "value": { @@ -16624,12 +21530,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047", "content": { "type": 1, "value": { @@ -16654,12 +21560,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/credit", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/credit", "content": { "type": 1, "value": { @@ -16669,12 +21597,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/balances/IVIP", "content": { "type": 1, "value": { @@ -16684,12 +21612,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/025514055020579240", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240", "content": { "type": 1, "value": { @@ -16701,12 +21640,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/balances/IVIP", "content": { "type": 1, "value": { @@ -16716,12 +21655,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707", "content": { "type": 1, "value": { @@ -16747,12 +21719,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618", "content": { "type": 1, "value": { @@ -16778,12 +21772,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202", "content": { "type": 1, "value": { @@ -16809,12 +21825,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521", "content": { "type": 1, "value": { @@ -16836,12 +21874,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details/costs[0]", "content": { "type": 1, "value": { @@ -16851,12 +21889,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344", "content": { "type": 1, "value": { @@ -16879,12 +21928,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1684018921033/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1684018921033/details", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1684018921033/details", "content": { "type": 1, "value": { @@ -16901,12 +21961,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1684018921033", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1684018921033", "content": { "type": 1, "value": { @@ -16931,12 +21991,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995", "content": { "type": 1, "value": { @@ -16962,12 +22044,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542", "content": { "type": 1, "value": { @@ -16989,12 +22093,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1689275206669/details", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689275206669/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689275206669/details", "content": { "type": 1, "value": { @@ -17011,12 +22126,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1689275206669", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689275206669", "content": { "type": 1, "value": { @@ -17041,12 +22156,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/date_of_expiration", "content": { "type": 1, "value": { @@ -17055,12 +22170,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/details", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/details", "content": { "type": 1, "value": { @@ -17076,12 +22202,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124", "content": { "type": 1, "value": { @@ -17108,12 +22234,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690822928470/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690822928470/details", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690822928470/details", "content": { "type": 1, "value": { @@ -17129,12 +22266,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690822928470", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690822928470", "content": { "type": 1, "value": { @@ -17158,12 +22295,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/date_of_expiration", "content": { "type": 1, "value": { @@ -17172,12 +22309,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/details", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/details", "content": { "type": 1, "value": { @@ -17193,12 +22341,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427", "content": { "type": 1, "value": { @@ -17225,12 +22373,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690977815869/details", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690977815869/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690977815869/details", "content": { "type": 1, "value": { @@ -17246,12 +22405,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/history/1690977815869", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690977815869", "content": { "type": 1, "value": { @@ -17275,12 +22434,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/costs/0", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/costs[0]", "content": { "type": 1, "value": { @@ -17290,12 +22460,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344", "content": { "type": 1, "value": { @@ -17312,12 +22482,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372/credit", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit", "content": { "type": 1, "value": { @@ -17328,12 +22520,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/026685155320837372", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372", "content": { "type": 1, "value": { @@ -17345,12 +22537,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027193309143186410", + "path": "ivipcoin-db::__movement_wallet__/027193309143186410/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027193309143186410/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027193309143186410", "content": { "type": 1, "value": { @@ -17361,12 +22575,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances/BRL", "content": { "type": 1, "value": { @@ -17376,12 +22590,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances/IVIP", "content": { "type": 1, "value": { @@ -17391,12 +22605,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035", + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035", "content": { "type": 1, "value": { @@ -17422,12 +22669,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162", + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162", "content": { "type": 1, "value": { @@ -17453,12 +22722,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/history/1684625508072/details", + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684625508072/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684625508072/details", "content": { "type": 1, "value": { @@ -17475,12 +22755,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/history/1684625508072", + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684625508072", "content": { "type": 1, "value": { @@ -17505,12 +22785,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730", + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730", "content": { "type": 1, "value": { @@ -17532,12 +22834,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765", + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765", "content": { "type": 1, "value": { @@ -17559,12 +22883,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624/credit", + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/credit", "content": { "type": 1, "value": { @@ -17573,12 +22919,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/027536607098873624", + "path": "ivipcoin-db::__movement_wallet__/027536607098873624", "content": { "type": 1, "value": { @@ -17590,12 +22936,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/028175815433013172", + "path": "ivipcoin-db::__movement_wallet__/028175815433013172/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/028175815433013172/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/028175815433013172", "content": { "type": 1, "value": { @@ -17606,12 +22974,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/028947617959504292/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/028947617959504292", + "path": "ivipcoin-db::__movement_wallet__/028947617959504292/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/028947617959504292", "content": { "type": 1, "value": { @@ -17622,12 +23012,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/credit", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395475, + "modified": 1700748395475 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/credit", "content": { "type": 1, "value": { @@ -17636,12 +23048,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/date_of_expiration", "content": { "type": 1, "value": { @@ -17650,12 +23062,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395475, + "modified": 1700748395475 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/details", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/details", "content": { "type": 1, "value": { @@ -17671,12 +23094,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269", "content": { "type": 1, "value": { @@ -17699,12 +23122,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/date_of_expiration", "content": { "type": 1, "value": { @@ -17713,12 +23136,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/details", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/details", "content": { "type": 1, "value": { @@ -17734,12 +23168,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147", "content": { "type": 1, "value": { @@ -17762,12 +23196,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/date_of_expiration", "content": { "type": 1, "value": { @@ -17776,12 +23210,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/details", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/details", "content": { "type": 1, "value": { @@ -17797,12 +23242,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336", "content": { "type": 1, "value": { @@ -17829,12 +23274,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415588273/details", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415588273/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415588273/details", "content": { "type": 1, "value": { @@ -17850,12 +23306,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415588273", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415588273", "content": { "type": 1, "value": { @@ -17879,12 +23335,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details/costs[0]", "content": { "type": 1, "value": { @@ -17894,12 +23350,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details", "content": { "type": 1, "value": { @@ -17915,12 +23371,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349", "content": { "type": 1, "value": { @@ -17949,12 +23405,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details/costs[0]", "content": { "type": 1, "value": { @@ -17964,12 +23420,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details", "content": { "type": 1, "value": { @@ -17985,12 +23441,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852", "content": { "type": 1, "value": { @@ -18018,12 +23474,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029287228206681390", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390", "content": { "type": 1, "value": { @@ -18032,12 +23499,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029673451892467508/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/029673451892467508", + "path": "ivipcoin-db::__movement_wallet__/029673451892467508/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029673451892467508", "content": { "type": 1, "value": { @@ -18048,12 +23537,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/030266248194021460/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/030266248194021460/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/030266248194021460", + "path": "ivipcoin-db::__movement_wallet__/030266248194021460", "content": { "type": 1, "value": { @@ -18064,12 +23575,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/031498453118469660", + "path": "ivipcoin-db::__movement_wallet__/031498453118469660/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/031498453118469660/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/031498453118469660", "content": { "type": 1, "value": { @@ -18079,12 +23612,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/balances/IVIP", "content": { "type": 1, "value": { @@ -18094,12 +23627,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238", "content": { "type": 1, "value": { @@ -18125,12 +23691,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1689002980878/details", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1689002980878/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1689002980878/details", "content": { "type": 1, "value": { @@ -18147,12 +23724,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1689002980878", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1689002980878", "content": { "type": 1, "value": { @@ -18177,12 +23754,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/date_of_expiration", "content": { "type": 1, "value": { @@ -18191,12 +23768,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/details", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/details", "content": { "type": 1, "value": { @@ -18212,12 +23800,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742", "content": { "type": 1, "value": { @@ -18244,12 +23832,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691277371847/details", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691277371847/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691277371847/details", "content": { "type": 1, "value": { @@ -18265,12 +23864,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691277371847", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691277371847", "content": { "type": 1, "value": { @@ -18294,12 +23893,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/date_of_expiration", "content": { "type": 1, "value": { @@ -18308,12 +23907,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/details", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/details", "content": { "type": 1, "value": { @@ -18329,12 +23939,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900", "content": { "type": 1, "value": { @@ -18361,12 +23971,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691847078457/details", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691847078457/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691847078457/details", "content": { "type": 1, "value": { @@ -18382,12 +24003,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1691847078457", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691847078457", "content": { "type": 1, "value": { @@ -18411,12 +24032,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/date_of_expiration", "content": { "type": 1, "value": { @@ -18425,12 +24046,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/details", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/details", "content": { "type": 1, "value": { @@ -18446,12 +24078,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865", "content": { "type": 1, "value": { @@ -18479,12 +24111,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/date_of_expiration", "content": { "type": 1, "value": { @@ -18493,12 +24125,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/details", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/details", "content": { "type": 1, "value": { @@ -18514,12 +24157,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961", "content": { "type": 1, "value": { @@ -18547,12 +24190,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652/credit", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/credit", "content": { "type": 1, "value": { @@ -18561,12 +24226,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/032980170462535652", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652", "content": { "type": 1, "value": { @@ -18578,12 +24243,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719309, - "modified": 1700589719309 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances/BRL", "content": { "type": 1, "value": { @@ -18593,12 +24258,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances/IVIP", "content": { "type": 1, "value": { @@ -18608,12 +24273,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525", "content": { "type": 1, "value": { @@ -18639,12 +24337,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675", "content": { "type": 1, "value": { @@ -18670,12 +24390,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938", "content": { "type": 1, "value": { @@ -18701,12 +24443,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608", "content": { "type": 1, "value": { @@ -18732,12 +24496,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604", "content": { "type": 1, "value": { @@ -18763,12 +24549,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293", "content": { "type": 1, "value": { @@ -18794,12 +24602,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153842542/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153842542/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153842542/details", "content": { "type": 1, "value": { @@ -18816,12 +24635,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153842542", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153842542", "content": { "type": 1, "value": { @@ -18846,12 +24665,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153902578/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153902578/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153902578/details", "content": { "type": 1, "value": { @@ -18868,12 +24698,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153902578", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153902578", "content": { "type": 1, "value": { @@ -18898,12 +24728,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/costs[0]", "content": { "type": 1, "value": { @@ -18913,12 +24743,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info/collector", "content": { "type": 1, "value": { @@ -18926,12 +24767,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details", "content": { "type": 1, "value": { @@ -18946,12 +24798,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499", "content": { "type": 1, "value": { @@ -18974,12 +24826,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/costs[0]", "content": { "type": 1, "value": { @@ -18989,12 +24841,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info/collector", "content": { "type": 1, "value": { @@ -19002,12 +24865,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details", "content": { "type": 1, "value": { @@ -19022,12 +24896,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878", "content": { "type": 1, "value": { @@ -19050,12 +24924,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1679266944717/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679266944717/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395476, + "modified": 1700748395476 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679266944717/details", "content": { "type": 1, "value": { @@ -19072,12 +24957,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1679266944717", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679266944717", "content": { "type": 1, "value": { @@ -19102,12 +24987,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details/costs[0]", "content": { "type": 1, "value": { @@ -19117,12 +25002,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395476, + "modified": 1700748395476 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395", "content": { "type": 1, "value": { @@ -19145,12 +25041,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679872071598/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1679872071598/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679872071598/details", "content": { "type": 1, "value": { @@ -19167,12 +25074,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1679872071598", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679872071598", "content": { "type": 1, "value": { @@ -19197,12 +25104,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details/costs[0]", "content": { "type": 1, "value": { @@ -19212,12 +25119,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250", "content": { "type": 1, "value": { @@ -19240,12 +25158,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725", "content": { "type": 1, "value": { @@ -19271,12 +25211,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682965648718/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1682965648718/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682965648718/details", "content": { "type": 1, "value": { @@ -19295,12 +25246,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1682965648718", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682965648718", "content": { "type": 1, "value": { @@ -19326,12 +25277,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849", "content": { "type": 1, "value": { @@ -19357,12 +25330,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078471570/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078471570/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078471570/details", "content": { "type": 1, "value": { @@ -19381,12 +25365,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078471570", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078471570", "content": { "type": 1, "value": { @@ -19412,12 +25396,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details/costs[0]", "content": { "type": 1, "value": { @@ -19427,12 +25411,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834", "content": { "type": 1, "value": { @@ -19455,12 +25450,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1684018958577/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684018958577/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684018958577/details", "content": { "type": 1, "value": { @@ -19477,12 +25483,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1684018958577", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684018958577", "content": { "type": 1, "value": { @@ -19507,12 +25513,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684158157715/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1684158157715/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684158157715/details", "content": { "type": 1, "value": { @@ -19529,12 +25546,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1684158157715", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684158157715", "content": { "type": 1, "value": { @@ -19559,12 +25576,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924794730/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924794730/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924794730/details", "content": { "type": 1, "value": { @@ -19581,12 +25609,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924794730", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924794730", "content": { "type": 1, "value": { @@ -19611,12 +25639,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924859436/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924859436/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924859436/details", "content": { "type": 1, "value": { @@ -19633,12 +25672,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924859436", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924859436", "content": { "type": 1, "value": { @@ -19663,12 +25702,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178", "content": { "type": 1, "value": { @@ -19694,12 +25755,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689023462249/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689023462249/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689023462249/details", "content": { "type": 1, "value": { @@ -19718,12 +25790,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689023462249", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689023462249", "content": { "type": 1, "value": { @@ -19749,12 +25821,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689027294801/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689027294801/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689027294801/details", "content": { "type": 1, "value": { @@ -19771,12 +25854,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689027294801", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689027294801", "content": { "type": 1, "value": { @@ -19801,12 +25884,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689119838635/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689119838635/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689119838635/details", "content": { "type": 1, "value": { @@ -19823,12 +25917,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689119838635", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689119838635", "content": { "type": 1, "value": { @@ -19853,12 +25947,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689121233961/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689121233961/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689121233961/details", "content": { "type": 1, "value": { @@ -19875,12 +25980,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689121233961", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689121233961", "content": { "type": 1, "value": { @@ -19905,12 +26010,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689164526021/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689164526021/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689164526021/details", "content": { "type": 1, "value": { @@ -19927,12 +26043,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689164526021", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689164526021", "content": { "type": 1, "value": { @@ -19957,12 +26073,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689704009270/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689704009270/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689704009270/details", "content": { "type": 1, "value": { @@ -19979,12 +26106,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1689704009270", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689704009270", "content": { "type": 1, "value": { @@ -20009,12 +26136,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245422296/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245422296/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245422296/details", "content": { "type": 1, "value": { @@ -20031,12 +26169,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245422296", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245422296", "content": { "type": 1, "value": { @@ -20061,12 +26199,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245659912/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245659912/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245659912/details", "content": { "type": 1, "value": { @@ -20083,12 +26232,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245659912", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245659912", "content": { "type": 1, "value": { @@ -20113,12 +26262,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690477890638/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690477890638/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690477890638/details", "content": { "type": 1, "value": { @@ -20134,12 +26294,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690477890638", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690477890638", "content": { "type": 1, "value": { @@ -20163,12 +26323,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690581074985/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690581074985/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690581074985/details", "content": { "type": 1, "value": { @@ -20184,12 +26355,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690581074985", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690581074985", "content": { "type": 1, "value": { @@ -20213,12 +26384,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690912306732/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690912306732/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690912306732/details", "content": { "type": 1, "value": { @@ -20234,12 +26416,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1690912306732", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690912306732", "content": { "type": 1, "value": { @@ -20263,12 +26445,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497/details", "content": { "type": 1, "value": { @@ -20284,12 +26477,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497", "content": { "type": 1, "value": { @@ -20313,12 +26506,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1691190824646/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691190824646/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691190824646/details", "content": { "type": 1, "value": { @@ -20334,12 +26538,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1691190824646", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691190824646", "content": { "type": 1, "value": { @@ -20363,12 +26567,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/date_of_expiration", "content": { "type": 1, "value": { @@ -20377,12 +26581,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/details", "content": { "type": 1, "value": { @@ -20398,12 +26613,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970", "content": { "type": 1, "value": { @@ -20426,12 +26641,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115/details", "content": { "type": 1, "value": { @@ -20447,12 +26673,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115", "content": { "type": 1, "value": { @@ -20476,12 +26702,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/date_of_expiration", "content": { "type": 1, "value": { @@ -20490,12 +26716,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395477, + "modified": 1700748395477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/details", "content": { "type": 1, "value": { @@ -20511,12 +26748,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082", "content": { "type": 1, "value": { @@ -20539,12 +26776,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details/costs[0]", "content": { "type": 1, "value": { @@ -20554,12 +26791,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395477, + "modified": 1700748395477 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details", "content": { "type": 1, "value": { @@ -20575,12 +26812,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129", "content": { "type": 1, "value": { @@ -20608,12 +26845,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/date_of_expiration", "content": { "type": 1, "value": { @@ -20622,12 +26859,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395478, + "modified": 1700748395478 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/details", "content": { "type": 1, "value": { @@ -20643,12 +26891,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900", "content": { "type": 1, "value": { @@ -20675,12 +26923,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977/details", "content": { "type": 1, "value": { @@ -20698,12 +26957,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977", "content": { "type": 1, "value": { @@ -20727,12 +26986,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395478, + "modified": 1700748395478 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168/details", "content": { "type": 1, "value": { @@ -20750,12 +27020,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168", "content": { "type": 1, "value": { @@ -20779,12 +27049,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details/costs[0]", "content": { "type": 1, "value": { @@ -20794,12 +27064,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details", "content": { "type": 1, "value": { @@ -20815,12 +27085,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145", "content": { "type": 1, "value": { @@ -20848,12 +27118,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395478, + "modified": 1700748395478 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832/details", "content": { "type": 1, "value": { @@ -20869,12 +27150,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832", "content": { "type": 1, "value": { @@ -20899,12 +27180,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105/details", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395478, + "modified": 1700748395478 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105/details", "content": { "type": 1, "value": { @@ -20920,12 +27212,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105", "content": { "type": 1, "value": { @@ -20950,12 +27242,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395478, + "modified": 1700748395478 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/costs[0]", "content": { "type": 1, "value": { @@ -20965,12 +27268,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395", "content": { "type": 1, "value": { @@ -20988,12 +27291,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395478, + "modified": 1700748395478 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395478, + "modified": 1700748395478 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/costs[0]", "content": { "type": 1, "value": { @@ -21003,12 +27317,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250", "content": { "type": 1, "value": { @@ -21026,12 +27340,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834/costs[0]", "content": { "type": 1, "value": { @@ -21041,12 +27355,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834", "content": { "type": 1, "value": { @@ -21064,12 +27378,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395479, + "modified": 1700748395479 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/costs[0]", "content": { "type": 1, "value": { @@ -21079,12 +27404,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834", "content": { "type": 1, "value": { @@ -21103,12 +27428,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/costs[0]", "content": { "type": 1, "value": { @@ -21118,12 +27454,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834", "content": { "type": 1, "value": { @@ -21142,12 +27478,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/costs[0]", "content": { "type": 1, "value": { @@ -21157,12 +27504,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834", "content": { "type": 1, "value": { @@ -21179,12 +27526,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395479, + "modified": 1700748395479 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/costs[0]", "content": { "type": 1, "value": { @@ -21194,12 +27552,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834", "content": { "type": 1, "value": { @@ -21216,12 +27574,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/costs[0]", "content": { "type": 1, "value": { @@ -21231,12 +27600,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834", "content": { "type": 1, "value": { @@ -21253,12 +27622,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395479, + "modified": 1700748395479 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/costs[0]", "content": { "type": 1, "value": { @@ -21268,12 +27648,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834", "content": { "type": 1, "value": { @@ -21290,12 +27670,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395479, + "modified": 1700748395479 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/costs[0]", "content": { "type": 1, "value": { @@ -21305,12 +27696,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834", "content": { "type": 1, "value": { @@ -21327,12 +27718,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395479, + "modified": 1700748395479 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/costs[0]", "content": { "type": 1, "value": { @@ -21342,12 +27744,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395479, + "modified": 1700748395479 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834", "content": { "type": 1, "value": { @@ -21364,12 +27766,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/costs[0]", "content": { "type": 1, "value": { @@ -21379,12 +27792,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834", "content": { "type": 1, "value": { @@ -21401,12 +27814,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/costs/0", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/costs[0]", "content": { "type": 1, "value": { @@ -21416,12 +27840,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834", "content": { "type": 1, "value": { @@ -21438,12 +27862,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100/credit", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit", "content": { "type": 1, "value": { @@ -21454,12 +27900,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/033195553972046100", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100", "content": { "type": 1, "value": { @@ -21471,12 +27917,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/balances/IVIP", "content": { "type": 1, "value": { @@ -21486,12 +27932,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061", + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061", "content": { "type": 1, "value": { @@ -21517,12 +27996,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835", + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835", "content": { "type": 1, "value": { @@ -21548,12 +28049,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/history/1689683815156/details", + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689683815156/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689683815156/details", "content": { "type": 1, "value": { @@ -21570,12 +28082,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/history/1689683815156", + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689683815156", "content": { "type": 1, "value": { @@ -21600,12 +28112,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625", + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625", "content": { "type": 1, "value": { @@ -21631,12 +28165,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/history/1689695209900/details", + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689695209900/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689695209900/details", "content": { "type": 1, "value": { @@ -21653,12 +28198,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/history/1689695209900", + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689695209900", "content": { "type": 1, "value": { @@ -21683,12 +28228,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936/credit", + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/credit", "content": { "type": 1, "value": { @@ -21697,12 +28264,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/035372379621126936", + "path": "ivipcoin-db::__movement_wallet__/035372379621126936", "content": { "type": 1, "value": { @@ -21714,12 +28281,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036609796475115090/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036609796475115090/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036609796475115090/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036609796475115090/credit", + "path": "ivipcoin-db::__movement_wallet__/036609796475115090/credit", "content": { "type": 1, "value": { @@ -21728,12 +28328,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036609796475115090", + "path": "ivipcoin-db::__movement_wallet__/036609796475115090", "content": { "type": 1, "value": { @@ -21744,12 +28344,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/balances/IVIP", "content": { "type": 1, "value": { @@ -21759,12 +28359,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451", "content": { "type": 1, "value": { @@ -21786,12 +28419,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584", "content": { "type": 1, "value": { @@ -21817,12 +28472,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689258185846/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689258185846/details", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689258185846/details", "content": { "type": 1, "value": { @@ -21839,12 +28505,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689258185846", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689258185846", "content": { "type": 1, "value": { @@ -21869,12 +28535,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744", "content": { "type": 1, "value": { @@ -21896,12 +28584,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765", "content": { "type": 1, "value": { @@ -21927,12 +28637,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771", "content": { "type": 1, "value": { @@ -21954,12 +28686,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689614163424/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689614163424/details", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689614163424/details", "content": { "type": 1, "value": { @@ -21976,12 +28719,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1689614163424", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689614163424", "content": { "type": 1, "value": { @@ -22006,12 +28749,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679/details", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679/details", "content": { "type": 1, "value": { @@ -22027,12 +28781,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679", "content": { "type": 1, "value": { @@ -22056,12 +28810,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/date_of_expiration", "content": { "type": 1, "value": { @@ -22070,12 +28824,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/details", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/details", "content": { "type": 1, "value": { @@ -22091,12 +28856,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331", "content": { "type": 1, "value": { @@ -22119,12 +28884,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/date_of_expiration", "content": { "type": 1, "value": { @@ -22133,12 +28898,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/details", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/details", "content": { "type": 1, "value": { @@ -22154,12 +28930,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161", "content": { "type": 1, "value": { @@ -22182,12 +28958,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151/details", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151/details", "content": { "type": 1, "value": { @@ -22203,12 +28990,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151", "content": { "type": 1, "value": { @@ -22232,12 +29019,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300/credit", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/credit", "content": { "type": 1, "value": { @@ -22246,12 +29055,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/036781805197076300", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300", "content": { "type": 1, "value": { @@ -22263,12 +29072,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039695615525592090/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039695615525592090/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039695615525592090", + "path": "ivipcoin-db::__movement_wallet__/039695615525592090", "content": { "type": 1, "value": { @@ -22279,12 +29110,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/balances/IVIP", "content": { "type": 1, "value": { @@ -22294,12 +29125,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/date_of_expiration", "content": { "type": 1, "value": { @@ -22308,12 +29150,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/details", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/details", "content": { "type": 1, "value": { @@ -22329,12 +29182,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190", "content": { "type": 1, "value": { @@ -22358,12 +29211,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/date_of_expiration", "content": { "type": 1, "value": { @@ -22372,12 +29225,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/details", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/details", "content": { "type": 1, "value": { @@ -22393,12 +29257,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533", "content": { "type": 1, "value": { @@ -22422,12 +29286,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/date_of_expiration", "content": { "type": 1, "value": { @@ -22436,12 +29300,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/details", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/details", "content": { "type": 1, "value": { @@ -22457,12 +29332,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658", "content": { "type": 1, "value": { @@ -22490,12 +29365,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719310, - "modified": 1700589719310 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696706580251/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696706580251/details", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696706580251/details", "content": { "type": 1, "value": { @@ -22511,12 +29397,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696706580251", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696706580251", "content": { "type": 1, "value": { @@ -22541,12 +29427,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/date_of_expiration", "content": { "type": 1, "value": { @@ -22555,12 +29441,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/details", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/details", "content": { "type": 1, "value": { @@ -22576,12 +29473,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006", "content": { "type": 1, "value": { @@ -22609,12 +29506,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696951453164/details", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696951453164/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696951453164/details", "content": { "type": 1, "value": { @@ -22630,12 +29538,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/history/1696951453164", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696951453164", "content": { "type": 1, "value": { @@ -22660,12 +29568,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510/credit", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/credit", "content": { "type": 1, "value": { @@ -22674,12 +29604,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/039734721775654510", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510", "content": { "type": 1, "value": { @@ -22690,12 +29620,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041090915252286260/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041090915252286260/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041090915252286260", + "path": "ivipcoin-db::__movement_wallet__/041090915252286260", "content": { "type": 1, "value": { @@ -22706,12 +29658,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/costs[0]", "content": { "type": 1, "value": { @@ -22721,12 +29673,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info/collector", "content": { "type": 1, "value": { @@ -22734,12 +29697,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details", "content": { "type": 1, "value": { @@ -22754,12 +29728,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316", "content": { "type": 1, "value": { @@ -22782,12 +29756,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/costs[0]", "content": { "type": 1, "value": { @@ -22797,12 +29771,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info/collector", "content": { "type": 1, "value": { @@ -22810,12 +29795,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details", "content": { "type": 1, "value": { @@ -22830,12 +29826,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059", "content": { "type": 1, "value": { @@ -22861,12 +29857,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679267870429/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679267870429/details", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679267870429/details", "content": { "type": 1, "value": { @@ -22883,12 +29890,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1679267870429", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679267870429", "content": { "type": 1, "value": { @@ -22913,12 +29920,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983", "content": { "type": 1, "value": { @@ -22940,12 +29969,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320", "content": { "type": 1, "value": { @@ -22967,12 +30018,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779/details", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779/details", "content": { "type": 1, "value": { @@ -22988,12 +30050,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779", "content": { "type": 1, "value": { @@ -23017,12 +30079,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/balances/IVIP", "content": { "type": 1, "value": { @@ -23032,12 +30105,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030/credit", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/credit", "content": { "type": 1, "value": { @@ -23046,12 +30141,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/041395808163281030", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030", "content": { "type": 1, "value": { @@ -23063,12 +30158,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/042964162467339360/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515", + "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515", "content": { "type": 1, "value": { @@ -23090,12 +30218,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/042964162467339360/credit", + "path": "ivipcoin-db::__movement_wallet__/042964162467339360/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/042964162467339360/credit", "content": { "type": 1, "value": { @@ -23104,12 +30254,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/042964162467339360", + "path": "ivipcoin-db::__movement_wallet__/042964162467339360", "content": { "type": 1, "value": { @@ -23120,12 +30270,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/balances/IVIP", "content": { "type": 1, "value": { @@ -23135,12 +30285,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/date_of_expiration", "content": { "type": 1, "value": { @@ -23149,12 +30310,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/details", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/details", "content": { "type": 1, "value": { @@ -23170,12 +30342,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801", "content": { "type": 1, "value": { @@ -23199,12 +30371,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/date_of_expiration", "content": { "type": 1, "value": { @@ -23213,12 +30385,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395480, + "modified": 1700748395480 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/details", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/details", "content": { "type": 1, "value": { @@ -23234,12 +30417,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784", "content": { "type": 1, "value": { @@ -23263,12 +30446,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/date_of_expiration", "content": { "type": 1, "value": { @@ -23277,12 +30460,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/details", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/details", "content": { "type": 1, "value": { @@ -23298,12 +30492,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127", "content": { "type": 1, "value": { @@ -23331,12 +30525,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696690479419/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696690479419/details", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696690479419/details", "content": { "type": 1, "value": { @@ -23352,12 +30557,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/history/1696690479419", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696690479419", "content": { "type": 1, "value": { @@ -23382,12 +30587,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040/credit", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/credit", "content": { "type": 1, "value": { @@ -23396,12 +30623,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044107260739866040", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040", "content": { "type": 1, "value": { @@ -23412,12 +30639,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044398429081975660/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774", + "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774", "content": { "type": 1, "value": { @@ -23439,12 +30699,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/044398429081975660", + "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044398429081975660", "content": { "type": 1, "value": { @@ -23455,12 +30726,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/balances/IVIP", "content": { "type": 1, "value": { @@ -23470,12 +30741,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367", "content": { "type": 1, "value": { @@ -23501,12 +30805,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817", "content": { "type": 1, "value": { @@ -23532,12 +30858,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1679266969508/details", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1679266969508/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1679266969508/details", "content": { "type": 1, "value": { @@ -23554,12 +30891,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1679266969508", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1679266969508", "content": { "type": 1, "value": { @@ -23584,12 +30921,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1681517575873/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1681517575873/details", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1681517575873/details", "content": { "type": 1, "value": { @@ -23606,12 +30954,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1681517575873", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1681517575873", "content": { "type": 1, "value": { @@ -23636,12 +30984,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1685393623279/details", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685393623279/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685393623279/details", "content": { "type": 1, "value": { @@ -23658,12 +31017,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1685393623279", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685393623279", "content": { "type": 1, "value": { @@ -23688,12 +31047,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685666780649/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1685666780649/details", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685666780649/details", "content": { "type": 1, "value": { @@ -23710,12 +31080,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1685666780649", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685666780649", "content": { "type": 1, "value": { @@ -23739,12 +31109,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688400356570/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1688400356570/details", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688400356570/details", "content": { "type": 1, "value": { @@ -23761,12 +31142,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1688400356570", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688400356570", "content": { "type": 1, "value": { @@ -23791,12 +31172,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097", "content": { "type": 1, "value": { @@ -23822,12 +31225,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340/credit", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/credit", "content": { "type": 1, "value": { @@ -23838,12 +31263,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045122812371711340", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340", "content": { "type": 1, "value": { @@ -23855,12 +31280,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/balances/IVIP", "content": { "type": 1, "value": { @@ -23870,12 +31295,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442", + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442", "content": { "type": 1, "value": { @@ -23901,12 +31359,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1678207899775/details", + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678207899775/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678207899775/details", "content": { "type": 1, "value": { @@ -23923,12 +31392,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1678207899775", + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678207899775", "content": { "type": 1, "value": { @@ -23953,12 +31422,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271", + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271", "content": { "type": 1, "value": { @@ -23984,12 +31475,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520", + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520", "content": { "type": 1, "value": { @@ -24011,12 +31524,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689025604196/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1689025604196/details", + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689025604196/details", "content": { "type": 1, "value": { @@ -24033,12 +31557,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1689025604196", + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689025604196", "content": { "type": 1, "value": { @@ -24063,12 +31587,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297", + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297", "content": { "type": 1, "value": { @@ -24094,12 +31640,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689258784601/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1689258784601/details", + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689258784601/details", "content": { "type": 1, "value": { @@ -24116,12 +31673,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/history/1689258784601", + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689258784601", "content": { "type": 1, "value": { @@ -24146,12 +31703,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584/credit", + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/credit", "content": { "type": 1, "value": { @@ -24160,12 +31739,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045407265934540584", + "path": "ivipcoin-db::__movement_wallet__/045407265934540584", "content": { "type": 1, "value": { @@ -24177,12 +31756,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045642520706235200/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/045642520706235200", + "path": "ivipcoin-db::__movement_wallet__/045642520706235200/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045642520706235200", "content": { "type": 1, "value": { @@ -24193,12 +31794,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/046564008100064220/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/046564008100064220/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/046564008100064220/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/046564008100064220/credit", + "path": "ivipcoin-db::__movement_wallet__/046564008100064220/credit", "content": { "type": 1, "value": { @@ -24207,12 +31841,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/046564008100064220", + "path": "ivipcoin-db::__movement_wallet__/046564008100064220", "content": { "type": 1, "value": { @@ -24223,12 +31857,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047633761232259040", + "path": "ivipcoin-db::__movement_wallet__/047633761232259040/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047633761232259040/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047633761232259040", "content": { "type": 1, "value": { @@ -24239,12 +31895,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/balances/IVIP", "content": { "type": 1, "value": { @@ -24254,12 +31910,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704", "content": { "type": 1, "value": { @@ -24285,12 +31974,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1684018936403/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1684018936403/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1684018936403/details", "content": { "type": 1, "value": { @@ -24307,12 +32007,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1684018936403", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1684018936403", "content": { "type": 1, "value": { @@ -24337,12 +32037,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1688531798249/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688531798249/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688531798249/details", "content": { "type": 1, "value": { @@ -24359,12 +32070,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1688531798249", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688531798249", "content": { "type": 1, "value": { @@ -24389,12 +32100,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933", "content": { "type": 1, "value": { @@ -24420,12 +32153,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1688771723408/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688771723408/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688771723408/details", "content": { "type": 1, "value": { @@ -24442,12 +32186,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1688771723408", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688771723408", "content": { "type": 1, "value": { @@ -24472,12 +32216,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105", "content": { "type": 1, "value": { @@ -24503,12 +32269,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689023394597/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689023394597/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689023394597/details", "content": { "type": 1, "value": { @@ -24525,12 +32302,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689023394597", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689023394597", "content": { "type": 1, "value": { @@ -24555,12 +32332,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301", "content": { "type": 1, "value": { @@ -24586,12 +32385,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689260053657/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689260053657/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689260053657/details", "content": { "type": 1, "value": { @@ -24608,12 +32418,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689260053657", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689260053657", "content": { "type": 1, "value": { @@ -24638,12 +32448,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689301547038/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689301547038/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689301547038/details", "content": { "type": 1, "value": { @@ -24660,12 +32481,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689301547038", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689301547038", "content": { "type": 1, "value": { @@ -24689,12 +32510,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691", "content": { "type": 1, "value": { @@ -24720,12 +32563,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689356922364/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689356922364/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689356922364/details", "content": { "type": 1, "value": { @@ -24742,12 +32596,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689356922364", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689356922364", "content": { "type": 1, "value": { @@ -24772,12 +32626,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/date_of_expiration", "content": { "type": 1, "value": { @@ -24786,12 +32640,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/details", "content": { "type": 1, "value": { @@ -24807,12 +32672,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113", "content": { "type": 1, "value": { @@ -24835,12 +32700,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/date_of_expiration", "content": { "type": 1, "value": { @@ -24849,12 +32714,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/details", "content": { "type": 1, "value": { @@ -24870,12 +32746,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952", "content": { "type": 1, "value": { @@ -24902,12 +32778,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942442311/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942442311/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942442311/details", "content": { "type": 1, "value": { @@ -24924,12 +32811,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942442311", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942442311", "content": { "type": 1, "value": { @@ -24954,12 +32841,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/date_of_expiration", "content": { "type": 1, "value": { @@ -24968,12 +32855,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/details", "content": { "type": 1, "value": { @@ -24989,12 +32887,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984", "content": { "type": 1, "value": { @@ -25017,12 +32915,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883/details", "content": { "type": 1, "value": { @@ -25038,12 +32947,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883", "content": { "type": 1, "value": { @@ -25067,12 +32976,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/date_of_expiration", "content": { "type": 1, "value": { @@ -25081,12 +32990,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/details", "content": { "type": 1, "value": { @@ -25102,12 +33022,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281", "content": { "type": 1, "value": { @@ -25134,12 +33054,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691280221861/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691280221861/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691280221861/details", "content": { "type": 1, "value": { @@ -25155,12 +33086,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691280221861", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691280221861", "content": { "type": 1, "value": { @@ -25184,12 +33115,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891/details", "content": { "type": 1, "value": { @@ -25205,12 +33147,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891", "content": { "type": 1, "value": { @@ -25234,12 +33176,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688/details", "content": { "type": 1, "value": { @@ -25255,12 +33208,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688", "content": { "type": 1, "value": { @@ -25284,12 +33237,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967/details", "content": { "type": 1, "value": { @@ -25305,12 +33269,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967", "content": { "type": 1, "value": { @@ -25337,12 +33301,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395481, + "modified": 1700748395481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103/details", "content": { "type": 1, "value": { @@ -25358,12 +33333,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103", "content": { "type": 1, "value": { @@ -25390,12 +33365,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details/costs[0]", "content": { "type": 1, "value": { @@ -25405,12 +33380,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details", "content": { "type": 1, "value": { @@ -25426,12 +33401,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041", "content": { "type": 1, "value": { @@ -25460,12 +33435,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details/costs[0]", "content": { "type": 1, "value": { @@ -25475,12 +33450,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details", "content": { "type": 1, "value": { @@ -25496,12 +33471,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025", "content": { "type": 1, "value": { @@ -25530,12 +33505,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details/costs[0]", "content": { "type": 1, "value": { @@ -25545,12 +33520,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details", "content": { "type": 1, "value": { @@ -25566,12 +33541,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470", "content": { "type": 1, "value": { @@ -25599,12 +33574,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details/costs[0]", "content": { "type": 1, "value": { @@ -25614,12 +33589,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395481, + "modified": 1700748395481 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details", "content": { "type": 1, "value": { @@ -25635,12 +33610,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534", "content": { "type": 1, "value": { @@ -25669,12 +33644,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838/details", "content": { "type": 1, "value": { @@ -25690,12 +33676,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838", "content": { "type": 1, "value": { @@ -25720,12 +33706,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293/details", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293/details", "content": { "type": 1, "value": { @@ -25741,12 +33738,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293", "content": { "type": 1, "value": { @@ -25771,12 +33768,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820/credit", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/credit", "content": { "type": 1, "value": { @@ -25786,12 +33805,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/047925577230662820", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820", "content": { "type": 1, "value": { @@ -25803,12 +33822,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/049717311460128590/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/049717311460128590/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/049717311460128590", + "path": "ivipcoin-db::__movement_wallet__/049717311460128590", "content": { "type": 1, "value": { @@ -25819,12 +33860,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/balances/IVIP", "content": { "type": 1, "value": { @@ -25834,12 +33875,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571", "content": { "type": 1, "value": { @@ -25865,12 +33939,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671", "content": { "type": 1, "value": { @@ -25892,12 +33988,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1679871668854/details", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679871668854/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679871668854/details", "content": { "type": 1, "value": { @@ -25914,12 +34021,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1679871668854", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679871668854", "content": { "type": 1, "value": { @@ -25944,12 +34051,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075", "content": { "type": 1, "value": { @@ -25975,12 +34104,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684624205744/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1684624205744/details", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684624205744/details", "content": { "type": 1, "value": { @@ -25997,12 +34137,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1684624205744", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684624205744", "content": { "type": 1, "value": { @@ -26027,12 +34167,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353262267/details", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353262267/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353262267/details", "content": { "type": 1, "value": { @@ -26049,12 +34200,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353262267", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353262267", "content": { "type": 1, "value": { @@ -26079,12 +34230,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353693526/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353693526/details", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353693526/details", "content": { "type": 1, "value": { @@ -26101,12 +34263,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353693526", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353693526", "content": { "type": 1, "value": { @@ -26131,12 +34293,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1686657739276/details", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686657739276/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686657739276/details", "content": { "type": 1, "value": { @@ -26153,12 +34326,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1686657739276", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686657739276", "content": { "type": 1, "value": { @@ -26182,12 +34355,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363201264/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363201264/details", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363201264/details", "content": { "type": 1, "value": { @@ -26204,12 +34388,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363201264", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363201264", "content": { "type": 1, "value": { @@ -26233,12 +34417,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363301418/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363301418/details", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363301418/details", "content": { "type": 1, "value": { @@ -26255,12 +34450,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363301418", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363301418", "content": { "type": 1, "value": { @@ -26284,12 +34479,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1689804806407/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1689804806407/details", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1689804806407/details", "content": { "type": 1, "value": { @@ -26306,12 +34512,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1689804806407", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1689804806407", "content": { "type": 1, "value": { @@ -26336,12 +34542,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722/details", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722/details", "content": { "type": 1, "value": { @@ -26357,12 +34574,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722", "content": { "type": 1, "value": { @@ -26386,12 +34603,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719311, - "modified": 1700589719311 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374/details", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374/details", "content": { "type": 1, "value": { @@ -26407,12 +34635,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374", "content": { "type": 1, "value": { @@ -26436,12 +34664,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details/costs[0]", "content": { "type": 1, "value": { @@ -26451,12 +34679,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details", "content": { "type": 1, "value": { @@ -26472,12 +34700,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030", "content": { "type": 1, "value": { @@ -26505,12 +34733,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965/details", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965/details", "content": { "type": 1, "value": { @@ -26526,12 +34765,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965", "content": { "type": 1, "value": { @@ -26555,12 +34794,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897/details", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897/details", "content": { "type": 1, "value": { @@ -26576,12 +34826,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897", "content": { "type": 1, "value": { @@ -26606,12 +34856,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472/details", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472/details", "content": { "type": 1, "value": { @@ -26627,12 +34888,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472", "content": { "type": 1, "value": { @@ -26657,12 +34918,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150/credit", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/credit", "content": { "type": 1, "value": { @@ -26672,12 +34955,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050149211466839150", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150", "content": { "type": 1, "value": { @@ -26689,12 +34972,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/balances/IVIP", "content": { "type": 1, "value": { @@ -26704,12 +34987,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146", "content": { "type": 1, "value": { @@ -26735,12 +35051,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128", "content": { "type": 1, "value": { @@ -26766,12 +35104,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947", "content": { "type": 1, "value": { @@ -26797,12 +35157,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145303669/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145303669/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145303669/details", "content": { "type": 1, "value": { @@ -26819,12 +35190,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145303669", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145303669", "content": { "type": 1, "value": { @@ -26849,12 +35220,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1678220742550/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678220742550/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678220742550/details", "content": { "type": 1, "value": { @@ -26871,12 +35253,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1678220742550", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678220742550", "content": { "type": 1, "value": { @@ -26901,12 +35283,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183", "content": { "type": 1, "value": { @@ -26930,12 +35334,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156", "content": { "type": 1, "value": { @@ -26959,12 +35385,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190557366/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190557366/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190557366/details", "content": { "type": 1, "value": { @@ -26981,12 +35418,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190557366", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190557366", "content": { "type": 1, "value": { @@ -27010,12 +35447,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190633022/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190633022/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190633022/details", "content": { "type": 1, "value": { @@ -27032,12 +35480,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190633022", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190633022", "content": { "type": 1, "value": { @@ -27061,12 +35509,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190671429/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190671429/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190671429/details", "content": { "type": 1, "value": { @@ -27083,12 +35542,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190671429", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190671429", "content": { "type": 1, "value": { @@ -27112,12 +35571,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190710908/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190710908/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190710908/details", "content": { "type": 1, "value": { @@ -27134,12 +35604,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190710908", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190710908", "content": { "type": 1, "value": { @@ -27163,12 +35633,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1687472497935/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1687472497935/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1687472497935/details", "content": { "type": 1, "value": { @@ -27185,12 +35666,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1687472497935", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1687472497935", "content": { "type": 1, "value": { @@ -27214,12 +35695,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865", "content": { "type": 1, "value": { @@ -27245,12 +35748,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1689804799815/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1689804799815/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1689804799815/details", "content": { "type": 1, "value": { @@ -27267,12 +35781,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1689804799815", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1689804799815", "content": { "type": 1, "value": { @@ -27297,12 +35811,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472/details", "content": { "type": 1, "value": { @@ -27318,12 +35843,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472", "content": { "type": 1, "value": { @@ -27347,12 +35872,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930/details", "content": { "type": 1, "value": { @@ -27368,12 +35904,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930", "content": { "type": 1, "value": { @@ -27397,12 +35933,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117/details", "content": { "type": 1, "value": { @@ -27418,12 +35965,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117", "content": { "type": 1, "value": { @@ -27447,12 +35994,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982/details", "content": { "type": 1, "value": { @@ -27468,12 +36026,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982", "content": { "type": 1, "value": { @@ -27498,12 +36056,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905/details", "content": { "type": 1, "value": { @@ -27519,12 +36088,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905", "content": { "type": 1, "value": { @@ -27549,12 +36118,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925/details", "content": { "type": 1, "value": { @@ -27570,12 +36150,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925", "content": { "type": 1, "value": { @@ -27600,12 +36180,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931/details", "content": { "type": 1, "value": { @@ -27621,12 +36212,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931", "content": { "type": 1, "value": { @@ -27651,12 +36242,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125/details", "content": { "type": 1, "value": { @@ -27672,12 +36274,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125", "content": { "type": 1, "value": { @@ -27702,12 +36304,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425/details", "content": { "type": 1, "value": { @@ -27723,12 +36336,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425", "content": { "type": 1, "value": { @@ -27753,12 +36366,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783/details", "content": { "type": 1, "value": { @@ -27774,12 +36398,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783", "content": { "type": 1, "value": { @@ -27804,12 +36428,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885/details", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885/details", "content": { "type": 1, "value": { @@ -27825,12 +36460,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885", "content": { "type": 1, "value": { @@ -27855,12 +36490,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330/credit", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/credit", "content": { "type": 1, "value": { @@ -27869,12 +36526,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050294855698242330", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330", "content": { "type": 1, "value": { @@ -27885,12 +36542,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/050395970230084904", + "path": "ivipcoin-db::__movement_wallet__/050395970230084904/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050395970230084904/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050395970230084904", "content": { "type": 1, "value": { @@ -27900,12 +36579,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances/BRL", "content": { "type": 1, "value": { @@ -27915,12 +36594,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances/IVIP", "content": { "type": 1, "value": { @@ -27930,12 +36609,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810", + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810", "content": { "type": 1, "value": { @@ -27961,12 +36673,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784", + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784", "content": { "type": 1, "value": { @@ -27992,12 +36726,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145", + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145", "content": { "type": 1, "value": { @@ -28021,12 +36777,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/history/1680059811857/details", + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1680059811857/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1680059811857/details", "content": { "type": 1, "value": { @@ -28043,12 +36810,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/history/1680059811857", + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1680059811857", "content": { "type": 1, "value": { @@ -28073,12 +36840,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463", + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463", "content": { "type": 1, "value": { @@ -28100,12 +36889,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290/credit", + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/credit", "content": { "type": 1, "value": { @@ -28114,12 +36925,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/053298757978599290", + "path": "ivipcoin-db::__movement_wallet__/053298757978599290", "content": { "type": 1, "value": { @@ -28131,12 +36942,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/054341335642486000/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/balances/IVIP", "content": { "type": 1, "value": { @@ -28146,12 +36957,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893", + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893", "content": { "type": 1, "value": { @@ -28177,12 +37021,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689182033050/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/054341335642486000/history/1689182033050/details", + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689182033050/details", "content": { "type": 1, "value": { @@ -28199,12 +37054,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/054341335642486000/history/1689182033050", + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689182033050", "content": { "type": 1, "value": { @@ -28229,12 +37084,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/054341335642486000/credit", + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/credit", "content": { "type": 1, "value": { @@ -28243,12 +37120,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/054341335642486000", + "path": "ivipcoin-db::__movement_wallet__/054341335642486000", "content": { "type": 1, "value": { @@ -28260,12 +37137,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/date_of_expiration", "content": { "type": 1, "value": { @@ -28274,12 +37162,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/details", + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/details", "content": { "type": 1, "value": { @@ -28295,12 +37194,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134", + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134", "content": { "type": 1, "value": { @@ -28328,12 +37227,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/date_of_expiration", "content": { "type": 1, "value": { @@ -28342,12 +37241,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/details", + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/details", "content": { "type": 1, "value": { @@ -28363,12 +37273,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666", + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666", "content": { "type": 1, "value": { @@ -28396,12 +37306,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/history/1697122378430/details", + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697122378430/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697122378430/details", "content": { "type": 1, "value": { @@ -28417,12 +37338,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/history/1697122378430", + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697122378430", "content": { "type": 1, "value": { @@ -28447,12 +37368,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740/credit", + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/credit", "content": { "type": 1, "value": { @@ -28461,12 +37404,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/055644012114111740", + "path": "ivipcoin-db::__movement_wallet__/055644012114111740", "content": { "type": 1, "value": { @@ -28477,12 +37420,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances/BRL", "content": { "type": 1, "value": { @@ -28492,12 +37435,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances/IVIP", "content": { "type": 1, "value": { @@ -28507,12 +37450,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797", "content": { "type": 1, "value": { @@ -28538,12 +37514,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149", "content": { "type": 1, "value": { @@ -28569,12 +37567,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1684624980630/details", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684624980630/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684624980630/details", "content": { "type": 1, "value": { @@ -28591,12 +37600,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1684624980630", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684624980630", "content": { "type": 1, "value": { @@ -28621,12 +37630,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395482, + "modified": 1700748395482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845", "content": { "type": 1, "value": { @@ -28648,12 +37679,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830", "content": { "type": 1, "value": { @@ -28675,12 +37728,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803", "content": { "type": 1, "value": { @@ -28702,12 +37777,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details/costs[0]", "content": { "type": 1, "value": { @@ -28717,12 +37792,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details", "content": { "type": 1, "value": { @@ -28738,12 +37813,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334", "content": { "type": 1, "value": { @@ -28771,12 +37846,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840/credit", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/credit", "content": { "type": 1, "value": { @@ -28786,12 +37883,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/056546769240355840", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840", "content": { "type": 1, "value": { @@ -28803,12 +37900,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057251085848447400", + "path": "ivipcoin-db::__movement_wallet__/057251085848447400/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057251085848447400/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057251085848447400", "content": { "type": 1, "value": { @@ -28819,12 +37938,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/balances/IVIP", "content": { "type": 1, "value": { @@ -28834,12 +37953,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168", "content": { "type": 1, "value": { @@ -28865,12 +38017,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559", "content": { "type": 1, "value": { @@ -28896,12 +38070,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679871671858/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1679871671858/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679871671858/details", "content": { "type": 1, "value": { @@ -28918,12 +38103,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1679871671858", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679871671858", "content": { "type": 1, "value": { @@ -28948,12 +38133,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947", "content": { "type": 1, "value": { @@ -28975,12 +38182,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633", "content": { "type": 1, "value": { @@ -29002,12 +38231,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517", "content": { "type": 1, "value": { @@ -29029,12 +38280,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746", "content": { "type": 1, "value": { @@ -29060,12 +38333,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689623842206/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689623842206/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689623842206/details", "content": { "type": 1, "value": { @@ -29082,12 +38366,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689623842206", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689623842206", "content": { "type": 1, "value": { @@ -29112,12 +38396,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/date_of_expiration", "content": { "type": 1, "value": { @@ -29126,12 +38410,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/details", "content": { "type": 1, "value": { @@ -29147,12 +38442,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901", "content": { "type": 1, "value": { @@ -29175,12 +38470,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/date_of_expiration", "content": { "type": 1, "value": { @@ -29189,12 +38484,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/details", "content": { "type": 1, "value": { @@ -29210,12 +38516,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747", "content": { "type": 1, "value": { @@ -29242,12 +38548,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1690318679149/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690318679149/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690318679149/details", "content": { "type": 1, "value": { @@ -29264,12 +38581,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1690318679149", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690318679149", "content": { "type": 1, "value": { @@ -29294,12 +38611,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/date_of_expiration", "content": { "type": 1, "value": { @@ -29308,12 +38625,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/details", "content": { "type": 1, "value": { @@ -29329,12 +38657,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359", "content": { "type": 1, "value": { @@ -29361,12 +38689,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692476742525/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692476742525/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692476742525/details", "content": { "type": 1, "value": { @@ -29382,12 +38721,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692476742525", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692476742525", "content": { "type": 1, "value": { @@ -29411,12 +38750,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/date_of_expiration", "content": { "type": 1, "value": { @@ -29425,12 +38764,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/details", "content": { "type": 1, "value": { @@ -29446,12 +38796,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545", "content": { "type": 1, "value": { @@ -29474,12 +38824,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/date_of_expiration", "content": { "type": 1, "value": { @@ -29488,12 +38838,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/details", "content": { "type": 1, "value": { @@ -29509,12 +38870,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899", "content": { "type": 1, "value": { @@ -29541,12 +38902,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693000377717/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693000377717/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693000377717/details", "content": { "type": 1, "value": { @@ -29562,12 +38934,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693000377717", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693000377717", "content": { "type": 1, "value": { @@ -29591,12 +38963,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/date_of_expiration", "content": { "type": 1, "value": { @@ -29605,12 +38977,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/details", "content": { "type": 1, "value": { @@ -29626,12 +39009,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916", "content": { "type": 1, "value": { @@ -29654,12 +39037,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/date_of_expiration", "content": { "type": 1, "value": { @@ -29668,12 +39051,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/details", "content": { "type": 1, "value": { @@ -29689,12 +39083,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263", "content": { "type": 1, "value": { @@ -29721,12 +39115,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693606719867/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693606719867/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693606719867/details", "content": { "type": 1, "value": { @@ -29742,12 +39147,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1693606719867", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693606719867", "content": { "type": 1, "value": { @@ -29771,12 +39176,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/date_of_expiration", "content": { "type": 1, "value": { @@ -29785,12 +39190,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/details", "content": { "type": 1, "value": { @@ -29806,12 +39222,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996", "content": { "type": 1, "value": { @@ -29838,12 +39254,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/date_of_expiration", "content": { "type": 1, "value": { @@ -29852,12 +39268,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/details", "content": { "type": 1, "value": { @@ -29873,12 +39300,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075", "content": { "type": 1, "value": { @@ -29905,12 +39332,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/date_of_expiration", "content": { "type": 1, "value": { @@ -29919,12 +39346,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/details", "content": { "type": 1, "value": { @@ -29940,12 +39378,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604", "content": { "type": 1, "value": { @@ -29968,12 +39406,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694731526035/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694731526035/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694731526035/details", "content": { "type": 1, "value": { @@ -29989,12 +39438,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694731526035", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694731526035", "content": { "type": 1, "value": { @@ -30018,12 +39467,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694793493188/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694793493188/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694793493188/details", "content": { "type": 1, "value": { @@ -30039,12 +39499,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694793493188", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694793493188", "content": { "type": 1, "value": { @@ -30068,12 +39528,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/date_of_expiration", "content": { "type": 1, "value": { @@ -30082,12 +39542,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/details", "content": { "type": 1, "value": { @@ -30103,12 +39574,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291", "content": { "type": 1, "value": { @@ -30135,12 +39606,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694988703973/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694988703973/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694988703973/details", "content": { "type": 1, "value": { @@ -30156,12 +39638,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1694988703973", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694988703973", "content": { "type": 1, "value": { @@ -30185,12 +39667,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/date_of_expiration", "content": { "type": 1, "value": { @@ -30199,12 +39681,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/details", "content": { "type": 1, "value": { @@ -30220,12 +39713,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285", "content": { "type": 1, "value": { @@ -30253,12 +39746,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520773436/details", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520773436/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520773436/details", "content": { "type": 1, "value": { @@ -30274,12 +39778,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520773436", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520773436", "content": { "type": 1, "value": { @@ -30304,12 +39808,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719312, - "modified": 1700589719312 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620/credit", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/credit", "content": { "type": 1, "value": { @@ -30319,12 +39845,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/057751007037449620", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620", "content": { "type": 1, "value": { @@ -30336,12 +39862,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/balances/IVIP", "content": { "type": 1, "value": { @@ -30351,12 +39877,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933", + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933", "content": { "type": 1, "value": { @@ -30382,12 +39941,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1684627186163/details", + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1684627186163/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1684627186163/details", "content": { "type": 1, "value": { @@ -30404,12 +39974,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1684627186163", + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1684627186163", "content": { "type": 1, "value": { @@ -30434,12 +40004,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details/costs[0]", "content": { "type": 1, "value": { @@ -30449,12 +40019,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details", + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details", "content": { "type": 1, "value": { @@ -30470,12 +40040,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863", + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863", "content": { "type": 1, "value": { @@ -30503,12 +40073,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details/costs[0]", "content": { "type": 1, "value": { @@ -30518,12 +40088,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details", + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details", "content": { "type": 1, "value": { @@ -30539,12 +40109,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310", + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310", "content": { "type": 1, "value": { @@ -30572,12 +40142,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656/credit", + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/credit", "content": { "type": 1, "value": { @@ -30586,12 +40178,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/058359081725899656", + "path": "ivipcoin-db::__movement_wallet__/058359081725899656", "content": { "type": 1, "value": { @@ -30603,12 +40195,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395483, + "modified": 1700748395483 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/059914438431437400/credit", + "path": "ivipcoin-db::__movement_wallet__/059914438431437400/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395483, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/059914438431437400/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/059914438431437400/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/059914438431437400/credit", "content": { "type": 1, "value": { @@ -30617,12 +40242,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/059914438431437400", + "path": "ivipcoin-db::__movement_wallet__/059914438431437400", "content": { "type": 1, "value": { @@ -30633,12 +40258,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060044476007192536/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/060044476007192536/balances/BRL", "content": { "type": 1, "value": { @@ -30648,12 +40273,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060044476007192536/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649", + "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649", "content": { "type": 1, "value": { @@ -30679,12 +40337,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060044476007192536/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060044476007192536/credit", + "path": "ivipcoin-db::__movement_wallet__/060044476007192536/credit", "content": { "type": 1, "value": { @@ -30693,12 +40373,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060044476007192536", + "path": "ivipcoin-db::__movement_wallet__/060044476007192536", "content": { "type": 1, "value": { @@ -30709,12 +40389,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances/BRL", "content": { "type": 1, "value": { @@ -30724,12 +40404,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances/IVIP", "content": { "type": 1, "value": { @@ -30739,12 +40419,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358", + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358", "content": { "type": 1, "value": { @@ -30770,12 +40483,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1684702707589/details", + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684702707589/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684702707589/details", "content": { "type": 1, "value": { @@ -30792,12 +40516,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1684702707589", + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684702707589", "content": { "type": 1, "value": { @@ -30822,12 +40546,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656", + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656", "content": { "type": 1, "value": { @@ -30849,12 +40595,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809", + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809", "content": { "type": 1, "value": { @@ -30878,12 +40646,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090/details", + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090/details", "content": { "type": 1, "value": { @@ -30899,12 +40678,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090", + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090", "content": { "type": 1, "value": { @@ -30928,12 +40707,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963/details", + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963/details", "content": { "type": 1, "value": { @@ -30949,12 +40739,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963", + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963", "content": { "type": 1, "value": { @@ -30982,12 +40772,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250/credit", + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/credit", "content": { "type": 1, "value": { @@ -30996,12 +40808,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060281793071125250", + "path": "ivipcoin-db::__movement_wallet__/060281793071125250", "content": { "type": 1, "value": { @@ -31013,12 +40825,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/balances/IVIP", "content": { "type": 1, "value": { @@ -31028,12 +40840,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729", "content": { "type": 1, "value": { @@ -31059,12 +40904,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679267499015/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1679267499015/details", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679267499015/details", "content": { "type": 1, "value": { @@ -31081,12 +40937,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1679267499015", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679267499015", "content": { "type": 1, "value": { @@ -31111,12 +40967,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476464326/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476464326/details", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476464326/details", "content": { "type": 1, "value": { @@ -31133,12 +41000,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476464326", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476464326", "content": { "type": 1, "value": { @@ -31162,12 +41029,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476478538/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476478538/details", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476478538/details", "content": { "type": 1, "value": { @@ -31184,12 +41062,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476478538", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476478538", "content": { "type": 1, "value": { @@ -31213,12 +41091,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259/details", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259/details", "content": { "type": 1, "value": { @@ -31234,12 +41123,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259", "content": { "type": 1, "value": { @@ -31263,12 +41152,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715/details", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715/details", "content": { "type": 1, "value": { @@ -31284,12 +41184,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715", "content": { "type": 1, "value": { @@ -31314,12 +41214,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400/details", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400/details", "content": { "type": 1, "value": { @@ -31335,12 +41246,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400", "content": { "type": 1, "value": { @@ -31365,12 +41276,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628/details", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628/details", "content": { "type": 1, "value": { @@ -31386,12 +41308,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628", "content": { "type": 1, "value": { @@ -31416,12 +41338,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654/details", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654/details", "content": { "type": 1, "value": { @@ -31437,12 +41370,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654", "content": { "type": 1, "value": { @@ -31467,12 +41400,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000/credit", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/credit", "content": { "type": 1, "value": { @@ -31481,12 +41436,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/060606366606758000", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000", "content": { "type": 1, "value": { @@ -31498,12 +41453,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/BTC", + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BTC", "content": { "type": 1, "value": { @@ -31513,12 +41479,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/BNB", + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BNB", "content": { "type": 1, "value": { @@ -31528,12 +41494,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/BUSD", + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BUSD", "content": { "type": 1, "value": { @@ -31543,12 +41509,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/KAVA", + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/KAVA", "content": { "type": 1, "value": { @@ -31558,12 +41524,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BRL", "content": { "type": 1, "value": { @@ -31573,12 +41539,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/IDEX", + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/IDEX", "content": { "type": 1, "value": { @@ -31588,12 +41554,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/NFT", + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/NFT", "content": { "type": 1, "value": { @@ -31603,12 +41569,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/LUNC", + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/LUNC", "content": { "type": 1, "value": { @@ -31618,12 +41584,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650/balances/GFT", + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/GFT", "content": { "type": 1, "value": { @@ -31633,12 +41599,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/061447691609698650", + "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/061447691609698650", "content": { "type": 1, "value": { @@ -31649,12 +41626,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/balances/IVIP", "content": { "type": 1, "value": { @@ -31664,12 +41641,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/date_of_expiration", "content": { "type": 1, "value": { @@ -31678,12 +41666,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/details", "content": { "type": 1, "value": { @@ -31699,12 +41698,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997", "content": { "type": 1, "value": { @@ -31731,12 +41730,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691064347943/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691064347943/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691064347943/details", "content": { "type": 1, "value": { @@ -31752,12 +41762,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691064347943", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691064347943", "content": { "type": 1, "value": { @@ -31781,12 +41791,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691234903050/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691234903050/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691234903050/details", "content": { "type": 1, "value": { @@ -31802,12 +41823,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691234903050", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691234903050", "content": { "type": 1, "value": { @@ -31831,12 +41852,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691237670718/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691237670718/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691237670718/details", "content": { "type": 1, "value": { @@ -31852,12 +41884,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691237670718", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691237670718", "content": { "type": 1, "value": { @@ -31881,12 +41913,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691454318499/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691454318499/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691454318499/details", "content": { "type": 1, "value": { @@ -31902,12 +41945,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691454318499", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691454318499", "content": { "type": 1, "value": { @@ -31931,12 +41974,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/date_of_expiration", "content": { "type": 1, "value": { @@ -31945,12 +41988,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/details", "content": { "type": 1, "value": { @@ -31966,12 +42020,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179", "content": { "type": 1, "value": { @@ -31998,12 +42052,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691500327136/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691500327136/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691500327136/details", "content": { "type": 1, "value": { @@ -32019,12 +42084,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691500327136", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691500327136", "content": { "type": 1, "value": { @@ -32048,12 +42113,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691711802306/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691711802306/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691711802306/details", "content": { "type": 1, "value": { @@ -32069,12 +42145,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691711802306", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691711802306", "content": { "type": 1, "value": { @@ -32098,12 +42174,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691848017758/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691848017758/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691848017758/details", "content": { "type": 1, "value": { @@ -32119,12 +42206,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1691848017758", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691848017758", "content": { "type": 1, "value": { @@ -32148,12 +42235,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692027842104/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692027842104/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692027842104/details", "content": { "type": 1, "value": { @@ -32169,12 +42267,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692027842104", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692027842104", "content": { "type": 1, "value": { @@ -32198,12 +42296,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692250715020/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692250715020/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692250715020/details", "content": { "type": 1, "value": { @@ -32219,12 +42328,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692250715020", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692250715020", "content": { "type": 1, "value": { @@ -32248,12 +42357,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/date_of_expiration", "content": { "type": 1, "value": { @@ -32262,12 +42371,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/details", "content": { "type": 1, "value": { @@ -32283,12 +42403,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158", "content": { "type": 1, "value": { @@ -32311,12 +42431,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/date_of_expiration", "content": { "type": 1, "value": { @@ -32325,12 +42445,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/details", "content": { "type": 1, "value": { @@ -32346,12 +42477,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184", "content": { "type": 1, "value": { @@ -32374,12 +42505,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692488711638/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692488711638/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692488711638/details", "content": { "type": 1, "value": { @@ -32395,12 +42537,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692488711638", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692488711638", "content": { "type": 1, "value": { @@ -32424,12 +42566,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/date_of_expiration", "content": { "type": 1, "value": { @@ -32438,12 +42580,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/details", "content": { "type": 1, "value": { @@ -32459,12 +42612,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836", "content": { "type": 1, "value": { @@ -32491,12 +42644,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666772551/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666772551/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666772551/details", "content": { "type": 1, "value": { @@ -32512,12 +42676,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666772551", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666772551", "content": { "type": 1, "value": { @@ -32541,12 +42705,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666803752/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666803752/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666803752/details", "content": { "type": 1, "value": { @@ -32562,12 +42737,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666803752", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666803752", "content": { "type": 1, "value": { @@ -32591,12 +42766,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692730130844/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692730130844/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692730130844/details", "content": { "type": 1, "value": { @@ -32612,12 +42798,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692730130844", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692730130844", "content": { "type": 1, "value": { @@ -32641,12 +42827,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692751123570/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692751123570/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692751123570/details", "content": { "type": 1, "value": { @@ -32662,12 +42859,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692751123570", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692751123570", "content": { "type": 1, "value": { @@ -32691,12 +42888,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692814492618/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692814492618/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692814492618/details", "content": { "type": 1, "value": { @@ -32712,12 +42920,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1692814492618", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692814492618", "content": { "type": 1, "value": { @@ -32741,12 +42949,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/date_of_expiration", "content": { "type": 1, "value": { @@ -32755,12 +42963,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/details", "content": { "type": 1, "value": { @@ -32776,12 +42995,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264", "content": { "type": 1, "value": { @@ -32808,12 +43027,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694719090426/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1694719090426/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694719090426/details", "content": { "type": 1, "value": { @@ -32829,12 +43059,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1694719090426", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694719090426", "content": { "type": 1, "value": { @@ -32858,12 +43088,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082/details", "content": { "type": 1, "value": { @@ -32879,12 +43120,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082", "content": { "type": 1, "value": { @@ -32908,12 +43149,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650/details", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650/details", "content": { "type": 1, "value": { @@ -32929,12 +43181,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650", "content": { "type": 1, "value": { @@ -32959,12 +43211,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384/credit", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/credit", "content": { "type": 1, "value": { @@ -32974,12 +43248,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/062575214502477384", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384", "content": { "type": 1, "value": { @@ -32990,12 +43264,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/065013731763701400/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/065013731763701400/balances/BRL", "content": { "type": 1, "value": { @@ -33005,12 +43279,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/065013731763701400/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357", + "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357", "content": { "type": 1, "value": { @@ -33036,12 +43343,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/065013731763701400/credit", + "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/065013731763701400/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/065013731763701400/credit", "content": { "type": 1, "value": { @@ -33050,12 +43379,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/065013731763701400", + "path": "ivipcoin-db::__movement_wallet__/065013731763701400", "content": { "type": 1, "value": { @@ -33067,12 +43396,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/costs[0]", "content": { "type": 1, "value": { @@ -33082,12 +43422,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info/collector", "content": { "type": 1, "value": { @@ -33095,12 +43446,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details", + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details", "content": { "type": 1, "value": { @@ -33115,12 +43477,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009", + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009", "content": { "type": 1, "value": { @@ -33143,12 +43505,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/066749403784981840/credit", + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/credit", "content": { "type": 1, "value": { @@ -33157,12 +43541,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/066749403784981840", + "path": "ivipcoin-db::__movement_wallet__/066749403784981840", "content": { "type": 1, "value": { @@ -33173,12 +43557,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances/BRL", "content": { "type": 1, "value": { @@ -33188,12 +43572,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances/IVIP", "content": { "type": 1, "value": { @@ -33203,12 +43587,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832", "content": { "type": 1, "value": { @@ -33234,12 +43651,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719313, - "modified": 1700589719313 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details/costs[0]", "content": { "type": 1, "value": { @@ -33249,12 +43666,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395484, + "modified": 1700748395484 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168", "content": { "type": 1, "value": { @@ -33277,12 +43705,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624428265/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624428265/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624428265/details", "content": { "type": 1, "value": { @@ -33299,12 +43738,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624428265", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624428265", "content": { "type": 1, "value": { @@ -33329,12 +43768,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details/costs[0]", "content": { "type": 1, "value": { @@ -33344,12 +43783,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509", "content": { "type": 1, "value": { @@ -33372,12 +43822,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624906138/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624906138/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624906138/details", "content": { "type": 1, "value": { @@ -33394,12 +43855,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624906138", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624906138", "content": { "type": 1, "value": { @@ -33424,12 +43885,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217", "content": { "type": 1, "value": { @@ -33455,12 +43938,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024615/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024615/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024615/details", "content": { "type": 1, "value": { @@ -33479,12 +43973,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024615", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024615", "content": { "type": 1, "value": { @@ -33510,12 +44004,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024774/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024774/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024774/details", "content": { "type": 1, "value": { @@ -33534,12 +44039,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024774", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024774", "content": { "type": 1, "value": { @@ -33565,12 +44070,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1688524692305/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688524692305/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688524692305/details", "content": { "type": 1, "value": { @@ -33587,12 +44103,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1688524692305", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688524692305", "content": { "type": 1, "value": { @@ -33616,12 +44132,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1688525524308/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688525524308/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688525524308/details", "content": { "type": 1, "value": { @@ -33638,12 +44165,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1688525524308", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688525524308", "content": { "type": 1, "value": { @@ -33668,12 +44195,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298", "content": { "type": 1, "value": { @@ -33699,12 +44248,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308", "content": { "type": 1, "value": { @@ -33730,12 +44301,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928096/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928096/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928096/details", "content": { "type": 1, "value": { @@ -33754,12 +44336,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928096", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928096", "content": { "type": 1, "value": { @@ -33785,12 +44367,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928337/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928337/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928337/details", "content": { "type": 1, "value": { @@ -33809,12 +44402,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928337", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928337", "content": { "type": 1, "value": { @@ -33840,12 +44433,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486/details", "content": { "type": 1, "value": { @@ -33861,12 +44465,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486", "content": { "type": 1, "value": { @@ -33890,12 +44494,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476/details", "content": { "type": 1, "value": { @@ -33911,12 +44526,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476", "content": { "type": 1, "value": { @@ -33940,12 +44555,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053/details", "content": { "type": 1, "value": { @@ -33961,12 +44587,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053", "content": { "type": 1, "value": { @@ -33990,12 +44616,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/date_of_expiration", "content": { "type": 1, "value": { @@ -34004,12 +44630,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/details", "content": { "type": 1, "value": { @@ -34025,12 +44662,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023", "content": { "type": 1, "value": { @@ -34057,12 +44694,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296799894/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296799894/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296799894/details", "content": { "type": 1, "value": { @@ -34081,12 +44729,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296799894", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296799894", "content": { "type": 1, "value": { @@ -34112,12 +44760,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296800012/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296800012/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296800012/details", "content": { "type": 1, "value": { @@ -34136,12 +44795,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296800012", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296800012", "content": { "type": 1, "value": { @@ -34167,12 +44826,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329/details", "content": { "type": 1, "value": { @@ -34188,12 +44858,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329", "content": { "type": 1, "value": { @@ -34217,12 +44887,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497/details", "content": { "type": 1, "value": { @@ -34238,12 +44919,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497", "content": { "type": 1, "value": { @@ -34270,12 +44951,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/date_of_expiration", "content": { "type": 1, "value": { @@ -34284,12 +44965,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/details", "content": { "type": 1, "value": { @@ -34305,12 +44997,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286", "content": { "type": 1, "value": { @@ -34337,12 +45029,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405/details", "content": { "type": 1, "value": { @@ -34360,12 +45063,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405", "content": { "type": 1, "value": { @@ -34389,12 +45092,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463/details", "content": { "type": 1, "value": { @@ -34412,12 +45126,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463", "content": { "type": 1, "value": { @@ -34441,12 +45155,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805/details", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805/details", "content": { "type": 1, "value": { @@ -34462,12 +45187,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805", "content": { "type": 1, "value": { @@ -34492,12 +45217,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/costs/0", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/costs[0]", "content": { "type": 1, "value": { @@ -34507,12 +45243,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168", "content": { "type": 1, "value": { @@ -34530,12 +45266,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509/costs/0", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509/costs[0]", "content": { "type": 1, "value": { @@ -34545,12 +45281,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509", "content": { "type": 1, "value": { @@ -34568,12 +45304,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/costs/0", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/costs[0]", "content": { "type": 1, "value": { @@ -34583,12 +45330,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168", "content": { "type": 1, "value": { @@ -34606,12 +45353,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509/costs/0", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509/costs[0]", "content": { "type": 1, "value": { @@ -34621,12 +45368,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509", "content": { "type": 1, "value": { @@ -34644,12 +45391,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/costs/0", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/costs[0]", "content": { "type": 1, "value": { @@ -34659,12 +45417,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395485, + "modified": 1700748395485 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168", "content": { "type": 1, "value": { @@ -34682,12 +45440,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509/costs/0", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509/costs[0]", "content": { "type": 1, "value": { @@ -34697,12 +45455,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509", "content": { "type": 1, "value": { @@ -34720,12 +45478,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/costs/0", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/costs[0]", "content": { "type": 1, "value": { @@ -34735,12 +45504,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168", "content": { "type": 1, "value": { @@ -34759,12 +45528,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509/costs/0", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509/costs[0]", "content": { "type": 1, "value": { @@ -34774,12 +45543,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509", "content": { "type": 1, "value": { @@ -34798,12 +45567,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910/credit", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit", "content": { "type": 1, "value": { @@ -34814,12 +45605,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072156872012598910", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910", "content": { "type": 1, "value": { @@ -34831,12 +45622,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072270616449276800", + "path": "ivipcoin-db::__movement_wallet__/072270616449276800/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072270616449276800/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072270616449276800", "content": { "type": 1, "value": { @@ -34847,12 +45660,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072316538247009010/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances/BRL", "content": { "type": 1, "value": { @@ -34862,12 +45675,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072316538247009010/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances/IVIP", "content": { "type": 1, "value": { @@ -34877,12 +45690,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664", + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664", "content": { "type": 1, "value": { @@ -34908,12 +45754,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689029121257/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072316538247009010/history/1689029121257/details", + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689029121257/details", "content": { "type": 1, "value": { @@ -34930,12 +45787,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072316538247009010/history/1689029121257", + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689029121257", "content": { "type": 1, "value": { @@ -34960,12 +45817,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072316538247009010/credit", + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/credit", "content": { "type": 1, "value": { @@ -34974,12 +45853,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072316538247009010", + "path": "ivipcoin-db::__movement_wallet__/072316538247009010", "content": { "type": 1, "value": { @@ -34991,12 +45870,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719314, - "modified": 1700589719314 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances/BRL", "content": { "type": 1, "value": { @@ -35006,12 +45885,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances/IVIP", "content": { "type": 1, "value": { @@ -35021,12 +45900,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656", "content": { "type": 1, "value": { @@ -35052,12 +45964,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1684634671417/details", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684634671417/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684634671417/details", "content": { "type": 1, "value": { @@ -35074,12 +45997,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1684634671417", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684634671417", "content": { "type": 1, "value": { @@ -35104,12 +46027,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970", "content": { "type": 1, "value": { @@ -35135,12 +46080,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718", "content": { "type": 1, "value": { @@ -35166,12 +46133,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1685744132878/details", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685744132878/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685744132878/details", "content": { "type": 1, "value": { @@ -35188,12 +46166,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1685744132878", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685744132878", "content": { "type": 1, "value": { @@ -35218,12 +46196,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807", "content": { "type": 1, "value": { @@ -35249,12 +46249,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848", "content": { "type": 1, "value": { @@ -35280,12 +46302,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361/details", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361/details", "content": { "type": 1, "value": { @@ -35301,12 +46334,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361", "content": { "type": 1, "value": { @@ -35334,12 +46367,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910/credit", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/credit", "content": { "type": 1, "value": { @@ -35350,12 +46405,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/072402089290148910", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910", "content": { "type": 1, "value": { @@ -35367,12 +46422,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/073789164441763200/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/073789164441763200/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/073789164441763200", + "path": "ivipcoin-db::__movement_wallet__/073789164441763200", "content": { "type": 1, "value": { @@ -35382,12 +46459,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/074981242324574820/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430", + "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430", "content": { "type": 1, "value": { @@ -35411,12 +46521,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/074981242324574820", + "path": "ivipcoin-db::__movement_wallet__/074981242324574820", "content": { "type": 1, "value": { @@ -35427,12 +46548,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075270012379589070/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/075270012379589070/balances/BRL", "content": { "type": 1, "value": { @@ -35442,12 +46563,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341", + "path": "ivipcoin-db::__movement_wallet__/075270012379589070/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341", "content": { "type": 1, "value": { @@ -35473,12 +46627,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075270012379589070/credit", + "path": "ivipcoin-db::__movement_wallet__/075270012379589070/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075270012379589070/credit", "content": { "type": 1, "value": { @@ -35487,12 +46663,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075270012379589070", + "path": "ivipcoin-db::__movement_wallet__/075270012379589070", "content": { "type": 1, "value": { @@ -35504,12 +46680,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075429520947661650/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/balances/BRL", "content": { "type": 1, "value": { @@ -35519,12 +46695,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914", + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914", "content": { "type": 1, "value": { @@ -35550,12 +46759,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1689771495719/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075429520947661650/history/1689771495719/details", + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1689771495719/details", "content": { "type": 1, "value": { @@ -35572,12 +46792,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075429520947661650/history/1689771495719", + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1689771495719", "content": { "type": 1, "value": { @@ -35601,12 +46821,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075429520947661650/credit", + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/credit", "content": { "type": 1, "value": { @@ -35615,12 +46857,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/075429520947661650", + "path": "ivipcoin-db::__movement_wallet__/075429520947661650", "content": { "type": 1, "value": { @@ -35632,12 +46874,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076012264992064480/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076012264992064480/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076012264992064480/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076012264992064480/credit", + "path": "ivipcoin-db::__movement_wallet__/076012264992064480/credit", "content": { "type": 1, "value": { @@ -35646,12 +46921,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076012264992064480", + "path": "ivipcoin-db::__movement_wallet__/076012264992064480", "content": { "type": 1, "value": { @@ -35663,12 +46938,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/balances/IVIP", "content": { "type": 1, "value": { @@ -35678,12 +46953,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271", "content": { "type": 1, "value": { @@ -35709,12 +47017,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297", "content": { "type": 1, "value": { @@ -35740,12 +47070,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791", "content": { "type": 1, "value": { @@ -35771,12 +47123,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details/costs[0]", "content": { "type": 1, "value": { @@ -35786,12 +47138,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499", "content": { "type": 1, "value": { @@ -35814,12 +47177,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684627580539/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684627580539/details", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684627580539/details", "content": { "type": 1, "value": { @@ -35836,12 +47210,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684627580539", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684627580539", "content": { "type": 1, "value": { @@ -35866,12 +47240,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684628335504/details", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684628335504/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684628335504/details", "content": { "type": 1, "value": { @@ -35888,12 +47273,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684628335504", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684628335504", "content": { "type": 1, "value": { @@ -35918,12 +47303,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684633146254/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684633146254/details", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684633146254/details", "content": { "type": 1, "value": { @@ -35940,12 +47336,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1684633146254", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684633146254", "content": { "type": 1, "value": { @@ -35970,12 +47366,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878", "content": { "type": 1, "value": { @@ -36001,12 +47419,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837", "content": { "type": 1, "value": { @@ -36028,12 +47468,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395486, + "modified": 1700748395486 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445", "content": { "type": 1, "value": { @@ -36055,12 +47517,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395486, + "modified": 1700748395486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689751872577/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1689751872577/details", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689751872577/details", "content": { "type": 1, "value": { @@ -36079,12 +47552,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1689751872577", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689751872577", "content": { "type": 1, "value": { @@ -36110,12 +47583,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395487, + "modified": 1700748395487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412", "content": { "type": 1, "value": { @@ -36141,12 +47636,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1690471265404/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1690471265404/details", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1690471265404/details", "content": { "type": 1, "value": { @@ -36165,12 +47671,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1690471265404", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1690471265404", "content": { "type": 1, "value": { @@ -36196,12 +47702,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/date_of_expiration", "content": { "type": 1, "value": { @@ -36210,12 +47716,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/details", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/details", "content": { "type": 1, "value": { @@ -36231,12 +47748,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475", "content": { "type": 1, "value": { @@ -36263,12 +47780,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580/details", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580/details", "content": { "type": 1, "value": { @@ -36286,12 +47814,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580", "content": { "type": 1, "value": { @@ -36315,12 +47843,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details/costs[0]", "content": { "type": 1, "value": { @@ -36330,12 +47858,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details", "content": { "type": 1, "value": { @@ -36351,12 +47879,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941", "content": { "type": 1, "value": { @@ -36384,12 +47912,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/date_of_expiration", "content": { "type": 1, "value": { @@ -36398,12 +47926,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/details", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395487, + "modified": 1700748395487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/details", "content": { "type": 1, "value": { @@ -36419,12 +47958,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018", "content": { "type": 1, "value": { @@ -36452,12 +47991,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272/details", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395487, + "modified": 1700748395487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272/details", "content": { "type": 1, "value": { @@ -36475,12 +48025,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272", "content": { "type": 1, "value": { @@ -36505,12 +48055,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/costs/0", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395487, + "modified": 1700748395487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/costs[0]", "content": { "type": 1, "value": { @@ -36520,12 +48081,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499", "content": { "type": 1, "value": { @@ -36543,12 +48104,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/costs/0", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/costs[0]", "content": { "type": 1, "value": { @@ -36558,12 +48130,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499", "content": { "type": 1, "value": { @@ -36581,12 +48153,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/costs/0", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395487, + "modified": 1700748395487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/costs[0]", "content": { "type": 1, "value": { @@ -36596,12 +48179,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499", "content": { "type": 1, "value": { @@ -36619,12 +48202,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/costs/0", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/costs[0]", "content": { "type": 1, "value": { @@ -36634,12 +48228,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499", "content": { "type": 1, "value": { @@ -36658,12 +48252,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/costs/0", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/costs[0]", "content": { "type": 1, "value": { @@ -36673,12 +48278,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499", "content": { "type": 1, "value": { @@ -36695,12 +48300,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/costs/0", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395487, + "modified": 1700748395487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/costs[0]", "content": { "type": 1, "value": { @@ -36710,12 +48326,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499", "content": { "type": 1, "value": { @@ -36732,12 +48348,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719315, - "modified": 1700589719315 + "created": 1700748395487, + "modified": 1700748395487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/costs/0", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/costs[0]", "content": { "type": 1, "value": { @@ -36747,12 +48374,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499", "content": { "type": 1, "value": { @@ -36769,12 +48396,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395487, + "modified": 1700748395487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/costs/0", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/costs[0]", "content": { "type": 1, "value": { @@ -36784,12 +48422,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395487, + "modified": 1700748395487 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499", "content": { "type": 1, "value": { @@ -36806,12 +48444,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/costs/0", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/costs[0]", "content": { "type": 1, "value": { @@ -36821,12 +48470,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499", "content": { "type": 1, "value": { @@ -36843,12 +48492,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/costs/0", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/costs[0]", "content": { "type": 1, "value": { @@ -36858,12 +48518,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499", "content": { "type": 1, "value": { @@ -36880,12 +48540,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040/credit", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit", "content": { "type": 1, "value": { @@ -36896,12 +48578,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/076519781500715040", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040", "content": { "type": 1, "value": { @@ -36913,12 +48595,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078019109826485740", + "path": "ivipcoin-db::__movement_wallet__/078019109826485740/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078019109826485740/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078019109826485740", "content": { "type": 1, "value": { @@ -36929,12 +48633,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078295014075340450/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149", + "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149", "content": { "type": 1, "value": { @@ -36958,12 +48695,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078295014075340450", + "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078295014075340450", "content": { "type": 1, "value": { @@ -36974,12 +48722,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances/BRL", "content": { "type": 1, "value": { @@ -36989,12 +48737,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances/IVIP", "content": { "type": 1, "value": { @@ -37004,12 +48752,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523", + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523", "content": { "type": 1, "value": { @@ -37035,12 +48816,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/history/1684625628231/details", + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684625628231/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684625628231/details", "content": { "type": 1, "value": { @@ -37057,12 +48849,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/history/1684625628231", + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684625628231", "content": { "type": 1, "value": { @@ -37087,12 +48879,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031", + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031", "content": { "type": 1, "value": { @@ -37114,12 +48928,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209", + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209", "content": { "type": 1, "value": { @@ -37141,12 +48977,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273", + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273", "content": { "type": 1, "value": { @@ -37168,12 +49026,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070", + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070", "content": { "type": 1, "value": { @@ -37199,12 +49079,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480/credit", + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/credit", "content": { "type": 1, "value": { @@ -37213,12 +49115,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/078345372944250480", + "path": "ivipcoin-db::__movement_wallet__/078345372944250480", "content": { "type": 1, "value": { @@ -37229,12 +49131,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/080731978336071380/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/balances/IVIP", "content": { "type": 1, "value": { @@ -37244,12 +49146,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483", + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483", "content": { "type": 1, "value": { @@ -37275,12 +49210,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/080731978336071380/history/1684624287649/details", + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684624287649/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684624287649/details", "content": { "type": 1, "value": { @@ -37297,12 +49243,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/080731978336071380/history/1684624287649", + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684624287649", "content": { "type": 1, "value": { @@ -37327,12 +49273,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/080731978336071380/history/1685667269938/details", + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1685667269938/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1685667269938/details", "content": { "type": 1, "value": { @@ -37349,12 +49306,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/080731978336071380/history/1685667269938", + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1685667269938", "content": { "type": 1, "value": { @@ -37378,12 +49335,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/080731978336071380/credit", + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/credit", "content": { "type": 1, "value": { @@ -37392,12 +49371,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/080731978336071380", + "path": "ivipcoin-db::__movement_wallet__/080731978336071380", "content": { "type": 1, "value": { @@ -37409,12 +49388,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/balances/IVIP", "content": { "type": 1, "value": { @@ -37424,12 +49403,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145", "content": { "type": 1, "value": { @@ -37455,12 +49467,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274", "content": { "type": 1, "value": { @@ -37486,12 +49520,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678059759995/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1678059759995/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678059759995/details", "content": { "type": 1, "value": { @@ -37508,12 +49553,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1678059759995", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678059759995", "content": { "type": 1, "value": { @@ -37538,12 +49583,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429", "content": { "type": 1, "value": { @@ -37569,12 +49636,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678209797800/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1678209797800/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678209797800/details", "content": { "type": 1, "value": { @@ -37591,12 +49669,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1678209797800", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678209797800", "content": { "type": 1, "value": { @@ -37621,12 +49699,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678215371496/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1678215371496/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678215371496/details", "content": { "type": 1, "value": { @@ -37643,12 +49732,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1678215371496", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678215371496", "content": { "type": 1, "value": { @@ -37673,12 +49762,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1679267048083/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679267048083/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679267048083/details", "content": { "type": 1, "value": { @@ -37695,12 +49795,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1679267048083", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679267048083", "content": { "type": 1, "value": { @@ -37725,12 +49825,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679268223760/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1679268223760/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679268223760/details", "content": { "type": 1, "value": { @@ -37747,12 +49858,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1679268223760", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679268223760", "content": { "type": 1, "value": { @@ -37777,12 +49888,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679914966258/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1679914966258/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679914966258/details", "content": { "type": 1, "value": { @@ -37799,12 +49921,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1679914966258", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679914966258", "content": { "type": 1, "value": { @@ -37829,12 +49951,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395488, + "modified": 1700748395488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684348398411/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1684348398411/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684348398411/details", "content": { "type": 1, "value": { @@ -37851,12 +49984,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1684348398411", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684348398411", "content": { "type": 1, "value": { @@ -37881,12 +50014,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624161069/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624161069/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624161069/details", "content": { "type": 1, "value": { @@ -37903,12 +50047,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624161069", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624161069", "content": { "type": 1, "value": { @@ -37933,12 +50077,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624222413/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624222413/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624222413/details", "content": { "type": 1, "value": { @@ -37955,12 +50110,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624222413", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624222413", "content": { "type": 1, "value": { @@ -37985,12 +50140,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624292772/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624292772/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624292772/details", "content": { "type": 1, "value": { @@ -38007,12 +50173,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624292772", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624292772", "content": { "type": 1, "value": { @@ -38037,12 +50203,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831", "content": { "type": 1, "value": { @@ -38068,12 +50256,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454", "content": { "type": 1, "value": { @@ -38099,12 +50309,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269", "content": { "type": 1, "value": { @@ -38130,12 +50362,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1689688682027/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689688682027/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689688682027/details", "content": { "type": 1, "value": { @@ -38152,12 +50395,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1689688682027", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689688682027", "content": { "type": 1, "value": { @@ -38182,12 +50425,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/date_of_expiration", "content": { "type": 1, "value": { @@ -38196,12 +50439,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/details", "content": { "type": 1, "value": { @@ -38217,12 +50471,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204", "content": { "type": 1, "value": { @@ -38245,12 +50499,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726/details", "content": { "type": 1, "value": { @@ -38266,12 +50531,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726", "content": { "type": 1, "value": { @@ -38295,12 +50560,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313/details", "content": { "type": 1, "value": { @@ -38316,12 +50592,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313", "content": { "type": 1, "value": { @@ -38345,12 +50621,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659/details", "content": { "type": 1, "value": { @@ -38366,12 +50653,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659", "content": { "type": 1, "value": { @@ -38395,12 +50682,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073/details", "content": { "type": 1, "value": { @@ -38416,12 +50714,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073", "content": { "type": 1, "value": { @@ -38446,12 +50744,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446/details", "content": { "type": 1, "value": { @@ -38467,12 +50776,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446", "content": { "type": 1, "value": { @@ -38497,12 +50806,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573/details", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573/details", "content": { "type": 1, "value": { @@ -38518,12 +50838,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573", "content": { "type": 1, "value": { @@ -38548,12 +50868,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280/credit", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/credit", "content": { "type": 1, "value": { @@ -38562,12 +50904,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/081398362853569280", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280", "content": { "type": 1, "value": { @@ -38579,12 +50921,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/balances/IVIP", "content": { "type": 1, "value": { @@ -38594,12 +50936,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/date_of_expiration", "content": { "type": 1, "value": { @@ -38608,12 +50961,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/details", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/details", "content": { "type": 1, "value": { @@ -38629,12 +50993,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584", "content": { "type": 1, "value": { @@ -38658,12 +51022,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/date_of_expiration", "content": { "type": 1, "value": { @@ -38672,12 +51036,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/details", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/details", "content": { "type": 1, "value": { @@ -38693,12 +51068,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721", "content": { "type": 1, "value": { @@ -38726,12 +51101,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483/details", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483/details", "content": { "type": 1, "value": { @@ -38747,12 +51133,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483", "content": { "type": 1, "value": { @@ -38777,12 +51163,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/date_of_expiration", "content": { "type": 1, "value": { @@ -38791,12 +51177,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/details", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/details", "content": { "type": 1, "value": { @@ -38812,12 +51209,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603", "content": { "type": 1, "value": { @@ -38845,12 +51242,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/date_of_expiration", "content": { "type": 1, "value": { @@ -38859,12 +51256,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/details", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/details", "content": { "type": 1, "value": { @@ -38880,12 +51288,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136", "content": { "type": 1, "value": { @@ -38913,12 +51321,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696611534552/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696611534552/details", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696611534552/details", "content": { "type": 1, "value": { @@ -38934,12 +51353,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/history/1696611534552", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696611534552", "content": { "type": 1, "value": { @@ -38964,12 +51383,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030/credit", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/credit", "content": { "type": 1, "value": { @@ -38978,12 +51419,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/083249759247314030", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030", "content": { "type": 1, "value": { @@ -38994,12 +51435,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/date_of_expiration", "content": { "type": 1, "value": { @@ -39008,12 +51460,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/details", + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/details", "content": { "type": 1, "value": { @@ -39029,12 +51492,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115", + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115", "content": { "type": 1, "value": { @@ -39058,12 +51521,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/date_of_expiration", "content": { "type": 1, "value": { @@ -39072,12 +51535,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/details", + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/details", "content": { "type": 1, "value": { @@ -39093,12 +51567,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840", + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840", "content": { "type": 1, "value": { @@ -39122,12 +51596,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/date_of_expiration", "content": { "type": 1, "value": { @@ -39136,12 +51610,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/details", + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/details", "content": { "type": 1, "value": { @@ -39157,12 +51642,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971", + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971", "content": { "type": 1, "value": { @@ -39186,12 +51671,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140/credit", + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/credit", "content": { "type": 1, "value": { @@ -39200,12 +51707,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/084938385673306140", + "path": "ivipcoin-db::__movement_wallet__/084938385673306140", "content": { "type": 1, "value": { @@ -39216,12 +51723,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732", "content": { "type": 1, "value": { @@ -39247,12 +51787,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1678163430853/details", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678163430853/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678163430853/details", "content": { "type": 1, "value": { @@ -39269,12 +51820,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1678163430853", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678163430853", "content": { "type": 1, "value": { @@ -39299,12 +51850,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198", "content": { "type": 1, "value": { @@ -39330,12 +51903,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1684632748749/details", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1684632748749/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1684632748749/details", "content": { "type": 1, "value": { @@ -39352,12 +51936,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1684632748749", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1684632748749", "content": { "type": 1, "value": { @@ -39382,12 +51966,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732", "content": { "type": 1, "value": { @@ -39409,12 +52015,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881", "content": { "type": 1, "value": { @@ -39436,12 +52064,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014", "content": { "type": 1, "value": { @@ -39467,12 +52117,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685666059762/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1685666059762/details", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685666059762/details", "content": { "type": 1, "value": { @@ -39489,12 +52150,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1685666059762", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685666059762", "content": { "type": 1, "value": { @@ -39518,12 +52179,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1685744731387/details", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685744731387/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685744731387/details", "content": { "type": 1, "value": { @@ -39540,12 +52212,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1685744731387", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685744731387", "content": { "type": 1, "value": { @@ -39570,12 +52242,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1688521364022/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1688521364022/details", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1688521364022/details", "content": { "type": 1, "value": { @@ -39592,12 +52275,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1688521364022", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1688521364022", "content": { "type": 1, "value": { @@ -39621,12 +52304,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902/details", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902/details", "content": { "type": 1, "value": { @@ -39642,12 +52336,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902", "content": { "type": 1, "value": { @@ -39671,12 +52365,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details/costs[0]", "content": { "type": 1, "value": { @@ -39686,12 +52380,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395489, + "modified": 1700748395489 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details", "content": { "type": 1, "value": { @@ -39707,12 +52401,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395490, + "modified": 1700748395490 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589", "content": { "type": 1, "value": { @@ -39739,12 +52433,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395490, + "modified": 1700748395490 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details/costs[0]", "content": { "type": 1, "value": { @@ -39754,12 +52448,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395490, + "modified": 1700748395490 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details", "content": { "type": 1, "value": { @@ -39775,12 +52469,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395490, + "modified": 1700748395490 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780", "content": { "type": 1, "value": { @@ -39808,12 +52502,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395490, + "modified": 1700748395490 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395490, + "modified": 1700748395490 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395490, + "modified": 1700748395490 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260/credit", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/credit", "content": { "type": 1, "value": { @@ -39824,12 +52540,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395490, + "modified": 1700748395490 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085212609036684260", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260", "content": { "type": 1, "value": { @@ -39841,12 +52557,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395490, + "modified": 1700748395490 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085869720472730110/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395490, + "modified": 1700748395490 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395490, + "modified": 1700748395490 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395490, + "modified": 1700748395490 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133", + "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133", "content": { "type": 1, "value": { @@ -39870,12 +52619,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395490, + "modified": 1700748395490 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085869720472730110/credit", + "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395490, + "modified": 1700748395490 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085869720472730110/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395490, + "modified": 1700748395490 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085869720472730110/credit", "content": { "type": 1, "value": { @@ -39884,12 +52655,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395490, + "modified": 1700748395490 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/085869720472730110", + "path": "ivipcoin-db::__movement_wallet__/085869720472730110", "content": { "type": 1, "value": { @@ -39900,12 +52671,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395490, + "modified": 1700748395490 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/balances/IVIP", "content": { "type": 1, "value": { @@ -39915,12 +52686,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395490, + "modified": 1700748395490 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395490, + "modified": 1700748395490 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395490, + "modified": 1700748395490 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395490, + "modified": 1700748395490 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816", "content": { "type": 1, "value": { @@ -39946,12 +52750,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395490, + "modified": 1700748395490 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/costs[0]", "content": { "type": 1, "value": { @@ -39961,12 +52765,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395490, + "modified": 1700748395490 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info/collector", "content": { "type": 1, "value": { @@ -39974,12 +52789,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details", "content": { "type": 1, "value": { @@ -39994,12 +52820,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258", "content": { "type": 1, "value": { @@ -40022,12 +52848,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1680260155565/details", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680260155565/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680260155565/details", "content": { "type": 1, "value": { @@ -40044,12 +52881,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1680260155565", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680260155565", "content": { "type": 1, "value": { @@ -40074,12 +52911,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680391431083/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1680391431083/details", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680391431083/details", "content": { "type": 1, "value": { @@ -40096,12 +52944,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1680391431083", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680391431083", "content": { "type": 1, "value": { @@ -40126,12 +52974,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250", "content": { "type": 1, "value": { @@ -40157,12 +53027,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1684628885106/details", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1684628885106/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1684628885106/details", "content": { "type": 1, "value": { @@ -40179,12 +53060,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1684628885106", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1684628885106", "content": { "type": 1, "value": { @@ -40209,12 +53090,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/date_of_expiration", "content": { "type": 1, "value": { @@ -40223,12 +53104,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/details", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/details", "content": { "type": 1, "value": { @@ -40244,12 +53136,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211", "content": { "type": 1, "value": { @@ -40272,12 +53164,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/date_of_expiration", "content": { "type": 1, "value": { @@ -40286,12 +53178,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/details", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/details", "content": { "type": 1, "value": { @@ -40307,12 +53210,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890", "content": { "type": 1, "value": { @@ -40339,12 +53242,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1695782499707/details", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1695782499707/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1695782499707/details", "content": { "type": 1, "value": { @@ -40360,12 +53274,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/history/1695782499707", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1695782499707", "content": { "type": 1, "value": { @@ -40390,12 +53304,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410/credit", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/credit", "content": { "type": 1, "value": { @@ -40404,12 +53340,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/087877902032143410", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410", "content": { "type": 1, "value": { @@ -40421,12 +53357,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/balances/IVIP", "content": { "type": 1, "value": { @@ -40436,12 +53372,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598", "content": { "type": 1, "value": { @@ -40467,12 +53436,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184", "content": { "type": 1, "value": { @@ -40494,12 +53485,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873", "content": { "type": 1, "value": { @@ -40525,12 +53538,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805", "content": { "type": 1, "value": { @@ -40554,12 +53589,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500", "content": { "type": 1, "value": { @@ -40583,12 +53640,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719316, - "modified": 1700589719316 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383", "content": { "type": 1, "value": { @@ -40612,12 +53691,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647", "content": { "type": 1, "value": { @@ -40643,12 +53744,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624236329/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624236329/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624236329/details", "content": { "type": 1, "value": { @@ -40665,12 +53777,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624236329", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624236329", "content": { "type": 1, "value": { @@ -40695,12 +53807,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624348122/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624348122/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624348122/details", "content": { "type": 1, "value": { @@ -40717,12 +53840,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624348122", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624348122", "content": { "type": 1, "value": { @@ -40747,12 +53870,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624387279/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624387279/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624387279/details", "content": { "type": 1, "value": { @@ -40769,12 +53903,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624387279", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624387279", "content": { "type": 1, "value": { @@ -40799,12 +53933,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624827425/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624827425/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624827425/details", "content": { "type": 1, "value": { @@ -40821,12 +53966,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624827425", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624827425", "content": { "type": 1, "value": { @@ -40851,12 +53996,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624867474/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624867474/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624867474/details", "content": { "type": 1, "value": { @@ -40873,12 +54029,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624867474", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624867474", "content": { "type": 1, "value": { @@ -40903,12 +54059,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685361710845/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685361710845/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685361710845/details", "content": { "type": 1, "value": { @@ -40925,12 +54092,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685361710845", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685361710845", "content": { "type": 1, "value": { @@ -40955,12 +54122,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391792305/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391792305/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391792305/details", "content": { "type": 1, "value": { @@ -40977,12 +54155,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391792305", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391792305", "content": { "type": 1, "value": { @@ -41007,12 +54185,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391842660/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391842660/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391842660/details", "content": { "type": 1, "value": { @@ -41029,12 +54218,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391842660", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391842660", "content": { "type": 1, "value": { @@ -41059,12 +54248,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391972284/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391972284/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391972284/details", "content": { "type": 1, "value": { @@ -41081,12 +54281,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391972284", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391972284", "content": { "type": 1, "value": { @@ -41111,12 +54311,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392038537/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392038537/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392038537/details", "content": { "type": 1, "value": { @@ -41133,12 +54344,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392038537", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392038537", "content": { "type": 1, "value": { @@ -41163,12 +54374,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392165654/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392165654/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392165654/details", "content": { "type": 1, "value": { @@ -41185,12 +54407,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392165654", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392165654", "content": { "type": 1, "value": { @@ -41215,12 +54437,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392465062/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392465062/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392465062/details", "content": { "type": 1, "value": { @@ -41237,12 +54470,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392465062", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392465062", "content": { "type": 1, "value": { @@ -41267,12 +54500,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543", "content": { "type": 1, "value": { @@ -41294,12 +54549,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685409104532/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685409104532/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685409104532/details", "content": { "type": 1, "value": { @@ -41316,12 +54582,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685409104532", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685409104532", "content": { "type": 1, "value": { @@ -41346,12 +54612,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494858663/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494858663/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494858663/details", "content": { "type": 1, "value": { @@ -41368,12 +54645,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494858663", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494858663", "content": { "type": 1, "value": { @@ -41398,12 +54675,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494914975/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494914975/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494914975/details", "content": { "type": 1, "value": { @@ -41420,12 +54708,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494914975", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494914975", "content": { "type": 1, "value": { @@ -41450,12 +54738,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495030715/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495030715/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495030715/details", "content": { "type": 1, "value": { @@ -41472,12 +54771,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495030715", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495030715", "content": { "type": 1, "value": { @@ -41502,12 +54801,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046", "content": { "type": 1, "value": { @@ -41531,12 +54852,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395491, + "modified": 1700748395491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685496474860/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685496474860/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685496474860/details", "content": { "type": 1, "value": { @@ -41553,12 +54885,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685496474860", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685496474860", "content": { "type": 1, "value": { @@ -41583,12 +54915,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685572512459/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685572512459/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685572512459/details", "content": { "type": 1, "value": { @@ -41605,12 +54948,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685572512459", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685572512459", "content": { "type": 1, "value": { @@ -41635,12 +54978,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795", "content": { "type": 1, "value": { @@ -41664,12 +55029,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706", "content": { "type": 1, "value": { @@ -41693,12 +55080,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790", "content": { "type": 1, "value": { @@ -41724,12 +55133,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685625562355/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685625562355/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685625562355/details", "content": { "type": 1, "value": { @@ -41746,12 +55166,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685625562355", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685625562355", "content": { "type": 1, "value": { @@ -41776,12 +55196,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685639526258/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685639526258/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685639526258/details", "content": { "type": 1, "value": { @@ -41798,12 +55229,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685639526258", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685639526258", "content": { "type": 1, "value": { @@ -41828,12 +55259,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824", "content": { "type": 1, "value": { @@ -41859,12 +55312,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685653675417/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685653675417/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685653675417/details", "content": { "type": 1, "value": { @@ -41881,12 +55345,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1685653675417", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685653675417", "content": { "type": 1, "value": { @@ -41911,12 +55375,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749", "content": { "type": 1, "value": { @@ -41938,12 +55424,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712", "content": { "type": 1, "value": { @@ -41965,12 +55473,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/date_of_expiration", "content": { "type": 1, "value": { @@ -41979,12 +55487,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/details", "content": { "type": 1, "value": { @@ -42000,12 +55519,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377", "content": { "type": 1, "value": { @@ -42028,12 +55547,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/date_of_expiration", "content": { "type": 1, "value": { @@ -42042,12 +55561,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/details", "content": { "type": 1, "value": { @@ -42063,12 +55593,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298", "content": { "type": 1, "value": { @@ -42095,12 +55625,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690844181474/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1690844181474/details", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690844181474/details", "content": { "type": 1, "value": { @@ -42116,12 +55657,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/history/1690844181474", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690844181474", "content": { "type": 1, "value": { @@ -42145,12 +55686,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000/credit", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/credit", "content": { "type": 1, "value": { @@ -42160,12 +55723,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/088753368634775000", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000", "content": { "type": 1, "value": { @@ -42177,12 +55740,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/balances/IVIP", "content": { "type": 1, "value": { @@ -42192,12 +55755,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301", "content": { "type": 1, "value": { @@ -42223,12 +55819,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689197549929/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1689197549929/details", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689197549929/details", "content": { "type": 1, "value": { @@ -42245,12 +55852,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1689197549929", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689197549929", "content": { "type": 1, "value": { @@ -42275,12 +55882,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/date_of_expiration", "content": { "type": 1, "value": { @@ -42289,12 +55896,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/details", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/details", "content": { "type": 1, "value": { @@ -42310,12 +55928,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248", "content": { "type": 1, "value": { @@ -42339,12 +55957,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/date_of_expiration", "content": { "type": 1, "value": { @@ -42353,12 +55971,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/details", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/details", "content": { "type": 1, "value": { @@ -42374,12 +56003,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761", "content": { "type": 1, "value": { @@ -42403,12 +56032,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/date_of_expiration", "content": { "type": 1, "value": { @@ -42417,12 +56046,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/details", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/details", "content": { "type": 1, "value": { @@ -42438,12 +56078,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784", "content": { "type": 1, "value": { @@ -42471,12 +56111,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695903994262/details", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695903994262/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695903994262/details", "content": { "type": 1, "value": { @@ -42492,12 +56143,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/history/1695903994262", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695903994262", "content": { "type": 1, "value": { @@ -42522,12 +56173,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510/credit", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/credit", "content": { "type": 1, "value": { @@ -42536,12 +56209,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/091878369033558510", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510", "content": { "type": 1, "value": { @@ -42553,12 +56226,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675", + "path": "ivipcoin-db::__movement_wallet__/092392253957118480/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675", "content": { "type": 1, "value": { @@ -42582,12 +56288,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/092392253957118480", + "path": "ivipcoin-db::__movement_wallet__/092392253957118480", "content": { "type": 1, "value": { @@ -42598,12 +56315,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269", + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269", "content": { "type": 1, "value": { @@ -42625,12 +56375,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479", + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479", "content": { "type": 1, "value": { @@ -42652,12 +56424,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/095633229427881890/credit", + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/credit", "content": { "type": 1, "value": { @@ -42666,12 +56460,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/095633229427881890", + "path": "ivipcoin-db::__movement_wallet__/095633229427881890", "content": { "type": 1, "value": { @@ -42682,12 +56476,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520", + "path": "ivipcoin-db::__movement_wallet__/096124016860355650/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520", "content": { "type": 1, "value": { @@ -42709,12 +56536,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096124016860355650/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/096124016860355650/credit", + "path": "ivipcoin-db::__movement_wallet__/096124016860355650/credit", "content": { "type": 1, "value": { @@ -42723,12 +56572,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/096124016860355650", + "path": "ivipcoin-db::__movement_wallet__/096124016860355650", "content": { "type": 1, "value": { @@ -42739,12 +56588,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096261179492313170/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/096261179492313170", + "path": "ivipcoin-db::__movement_wallet__/096261179492313170/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096261179492313170", "content": { "type": 1, "value": { @@ -42754,12 +56625,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances/BRL", "content": { "type": 1, "value": { @@ -42769,12 +56640,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances/IVIP", "content": { "type": 1, "value": { @@ -42784,12 +56655,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483", "content": { "type": 1, "value": { @@ -42815,12 +56719,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667", "content": { "type": 1, "value": { @@ -42846,12 +56772,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719317, - "modified": 1700589719317 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details/costs[0]", "content": { "type": 1, "value": { @@ -42861,12 +56787,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806", "content": { "type": 1, "value": { @@ -42889,12 +56826,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1683548182568/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1683548182568/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1683548182568/details", "content": { "type": 1, "value": { @@ -42913,12 +56861,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1683548182568", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1683548182568", "content": { "type": 1, "value": { @@ -42944,12 +56892,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367503606/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367503606/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367503606/details", "content": { "type": 1, "value": { @@ -42968,12 +56927,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367503606", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367503606", "content": { "type": 1, "value": { @@ -42999,12 +56958,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395492, + "modified": 1700748395492 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details/costs[0]", "content": { "type": 1, "value": { @@ -43014,12 +56973,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395492, + "modified": 1700748395492 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554", "content": { "type": 1, "value": { @@ -43042,12 +57012,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684415962143/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684415962143/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684415962143/details", "content": { "type": 1, "value": { @@ -43066,12 +57047,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684415962143", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684415962143", "content": { "type": 1, "value": { @@ -43097,12 +57078,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879", "content": { "type": 1, "value": { @@ -43128,12 +57131,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684624390329/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684624390329/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684624390329/details", "content": { "type": 1, "value": { @@ -43150,12 +57164,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684624390329", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684624390329", "content": { "type": 1, "value": { @@ -43180,12 +57194,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details/costs[0]", "content": { "type": 1, "value": { @@ -43195,12 +57209,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049", "content": { "type": 1, "value": { @@ -43223,12 +57248,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661800868/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661800868/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661800868/details", "content": { "type": 1, "value": { @@ -43245,12 +57281,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661800868", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661800868", "content": { "type": 1, "value": { @@ -43275,12 +57311,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443", "content": { "type": 1, "value": { @@ -43306,12 +57364,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685486477860/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685486477860/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685486477860/details", "content": { "type": 1, "value": { @@ -43330,12 +57399,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685486477860", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685486477860", "content": { "type": 1, "value": { @@ -43361,12 +57430,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667437011/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667437011/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667437011/details", "content": { "type": 1, "value": { @@ -43383,12 +57463,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667437011", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667437011", "content": { "type": 1, "value": { @@ -43412,12 +57492,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667452001/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667452001/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667452001/details", "content": { "type": 1, "value": { @@ -43434,12 +57525,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667452001", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667452001", "content": { "type": 1, "value": { @@ -43463,12 +57554,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667466065/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667466065/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667466065/details", "content": { "type": 1, "value": { @@ -43485,12 +57587,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667466065", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667466065", "content": { "type": 1, "value": { @@ -43514,12 +57616,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667479611/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667479611/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667479611/details", "content": { "type": 1, "value": { @@ -43536,12 +57649,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667479611", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667479611", "content": { "type": 1, "value": { @@ -43565,12 +57678,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687307213896/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1687307213896/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687307213896/details", "content": { "type": 1, "value": { @@ -43587,12 +57711,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1687307213896", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687307213896", "content": { "type": 1, "value": { @@ -43616,12 +57740,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1687313762388/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687313762388/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687313762388/details", "content": { "type": 1, "value": { @@ -43638,12 +57773,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1687313762388", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687313762388", "content": { "type": 1, "value": { @@ -43667,12 +57802,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688400402521/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1688400402521/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688400402521/details", "content": { "type": 1, "value": { @@ -43689,12 +57835,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1688400402521", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688400402521", "content": { "type": 1, "value": { @@ -43719,12 +57865,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688403044242/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1688403044242/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688403044242/details", "content": { "type": 1, "value": { @@ -43741,12 +57898,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1688403044242", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688403044242", "content": { "type": 1, "value": { @@ -43770,12 +57927,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915", "content": { "type": 1, "value": { @@ -43801,12 +57980,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234387/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234387/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234387/details", "content": { "type": 1, "value": { @@ -43825,12 +58015,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234387", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234387", "content": { "type": 1, "value": { @@ -43856,12 +58046,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234773/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234773/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234773/details", "content": { "type": 1, "value": { @@ -43880,12 +58081,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234773", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234773", "content": { "type": 1, "value": { @@ -43911,12 +58112,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691081485992/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691081485992/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691081485992/details", "content": { "type": 1, "value": { @@ -43933,12 +58145,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691081485992", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691081485992", "content": { "type": 1, "value": { @@ -43963,12 +58175,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859/details", "content": { "type": 1, "value": { @@ -43984,12 +58207,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859", "content": { "type": 1, "value": { @@ -44013,12 +58236,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/date_of_expiration", "content": { "type": 1, "value": { @@ -44027,12 +58250,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/details", "content": { "type": 1, "value": { @@ -44048,12 +58282,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743", "content": { "type": 1, "value": { @@ -44080,12 +58314,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838943906/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838943906/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838943906/details", "content": { "type": 1, "value": { @@ -44104,12 +58349,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838943906", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838943906", "content": { "type": 1, "value": { @@ -44135,12 +58380,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838944125/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838944125/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838944125/details", "content": { "type": 1, "value": { @@ -44159,12 +58415,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838944125", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838944125", "content": { "type": 1, "value": { @@ -44190,12 +58446,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707/details", "content": { "type": 1, "value": { @@ -44211,12 +58478,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707", "content": { "type": 1, "value": { @@ -44240,12 +58507,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011/details", "content": { "type": 1, "value": { @@ -44261,12 +58539,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011", "content": { "type": 1, "value": { @@ -44293,12 +58571,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/date_of_expiration", "content": { "type": 1, "value": { @@ -44307,12 +58585,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/details", "content": { "type": 1, "value": { @@ -44328,12 +58617,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857", "content": { "type": 1, "value": { @@ -44360,12 +58649,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479/details", "content": { "type": 1, "value": { @@ -44383,12 +58683,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479", "content": { "type": 1, "value": { @@ -44412,12 +58712,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565/details", "content": { "type": 1, "value": { @@ -44435,12 +58746,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565", "content": { "type": 1, "value": { @@ -44464,12 +58775,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953/details", "content": { "type": 1, "value": { @@ -44485,12 +58807,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953", "content": { "type": 1, "value": { @@ -44515,12 +58837,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/date_of_expiration", "content": { "type": 1, "value": { @@ -44529,12 +58851,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/details", "content": { "type": 1, "value": { @@ -44550,12 +58883,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331", "content": { "type": 1, "value": { @@ -44583,12 +58916,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347/details", "content": { "type": 1, "value": { @@ -44606,12 +58950,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347", "content": { "type": 1, "value": { @@ -44636,12 +58980,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511/details", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511/details", "content": { "type": 1, "value": { @@ -44659,12 +59014,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511", "content": { "type": 1, "value": { @@ -44689,12 +59044,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/costs[0]", "content": { "type": 1, "value": { @@ -44704,12 +59070,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806", "content": { "type": 1, "value": { @@ -44727,12 +59093,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/costs[0]", "content": { "type": 1, "value": { @@ -44742,12 +59119,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806", "content": { "type": 1, "value": { @@ -44765,12 +59142,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554/costs[0]", "content": { "type": 1, "value": { @@ -44780,12 +59157,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395493, + "modified": 1700748395493 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554", "content": { "type": 1, "value": { @@ -44803,12 +59180,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049/costs[0]", "content": { "type": 1, "value": { @@ -44818,12 +59195,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049", "content": { "type": 1, "value": { @@ -44841,12 +59218,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395494, + "modified": 1700748395494 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/costs[0]", "content": { "type": 1, "value": { @@ -44856,12 +59244,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806", "content": { "type": 1, "value": { @@ -44879,12 +59267,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554/costs[0]", "content": { "type": 1, "value": { @@ -44894,12 +59282,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554", "content": { "type": 1, "value": { @@ -44917,12 +59305,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395494, + "modified": 1700748395494 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/costs[0]", "content": { "type": 1, "value": { @@ -44932,12 +59331,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806", "content": { "type": 1, "value": { @@ -44955,12 +59354,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554/costs[0]", "content": { "type": 1, "value": { @@ -44970,12 +59369,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554", "content": { "type": 1, "value": { @@ -44993,12 +59392,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395494, + "modified": 1700748395494 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/costs[0]", "content": { "type": 1, "value": { @@ -45008,12 +59418,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806", "content": { "type": 1, "value": { @@ -45032,12 +59442,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554/costs[0]", "content": { "type": 1, "value": { @@ -45047,12 +59457,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554", "content": { "type": 1, "value": { @@ -45071,12 +59481,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/costs[0]", "content": { "type": 1, "value": { @@ -45086,12 +59507,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806", "content": { "type": 1, "value": { @@ -45110,12 +59531,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554/costs[0]", "content": { "type": 1, "value": { @@ -45125,12 +59546,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554", "content": { "type": 1, "value": { @@ -45149,12 +59570,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395494, + "modified": 1700748395494 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/costs[0]", "content": { "type": 1, "value": { @@ -45164,12 +59596,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806", "content": { "type": 1, "value": { @@ -45186,12 +59618,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554/costs[0]", "content": { "type": 1, "value": { @@ -45201,12 +59633,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554", "content": { "type": 1, "value": { @@ -45223,12 +59655,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395494, + "modified": 1700748395494 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/costs[0]", "content": { "type": 1, "value": { @@ -45238,12 +59681,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806", "content": { "type": 1, "value": { @@ -45260,12 +59703,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554/costs[0]", "content": { "type": 1, "value": { @@ -45275,12 +59718,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554", "content": { "type": 1, "value": { @@ -45297,12 +59740,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/costs[0]", "content": { "type": 1, "value": { @@ -45312,12 +59766,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806", "content": { "type": 1, "value": { @@ -45334,12 +59788,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554/costs[0]", "content": { "type": 1, "value": { @@ -45349,12 +59803,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554", "content": { "type": 1, "value": { @@ -45371,12 +59825,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/costs/0", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/costs[0]", "content": { "type": 1, "value": { @@ -45386,12 +59851,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806", "content": { "type": 1, "value": { @@ -45408,12 +59873,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080/credit", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit", "content": { "type": 1, "value": { @@ -45424,12 +59911,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/098302449130142080", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080", "content": { "type": 1, "value": { @@ -45441,12 +59928,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/099867702110120200/credit", + "path": "ivipcoin-db::__movement_wallet__/099867702110120200/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/099867702110120200/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/099867702110120200/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/099867702110120200/credit", "content": { "type": 1, "value": { @@ -45455,12 +59975,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/099867702110120200", + "path": "ivipcoin-db::__movement_wallet__/099867702110120200", "content": { "type": 1, "value": { @@ -45471,12 +59991,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/100571192646522480", + "path": "ivipcoin-db::__movement_wallet__/100571192646522480/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/100571192646522480/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/100571192646522480", "content": { "type": 1, "value": { @@ -45487,12 +60029,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101099073948007100/credit", + "path": "ivipcoin-db::__movement_wallet__/101099073948007100/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101099073948007100/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101099073948007100/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101099073948007100/credit", "content": { "type": 1, "value": { @@ -45501,12 +60076,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101099073948007100", + "path": "ivipcoin-db::__movement_wallet__/101099073948007100", "content": { "type": 1, "value": { @@ -45517,12 +60092,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855", + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855", "content": { "type": 1, "value": { @@ -45548,12 +60156,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058", + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058", "content": { "type": 1, "value": { @@ -45579,12 +60209,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1684018976722/details", + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1684018976722/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1684018976722/details", "content": { "type": 1, "value": { @@ -45601,12 +60242,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1684018976722", + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1684018976722", "content": { "type": 1, "value": { @@ -45631,12 +60272,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706", + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706", "content": { "type": 1, "value": { @@ -45658,12 +60321,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256", + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256", "content": { "type": 1, "value": { @@ -45685,12 +60370,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098", + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098", "content": { "type": 1, "value": { @@ -45712,12 +60419,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224", + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224", "content": { "type": 1, "value": { @@ -45743,12 +60472,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655", + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655", "content": { "type": 1, "value": { @@ -45770,12 +60521,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480/credit", + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/credit", "content": { "type": 1, "value": { @@ -45785,12 +60558,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101788203938836480", + "path": "ivipcoin-db::__movement_wallet__/101788203938836480", "content": { "type": 1, "value": { @@ -45802,12 +60575,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/101924508374940270", + "path": "ivipcoin-db::__movement_wallet__/101924508374940270/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101924508374940270/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101924508374940270", "content": { "type": 1, "value": { @@ -45818,12 +60613,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/102162769887914180/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/102162769887914180/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/102162769887914180", + "path": "ivipcoin-db::__movement_wallet__/102162769887914180", "content": { "type": 1, "value": { @@ -45834,12 +60651,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/102585657323784220/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/102585657323784220/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/102585657323784220", + "path": "ivipcoin-db::__movement_wallet__/102585657323784220", "content": { "type": 1, "value": { @@ -45850,12 +60689,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/102986238363877330", + "path": "ivipcoin-db::__movement_wallet__/102986238363877330/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/102986238363877330/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/102986238363877330", "content": { "type": 1, "value": { @@ -45865,12 +60726,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/103931688787322940", + "path": "ivipcoin-db::__movement_wallet__/103931688787322940/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/103931688787322940/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/103931688787322940", "content": { "type": 1, "value": { @@ -45881,12 +60764,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/106900896878269870/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances/BRL", "content": { "type": 1, "value": { @@ -45896,12 +60779,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/106900896878269870/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances/IVIP", "content": { "type": 1, "value": { @@ -45911,12 +60794,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717", + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717", "content": { "type": 1, "value": { @@ -45942,12 +60858,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/106900896878269870/history/1684624294208/details", + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684624294208/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684624294208/details", "content": { "type": 1, "value": { @@ -45964,12 +60891,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/106900896878269870/history/1684624294208", + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684624294208", "content": { "type": 1, "value": { @@ -45994,12 +60921,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830", + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830", "content": { "type": 1, "value": { @@ -46025,12 +60974,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/106900896878269870/credit", + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/credit", "content": { "type": 1, "value": { @@ -46039,12 +61010,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/106900896878269870", + "path": "ivipcoin-db::__movement_wallet__/106900896878269870", "content": { "type": 1, "value": { @@ -46055,12 +61026,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/108390022183703310/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/108390022183703310/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/108390022183703310", + "path": "ivipcoin-db::__movement_wallet__/108390022183703310", "content": { "type": 1, "value": { @@ -46071,12 +61064,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/108783781111851280", + "path": "ivipcoin-db::__movement_wallet__/108783781111851280/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/108783781111851280/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/108783781111851280", "content": { "type": 1, "value": { @@ -46087,12 +61102,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042", + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042", "content": { "type": 1, "value": { @@ -46118,12 +61155,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/history/1686325443110/details", + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1686325443110/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1686325443110/details", "content": { "type": 1, "value": { @@ -46140,12 +61188,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/history/1686325443110", + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1686325443110", "content": { "type": 1, "value": { @@ -46170,12 +61218,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173/details", + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173/details", "content": { "type": 1, "value": { @@ -46191,12 +61250,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173", + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173", "content": { "type": 1, "value": { @@ -46220,12 +61279,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details/costs[0]", "content": { "type": 1, "value": { @@ -46235,12 +61294,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details", + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details", "content": { "type": 1, "value": { @@ -46256,12 +61315,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457", + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457", "content": { "type": 1, "value": { @@ -46289,12 +61348,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/credit", + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/credit", "content": { "type": 1, "value": { @@ -46303,12 +61384,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances/BRL", "content": { "type": 1, "value": { @@ -46318,12 +61399,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances/IVIP", "content": { "type": 1, "value": { @@ -46333,12 +61414,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110098606095899730", + "path": "ivipcoin-db::__movement_wallet__/110098606095899730", "content": { "type": 1, "value": { @@ -46350,12 +61442,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395495, + "modified": 1700748395495 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275", + "path": "ivipcoin-db::__movement_wallet__/110121616136666500/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395495, + "modified": 1700748395495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275", "content": { "type": 1, "value": { @@ -46377,12 +61502,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110121616136666500/credit", + "path": "ivipcoin-db::__movement_wallet__/110121616136666500/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110121616136666500/credit", "content": { "type": 1, "value": { @@ -46391,12 +61538,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110121616136666500", + "path": "ivipcoin-db::__movement_wallet__/110121616136666500", "content": { "type": 1, "value": { @@ -46407,12 +61554,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110261910786918940/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110261910786918940", + "path": "ivipcoin-db::__movement_wallet__/110261910786918940/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110261910786918940", "content": { "type": 1, "value": { @@ -46423,12 +61592,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances/BRL", "content": { "type": 1, "value": { @@ -46438,12 +61607,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances/IVIP", "content": { "type": 1, "value": { @@ -46453,12 +61622,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1678154662168/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1678154662168/details", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1678154662168/details", "content": { "type": 1, "value": { @@ -46475,12 +61666,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1678154662168", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1678154662168", "content": { "type": 1, "value": { @@ -46505,12 +61696,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639", "content": { "type": 1, "value": { @@ -46536,12 +61749,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547247302/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547247302/details", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547247302/details", "content": { "type": 1, "value": { @@ -46558,12 +61782,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547247302", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547247302", "content": { "type": 1, "value": { @@ -46588,12 +61812,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709", "content": { "type": 1, "value": { @@ -46619,12 +61865,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007784160/details", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007784160/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007784160/details", "content": { "type": 1, "value": { @@ -46643,12 +61900,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007784160", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007784160", "content": { "type": 1, "value": { @@ -46674,12 +61931,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886", "content": { "type": 1, "value": { @@ -46705,12 +61984,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685657159164/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1685657159164/details", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685657159164/details", "content": { "type": 1, "value": { @@ -46729,12 +62019,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1685657159164", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685657159164", "content": { "type": 1, "value": { @@ -46760,12 +62050,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1686939269544/details", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686939269544/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686939269544/details", "content": { "type": 1, "value": { @@ -46784,12 +62085,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1686939269544", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686939269544", "content": { "type": 1, "value": { @@ -46815,12 +62116,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details/costs[0]", "content": { "type": 1, "value": { @@ -46830,12 +62131,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243", "content": { "type": 1, "value": { @@ -46858,12 +62170,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040", "content": { "type": 1, "value": { @@ -46889,12 +62223,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/costs/0", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/costs[0]", "content": { "type": 1, "value": { @@ -46904,12 +62249,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243", "content": { "type": 1, "value": { @@ -46927,12 +62272,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/costs/0", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/costs[0]", "content": { "type": 1, "value": { @@ -46942,12 +62298,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243", "content": { "type": 1, "value": { @@ -46965,12 +62321,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/costs/0", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/costs[0]", "content": { "type": 1, "value": { @@ -46980,12 +62347,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243", "content": { "type": 1, "value": { @@ -47003,12 +62370,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/costs/0", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/costs[0]", "content": { "type": 1, "value": { @@ -47018,12 +62396,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243", "content": { "type": 1, "value": { @@ -47041,12 +62419,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/costs/0", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/costs[0]", "content": { "type": 1, "value": { @@ -47056,12 +62445,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395496, + "modified": 1700748395496 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243", "content": { "type": 1, "value": { @@ -47079,12 +62468,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/costs/0", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/costs[0]", "content": { "type": 1, "value": { @@ -47094,12 +62494,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243", "content": { "type": 1, "value": { @@ -47117,12 +62517,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/costs/0", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/costs[0]", "content": { "type": 1, "value": { @@ -47132,12 +62543,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243", "content": { "type": 1, "value": { @@ -47155,12 +62566,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/costs/0", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/costs[0]", "content": { "type": 1, "value": { @@ -47170,12 +62592,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243", "content": { "type": 1, "value": { @@ -47193,12 +62615,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/costs/0", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/costs[0]", "content": { "type": 1, "value": { @@ -47208,12 +62641,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243", "content": { "type": 1, "value": { @@ -47231,12 +62664,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/costs/0", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/costs[0]", "content": { "type": 1, "value": { @@ -47246,12 +62690,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243", "content": { "type": 1, "value": { @@ -47269,12 +62713,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/costs/0", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/costs[0]", "content": { "type": 1, "value": { @@ -47284,12 +62739,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243", "content": { "type": 1, "value": { @@ -47307,12 +62762,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/costs/0", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/costs[0]", "content": { "type": 1, "value": { @@ -47322,12 +62788,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243", "content": { "type": 1, "value": { @@ -47345,12 +62811,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200/credit", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit", "content": { "type": 1, "value": { @@ -47361,12 +62849,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/110520917322827200", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200", "content": { "type": 1, "value": { @@ -47377,12 +62865,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances/BRL", "content": { "type": 1, "value": { @@ -47392,12 +62880,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances/IVIP", "content": { "type": 1, "value": { @@ -47407,12 +62895,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045", "content": { "type": 1, "value": { @@ -47434,12 +62955,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281", "content": { "type": 1, "value": { @@ -47461,12 +63004,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109", "content": { "type": 1, "value": { @@ -47492,12 +63057,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1684667280508/details", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684667280508/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684667280508/details", "content": { "type": 1, "value": { @@ -47514,12 +63090,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1684667280508", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684667280508", "content": { "type": 1, "value": { @@ -47544,12 +63120,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189", "content": { "type": 1, "value": { @@ -47575,12 +63173,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781", "content": { "type": 1, "value": { @@ -47606,12 +63226,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685730135668/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1685730135668/details", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685730135668/details", "content": { "type": 1, "value": { @@ -47628,12 +63259,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1685730135668", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685730135668", "content": { "type": 1, "value": { @@ -47658,12 +63289,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168", "content": { "type": 1, "value": { @@ -47689,12 +63342,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1686792689847/details", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686792689847/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686792689847/details", "content": { "type": 1, "value": { @@ -47711,12 +63375,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1686792689847", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686792689847", "content": { "type": 1, "value": { @@ -47741,12 +63405,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1688230681708/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1688230681708/details", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1688230681708/details", "content": { "type": 1, "value": { @@ -47763,12 +63438,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1688230681708", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1688230681708", "content": { "type": 1, "value": { @@ -47792,12 +63467,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656/details", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656/details", "content": { "type": 1, "value": { @@ -47813,12 +63499,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656", "content": { "type": 1, "value": { @@ -47846,12 +63532,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800/credit", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/credit", "content": { "type": 1, "value": { @@ -47860,12 +63568,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/111597444051012800", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800", "content": { "type": 1, "value": { @@ -47877,12 +63585,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112180841461099860/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112180841461099860", + "path": "ivipcoin-db::__movement_wallet__/112180841461099860/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112180841461099860", "content": { "type": 1, "value": { @@ -47893,12 +63623,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112268931101963340/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112268931101963340", + "path": "ivipcoin-db::__movement_wallet__/112268931101963340/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112268931101963340", "content": { "type": 1, "value": { @@ -47909,12 +63661,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/balances/IVIP", "content": { "type": 1, "value": { @@ -47924,12 +63676,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458", + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458", "content": { "type": 1, "value": { @@ -47955,12 +63740,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1678154526038/details", + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1678154526038/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1678154526038/details", "content": { "type": 1, "value": { @@ -47977,12 +63773,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1678154526038", + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1678154526038", "content": { "type": 1, "value": { @@ -48007,12 +63803,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353", + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353", "content": { "type": 1, "value": { @@ -48034,12 +63852,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254/details", + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254/details", "content": { "type": 1, "value": { @@ -48055,12 +63884,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254", + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254", "content": { "type": 1, "value": { @@ -48088,12 +63917,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details/costs[0]", "content": { "type": 1, "value": { @@ -48103,12 +63932,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395497, + "modified": 1700748395497 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details", + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details", "content": { "type": 1, "value": { @@ -48124,12 +63953,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719318, - "modified": 1700589719318 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185", + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185", "content": { "type": 1, "value": { @@ -48157,12 +63986,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details/costs[0]", "content": { "type": 1, "value": { @@ -48172,12 +64001,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details", + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details", "content": { "type": 1, "value": { @@ -48193,12 +64022,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867", + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867", "content": { "type": 1, "value": { @@ -48227,12 +64056,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870/credit", + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/credit", "content": { "type": 1, "value": { @@ -48241,12 +64092,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/112720380478065870", + "path": "ivipcoin-db::__movement_wallet__/112720380478065870", "content": { "type": 1, "value": { @@ -48258,12 +64109,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113397082035573860/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113397082035573860/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113397082035573860/credit", + "path": "ivipcoin-db::__movement_wallet__/113397082035573860/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113397082035573860/credit", "content": { "type": 1, "value": { @@ -48272,12 +64156,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113397082035573860", + "path": "ivipcoin-db::__movement_wallet__/113397082035573860", "content": { "type": 1, "value": { @@ -48288,12 +64172,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800/balances/BNB", + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BNB", "content": { "type": 1, "value": { @@ -48303,12 +64198,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800/balances/BTC", + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BTC", "content": { "type": 1, "value": { @@ -48318,12 +64213,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800/balances/BUSD", + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BUSD", "content": { "type": 1, "value": { @@ -48333,12 +64228,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800/balances/ETH", + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/ETH", "content": { "type": 1, "value": { @@ -48348,12 +64243,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800/balances/LTC", + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/LTC", "content": { "type": 1, "value": { @@ -48363,12 +64258,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800/balances/TRX", + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/TRX", "content": { "type": 1, "value": { @@ -48378,12 +64273,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800/balances/USDT", + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/USDT", "content": { "type": 1, "value": { @@ -48393,12 +64288,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800/balances/XRP", + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/XRP", "content": { "type": 1, "value": { @@ -48408,12 +64303,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113456931219695800", + "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113456931219695800", "content": { "type": 1, "value": { @@ -48424,12 +64330,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113679410552544270/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113679410552544270", + "path": "ivipcoin-db::__movement_wallet__/113679410552544270/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113679410552544270", "content": { "type": 1, "value": { @@ -48440,12 +64368,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113719047968885220/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/113719047968885220", + "path": "ivipcoin-db::__movement_wallet__/113719047968885220/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/113719047968885220", "content": { "type": 1, "value": { @@ -48456,12 +64406,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/114964316693074270/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/114964316693074270", + "path": "ivipcoin-db::__movement_wallet__/114964316693074270/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/114964316693074270", "content": { "type": 1, "value": { @@ -48472,12 +64444,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/balances/IVIP", "content": { "type": 1, "value": { @@ -48487,12 +64459,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127", "content": { "type": 1, "value": { @@ -48518,12 +64523,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1689260591470/details", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689260591470/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689260591470/details", "content": { "type": 1, "value": { @@ -48540,12 +64556,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1689260591470", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689260591470", "content": { "type": 1, "value": { @@ -48570,12 +64586,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/date_of_expiration", "content": { "type": 1, "value": { @@ -48584,12 +64600,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/details", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/details", "content": { "type": 1, "value": { @@ -48605,12 +64632,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151", "content": { "type": 1, "value": { @@ -48633,12 +64660,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/date_of_expiration", "content": { "type": 1, "value": { @@ -48647,12 +64674,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/details", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/details", "content": { "type": 1, "value": { @@ -48668,12 +64706,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238", "content": { "type": 1, "value": { @@ -48700,12 +64738,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311787862/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311787862/details", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311787862/details", "content": { "type": 1, "value": { @@ -48722,12 +64771,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311787862", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311787862", "content": { "type": 1, "value": { @@ -48752,12 +64801,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696/details", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696/details", "content": { "type": 1, "value": { @@ -48773,12 +64833,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696", "content": { "type": 1, "value": { @@ -48802,12 +64862,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/date_of_expiration", "content": { "type": 1, "value": { @@ -48816,12 +64876,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/details", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/details", "content": { "type": 1, "value": { @@ -48837,12 +64908,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423", "content": { "type": 1, "value": { @@ -48869,12 +64940,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1691761354889/details", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691761354889/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691761354889/details", "content": { "type": 1, "value": { @@ -48890,12 +64972,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1691761354889", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691761354889", "content": { "type": 1, "value": { @@ -48919,12 +65001,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852/details", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852/details", "content": { "type": 1, "value": { @@ -48940,12 +65033,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852", "content": { "type": 1, "value": { @@ -48969,12 +65062,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454/details", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454/details", "content": { "type": 1, "value": { @@ -48990,12 +65094,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454", "content": { "type": 1, "value": { @@ -49019,12 +65123,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454/details", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454/details", "content": { "type": 1, "value": { @@ -49040,12 +65155,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454", "content": { "type": 1, "value": { @@ -49070,12 +65185,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975/details", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975/details", "content": { "type": 1, "value": { @@ -49091,12 +65217,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975", "content": { "type": 1, "value": { @@ -49121,12 +65247,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/date_of_expiration", "content": { "type": 1, "value": { @@ -49135,12 +65261,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/details", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/details", "content": { "type": 1, "value": { @@ -49156,12 +65293,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578", "content": { "type": 1, "value": { @@ -49189,12 +65326,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1697204057820/details", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697204057820/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697204057820/details", "content": { "type": 1, "value": { @@ -49210,12 +65358,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/history/1697204057820", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697204057820", "content": { "type": 1, "value": { @@ -49240,12 +65388,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960/credit", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/credit", "content": { "type": 1, "value": { @@ -49255,12 +65425,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115436385305746960", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960", "content": { "type": 1, "value": { @@ -49272,12 +65442,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115766338093199020/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/115766338093199020", + "path": "ivipcoin-db::__movement_wallet__/115766338093199020/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115766338093199020", "content": { "type": 1, "value": { @@ -49288,12 +65480,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/116261495252090180/credit", + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/credit", "content": { "type": 1, "value": { @@ -49302,12 +65505,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/116261495252090180/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/balances/IVIP", "content": { "type": 1, "value": { @@ -49317,12 +65520,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891", + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891", "content": { "type": 1, "value": { @@ -49348,12 +65584,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1688996128425/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/116261495252090180/history/1688996128425/details", + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1688996128425/details", "content": { "type": 1, "value": { @@ -49370,12 +65617,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/116261495252090180/history/1688996128425", + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1688996128425", "content": { "type": 1, "value": { @@ -49400,12 +65647,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/116261495252090180", + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116261495252090180", "content": { "type": 1, "value": { @@ -49417,12 +65675,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116696192475580050/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/116696192475580050/credit", + "path": "ivipcoin-db::__movement_wallet__/116696192475580050/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116696192475580050/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/116696192475580050/credit", "content": { "type": 1, "value": { @@ -49431,12 +65722,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/116696192475580050", + "path": "ivipcoin-db::__movement_wallet__/116696192475580050", "content": { "type": 1, "value": { @@ -49446,12 +65737,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117188412170673220/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117188412170673220/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117188412170673220", + "path": "ivipcoin-db::__movement_wallet__/117188412170673220", "content": { "type": 1, "value": { @@ -49462,12 +65775,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/balances/IVIP", "content": { "type": 1, "value": { @@ -49477,12 +65790,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308", "content": { "type": 1, "value": { @@ -49508,12 +65854,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1678145189537/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1678145189537/details", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1678145189537/details", "content": { "type": 1, "value": { @@ -49530,12 +65887,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1678145189537", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1678145189537", "content": { "type": 1, "value": { @@ -49560,12 +65917,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062", "content": { "type": 1, "value": { @@ -49587,12 +65966,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395498, + "modified": 1700748395498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429", "content": { "type": 1, "value": { @@ -49618,12 +66019,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details/costs[0]", "content": { "type": 1, "value": { @@ -49633,12 +66034,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395498, + "modified": 1700748395498 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706", "content": { "type": 1, "value": { @@ -49661,12 +66073,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1684624218931/details", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684624218931/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684624218931/details", "content": { "type": 1, "value": { @@ -49683,12 +66106,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1684624218931", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684624218931", "content": { "type": 1, "value": { @@ -49713,12 +66136,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157", "content": { "type": 1, "value": { @@ -49740,12 +66185,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740", "content": { "type": 1, "value": { @@ -49767,12 +66234,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685665639073/details", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685665639073/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685665639073/details", "content": { "type": 1, "value": { @@ -49789,12 +66267,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685665639073", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685665639073", "content": { "type": 1, "value": { @@ -49819,12 +66297,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685668997292/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685668997292/details", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685668997292/details", "content": { "type": 1, "value": { @@ -49841,12 +66330,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685668997292", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685668997292", "content": { "type": 1, "value": { @@ -49870,12 +66359,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669010794/details", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669010794/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669010794/details", "content": { "type": 1, "value": { @@ -49892,12 +66392,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669010794", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669010794", "content": { "type": 1, "value": { @@ -49921,12 +66421,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669017906/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669017906/details", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669017906/details", "content": { "type": 1, "value": { @@ -49943,12 +66454,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669017906", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669017906", "content": { "type": 1, "value": { @@ -49972,12 +66483,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839", "content": { "type": 1, "value": { @@ -49999,12 +66532,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859", "content": { "type": 1, "value": { @@ -50026,12 +66581,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569", "content": { "type": 1, "value": { @@ -50057,12 +66634,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838699070/details", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838699070/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838699070/details", "content": { "type": 1, "value": { @@ -50081,12 +66669,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838699070", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838699070", "content": { "type": 1, "value": { @@ -50112,12 +66700,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989", "content": { "type": 1, "value": { @@ -50139,12 +66749,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1688400243137/details", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688400243137/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688400243137/details", "content": { "type": 1, "value": { @@ -50161,12 +66782,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1688400243137", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688400243137", "content": { "type": 1, "value": { @@ -50191,12 +66812,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822", "content": { "type": 1, "value": { @@ -50218,12 +66861,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030", "content": { "type": 1, "value": { @@ -50249,12 +66914,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644", "content": { "type": 1, "value": { @@ -50276,12 +66963,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410", "content": { "type": 1, "value": { @@ -50303,12 +67012,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089", "content": { "type": 1, "value": { @@ -50330,12 +67061,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969", "content": { "type": 1, "value": { @@ -50357,12 +67110,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440", "content": { "type": 1, "value": { @@ -50384,12 +67159,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512", "content": { "type": 1, "value": { @@ -50415,12 +67212,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534", "content": { "type": 1, "value": { @@ -50442,12 +67261,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1690326796884/details", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690326796884/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690326796884/details", "content": { "type": 1, "value": { @@ -50466,12 +67296,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1690326796884", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690326796884", "content": { "type": 1, "value": { @@ -50497,12 +67327,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842/details", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842/details", "content": { "type": 1, "value": { @@ -50518,12 +67359,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842", "content": { "type": 1, "value": { @@ -50550,12 +67391,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044/details", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044/details", "content": { "type": 1, "value": { @@ -50571,12 +67423,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044", "content": { "type": 1, "value": { @@ -50604,12 +67456,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356/details", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356/details", "content": { "type": 1, "value": { @@ -50625,12 +67488,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356", "content": { "type": 1, "value": { @@ -50654,12 +67517,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690/details", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690/details", "content": { "type": 1, "value": { @@ -50675,12 +67549,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690", "content": { "type": 1, "value": { @@ -50705,12 +67579,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843/details", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843/details", "content": { "type": 1, "value": { @@ -50726,12 +67611,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843", "content": { "type": 1, "value": { @@ -50756,12 +67641,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/costs/0", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/costs[0]", "content": { "type": 1, "value": { @@ -50771,12 +67667,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706", "content": { "type": 1, "value": { @@ -50794,12 +67690,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/costs/0", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/costs[0]", "content": { "type": 1, "value": { @@ -50809,12 +67716,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706", "content": { "type": 1, "value": { @@ -50832,12 +67739,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020/credit", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit", "content": { "type": 1, "value": { @@ -50848,12 +67777,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/117718803693710020", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020", "content": { "type": 1, "value": { @@ -50865,12 +67794,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances/BRL", "content": { "type": 1, "value": { @@ -50880,12 +67809,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances/IVIP", "content": { "type": 1, "value": { @@ -50895,12 +67824,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395499, + "modified": 1700748395499 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395499, + "modified": 1700748395499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568", "content": { "type": 1, "value": { @@ -50926,12 +67888,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684624220546/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1684624220546/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684624220546/details", "content": { "type": 1, "value": { @@ -50948,12 +67921,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1684624220546", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684624220546", "content": { "type": 1, "value": { @@ -50978,12 +67951,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details/costs[0]", "content": { "type": 1, "value": { @@ -50993,12 +67966,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623", "content": { "type": 1, "value": { @@ -51021,12 +68005,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625351966/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625351966/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625351966/details", "content": { "type": 1, "value": { @@ -51043,12 +68038,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625351966", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625351966", "content": { "type": 1, "value": { @@ -51073,12 +68068,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516", "content": { "type": 1, "value": { @@ -51104,12 +68121,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685234226998/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685234226998/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685234226998/details", "content": { "type": 1, "value": { @@ -51126,12 +68154,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685234226998", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685234226998", "content": { "type": 1, "value": { @@ -51156,12 +68184,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685456788341/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685456788341/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685456788341/details", "content": { "type": 1, "value": { @@ -51178,12 +68217,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685456788341", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685456788341", "content": { "type": 1, "value": { @@ -51208,12 +68247,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665895143/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665895143/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665895143/details", "content": { "type": 1, "value": { @@ -51230,12 +68280,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665895143", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665895143", "content": { "type": 1, "value": { @@ -51259,12 +68309,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665913616/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665913616/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665913616/details", "content": { "type": 1, "value": { @@ -51281,12 +68342,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665913616", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665913616", "content": { "type": 1, "value": { @@ -51310,12 +68371,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665938582/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665938582/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665938582/details", "content": { "type": 1, "value": { @@ -51332,12 +68404,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665938582", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665938582", "content": { "type": 1, "value": { @@ -51362,12 +68434,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665980650/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665980650/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665980650/details", "content": { "type": 1, "value": { @@ -51384,12 +68467,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665980650", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665980650", "content": { "type": 1, "value": { @@ -51413,12 +68496,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685743358755/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685743358755/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685743358755/details", "content": { "type": 1, "value": { @@ -51435,12 +68529,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1685743358755", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685743358755", "content": { "type": 1, "value": { @@ -51465,12 +68559,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502", "content": { "type": 1, "value": { @@ -51496,12 +68612,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686597954870/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1686597954870/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686597954870/details", "content": { "type": 1, "value": { @@ -51520,12 +68647,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1686597954870", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686597954870", "content": { "type": 1, "value": { @@ -51551,12 +68678,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1687313544975/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1687313544975/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1687313544975/details", "content": { "type": 1, "value": { @@ -51573,12 +68711,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1687313544975", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1687313544975", "content": { "type": 1, "value": { @@ -51602,12 +68740,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400283150/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400283150/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400283150/details", "content": { "type": 1, "value": { @@ -51624,12 +68773,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400283150", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400283150", "content": { "type": 1, "value": { @@ -51654,12 +68803,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400827775/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400827775/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400827775/details", "content": { "type": 1, "value": { @@ -51676,12 +68836,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400827775", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400827775", "content": { "type": 1, "value": { @@ -51705,12 +68865,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442", "content": { "type": 1, "value": { @@ -51736,12 +68918,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1689168458989/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689168458989/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689168458989/details", "content": { "type": 1, "value": { @@ -51760,12 +68953,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1689168458989", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689168458989", "content": { "type": 1, "value": { @@ -51791,12 +68984,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1691079300942/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691079300942/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691079300942/details", "content": { "type": 1, "value": { @@ -51813,12 +69017,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1691079300942", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691079300942", "content": { "type": 1, "value": { @@ -51843,12 +69047,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881/details", "content": { "type": 1, "value": { @@ -51864,12 +69079,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881", "content": { "type": 1, "value": { @@ -51893,12 +69108,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/date_of_expiration", "content": { "type": 1, "value": { @@ -51907,12 +69122,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/details", "content": { "type": 1, "value": { @@ -51928,12 +69154,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319", "content": { "type": 1, "value": { @@ -51960,12 +69186,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1692288719964/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692288719964/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692288719964/details", "content": { "type": 1, "value": { @@ -51984,12 +69221,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1692288719964", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692288719964", "content": { "type": 1, "value": { @@ -52015,12 +69252,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865/details", "content": { "type": 1, "value": { @@ -52036,12 +69284,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865", "content": { "type": 1, "value": { @@ -52065,12 +69313,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936/details", "content": { "type": 1, "value": { @@ -52086,12 +69345,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936", "content": { "type": 1, "value": { @@ -52118,12 +69377,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/date_of_expiration", "content": { "type": 1, "value": { @@ -52132,12 +69391,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/details", "content": { "type": 1, "value": { @@ -52153,12 +69423,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775", "content": { "type": 1, "value": { @@ -52185,12 +69455,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717/details", "content": { "type": 1, "value": { @@ -52208,12 +69489,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717", "content": { "type": 1, "value": { @@ -52237,12 +69518,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090/details", "content": { "type": 1, "value": { @@ -52258,12 +69550,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090", "content": { "type": 1, "value": { @@ -52288,12 +69580,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/date_of_expiration", "content": { "type": 1, "value": { @@ -52302,12 +69594,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/details", "content": { "type": 1, "value": { @@ -52323,12 +69626,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609", "content": { "type": 1, "value": { @@ -52356,12 +69659,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487/details", "content": { "type": 1, "value": { @@ -52379,12 +69693,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487", "content": { "type": 1, "value": { @@ -52409,12 +69723,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615/details", "content": { "type": 1, "value": { @@ -52430,12 +69755,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615", "content": { "type": 1, "value": { @@ -52460,12 +69785,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596/details", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596/details", "content": { "type": 1, "value": { @@ -52481,12 +69817,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596", "content": { "type": 1, "value": { @@ -52511,12 +69847,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/costs/0", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/costs[0]", "content": { "type": 1, "value": { @@ -52526,12 +69873,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623", "content": { "type": 1, "value": { @@ -52549,12 +69896,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/costs/0", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/costs[0]", "content": { "type": 1, "value": { @@ -52564,12 +69922,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395500, + "modified": 1700748395500 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623", "content": { "type": 1, "value": { @@ -52587,12 +69945,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/costs/0", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/costs[0]", "content": { "type": 1, "value": { @@ -52602,12 +69971,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623", "content": { "type": 1, "value": { @@ -52625,12 +69994,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/costs/0", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/costs[0]", "content": { "type": 1, "value": { @@ -52640,12 +70020,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623", "content": { "type": 1, "value": { @@ -52664,12 +70044,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/costs/0", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/costs[0]", "content": { "type": 1, "value": { @@ -52679,12 +70070,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623", "content": { "type": 1, "value": { @@ -52703,12 +70094,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260/credit", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit", "content": { "type": 1, "value": { @@ -52719,12 +70132,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/118160549969984260", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260", "content": { "type": 1, "value": { @@ -52736,12 +70149,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/120996359783253070", + "path": "ivipcoin-db::__movement_wallet__/120996359783253070/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/120996359783253070/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/120996359783253070", "content": { "type": 1, "value": { @@ -52752,12 +70187,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances/BRL", "content": { "type": 1, "value": { @@ -52767,12 +70202,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances/IVIP", "content": { "type": 1, "value": { @@ -52782,12 +70217,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978", + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978", "content": { "type": 1, "value": { @@ -52813,12 +70281,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624212629/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624212629/details", + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624212629/details", "content": { "type": 1, "value": { @@ -52835,12 +70314,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624212629", + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624212629", "content": { "type": 1, "value": { @@ -52865,12 +70344,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624265601/details", + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624265601/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624265601/details", "content": { "type": 1, "value": { @@ -52887,12 +70377,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624265601", + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624265601", "content": { "type": 1, "value": { @@ -52917,12 +70407,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031/details", + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031/details", "content": { "type": 1, "value": { @@ -52938,12 +70439,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031", + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031", "content": { "type": 1, "value": { @@ -52968,12 +70469,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820/credit", + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/credit", "content": { "type": 1, "value": { @@ -52982,12 +70505,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/121847634268578820", + "path": "ivipcoin-db::__movement_wallet__/121847634268578820", "content": { "type": 1, "value": { @@ -52999,12 +70522,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/date_of_expiration", "content": { "type": 1, "value": { @@ -53013,12 +70547,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/details", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/details", "content": { "type": 1, "value": { @@ -53034,12 +70579,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793", "content": { "type": 1, "value": { @@ -53066,12 +70611,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006310448/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006310448/details", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006310448/details", "content": { "type": 1, "value": { @@ -53087,12 +70643,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006310448", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006310448", "content": { "type": 1, "value": { @@ -53116,12 +70672,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984/details", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984/details", "content": { "type": 1, "value": { @@ -53137,12 +70704,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984", "content": { "type": 1, "value": { @@ -53166,12 +70733,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/date_of_expiration", "content": { "type": 1, "value": { @@ -53180,12 +70747,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/details", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/details", "content": { "type": 1, "value": { @@ -53201,12 +70779,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996", "content": { "type": 1, "value": { @@ -53233,12 +70811,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589566120/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589566120/details", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589566120/details", "content": { "type": 1, "value": { @@ -53254,12 +70843,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589566120", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589566120", "content": { "type": 1, "value": { @@ -53283,12 +70872,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719319, - "modified": 1700589719319 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652/details", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652/details", "content": { "type": 1, "value": { @@ -53304,12 +70904,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652", "content": { "type": 1, "value": { @@ -53333,12 +70933,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615/details", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615/details", "content": { "type": 1, "value": { @@ -53354,12 +70965,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615", "content": { "type": 1, "value": { @@ -53383,12 +70994,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658/details", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658/details", "content": { "type": 1, "value": { @@ -53404,12 +71026,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658", "content": { "type": 1, "value": { @@ -53436,12 +71058,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/date_of_expiration", "content": { "type": 1, "value": { @@ -53450,12 +71072,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/details", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/details", "content": { "type": 1, "value": { @@ -53471,12 +71104,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418", "content": { "type": 1, "value": { @@ -53503,12 +71136,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694723873975/details", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694723873975/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694723873975/details", "content": { "type": 1, "value": { @@ -53524,12 +71168,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694723873975", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694723873975", "content": { "type": 1, "value": { @@ -53553,12 +71197,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/date_of_expiration", "content": { "type": 1, "value": { @@ -53567,12 +71211,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/details", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/details", "content": { "type": 1, "value": { @@ -53588,12 +71243,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888", "content": { "type": 1, "value": { @@ -53616,12 +71271,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/date_of_expiration", "content": { "type": 1, "value": { @@ -53630,12 +71285,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/details", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/details", "content": { "type": 1, "value": { @@ -53651,12 +71317,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157", "content": { "type": 1, "value": { @@ -53683,12 +71349,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307/details", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307/details", "content": { "type": 1, "value": { @@ -53704,12 +71381,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307", "content": { "type": 1, "value": { @@ -53736,12 +71413,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667/details", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667/details", "content": { "type": 1, "value": { @@ -53757,12 +71445,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667", "content": { "type": 1, "value": { @@ -53789,12 +71477,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923/details", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923/details", "content": { "type": 1, "value": { @@ -53810,12 +71509,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923", "content": { "type": 1, "value": { @@ -53840,12 +71539,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350/credit", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/credit", "content": { "type": 1, "value": { @@ -53854,12 +71575,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/122764830599810350", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350", "content": { "type": 1, "value": { @@ -53870,12 +71591,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/balances/IVIP", "content": { "type": 1, "value": { @@ -53885,12 +71606,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395501, + "modified": 1700748395501 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/costs[0]", "content": { "type": 1, "value": { @@ -53900,12 +71632,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395501, + "modified": 1700748395501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info/collector", "content": { "type": 1, "value": { @@ -53913,12 +71656,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details", "content": { "type": 1, "value": { @@ -53933,12 +71687,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855", "content": { "type": 1, "value": { @@ -53964,12 +71718,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722", "content": { "type": 1, "value": { @@ -53991,12 +71767,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055", "content": { "type": 1, "value": { @@ -54018,12 +71816,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details/costs[0]", "content": { "type": 1, "value": { @@ -54033,12 +71831,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490", "content": { "type": 1, "value": { @@ -54061,12 +71870,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679266956838/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679266956838/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679266956838/details", "content": { "type": 1, "value": { @@ -54083,12 +71903,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679266956838", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679266956838", "content": { "type": 1, "value": { @@ -54113,12 +71933,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/costs[0]", "content": { "type": 1, "value": { @@ -54128,12 +71948,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info/collector", "content": { "type": 1, "value": { @@ -54141,12 +71972,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details", "content": { "type": 1, "value": { @@ -54161,12 +72003,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924", "content": { "type": 1, "value": { @@ -54189,12 +72031,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215", "content": { "type": 1, "value": { @@ -54220,12 +72084,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004", "content": { "type": 1, "value": { @@ -54251,12 +72137,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679872088470/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679872088470/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679872088470/details", "content": { "type": 1, "value": { @@ -54273,12 +72170,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1679872088470", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679872088470", "content": { "type": 1, "value": { @@ -54303,12 +72200,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540", "content": { "type": 1, "value": { @@ -54334,12 +72253,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1682640956216/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1682640956216/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1682640956216/details", "content": { "type": 1, "value": { @@ -54358,12 +72288,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1682640956216", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1682640956216", "content": { "type": 1, "value": { @@ -54389,12 +72319,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1683194553322/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1683194553322/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1683194553322/details", "content": { "type": 1, "value": { @@ -54413,12 +72354,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1683194553322", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1683194553322", "content": { "type": 1, "value": { @@ -54444,12 +72385,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684019013862/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684019013862/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684019013862/details", "content": { "type": 1, "value": { @@ -54466,12 +72418,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395502, + "modified": 1700748395502 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684019013862", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684019013862", "content": { "type": 1, "value": { @@ -54496,12 +72448,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395514, + "modified": 1700748395514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684155209634/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684155209634/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684155209634/details", "content": { "type": 1, "value": { @@ -54520,12 +72483,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684155209634", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684155209634", "content": { "type": 1, "value": { @@ -54551,12 +72514,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details/costs[0]", "content": { "type": 1, "value": { @@ -54566,12 +72529,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574", "content": { "type": 1, "value": { @@ -54594,12 +72568,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684348943785/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684348943785/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684348943785/details", "content": { "type": 1, "value": { @@ -54616,12 +72601,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684348943785", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684348943785", "content": { "type": 1, "value": { @@ -54646,12 +72631,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624245338/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624245338/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624245338/details", "content": { "type": 1, "value": { @@ -54668,12 +72664,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624245338", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624245338", "content": { "type": 1, "value": { @@ -54698,12 +72694,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624330381/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624330381/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624330381/details", "content": { "type": 1, "value": { @@ -54720,12 +72727,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624330381", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624330381", "content": { "type": 1, "value": { @@ -54750,12 +72757,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635", "content": { "type": 1, "value": { @@ -54777,12 +72806,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175", "content": { "type": 1, "value": { @@ -54808,12 +72859,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686839367288/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1686839367288/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686839367288/details", "content": { "type": 1, "value": { @@ -54832,12 +72894,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1686839367288", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686839367288", "content": { "type": 1, "value": { @@ -54863,12 +72925,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1687526304583/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1687526304583/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1687526304583/details", "content": { "type": 1, "value": { @@ -54885,12 +72958,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1687526304583", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1687526304583", "content": { "type": 1, "value": { @@ -54915,12 +72988,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/date_of_expiration", "content": { "type": 1, "value": { @@ -54929,12 +73002,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/details", "content": { "type": 1, "value": { @@ -54950,12 +73034,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462", "content": { "type": 1, "value": { @@ -54982,12 +73066,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/date_of_expiration", "content": { "type": 1, "value": { @@ -54996,12 +73080,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/details", "content": { "type": 1, "value": { @@ -55017,12 +73112,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694", "content": { "type": 1, "value": { @@ -55049,12 +73144,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details/costs[0]", "content": { "type": 1, "value": { @@ -55064,12 +73159,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details", "content": { "type": 1, "value": { @@ -55085,12 +73180,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501", "content": { "type": 1, "value": { @@ -55118,12 +73213,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/date_of_expiration", "content": { "type": 1, "value": { @@ -55132,12 +73227,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/details", "content": { "type": 1, "value": { @@ -55153,12 +73259,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215", "content": { "type": 1, "value": { @@ -55185,12 +73291,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735/details", "content": { "type": 1, "value": { @@ -55208,12 +73325,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735", "content": { "type": 1, "value": { @@ -55237,12 +73354,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797/details", "content": { "type": 1, "value": { @@ -55260,12 +73388,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797", "content": { "type": 1, "value": { @@ -55289,12 +73417,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893/details", "content": { "type": 1, "value": { @@ -55312,12 +73451,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893", "content": { "type": 1, "value": { @@ -55341,12 +73480,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951/details", "content": { "type": 1, "value": { @@ -55364,12 +73514,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951", "content": { "type": 1, "value": { @@ -55393,12 +73543,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077/details", "content": { "type": 1, "value": { @@ -55416,12 +73577,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077", "content": { "type": 1, "value": { @@ -55445,12 +73606,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/date_of_expiration", "content": { "type": 1, "value": { @@ -55459,12 +73620,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/details", "content": { "type": 1, "value": { @@ -55480,12 +73652,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012", "content": { "type": 1, "value": { @@ -55509,12 +73681,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/date_of_expiration", "content": { "type": 1, "value": { @@ -55523,12 +73695,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/details", "content": { "type": 1, "value": { @@ -55544,12 +73727,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373", "content": { "type": 1, "value": { @@ -55577,12 +73760,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395515, + "modified": 1700748395515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697159292046/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1697159292046/details", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697159292046/details", "content": { "type": 1, "value": { @@ -55598,12 +73792,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/history/1697159292046", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697159292046", "content": { "type": 1, "value": { @@ -55628,12 +73822,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395516, + "modified": 1700748395516 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/costs[0]", "content": { "type": 1, "value": { @@ -55643,12 +73848,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490", "content": { "type": 1, "value": { @@ -55666,12 +73871,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395516, + "modified": 1700748395516 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/costs[0]", "content": { "type": 1, "value": { @@ -55681,12 +73897,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490", "content": { "type": 1, "value": { @@ -55704,12 +73920,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/costs[0]", "content": { "type": 1, "value": { @@ -55719,12 +73946,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490", "content": { "type": 1, "value": { @@ -55742,12 +73969,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574/costs[0]", "content": { "type": 1, "value": { @@ -55757,12 +73984,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574", "content": { "type": 1, "value": { @@ -55780,12 +74007,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395516, + "modified": 1700748395516 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/costs[0]", "content": { "type": 1, "value": { @@ -55795,12 +74033,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490", "content": { "type": 1, "value": { @@ -55819,12 +74057,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574/costs[0]", "content": { "type": 1, "value": { @@ -55834,12 +74072,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574", "content": { "type": 1, "value": { @@ -55858,12 +74096,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/costs[0]", "content": { "type": 1, "value": { @@ -55873,12 +74122,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490", "content": { "type": 1, "value": { @@ -55897,12 +74146,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574/costs[0]", "content": { "type": 1, "value": { @@ -55912,12 +74161,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574", "content": { "type": 1, "value": { @@ -55936,12 +74185,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395516, + "modified": 1700748395516 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395516, + "modified": 1700748395516 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/costs[0]", "content": { "type": 1, "value": { @@ -55951,12 +74211,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395517, + "modified": 1700748395517 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574", "content": { "type": 1, "value": { @@ -55975,12 +74235,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395517, + "modified": 1700748395517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395517, + "modified": 1700748395517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395517, + "modified": 1700748395517 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830/credit", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit", "content": { "type": 1, "value": { @@ -55991,12 +74273,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395517, + "modified": 1700748395517 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125193903817094830", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830", "content": { "type": 1, "value": { @@ -56008,12 +74290,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395517, + "modified": 1700748395517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395517, + "modified": 1700748395517 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395517, + "modified": 1700748395517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406", "content": { "type": 1, "value": { @@ -56039,12 +74343,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395517, + "modified": 1700748395517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395517, + "modified": 1700748395517 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395517, + "modified": 1700748395517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321", "content": { "type": 1, "value": { @@ -56070,12 +74396,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395517, + "modified": 1700748395517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395517, + "modified": 1700748395517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395517, + "modified": 1700748395517 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960", "content": { "type": 1, "value": { @@ -56099,12 +74447,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395517, + "modified": 1700748395517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678155991324/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395517, + "modified": 1700748395517 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1678155991324/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678155991324/details", "content": { "type": 1, "value": { @@ -56121,12 +74480,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395517, + "modified": 1700748395517 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1678155991324", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678155991324", "content": { "type": 1, "value": { @@ -56151,12 +74510,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395517, + "modified": 1700748395517 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/costs[0]", "content": { "type": 1, "value": { @@ -56166,12 +74525,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395517, + "modified": 1700748395517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395517, + "modified": 1700748395517 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info/collector", "content": { "type": 1, "value": { @@ -56179,12 +74549,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395517, + "modified": 1700748395517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395517, + "modified": 1700748395517 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details", "content": { "type": 1, "value": { @@ -56199,12 +74580,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395517, + "modified": 1700748395517 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383", "content": { "type": 1, "value": { @@ -56227,12 +74608,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395517, + "modified": 1700748395517 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details/costs[0]", "content": { "type": 1, "value": { @@ -56242,12 +74623,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395517, + "modified": 1700748395517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609", "content": { "type": 1, "value": { @@ -56270,12 +74662,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679266870095/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1679266870095/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679266870095/details", "content": { "type": 1, "value": { @@ -56292,12 +74695,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1679266870095", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679266870095", "content": { "type": 1, "value": { @@ -56322,12 +74725,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details/costs[0]", "content": { "type": 1, "value": { @@ -56337,12 +74740,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362", "content": { "type": 1, "value": { @@ -56368,12 +74782,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323", "content": { "type": 1, "value": { @@ -56395,12 +74831,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709", "content": { "type": 1, "value": { @@ -56426,12 +74884,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682620551210/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1682620551210/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682620551210/details", "content": { "type": 1, "value": { @@ -56450,12 +74919,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1682620551210", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682620551210", "content": { "type": 1, "value": { @@ -56481,12 +74950,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919", "content": { "type": 1, "value": { @@ -56512,12 +75003,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546", "content": { "type": 1, "value": { @@ -56543,12 +75056,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947563493/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947563493/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947563493/details", "content": { "type": 1, "value": { @@ -56567,12 +75091,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947563493", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947563493", "content": { "type": 1, "value": { @@ -56598,12 +75122,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523", "content": { "type": 1, "value": { @@ -56629,12 +75175,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684018958560/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1684018958560/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684018958560/details", "content": { "type": 1, "value": { @@ -56651,12 +75208,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1684018958560", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684018958560", "content": { "type": 1, "value": { @@ -56681,12 +75238,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439", "content": { "type": 1, "value": { @@ -56712,12 +75291,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068", "content": { "type": 1, "value": { @@ -56743,12 +75344,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395518, + "modified": 1700748395518 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1684624396163/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684624396163/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684624396163/details", "content": { "type": 1, "value": { @@ -56765,12 +75377,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1684624396163", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684624396163", "content": { "type": 1, "value": { @@ -56795,12 +75407,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1685667418933/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685667418933/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685667418933/details", "content": { "type": 1, "value": { @@ -56817,12 +75440,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1685667418933", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685667418933", "content": { "type": 1, "value": { @@ -56847,12 +75470,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668065254/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668065254/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668065254/details", "content": { "type": 1, "value": { @@ -56869,12 +75503,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668065254", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668065254", "content": { "type": 1, "value": { @@ -56898,12 +75532,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668086801/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668086801/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668086801/details", "content": { "type": 1, "value": { @@ -56920,12 +75565,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668086801", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668086801", "content": { "type": 1, "value": { @@ -56949,12 +75594,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668239552/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668239552/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668239552/details", "content": { "type": 1, "value": { @@ -56971,12 +75627,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668239552", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668239552", "content": { "type": 1, "value": { @@ -57000,12 +75656,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834", "content": { "type": 1, "value": { @@ -57031,12 +75709,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859298764/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859298764/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859298764/details", "content": { "type": 1, "value": { @@ -57055,12 +75744,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859298764", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859298764", "content": { "type": 1, "value": { @@ -57086,12 +75775,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719320, - "modified": 1700589719320 + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859421606/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859421606/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859421606/details", "content": { "type": 1, "value": { @@ -57108,12 +75808,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859421606", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859421606", "content": { "type": 1, "value": { @@ -57138,12 +75838,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1688400452024/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688400452024/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688400452024/details", "content": { "type": 1, "value": { @@ -57160,12 +75871,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1688400452024", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688400452024", "content": { "type": 1, "value": { @@ -57190,12 +75901,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688403103597/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1688403103597/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688403103597/details", "content": { "type": 1, "value": { @@ -57212,12 +75934,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1688403103597", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688403103597", "content": { "type": 1, "value": { @@ -57241,12 +75963,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266", "content": { "type": 1, "value": { @@ -57268,12 +76012,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052", "content": { "type": 1, "value": { @@ -57295,12 +76061,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691081627683/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1691081627683/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691081627683/details", "content": { "type": 1, "value": { @@ -57317,12 +76094,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1691081627683", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691081627683", "content": { "type": 1, "value": { @@ -57347,12 +76124,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805/details", "content": { "type": 1, "value": { @@ -57368,12 +76156,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805", "content": { "type": 1, "value": { @@ -57397,12 +76185,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/date_of_expiration", "content": { "type": 1, "value": { @@ -57411,12 +76199,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/details", "content": { "type": 1, "value": { @@ -57432,12 +76231,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577", "content": { "type": 1, "value": { @@ -57464,12 +76263,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582/details", "content": { "type": 1, "value": { @@ -57485,12 +76295,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582", "content": { "type": 1, "value": { @@ -57514,12 +76324,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395519, + "modified": 1700748395519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051/details", "content": { "type": 1, "value": { @@ -57535,12 +76356,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051", "content": { "type": 1, "value": { @@ -57564,12 +76385,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395519 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/date_of_expiration", "content": { "type": 1, "value": { @@ -57578,12 +76399,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395519, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/details", "content": { "type": 1, "value": { @@ -57599,12 +76431,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196", "content": { "type": 1, "value": { @@ -57631,12 +76463,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385/details", "content": { "type": 1, "value": { @@ -57654,12 +76497,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385", "content": { "type": 1, "value": { @@ -57683,12 +76526,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505/details", "content": { "type": 1, "value": { @@ -57706,12 +76560,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505", "content": { "type": 1, "value": { @@ -57735,12 +76589,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671/details", "content": { "type": 1, "value": { @@ -57758,12 +76623,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671", "content": { "type": 1, "value": { @@ -57787,12 +76652,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974/details", "content": { "type": 1, "value": { @@ -57808,12 +76684,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974", "content": { "type": 1, "value": { @@ -57838,12 +76714,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991/details", "content": { "type": 1, "value": { @@ -57859,12 +76746,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991", "content": { "type": 1, "value": { @@ -57889,12 +76776,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024/details", "content": { "type": 1, "value": { @@ -57910,12 +76808,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024", "content": { "type": 1, "value": { @@ -57940,12 +76838,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244/details", "content": { "type": 1, "value": { @@ -57961,12 +76870,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244", "content": { "type": 1, "value": { @@ -57991,12 +76900,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144/details", "content": { "type": 1, "value": { @@ -58012,12 +76932,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144", "content": { "type": 1, "value": { @@ -58042,12 +76962,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583/details", "content": { "type": 1, "value": { @@ -58063,12 +76994,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583", "content": { "type": 1, "value": { @@ -58093,12 +77024,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588/details", "content": { "type": 1, "value": { @@ -58114,12 +77056,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588", "content": { "type": 1, "value": { @@ -58144,12 +77086,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868/details", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868/details", "content": { "type": 1, "value": { @@ -58165,12 +77118,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868", "content": { "type": 1, "value": { @@ -58195,12 +77148,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/costs[0]", "content": { "type": 1, "value": { @@ -58210,12 +77174,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609", "content": { "type": 1, "value": { @@ -58233,12 +77197,221 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": "2023-03-19T21:50:02.609Z", + "history_id": 1679262602609, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": "2023-03-19T21:50:02.609Z", + "history_id": 1679262602609, + "currency_id": "BRL", + "status": "paid", + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": "2023-03-19T21:50:02.609Z", + "history_id": 1679262602609, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-22T22:57:31.406Z", + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/costs[0]", + "content": { + "type": 1, + "value": { + "title": "Taxa de parcelamento", + "label": "Em 10 parcela(s) 20.00%", + "amount": 600 + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609", + "content": { + "type": 1, + "value": { + "id": 1679262602609, + "type": "emprestimo", + "original_amount": 3000, + "total_amount": 3600, + "installments": 10, + "installment_amount": 360, + "date_created": "2023-03-19T21:50:02.609Z", + "history_id": 1679262602609, + "currency_id": "BRL", + "status": "paid", + "date_last_updated": "2023-09-22T22:57:31.526Z", + "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + }, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/costs[0]", "content": { "type": 1, "value": { @@ -58248,12 +77421,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609", "content": { "type": 1, "value": { @@ -58267,54 +77440,28 @@ "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", + "date_last_updated": "2023-09-22T22:57:31.684Z", "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309", "content": { "type": 1, - "value": { - "title": "Taxa de parcelamento", - "label": "Em 10 parcela(s) 20.00%", - "amount": 600 - }, + "value": {}, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609", - "content": { - "type": 1, - "value": { - "id": 1679262602609, - "type": "emprestimo", - "original_amount": 3000, - "total_amount": 3600, - "installments": 10, - "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", - "history_id": 1679262602609, - "currency_id": "BRL", - "status": "paid", - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" - }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 - } - }, - { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/costs[0]", "content": { "type": 1, "value": { @@ -58324,12 +77471,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609", "content": { "type": 1, "value": { @@ -58342,57 +77489,27 @@ "date_created": "2023-03-19T21:50:02.609Z", "history_id": 1679262602609, "currency_id": "BRL", - "status": "paid", - "date_last_updated": "2023-09-22T22:57:31.406Z", "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310", "content": { "type": 1, - "value": { - "title": "Taxa de parcelamento", - "label": "Em 10 parcela(s) 20.00%", - "amount": 600 - }, + "value": {}, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609", - "content": { - "type": 1, - "value": { - "id": 1679262602609, - "type": "emprestimo", - "original_amount": 3000, - "total_amount": 3600, - "installments": 10, - "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", - "history_id": 1679262602609, - "currency_id": "BRL", - "status": "paid", - "date_last_updated": "2023-09-22T22:57:31.526Z", - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" - }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 - } - }, - { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/costs[0]", "content": { "type": 1, "value": { @@ -58402,12 +77519,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395520, + "modified": 1700748395520 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609", "content": { "type": 1, "value": { @@ -58420,55 +77537,27 @@ "date_created": "2023-03-19T21:50:02.609Z", "history_id": 1679262602609, "currency_id": "BRL", - "status": "paid", - "date_last_updated": "2023-09-22T22:57:31.684Z", "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311", "content": { "type": 1, - "value": { - "title": "Taxa de parcelamento", - "label": "Em 10 parcela(s) 20.00%", - "amount": 600 - }, + "value": {}, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609", - "content": { - "type": 1, - "value": { - "id": 1679262602609, - "type": "emprestimo", - "original_amount": 3000, - "total_amount": 3600, - "installments": 10, - "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", - "history_id": 1679262602609, - "currency_id": "BRL", - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" - }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 - } - }, - { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/costs[0]", "content": { "type": 1, "value": { @@ -58478,12 +77567,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609", "content": { "type": 1, "value": { @@ -58500,12 +77589,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/costs[0]", "content": { "type": 1, "value": { @@ -58515,12 +77615,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609", "content": { "type": 1, "value": { @@ -58537,49 +77637,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/costs/0", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401", "content": { "type": 1, - "value": { - "title": "Taxa de parcelamento", - "label": "Em 10 parcela(s) 20.00%", - "amount": 600 - }, + "value": {}, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices", "content": { "type": 1, - "value": { - "id": 1679262602609, - "type": "emprestimo", - "original_amount": 3000, - "total_amount": 3600, - "installments": 10, - "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", - "history_id": 1679262602609, - "currency_id": "BRL", - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" - }, + "value": {}, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/credit", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit", "content": { "type": 1, "value": { @@ -58590,12 +77675,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/balances/IVIP", "content": { "type": 1, "value": { @@ -58605,12 +77690,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/125797630999374460", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460", "content": { "type": 1, "value": { @@ -58622,12 +77718,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/balances/BRL", "content": { "type": 1, "value": { @@ -58637,12 +77733,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492/details", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492/details", "content": { "type": 1, "value": { @@ -58659,12 +77777,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492", "content": { "type": 1, "value": { @@ -58689,12 +77807,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266973884/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266973884/details", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266973884/details", "content": { "type": 1, "value": { @@ -58711,12 +77840,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266973884", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266973884", "content": { "type": 1, "value": { @@ -58741,12 +77870,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1679267111761/details", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679267111761/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679267111761/details", "content": { "type": 1, "value": { @@ -58763,12 +77903,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1679267111761", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679267111761", "content": { "type": 1, "value": { @@ -58793,12 +77933,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679872001608/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1679872001608/details", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679872001608/details", "content": { "type": 1, "value": { @@ -58815,12 +77966,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1679872001608", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679872001608", "content": { "type": 1, "value": { @@ -58845,12 +77996,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1684018958586/details", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684018958586/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684018958586/details", "content": { "type": 1, "value": { @@ -58867,12 +78029,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1684018958586", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684018958586", "content": { "type": 1, "value": { @@ -58897,12 +78059,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684348450676/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1684348450676/details", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684348450676/details", "content": { "type": 1, "value": { @@ -58919,12 +78092,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1684348450676", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684348450676", "content": { "type": 1, "value": { @@ -58949,12 +78122,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624165029/details", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624165029/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624165029/details", "content": { "type": 1, "value": { @@ -58971,12 +78155,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624165029", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624165029", "content": { "type": 1, "value": { @@ -59001,12 +78185,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624981228/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624981228/details", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624981228/details", "content": { "type": 1, "value": { @@ -59023,12 +78218,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624981228", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624981228", "content": { "type": 1, "value": { @@ -59053,12 +78248,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/126091022706906300", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300", "content": { "type": 1, "value": { @@ -59069,12 +78275,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/127785137141729800/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/127785137141729800/credit", + "path": "ivipcoin-db::__movement_wallet__/127785137141729800/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/127785137141729800/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/127785137141729800/credit", "content": { "type": 1, "value": { @@ -59083,12 +78322,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/127785137141729800", + "path": "ivipcoin-db::__movement_wallet__/127785137141729800", "content": { "type": 1, "value": { @@ -59099,12 +78338,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/127995869380983060/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/127995869380983060/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/127995869380983060", + "path": "ivipcoin-db::__movement_wallet__/127995869380983060", "content": { "type": 1, "value": { @@ -59115,12 +78376,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/balances/IVIP", "content": { "type": 1, "value": { @@ -59130,12 +78391,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800", "content": { "type": 1, "value": { @@ -59161,12 +78455,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996", "content": { "type": 1, "value": { @@ -59192,12 +78508,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678076967863/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1678076967863/details", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678076967863/details", "content": { "type": 1, "value": { @@ -59214,12 +78541,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1678076967863", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678076967863", "content": { "type": 1, "value": { @@ -59244,12 +78571,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details/costs[0]", "content": { "type": 1, "value": { @@ -59259,12 +78586,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425", "content": { "type": 1, "value": { @@ -59287,12 +78625,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1679871677212/details", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679871677212/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679871677212/details", "content": { "type": 1, "value": { @@ -59309,12 +78658,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1679871677212", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679871677212", "content": { "type": 1, "value": { @@ -59339,12 +78688,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details/costs[0]", "content": { "type": 1, "value": { @@ -59354,12 +78703,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314", "content": { "type": 1, "value": { @@ -59382,12 +78742,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872334513/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872334513/details", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872334513/details", "content": { "type": 1, "value": { @@ -59404,12 +78775,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872334513", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872334513", "content": { "type": 1, "value": { @@ -59434,12 +78805,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300", "content": { "type": 1, "value": { @@ -59465,12 +78858,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395521, + "modified": 1700748395521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932343/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932343/details", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932343/details", "content": { "type": 1, "value": { @@ -59489,12 +78893,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932343", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932343", "content": { "type": 1, "value": { @@ -59520,12 +78924,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932484/details", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932484/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395522, + "modified": 1700748395522 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932484/details", "content": { "type": 1, "value": { @@ -59544,12 +78959,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932484", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932484", "content": { "type": 1, "value": { @@ -59575,12 +78990,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1685667547180/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1685667547180/details", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1685667547180/details", "content": { "type": 1, "value": { @@ -59597,12 +79023,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1685667547180", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1685667547180", "content": { "type": 1, "value": { @@ -59627,12 +79053,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395522, + "modified": 1700748395522 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924", "content": { "type": 1, "value": { @@ -59658,12 +79106,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details/costs[0]", "content": { "type": 1, "value": { @@ -59673,12 +79121,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details", "content": { "type": 1, "value": { @@ -59694,12 +79142,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458", "content": { "type": 1, "value": { @@ -59727,12 +79175,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/costs/0", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395522, + "modified": 1700748395522 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/costs[0]", "content": { "type": 1, "value": { @@ -59742,12 +79201,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425", "content": { "type": 1, "value": { @@ -59765,12 +79224,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314/costs/0", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314/costs[0]", "content": { "type": 1, "value": { @@ -59780,12 +79239,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314", "content": { "type": 1, "value": { @@ -59803,12 +79262,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/costs/0", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/costs[0]", "content": { "type": 1, "value": { @@ -59818,12 +79288,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425", "content": { "type": 1, "value": { @@ -59840,12 +79310,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314/costs/0", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314/costs[0]", "content": { "type": 1, "value": { @@ -59855,12 +79325,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314", "content": { "type": 1, "value": { @@ -59877,12 +79347,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/costs/0", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/costs[0]", "content": { "type": 1, "value": { @@ -59892,12 +79373,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425", "content": { "type": 1, "value": { @@ -59914,12 +79395,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314/costs/0", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314/costs[0]", "content": { "type": 1, "value": { @@ -59929,12 +79410,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314", "content": { "type": 1, "value": { @@ -59951,12 +79432,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/costs/0", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395522, + "modified": 1700748395522 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/costs[0]", "content": { "type": 1, "value": { @@ -59966,12 +79458,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425", "content": { "type": 1, "value": { @@ -59988,12 +79480,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314/costs/0", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314/costs[0]", "content": { "type": 1, "value": { @@ -60003,12 +79495,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395522, + "modified": 1700748395522 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314", "content": { "type": 1, "value": { @@ -60025,12 +79517,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280/credit", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit", "content": { "type": 1, "value": { @@ -60041,12 +79555,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/128701144173823280", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280", "content": { "type": 1, "value": { @@ -60058,12 +79572,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/130251464382378670/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531", + "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531", "content": { "type": 1, "value": { @@ -60085,12 +79632,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/130251464382378670/credit", + "path": "ivipcoin-db::__movement_wallet__/130251464382378670/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/130251464382378670/credit", "content": { "type": 1, "value": { @@ -60099,12 +79668,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/130251464382378670", + "path": "ivipcoin-db::__movement_wallet__/130251464382378670", "content": { "type": 1, "value": { @@ -60115,12 +79684,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/132892661243254380/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances/BRL", "content": { "type": 1, "value": { @@ -60130,12 +79699,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/132892661243254380/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances/IVIP", "content": { "type": 1, "value": { @@ -60145,12 +79714,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002", + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002", "content": { "type": 1, "value": { @@ -60174,12 +79776,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082", + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082", "content": { "type": 1, "value": { @@ -60201,12 +79825,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612", + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612", "content": { "type": 1, "value": { @@ -60232,12 +79878,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/132892661243254380/history/1679940518294/details", + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1679940518294/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1679940518294/details", "content": { "type": 1, "value": { @@ -60254,12 +79911,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/132892661243254380/history/1679940518294", + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1679940518294", "content": { "type": 1, "value": { @@ -60284,12 +79941,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/132892661243254380", + "path": "ivipcoin-db::__movement_wallet__/132892661243254380", "content": { "type": 1, "value": { @@ -60300,12 +79968,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances/IVIP", "content": { "type": 1, "value": { @@ -60315,12 +79983,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/balances/BRL", + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances/BRL", "content": { "type": 1, "value": { @@ -60330,12 +79998,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/date_of_expiration", "content": { "type": 1, "value": { @@ -60344,12 +80023,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/details", + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/details", "content": { "type": 1, "value": { @@ -60365,12 +80055,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188", + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188", "content": { "type": 1, "value": { @@ -60393,12 +80083,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/date_of_expiration", "content": { "type": 1, "value": { @@ -60407,12 +80097,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/details", + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/details", "content": { "type": 1, "value": { @@ -60428,12 +80129,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606", + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606", "content": { "type": 1, "value": { @@ -60460,12 +80161,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691597759364/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/history/1691597759364/details", + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691597759364/details", "content": { "type": 1, "value": { @@ -60481,12 +80193,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/history/1691597759364", + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691597759364", "content": { "type": 1, "value": { @@ -60510,12 +80222,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250/credit", + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/credit", "content": { "type": 1, "value": { @@ -60524,12 +80258,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133675054149021250", + "path": "ivipcoin-db::__movement_wallet__/133675054149021250", "content": { "type": 1, "value": { @@ -60540,12 +80274,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019", + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019", "content": { "type": 1, "value": { @@ -60567,12 +80334,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552", + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552", "content": { "type": 1, "value": { @@ -60594,12 +80383,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352", + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352", "content": { "type": 1, "value": { @@ -60621,12 +80432,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719321, - "modified": 1700589719321 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133736879099726860/credit", + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/credit", "content": { "type": 1, "value": { @@ -60635,12 +80468,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/133736879099726860", + "path": "ivipcoin-db::__movement_wallet__/133736879099726860", "content": { "type": 1, "value": { @@ -60651,12 +80484,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/134682120797451790/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876", + "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876", "content": { "type": 1, "value": { @@ -60678,12 +80544,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/134682120797451790/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/134682120797451790/credit", + "path": "ivipcoin-db::__movement_wallet__/134682120797451790/credit", "content": { "type": 1, "value": { @@ -60692,12 +80580,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/134682120797451790", + "path": "ivipcoin-db::__movement_wallet__/134682120797451790", "content": { "type": 1, "value": { @@ -60708,12 +80596,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/137445448878708240", + "path": "ivipcoin-db::__movement_wallet__/137445448878708240/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/137445448878708240/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/137445448878708240", "content": { "type": 1, "value": { @@ -60724,12 +80634,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138488500273925570/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356", + "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356", "content": { "type": 1, "value": { @@ -60751,12 +80694,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138488500273925570/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138488500273925570/credit", + "path": "ivipcoin-db::__movement_wallet__/138488500273925570/credit", "content": { "type": 1, "value": { @@ -60765,12 +80730,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138488500273925570", + "path": "ivipcoin-db::__movement_wallet__/138488500273925570", "content": { "type": 1, "value": { @@ -60781,12 +80746,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/balances/IVIP", "content": { "type": 1, "value": { @@ -60796,12 +80761,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011", "content": { "type": 1, "value": { @@ -60827,12 +80825,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678180078100/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1678180078100/details", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678180078100/details", "content": { "type": 1, "value": { @@ -60849,12 +80858,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1678180078100", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678180078100", "content": { "type": 1, "value": { @@ -60879,12 +80888,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678198835623/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1678198835623/details", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678198835623/details", "content": { "type": 1, "value": { @@ -60901,12 +80921,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1678198835623", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678198835623", "content": { "type": 1, "value": { @@ -60931,12 +80951,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678228246387/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1678228246387/details", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678228246387/details", "content": { "type": 1, "value": { @@ -60953,12 +80984,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1678228246387", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678228246387", "content": { "type": 1, "value": { @@ -60983,12 +81014,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1679266874503/details", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679266874503/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679266874503/details", "content": { "type": 1, "value": { @@ -61005,12 +81047,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1679266874503", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679266874503", "content": { "type": 1, "value": { @@ -61035,12 +81077,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679267008673/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1679267008673/details", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679267008673/details", "content": { "type": 1, "value": { @@ -61057,12 +81110,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1679267008673", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679267008673", "content": { "type": 1, "value": { @@ -61087,12 +81140,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details/costs[0]", "content": { "type": 1, "value": { @@ -61102,12 +81155,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395523, + "modified": 1700748395523 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547", "content": { "type": 1, "value": { @@ -61130,12 +81194,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684348689379/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684348689379/details", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684348689379/details", "content": { "type": 1, "value": { @@ -61152,12 +81227,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684348689379", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684348689379", "content": { "type": 1, "value": { @@ -61182,12 +81257,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624162871/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624162871/details", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624162871/details", "content": { "type": 1, "value": { @@ -61204,12 +81290,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624162871", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624162871", "content": { "type": 1, "value": { @@ -61234,12 +81320,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624267520/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624267520/details", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624267520/details", "content": { "type": 1, "value": { @@ -61256,12 +81353,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624267520", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624267520", "content": { "type": 1, "value": { @@ -61286,12 +81383,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624311448/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624311448/details", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624311448/details", "content": { "type": 1, "value": { @@ -61308,12 +81416,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624311448", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624311448", "content": { "type": 1, "value": { @@ -61338,12 +81446,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624493050/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624493050/details", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624493050/details", "content": { "type": 1, "value": { @@ -61360,12 +81479,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624493050", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624493050", "content": { "type": 1, "value": { @@ -61390,12 +81509,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684627629023/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684627629023/details", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684627629023/details", "content": { "type": 1, "value": { @@ -61412,12 +81542,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684627629023", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684627629023", "content": { "type": 1, "value": { @@ -61442,12 +81572,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684692136128/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684692136128/details", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684692136128/details", "content": { "type": 1, "value": { @@ -61464,12 +81605,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684692136128", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684692136128", "content": { "type": 1, "value": { @@ -61494,12 +81635,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684710449691/details", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684710449691/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684710449691/details", "content": { "type": 1, "value": { @@ -61516,12 +81668,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1684710449691", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684710449691", "content": { "type": 1, "value": { @@ -61546,12 +81698,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946", "content": { "type": 1, "value": { @@ -61573,12 +81747,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985", "content": { "type": 1, "value": { @@ -61604,12 +81800,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details/costs[0]", "content": { "type": 1, "value": { @@ -61619,12 +81815,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details", "content": { "type": 1, "value": { @@ -61640,12 +81836,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851", "content": { "type": 1, "value": { @@ -61673,12 +81869,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464/details", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464/details", "content": { "type": 1, "value": { @@ -61694,12 +81901,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464", "content": { "type": 1, "value": { @@ -61723,12 +81930,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943/details", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943/details", "content": { "type": 1, "value": { @@ -61744,12 +81962,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943", "content": { "type": 1, "value": { @@ -61773,12 +81991,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/costs/0", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/costs[0]", "content": { "type": 1, "value": { @@ -61788,12 +82017,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547", "content": { "type": 1, "value": { @@ -61811,12 +82040,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/costs/0", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/costs[0]", "content": { "type": 1, "value": { @@ -61826,12 +82066,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547", "content": { "type": 1, "value": { @@ -61849,12 +82089,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/costs/0", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/costs[0]", "content": { "type": 1, "value": { @@ -61864,12 +82115,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547", "content": { "type": 1, "value": { @@ -61887,12 +82138,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/costs/0", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/costs[0]", "content": { "type": 1, "value": { @@ -61902,12 +82164,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547", "content": { "type": 1, "value": { @@ -61925,12 +82187,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/costs/0", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/costs[0]", "content": { "type": 1, "value": { @@ -61940,12 +82213,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547", "content": { "type": 1, "value": { @@ -61963,12 +82236,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/costs/0", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/costs[0]", "content": { "type": 1, "value": { @@ -61978,12 +82262,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395524, + "modified": 1700748395524 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547", "content": { "type": 1, "value": { @@ -62001,12 +82285,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/costs/0", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/costs[0]", "content": { "type": 1, "value": { @@ -62016,12 +82311,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547", "content": { "type": 1, "value": { @@ -62039,12 +82334,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/costs/0", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/costs[0]", "content": { "type": 1, "value": { @@ -62054,12 +82360,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547", "content": { "type": 1, "value": { @@ -62077,12 +82383,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/costs/0", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/costs[0]", "content": { "type": 1, "value": { @@ -62092,12 +82409,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547", "content": { "type": 1, "value": { @@ -62115,12 +82432,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/costs/0", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/costs[0]", "content": { "type": 1, "value": { @@ -62130,12 +82458,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547", "content": { "type": 1, "value": { @@ -62153,12 +82481,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/costs/0", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/costs[0]", "content": { "type": 1, "value": { @@ -62168,12 +82507,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547", "content": { "type": 1, "value": { @@ -62191,12 +82530,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/costs/0", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/costs[0]", "content": { "type": 1, "value": { @@ -62206,12 +82556,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547", "content": { "type": 1, "value": { @@ -62229,12 +82579,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820/credit", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit", "content": { "type": 1, "value": { @@ -62245,12 +82617,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/138585273860332820", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820", "content": { "type": 1, "value": { @@ -62262,12 +82634,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/139283242086295280", + "path": "ivipcoin-db::__movement_wallet__/139283242086295280/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/139283242086295280/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/139283242086295280", "content": { "type": 1, "value": { @@ -62278,12 +82672,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/balances/IVIP", "content": { "type": 1, "value": { @@ -62293,12 +82687,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189", "content": { "type": 1, "value": { @@ -62324,12 +82751,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685727229028/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1685727229028/details", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685727229028/details", "content": { "type": 1, "value": { @@ -62346,12 +82784,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1685727229028", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685727229028", "content": { "type": 1, "value": { @@ -62376,12 +82814,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1687318007517/details", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1687318007517/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1687318007517/details", "content": { "type": 1, "value": { @@ -62398,12 +82847,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1687318007517", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1687318007517", "content": { "type": 1, "value": { @@ -62427,12 +82876,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1688408922424/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1688408922424/details", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1688408922424/details", "content": { "type": 1, "value": { @@ -62449,12 +82909,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1688408922424", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1688408922424", "content": { "type": 1, "value": { @@ -62478,12 +82938,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1691087650613/details", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691087650613/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691087650613/details", "content": { "type": 1, "value": { @@ -62500,12 +82971,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1691087650613", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691087650613", "content": { "type": 1, "value": { @@ -62530,12 +83001,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429/details", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429/details", "content": { "type": 1, "value": { @@ -62551,12 +83033,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429", "content": { "type": 1, "value": { @@ -62580,12 +83062,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003/details", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003/details", "content": { "type": 1, "value": { @@ -62601,12 +83094,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003", "content": { "type": 1, "value": { @@ -62630,12 +83123,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322/details", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322/details", "content": { "type": 1, "value": { @@ -62651,12 +83155,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322", "content": { "type": 1, "value": { @@ -62680,12 +83184,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903/details", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903/details", "content": { "type": 1, "value": { @@ -62701,12 +83216,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903", "content": { "type": 1, "value": { @@ -62731,12 +83246,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028/details", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028/details", "content": { "type": 1, "value": { @@ -62752,12 +83278,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028", "content": { "type": 1, "value": { @@ -62782,12 +83308,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500/credit", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/credit", "content": { "type": 1, "value": { @@ -62796,12 +83344,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/140498756876340500", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500", "content": { "type": 1, "value": { @@ -62813,12 +83361,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/142977693689888340/balances/IVIP", + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/balances/IVIP", "content": { "type": 1, "value": { @@ -62828,12 +83376,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825", + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825/details", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825", "content": { "type": 1, "value": { @@ -62859,12 +83440,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689208259450/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/142977693689888340/history/1689208259450/details", + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689208259450/details", "content": { "type": 1, "value": { @@ -62881,12 +83473,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/142977693689888340/history/1689208259450", + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689208259450", "content": { "type": 1, "value": { @@ -62911,12 +83503,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/142977693689888340/credit", + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/credit", "content": { "type": 1, "value": { @@ -62925,12 +83539,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/142977693689888340", + "path": "ivipcoin-db::__movement_wallet__/142977693689888340", "content": { "type": 1, "value": { @@ -62942,12 +83556,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/145100373829536670/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/145100373829536670", + "path": "ivipcoin-db::__movement_wallet__/145100373829536670/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/145100373829536670", "content": { "type": 1, "value": { @@ -62959,12 +83595,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146025594361679260/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146025594361679260/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146025594361679260", + "path": "ivipcoin-db::__movement_wallet__/146025594361679260", "content": { "type": 1, "value": { @@ -62975,12 +83633,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/date_of_expiration", "content": { "type": 1, "value": { @@ -62989,12 +83658,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/details", + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/details", "content": { "type": 1, "value": { @@ -63010,12 +83690,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538", + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538", "content": { "type": 1, "value": { @@ -63038,12 +83718,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146193775313990370/credit", + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/credit", "content": { "type": 1, "value": { @@ -63052,12 +83754,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146193775313990370", + "path": "ivipcoin-db::__movement_wallet__/146193775313990370", "content": { "type": 1, "value": { @@ -63068,12 +83770,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146193999422064450/credit", + "path": "ivipcoin-db::__movement_wallet__/146193999422064450/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193999422064450/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193999422064450/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193999422064450/credit", "content": { "type": 1, "value": { @@ -63082,12 +83817,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146193999422064450", + "path": "ivipcoin-db::__movement_wallet__/146193999422064450", "content": { "type": 1, "value": { @@ -63098,12 +83833,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146386157285818500/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/146386157285818500", + "path": "ivipcoin-db::__movement_wallet__/146386157285818500/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146386157285818500", "content": { "type": 1, "value": { @@ -63114,12 +83871,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/costs/0", + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/costs[0]", "content": { "type": 1, "value": { @@ -63129,12 +83897,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395525, + "modified": 1700748395525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info/payer", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395526, + "modified": 1700748395526 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info/collector", + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info/collector", "content": { "type": 1, "value": { @@ -63142,12 +83921,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395526, + "modified": 1700748395526 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details", + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395526, + "modified": 1700748395526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details", "content": { "type": 1, "value": { @@ -63162,12 +83952,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395526, + "modified": 1700748395526 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580", + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580", "content": { "type": 1, "value": { @@ -63190,12 +83980,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395526, + "modified": 1700748395526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395526, + "modified": 1700748395526 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/147006993684782200", + "path": "ivipcoin-db::__movement_wallet__/147006993684782200", "content": { "type": 1, "value": { @@ -63206,12 +84007,45 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395526, + "modified": 1700748395526 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/147062074886654460/credit", + "path": "ivipcoin-db::__movement_wallet__/147062074886654460/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395526, + "modified": 1700748395526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147062074886654460/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395526, + "modified": 1700748395526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147062074886654460/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395526, + "modified": 1700748395526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147062074886654460/credit", "content": { "type": 1, "value": { @@ -63220,12 +84054,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395526, + "modified": 1700748395526 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/147062074886654460", + "path": "ivipcoin-db::__movement_wallet__/147062074886654460", "content": { "type": 1, "value": { @@ -63237,12 +84071,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395526, + "modified": 1700748395526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/149922673320977100/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395526, + "modified": 1700748395526 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/149922673320977100", + "path": "ivipcoin-db::__movement_wallet__/149922673320977100/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395526, + "modified": 1700748395526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/149922673320977100", "content": { "type": 1, "value": { @@ -63253,12 +84109,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395526, + "modified": 1700748395526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/151721738402511580/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395526, + "modified": 1700748395526 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/151721738402511580", + "path": "ivipcoin-db::__movement_wallet__/151721738402511580/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395526, + "modified": 1700748395526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/151721738402511580", "content": { "type": 1, "value": { @@ -63268,12 +84146,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395526, + "modified": 1700748395526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/balances", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395526, + "modified": 1700748395526 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/date_of_expiration", "content": { "type": 1, "value": { @@ -63282,12 +84171,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395526, + "modified": 1700748395526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395526, + "modified": 1700748395526 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/details", + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/details", "content": { "type": 1, "value": { @@ -63303,12 +84203,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395526, + "modified": 1700748395526 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002", + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002", "content": { "type": 1, "value": { @@ -63335,12 +84235,23 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395526, + "modified": 1700748395526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430/details/costs", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395526, + "modified": 1700748395526 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430/details", + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430/details", "content": { "type": 1, "value": { @@ -63356,12 +84267,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395526, + "modified": 1700748395526 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430", + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430", "content": { "type": 1, "value": { @@ -63385,12 +84296,34 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395526, + "modified": 1700748395526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395526, + "modified": 1700748395526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/credit/invoices", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395526, + "modified": 1700748395526 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/152557644739400160/credit", + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/credit", "content": { "type": 1, "value": { @@ -63399,12 +84332,12 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395526, + "modified": 1700748395526 } }, { - "path": "ivipcoin-db::movement_wallet/ivipcoin-db::__movement_wallet__/152557644739400160", + "path": "ivipcoin-db::__movement_wallet__/152557644739400160", "content": { "type": 1, "value": { @@ -63415,8 +84348,30 @@ }, "revision": "lnt02q7v0007oohx37705737", "revision_nr": 1, - "created": 1700589719322, - "modified": 1700589719322 + "created": 1700748395526, + "modified": 1700748395526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395526, + "modified": 1700748395526 + } + }, + { + "path": "", + "content": { + "type": 1, + "value": {}, + "revision": "lnt02q7v0007oohx37705737", + "revision_nr": 1, + "created": 1700748395526, + "modified": 1700748395526 } } ] \ No newline at end of file diff --git a/test/resultWithPath.ts b/test/resultWithPath.ts index fe8d2474..77857482 100644 --- a/test/resultWithPath.ts +++ b/test/resultWithPath.ts @@ -19,22 +19,28 @@ function transform(json: Record, prefix: string = ""): Result[] const nonObjectKeys: Record = {}; for (const key in json) { - const currentPath = `${prefix}/${key.replace(/\*\*/g, "")}`; + const currentPath = `${prefix.replace(/^\//, "")}/${key.replace(/\*\*/g, "")}`; const currentValue = json[key]; - if (typeof currentValue === "object" && currentValue !== null) { - // Se for objeto, chama recursivamente transform para processar objetos aninhados + if (key === "costs" && Array.isArray(currentValue) && currentValue.length > 0) { + // If "costs" is an array with values, add [0] to the path + results.push(...transform(currentValue[0] as Record, `${currentPath}[0]`)); + console.log("entrou aqui", currentValue); + } else if (key === "costs" && Array.isArray(currentValue) && currentValue.length === 0) { + results.push(...transform(currentValue as unknown as Record, `${currentPath}`)); + } else if (typeof currentValue === "object" && currentValue !== null) { + // If not "costs" or is "costs" but not an array with values, proceed as usual results.push(...transform(currentValue as Record, currentPath)); } else { - // Se não for objeto, adiciona ao objeto de chaves não-objeto + // If it's not an object, add to the nonObjectKeys nonObjectKeys[key] = currentValue; } } - // Adiciona um único resultado para chaves não-objeto + // Add a single result for non-object keys if (Object.keys(nonObjectKeys).length > 0) { const nonObjectResult: Result = { - path: `ivipcoin-db::movement_wallet${prefix}`, + path: `${prefix.replace(/^\//, "")}`, content: { type: 1, value: nonObjectKeys as any, @@ -47,6 +53,21 @@ function transform(json: Record, prefix: string = ""): Result[] results.push(nonObjectResult); } + if (Object.keys(nonObjectKeys).length === 0) { + const nonObjectResult: Result = { + path: `${prefix.replace(/^\//, "")}`, + content: { + type: 1, + value: {} as any, + revision: "lnt02q7v0007oohx37705737", + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(nonObjectResult); + } + return results; } From aeed4e2b736a404b0ba9cc92b412543fd19f4276 Mon Sep 17 00:00:00 2001 From: tiagoabranges Date: Thu, 23 Nov 2023 14:23:40 -0300 Subject: [PATCH 14/36] feat: created function to generate id to key revision --- test/resultWithPath.ts | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/test/resultWithPath.ts b/test/resultWithPath.ts index 77857482..057e5bd7 100644 --- a/test/resultWithPath.ts +++ b/test/resultWithPath.ts @@ -2,6 +2,13 @@ import fs from "fs"; import path from "path"; import { randomUUID } from "crypto"; + +function generateShortUUID(): string { + const fullUUID = randomUUID(); + const shortUUID = fullUUID.replace(/-/g, "").slice(0, 24); + return shortUUID; +} + type Result = { path: string; content: { @@ -44,7 +51,7 @@ function transform(json: Record, prefix: string = ""): Result[] content: { type: 1, value: nonObjectKeys as any, - revision: "lnt02q7v0007oohx37705737", + revision: generateShortUUID(), revision_nr: 1, created: Date.now(), modified: Date.now(), @@ -59,7 +66,7 @@ function transform(json: Record, prefix: string = ""): Result[] content: { type: 1, value: {} as any, - revision: "lnt02q7v0007oohx37705737", + revision: generateShortUUID(), revision_nr: 1, created: Date.now(), modified: Date.now(), From 71abddb739ed3229b27b264e4d79fc86c40f11eb Mon Sep 17 00:00:00 2001 From: iamrosada Date: Thu, 23 Nov 2023 20:52:54 +0300 Subject: [PATCH 15/36] fix: to create only the object if path exist --- test/resultWithPath.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test/resultWithPath.ts b/test/resultWithPath.ts index 77857482..d6e27850 100644 --- a/test/resultWithPath.ts +++ b/test/resultWithPath.ts @@ -50,7 +50,9 @@ function transform(json: Record, prefix: string = ""): Result[] modified: Date.now(), }, }; - results.push(nonObjectResult); + if (nonObjectResult.path) { + results.push(nonObjectResult); + } } if (Object.keys(nonObjectKeys).length === 0) { @@ -65,7 +67,9 @@ function transform(json: Record, prefix: string = ""): Result[] modified: Date.now(), }, }; - results.push(nonObjectResult); + if (nonObjectResult.path) { + results.push(nonObjectResult); + } } return results; From cf847442f4cd6109122973792fea785ef7b228e9 Mon Sep 17 00:00:00 2001 From: iamrosada Date: Thu, 23 Nov 2023 21:10:50 +0300 Subject: [PATCH 16/36] fix: change the index into array costs to be auth --- test/resultWithPath.ts | 77 +++++++++++++++++++++++++++++++++++++----- 1 file changed, 68 insertions(+), 9 deletions(-) diff --git a/test/resultWithPath.ts b/test/resultWithPath.ts index 5f1abedd..e3a746f0 100644 --- a/test/resultWithPath.ts +++ b/test/resultWithPath.ts @@ -2,11 +2,10 @@ import fs from "fs"; import path from "path"; import { randomUUID } from "crypto"; - function generateShortUUID(): string { - const fullUUID = randomUUID(); - const shortUUID = fullUUID.replace(/-/g, "").slice(0, 24); - return shortUUID; + const fullUUID = randomUUID(); + const shortUUID = fullUUID.replace(/-/g, "").slice(0, 24); + return shortUUID; } type Result = { @@ -30,11 +29,10 @@ function transform(json: Record, prefix: string = ""): Result[] const currentValue = json[key]; if (key === "costs" && Array.isArray(currentValue) && currentValue.length > 0) { - // If "costs" is an array with values, add [0] to the path - results.push(...transform(currentValue[0] as Record, `${currentPath}[0]`)); - console.log("entrou aqui", currentValue); - } else if (key === "costs" && Array.isArray(currentValue) && currentValue.length === 0) { - results.push(...transform(currentValue as unknown as Record, `${currentPath}`)); + // If "costs" is an array with values, iterate through each element + for (let i = 0; i < currentValue.length; i++) { + results.push(...transform(currentValue[i] as Record, `${currentPath}[${i}]`)); + } } else if (typeof currentValue === "object" && currentValue !== null) { // If not "costs" or is "costs" but not an array with values, proceed as usual results.push(...transform(currentValue as Record, currentPath)); @@ -82,6 +80,67 @@ function transform(json: Record, prefix: string = ""): Result[] return results; } +// function transform(json: Record, prefix: string = ""): Result[] { +// const results: Result[] = []; +// const nonObjectKeys: Record = {}; + +// for (const key in json) { +// const currentPath = `${prefix.replace(/^\//, "")}/${key.replace(/\*\*/g, "")}`; +// const currentValue = json[key]; + +// if (key === "costs" && Array.isArray(currentValue) && currentValue.length > 0) { +// // If "costs" is an array with values, add [0] to the path +// results.push(...transform(currentValue[0] as Record, `${currentPath}[0]`)); +// console.log("entrou aqui", currentValue); +// } else if (key === "costs" && Array.isArray(currentValue) && currentValue.length === 0) { +// results.push(...transform(currentValue as unknown as Record, `${currentPath}`)); +// } else if (typeof currentValue === "object" && currentValue !== null) { +// // If not "costs" or is "costs" but not an array with values, proceed as usual +// results.push(...transform(currentValue as Record, currentPath)); +// } else { +// // If it's not an object, add to the nonObjectKeys +// nonObjectKeys[key] = currentValue; +// } +// } + +// // Add a single result for non-object keys +// if (Object.keys(nonObjectKeys).length > 0) { +// const nonObjectResult: Result = { +// path: `${prefix.replace(/^\//, "")}`, +// content: { +// type: 1, +// value: nonObjectKeys as any, +// revision: generateShortUUID(), +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; +// if (nonObjectResult.path) { +// results.push(nonObjectResult); +// } +// } + +// if (Object.keys(nonObjectKeys).length === 0) { +// const nonObjectResult: Result = { +// path: `${prefix.replace(/^\//, "")}`, +// content: { +// type: 1, +// value: {} as any, +// revision: generateShortUUID(), +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; +// if (nonObjectResult.path) { +// results.push(nonObjectResult); +// } +// } + +// return results; +// } + function readPath() { const fileName = "__movement_wallet__.json"; From 5f9a768c552a10c87ea6f0b1dbf8677ee9c8f5d8 Mon Sep 17 00:00:00 2001 From: iamrosada Date: Wed, 29 Nov 2023 17:49:34 +0300 Subject: [PATCH 17/36] feat: doing the type function, doesnt still work perfectly --- test/example.ts | 191 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 191 insertions(+) create mode 100644 test/example.ts diff --git a/test/example.ts b/test/example.ts new file mode 100644 index 00000000..5afe5733 --- /dev/null +++ b/test/example.ts @@ -0,0 +1,191 @@ +import fs from "fs"; +import path from "path"; +import { randomUUID } from "crypto"; + +type NodeValueType = keyof typeof nodeValueTypes; + +type Result = { + path: string; + content: { + type: NodeValueType; + value: Record | string | number; + revision: string; + revision_nr: number; + created: number; + modified: number; + }; +}; + +const nodeValueTypes = { + EMPTY: 0, + OBJECT: 1, + ARRAY: 2, + NUMBER: 3, + BOOLEAN: 4, + STRING: 5, + DATETIME: 6, + BIGINT: 7, + BINARY: 8, + REFERENCE: 9, +} as const; + +function generateShortUUID(): string { + const fullUUID = randomUUID(); + const shortUUID = fullUUID.replace(/-/g, "").slice(0, 24); + return shortUUID; +} + +function getType(value: unknown): NodeValueType { + if (Array.isArray(value)) { + return "ARRAY"; + } else if (value && typeof value === "object") { + return "OBJECT"; + } else if (typeof value === "number") { + return "NUMBER"; + } else if (typeof value === "boolean") { + return "BOOLEAN"; + } else if (typeof value === "string") { + return "STRING"; + } else if (typeof value === "bigint") { + return "BIGINT"; + } else if (typeof value === "object" && (value as any).type === 6) { + return "DATETIME"; + } else { + return "EMPTY"; + } +} + +// +const LITERAL = ["qr_code_base64", "qr_code", "ticket_url", "description", "external_resource_url"]; +function transform(json: Record, prefix: string = ""): Result[] { + const results: Result[] = []; + const nonObjectKeys: Record = {}; + const arrayResults: Result[] = []; + + for (const key in json) { + const currentPath = `${prefix.replace(/^\//, "")}/${key.replace(/\*\*/g, "")}`; + const currentValue = json[key]; + const valueType = getType(currentValue); + + if (typeof currentValue === "string" && currentValue.length >= 50) { + arrayResults.push({ + path: currentPath, + content: { + type: valueType, + value: currentValue, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }); + } + + if (Array.isArray(currentValue) && currentValue.length > 0 && currentValue.length <= 49) { + // Se for um array com valores, itera por cada elemento + for (let i = 0; i < currentValue.length; i++) { + results.push(...transform(currentValue[i] as Record, `${currentPath}[${i}]`)); + } + // Adiciona um resultado para o array vazio + arrayResults.push({ + path: currentPath, + content: { + type: "ARRAY", + value: {}, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }); + } else if (valueType === "OBJECT" && LITERAL.includes(key)) { + console.log(currentValue); + results.push(...transform(currentValue as unknown as Record, currentPath)); + } else { + nonObjectKeys[key] = currentValue; + } + } + + // Adiciona um único resultado para chaves não objeto + + if (Object.keys(nonObjectKeys).length > 0) { + const nonObjectResult: Result = { + path: `${prefix.replace(/^\//, "")}`, + content: { + type: getType(nonObjectKeys), + value: nonObjectKeys as any, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + if (nonObjectResult.path) { + results.push(nonObjectResult); + } + } + + // Se não há chaves não objeto, adiciona um resultado com objeto vazio + if (Object.keys(nonObjectKeys).length === 0) { + const nonObjectResult: Result = { + path: `${prefix.replace(/^\//, "")}`, + content: { + type: getType({}), + value: {} as any, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + if (nonObjectResult.path) { + results.push(nonObjectResult); + } + } + + // Adiciona resultados para arrays + results.push(...arrayResults); + + return results; +} + +function readPath() { + const fileName = "__movement_wallet__.json"; + + const filePath = path.join(__dirname, fileName); + + fs.readFile(filePath, "utf8", (err, data) => { + if (err) { + console.error("Error reading the file:", err); + return; + } + + try { + var dataToArray = JSON.parse(data); + + const result = transform(dataToArray); + + const dataJSONModel = JSON.stringify(result, null, 2); + + function afterRestructureSaveIntoJSONFile(dataWithOutPathFromMongodb) { + console.log(new Date().getSeconds(), "started"); + + const fileAddress: any = "./test/outputResultWithPathJSON.json"; + fs.writeFile(fileAddress, dataWithOutPathFromMongodb, (error) => { + if (error) { + console.error("Algum erro aconteceu", error); + } else { + console.log(fileAddress); + } + }); + + return dataWithOutPathFromMongodb; + } + afterRestructureSaveIntoJSONFile(dataJSONModel); + } catch (parseError) { + console.error("Error parsing JSON:", parseError); + } + }); + console.log(new Date().getSeconds(), "end"); +} +readPath(); From 04bc35a9526c16df08597a0dca706ed4bb42e5a4 Mon Sep 17 00:00:00 2001 From: iamrosada Date: Fri, 1 Dec 2023 16:43:00 +0300 Subject: [PATCH 18/36] feat: added function to separe the string with more then 50 values --- test/resultWithPath.ts | 167 ++++++++++++++++++++++------------------- 1 file changed, 90 insertions(+), 77 deletions(-) diff --git a/test/resultWithPath.ts b/test/resultWithPath.ts index e3a746f0..54c8ee30 100644 --- a/test/resultWithPath.ts +++ b/test/resultWithPath.ts @@ -2,16 +2,12 @@ import fs from "fs"; import path from "path"; import { randomUUID } from "crypto"; -function generateShortUUID(): string { - const fullUUID = randomUUID(); - const shortUUID = fullUUID.replace(/-/g, "").slice(0, 24); - return shortUUID; -} +type NodeValueType = keyof typeof nodeValueTypes; type Result = { path: string; content: { - type: number; + type: NodeValueType; value: Record | string | number; revision: string; revision_nr: number; @@ -20,35 +16,109 @@ type Result = { }; }; +const nodeValueTypes = { + EMPTY: 0, + OBJECT: 1, + ARRAY: 2, + NUMBER: 3, + BOOLEAN: 4, + STRING: 5, + DATETIME: 6, + BIGINT: 7, + BINARY: 8, + REFERENCE: 9, +} as const; + +function generateShortUUID(): string { + const fullUUID = randomUUID(); + const shortUUID = fullUUID.replace(/-/g, "").slice(0, 24); + return shortUUID; +} + +function getType(value: unknown): NodeValueType { + if (Array.isArray(value)) { + return "ARRAY"; + } else if (value && typeof value === "object") { + return "OBJECT"; + } else if (typeof value === "number") { + return "NUMBER"; + } else if (typeof value === "boolean") { + return "BOOLEAN"; + } else if (typeof value === "string") { + return "STRING"; + } else if (typeof value === "bigint") { + return "BIGINT"; + } else if (typeof value === "object" && (value as any).type === 6) { + return "DATETIME"; + } else { + return "EMPTY"; + } +} + function transform(json: Record, prefix: string = ""): Result[] { const results: Result[] = []; const nonObjectKeys: Record = {}; + const arrayResults: Result[] = []; + let otherObject; for (const key in json) { const currentPath = `${prefix.replace(/^\//, "")}/${key.replace(/\*\*/g, "")}`; const currentValue = json[key]; + const valueType = getType(currentValue); + + if (typeof currentValue === "string" && currentValue.length >= 50) { + arrayResults.push({ + path: currentPath, + content: { + type: valueType, + value: currentValue, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }); + } - if (key === "costs" && Array.isArray(currentValue) && currentValue.length > 0) { - // If "costs" is an array with values, iterate through each element + if (Array.isArray(currentValue) && currentValue.length > 0 && currentValue.length <= 49) { + // Se for um array com valores, itera por cada elemento for (let i = 0; i < currentValue.length; i++) { results.push(...transform(currentValue[i] as Record, `${currentPath}[${i}]`)); } - } else if (typeof currentValue === "object" && currentValue !== null) { - // If not "costs" or is "costs" but not an array with values, proceed as usual - results.push(...transform(currentValue as Record, currentPath)); + // Adiciona um resultado para o array vazio + arrayResults.push({ + path: currentPath, + content: { + type: "ARRAY", + value: {}, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }); + } else if (valueType === "OBJECT") { + results.push(...transform(currentValue as unknown as Record, currentPath)); } else { - // If it's not an object, add to the nonObjectKeys nonObjectKeys[key] = currentValue; + let ob = nonObjectKeys; + otherObject = Object.entries(ob) + .filter(([key, value]) => typeof value !== "string" || value.length < 49) + .reduce((acc, [key, value]) => { + acc[key] = value; + return acc; + }, {} as Record); } } - // Add a single result for non-object keys + // Adiciona um único resultado para chaves não objeto + if (Object.keys(nonObjectKeys).length > 0) { const nonObjectResult: Result = { path: `${prefix.replace(/^\//, "")}`, content: { - type: 1, - value: nonObjectKeys as any, + type: getType(nonObjectKeys), + value: otherObject as any, revision: generateShortUUID(), revision_nr: 1, created: Date.now(), @@ -60,11 +130,12 @@ function transform(json: Record, prefix: string = ""): Result[] } } + // Se não há chaves não objeto, adiciona um resultado com objeto vazio if (Object.keys(nonObjectKeys).length === 0) { const nonObjectResult: Result = { path: `${prefix.replace(/^\//, "")}`, content: { - type: 1, + type: getType({}), value: {} as any, revision: generateShortUUID(), revision_nr: 1, @@ -77,70 +148,12 @@ function transform(json: Record, prefix: string = ""): Result[] } } + // Adiciona resultados para arrays + results.push(...arrayResults); + return results; } -// function transform(json: Record, prefix: string = ""): Result[] { -// const results: Result[] = []; -// const nonObjectKeys: Record = {}; - -// for (const key in json) { -// const currentPath = `${prefix.replace(/^\//, "")}/${key.replace(/\*\*/g, "")}`; -// const currentValue = json[key]; - -// if (key === "costs" && Array.isArray(currentValue) && currentValue.length > 0) { -// // If "costs" is an array with values, add [0] to the path -// results.push(...transform(currentValue[0] as Record, `${currentPath}[0]`)); -// console.log("entrou aqui", currentValue); -// } else if (key === "costs" && Array.isArray(currentValue) && currentValue.length === 0) { -// results.push(...transform(currentValue as unknown as Record, `${currentPath}`)); -// } else if (typeof currentValue === "object" && currentValue !== null) { -// // If not "costs" or is "costs" but not an array with values, proceed as usual -// results.push(...transform(currentValue as Record, currentPath)); -// } else { -// // If it's not an object, add to the nonObjectKeys -// nonObjectKeys[key] = currentValue; -// } -// } - -// // Add a single result for non-object keys -// if (Object.keys(nonObjectKeys).length > 0) { -// const nonObjectResult: Result = { -// path: `${prefix.replace(/^\//, "")}`, -// content: { -// type: 1, -// value: nonObjectKeys as any, -// revision: generateShortUUID(), -// revision_nr: 1, -// created: Date.now(), -// modified: Date.now(), -// }, -// }; -// if (nonObjectResult.path) { -// results.push(nonObjectResult); -// } -// } - -// if (Object.keys(nonObjectKeys).length === 0) { -// const nonObjectResult: Result = { -// path: `${prefix.replace(/^\//, "")}`, -// content: { -// type: 1, -// value: {} as any, -// revision: generateShortUUID(), -// revision_nr: 1, -// created: Date.now(), -// modified: Date.now(), -// }, -// }; -// if (nonObjectResult.path) { -// results.push(nonObjectResult); -// } -// } - -// return results; -// } - function readPath() { const fileName = "__movement_wallet__.json"; From e313b5e40403fd9efaa3fae641f731cbf989e71b Mon Sep 17 00:00:00 2001 From: Pedro Henrique Feitosa <50965091+pedrofeitosa97@users.noreply.github.com> Date: Fri, 1 Dec 2023 16:37:54 -0300 Subject: [PATCH 19/36] Feat: Added function to filter keys from object --- test/outputResultWithPathJSON.json | 98692 +++++++++++++++++++-------- test/resultWithPath.ts | 62 +- 2 files changed, 69553 insertions(+), 29201 deletions(-) diff --git a/test/outputResultWithPathJSON.json b/test/outputResultWithPathJSON.json index 9159b616..e14af2e9 100644 --- a/test/outputResultWithPathJSON.json +++ b/test/outputResultWithPathJSON.json @@ -2,76 +2,124 @@ { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "2528.00700001", "symbol": "BRL", - "value": 494.23 + "value": 494.23, + "date_created": { + "type": 6, + "value": 1701459383461 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383461 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383461 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "40f50f66270348caace78b58", "revision_nr": 1, - "created": 1700748395446, - "modified": 1700748395446 + "created": 1701459383461, + "modified": 1701459383461 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "1499269.00000000", "symbol": "IVIP", - "value": 158.48 + "value": 158.48, + "date_created": { + "type": 6, + "value": 1701459383461 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383461 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383461 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ad67733086ef4d9d822b67fb", "revision_nr": 1, - "created": 1700748395446, - "modified": 1700748395446 + "created": 1701459383461, + "modified": 1701459383461 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d251c80dc2e74af89927bf53", "revision_nr": 1, - "created": 1700748395446, - "modified": 1700748395446 + "created": 1701459383461, + "modified": 1701459383461 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/barcode", "content": { - "type": 1, + "type": "OBJECT", "value": { - "content": "23796927400000606493380261019404283200633330" + "content": "23796927400000606493380261019404283200633330", + "date_created": { + "type": 6, + "value": 1701459383461 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383461 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383461 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4bfd0085dc8f49b784f5aa44", "revision_nr": 1, - "created": 1700748395446, - "modified": 1700748395446 + "created": 1701459383461, + "modified": 1701459383461 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", - "amount": 3.49 + "amount": 3.49, + "date_created": { + "type": 6, + "value": 1701459383461 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383461 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383461 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "10a2897eecac419592d60220", "revision_nr": 1, - "created": 1700748395446, - "modified": 1700748395446 + "created": 1701459383461, + "modified": 1701459383461 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": "10194042832", @@ -82,18 +130,51 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "bradesco", - "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1311772470/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772470&payment_method_reference_id=10194042832&hash=af674271-1e58-4fd7-be5a-99a2285e1e5a" + "date_created": { + "type": 6, + "value": 1701459383461 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383461 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383461 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c22fcc86504e4a49be740f72", "revision_nr": 1, - "created": 1700748395450, - "modified": 1700748395450 + "created": 1701459383461, + "modified": 1701459383461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/sandbox/payments/1311772470/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772470&payment_method_reference_id=10194042832&hash=af674271-1e58-4fd7-be5a-99a2285e1e5a", + "revision": "59652040f1fe4c4fa7f573fb", + "revision_nr": 1, + "created": 1701459383461, + "modified": 1701459383461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "f577757977444982a4ca1b8d", + "revision_nr": 1, + "created": 1701459383461, + "modified": 1701459383461 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -101,55 +182,98 @@ "original_amount": 603, "total_amount": 606.49, "id": 1311772470, - "date_created": "2023-02-23T03:44:23.122-04:00", - "date_last_updated": "2023-02-23T03:44:23.122-04:00", - "date_of_expiration": "2023-02-27T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1701459383461 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383461 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383461 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL", - "history_id": "1677138262468", - "description": "Deposito de um valor R$ 603,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49" + "history_id": "1677138262468" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "24be2f48036d4251b95f8767", + "revision_nr": 1, + "created": 1701459383461, + "modified": 1701459383461 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 603,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", + "revision": "4a67b3e01dc74552922b7154", "revision_nr": 1, - "created": 1700748395450, - "modified": 1700748395450 + "created": 1701459383461, + "modified": 1701459383461 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/barcode", "content": { - "type": 1, + "type": "OBJECT", "value": { - "content": "23799927400000595493380261019404380900633330" + "content": "23799927400000595493380261019404380900633330", + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9be4f262c9a9479ba7346149", "revision_nr": 1, - "created": 1700748395450, - "modified": 1700748395450 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", - "amount": 3.49 + "amount": 3.49, + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1a3bd0f7e1b04b6a964d555d", "revision_nr": 1, - "created": 1700748395450, - "modified": 1700748395450 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": "10194043809", @@ -160,18 +284,51 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "bradesco", - "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1311772488/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772488&payment_method_reference_id=10194043809&hash=73ef0e48-e863-4567-bdcb-8711a40d76b2" + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "993234371c43483dbdf335e6", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/sandbox/payments/1311772488/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772488&payment_method_reference_id=10194043809&hash=73ef0e48-e863-4567-bdcb-8711a40d76b2", + "revision": "715979efe78142099e02c550", "revision_nr": 1, - "created": 1700748395450, - "modified": 1700748395450 + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "811cc01a79bf44b5abeb1836", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -179,97 +336,193 @@ "original_amount": 592, "total_amount": 595.49, "id": 1311772488, - "date_created": "2023-02-23T03:50:56.477-04:00", - "date_last_updated": "2023-02-23T03:50:56.477-04:00", - "date_of_expiration": "2023-02-27T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL", - "history_id": "1677138655788", - "description": "Deposito de um valor R$ 592,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49" + "history_id": "1677138655788" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c6b9efa8c5c54fdbb68d081f", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 592,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", + "revision": "273ed08210b8496e80f54d05", "revision_nr": 1, - "created": 1700748395450, - "modified": 1700748395450 + "created": 1701459383461, + "modified": 1701459383461 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fabafd157b42434195c51e04", "revision_nr": 1, - "created": 1700748395450, - "modified": 1700748395450 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "zBCfpF dcGeyDOq lplNs" + "account_holder_name": "zBCfpF dcGeyDOq lplNs", + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6a0386f1d76443478f4d3a73", "revision_nr": 1, - "created": 1700748395450, - "modified": 1700748395450 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ee201c5ca37243d089cc6918", "revision_nr": 1, - "created": 1700748395450, - "modified": 1700748395450 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 4.95 + "amount": 4.95, + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b267d4c4c1dd49b792bcbc77", "revision_nr": 1, - "created": 1700748395450, - "modified": 1700748395450 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 504.95, "overpaid_amount": 0, "installment_amount": 0, - "qr_code": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406504.955802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter1312722165630407FD", - "ticket_url": "https://www.mercadopago.com.br/sandbox/payments/1312722165/ticket?caller_id=1310149122&hash=db7e8cb4-20ed-4664-aa3c-fa50b3f2d6e8", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dQY7kNgwFUN3A97+lb+Agi8zY4qeqkgyCjPxq0ehu29Jz7QhS5Lh+o885aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXbMn+PP/x0/Lhw/7vvrwp/P3y78XOX+2znGc8fxc9H7Ao8LE4OWlpaWlpaWlpaWlvYl2mnbn4s8ANN9d0V6q2nb826cLty/h6SipaWlpaWlpaWlpaV9gXYKIHN02ER9047liRqBtvtmBi0tLS0tLS0tLS0t7Uu1Ics25++mz6d0Xo1Kyw9aWlpaWlpaWlpaWlraEAlO/7vn6prPnXeWMHRa4FMwS0tLS0tLS0tLS0tL+wJtwi9qMq+QpjtK2WZ5qyMcwDuWxZ+0tLS0tLS0tLS0tLSv0LZdSv7bH/+2pwotLS0tLS0tLS0tLe1vqs2f81lIeZaeI/mo25UbTKbeJPcfnyy0tLS0tLS0tLS0tLR7a5tjbevDbDkCnV5oPFN8R/4y2vejpaWlpaWlpaWlpaV9hTb1F8ld+Ef5szQjaUoq7xulw3GpWPOipaWlpaWlpaWlpaV9ibYEhnWo2lQgOe29ePYM6bwrD9luT9fR0tLS0tLS0tLS0tLurk2bpXNx7adN8U15vil5OBlLAvCipaWlpaWlpaWlpaV9jbaumZJ9ZQp2msp2lsb/Ye+xrLD81FOFlpaWlpaWlpaWlpZ2P2065XaU5Fx7Gi49kfN8o0sFnuFbumhpaWlpaWlpaWlpaV+jPT6tubil7jM1N0lZu9RMsgSzBy0tLS0tLS0tLS0t7Wu0NZ3XduFPQWWeeD3Kn+U10m4jtpqkpaWlpaWlpaWlpaXdWZvSdCkwTJ3578+eZbM8FqDpNzlZaGlpaWlpaWlpaWlpX6bN09FS/u7MOb3y9ke5uf0KpndeVl3S0tLS0tLS0tLS0tJuqi1ptWaI9RQdLppEHiEgrWfq0hf0dcxLS0tLS0tLS0tLS0u7mzYHhmmlx3Ipp9fGiWWjM2T8TlpaWlpaWlpaWlpa2hdqp+aPI/+WaiMnQGo3kjpK5rEAX9aI0tLS0tLS0tLS0tLSbqQtgeGj50hJyR0hvJwyfmWzUbqepBizHbdNS0tLS0tLS0tLS0u7u/ZYpvhSV5EUcrah5JGPun0Rn9LS0tLS0tLS0tLS0r5Hm0+lHTlX1xZStqOw8xG7Ky/1OYqkpaWlpaWlpaWlpaXdSpvrL5uyyHSOLeXq8ty1qepy5MReiGNpaWlpaWlpaWlpaWm3164XTiFnexBukeKrlZiL16WlpaWlpaWlpaWlpX2fNrlbYyrHvC9Vo8gSqVZy/qpoaWlpaWlpaWlpaWl315Ym+nUK9tFVTp5d3Fl7nZSrV5iWXVOLtLS0tLS0tLS0tLS0u2vzEOsRyieP/GrpSFzp5d/MyJ4C13SVlpaWlpaWlpaWlpZ2f+0oLfsXFZFpYPUo8V9bZpneOQ3U7rJ7tLS0tLS0tLS0tLS0+2nzwOrpXNy5GHFdjE3VZTk6t4o7P+QiaWlpaWlpaWlpaWlpt9JeeUL1p6b8q+nW5Thd09ekxJPjb/RUoaWlpaWlpaWlpaWl3UWbKidHmLvW1GSmksopTkypu3U55jcxLy0tLS0tLS0tLS0t7Uba8ttVyixLsq/J33Wd+furqUXKMoqkpaWlpaWlpaWlpaXdStsOQbvHhFNHyatk8iZ3KrMsTxyh9HI8T83R0tLS0tLS0tLS0tK+QJsUOeo7+/RbvHkq6pxyeuXmdkoALS0tLS0tLS0tLS3tC7Rl4vVRXqPk4K5FW5JplfI9fNfun5aWlpaWlpaWlpaW9iXaqzu4dpVHU+VkygKW0PQMj6W+lDnnSEtLS0tLS0tLS0tLu7N2WjNHkRWQ84FpbNr5VYVlO4uNlpaWlpaWlpaWlpZ2d20bRZY2kM3s62mL+31Xzt/lqstHtElLS0tLS0tLS0tLS/sm7Zll6ZBaORw3wkG46eoR0nln19KkTm+jpaWlpaWlpaWlpaXdXVvuOEO3xyNUSY7liOv0Vov83Zji0+eL09LS0tLS0tLS0tLS7qxN7nSY7dM+TWQZeo6MnCMcoU8KLS0tLS0tLS0tLS3tC7S5IvIqW5Szclf5reQIR6nEzK/R9jChpaWlpaWlpaWlpaV9gTZPrT5LcLfoQ1ILOMu5uLOUcpZw9QwlmrS0tLS0tLS0tLS0tK/QXiH91tRftquHLebQdHq/dhZb+B8tLS0tLS0tLS0tLe322qnm8f7olRvwT6HkPQKt75fXezyRelDS0tLS0tLS0tLS0tK+QrvIra06O5aYMF04ywG3FEpOGcTPNaK0tLS0tLS0tLS0tLRbaVM4OG0xBZppslpeYHRdSo4wKLuJVGlpaWlpaWlpaWlpaV+ibeol2xHXKZ23OFiXcn9fFGHS0tLS0tLS0tLS0tK+RztCEm+UtiQ5/jvKzLaSzrsyJceOpbckLS0tLS0tLS0tLS3tztoUMaZh1xMvB5/JWDcqzUjOUqfZRZG0tLS0tLS0tLS0tLTbaseTlxqKtA39z9F8ju7mo3Sj/LLqkpaWlpaWlpaWlpaWdj9t+qTYcb1w7ihZe/6nTij5xN1FS0tLS0tLS0tLS0v7Em0O/Y6culs0k2zGXi+iyFWJ5ueYl5aWlpaWlpaWlpaWdh9tivVSQ5F6c+rCPzUomRZt8V9HkbS0tLS0tLS0tLS0tFtqPwWQj8LMdFaujUVzGNo0opwstLS0tLS0tLS0tLS0b9ee4SBc8y6pOnPqOZLx1z/I7tHS0tLS0tLS0tLS0r5AW/9Myb42z1dCydrSJM3c7r4RWlpaWlpaWlpaWlra7bUL/Hgea0s7HlmbajKnVyvNJHPISUtLS0tLS0tLS0tLu7e2Fj7mCC/Ff+f3wWeKNu//mzpU0tLS0tLS0tLS0tLSvkX7///Q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v4y7R8J/gb3YnjEPQAAAABJRU5ErkJggg==" + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "50726919bdc54585ac3939f5", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406504.955802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter1312722165630407FD", + "revision": "a5b507b509004b7bb3772841", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/sandbox/payments/1312722165/ticket?caller_id=1310149122&hash=db7e8cb4-20ed-4664-aa3c-fa50b3f2d6e8", + "revision": "feb8c7febc9c4c7eb51a4be0", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dQY7kNgwFUN3A97+lb+Agi8zY4qeqkgyCjPxq0ehu29Jz7QhS5Lh+o885aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXbMn+PP/x0/Lhw/7vvrwp/P3y78XOX+2znGc8fxc9H7Ao8LE4OWlpaWlpaWlpaWlvYl2mnbn4s8ANN9d0V6q2nb826cLty/h6SipaWlpaWlpaWlpaV9gXYKIHN02ER9047liRqBtvtmBi0tLS0tLS0tLS0t7Uu1Ics25++mz6d0Xo1Kyw9aWlpaWlpaWlpaWlraEAlO/7vn6prPnXeWMHRa4FMwS0tLS0tLS0tLS0tL+wJtwi9qMq+QpjtK2WZ5qyMcwDuWxZ+0tLS0tLS0tLS0tLSv0LZdSv7bH/+2pwotLS0tLS0tLS0tLe1vqs2f81lIeZaeI/mo25UbTKbeJPcfnyy0tLS0tLS0tLS0tLR7a5tjbevDbDkCnV5oPFN8R/4y2vejpaWlpaWlpaWlpaV9hTb1F8ld+Ef5szQjaUoq7xulw3GpWPOipaWlpaWlpaWlpaV9ibYEhnWo2lQgOe29ePYM6bwrD9luT9fR0tLS0tLS0tLS0tLurk2bpXNx7adN8U15vil5OBlLAvCipaWlpaWlpaWlpaV9jbaumZJ9ZQp2msp2lsb/Ye+xrLD81FOFlpaWlpaWlpaWlpZ2P2065XaU5Fx7Gi49kfN8o0sFnuFbumhpaWlpaWlpaWlpaV+jPT6tubil7jM1N0lZu9RMsgSzBy0tLS0tLS0tLS0t7Wu0NZ3XduFPQWWeeD3Kn+U10m4jtpqkpaWlpaWlpaWlpaXdWZvSdCkwTJ3578+eZbM8FqDpNzlZaGlpaWlpaWlpaWlpX6bN09FS/u7MOb3y9ke5uf0KpndeVl3S0tLS0tLS0tLS0tJuqi1ptWaI9RQdLppEHiEgrWfq0hf0dcxLS0tLS0tLS0tLS0u7mzYHhmmlx3Ipp9fGiWWjM2T8TlpaWlpaWlpaWlpa2hdqp+aPI/+WaiMnQGo3kjpK5rEAX9aI0tLS0tLS0tLS0tLSbqQtgeGj50hJyR0hvJwyfmWzUbqepBizHbdNS0tLS0tLS0tLS0u7u/ZYpvhSV5EUcrah5JGPun0Rn9LS0tLS0tLS0tLS0r5Hm0+lHTlX1xZStqOw8xG7Ky/1OYqkpaWlpaWlpaWlpaXdSpvrL5uyyHSOLeXq8ty1qepy5MReiGNpaWlpaWlpaWlpaWm3164XTiFnexBukeKrlZiL16WlpaWlpaWlpaWlpX2fNrlbYyrHvC9Vo8gSqVZy/qpoaWlpaWlpaWlpaWl315Ym+nUK9tFVTp5d3Fl7nZSrV5iWXVOLtLS0tLS0tLS0tLS0u2vzEOsRyieP/GrpSFzp5d/MyJ4C13SVlpaWlpaWlpaWlpZ2f+0oLfsXFZFpYPUo8V9bZpneOQ3U7rJ7tLS0tLS0tLS0tLS0+2nzwOrpXNy5GHFdjE3VZTk6t4o7P+QiaWlpaWlpaWlpaWlpt9JeeUL1p6b8q+nW5Thd09ekxJPjb/RUoaWlpaWlpaWlpaWl3UWbKidHmLvW1GSmksopTkypu3U55jcxLy0tLS0tLS0tLS0t7Uba8ttVyixLsq/J33Wd+furqUXKMoqkpaWlpaWlpaWlpaXdStsOQbvHhFNHyatk8iZ3KrMsTxyh9HI8T83R0tLS0tLS0tLS0tK+QJsUOeo7+/RbvHkq6pxyeuXmdkoALS0tLS0tLS0tLS3tC7Rl4vVRXqPk4K5FW5JplfI9fNfun5aWlpaWlpaWlpaW9iXaqzu4dpVHU+VkygKW0PQMj6W+lDnnSEtLS0tLS0tLS0tLu7N2WjNHkRWQ84FpbNr5VYVlO4uNlpaWlpaWlpaWlpZ2d20bRZY2kM3s62mL+31Xzt/lqstHtElLS0tLS0tLS0tLS/sm7Zll6ZBaORw3wkG46eoR0nln19KkTm+jpaWlpaWlpaWlpaXdXVvuOEO3xyNUSY7liOv0Vov83Zji0+eL09LS0tLS0tLS0tLS7qxN7nSY7dM+TWQZeo6MnCMcoU8KLS0tLS0tLS0tLS3tC7S5IvIqW5Szclf5reQIR6nEzK/R9jChpaWlpaWlpaWlpaV9gTZPrT5LcLfoQ1ILOMu5uLOUcpZw9QwlmrS0tLS0tLS0tLS0tK/QXiH91tRftquHLebQdHq/dhZb+B8tLS0tLS0tLS0tLe322qnm8f7olRvwT6HkPQKt75fXezyRelDS0tLS0tLS0tLS0tK+QrvIra06O5aYMF04ywG3FEpOGcTPNaK0tLS0tLS0tLS0tLRbaVM4OG0xBZppslpeYHRdSo4wKLuJVGlpaWlpaWlpaWlpaV+ibeol2xHXKZ23OFiXcn9fFGHS0tLS0tLS0tLS0tK+RztCEm+UtiQ5/jvKzLaSzrsyJceOpbckLS0tLS0tLS0tLS3tztoUMaZh1xMvB5/JWDcqzUjOUqfZRZG0tLS0tLS0tLS0tLTbaseTlxqKtA39z9F8ju7mo3Sj/LLqkpaWlpaWlpaWlpaWdj9t+qTYcb1w7ihZe/6nTij5xN1FS0tLS0tLS0tLS0v7Em0O/Y6culs0k2zGXi+iyFWJ5ueYl5aWlpaWlpaWlpaWdh9tivVSQ5F6c+rCPzUomRZt8V9HkbS0tLS0tLS0tLS0tFtqPwWQj8LMdFaujUVzGNo0opwstLS0tLS0tLS0tLS0b9ee4SBc8y6pOnPqOZLx1z/I7tHS0tLS0tLS0tLS0r5AW/9Myb42z1dCydrSJM3c7r4RWlpaWlpaWlpaWlra7bUL/Hgea0s7HlmbajKnVyvNJHPISUtLS0tLS0tLS0tLu7e2Fj7mCC/Ff+f3wWeKNu//mzpU0tLS0tLS0tLS0tLSvkX7///Q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v4y7R8J/gb3YnjEPQAAAABJRU5ErkJggg==", + "revision": "c91e94f83e3145829a49878a", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "e13bf983642c4ab0ba966cb5", "revision_nr": 1, - "created": 1700748395450, - "modified": 1700748395450 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -277,97 +530,193 @@ "original_amount": 500, "total_amount": 504.95, "id": 1312722165, - "date_created": "2023-02-23T04:06:05.681-04:00", - "date_last_updated": "2023-02-23T04:06:05.681-04:00", - "date_of_expiration": "2023-02-24T04:06:05.440-04:00", + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL", - "history_id": "1677139564865", - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0005.2314.7298.6693-13" + "history_id": "1677139564865" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "53ccbb861eb14b638c42f19d", "revision_nr": 1, - "created": 1700748395450, - "modified": 1700748395450 + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "9066dfce75f6466e9c5f54a3", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.198 + "amount": 0.198, + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0ebaebf51ed54a24a1ae9774", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9c7ef9846e5b4adda309404d", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "zBCfpF dcGeyDOq lplNs" + "account_holder_name": "zBCfpF dcGeyDOq lplNs", + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b0422199ccc14fc296a96c1a", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b4afb98cd0ec4b6fb973d21c", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0, - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dW27kNhAFUO5A+9+ldqAgQGZGYl1S7ckgiMmjD8NttcRD/xXqwXZ9o+tstLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLR/Xtv66/j7b8fPG8fP7/24cX/s8fHn29s/P67w5R93f328r/Zg0NLS0tLS0tLS0tLSbqI97iHb/SUPQLfYfdm0q7xsS/ju/1BUtLS0tLS0tLS0tLS0G2i7ALKL/7rny4bOZ/B5PIPKX295hJdp3cygpaWlpaWlpaWlpaXdVPsrDixB4HEHFEoXGJ7hBS3sj5aWlpaWlpaWlpaWlrYPAs9nJebjt1yx2UoNZcoHpn8GLS0tLS0tLS0tLS3t3tqELwWX6eOgTa7ri0vbTcWav1cjSktLS0tLS0tLS0tL+921wykl/+2PfztThZaWlpaWlpaWlpaW9ptq83XeH0zFlfMpk+m3bjZJmjI5stDS0tLS0tLS0tLS0q6tPUsEV3rW6o151WXe7lGWvO/qHCX7aGlpaWlpaWlpaWlp19Z2lDTjcRg25sBwWJ1Zw9A8TLK1NooiaWlpaWlpaWlpaWlp19PmlNyZZ/mXprc0UbILTRPqmJyMPZ1SQktLS0tLS0tLS0tLu542fSN9DEm3Nlx7fqVTtcsLaGlpaWlpaWlpaWlpd9S20vQ2nB45Kam88p675GFXdTmZUElLS0tLS0tLS0tLS7u2NiXnym/1nLS3pOCXmuNqtvC96pKWlpaWlpaWlpaWlnYdbRcxpla369kX192YFVcOz2dLLXHp9bS0tLS0tLS0tLS0tKtrS07v8VQJDI9yN405SXdLpHqMJlSetLS0tLS0tLS0tLS0O2k/emcNKifjImub3Hx/af4JLS0tLS0tLS0tLS3tZtpUV3nHH9NmtpoF7Io1S6BZt1vuXrS0tLS0tLS0tLS0tDtpu6s0uA2rKWeZwTzpf76rt+mRtLS0tLS0tLS0tLS0a2vToMcr83Jz3Bn6565R11ydUPm1qktaWlpaWlpaWlpaWtpVtFeZG5J627qALw+EHD6W1vhgV7S0tLS0tLS0tLS0tPtou2VTH9tVetaGtZspKk3VmTlvOK26pKWlpaWlpaWlpaWlXU1bjp9uZchIV1eZe+Vqh1yZQVkzefOKTVpaWlpaWlpaWlpa2n204Rv9kdRdg9t9Q0d4Vcudb4lX4ti3KJKWlpaWlpaWlpaWlnYpbZehK9HhIKdXUoHH6FUtjyDpUobTvCEtLS0tLS0tLS0tLe3y2hLDnaFoMgWQLYSDx+QF5fVnmFX5lRpRWlpaWlpaWlpaWlra1bSlSnIWReYmulrFOT8tO9+lpaWlpaWlpaWlpaXdR9s91VVEDgK+ble5L+4Mg0xqrWVZqISctLS0tLS0tLS0tLS0K2vzUWrtGeu1Fp9I8/2HvXLd/6YLTfPoE1paWlpaWlpaWlpa2i20Lcdw8863kufr1j7y/2EeMY6CT1paWlpaWlpaWlpa2pW1RXHkHZSQMw2OPEJM2N7GRZbFj09ykbS0tLS0tLS0tLS0tOtoaxtaTr8NjqnOUWQbnc82G4fSpRFpaWlpaWlpaWlpaWk30Q4qJ/Oh2IPjsXPlZP1KnjI5L9akpaWlpaWlpaWlpaXdQtv91m2jDoQcbu2KVz1jbb7kSxRJS0tLS0tLS0tLS0u7kLbLt5XgbliEeZZuuBxUHmXjKdBMh7nR0tLS0tLS0tLS0tJups3npF35ALVSOdnKMMlyDsAxChbPcsDbexRJS0tLS0tLS0tLS0u7inZY+JgW62K9roWtVE4OdlDWOHMoSUtLS0tLS0tLS0tLu4W2C/i6vxVZnR45aaJr4ZC2Wo7Zvfk95qWlpaWlpaWlpaWlpV1KmyonC6o9z10bJOzejseeHbed/kZLS0tLS0tLS0tLS7uJNlVJ1jxfurrosMyMHCQPJ7HjRzNVaGlpaWlpaWlpaWlpl9KmGsoUDnbZuKy4cjtdkdWQcxqf0tLS0tLS0tLS0tLSbqCtEV5O+6U8X03dDXeVizDPEne+RJG0tLS0tLS0tLS0tLQLaRMqhX4f1GSWDF06B+AMZZb17Ouv1IjS0tLS0tLS0tLS0tJ+b223dq6IPMuM/py/m62dyjG732hpaWlpaWlpaWlpaXfUlhRfC3Mk65Wm/3eyHE/Wj+XQgIOWlpaWlpaWlpaWlnYnbcnQnWEOSVdhWW/MtzachBIqLN+mlNDS0tLS0tLS0tLS0q6mHSbY8hKzrF1J3Q0mnJRA88rnuNHS0tLS0tLS0tLS0u6jLSMkj7e/TcZFDuo0U9ovhbAfV13S0tLS0tLS0tLS0tKuon2sU16XxkqeoentnI6V7FZL7kEnHS0tLS0tLS0tLS0t7era8s6zLFHe1M19rDm9e7KvfpxUXeaKTVpaWlpaWlpaWlpa2pW1d08CpPjvEQSmx8r3BlWXOXYshwHQ0tLS0tLS0tLS0tKurC2FlOeoLPLMvDTkf5j2++B8tg9jXlpaWlpaWlpaWlpa2sW0LRx41g0eSUWTVx5VkvKBJXBNj31YdUlLS0tLS0tLS0tLS7uQNl3DEDEflF03+ZYUvJ7pweGztLS0tLS0tLS0tLS0G2iHgVw6q3r49mHEmA9zS2cD1NCUlpaWlpaWlpaWlpZ2E+2RA8huQ8MQsexguJf2nFdyTXY/jiJpaWlpaWlpaWlpaWmX1KYqyRRA3uPOo8R/k8fSSMph1WWbTSmhpaWlpaWlpaWlpaXdSFujvtCpFmf0lwGT9bHSdvd5do+WlpaWlpaWlpaWlnYPbVo29cWlu3ny5FWeyC1xBy0tLS0tLS0tLS0t7XbaCb5m3roJ/rnqsg7qHxZXFt5FS0tLS0tLS0tLS0u7l7YWPqZmtnsA2XW0XWWuSZ5NMpiEUg54m1Zd0tLS0tLS0tLS0tLSrqb9/1+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+xf7jbt53CJCnQAAAABJRU5ErkJggg==", - "qr_code": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b61520400005303986540520.205802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131177255663042F4F", - "ticket_url": "https://www.mercadopago.com.br/sandbox/payments/1311772556/ticket?caller_id=1310149122&hash=317c7ec8-4131-44a3-a5d4-81d3bd707a5f" + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5fa2569d16bd42d5a8a13905", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dW27kNhAFUO5A+9+ldqAgQGZGYl1S7ckgiMmjD8NttcRD/xXqwXZ9o+tstLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLR/Xtv66/j7b8fPG8fP7/24cX/s8fHn29s/P67w5R93f328r/Zg0NLS0tLS0tLS0tLSbqI97iHb/SUPQLfYfdm0q7xsS/ju/1BUtLS0tLS0tLS0tLS0G2i7ALKL/7rny4bOZ/B5PIPKX295hJdp3cygpaWlpaWlpaWlpaXdVPsrDixB4HEHFEoXGJ7hBS3sj5aWlpaWlpaWlpaWlrYPAs9nJebjt1yx2UoNZcoHpn8GLS0tLS0tLS0tLS3t3tqELwWX6eOgTa7ri0vbTcWav1cjSktLS0tLS0tLS0tL+921wykl/+2PfztThZaWlpaWlpaWlpaW9ptq83XeH0zFlfMpk+m3bjZJmjI5stDS0tLS0tLS0tLS0q6tPUsEV3rW6o151WXe7lGWvO/qHCX7aGlpaWlpaWlpaWlp19Z2lDTjcRg25sBwWJ1Zw9A8TLK1NooiaWlpaWlpaWlpaWlp19PmlNyZZ/mXprc0UbILTRPqmJyMPZ1SQktLS0tLS0tLS0tLu542fSN9DEm3Nlx7fqVTtcsLaGlpaWlpaWlpaWlpd9S20vQ2nB45Kam88p675GFXdTmZUElLS0tLS0tLS0tLS7u2NiXnym/1nLS3pOCXmuNqtvC96pKWlpaWlpaWlpaWlnYdbRcxpla369kX192YFVcOz2dLLXHp9bS0tLS0tLS0tLS0tKtrS07v8VQJDI9yN405SXdLpHqMJlSetLS0tLS0tLS0tLS0O2k/emcNKifjImub3Hx/af4JLS0tLS0tLS0tLS3tZtpUV3nHH9NmtpoF7Io1S6BZt1vuXrS0tLS0tLS0tLS0tDtpu6s0uA2rKWeZwTzpf76rt+mRtLS0tLS0tLS0tLS0a2vToMcr83Jz3Bn6565R11ydUPm1qktaWlpaWlpaWlpaWtpVtFeZG5J627qALw+EHD6W1vhgV7S0tLS0tLS0tLS0tPtou2VTH9tVetaGtZspKk3VmTlvOK26pKWlpaWlpaWlpaWlXU1bjp9uZchIV1eZe+Vqh1yZQVkzefOKTVpaWlpaWlpaWlpa2n204Rv9kdRdg9t9Q0d4Vcudb4lX4ti3KJKWlpaWlpaWlpaWlnYpbZehK9HhIKdXUoHH6FUtjyDpUobTvCEtLS0tLS0tLS0tLe3y2hLDnaFoMgWQLYSDx+QF5fVnmFX5lRpRWlpaWlpaWlpaWlra1bSlSnIWReYmulrFOT8tO9+lpaWlpaWlpaWlpaXdR9s91VVEDgK+ble5L+4Mg0xqrWVZqISctLS0tLS0tLS0tLS0K2vzUWrtGeu1Fp9I8/2HvXLd/6YLTfPoE1paWlpaWlpaWlpa2i20Lcdw8863kufr1j7y/2EeMY6CT1paWlpaWlpaWlpa2pW1RXHkHZSQMw2OPEJM2N7GRZbFj09ykbS0tLS0tLS0tLS0tOtoaxtaTr8NjqnOUWQbnc82G4fSpRFpaWlpaWlpaWlpaWk30Q4qJ/Oh2IPjsXPlZP1KnjI5L9akpaWlpaWlpaWlpaXdQtv91m2jDoQcbu2KVz1jbb7kSxRJS0tLS0tLS0tLS0u7kLbLt5XgbliEeZZuuBxUHmXjKdBMh7nR0tLS0tLS0tLS0tJups3npF35ALVSOdnKMMlyDsAxChbPcsDbexRJS0tLS0tLS0tLS0u7inZY+JgW62K9roWtVE4OdlDWOHMoSUtLS0tLS0tLS0tLu4W2C/i6vxVZnR45aaJr4ZC2Wo7Zvfk95qWlpaWlpaWlpaWlpV1KmyonC6o9z10bJOzejseeHbed/kZLS0tLS0tLS0tLS7uJNlVJ1jxfurrosMyMHCQPJ7HjRzNVaGlpaWlpaWlpaWlpl9KmGsoUDnbZuKy4cjtdkdWQcxqf0tLS0tLS0tLS0tLSbqCtEV5O+6U8X03dDXeVizDPEne+RJG0tLS0tLS0tLS0tLQLaRMqhX4f1GSWDF06B+AMZZb17Ouv1IjS0tLS0tLS0tLS0tJ+b223dq6IPMuM/py/m62dyjG732hpaWlpaWlpaWlpaXfUlhRfC3Mk65Wm/3eyHE/Wj+XQgIOWlpaWlpaWlpaWlnYnbcnQnWEOSVdhWW/MtzachBIqLN+mlNDS0tLS0tLS0tLS0q6mHSbY8hKzrF1J3Q0mnJRA88rnuNHS0tLS0tLS0tLS0u6jLSMkj7e/TcZFDuo0U9ovhbAfV13S0tLS0tLS0tLS0tKuon2sU16XxkqeoentnI6V7FZL7kEnHS0tLS0tLS0tLS0t7era8s6zLFHe1M19rDm9e7KvfpxUXeaKTVpaWlpaWlpaWlpa2pW1d08CpPjvEQSmx8r3BlWXOXYshwHQ0tLS0tLS0tLS0tKurC2FlOeoLPLMvDTkf5j2++B8tg9jXlpaWlpaWlpaWlpa2sW0LRx41g0eSUWTVx5VkvKBJXBNj31YdUlLS0tLS0tLS0tLS7uQNl3DEDEflF03+ZYUvJ7pweGztLS0tLS0tLS0tLS0G2iHgVw6q3r49mHEmA9zS2cD1NCUlpaWlpaWlpaWlpZ2E+2RA8huQ8MQsexguJf2nFdyTXY/jiJpaWlpaWlpaWlpaWmX1KYqyRRA3uPOo8R/k8fSSMph1WWbTSmhpaWlpaWlpaWlpaXdSFujvtCpFmf0lwGT9bHSdvd5do+WlpaWlpaWlpaWlnYPbVo29cWlu3ny5FWeyC1xBy0tLS0tLS0tLS0t7XbaCb5m3roJ/rnqsg7qHxZXFt5FS0tLS0tLS0tLS0u7l7YWPqZmtnsA2XW0XWWuSZ5NMpiEUg54m1Zd0tLS0tLS0tLS0tLSrqb9/1+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+xf7jbt53CJCnQAAAABJRU5ErkJggg==", + "revision": "6a30854cdab24d188070ed9b", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b61520400005303986540520.205802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131177255663042F4F", + "revision": "9aa0f15597c840fa876c3968", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/sandbox/payments/1311772556/ticket?caller_id=1310149122&hash=317c7ec8-4131-44a3-a5d4-81d3bd707a5f", + "revision": "b4c263e7e98548c78cd59cc2", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "147e954affc04a5e9cb97bf7", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -375,55 +724,98 @@ "original_amount": 20, "total_amount": 20.2, "id": 1311772556, - "date_created": "2023-02-23T04:16:53.522-04:00", - "date_last_updated": "2023-02-23T04:16:53.522-04:00", - "date_of_expiration": "2023-02-24T04:16:53.246-04:00", + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL", - "history_id": "1677140212667", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13" + "history_id": "1677140212667" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5138b36057b1404d84c659fa", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "0b58cfed5328498fa944f952", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/barcode", "content": { - "type": 1, + "type": "OBJECT", "value": { - "content": "23791927400000051993380260600338163800633330" + "content": "23791927400000051993380260600338163800633330", + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dea8702e1b604293a6bdb83e", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3.99%", - "amount": 1.9949999999999999 + "amount": 1.9949999999999999, + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9ce5ec96fdcf46a8a489357f", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": "6003381638", @@ -434,18 +826,51 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "10850221", - "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1311772574/ticket?caller_id=1310149122&payment_method_id=pec&payment_id=1311772574&payment_method_reference_id=6003381638&hash=676a5569-4884-42d3-9e67-bfdb72450090" + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a4a15e2f2cc5491c86db3018", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/sandbox/payments/1311772574/ticket?caller_id=1310149122&payment_method_id=pec&payment_id=1311772574&payment_method_reference_id=6003381638&hash=676a5569-4884-42d3-9e67-bfdb72450090", + "revision": "aecabebcdefb47e8b53b964a", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "74c54f1adf264e17b2be3a76", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -453,55 +878,98 @@ "original_amount": 50, "total_amount": 51.99, "id": 1311772574, - "date_created": "2023-02-23T04:31:15.312-04:00", - "date_last_updated": "2023-02-23T04:31:15.312-04:00", - "date_of_expiration": "2023-02-27T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL", - "history_id": "1677141074675", - "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13" + "history_id": "1677141074675" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1f07ee45c7e648e096aa39c1", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "9ef0e7282c6144ba82f23925", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/barcode", "content": { - "type": 1, + "type": "OBJECT", "value": { - "content": "23792927400000075493380261019405215900633330" + "content": "23792927400000075493380261019405215900633330", + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8cffd3ad2750427ca098e250", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", - "amount": 3.49 + "amount": 3.49, + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1ef721ea4169430fb3f2ff87", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": "10194052159", @@ -512,74 +980,150 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "bradesco", - "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1312722387/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1312722387&payment_method_reference_id=10194052159&hash=0fea3a36-6354-4019-aec5-950b140fc21c" + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9ae28187110a432a8fb56a6d", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/sandbox/payments/1312722387/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1312722387&payment_method_reference_id=10194052159&hash=0fea3a36-6354-4019-aec5-950b140fc21c", + "revision": "e528c80a124140f5998229d9", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "e00e4c2a5f6e48c4aa2b57a4", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", "payment_method": "bolbradesco", "total_amount": 75.49, "id": 1312722387, - "date_created": "2023-02-23T05:08:54.435-04:00", - "date_last_updated": "2023-02-23T05:08:54.435-04:00", - "date_of_expiration": "2023-02-27T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL", "original_amount": 72, - "history_id": "1677143332353", - "description": "Deposito de um valor R$ 72,00 para a carteira iVip 0005.2314.7298.6693-13" + "history_id": "1677143332353" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9493b8bf625d4d3e8139b3c4", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 72,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "760b523f7ba74a6fb463962c", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/barcode", "content": { - "type": 1, + "type": "OBJECT", "value": { - "content": "23791927400000803493380261019405351400633330" + "content": "23791927400000803493380261019405351400633330", + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "31e62bd955574d0287f8c7e4", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", - "amount": 3.49 + "amount": 3.49, + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e1d81ddf109a4fdfb5924294", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": "10194053514", @@ -590,18 +1134,51 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "bradesco", - "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1311772850/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772850&payment_method_reference_id=10194053514&hash=7f37a98d-46a5-4410-9837-bd450923e2de" + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9bb9aee680b64cde90a64573", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/sandbox/payments/1311772850/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772850&payment_method_reference_id=10194053514&hash=7f37a98d-46a5-4410-9837-bd450923e2de", + "revision": "9dbf260b754f4972b664ddaa", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "c07345849506460193c7f421", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -609,97 +1186,193 @@ "original_amount": 800, "total_amount": 803.49, "id": 1311772850, - "date_created": "2023-02-23T05:59:23.578-04:00", - "date_last_updated": "2023-02-23T05:59:23.578-04:00", - "date_of_expiration": "2023-02-27T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1701459383462 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383462 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383462 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL", - "history_id": "1677146361537", - "description": "Deposito de um valor R$ 800,00 para a carteira iVip 0005.2314.7298.6693-13" + "history_id": "1677146361537" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bdd2a92eff5a48e185fba705", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383462, + "modified": 1701459383462 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "b30d8d9bef154b1aaa9c6b32", + "revision_nr": 1, + "created": 1701459383462, + "modified": 1701459383462 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "29f6aa6f05d64b14a329100b", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "Paulo Fagner de Oliveira" + "account_holder_name": "Paulo Fagner de Oliveira", + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "abfa8fa3c282445885a43c18", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "86fbd6cb71494fbb8987c2a3", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.198 + "amount": 0.198, + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7083bcb0f1ce4132afc91119", "revision_nr": 1, - "created": 1700748395451, - "modified": 1700748395451 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0, - "ticket_url": "https://www.mercadopago.com.br/payments/55087284163/ticket?caller_id=1310149122&hash=d505f218-1883-4e4e-8be7-431e65cdf030", - "qr_code": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter55087284163630456C0", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dW27kNhAFUO2A+98ld6BgkMlAzbpF2cggyEhHH4bt1uOo/wpVvDzOP+iYBy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS3t79ce6zF+/G/8+uCf335cVU9ZPh1/3/349ZxjecbP/32cfH3aB4OWlpaWlpaWlpaWlvYl2nEt2ZY/r8YKvZ4yPnkfpywvdPXM600zg5aWlpaWlpaWlpaW9gXahXK9YH6WkktNeG7IbaVaysuxYdDS0tLS0tLS0tLS0r5TO0OXrQKKp3ndpTAs7UFaWlpaWlpaWlpaWlraUM1tysGlqBybOvFu9DLdhZaWlpaWlpaWlpaW9n3ajN/NWrbV5rV2nJ9v0HxBd8OftLS0tLS0tLS0tLS0T9fuZP/hj3+bqUJLS0tLS0tLS0tLS/uHavMxSyMuhYws6SPLOGbrWW56b6GlpaWlpaWlpaWlpX22dpYKrtxp5v7dVdscJcZ/WU5X8/233T1aWlpaWlpaWlpaWtqHaq+/LSvVZhcSuVSbZ4klWd55uV877RkeSUtLS0tLS0tLS0tL+2RtucnxCTg+e3pHADTQJY2ydPxSj/AI70JLS0tLS0tLS0tLS/sCbYkROUL6yNGVg0eoLEferq3UiU22JC0tLS0tLS0tLS0t7cu0eV/qNFI58pxmqRjbVW4zr5UrXxUtLS0tLS0tLS0tLe1btIW8iyXJaf2z1H8Z0NaJZ1dj0tLS0tLS0tLS0tLSvkI7w01SEVgTJZdUkTRmmffSbr6CvFaOlpaWlpaWlpaWlpb22dpl4DJNYpbCcG7GMcsL1ePqmZvKkpaWlpaWlpaWlpaW9iXakYvAtEyuZEvW6vB67Qhfxixzmnnp3KClpaWlpaWlpaWlpX2N9sg5+0tzbgGkXJN2W4D84u3b36f609LS0tLS0tLS0tLSPkibhiH3lWAOLakpJeXa2hTcfDpoaWlpaWlpaWlpaWlfo505aSQFPS43Tp6lz5c6iPs4lO3UJS0tLS0tLS0tLS0t7WO1bZk3Sjcuhfen3t+SBdmuritF6ritImlpaWlpaWlpaWlpaR+kLVGOZ9fOG6XubBfHlfvVkvOu0DxpaWlpaWlpaWlpaWlfoz1KJZgS/EspeeQlbItsKSXLF3R0tx+0tLS0tLS0tLS0tLQv0YYPY4uvLQJzvkjaGXvXLdwGmdDS0tLS0tLS0tLS0r5AWxfClaMlN+OY+dlnecn9ECYtLS0tLS0tLS0tLe3TtUtmZLnTcs9js2F1WQ13my3Z5prQ0tLS0tLS0tLS0tK+R5sDHJt68voGcztNmWY3P85rZze3q+FoaWlpaWlpaWlpaWmfqD1LW61NJGnDSNpqs/Da2vHbe8PR0tLS0tLS0tLS0tI+Q7s8cTlyKH9tBd6NaM6u2XeG5w5aWlpaWlpaWlpaWto3ab+wIG3pt7W85eTvV4yl2UdLS0tLS0tLS0tLS/sW7UIuq9fO/L9rFZnKxmMzdZlLzu/0ImlpaWlpaWlpaWlpaZ+hTR21Am0rxjqnWYYw6zhmu/wth6DQ0tLS0tLS0tLS0tK+QFtQI3f8yrP3k5N16VyZ4pz5MlpaWlpaWlpaWlpa2vdo27nKtsbM6f/Lp81dSm5/jvGnpaWlpaWlpaWlpaV9kXbpqKW+XOrBlXbe0rqrm2LnhmLTMqSlpaWlpaWlpaWlpX2PdsntL8XdzO28zZbZM3QBF1TztK4qpaWlpaWlpaWlpaWlfbJ2mXQso5IjLHBb4vmbYc3rmGWb6r9swT3i10JLS0tLS0tLS0tLS/ts7VGqyLJr9VnuXk5O/cAj9/TS1GV+NVpaWlpaWlpaWlpa2ldpU0ZILhG/usptaQC2+2anzQBoaWlpaWlpaWlpaWlfpj1LvGOuE0dY0Za3SOtl7c7YX64iaWlpaWlpaWlpaWlpH6UdeZBynzRSZjLH198lT13WK2hpaWlpaWlpaWlpaV+hzZR5twPbUhNuFsKdYe/rWnJuvhZaWlpaWlpaWlpaWtoXaHMof02ALKvcaubIdllb7PilBXjbrEtaWlpaWlpaWlpaWtrnadto/9KSa7t2M6ypO8KfR958rR30pKWlpaWlpaWlpaWlfbo2FYupMCwF31mMeSbzCCvfmqd9OdWflpaWlpaWlpaWlpb2Udr0nKPbFPsMbzBD+shRYiCXtl+qVO+nLmlpaWlpaWlpaWlpaZ+oXarIXbRIKgJT2biZxFzOS6Xpd7p7tLS0tLS0tLS0tLS0f7y2DD6mxx6liZemKUsYySy7st1NXebKkpaWlpaWlpaWlpaW9vHa3LA7SuZIUdQaM62Gy6c0G2rfpJTQ0tLS0tLS0tLS0tI+Tbvwypjl7R5ry5hlvvPI7cH2e7iZuqSlpaWlpaWlpaWlpX2QdnlYmoNMvb99ZH/aULudukzn3fciaWlpaWlpaWlpaWlpn6JNq9dKx2+ELuDIOZKpb7gY2z23v5jqT0tLS0tLS0tLS0tL+0RtjSpJbbq2qCxl6PKms1sDt2yKPUKcJS0tLS0tLS0tLS0t7bO16UgjlblYnLkVuFyRCsjUIyx5JbS0tLS0tLS0tLS0tC/QluTHFB7S/jnK++XtrOdd+n/eMpuWlpaWlpaWlpaWlvYV2hEKyCZupHTjUkhkbdOV7dWaXbC/UkXS0tLS0tLS0tLS0tI+UltKuo96MidFtrutfVwWnl0ftL+WlpaWlpaWlpaWlpb2jdrRzVrOLkcyLadLxeIMG2ofZZ0dLS0tLS0tLS0tLS0tbb8NW0kfqfgUaVJ4MzT7zttdsGlpaWlpaWlpaWlpaR+pzfhaRS53b1+tnHfkD5YMk2VOk5aWlpaWlpaWlpaW9iXatKxtlmT+pWxMc5ppJjPtwFbuN8NiO1paWlpaWlpaWlpa2rdo//8HLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLe1v0/4FnajhovaFiOwAAAAASUVORK5CYII=" + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3fc1afd7a9c04c239cd0c7c8", "revision_nr": 1, - "created": 1700748395452, - "modified": 1700748395452 + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/payments/55087284163/ticket?caller_id=1310149122&hash=d505f218-1883-4e4e-8be7-431e65cdf030", + "revision": "d1a57dac72f84adda31815fa", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter55087284163630456C0", + "revision": "81bc9f024ad6415f854b8211", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dW27kNhAFUO2A+98ld6BgkMlAzbpF2cggyEhHH4bt1uOo/wpVvDzOP+iYBy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS3t79ce6zF+/G/8+uCf335cVU9ZPh1/3/349ZxjecbP/32cfH3aB4OWlpaWlpaWlpaWlvYl2nEt2ZY/r8YKvZ4yPnkfpywvdPXM600zg5aWlpaWlpaWlpaW9gXahXK9YH6WkktNeG7IbaVaysuxYdDS0tLS0tLS0tLS0r5TO0OXrQKKp3ndpTAs7UFaWlpaWlpaWlpaWlraUM1tysGlqBybOvFu9DLdhZaWlpaWlpaWlpaW9n3ajN/NWrbV5rV2nJ9v0HxBd8OftLS0tLS0tLS0tLS0T9fuZP/hj3+bqUJLS0tLS0tLS0tLS/uHavMxSyMuhYws6SPLOGbrWW56b6GlpaWlpaWlpaWlpX22dpYKrtxp5v7dVdscJcZ/WU5X8/233T1aWlpaWlpaWlpaWtqHaq+/LSvVZhcSuVSbZ4klWd55uV877RkeSUtLS0tLS0tLS0tL+2RtucnxCTg+e3pHADTQJY2ydPxSj/AI70JLS0tLS0tLS0tLS/sCbYkROUL6yNGVg0eoLEferq3UiU22JC0tLS0tLS0tLS0t7cu0eV/qNFI58pxmqRjbVW4zr5UrXxUtLS0tLS0tLS0tLe1btIW8iyXJaf2z1H8Z0NaJZ1dj0tLS0tLS0tLS0tLSvkI7w01SEVgTJZdUkTRmmffSbr6CvFaOlpaWlpaWlpaWlpb22dpl4DJNYpbCcG7GMcsL1ePqmZvKkpaWlpaWlpaWlpaW9iXakYvAtEyuZEvW6vB67Qhfxixzmnnp3KClpaWlpaWlpaWlpX2N9sg5+0tzbgGkXJN2W4D84u3b36f609LS0tLS0tLS0tLSPkibhiH3lWAOLakpJeXa2hTcfDpoaWlpaWlpaWlpaWlfo505aSQFPS43Tp6lz5c6iPs4lO3UJS0tLS0tLS0tLS0t7WO1bZk3Sjcuhfen3t+SBdmuritF6ritImlpaWlpaWlpaWlpaR+kLVGOZ9fOG6XubBfHlfvVkvOu0DxpaWlpaWlpaWlpaWlfoz1KJZgS/EspeeQlbItsKSXLF3R0tx+0tLS0tLS0tLS0tLQv0YYPY4uvLQJzvkjaGXvXLdwGmdDS0tLS0tLS0tLS0r5AWxfClaMlN+OY+dlnecn9ECYtLS0tLS0tLS0tLe3TtUtmZLnTcs9js2F1WQ13my3Z5prQ0tLS0tLS0tLS0tK+R5sDHJt68voGcztNmWY3P85rZze3q+FoaWlpaWlpaWlpaWmfqD1LW61NJGnDSNpqs/Da2vHbe8PR0tLS0tLS0tLS0tI+Q7s8cTlyKH9tBd6NaM6u2XeG5w5aWlpaWlpaWlpaWto3ab+wIG3pt7W85eTvV4yl2UdLS0tLS0tLS0tLS/sW7UIuq9fO/L9rFZnKxmMzdZlLzu/0ImlpaWlpaWlpaWlpaZ+hTR21Am0rxjqnWYYw6zhmu/wth6DQ0tLS0tLS0tLS0tK+QFtQI3f8yrP3k5N16VyZ4pz5MlpaWlpaWlpaWlpa2vdo27nKtsbM6f/Lp81dSm5/jvGnpaWlpaWlpaWlpaV9kXbpqKW+XOrBlXbe0rqrm2LnhmLTMqSlpaWlpaWlpaWlpX2PdsntL8XdzO28zZbZM3QBF1TztK4qpaWlpaWlpaWlpaWlfbJ2mXQso5IjLHBb4vmbYc3rmGWb6r9swT3i10JLS0tLS0tLS0tLS/ts7VGqyLJr9VnuXk5O/cAj9/TS1GV+NVpaWlpaWlpaWlpa2ldpU0ZILhG/usptaQC2+2anzQBoaWlpaWlpaWlpaWlfpj1LvGOuE0dY0Za3SOtl7c7YX64iaWlpaWlpaWlpaWlpH6UdeZBynzRSZjLH198lT13WK2hpaWlpaWlpaWlpaV+hzZR5twPbUhNuFsKdYe/rWnJuvhZaWlpaWlpaWlpaWtoXaHMof02ALKvcaubIdllb7PilBXjbrEtaWlpaWlpaWlpaWtrnadto/9KSa7t2M6ypO8KfR958rR30pKWlpaWlpaWlpaWlfbo2FYupMCwF31mMeSbzCCvfmqd9OdWflpaWlpaWlpaWlpb2Udr0nKPbFPsMbzBD+shRYiCXtl+qVO+nLmlpaWlpaWlpaWlpaZ+oXarIXbRIKgJT2biZxFzOS6Xpd7p7tLS0tLS0tLS0tLS0f7y2DD6mxx6liZemKUsYySy7st1NXebKkpaWlpaWlpaWlpaW9vHa3LA7SuZIUdQaM62Gy6c0G2rfpJTQ0tLS0tLS0tLS0tI+Tbvwypjl7R5ry5hlvvPI7cH2e7iZuqSlpaWlpaWlpaWlpX2QdnlYmoNMvb99ZH/aULudukzn3fciaWlpaWlpaWlpaWlpn6JNq9dKx2+ELuDIOZKpb7gY2z23v5jqT0tLS0tLS0tLS0tL+0RtjSpJbbq2qCxl6PKms1sDt2yKPUKcJS0tLS0tLS0tLS0t7bO16UgjlblYnLkVuFyRCsjUIyx5JbS0tLS0tLS0tLS0tC/QluTHFB7S/jnK++XtrOdd+n/eMpuWlpaWlpaWlpaWlvYV2hEKyCZupHTjUkhkbdOV7dWaXbC/UkXS0tLS0tLS0tLS0tI+UltKuo96MidFtrutfVwWnl0ftL+WlpaWlpaWlpaWlpb2jdrRzVrOLkcyLadLxeIMG2ofZZ0dLS0tLS0tLS0tLS0tbb8NW0kfqfgUaVJ4MzT7zttdsGlpaWlpaWlpaWlpaR+pzfhaRS53b1+tnHfkD5YMk2VOk5aWlpaWlpaWlpaW9iXatKxtlmT+pWxMc5ppJjPtwFbuN8NiO1paWlpaWlpaWlpa2rdo//8HLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLe1v0/4FnajhovaFiOwAAAAASUVORK5CYII=", + "revision": "5a019fc485c545369d59a30f", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "49bcaedfc5d446e4be0e7ad1", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -708,96 +1381,192 @@ "total_amount": 20.2, "history_id": 1677340892851, "id": 55087284163, - "date_created": "2023-02-25T12:01:36.928-04:00", - "date_last_updated": "2023-02-25T12:01:36.000-04:00", - "date_of_expiration": "2023-02-26T12:01:36.705-04:00", + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e588d0d3ad134830ac31c98d", "revision_nr": 1, - "created": 1700748395452, - "modified": 1700748395452 + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "ad84287a1ac349d88a124615", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "24ba812e42ce42009131f3c3", "revision_nr": 1, - "created": 1700748395452, - "modified": 1700748395452 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "Paulo Fagner de Oliveira" + "account_holder_name": "Paulo Fagner de Oliveira", + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b9029d59d530481f856c16ab", "revision_nr": 1, - "created": 1700748395452, - "modified": 1700748395452 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "925eb1128abc4a77bdf28c60", "revision_nr": 1, - "created": 1700748395452, - "modified": 1700748395452 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.198 + "amount": 0.198, + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1bbfd2e9d5564b8cb40e4d41", "revision_nr": 1, - "created": 1700748395452, - "modified": 1700748395452 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0, - "ticket_url": "https://www.mercadopago.com.br/payments/55094059932/ticket?caller_id=1310149122&hash=bd1d3d80-d457-4eee-a797-cd6306ae8561", - "qr_code": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter550940599326304816F", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI6UlEQVR42u3dWw7bNhAFUO5A+9+ldqAiRR8S5w7toEXRUEcfQRLL4pH/BvMa1y90nYOWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaW9t/Xjvk6fvzf8dcHf/7tx7dut/z+z78f8Menjw+mW/6+b7r5ftp4nkFLS0tLS0tLS0tLS/sK7XEP2aZ/3o3TuxzPW6Y3eNwyvdD0zuV51/x4WlpaWlpaWlpaWlra7bUT5f6F8xlKXvnmHEU2kWoJL48Fg5aWlpaWlpaWlpaW9p3aM2TZKqB4mtedAsMpFqWlpaWlpaWlpaWlpaWN0dwiHJyCymMRJ+bSy0fecB3M0tLS0tLS0tLS0tLSvkKb8bXWsnytRpv32PF8vkHzA30q/qSlpaWlpaWlpaWlpd1dOxb9bv/hH/90pgotLS0tLS0tLS0tLe0vqs3X+UzTnXnIyDR9ZCrHbD3TQz9baGlpaWlpaWlpaWlp99aeJYIrLWxnCS+nF2qvMsZ/aqer8/2X2T1aWlpaWlpaWlpaWtpNtfe/1YgxdcOtO9rK867SYtdWe5bIkpaWlpaWlpaWlpaWdm9tecgI0WFKzl05u3d/jSOPkFwv2f7cDUdLS0tLS0tLS0tLS7ufNgeLo6umTOQEHaFYc3yeLXl+07tHS0tLS0tLS0tLS0u7lTbvpU4llUeo0zzCo5okXo4nazkmLS0tLS0tLS0tLS3te7T5nGYsyWJa//SNBGjjxKuLMWlpaWlpaWlpaWlpaV+gzWMg01DHOlFymiqSyizzLu3mJ8jBJy0tLS0tLS0tLS0t7e7aMWJQWaaPHKWuMpVjlheq191zLiJLWlpaWlpaWlpaWlraV2jXI/tzeHmW/rkESOMny6fp3OPjDgJaWlpaWlpaWlpaWtrdtCWjdnVFk8dirkmp2BxdieZ0+BkKOC9aWlpaWlpaWlpaWtrXaNv6y/G5ty2Ffu26tpoUXHx60NLS0tLS0tLS0tLSvkabor5pRdoYq3zgCDP6py63K/fKTUd2gSYtLS0tLS0tLS0tLe0LtI+KyHuY12y3LpSa+8sJwKu85BSpfll1SUtLS0tLS0tLS0tLu4t2McpxSucdJe5sm+Pa3F+aUjIZww9ES0tLS0tLS0tLS0u7tzaFjXWCfwkl0xtMx46SKFz8QClSpaWlpaWlpaWlpaWlfYE2fFh71togsKYHS6Iw7dKu13KQCS0tLS0tLS0tLS0t7Qu0YzG8/1vyF4P/c3nnVHU5Psy6pKWlpaWlpaWlpaWl3Uo7zYxMLXHlmc2gx9IN93G2ZJ5rcq2qLmlpaWlpaWlpaWlpaXfT5in8Z6m/vH/QlGOmasr7zdfz/dIatjMORqGlpaWlpaWlpaWlpd1be5XyyXYiSTuMJI+GrCHiInb8yd1wtLS0tLS0tLS0tLS0u2inE6crrVxLqcByHWGrdkr2XeHcg5aWlpaWlpaWlpaW9k3aLxrSpnxby0tFmD8VMeZRJbS0tLS0tLS0tLS0tC/QTuTSvXZ13XDnMmwci6rLHHJ+n4ukpaWlpaWlpaWlpaXdRZsyagWa0n5XniNZijBrOWbb/lZSgbS0tLS0tLS0tLS0tG/RFtSRM35TweUi43eEHGGq4jzz12hpaWlpaWlpaWlpad+jbcPGNsZMa6/Tp+kpZW5/HuNPS0tLS0tLS0tLS0v7Iu0XqbuUgyslmnW4ydT+lhOKzbm0tLS0tLS0tLS0tLTv0eaR/U2cOAWLhVdzf20TXT5jxKiUlpaWlpaWlpaWlpZ2Z+1U6VhKJY/Q4DaN55+CwKMrs0xT/acV3Ef8WWhpaWlpaWlpaWlpaffWNqFfnr1/Lm+e8oEj5/QWAeT53ZQSWlpaWlpaWlpaWlraLbVpRkieXLLucqt5vkTJI00eWwJoaWlpaWlpaWlpaWnfpK3ZuE9B5Xim6a4wquQMnXarzdhfR5G0tLS0tLS0tLS0tLRbaY9cSJm61+4Pubq92R/fJVdd1m/Q0tLS0tLS0tLS0tK+QpvGO+YF2Efun8vNbKNsVkt9dvd84NFbaGlpaWlpaWlpaWlpt9eWcSMrQGl6O0JLXE7TxYxfyiAuZ13S0tLS0tLS0tLS0tLup03TR6arTJlsxpe0rW7Tj5HqPrut2rS0tLS0tLS0tLS0tDtrp0CueM4u4LsW5ZjT88pbNad9PdWflpaWlpaWlpaWlpZ2K206p5lXcs/ppZhwXaw5QqTaJAC7qktaWlpaWlpaWlpaWtr9tCXqO8Im61UQ+MWe63TfIjRd5iJpaWlpaWlpaWlpaWm31KYJItMckrQUe1FXmYLKI8Sn9fDlVH9aWlpaWlpaWlpaWtr9tNP0kfLPKfN2lVAy/a0dOlnmn4zwQp9rRGlpaWlpaWlpaWlpabfSTjm4WmaZY8xmvVr+HY6cHkxFmCXrSEtLS0tLS0tLS0tLu7f2flhTB5krIlcj+9NC7bbqMt33ORdJS0tLS0tLS0tLS0u7izaNi7xXP05puvN5xHq+SIo7m/65Nm9IS0tLS0tLS0tLS0v7Eu14RnhNmm6R7Btd2ebIe9zSfelwWlpaWlpaWlpaWlra3bXrqK/wzm6M/5HffvHONUeYvkZLS0tLS0tLS0tLS7u7dszXsTi7DTkXf6Rxke0C7PF1do+WlpaWlpaWlpaWlnYf7bEIIEv811ZiHl0V5xXWqzVbsL+JImlpaWlpaWlpaWlpabfUppCuPbvdcz3NHCnlk/W7OYQdqykltLS0tLS0tLS0tLS079COUFzZ7FhbtNOlYDEt1B6lz46WlpaWlpaWlpaWlvbt2qOMEbkfO55nT4nCM480KbwzJPuub7Zg09LS0tLS0tLS0tLS7qfN+DqbJG2yTq9WJpKM/EG5JS14o6WlpaWlpaWlpaWl3V07coNb3qxWn17mizzKJ9MGtvK8MzTb0dLS0tLS0tLS0tLSvkX7/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817W9Rdol/1PnhcgAAAABJRU5ErkJggg==" + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e4f8d901b1fc4a938e244899", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/payments/55094059932/ticket?caller_id=1310149122&hash=bd1d3d80-d457-4eee-a797-cd6306ae8561", + "revision": "0b54aacb08fb48709dfe6f3f", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter550940599326304816F", + "revision": "17809bf561bf4d4b90fe73bc", "revision_nr": 1, - "created": 1700748395452, - "modified": 1700748395452 + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI6UlEQVR42u3dWw7bNhAFUO5A+9+ldqAiRR8S5w7toEXRUEcfQRLL4pH/BvMa1y90nYOWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaW9t/Xjvk6fvzf8dcHf/7tx7dut/z+z78f8Menjw+mW/6+b7r5ftp4nkFLS0tLS0tLS0tLS/sK7XEP2aZ/3o3TuxzPW6Y3eNwyvdD0zuV51/x4WlpaWlpaWlpaWlra7bUT5f6F8xlKXvnmHEU2kWoJL48Fg5aWlpaWlpaWlpaW9p3aM2TZKqB4mtedAsMpFqWlpaWlpaWlpaWlpaWN0dwiHJyCymMRJ+bSy0fecB3M0tLS0tLS0tLS0tLSvkKb8bXWsnytRpv32PF8vkHzA30q/qSlpaWlpaWlpaWlpd1dOxb9bv/hH/90pgotLS0tLS0tLS0tLe0vqs3X+UzTnXnIyDR9ZCrHbD3TQz9baGlpaWlpaWlpaWlp99aeJYIrLWxnCS+nF2qvMsZ/aqer8/2X2T1aWlpaWlpaWlpaWtpNtfe/1YgxdcOtO9rK867SYtdWe5bIkpaWlpaWlpaWlpaWdm9tecgI0WFKzl05u3d/jSOPkFwv2f7cDUdLS0tLS0tLS0tLS7ufNgeLo6umTOQEHaFYc3yeLXl+07tHS0tLS0tLS0tLS0u7lTbvpU4llUeo0zzCo5okXo4nazkmLS0tLS0tLS0tLS3te7T5nGYsyWJa//SNBGjjxKuLMWlpaWlpaWlpaWlpaV+gzWMg01DHOlFymiqSyizzLu3mJ8jBJy0tLS0tLS0tLS0t7e7aMWJQWaaPHKWuMpVjlheq191zLiJLWlpaWlpaWlpaWlraV2jXI/tzeHmW/rkESOMny6fp3OPjDgJaWlpaWlpaWlpaWtrdtCWjdnVFk8dirkmp2BxdieZ0+BkKOC9aWlpaWlpaWlpaWtrXaNv6y/G5ty2Ffu26tpoUXHx60NLS0tLS0tLS0tLSvkabor5pRdoYq3zgCDP6py63K/fKTUd2gSYtLS0tLS0tLS0tLe0LtI+KyHuY12y3LpSa+8sJwKu85BSpfll1SUtLS0tLS0tLS0tLu4t2McpxSucdJe5sm+Pa3F+aUjIZww9ES0tLS0tLS0tLS0u7tzaFjXWCfwkl0xtMx46SKFz8QClSpaWlpaWlpaWlpaWlfYE2fFh71togsKYHS6Iw7dKu13KQCS0tLS0tLS0tLS0t7Qu0YzG8/1vyF4P/c3nnVHU5Psy6pKWlpaWlpaWlpaWl3Uo7zYxMLXHlmc2gx9IN93G2ZJ5rcq2qLmlpaWlpaWlpaWlpaXfT5in8Z6m/vH/QlGOmasr7zdfz/dIatjMORqGlpaWlpaWlpaWlpd1be5XyyXYiSTuMJI+GrCHiInb8yd1wtLS0tLS0tLS0tLS0u2inE6crrVxLqcByHWGrdkr2XeHcg5aWlpaWlpaWlpaW9k3aLxrSpnxby0tFmD8VMeZRJbS0tLS0tLS0tLS0tC/QTuTSvXZ13XDnMmwci6rLHHJ+n4ukpaWlpaWlpaWlpaXdRZsyagWa0n5XniNZijBrOWbb/lZSgbS0tLS0tLS0tLS0tG/RFtSRM35TweUi43eEHGGq4jzz12hpaWlpaWlpaWlpad+jbcPGNsZMa6/Tp+kpZW5/HuNPS0tLS0tLS0tLS0v7Iu0XqbuUgyslmnW4ydT+lhOKzbm0tLS0tLS0tLS0tLTv0eaR/U2cOAWLhVdzf20TXT5jxKiUlpaWlpaWlpaWlpZ2Z+1U6VhKJY/Q4DaN55+CwKMrs0xT/acV3Ef8WWhpaWlpaWlpaWlpaffWNqFfnr1/Lm+e8oEj5/QWAeT53ZQSWlpaWlpaWlpaWlraLbVpRkieXLLucqt5vkTJI00eWwJoaWlpaWlpaWlpaWnfpK3ZuE9B5Xim6a4wquQMnXarzdhfR5G0tLS0tLS0tLS0tLRbaY9cSJm61+4Pubq92R/fJVdd1m/Q0tLS0tLS0tLS0tK+QpvGO+YF2Efun8vNbKNsVkt9dvd84NFbaGlpaWlpaWlpaWlpt9eWcSMrQGl6O0JLXE7TxYxfyiAuZ13S0tLS0tLS0tLS0tLup03TR6arTJlsxpe0rW7Tj5HqPrut2rS0tLS0tLS0tLS0tDtrp0CueM4u4LsW5ZjT88pbNad9PdWflpaWlpaWlpaWlpZ2K206p5lXcs/ppZhwXaw5QqTaJAC7qktaWlpaWlpaWlpaWtr9tCXqO8Im61UQ+MWe63TfIjRd5iJpaWlpaWlpaWlpaWm31KYJItMckrQUe1FXmYLKI8Sn9fDlVH9aWlpaWlpaWlpaWtr9tNP0kfLPKfN2lVAy/a0dOlnmn4zwQp9rRGlpaWlpaWlpaWlpabfSTjm4WmaZY8xmvVr+HY6cHkxFmCXrSEtLS0tLS0tLS0tLu7f2flhTB5krIlcj+9NC7bbqMt33ORdJS0tLS0tLS0tLS0u7izaNi7xXP05puvN5xHq+SIo7m/65Nm9IS0tLS0tLS0tLS0v7Eu14RnhNmm6R7Btd2ebIe9zSfelwWlpaWlpaWlpaWlra3bXrqK/wzm6M/5HffvHONUeYvkZLS0tLS0tLS0tLS7u7dszXsTi7DTkXf6Rxke0C7PF1do+WlpaWlpaWlpaWlnYf7bEIIEv811ZiHl0V5xXWqzVbsL+JImlpaWlpaWlpaWlpabfUppCuPbvdcz3NHCnlk/W7OYQdqykltLS0tLS0tLS0tLS079COUFzZ7FhbtNOlYDEt1B6lz46WlpaWlpaWlpaWlvbt2qOMEbkfO55nT4nCM480KbwzJPuub7Zg09LS0tLS0tLS0tLS7qfN+DqbJG2yTq9WJpKM/EG5JS14o6WlpaWlpaWlpaWl3V07coNb3qxWn17mizzKJ9MGtvK8MzTb0dLS0tLS0tLS0tLSvkX7/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817W9Rdol/1PnhcgAAAABJRU5ErkJggg==", + "revision": "dffd4fb7d4e74e71801a40a6", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "729544be7fdc4ce1b42dc1fa", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -806,9 +1575,18 @@ "total_amount": 20.2, "history_id": 1677340905412, "id": 55094059932, - "date_created": "2023-02-25T12:01:49.292-04:00", - "date_last_updated": "2023-02-25T12:04:00.000-04:00", - "date_of_expiration": "2023-02-26T12:01:49.106-04:00", + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", @@ -816,89 +1594,176 @@ "currency_id": "BRL", "date_approved": "2023-02-25T12:03:11.000-04:00", "money_release_date": "2023-02-25T12:03:11.000-04:00", - "wasDebited": true, - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8b8b2d3535654ae1831805f6", "revision_nr": 1, - "created": 1700748395452, - "modified": 1700748395452 + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "3f7beafc57ba4122960505ff", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.198 + "amount": 0.198, + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a050971fac7248a6b510d1a6", "revision_nr": 1, - "created": 1700748395452, - "modified": 1700748395452 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dc54f923e2ff4599a8b1b038", "revision_nr": 1, - "created": 1700748395453, - "modified": 1700748395453 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "Paulo Fagner de Oliveira" + "account_holder_name": "Paulo Fagner de Oliveira", + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3a57c1d43c874aea8fdcc017", "revision_nr": 1, - "created": 1700748395453, - "modified": 1700748395453 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4135aa959ddb4324898ebda1", "revision_nr": 1, - "created": 1700748395453, - "modified": 1700748395453 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0, - "ticket_url": "https://www.mercadopago.com.br/payments/55095321700/ticket?caller_id=1310149122&hash=6c50eaaf-2a5f-4be4-a6b8-fd6340b379a5", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dW47cNhAFUO5A+9+ldqDAiB8t1i12T2IEsXj0YXhGI+lIfxdVLI7rDzrOQUtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v7+7VjPo5vvzt+nvjxv29XzX/36wbfzx5/3338fM6YnvH9d7c/fn1avT0tLS0tLS0tLS0tLe3ztcdrZJt+TMbpXRL019+lF0rXLhi0tLS0tLS0tLS0tLQbaCfK6wXnPUpe94dNbzWlyCaplnh5LBi0tLS0tLS0tLS0tLR7as9QZauA4mledwqGr7zpH1paWlpaWlpaWlpaWtp7m2WOg1OoPBY58bXN8tfZqRPzoqWlpaWlpaWlpaWl3V2b8anXMtX+psVxRzAeIUWmy/5JjygtLS0tLS0tLS0tLe2frl3J/sN//u1MFVpaWlpaWlpaWlpa2j9Um4/zXqY7uw7LcZ8FeYWyX/W83rRWEIOFlpaWlpaWlpaWlpb22dqzJLhykzOU+G4v1B5ljP+0nK7O919W92hpaWlpaWlpaWlpaR+qnRaupZmRU4AsafMqY0mmnDh9h7bbM3wqWlpaWlpaWlpaWlraJ2vLTUZIh6k4d5V3maBT5CwVv1QjHOFdaGlpaWlpaWlpaWlpN9C+C4tX2W1tTS5VwOZ1F1+JlpaWlpaWlpaWlpZ2K23elzq1VB6hT7O2Y7a9ljlP1s9CS0tLS0tLS0tLS0u7j7aQm9bLPK2/JssFoM2JV5cxaWlpaWlpaWlpaWlpN9DmMZC1fTJNlCwbqB3dkrgrr3xLufNN1yUtLS0tLS0tLS0tLe3TtOnIK9+O0leZ2jHLC9Xj9X7nIlnS0tLS0tLS0tLS0tJuol2N7C9r5c4yUGRKh2m4SXlabdYsS+cOWlpaWlpaWlpaWlranbQlJ14xzdVxI6u2zbScLt20vP1HexDQ0tLS0tLS0tLS0tI+R9v2X6YRJNd9bVuKfu12bbUouDh70NLS0tLS0tLS0tLSbqNNqW/aIm2MVT1whBn97R5rzUbZuRRIS0tLS0tLS0tLS0u7j/bWEfka845c4itTRUap/ZXldOOObx70YdclLS0tLS0tLS0tLS3tU7RllGNtfMxnU4dlc0WKnO+C5kVLS0tLS0tLS0tLS7uNdiw2wJ7C4pQ2U8FukpVy3vSB0jK5c/42tLS0tLS0tLS0tLS0T9aGk6PU6toQeIUeyqlQmPbSrqXF5SATWlpaWlpaWlpaWlraDbRpIdw02j8lxjqqZD34P7d31iEotLS0tLS0tLS0tLS0+2hTOS9vcf31qt3b2ZLtXBNaWlpaWlpaWlpaWtp9tHmA43l/2LgHzZHbMdO7TKNKJlmp6Z2xAEhLS0tLS0tLS0tLS/tsbT3aiSR537WjGw1ZI+IiO35xbzhaWlpaWlpaWlpaWtqnaMvKt1FiY6nzjTI4shxH2FU7Ffuu8NyDlpaWlpaWlpaWlpZ2J+0HC9KmelvLm/7464kxjyqhpaWlpaWlpaWlpaXdQDuR19P605DIHBvHousyR87Pa5G0tLS0tLS0tLS0tLRP0aaKWh4SOcrqtanXsnRdXrkds13+VkqBtLS0tLS0tLS0tLS0+2jbpslUeUsDStINxqjbbZ+ldzNdRktLS0tLS0tLS0tLu4+2jY1txkzbXqez6S5lbn8e409LS0tLS0tLS0tLS7uRto1+6xpcSptT0JyWv+WCYlMypKWlpaWlpaWlpaWl3Ufb7XAWc2Ia9587LJtey/wG56KLk5aWlpaWlpaWlpaW9unaqdOxtEoeYYHbNJ4/5cm65dr0bdIwydTtSUtLS0tLS0tLS0tL+3xtXeBWdq2+yt1Tw+V0q1IeHN390rW0tLS0tLS0tLS0tLT7adOMkNxh+XaVW3p2ftAIZwctLS0tLS0tLS0tLe2G2itU49ahso4vaXsyc9dlG01PWlpaWlpaWlpaWlravbRHbqRMi+OmVXNtq+T6XXLXZb2ClpaWlpaWlpaWlpZ2C20a77gOgaUKeOY5kmkb7elNpxVynYWWlpaWlpaWlpaWlvbx2jyUP/VaplVuUwxdLGuLnyBVEN/PuqSlpaWlpaWlpaWlpX2UNk0fmY40KTJ1TrZL3aaPkfo+u121aWlpaWlpaWlpaWlpn6ydglzxnF3gayuD9f3KWzVP+3iqPy0tLS0tLS0tLS0t7aO0R3hOM6/ktaZXGylTm2U78780XF6fdF3S0tLS0tLS0tLS0tI+UTulyPW4kRoC2ymTuRNzCpBjMf+ElpaWlpaWlpaWlpZ2H22aIJJaJcsEyJFX0uVQeYR8euVZlbS0tLS0tLS0tLS0tPtoc8Eu1e8+2IZtXd1LoyZHeKHllBJaWlpaWlpaWlpaWtqHa5MsPTZXAUdIh+eiPJiaMAONlpaWlpaWlpaWlpb28dpSybvy/tU5O16vjy3GugauHTDZbQZAS0tLS0tLS0tLS0v7ZG273q0t8ZUrrhAHr/J+LX5RN6SlpaWlpaWlpaWlpd1HW0eVpDLd648TZSzbNs+8Bq4cRxhnSUtLS0tLS0tLS0tL+2ztOvUV3tnNIWn7L888oCTVCMu8ElpaWlpaWlpaWlpa2g20bZDLs/fTj80m1rlkeC03wB4fV/doaWlpaWlpaWlpaWmfoz1CgGzGjUxVuzYJlhi6Gvz/tRRJS0tLS0tLS0tLS0v7SG2JdLfhISUONvtcp8vCs0cKqYtraWlpaWlpaWlpaWlpd9Qei17LvIFaWk6XwuIZNtQeZZ0dLS0tLS0tLS0tLS0t7TWNG3l97Lg/+yr4NNKk8M5Q7Lve7IJNS0tLS0tLS0tLS0v7UG3G1xSZJo2kVyt/N/KJ9L3ep0haWlpaWlpaWlpaWtqHaUde4JZ3Vju7ASVpcsnIO7ClLs70SFpaWlpaWlpaWlpa2i20//+DlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlva3af8CP/KbUvmRbJkAAAAASUVORK5CYII=", - "qr_code": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter550953217006304FF73" + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "33c9848c2f654b8abef28c35", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/payments/55095321700/ticket?caller_id=1310149122&hash=6c50eaaf-2a5f-4be4-a6b8-fd6340b379a5", + "revision": "d5cdf18f1b9c4e129ece8367", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dW47cNhAFUO5A+9+ldqDAiB8t1i12T2IEsXj0YXhGI+lIfxdVLI7rDzrOQUtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v7+7VjPo5vvzt+nvjxv29XzX/36wbfzx5/3338fM6YnvH9d7c/fn1avT0tLS0tLS0tLS0tLe3ztcdrZJt+TMbpXRL019+lF0rXLhi0tLS0tLS0tLS0tLQbaCfK6wXnPUpe94dNbzWlyCaplnh5LBi0tLS0tLS0tLS0tLR7as9QZauA4mledwqGr7zpH1paWlpaWlpaWlpaWtp7m2WOg1OoPBY58bXN8tfZqRPzoqWlpaWlpaWlpaWl3V2b8anXMtX+psVxRzAeIUWmy/5JjygtLS0tLS0tLS0tLe2frl3J/sN//u1MFVpaWlpaWlpaWlpa2j9Um4/zXqY7uw7LcZ8FeYWyX/W83rRWEIOFlpaWlpaWlpaWlpb22dqzJLhykzOU+G4v1B5ljP+0nK7O919W92hpaWlpaWlpaWlpaR+qnRaupZmRU4AsafMqY0mmnDh9h7bbM3wqWlpaWlpaWlpaWlraJ2vLTUZIh6k4d5V3maBT5CwVv1QjHOFdaGlpaWlpaWlpaWlpN9C+C4tX2W1tTS5VwOZ1F1+JlpaWlpaWlpaWlpZ2K23elzq1VB6hT7O2Y7a9ljlP1s9CS0tLS0tLS0tLS0u7j7aQm9bLPK2/JssFoM2JV5cxaWlpaWlpaWlpaWlpN9DmMZC1fTJNlCwbqB3dkrgrr3xLufNN1yUtLS0tLS0tLS0tLe3TtOnIK9+O0leZ2jHLC9Xj9X7nIlnS0tLS0tLS0tLS0tJuol2N7C9r5c4yUGRKh2m4SXlabdYsS+cOWlpaWlpaWlpaWlranbQlJ14xzdVxI6u2zbScLt20vP1HexDQ0tLS0tLS0tLS0tI+R9v2X6YRJNd9bVuKfu12bbUouDh70NLS0tLS0tLS0tLSbqNNqW/aIm2MVT1whBn97R5rzUbZuRRIS0tLS0tLS0tLS0u7j/bWEfka845c4itTRUap/ZXldOOObx70YdclLS0tLS0tLS0tLS3tU7RllGNtfMxnU4dlc0WKnO+C5kVLS0tLS0tLS0tLS7uNdiw2wJ7C4pQ2U8FukpVy3vSB0jK5c/42tLS0tLS0tLS0tLS0T9aGk6PU6toQeIUeyqlQmPbSrqXF5SATWlpaWlpaWlpaWlraDbRpIdw02j8lxjqqZD34P7d31iEotLS0tLS0tLS0tLS0+2hTOS9vcf31qt3b2ZLtXBNaWlpaWlpaWlpaWtp9tHmA43l/2LgHzZHbMdO7TKNKJlmp6Z2xAEhLS0tLS0tLS0tLS/tsbT3aiSR537WjGw1ZI+IiO35xbzhaWlpaWlpaWlpaWtqnaMvKt1FiY6nzjTI4shxH2FU7Ffuu8NyDlpaWlpaWlpaWlpZ2J+0HC9KmelvLm/7464kxjyqhpaWlpaWlpaWlpaXdQDuR19P605DIHBvHousyR87Pa5G0tLS0tLS0tLS0tLRP0aaKWh4SOcrqtanXsnRdXrkds13+VkqBtLS0tLS0tLS0tLS0+2jbpslUeUsDStINxqjbbZ+ldzNdRktLS0tLS0tLS0tLu4+2jY1txkzbXqez6S5lbn8e409LS0tLS0tLS0tLS7uRto1+6xpcSptT0JyWv+WCYlMypKWlpaWlpaWlpaWl3Ufb7XAWc2Ia9587LJtey/wG56KLk5aWlpaWlpaWlpaW9unaqdOxtEoeYYHbNJ4/5cm65dr0bdIwydTtSUtLS0tLS0tLS0tL+3xtXeBWdq2+yt1Tw+V0q1IeHN390rW0tLS0tLS0tLS0tLT7adOMkNxh+XaVW3p2ftAIZwctLS0tLS0tLS0tLe2G2itU49ahso4vaXsyc9dlG01PWlpaWlpaWlpaWlravbRHbqRMi+OmVXNtq+T6XXLXZb2ClpaWlpaWlpaWlpZ2C20a77gOgaUKeOY5kmkb7elNpxVynYWWlpaWlpaWlpaWlvbx2jyUP/VaplVuUwxdLGuLnyBVEN/PuqSlpaWlpaWlpaWlpX2UNk0fmY40KTJ1TrZL3aaPkfo+u121aWlpaWlpaWlpaWlpn6ydglzxnF3gayuD9f3KWzVP+3iqPy0tLS0tLS0tLS0t7aO0R3hOM6/ktaZXGylTm2U78780XF6fdF3S0tLS0tLS0tLS0tI+UTulyPW4kRoC2ymTuRNzCpBjMf+ElpaWlpaWlpaWlpZ2H22aIJJaJcsEyJFX0uVQeYR8euVZlbS0tLS0tLS0tLS0tPtoc8Eu1e8+2IZtXd1LoyZHeKHllBJaWlpaWlpaWlpaWtqHa5MsPTZXAUdIh+eiPJiaMAONlpaWlpaWlpaWlpb28dpSybvy/tU5O16vjy3GugauHTDZbQZAS0tLS0tLS0tLS0v7ZG273q0t8ZUrrhAHr/J+LX5RN6SlpaWlpaWlpaWlpd1HW0eVpDLd648TZSzbNs+8Bq4cRxhnSUtLS0tLS0tLS0tL+2ztOvUV3tnNIWn7L888oCTVCMu8ElpaWlpaWlpaWlpa2g20bZDLs/fTj80m1rlkeC03wB4fV/doaWlpaWlpaWlpaWmfoz1CgGzGjUxVuzYJlhi6Gvz/tRRJS0tLS0tLS0tLS0v7SG2JdLfhISUONvtcp8vCs0cKqYtraWlpaWlpaWlpaWlpd9Qei17LvIFaWk6XwuIZNtQeZZ0dLS0tLS0tLS0tLS0t7TWNG3l97Lg/+yr4NNKk8M5Q7Lve7IJNS0tLS0tLS0tLS0v7UG3G1xSZJo2kVyt/N/KJ9L3ep0haWlpaWlpaWlpaWtqHaUde4JZ3Vju7ASVpcsnIO7ClLs70SFpaWlpaWlpaWlpa2i20//+DlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlva3af8CP/KbUvmRbJkAAAAASUVORK5CYII=", + "revision": "e52cd60e09764c62b323f7ae", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter550953217006304FF73", + "revision": "49327c71358542dd9ff2bdf1", "revision_nr": 1, - "created": 1700748395453, - "modified": 1700748395453 + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "fb746313a086490cab6200d2", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -907,9 +1772,18 @@ "total_amount": 20.2, "history_id": 1677342602434, "id": 55095321700, - "date_created": "2023-02-25T12:30:06.615-04:00", - "date_last_updated": "2023-02-25T12:32:35.000-04:00", - "date_of_expiration": "2023-02-26T12:30:06.238-04:00", + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", @@ -917,89 +1791,176 @@ "currency_id": "BRL", "date_approved": "2023-02-25T12:32:20.000-04:00", "money_release_date": "2023-02-25T12:32:20.000-04:00", - "wasDebited": true, - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "62056f8bc7ca4688a6a7f50f", "revision_nr": 1, - "created": 1700748395453, - "modified": 1700748395453 + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "b6073326b4be403faf27ee92", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 3.9600000000000004 + "amount": 3.9600000000000004, + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e506e4d274a94043af71587d", "revision_nr": 1, - "created": 1700748395453, - "modified": 1700748395453 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1b72f8dd0c75440e81eca79e", "revision_nr": 1, - "created": 1700748395453, - "modified": 1700748395453 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "Paulo Fagner de Oliveira" + "account_holder_name": "Paulo Fagner de Oliveira", + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d384b36f5f90422baea511a5", "revision_nr": 1, - "created": 1700748395453, - "modified": 1700748395453 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "28233480d1594901a230b849", "revision_nr": 1, - "created": 1700748395453, - "modified": 1700748395453 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 403.96, "overpaid_amount": 0, "installment_amount": 0, - "ticket_url": "https://www.mercadopago.com.br/payments/55103336998/ticket?caller_id=1310149122&hash=9ef20da2-8e33-4bd3-baa0-734357868736", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2ElEQVR42u3dW47jNhAFUO6A+9+ldqBgkJnYZl1SBjIIMuTxR6PdtqTD/ivUq91/0OtqtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/X9vGV//xt/7PB79++3HV3z9eH7xu8PODX9e+vvf+jF8fvL78flll0NLS0tLS0tLS0tLSHqLt7yHb8DY/7H5/zvtv6ysmn74fMjFoaWlpaWlpaWlpaWkP0A4B5HDBEEpmxfUZWdZnvwLE17WLwJWWlpaWlpaWlpaWlvZs7fV5k/dLWwkbP9J+JQH4kg2nTz9oaWlpaWlpaWlpaWlpQ5llSrrl+K991lAO2hYO1N7PQktLS0tLS0tLS0tLe6x2ik8fvJ6diiZLD1zK6fWv8oG0tLS0tLS0tLS0tLSHaKdTSv7bH/92pgotLS0tLS0tLS0tLe0fqs2vOtSxjCVJH9yha27aDVeThzMLLS0tLS0tLS0tLS3t3tqrRHDlduvmuHtRdZnwOY04TfbR0tLS0tLS0tLS0tLurn09NvGGtrYrvM0tbLXWMpVeTpKMDzEvLS0tLS0tLS0tLS3tVtorzNmvwV0ZX3LPVrOltrbVM57uQktLS0tLS0tLS0tLu7v2fh8tMtwuJeLeE3YtTylJNZlpXknau/ZcI0pLS0tLS0tLS0tLS7uZ9grQaeatf6bu7hJormPM9fK14X60tLS0tLS0tLS0tLRHaHMP3HCTSa1lSQ+miPFezPdfMG5aWlpaWlpaWlpaWtpDtENtZIoEp8Mfywa2XqLDLJv02eUIlJaWlpaWlpaWlpaWdm/t8LChmjLtuU6zIN9vdX2m/eqrxJ1D8nBRdUlLS0tLS0tLS0tLS7ufNi9Lu/Pw/pLdG1ripn+rTyvxaRpuQktLS0tLS0tLS0tLe4o2vc0tcauSynLcVuLElFDMVZw3LS0tLS0tLS0tLS3tIdpSNNmWI0juvNi6TCm5QhR5LQ755RZsWlpaWlpaWlpaWlraHbXDQMi67Lpk6Ca8HCLeJZOXp/qnVCAtLS0tLS0tLS0tLe0B2pK/a8s914/1lyWdd5W0X8kW9och/7S0tLS0tLS0tLS0tDtrU0Naejtk6PJEkskVKU5cBJr9IealpaWlpaWlpaWlpaXdTJsok2H7aTRkDkj7YoHa8A9aCGhpaWlpaWlpaWlpaQ/Qln63K6yuXg96bGFmZF/sC0jZwjTIhJaWlpaWlpaWlpaW9iRtK1McB22unOwhsuzLESRXeFAagkJLS0tLS0tLS0tLS3uKdnr3EiL2vIutPHaV8UtDUPLBaWlpaWlpaWlpaWlpT9EOdZWlK22IMXvIy/Ulqi1mS+aqy05LS0tLS0tLS0tLS3uWdrhJieHiMMnhVKUws4V/QfuccHKXSf/P29ZoaWlpaWlpaWlpaWn30w7TQhZTSuoGttIIt6JMg89ydaelpaWlpaWlpaWlpT1JO5Dz2z4rmqwpuTybpIaXKWLMo0poaWlpaWlpaWlpaWmP0qaqy4JaD5gcAs3a5ZZi1rQKm5aWlpaWlpaWlpaW9ghtHhI52VC9GDWZIsGhG+4qCcDF8uyblpaWlpaWlpaWlpb2QO1jXDeUaE7PXFazTSLQp1iUlpaWlpaWlpaWlpb2AG1qXCt3mmT8Sudbmgo5rMdueeb/4kVLS0tLS0tLS0tLS7u3drGcuoXt1n3WK9cKqsw6STWerWT8HmJeWlpaWlpaWlpaWlra/bRDHeT9HifmU915gv9wvkVl55UnSqaj0dLS0tLS0tLS0tLS7q4t6bc0oGQSba4DyHS+ISAtGwFSApCWlpaWlpaWlpaWlnZ37b2cuF9vkrJ7QxA4fGWaLUwFnOGmtLS0tLS0tLS0tLS0O2un4WDebl3zcnn6f3seF1lLOWfL3GhpaWlpaWlpaWlpaXfWTm9SEnF3ifoWW9laGA35bdVlodHS0tLS0tLS0tLS0u6sLWFjzxP3Q5Nay1P479xil+aaLKo4Oy0tLS0tLS0tLS0t7SHaVPM4TeKVbFx9pfOVkHMVwj5MKaGlpaWlpaWlpaWlpd1Pe4UCySs0s/XcNVeCxfaZ3etZlr6XL6OlpaWlpaWlpaWlpT1AW1rdrtL5thj+OGy87uHZqacuhbAXLS0tLS0tLS0tLS3tmdoSJ/Ywxr9WWE6XYq+P+xSVdlpaWlpaWlpaWlpa2rO0H+T3O/VFbWTpaFtfe+cvh0mRX9SI0tLS0tLS0tLS0tLS7qi9P1vdegjzpum3aWFmSh5OvpdXZtPS0tLS0tLS0tLS0h6gnXa0DQ9bJ/FKSeU1m1KyrrrMkSUtLS0tLS0tLS0tLe3O2oQqabrJdrRy0iu0v9XzPTXMfVV1SUtLS0tLS0tLS0tLu6l2msQrPXC9RIepTjPv0r7D8uzpi5aWlpaWlpaWlpaW9gBtGe9Yo770nJLOu0v+Ln2lBK49JBQ7LS0tLS0tLS0tLS3tIdo8LrKWQA7GlJybVk6WqZCTbOE33XC0tLS0tLS0tLS0tLSbalv8Wu1Zq2fJYei0Q+7OQ1BywSUtLS0tLS0tLS0tLe0B2vQanrg4Ri2pLI1w07RfD9Fma+2bGlFaWlpaWlpaWlpaWtqNtDmQS7/12aLsO28ESEHq+5cnd/4yu0dLS0tLS0tLS0tLS7uPtra6Tfvi3mPHNBryzk8sg0yu3Pn2TRRJS0tLS0tLS0tLS0u7pTaFdDkITAP9rxKJpuEmJYPYn0JYWlpaWlpaWlpaWlra07U1bEwdcjkvV68oe7NT3PlVdo+WlpaWlpaWlpaWlvYobR3ePx01mf82OeS02W65BZuWlpaWlpaWlpaWlnZTbcH3PKg/xX8lxVfn9peJJCkWnVRx0tLS0tLS0tLS0tLS7q+thY9DAFnuNJlSkkLTcshpGHqFM9PS0tLS0tLS0tLS0h6g/f+/aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/m/Yv5+S5wPHlkOQAAAAASUVORK5CYII=", - "qr_code": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d127175204000053039865406403.965802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter551033369986304804E" + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d45026dc2ed3432583b1dda0", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/payments/55103336998/ticket?caller_id=1310149122&hash=9ef20da2-8e33-4bd3-baa0-734357868736", + "revision": "020c7a6497644aa8991216e9", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2ElEQVR42u3dW47jNhAFUO6A+9+ldqBgkJnYZl1SBjIIMuTxR6PdtqTD/ivUq91/0OtqtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/X9vGV//xt/7PB79++3HV3z9eH7xu8PODX9e+vvf+jF8fvL78flll0NLS0tLS0tLS0tLSHqLt7yHb8DY/7H5/zvtv6ysmn74fMjFoaWlpaWlpaWlpaWkP0A4B5HDBEEpmxfUZWdZnvwLE17WLwJWWlpaWlpaWlpaWlvZs7fV5k/dLWwkbP9J+JQH4kg2nTz9oaWlpaWlpaWlpaWlpQ5llSrrl+K991lAO2hYO1N7PQktLS0tLS0tLS0tLe6x2ik8fvJ6diiZLD1zK6fWv8oG0tLS0tLS0tLS0tLSHaKdTSv7bH/92pgotLS0tLS0tLS0tLe0fqs2vOtSxjCVJH9yha27aDVeThzMLLS0tLS0tLS0tLS3t3tqrRHDlduvmuHtRdZnwOY04TfbR0tLS0tLS0tLS0tLurn09NvGGtrYrvM0tbLXWMpVeTpKMDzEvLS0tLS0tLS0tLS3tVtorzNmvwV0ZX3LPVrOltrbVM57uQktLS0tLS0tLS0tLu7v2fh8tMtwuJeLeE3YtTylJNZlpXknau/ZcI0pLS0tLS0tLS0tLS7uZ9grQaeatf6bu7hJormPM9fK14X60tLS0tLS0tLS0tLRHaHMP3HCTSa1lSQ+miPFezPdfMG5aWlpaWlpaWlpaWtpDtENtZIoEp8Mfywa2XqLDLJv02eUIlJaWlpaWlpaWlpaWdm/t8LChmjLtuU6zIN9vdX2m/eqrxJ1D8nBRdUlLS0tLS0tLS0tLS7ufNi9Lu/Pw/pLdG1ripn+rTyvxaRpuQktLS0tLS0tLS0tLe4o2vc0tcauSynLcVuLElFDMVZw3LS0tLS0tLS0tLS3tIdpSNNmWI0juvNi6TCm5QhR5LQ755RZsWlpaWlpaWlpaWlraHbXDQMi67Lpk6Ca8HCLeJZOXp/qnVCAtLS0tLS0tLS0tLe0B2pK/a8s914/1lyWdd5W0X8kW9och/7S0tLS0tLS0tLS0tDtrU0Naejtk6PJEkskVKU5cBJr9IealpaWlpaWlpaWlpaXdTJsok2H7aTRkDkj7YoHa8A9aCGhpaWlpaWlpaWlpaQ/Qln63K6yuXg96bGFmZF/sC0jZwjTIhJaWlpaWlpaWlpaW9iRtK1McB22unOwhsuzLESRXeFAagkJLS0tLS0tLS0tLS3uKdnr3EiL2vIutPHaV8UtDUPLBaWlpaWlpaWlpaWlpT9EOdZWlK22IMXvIy/Ulqi1mS+aqy05LS0tLS0tLS0tLS3uWdrhJieHiMMnhVKUws4V/QfuccHKXSf/P29ZoaWlpaWlpaWlpaWn30w7TQhZTSuoGttIIt6JMg89ydaelpaWlpaWlpaWlpT1JO5Dz2z4rmqwpuTybpIaXKWLMo0poaWlpaWlpaWlpaWmP0qaqy4JaD5gcAs3a5ZZi1rQKm5aWlpaWlpaWlpaW9ghtHhI52VC9GDWZIsGhG+4qCcDF8uyblpaWlpaWlpaWlpb2QO1jXDeUaE7PXFazTSLQp1iUlpaWlpaWlpaWlpb2AG1qXCt3mmT8Sudbmgo5rMdueeb/4kVLS0tLS0tLS0tLS7u3drGcuoXt1n3WK9cKqsw6STWerWT8HmJeWlpaWlpaWlpaWlra/bRDHeT9HifmU915gv9wvkVl55UnSqaj0dLS0tLS0tLS0tLS7q4t6bc0oGQSba4DyHS+ISAtGwFSApCWlpaWlpaWlpaWlnZ37b2cuF9vkrJ7QxA4fGWaLUwFnOGmtLS0tLS0tLS0tLS0O2un4WDebl3zcnn6f3seF1lLOWfL3GhpaWlpaWlpaWlpaXfWTm9SEnF3ifoWW9laGA35bdVlodHS0tLS0tLS0tLS0u6sLWFjzxP3Q5Nay1P479xil+aaLKo4Oy0tLS0tLS0tLS0t7SHaVPM4TeKVbFx9pfOVkHMVwj5MKaGlpaWlpaWlpaWlpd1Pe4UCySs0s/XcNVeCxfaZ3etZlr6XL6OlpaWlpaWlpaWlpT1AW1rdrtL5thj+OGy87uHZqacuhbAXLS0tLS0tLS0tLS3tmdoSJ/Ywxr9WWE6XYq+P+xSVdlpaWlpaWlpaWlpa2rO0H+T3O/VFbWTpaFtfe+cvh0mRX9SI0tLS0tLS0tLS0tLS7qi9P1vdegjzpum3aWFmSh5OvpdXZtPS0tLS0tLS0tLS0h6gnXa0DQ9bJ/FKSeU1m1KyrrrMkSUtLS0tLS0tLS0tLe3O2oQqabrJdrRy0iu0v9XzPTXMfVV1SUtLS0tLS0tLS0tLu6l2msQrPXC9RIepTjPv0r7D8uzpi5aWlpaWlpaWlpaW9gBtGe9Yo770nJLOu0v+Ln2lBK49JBQ7LS0tLS0tLS0tLS3tIdo8LrKWQA7GlJybVk6WqZCTbOE33XC0tLS0tLS0tLS0tLSbalv8Wu1Zq2fJYei0Q+7OQ1BywSUtLS0tLS0tLS0tLe0B2vQanrg4Ri2pLI1w07RfD9Fma+2bGlFaWlpaWlpaWlpaWtqNtDmQS7/12aLsO28ESEHq+5cnd/4yu0dLS0tLS0tLS0tLS7uPtra6Tfvi3mPHNBryzk8sg0yu3Pn2TRRJS0tLS0tLS0tLS0u7pTaFdDkITAP9rxKJpuEmJYPYn0JYWlpaWlpaWlpaWlra07U1bEwdcjkvV68oe7NT3PlVdo+WlpaWlpaWlpaWlvYobR3ePx01mf82OeS02W65BZuWlpaWlpaWlpaWlnZTbcH3PKg/xX8lxVfn9peJJCkWnVRx0tLS0tLS0tLS0tLS7q+thY9DAFnuNJlSkkLTcshpGHqFM9PS0tLS0tLS0tLS0h6g/f+/aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/m/Yv5+S5wPHlkOQAAAAASUVORK5CYII=", + "revision": "89d370a0ecf84f13ab605658", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d127175204000053039865406403.965802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter551033369986304804E", + "revision": "c7518ce156954301aa125a31", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "2d547a6f18a84b0982f1376d", "revision_nr": 1, - "created": 1700748395453, - "modified": 1700748395453 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1008,96 +1969,192 @@ "total_amount": 403.96, "history_id": 1677356987387, "id": 55103336998, - "date_created": "2023-02-25T16:29:48.037-04:00", - "date_last_updated": "2023-02-25T16:29:48.037-04:00", - "date_of_expiration": "2023-02-26T16:29:47.844-04:00", + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8de34994b07745d08e752865", "revision_nr": 1, - "created": 1700748395453, - "modified": 1700748395453 + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "b4ebbc254f2f46858db696b7", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 9.9 + "amount": 9.9, + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f3d30dea8300480c893caa2d", "revision_nr": 1, - "created": 1700748395453, - "modified": 1700748395453 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "31f4e5db759341e687f6ee80", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "Paulo Fagner de Oliveira" + "account_holder_name": "Paulo Fagner de Oliveira", + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4c7e0677b86342569fd0288f", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6c2230c9e6534961bba42e4a", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 1009.9, "overpaid_amount": 0, "installment_amount": 0, - "ticket_url": "https://www.mercadopago.com.br/payments/55096573577/ticket?caller_id=1310149122&hash=90c37e8f-66e2-44f0-8c67-647e232f6bda", - "qr_code": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d1271752040000530398654071009.905802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter5509657357763045E7D", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIy0lEQVR42u3dW47jNhAFUO5A+9+ldqBgkMdYrFu0ggRBRjz+MNwtSzry30UVi+P6hV7noKWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaX997Vjfh0//nf8deDPTz/OGj8/TRf44+jxeZfpQLnU8TtlfN7txqClpaWlpaWlpaWlpd1EO93iKDFuhNcn+ZyvfrvjmZ+vaFsGLS0tLS0tLS0tLS3tBtopQE4npK/8Qb7uxp+86/PTlBM/D7TBlZaWlpaWlpaWlpaWdm/tVHS7RcTQFplKcnNlsNwyvdHS0tLS0tLS0tLS0tLGiHiFZJnyX1P7m5owP59vhKBJS0tLS0tLS0tLS0u7n3aBn5bETaedy6LgKKhy4Pje/ElLS0tLS0tLS0tLS/t2bTul5L99+6czVWhpaWlpaWlpaWlpaX9RbX6dechIeapbce6ziNcup6ur4b5baGlpaWlpaWlpaWlp3609u9GQ6cCtsLd+jHKp1cz/6St9iqSlpaWlpaWlpaWlpX2bdrpmu1wtxcv2MfIDPVtnVyah0NLS0tLS0tLS0tLSbqD9vOPIC9zKLMjbpth5oH86cHWbbN9+jO89orS0tLS0tLS0tLS0tO/RphEkqaaXPrVbZh+lfpe6LtO+a19SJC0tLS0tLS0tLS0t7cu1paaX2iKnrFf/nAp7U3mwjau5RZOWlpaWlpaWlpaWlvbd2nKlqUuylt/C5UY6d51Kv4XPi5aWlpaWlpaWlpaWdhPtVFabCmwlLI6QDpNxasycZEco56Vb0tLS0tLS0tLS0tLSbqDNFz5zw+V0NFUG21kni+GUR6gqXrS0tLS0tLS0tLS0tJto00bUZQlbbalMS+LKWMlcqxupnJcbOGlpaWlpaWlpaWlpabfQNtNHEjQHvpaXNgg4855tJYFetLS0tLS0tLS0tLS022iPsCBtGv44RtyfrcjSmrrRjew/l8W+g5aWlpaWlpaWlpaWdhtt0yo5DSNpJ/gvlrqNbhfsZq7Jk65LWlpaWlpaWlpaWlrat2nTfUrGTGNJmjmSZeVbKiMe4c+65zYtLS0tLS0tLS0tLe0m2tWMx6nsl0dIpqGT4/4YjTHvIXCsUiQtLS0tLS0tLS0tLe3btNNquPDdftRk6qFM6+emq0wFwJQ2H04poaWlpaWlpaWlpaWlfYF2mj4yVe0WK+S+7oJdfof0Y0zG712XtLS0tLS0tLS0tLS0L9WOMOOxBsM8VjKR0+5tzbjI0nU5+umRtLS0tLS0tLS0tLS079MuAuTRLWE7w9z+o8TB1FeZF9Fd3bI7WlpaWlpaWlpaWlraDbSpLjedP5Xp2iklKVmW57u6qf5T2qSlpaWlpaWlpaWlpd1He93LapPiDLHxKrzUmFmGljTJMrVyPpl1SUtLS0tLS0tLS0tL+w7tZw/luLdZtrc98qSRcoFUD7zCGP/mXFpaWlpaWlpaWlpa2i207fltWMxr2+q5i6n+TWLMo0poaWlpaWlpaWlpaWm30ibZt0VvdZDJYvTJFRJo+2PQ0tLS0tLS0tLS0tJuoF3kujpfJCS8kZLg8+3VUgKlpaWlpaWlpaWlpaXdT/stE14hVF6LzslUqys/wbjvHDA1f9LS0tLS0tLS0tLS0u6i/Uxz436lq6yVa8eXlH3XGk+e279+0dLS0tLS0tLS0tLSvl17ho7II5BH2Rk7nVGSYJ08mQej1B+IlpaWlpaWlpaWlpZ2C+1Uzitj/Nedk81ebFN3Zn6Cupd23iOblpaWlpaWlpaWlpb23dqyB/XtmikYFsqDPs2rjCBJ4yfTVWhpaWlpaWlpaWlpad+vXbQ7jgcZMzVcliR4dRW/K2+eTUtLS0tLS0tLS0tLu5N2de+2LTJFztTKWRbCnSGVHuG+tLS0tLS0tLS0tLS0u2gnSm6GrI+WNrGeLpqeOf1A6Za0tLS0tLS0tLS0tLQ7aWt8+0yMqxVy5Su1kle2UrvyJtvpDFpaWlpaWlpaWlpa2u20tThXHqNds3aVQSZ5XGRzt+VO27S0tLS0tLS0tLS0tG/WrmtwaTVcHvc/PWTahq0m1RJXc7alpaWlpaWlpaWlpaV9s7Ydtl+S4LGMg+3gkStvBjAJcsmQlpaWlpaWlpaWlpZ2A20pv4379JErZMc6LnIa2Z8y5nrIfzmXlpaWlpaWlpaWlpZ2F23Odc1ytdIleeU7truypQElbY6lpaWlpaWlpaWlpaXdRHssd7Ie93mOaYFbSqAjLHBLhcJ1xqSlpaWlpaWlpaWlpd1A2zZNpkyYym+fDzTKcJP0aE8XzNHS0tLS0tLS0tLS0m6mXUwpScNIUsHuXPRurguA7Y9BS0tLS0tLS0tLS0u7mTYly1Lxm27WNmbeKoNtn2aOkhctLS0tLS0tLS0tLe1O2hIWV/uk5S9PyfIqtb/pbQqay8V2tLS0tLS0tLS0tLS0b9YWzxnqbefzHdjaLs626zL3adLS0tLS0tLS0tLS0m6mHSUE5iVsqSh4hGQ5XfnMe6yluSZhcRwtLS0tLS0tLS0tLe2btelVxpJMc/unhWvNnymVPtif7UmPKC0tLS0tLS0tLS0t7Yu06yA3/a+81dPSWy72pdPG4+oeLS0tLS0tLS0tLS3te7THIkCWjdHOsGZtSoLtp3N5lYcpkpaWlpaWlpaWlpaW9pXaxCsZs50eeYU8OeZJIyONi8wRdqymlNDS0tLS0tLS0tLS0u6hPboxkNdiouSUGNuttVN2/DvVPVpaWlpaWlpaWlpa2q20Zxfurhwqy6iSYzHpf7rHdD1aWlpaWlpaWlpaWtp9tO29fxbn1rP3015suZJXF8fl0Se0tLS0tLS0tLS0tLT7aGvjY7lIPZBkJQmObqD/EaZHTttj09LS0tLS0tLS0tLS7qL9/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817W9ibLveeVntBwAAAABJRU5ErkJggg==" + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9ce0d64779d54724a4f0e3d8", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/payments/55096573577/ticket?caller_id=1310149122&hash=90c37e8f-66e2-44f0-8c67-647e232f6bda", + "revision": "5a62d4cb5b954c9d841a7f58", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d1271752040000530398654071009.905802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter5509657357763045E7D", + "revision": "0e12bd28d61c4499bc106f35", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIy0lEQVR42u3dW47jNhAFUO5A+9+ldqBgkMdYrFu0ggRBRjz+MNwtSzry30UVi+P6hV7noKWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaX997Vjfh0//nf8deDPTz/OGj8/TRf44+jxeZfpQLnU8TtlfN7txqClpaWlpaWlpaWlpd1EO93iKDFuhNcn+ZyvfrvjmZ+vaFsGLS0tLS0tLS0tLS3tBtopQE4npK/8Qb7uxp+86/PTlBM/D7TBlZaWlpaWlpaWlpaWdm/tVHS7RcTQFplKcnNlsNwyvdHS0tLS0tLS0tLS0tLGiHiFZJnyX1P7m5owP59vhKBJS0tLS0tLS0tLS0u7n3aBn5bETaedy6LgKKhy4Pje/ElLS0tLS0tLS0tLS/t2bTul5L99+6czVWhpaWlpaWlpaWlpaX9RbX6dechIeapbce6ziNcup6ur4b5baGlpaWlpaWlpaWlp3609u9GQ6cCtsLd+jHKp1cz/6St9iqSlpaWlpaWlpaWlpX2bdrpmu1wtxcv2MfIDPVtnVyah0NLS0tLS0tLS0tLSbqD9vOPIC9zKLMjbpth5oH86cHWbbN9+jO89orS0tLS0tLS0tLS0tO/RphEkqaaXPrVbZh+lfpe6LtO+a19SJC0tLS0tLS0tLS0t7cu1paaX2iKnrFf/nAp7U3mwjau5RZOWlpaWlpaWlpaWlvbd2nKlqUuylt/C5UY6d51Kv4XPi5aWlpaWlpaWlpaWdhPtVFabCmwlLI6QDpNxasycZEco56Vb0tLS0tLS0tLS0tLSbqDNFz5zw+V0NFUG21kni+GUR6gqXrS0tLS0tLS0tLS0tJto00bUZQlbbalMS+LKWMlcqxupnJcbOGlpaWlpaWlpaWlpabfQNtNHEjQHvpaXNgg4855tJYFetLS0tLS0tLS0tLS022iPsCBtGv44RtyfrcjSmrrRjew/l8W+g5aWlpaWlpaWlpaWdhtt0yo5DSNpJ/gvlrqNbhfsZq7Jk65LWlpaWlpaWlpaWlrat2nTfUrGTGNJmjmSZeVbKiMe4c+65zYtLS0tLS0tLS0tLe0m2tWMx6nsl0dIpqGT4/4YjTHvIXCsUiQtLS0tLS0tLS0tLe3btNNquPDdftRk6qFM6+emq0wFwJQ2H04poaWlpaWlpaWlpaWlfYF2mj4yVe0WK+S+7oJdfof0Y0zG712XtLS0tLS0tLS0tLS0L9WOMOOxBsM8VjKR0+5tzbjI0nU5+umRtLS0tLS0tLS0tLS079MuAuTRLWE7w9z+o8TB1FeZF9Fd3bI7WlpaWlpaWlpaWlraDbSpLjedP5Xp2iklKVmW57u6qf5T2qSlpaWlpaWlpaWlpd1He93LapPiDLHxKrzUmFmGljTJMrVyPpl1SUtLS0tLS0tLS0tL+w7tZw/luLdZtrc98qSRcoFUD7zCGP/mXFpaWlpaWlpaWlpa2i207fltWMxr2+q5i6n+TWLMo0poaWlpaWlpaWlpaWm30ibZt0VvdZDJYvTJFRJo+2PQ0tLS0tLS0tLS0tJuoF3kujpfJCS8kZLg8+3VUgKlpaWlpaWlpaWlpaXdT/stE14hVF6LzslUqys/wbjvHDA1f9LS0tLS0tLS0tLS0u6i/Uxz436lq6yVa8eXlH3XGk+e279+0dLS0tLS0tLS0tLSvl17ho7II5BH2Rk7nVGSYJ08mQej1B+IlpaWlpaWlpaWlpZ2C+1Uzitj/Nedk81ebFN3Zn6Cupd23iOblpaWlpaWlpaWlpb23dqyB/XtmikYFsqDPs2rjCBJ4yfTVWhpaWlpaWlpaWlpad+vXbQ7jgcZMzVcliR4dRW/K2+eTUtLS0tLS0tLS0tLu5N2de+2LTJFztTKWRbCnSGVHuG+tLS0tLS0tLS0tLS0u2gnSm6GrI+WNrGeLpqeOf1A6Za0tLS0tLS0tLS0tLQ7aWt8+0yMqxVy5Su1kle2UrvyJtvpDFpaWlpaWlpaWlpa2u20tThXHqNds3aVQSZ5XGRzt+VO27S0tLS0tLS0tLS0tG/WrmtwaTVcHvc/PWTahq0m1RJXc7alpaWlpaWlpaWlpaV9s7Ydtl+S4LGMg+3gkStvBjAJcsmQlpaWlpaWlpaWlpZ2A20pv4379JErZMc6LnIa2Z8y5nrIfzmXlpaWlpaWlpaWlpZ2F23Odc1ytdIleeU7truypQElbY6lpaWlpaWlpaWlpaXdRHssd7Ie93mOaYFbSqAjLHBLhcJ1xqSlpaWlpaWlpaWlpd1A2zZNpkyYym+fDzTKcJP0aE8XzNHS0tLS0tLS0tLS0m6mXUwpScNIUsHuXPRurguA7Y9BS0tLS0tLS0tLS0u7mTYly1Lxm27WNmbeKoNtn2aOkhctLS0tLS0tLS0tLe1O2hIWV/uk5S9PyfIqtb/pbQqay8V2tLS0tLS0tLS0tLS0b9YWzxnqbefzHdjaLs626zL3adLS0tLS0tLS0tLS0m6mHSUE5iVsqSh4hGQ5XfnMe6yluSZhcRwtLS0tLS0tLS0tLe2btelVxpJMc/unhWvNnymVPtif7UmPKC0tLS0tLS0tLS0t7Yu06yA3/a+81dPSWy72pdPG4+oeLS0tLS0tLS0tLS3te7THIkCWjdHOsGZtSoLtp3N5lYcpkpaWlpaWlpaWlpaW9pXaxCsZs50eeYU8OeZJIyONi8wRdqymlNDS0tLS0tLS0tLS0u6hPboxkNdiouSUGNuttVN2/DvVPVpaWlpaWlpaWlpa2q20Zxfurhwqy6iSYzHpf7rHdD1aWlpaWlpaWlpaWtp9tO29fxbn1rP3015suZJXF8fl0Se0tLS0tLS0tLS0tLT7aGvjY7lIPZBkJQmObqD/EaZHTttj09LS0tLS0tLS0tLS7qL9/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817W9ibLveeVntBwAAAABJRU5ErkJggg==", + "revision": "85b3de77b7b44d6e971ac935", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "6e764d158b5f4c97a12e8d4c", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1106,96 +2163,192 @@ "total_amount": 1009.9, "history_id": 1677357024740, "id": 55096573577, - "date_created": "2023-02-25T16:30:25.343-04:00", - "date_last_updated": "2023-02-25T16:30:25.343-04:00", - "date_of_expiration": "2023-02-26T16:30:25.167-04:00", + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0005.2314.7298.6693-13" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "00b9c187dec7426fa7ab7477", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "823fa0fb695c4b37ba321e25", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bf93d86e4cf849368e060db5", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "Paulo Fagner de Oliveira" + "account_holder_name": "Paulo Fagner de Oliveira", + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7d9fe18fce2b4ac7b359443b", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "398440094e704ac891240ae4", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.34650000000000003 + "amount": 0.34650000000000003, + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fc95f479f033447a90d30e2f", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 35.35, "overpaid_amount": 0, "installment_amount": 0, - "ticket_url": "https://www.mercadopago.com.br/payments/55102778083/ticket?caller_id=1310149122&hash=732fd12f-b6ab-488b-bf46-c6e842577653", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIyElEQVR42u3dW47jNhAFUO5A+9+ldqAgyMti3aKVTBBkxKOPRnfblg79V6jXuH6i6xy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tP++dszX8ev/jj9f+OO3Xz/1cU03+P3V47e7jz+fM6Zn/P6/25s/n3Zj0NLS0tLS0tLS0tLSbqI9PkO26c/PuzdnSdC/3pcOlD67YNDS0tLS0tLS0tLS0m6gnSjTBz5DySkmvJ2qRJFNpFrCy2PBoKWlpaWlpaWlpaWl3VPbZPJKTm/ypOPeIsspxiw/aGlpaWlpaWlpaWlpae9lluk5kzYVTT4vvUx3oaWlpaWlpaWlpaWl3U+b8bVDrpzgLN1rn+9r++em0svrh2pEaWlpaWlpaWlpaWlpf3ZtO6Xkv/3xozNVaGlpaWlpaWlpaWlpf1Jtvs6SiJsSdmWsZJv2q55804WFlpaWlpaWlpaWlpb23dqzRHA5iXfcp0LeDtReZYz/1E53hhmUi+weLS0tLS0tLS0tLS3tS7Wfv02damc3JHKKNq8wVvIskyJTi91UiRkeSUtLS0tLS0tLS0tL+2ZtuUltf8vJuZZ3lbgzrWH7fNDIQ0toaWlpaWlpaWlpaWn30ZYxIhP5KtvWplhvel+qyUzHbWdL0tLS0tLS0tLS0tLSbqbN+DOUVKYCydF5UqvbmXvl0ldFS0tLS0tLS0tLS0u7hfYzCFwNIynT+o/uaC2gjROvLsakpaWlpaWlpaWlpaXdQJtniaTU3bkIEdMMk1KJOb25fgW5V46WlpaWlpaWlpaWlvbd2nTlzrdpNklTjrnIDI7Q73YuIktaWlpaWlpaWlpaWtottFPn23ST3L12lv65BPhsibvuJ62PTOsDaGlpaWlpaWlpaWlpt9C2c/ZTArDUWrZxZ7OLLYSI9fSPdhDQ0tLS0tLS0tLS0tK+R9vKUnh5lYAvT/A/QxSZhpu0rx60tLS0tLS0tLS0tLTbaFPU16xIS3HndL7pQPku02bs6VbLGlFaWlpaWlpaWlpaWtqXaq8SDrbZuMk4UVLnW5aliDF/N7S0tLS0tLS0tLS0tG/Wrkc5lldrFjA1x5X71TixjVRL8SctLS0tLS0tLS0tLe3btWn44/Vl/1kdCJmG/FdyejUPMjloaWlpaWlpaWlpaWk30YYX458PgsB0lnUsWuLOR1WXtLS0tLS0tLS0tLS0b9SOsvCsRIptM1uaD3l2z66vliLM8WXWJS0tLS0tLS0tLS0t7au0pbftLCm+9L40OLJ0w32dLVnC0PNLFElLS0tLS0tLS0tLS/s+bZ7CP3lGSPGdXa3lkePT6X2L4POgpaWlpaWlpaWlpaXdS5tKII9yllRhmTra2tmS32LHf7IbjpaWlpaWlpaWlpaW9gXa6Yl5+kgTaKZ5JW3ImZN96/JOWlpaWlpaWlpaWlraDbQPGtK+3X3k+O/vR4x5VAktLS0tLS0tLS0tLe0G2gnVdq+FishV2DgWVZc55Hyei6SlpaWlpaWlpaWlpX2LNmXUvg2JbIf8X+GFWo7Ztr+VVCAtLS0tLS0tLS0tLe0u2pK1OxY5vZwATJWT9S3rjQB5KxstLS0tLS0tLS0tLe27tVOaLp/gyJNLUhRZPNcdcI46ujJZaGlpaWlpaWlpaWlpt9KW2SRNTu9btJkWaqfp/2kwSh1JSUtLS0tLS0tLS0tLu4W2PGcK7s6c7GuXpaXwsqCmE9TfaGlpaWlpaWlpaWlp99GmJF472TGP52+KJj/LLJvT5xa7g5aWlpaWlpaWlpaWdidtieueBZDtUuwcXtasXTpzmvlPS0tLS0tLS0tLS0v7fu0oK67bzWqpa650ud1KL/OfKYBMN6WlpaWlpaWlpaWlpd1H2+TvUqBZknh5RVodDTm+3flxFElLS0tLS0tLS0tLS/sq7dGl2q77s+vVlkquz5KXbNdP0NLS0tLS0tLS0tLSbqFN4x1LSJfa1Uboi5vWY59lj1up9ryVd3YWWlpaWlpaWlpaWlra12uncSMpEkxVlylNt2xrixm/3Bx30NLS0tLS0tLS0tLS7qTNhY816is5uBr/LSZKjvtZat3nk6n+tLS0tLS0tLS0tLS0b9Oup5SkWZBTWWT5RD3fFCe2p38y1Z+WlpaWlpaWlpaWlvZ92qP0u6WBkCUfWJ+TyizTzP88avJ6UnVJS0tLS0tLS0tLS0v7Pm0pvTzCArUmCExpupwAHGU/W6rxLN8XLS0tLS0tLS0tLS3tFto6GrItlWyXWOfd12dorGurLuv2bVpaWlpaWlpaWlpa2i20+WFpQ/W5nE3yILuXRk22M1FoaWlpaWlpaWlpaWn30Y7FVMg0N+T5erWpz269ALuJaGlpaWlpaWlpaWlpad+uLVHfCLymra0d2V8Wap+LqsuyeHuZi6SlpaWlpaWlpaWlpX2bNnWvfX5qFFSKGPN8kRqGpqrLdcxKS0tLS0tLS0tLS0u7iXbc71lrKMtjp2TfWJRtprOkas/yFdDS0tLS0tLS0tLS0m6gTVdZfTbK2P1cQ1lPn/N8V+iku8oISVpaWlpaWlpaWlpa2i20Y76OLjC8FqP4203WeVxkuwB7PM7u0dLS0tLS0tLS0tLSvkd7hAAyoc571m6UzrdcxZlu2kzwfxJF0tLS0tLS0tLS0tLSvlKbQ7pjMRUyBZopIA3P7iPV6ZG0tLS0tLS0tLS0tLR7a8vwkDOvwn7QTlfqNJvY8WF2j5aWlpaWlpaWlpaWdg/tZ+pu5JH9efDIdW+TG7lhbrpfasWjpaWlpaWlpaWlpaXdR7uuuiy3G2FtWjNCMnXcrZvjfrQbjpaWlpaWlpaWlpaW9qfTplLJpvNtSsTl+SI3fNrAttjUlhe80dLS0tLS0tLS0tLSvln7/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817S/WesxQ9BOm/QAAAABJRU5ErkJggg==", - "qr_code": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540535.355802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter55102778083630472DE" + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ee92908524754157bd00c89c", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/payments/55102778083/ticket?caller_id=1310149122&hash=732fd12f-b6ab-488b-bf46-c6e842577653", + "revision": "144a83de7f48460aa658b8e2", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIyElEQVR42u3dW47jNhAFUO5A+9+ldqAgyMti3aKVTBBkxKOPRnfblg79V6jXuH6i6xy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tP++dszX8ev/jj9f+OO3Xz/1cU03+P3V47e7jz+fM6Zn/P6/25s/n3Zj0NLS0tLS0tLS0tLSbqI9PkO26c/PuzdnSdC/3pcOlD67YNDS0tLS0tLS0tLS0m6gnSjTBz5DySkmvJ2qRJFNpFrCy2PBoKWlpaWlpaWlpaWl3VPbZPJKTm/ypOPeIsspxiw/aGlpaWlpaWlpaWlpae9lluk5kzYVTT4vvUx3oaWlpaWlpaWlpaWl3U+b8bVDrpzgLN1rn+9r++em0svrh2pEaWlpaWlpaWlpaWlpf3ZtO6Xkv/3xozNVaGlpaWlpaWlpaWlpf1Jtvs6SiJsSdmWsZJv2q55804WFlpaWlpaWlpaWlpb23dqzRHA5iXfcp0LeDtReZYz/1E53hhmUi+weLS0tLS0tLS0tLS3tS7Wfv02damc3JHKKNq8wVvIskyJTi91UiRkeSUtLS0tLS0tLS0tL+2ZtuUltf8vJuZZ3lbgzrWH7fNDIQ0toaWlpaWlpaWlpaWn30ZYxIhP5KtvWplhvel+qyUzHbWdL0tLS0tLS0tLS0tLSbqbN+DOUVKYCydF5UqvbmXvl0ldFS0tLS0tLS0tLS0u7hfYzCFwNIynT+o/uaC2gjROvLsakpaWlpaWlpaWlpaXdQJtniaTU3bkIEdMMk1KJOb25fgW5V46WlpaWlpaWlpaWlvbd2nTlzrdpNklTjrnIDI7Q73YuIktaWlpaWlpaWlpaWtottFPn23ST3L12lv65BPhsibvuJ62PTOsDaGlpaWlpaWlpaWlpt9C2c/ZTArDUWrZxZ7OLLYSI9fSPdhDQ0tLS0tLS0tLS0tK+R9vKUnh5lYAvT/A/QxSZhpu0rx60tLS0tLS0tLS0tLTbaFPU16xIS3HndL7pQPku02bs6VbLGlFaWlpaWlpaWlpaWtqXaq8SDrbZuMk4UVLnW5aliDF/N7S0tLS0tLS0tLS0tG/Wrkc5lldrFjA1x5X71TixjVRL8SctLS0tLS0tLS0tLe3btWn44/Vl/1kdCJmG/FdyejUPMjloaWlpaWlpaWlpaWk30YYX458PgsB0lnUsWuLOR1WXtLS0tLS0tLS0tLS0b9SOsvCsRIptM1uaD3l2z66vliLM8WXWJS0tLS0tLS0tLS0t7au0pbftLCm+9L40OLJ0w32dLVnC0PNLFElLS0tLS0tLS0tLS/s+bZ7CP3lGSPGdXa3lkePT6X2L4POgpaWlpaWlpaWlpaXdS5tKII9yllRhmTra2tmS32LHf7IbjpaWlpaWlpaWlpaW9gXa6Yl5+kgTaKZ5JW3ImZN96/JOWlpaWlpaWlpaWlraDbQPGtK+3X3k+O/vR4x5VAktLS0tLS0tLS0tLe0G2gnVdq+FishV2DgWVZc55Hyei6SlpaWlpaWlpaWlpX2LNmXUvg2JbIf8X+GFWo7Ztr+VVCAtLS0tLS0tLS0tLe0u2pK1OxY5vZwATJWT9S3rjQB5KxstLS0tLS0tLS0tLe27tVOaLp/gyJNLUhRZPNcdcI46ujJZaGlpaWlpaWlpaWlpt9KW2SRNTu9btJkWaqfp/2kwSh1JSUtLS0tLS0tLS0tLu4W2PGcK7s6c7GuXpaXwsqCmE9TfaGlpaWlpaWlpaWlp99GmJF472TGP52+KJj/LLJvT5xa7g5aWlpaWlpaWlpaWdidtieueBZDtUuwcXtasXTpzmvlPS0tLS0tLS0tLS0v7fu0oK67bzWqpa650ud1KL/OfKYBMN6WlpaWlpaWlpaWlpd1H2+TvUqBZknh5RVodDTm+3flxFElLS0tLS0tLS0tLS/sq7dGl2q77s+vVlkquz5KXbNdP0NLS0tLS0tLS0tLSbqFN4x1LSJfa1Uboi5vWY59lj1up9ryVd3YWWlpaWlpaWlpaWlra12uncSMpEkxVlylNt2xrixm/3Bx30NLS0tLS0tLS0tLS7qTNhY816is5uBr/LSZKjvtZat3nk6n+tLS0tLS0tLS0tLS0b9Oup5SkWZBTWWT5RD3fFCe2p38y1Z+WlpaWlpaWlpaWlvZ92qP0u6WBkCUfWJ+TyizTzP88avJ6UnVJS0tLS0tLS0tLS0v7Pm0pvTzCArUmCExpupwAHGU/W6rxLN8XLS0tLS0tLS0tLS3tFto6GrItlWyXWOfd12dorGurLuv2bVpaWlpaWlpaWlpa2i20+WFpQ/W5nE3yILuXRk22M1FoaWlpaWlpaWlpaWn30Y7FVMg0N+T5erWpz269ALuJaGlpaWlpaWlpaWlpad+uLVHfCLymra0d2V8Wap+LqsuyeHuZi6SlpaWlpaWlpaWlpX2bNnWvfX5qFFSKGPN8kRqGpqrLdcxKS0tLS0tLS0tLS0u7iXbc71lrKMtjp2TfWJRtprOkas/yFdDS0tLS0tLS0tLS0m6gTVdZfTbK2P1cQ1lPn/N8V+iku8oISVpaWlpaWlpaWlpa2i20Y76OLjC8FqP4203WeVxkuwB7PM7u0dLS0tLS0tLS0tLSvkd7hAAyoc571m6UzrdcxZlu2kzwfxJF0tLS0tLS0tLS0tLSvlKbQ7pjMRUyBZopIA3P7iPV6ZG0tLS0tLS0tLS0tLR7a8vwkDOvwn7QTlfqNJvY8WF2j5aWlpaWlpaWlpaWdg/tZ+pu5JH9efDIdW+TG7lhbrpfasWjpaWlpaWlpaWlpaXdR7uuuiy3G2FtWjNCMnXcrZvjfrQbjpaWlpaWlpaWlpaW9qfTplLJpvNtSsTl+SI3fNrAttjUlhe80dLS0tLS0tLS0tLSvln7/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817S/WesxQ9BOm/QAAAABJRU5ErkJggg==", + "revision": "5300dcdf85b846c48599d74b", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540535.355802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter55102778083630472DE", + "revision": "58d6b393053a451eba37599e", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "fbc5bd61889e4b36acb6d47b", + "revision_nr": 1, + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1204,48 +2357,70 @@ "total_amount": 35.35, "history_id": 1677366880189, "id": 55102778083, - "date_created": "2023-02-25T19:14:40.808-04:00", - "date_last_updated": "2023-02-25T19:14:40.808-04:00", - "date_of_expiration": "2023-02-26T19:14:40.616-04:00", + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 35,00 para a carteira iVip 0005.2314.7298.6693-13" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "55dbc5b6e7ab49ca9427d661", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 35,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "54837e02c952492f87bb422d", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } + }, + "revision": "748fef3545e2455197e88e44", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1253,48 +2428,70 @@ "total_amount": 234.59, "history_id": 1677710195891, "id": 1677710195891, - "date_created": "2023-03-01T22:36:35.891Z", - "date_last_updated": "2023-03-01T22:36:35.891Z", - "date_of_expiration": "2023-03-31T22:36:35.891Z", + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL", - "payment_method": "whatsapp", - "description": "Deposito de um valor R$ 234,59 para a carteira iVip 0005.2314.7298.6693-13" + "payment_method": "whatsapp" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a4ed94dbc1a0424ca5f166b7", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 234,59 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "a7242fb72d6f450c86f9136d", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + } + }, + "revision": "3fbd94e6fc024816a0862091", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1302,9 +2499,18 @@ "total_amount": 35.99, "history_id": 1677710725908, "id": 1677710725908, - "date_created": "2023-03-01T22:45:25.908Z", - "date_last_updated": "2023-03-01T22:59:31.236Z", - "date_of_expiration": "2023-03-31T22:45:25.908Z", + "date_created": { + "type": 6, + "value": 1701459383463 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383463 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383463 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -1314,41 +2520,54 @@ "money_release_status": "approved", "wasDebited": true, "payment_method_id": "whatsapp", - "payment_method": "whatsapp", - "description": "Deposito de um valor R$ 35,99 para a carteira iVip 0005.2314.7298.6693-13" + "payment_method": "whatsapp" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "62f9ca7a929949a4ac37d79f", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 35,99 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "541ca9f50c6f4ae89644fcaf", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383463, + "modified": 1701459383463 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383464 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383464 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383464 + } + }, + "revision": "bb29d837449e4497aa47297e", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1356,9 +2575,18 @@ "total_amount": 450.32, "history_id": 1677711669840, "id": 1677711669840, - "date_created": "2023-03-01T23:01:09.840Z", - "date_last_updated": "2023-03-01T23:09:24.561Z", - "date_of_expiration": "2023-03-31T23:01:09.840Z", + "date_created": { + "type": 6, + "value": 1701459383464 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383464 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383464 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -1368,41 +2596,54 @@ "date_approved": "2023-03-01T23:09:24.561Z", "wasDebited": true, "payment_method_id": "whatsapp", - "payment_method": "whatsapp", - "description": "Deposito de um valor R$ 450,32 para a carteira iVip 0005.2314.7298.6693-13" + "payment_method": "whatsapp" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "007aa6a337c94b01b24f10cc", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 450,32 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "7ade30f495cf4f58a3be0233", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383464 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383464 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383464 + } + }, + "revision": "d14ff71dc07c469fba8a16b5", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1411,49 +2652,71 @@ "total_amount": 600.2, "history_id": 1677716372778, "id": 1677716372778, - "date_created": "2023-03-02T00:19:32.778Z", - "date_last_updated": "2023-03-02T00:20:44.134Z", - "date_of_expiration": "2023-04-01T00:19:32.778Z", + "date_created": { + "type": 6, + "value": 1701459383464 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383464 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383464 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-03-02T00:20:44.134Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 600,20 para a carteira iVip 0005.2314.7298.6693-13" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3b4ec0110e674a8bac9f66cc", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 600,20 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "2b86b4f323634573a4b3978d", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383464 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383464 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383464 + } + }, + "revision": "4a291b437257476ab04975a9", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1462,49 +2725,71 @@ "total_amount": 602.99, "history_id": 1677721233156, "id": 1677721233156, - "date_created": "2023-03-02T01:40:33.156Z", - "date_last_updated": "2023-03-02T02:17:46.177Z", - "date_of_expiration": "2023-04-01T01:40:33.156Z", + "date_created": { + "type": 6, + "value": 1701459383464 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383464 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383464 + }, "operation_type": "regular_payment", "status": "in_process", "status_detail": "pending_review_manual", "currency_id": "BRL", "money_release_date": "2023-03-02T02:17:46.177Z", - "money_release_status": "in_process", - "description": "Deposito de um valor R$ 602,99 para a carteira iVip 0005.2314.7298.6693-13" + "money_release_status": "in_process" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0dab1d25dafc4dd0b1edc5d0", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 602,99 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "965190165a8548c294201812", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383464 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383464 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383464 + } + }, + "revision": "c80de7fa58044a51bed78cd4", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1513,49 +2798,71 @@ "total_amount": 34.89, "history_id": 1677761687105, "id": 1677761687105, - "date_created": "2023-03-02T12:54:47.105Z", - "date_last_updated": "2023-03-02T12:58:14.846Z", - "date_of_expiration": "2023-04-01T12:54:47.105Z", + "date_created": { + "type": 6, + "value": 1701459383464 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383464 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383464 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", "money_release_date": "2023-03-02T12:58:14.846Z", - "money_release_status": "cancelled", - "description": "Deposito de um valor R$ 34,89 para a carteira iVip 0005.2314.7298.6693-13" + "money_release_status": "cancelled" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7852f6a6eb2343f1a559cfa9", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 34,89 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "e40fc0f09d3b49899f5efd83", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383464 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383464 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383464 + } + }, + "revision": "9a62e94338614fc4af1fed50", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1564,9 +2871,18 @@ "total_amount": 43.78, "history_id": 1677762883870, "id": 1677762883870, - "date_created": "2023-03-02T13:14:43.870Z", - "date_last_updated": "2023-03-02T13:17:43.393Z", - "date_of_expiration": "2023-04-01T13:14:43.870Z", + "date_created": { + "type": 6, + "value": 1701459383464 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383464 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383464 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -1574,41 +2890,54 @@ "date_approved": "2023-03-02T13:17:43.393Z", "money_release_date": "2023-03-02T13:17:43.393Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 43,78 para a carteira iVip 0005.2314.7298.6693-13" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bb107a2c23cc4b15887e8242", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 43,78 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "dfa1d143ab174e6ebe06b232", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383464 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383464 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383464 + } + }, + "revision": "2573a7df0b09419198be5b5e", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1617,9 +2946,18 @@ "total_amount": 29.91, "history_id": 1677822431645, "id": 1677822431645, - "date_created": "2023-03-03T05:47:11.645Z", - "date_last_updated": "2023-03-03T05:48:12.770Z", - "date_of_expiration": "2023-04-02T05:47:11.645Z", + "date_created": { + "type": 6, + "value": 1701459383464 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383464 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383464 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -1627,41 +2965,54 @@ "date_approved": "2023-03-03T05:48:12.770Z", "money_release_date": "2023-03-03T05:48:12.770Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 29,91 para a carteira iVip 0005.2314.7298.6693-13" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "278c7e296b1a473fac298356", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 29,91 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "ed1b94f88e6d4bf6b069120e", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383464, + "modified": 1701459383464 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + } + }, + "revision": "5cc6da4a2847422ab86e7f4d", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1670,9 +3021,18 @@ "total_amount": 50, "history_id": 1677831643976, "id": 1677831643976, - "date_created": "2023-03-03T08:20:43.976Z", - "date_last_updated": "2023-03-03T08:23:18.262Z", - "date_of_expiration": "2023-04-02T08:20:43.976Z", + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -1680,41 +3040,54 @@ "date_approved": "2023-03-03T08:23:18.262Z", "money_release_date": "2023-03-03T08:23:18.262Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1299748133c94af19a5a1841", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "7c2247385d0545d190677331", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + } + }, + "revision": "bd7f488f7e4d465c9b415c8a", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1723,38 +3096,46 @@ "total_amount": 100, "history_id": 1677952604160, "id": 1677952604160, - "date_created": "2023-03-04T17:56:44.160Z", - "date_last_updated": "2023-03-13T13:32:24.731Z", - "date_of_expiration": "2023-04-03T17:56:44.160Z", + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-03-13T13:32:24.731Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0005.2314.7298.6693-13" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d907f7a4f30e4aa19f297d0c", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033196645/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "88e9692ac3be47a79f4f4e1a", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033196645/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678033196645, @@ -1765,18 +3146,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2318d02a42b547d3af171966", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033196645", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -1786,9 +3180,18 @@ "original_amount": 141586, "total_amount": 141586, "id": 1678033196645, - "date_created": "2023-03-05T16:19:56.645Z", - "date_last_updated": "2023-03-05T16:19:56.645Z", - "date_of_expiration": "2023-03-05T16:19:56.645Z", + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -1797,27 +3200,16 @@ "history_id": 1678033196645, "description": "Compra de 141586 IVIP por 20 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "791f092ad19c4fff80f48fd2", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033334564/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033334564/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678033334564, @@ -1828,18 +3220,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "108946646a454a93a16ec16a", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033334564", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -1849,9 +3254,18 @@ "original_amount": 269014, "total_amount": 269014, "id": 1678033334564, - "date_created": "2023-03-05T16:22:14.564Z", - "date_last_updated": "2023-03-05T16:22:14.564Z", - "date_of_expiration": "2023-03-05T16:22:14.564Z", + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -1860,27 +3274,16 @@ "history_id": 1678033334564, "description": "Compra de 269014 IVIP por 38 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "81f484b8ba484a6f9d2c4b9f", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033849155/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033849155/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678033849155, @@ -1891,18 +3294,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7779848f38ed4105911c180c", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033849155", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -1912,9 +3328,18 @@ "original_amount": 297331, "total_amount": 297331, "id": 1678033849155, - "date_created": "2023-03-05T16:30:49.155Z", - "date_last_updated": "2023-03-05T16:30:49.155Z", - "date_of_expiration": "2023-03-05T16:30:49.155Z", + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -1923,27 +3348,16 @@ "history_id": 1678033849155, "description": "Compra de 297331 IVIP por 42 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "18a8a45fe3ce4304838ee2d2", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034274118/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034274118/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678034274118, @@ -1954,18 +3368,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cc38468c71db4746ad1bbbfd", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034274118", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -1975,9 +3402,18 @@ "original_amount": 141660, "total_amount": 141660, "id": 1678034274118, - "date_created": "2023-03-05T16:37:54.118Z", - "date_last_updated": "2023-03-05T16:37:54.118Z", - "date_of_expiration": "2023-03-05T16:37:54.118Z", + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -1986,27 +3422,16 @@ "history_id": 1678034274118, "description": "Compra de 141660 IVIP por 20 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2d9cbc69871540a4ba7380b8", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034346295/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034346295/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678034346295, @@ -2017,18 +3442,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3fb836f858524fe8ad00488d", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034346295", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -2038,9 +3476,18 @@ "original_amount": 141586, "total_amount": 141586, "id": 1678034346295, - "date_created": "2023-03-05T16:39:06.295Z", - "date_last_updated": "2023-03-05T16:39:06.295Z", - "date_of_expiration": "2023-03-05T16:39:06.295Z", + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2049,27 +3496,16 @@ "history_id": 1678034346295, "description": "Compra de 141586 IVIP por 20 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034463284/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "968f157bdf3c4580a06a4ca2", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034463284/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678034463284, @@ -2080,18 +3516,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4733d233abb542519ff5d1a0", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034463284", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -2101,9 +3550,18 @@ "original_amount": 424981, "total_amount": 424981, "id": 1678034463284, - "date_created": "2023-03-05T16:41:03.284Z", - "date_last_updated": "2023-03-05T16:41:03.284Z", - "date_of_expiration": "2023-03-05T16:41:03.284Z", + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2112,27 +3570,16 @@ "history_id": 1678034463284, "description": "Compra de 424981 IVIP por 60 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c4c2a1ac0c7543e3b1266e9f", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034665927/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034665927/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678034665927, @@ -2143,18 +3590,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7c494957eb8e4172a9548ce4", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034665927", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -2164,9 +3624,18 @@ "original_amount": 141586, "total_amount": 141586, "id": 1678034665927, - "date_created": "2023-03-05T16:44:25.927Z", - "date_last_updated": "2023-03-05T16:44:25.927Z", - "date_of_expiration": "2023-03-05T16:44:25.927Z", + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2175,27 +3644,16 @@ "history_id": 1678034665927, "description": "Compra de 141586 IVIP por 20 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678041814665/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "498a7f2361794bb6bba606d1", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678041814665/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678041814665, @@ -2206,18 +3664,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4f748ced26dd47d398dd5f67", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678041814665", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -2227,49 +3698,71 @@ "original_amount": 2000, "total_amount": 2000, "id": 1678041814665, - "date_created": "2023-03-05T18:43:34.665Z", - "date_last_updated": "2023-03-05T18:43:34.665Z", - "date_of_expiration": "2023-03-05T18:43:34.665Z", + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1678041814665, - "description": "Ganho 10% na pré-venda ao indicar o nosso aplicativo" + "history_id": 1678041814665 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "019a9774a5264f7c89677179", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678041814665/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho 10% na pré-venda ao indicar o nosso aplicativo", + "revision": "970010cd7e144f8e96748525", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + } + }, + "revision": "ea98c3299bec4414a6dc202c", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -2278,38 +3771,46 @@ "total_amount": 60, "history_id": 1678047987815, "id": 1678047987815, - "date_created": "2023-03-05T20:26:27.815Z", - "date_last_updated": "2023-03-13T13:43:04.618Z", - "date_of_expiration": "2023-04-04T20:26:27.815Z", + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-03-13T13:43:04.618Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 60,00 para a carteira iVip 0005.2314.7298.6693-13" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d74d32a8ab3044099e9d0e11", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678160538199/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 60,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "14dd8550cb1c4a9a9443c074", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678160538199/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678160538199, @@ -2320,18 +3821,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8ae52924e15b46b9abb722a2", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678160538199", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -2341,9 +3855,18 @@ "original_amount": 14306893, "total_amount": 14306893, "id": 1678160538199, - "date_created": "2023-03-07T03:42:18.199Z", - "date_last_updated": "2023-03-07T03:42:18.199Z", - "date_of_expiration": "2023-03-07T03:42:18.199Z", + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2352,27 +3875,16 @@ "history_id": 1678160538199, "description": "Compra de 14306893 IVIP por 2000 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f28e9aa8121f4b018e097fce", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678284807612/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678284807612/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678284807612, @@ -2383,18 +3895,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "88fddc192e764aaaa0f3a3cc", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678284807612", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -2404,9 +3929,18 @@ "original_amount": 142846, "total_amount": 142846, "id": 1678284807612, - "date_created": "2023-03-08T14:13:27.612Z", - "date_last_updated": "2023-03-08T14:13:27.612Z", - "date_of_expiration": "2023-03-08T14:13:27.612Z", + "date_created": { + "type": 6, + "value": 1701459383465 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383465 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383465 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2415,42 +3949,65 @@ "history_id": 1678284807612, "description": "Compra de 142846 IVIP por 20 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b6883fb43d7b4e19b3f66eec", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383465, + "modified": 1701459383465 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 32 + "amount": 32, + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "59164f044cba487cabd54757", "revision_nr": 1, - "created": 1700748395454, - "modified": 1700748395454 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details", "content": { - "type": 1, + "type": "OBJECT", + "value": {}, + "revision": "5bff836170004ca6910044f3", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details/costs", + "content": { + "type": "ARRAY", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ce8dcfe82d3c4215a86d22bb", "revision_nr": 1, - "created": 1700748395455, - "modified": 1700748395455 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -2459,52 +4016,94 @@ "total_amount": 432, "history_id": 1678325359354, "id": 1678325359354, - "date_created": "2023-03-09T01:29:19.354Z", - "date_last_updated": "2023-03-09T01:29:19.354Z", - "date_of_expiration": "2023-04-08T01:29:19.354Z", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês e liberação final" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3d295ecaaa68463d897b6c8d", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês e liberação final", + "revision": "4169a9cce4224b7888125a99", "revision_nr": 1, - "created": 1700748395455, - "modified": 1700748395455 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9c80f8b651b148beb3f4da28", "revision_nr": 1, - "created": 1700748395455, - "modified": 1700748395455 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7a1e5084d77a469bb570b066", "revision_nr": 1, - "created": 1700748395455, - "modified": 1700748395455 + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "7f4bc2b744d840fa9419ca2e", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -2513,54 +4112,96 @@ "total_amount": 3120, "history_id": 1678400755247, "id": 1678400755247, - "date_created": "2023-03-09T22:25:55.247Z", - "date_last_updated": "2023-03-09T22:27:52.142Z", - "date_of_expiration": "2023-04-08T22:25:55.247Z", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "date_approved": "2023-03-09T22:27:52.142Z", "money_release_date": "2023-03-09T22:27:52.142Z", - "money_release_status": "approved", - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 3.120,00" + "money_release_status": "approved" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6088113ac6a5467e9c74988c", "revision_nr": 1, - "created": 1700748395455, - "modified": 1700748395455 + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 3.120,00", + "revision": "ded28b009558430c8ced3a17", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 16 + "amount": 16, + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b60f9f0a2e604721a41163ba", "revision_nr": 1, - "created": 1700748395455, - "modified": 1700748395455 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4d8701c809b945279e4899ef", "revision_nr": 1, - "created": 1700748395455, - "modified": 1700748395455 + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "00d1975be2e643a2ba8f2303", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -2569,9 +4210,18 @@ "total_amount": 416, "history_id": 1678401099895, "id": 1678401099895, - "date_created": "2023-03-09T22:31:39.895Z", - "date_last_updated": "2023-03-09T22:32:36.010Z", - "date_of_expiration": "2023-04-08T22:31:39.895Z", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -2579,45 +4229,78 @@ "date_approved": "2023-03-09T22:32:36.010Z", "money_release_date": "2023-03-09T22:32:36.010Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 416,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fbedd7f9776748299a4c640c", "revision_nr": 1, - "created": 1700748395455, - "modified": 1700748395455 + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 416,00", + "revision": "8d299e14105f4fd390cba705", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 9 parcela(s) 18.00%", - "amount": 108 + "amount": 108, + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0fcee11bbfc341c1ad29a356", "revision_nr": 1, - "created": 1700748395455, - "modified": 1700748395455 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details", "content": { - "type": 1, + "type": "OBJECT", + "value": {}, + "revision": "aaae07c5c1c4469cb1acf0ca", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details/costs", + "content": { + "type": "ARRAY", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d3b9ff19b38f48d6bfc8a37d", "revision_nr": 1, - "created": 1700748395455, - "modified": 1700748395455 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -2626,53 +4309,95 @@ "total_amount": 708, "history_id": 1678401292954, "id": 1678401292954, - "date_created": "2023-03-09T22:34:52.954Z", - "date_last_updated": "2023-03-09T22:35:45.264Z", - "date_of_expiration": "2023-04-08T22:34:52.954Z", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-03-09T22:35:45.264Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 600,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 9 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 708,00" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aed5ec8676c14e2f98a9bd59", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 600,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 9 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 708,00", + "revision": "00f609f0618948d8a1f6f845", "revision_nr": 1, - "created": 1700748395455, - "modified": 1700748395455 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 12 + "amount": 12, + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "61d35964947b4cdcb3249775", "revision_nr": 1, - "created": 1700748395455, - "modified": 1700748395455 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details", "content": { - "type": 1, + "type": "OBJECT", + "value": {}, + "revision": "e4447345ac3444b7877d1678", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details/costs", + "content": { + "type": "ARRAY", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "04852a11beec42c9bd06cb70", "revision_nr": 1, - "created": 1700748395455, - "modified": 1700748395455 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -2681,9 +4406,18 @@ "total_amount": 312, "history_id": 1678401795273, "id": 1678401795273, - "date_created": "2023-03-09T22:43:15.273Z", - "date_last_updated": "2023-03-21T13:21:47.084Z", - "date_of_expiration": "2023-04-08T22:43:15.273Z", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -2691,47 +4425,81 @@ "date_approved": "2023-03-21T13:21:47.084Z", "money_release_date": "2023-03-21T13:21:47.084Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 300,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 312,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "484c707286294dd3b5e14af6", "revision_nr": 1, - "created": 1700748395455, - "modified": 1700748395455 + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 312,00", + "revision": "61fd62e0603d4dbabdb39663", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/barcode", "content": { - "type": 1, + "type": "OBJECT", "value": { - "content": "23796929000000023493380261020453727300633330" + "content": "23796929000000023493380261020453727300633330", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "92a69942c14345fa8a12b095", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", - "amount": 3.49 + "amount": 3.49, + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5a680a94fc614455b6db4d89", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": "10204537273", @@ -2742,18 +4510,51 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "bradesco", - "external_resource_url": "https://www.mercadopago.com.br/payments/55645430279/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55645430279&payment_method_reference_id=10204537273&hash=557e269b-6b88-40a8-b95a-ce41d6734e10" + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b42226aec4174048b2f4609c", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/payments/55645430279/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55645430279&payment_method_reference_id=10204537273&hash=557e269b-6b88-40a8-b95a-ce41d6734e10", + "revision": "b19d2da1bd3f4af1a770218f", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "0d3289d17e024607a8e27b36", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -2762,54 +4563,97 @@ "total_amount": 23.490000000000002, "history_id": 1678595791470, "id": 55645430279, - "date_created": "2023-03-12T00:36:32.384-04:00", - "date_last_updated": "2023-03-12T00:36:32.384-04:00", - "date_of_expiration": "2023-03-15T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f7ff018bafaa4bbb8811f780", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "b3b5b27b656244ceb3a65112", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/barcode", "content": { - "type": 1, + "type": "OBJECT", "value": { - "content": "23791929000000023493380261020453555300633330" + "content": "23791929000000023493380261020453555300633330", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6d66c854a4b54af0b9fb05e7", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", - "amount": 3.49 + "amount": 3.49, + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "47ecbff6f45742f8bb24f543", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": "10204535553", @@ -2820,18 +4664,51 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "bradesco", - "external_resource_url": "https://www.mercadopago.com.br/payments/55645448309/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55645448309&payment_method_reference_id=10204535553&hash=3a19b388-0268-4177-bbf8-d1aeb0efa481" + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4937d3aad429424eb7cd7e1b", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/payments/55645448309/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55645448309&payment_method_reference_id=10204535553&hash=3a19b388-0268-4177-bbf8-d1aeb0efa481", + "revision": "14b8391711b64c15aa2f72c2", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "53455147ddbc42ec90cf5983", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -2840,96 +4717,192 @@ "total_amount": 23.490000000000002, "history_id": 1678595892940, "id": 55645448309, - "date_created": "2023-03-12T00:38:13.379-04:00", - "date_last_updated": "2023-03-12T00:38:13.379-04:00", - "date_of_expiration": "2023-03-15T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1af24c2f88234c5681f0b1c2", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "ad9e6032e1774371a8b323c7", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "982cfe68d7a84152a2c64d2f", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "IVIPCOIN LTDA" + "account_holder_name": "IVIPCOIN LTDA", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4872ebed860941eb8c0c2cac", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "02f2cd2dcbb64317905c60be", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.198 + "amount": 0.198, + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c0191907de674ad7b710f725", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0, - "ticket_url": "https://www.mercadopago.com.br/payments/55645618353/ticket?caller_id=1310149122&hash=8fcfd6de-ecd4-4d03-89e3-76d87270fb3b", - "qr_code": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540520.205802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter556456183536304B75F", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJgElEQVR42u3dQZLiyA4G4PSKY3BUc1QfYZasyImKnoaUlC6oefEieuyPTRMNtj/XyhJ/Klv/419/NUZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGxj/beG/xdf31P+vvj369WXq//f7o12v5Onj79eb2+z/X13m3dvn6Z/jon/+pRw0nZGRkZGRkZGRkZDyLcfzwC1LfROP6usjXdx7hzrbXRS9fH63jmWeHTxmMjIyMjIyMjIyMZzDefj+tPy/769H+n+v31zP+syB4pKLh8rqzRzAOR9Vr3V8FCiMjIyMjIyMjI+PJjWPTfaBlderHP4YG/DrJwwz3cWdkZGRkZGRkZGRkzM/v3zTUn3XAyG+vwwd1LCzWcjgjIyMjIyMjIyPjyY09JlyWvRLh/srF5MPvqZ1fMzitlBr/Pt/DyMjIyMjIyMjI+F831rWkS+ms/3/e/C/rXRkZGRkZGRkZGRn/y8adV0ijx3Z+L7H0cK/PJaT30sW/9E9fjIyMjIyMjIyMjEc3PlK1cEllxHXsxz/T6I9h/mItNXoMvMcvh3tdPujZMzIyMjIyMjIyMh7UeE3/kyIzS6BtJfCe72ydzjjfCeOsjIyMjIyMjIyMjKc0rmPRkBd6tjKvZXutHM1zX/qkr1/T8ZdXqr0PK1kZGRkZGRkZGRkZz2K8p2DLNjX2WXamxUGMj9K8b+nOLq8qJNI2RkZGRkZGRkZGxnMZc4lQ5yZex3qil907W0ishy7+I015uZcvz34xYGRkZGRkZGRkZDy+cZaLGRvzvfcSkNn2cu6tjGkJsZo+US/phIyMjIyMjIyMjIwnMj7rgCEpcwklQtoFtG5MFC87iOLK0TQt5pMMOyMjIyMjIyMjI+PxjDl7filXG77TAj8/499i0VBnK47lSPtpvoeRkZGRkZGRkZHxMMYe4uRDrXDdG1J+i0GbOtF8Cd+ZlRH3kMpp79e7MjIyMjIyMjIyMh7LmNPoW8G2cVp5D+rZXkP1PHG4S5+OXXyTnWFkZGRkZGRkZGQ8oDE8ttd+fNwjKMTS393i+lEq55PsDCMjIyMjIyMjI+OBjMPz+yMkXIYQek/d99qqv47nyrQ2j+esk+QOIyMjIyMjIyMj41mMO7PJr5Pv7KwunU1b3NIol/ZNh56RkZGRkZGRkZHxbMZ7CrbkNHqA9JJY3yksemnVr9OLzv4ejIyMjIyMjIyMjMc3xtWct8nOQq1Ezp9HzbYPynNf8kfrzpDFhZGRkZGRkZGRkfFMxrH7HsIv9yRqKV+TXjUXM64lbTH5vrPMlJGRkZGRkZGRkfEcxtlGQDkOc3mjTnMTp7MV194nhUUsRxgZGRkZGRkZGRnPYswJl1AHTLfoDK36nrYPuo4LRqeJm9lHW/tsDjsjIyMjIyMjIyPjQYxxEWfAtsncxJYqg/66Wt/LztSPagbnk549IyMjIyMjIyMj44GMsTG/vVIwOdW+pRTMbawe+neRmUfYMnQ44WX+p2JkZGRkZGRkZGQ8g3GWRu8lRFN3+AyP/887260DdjYIrcUHIyMjIyMjIyMj4+GNz4ErS0q15zTN82o5X7N3VP0RYJlh1/e1AiMjIyMjIyMjI+OxjH0yAXHasw+t+ppzj2PL096hvVQY+Vpv1pIyMjIyMjIyMjIyHsuYdxbKU15mj//X3uejXHqMw+yMXQxFw8ezFRkZGRkZGRkZGRkPZawpmJbC7LMpLzuQUCuM5Ui6oRZO+Hb+IyMjIyMjIyMjI+OxjHkfoSG6HmeTt7gd6OPtsPOesjN9jN7EXww2RkZGRkZGRkZGxnMZ89ZA4fl9jK4PwxFDvqalePvuKJc85aWVDA4jIyMjIyMjIyPjWYz5iT5kz7/fq3PIue92329x3Ms4djHVHJ2RkZGRkZGRkZHxZMZeGvNDidBaHXZ+CZVBvY8QmZnt+fn4WXaGkZGRkZGRkZGR8YDG2/erQuN3bmWieZvMdKkZnBqKv5Z6gpGRkZGRkZGRkfF0xpbS6H2SNM8595ymmW1edCmXiBMZGyMjIyMjIyMjI+MpjX0aY8lDFuui0qF5fymrQuuQmEvp4scMDiMjIyMjIyMjI+NZjDXPEs/UJstMr2WAYkjTxMWpITszrR7W+udiZGRkZGRkZGRkPLYxz1YMCZc+e5MWg+ZYzWy0eVw5Wmcr9jSRkZGRkZGRkZGRkfHgxphYv8Uh5d8PMp8VBNveuMS94S7Lz3r2jIyMjIyMjIyMjIcw9kK7h7HlqQ6ou3e+/2g3O1PrEkZGRkZGRkZGRsYTGdOuQdMBim2MzLT5qtA1htkfaVjjffJrwBjPYWRkZGRkZGRkZDyLcbhsbNXXLv42GXbe0u5Dw00/gzY7uxgNtI2RkZGRkZGRkZHxXMaITZmXR+LfS2WQh52HLHwL99qSOpQI94/mzjAyMjIyMjIyMjIexDhcdtl7xm8pBRPGLrb5kMWanelpP6I22eCIkZGRkZGRkZGR8SzGlpaHtnSm2TN+VNcQTRpkvlM9XMtfiJGRkZGRkZGRkfEcxhqiiQMUW6GFO4sR+JBhb2GZaV05enstV20/yc4wMjIyMjIyMjIyHsQ4iPL+P2GA4n2/RBiwS4mu9yH53sZr9TIJhpGRkZGRkZGRkfEMxhxj2UqHPtDqKMRHmQRTh523MuUl/oUYGRkZGRkZGRkZz2kMBUF8kG/jkMU8weXe6muZn2dearSP9vxkZGRkZGRkZGRkPJZxJ0TTxmBL2pBzurHn7pSXIcxex8bE3wcYGRkZGRkZGRkZz2LMD/vX7/LpdZJi3mtotjj1Uhrz98lRCyMjIyMjIyMjI+OZjEuJsbQwiyWE2R8Fm2uF3dmKW+r9/6RWYGRkZGRkZGRkZDyg8Raf+pehMb+OQfVcB1z32/Dh8P5mKWr5WYCRkZGRkZGRkZHxfMadgHmY19JL973G25dhlEtqzD9+lrNnZGRkZGRkZGRkPL5xKY/2O8YtzWtZx1jNrFYYPxpi8ldGRkZGRkZGRkbGExr7zpnia0uP9rfxYb9OK4/Vw62c8BY7/YyMjIyMjIyMjIynMua1pE/s8CZmZ1qacR52+Mxz0LdxlepOKudtdoaRkZGRkZGRkZHxWMY/88XIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyPgHGv8Gg3eEIKcvUa8AAAAASUVORK5CYII=" + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e60a95881b314cfab95c1807", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/payments/55645618353/ticket?caller_id=1310149122&hash=8fcfd6de-ecd4-4d03-89e3-76d87270fb3b", + "revision": "da488d79a49441b7906e9ba1", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540520.205802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter556456183536304B75F", + "revision": "fd5a73c4c0c04ee7af21d303", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJgElEQVR42u3dQZLiyA4G4PSKY3BUc1QfYZasyImKnoaUlC6oefEieuyPTRMNtj/XyhJ/Klv/419/NUZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGxj/beG/xdf31P+vvj369WXq//f7o12v5Onj79eb2+z/X13m3dvn6Z/jon/+pRw0nZGRkZGRkZGRkZDyLcfzwC1LfROP6usjXdx7hzrbXRS9fH63jmWeHTxmMjIyMjIyMjIyMZzDefj+tPy/769H+n+v31zP+syB4pKLh8rqzRzAOR9Vr3V8FCiMjIyMjIyMjI+PJjWPTfaBlderHP4YG/DrJwwz3cWdkZGRkZGRkZGRkzM/v3zTUn3XAyG+vwwd1LCzWcjgjIyMjIyMjIyPjyY09JlyWvRLh/srF5MPvqZ1fMzitlBr/Pt/DyMjIyMjIyMjI+F831rWkS+ms/3/e/C/rXRkZGRkZGRkZGRn/y8adV0ijx3Z+L7H0cK/PJaT30sW/9E9fjIyMjIyMjIyMjEc3PlK1cEllxHXsxz/T6I9h/mItNXoMvMcvh3tdPujZMzIyMjIyMjIyMh7UeE3/kyIzS6BtJfCe72ydzjjfCeOsjIyMjIyMjIyMjKc0rmPRkBd6tjKvZXutHM1zX/qkr1/T8ZdXqr0PK1kZGRkZGRkZGRkZz2K8p2DLNjX2WXamxUGMj9K8b+nOLq8qJNI2RkZGRkZGRkZGxnMZc4lQ5yZex3qil907W0ishy7+I015uZcvz34xYGRkZGRkZGRkZDy+cZaLGRvzvfcSkNn2cu6tjGkJsZo+US/phIyMjIyMjIyMjIwnMj7rgCEpcwklQtoFtG5MFC87iOLK0TQt5pMMOyMjIyMjIyMjI+PxjDl7filXG77TAj8/499i0VBnK47lSPtpvoeRkZGRkZGRkZHxMMYe4uRDrXDdG1J+i0GbOtF8Cd+ZlRH3kMpp79e7MjIyMjIyMjIyMh7LmNPoW8G2cVp5D+rZXkP1PHG4S5+OXXyTnWFkZGRkZGRkZGQ8oDE8ttd+fNwjKMTS393i+lEq55PsDCMjIyMjIyMjI+OBjMPz+yMkXIYQek/d99qqv47nyrQ2j+esk+QOIyMjIyMjIyMj41mMO7PJr5Pv7KwunU1b3NIol/ZNh56RkZGRkZGRkZHxbMZ7CrbkNHqA9JJY3yksemnVr9OLzv4ejIyMjIyMjIyMjMc3xtWct8nOQq1Ezp9HzbYPynNf8kfrzpDFhZGRkZGRkZGRkfFMxrH7HsIv9yRqKV+TXjUXM64lbTH5vrPMlJGRkZGRkZGRkfEcxtlGQDkOc3mjTnMTp7MV194nhUUsRxgZGRkZGRkZGRnPYswJl1AHTLfoDK36nrYPuo4LRqeJm9lHW/tsDjsjIyMjIyMjIyPjQYxxEWfAtsncxJYqg/66Wt/LztSPagbnk549IyMjIyMjIyMj44GMsTG/vVIwOdW+pRTMbawe+neRmUfYMnQ44WX+p2JkZGRkZGRkZGQ8g3GWRu8lRFN3+AyP/887260DdjYIrcUHIyMjIyMjIyMj4+GNz4ErS0q15zTN82o5X7N3VP0RYJlh1/e1AiMjIyMjIyMjI+OxjH0yAXHasw+t+ppzj2PL096hvVQY+Vpv1pIyMjIyMjIyMjIyHsuYdxbKU15mj//X3uejXHqMw+yMXQxFw8ezFRkZGRkZGRkZGRkPZawpmJbC7LMpLzuQUCuM5Ui6oRZO+Hb+IyMjIyMjIyMjI+OxjHkfoSG6HmeTt7gd6OPtsPOesjN9jN7EXww2RkZGRkZGRkZGxnMZ89ZA4fl9jK4PwxFDvqalePvuKJc85aWVDA4jIyMjIyMjIyPjWYz5iT5kz7/fq3PIue92329x3Ms4djHVHJ2RkZGRkZGRkZHxZMZeGvNDidBaHXZ+CZVBvY8QmZnt+fn4WXaGkZGRkZGRkZGR8YDG2/erQuN3bmWieZvMdKkZnBqKv5Z6gpGRkZGRkZGRkfF0xpbS6H2SNM8595ymmW1edCmXiBMZGyMjIyMjIyMjI+MpjX0aY8lDFuui0qF5fymrQuuQmEvp4scMDiMjIyMjIyMjI+NZjDXPEs/UJstMr2WAYkjTxMWpITszrR7W+udiZGRkZGRkZGRkPLYxz1YMCZc+e5MWg+ZYzWy0eVw5Wmcr9jSRkZGRkZGRkZGRkfHgxphYv8Uh5d8PMp8VBNveuMS94S7Lz3r2jIyMjIyMjIyMjIcw9kK7h7HlqQ6ou3e+/2g3O1PrEkZGRkZGRkZGRsYTGdOuQdMBim2MzLT5qtA1htkfaVjjffJrwBjPYWRkZGRkZGRkZDyLcbhsbNXXLv42GXbe0u5Dw00/gzY7uxgNtI2RkZGRkZGRkZHxXMaITZmXR+LfS2WQh52HLHwL99qSOpQI94/mzjAyMjIyMjIyMjIexDhcdtl7xm8pBRPGLrb5kMWanelpP6I22eCIkZGRkZGRkZGR8SzGlpaHtnSm2TN+VNcQTRpkvlM9XMtfiJGRkZGRkZGRkfEcxhqiiQMUW6GFO4sR+JBhb2GZaV05enstV20/yc4wMjIyMjIyMjIyHsQ4iPL+P2GA4n2/RBiwS4mu9yH53sZr9TIJhpGRkZGRkZGRkfEMxhxj2UqHPtDqKMRHmQRTh523MuUl/oUYGRkZGRkZGRkZz2kMBUF8kG/jkMU8weXe6muZn2dearSP9vxkZGRkZGRkZGRkPJZxJ0TTxmBL2pBzurHn7pSXIcxex8bE3wcYGRkZGRkZGRkZz2LMD/vX7/LpdZJi3mtotjj1Uhrz98lRCyMjIyMjIyMjI+OZjEuJsbQwiyWE2R8Fm2uF3dmKW+r9/6RWYGRkZGRkZGRkZDyg8Raf+pehMb+OQfVcB1z32/Dh8P5mKWr5WYCRkZGRkZGRkZHxfMadgHmY19JL973G25dhlEtqzD9+lrNnZGRkZGRkZGRkPL5xKY/2O8YtzWtZx1jNrFYYPxpi8ldGRkZGRkZGRkbGExr7zpnia0uP9rfxYb9OK4/Vw62c8BY7/YyMjIyMjIyMjIynMua1pE/s8CZmZ1qacR52+Mxz0LdxlepOKudtdoaRkZGRkZGRkZHxWMY/88XIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyPgHGv8Gg3eEIKcvUa8AAAAASUVORK5CYII=", + "revision": "424f0b3f6e7a4013b95734c6", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "66ef5b490c2a4c6d818364a9", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -2938,9 +4911,18 @@ "total_amount": 20.2, "history_id": 1678596937174, "id": 55645618353, - "date_created": "2023-03-12T00:55:37.889-04:00", - "date_last_updated": "2023-03-12T00:56:04.000-04:00", - "date_of_expiration": "2023-03-13T00:55:37.650-04:00", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", @@ -2948,89 +4930,176 @@ "currency_id": "BRL", "date_approved": "2023-03-12T00:56:04.000-04:00", "money_release_date": "2023-03-12T00:56:04.000-04:00", - "wasDebited": true, - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2c0c059784004c2bba9fda80", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "5d622252574f424d90bc89fa", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.20790000000000003 + "amount": 0.20790000000000003, + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "946f241e777249bdad2d84f8", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4f3073d5eb6542bc9e90985f", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "IVIPCOIN LTDA" + "account_holder_name": "IVIPCOIN LTDA", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "abed85db1d60449d82090bf2", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e5ea9b2698fd404c8056ed5d", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 21.21, "overpaid_amount": 0, "installment_amount": 0, - "ticket_url": "https://www.mercadopago.com.br/payments/55660781347/ticket?caller_id=1310149122&hash=d81b289f-e1b7-45ae-9f11-f314a4fdb9e1", - "qr_code": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540521.215802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter5566078134763047D77", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJfklEQVR42u3dQXLbOhIGYGilY+io0lF5hFlyJUxeHFPobtBW5tVUJeTHlUoUiY9eEe0fjdb/+OM/jZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGR8c82ri0et49v7j9PXT5/8+PD4/PUx/Hz1PLx4fH55f3HN9ePa359mJ+KVw03ZGRkZGRkZGRkZDyLcTz5DyR/aD/u/Qz8bZB/flNP/Tp+XnV/YeeXTxmMjIyMjIyMjIyMZzA+Pt/Wt2E/7v1r/O2b9jmN+EUbJg3X15M9k7GFyUcYa31NUBgZGRkZGRkZGRlPbhyL7luJvUd1rcc/hwL8fZKHCZMGRkZGRkZGRkZGRsb0/j4tqKcK/ZadGcMvQR0nFmGGEav4jIyMjIyMjIyMjOc0huzMmgZZUnZmqMeHnHss53+ZwYmn/od8DyMjIyMjIyMjI+PfbqxrSS+lsv7/+fBv1rsyMjIyMjIyMjIy/s3G2TFG11sp5w9PVr/J04hZT5c3DkZGRkZGRkZGRsajG59ptjAM0matXPq0it+Sui5FrU+2vKYI69dzBUZGRkZGRkZGRsZDGm/pZT21VBwT6/dy78dnLH0YrfY4769nzc0aGRkZGRkZGRkZGU9mXEu7xNqSfNZkMdKWBKnNXWq3mMdrrHfyPYyMjIyMjIyMjIwHMsbragfE+TdbhX64/FmK9xG7lN2HWmuleM/IyMjIyMjIyMh4GuNQoW+ltXnvQ3PEPu/70ifrRK+ppWKu0Idmjd/n7BkZGRkZGRkZGRkPZIyR83sJyKRh48SitoTJbVpCrKZP1Jd0Q0ZGRkZGRkZGRsYTGXNTlhp+qbuAhqJ7DrwPorhy9BG7xbyXYWdkZGRkZGRkZGQ8mrGlO9XR1vli0BRvz7X/NumtOE5H2tvZGUZGRkZGRkZGRsajGXt5/Y/G2SAhRLO7j9CWfO/phrdXk8XYRp2RkZGRkZGRkZHxLMadRuYp1R53H7qVenzda2gpc4Vc+09P3xkZGRkZGRkZGRlPZryPTVli55X0HJe9tuVt/oj3neWqz6B+LzvDyMjIyMjIyMjIeBhjTws9l1RrDxX6PmmgeAn9y3u5qgbVl7St6J2RkZGRkZGRkZHxfMbvhl2m7/j5gWYdzadDTCr0jIyMjIyMjIyMjGczrinY0lOIpvZiuU+SMrvHY6dC38J9bvkyRkZGRkZGRkZGxmMbe2rBMivVx60+76+rbpPRKj8uIb3vNFm8MDIyMjIyMjIyMp7J2FOepZdgSw+dFEPgvXZJzLRZqX7dW2bKyMjIyMjIyMjIeA5j3QhoTYtBZ5HzXtq9DM1dam/FWqof4znbjxkZGRkZGRkZGRnPYtx+1UJhflbFX8ace8bGCHyfrkndPbW8UbNnZGRkZGRkZGRkPJAxNym/TdsltnSnmqbJ+wi16cZEcb3pkMF5p2bPyMjIyMjIyMjIeCBjS7mY+No+myu012ZB13CqRmZay03Tww2v5U/FyMjIyMjIyMjIeBrjLI2e3/G/eOtvpeQ/nwfUDUJzpZ+RkZGRkZGRkZHxLMZLaNxSdwRaSlB92Yuup6vqfOIyw96/nyswMjIyMjIyMjIyHsvYJx0Qp63Nh1R7G3u6XNJ8Iv8ToM5LbpOxvllLysjIyMjIyMjIyHgs41pK9dm4G35Jc4XaQHGn7WKYNLzXW5GRkZGRkZGRkZHxWMa4a9Cw0HNJ905dXqbRm/sUu/NAafLByMjIyMjIyMjIeCJj7mg+BNVr38Re9iPqISBT0+h1E9Fe+Pfva/aMjIyMjIyMjIyMhzX2odl5GHYn/NLHruf9dflOK5d8qpUMDiMjIyMjIyMjI+NZjPFlP2XPn6k7y5pq9kO+Zqf6/ojtXsa2i3XOwcjIyMjIyMjIyHgqY5gHxJ6IjxiZybt35shM6M7yTJX+dS+M822+h5GRkZGRkZGRkfGAxsd0LelOCD3NFdoQgQ/YnJ2pofjbZHRGRkZGRkZGRkbGkxljsOU2/uBZ9gUdRXvrRLcb9rJD0WX2DSMjIyMjIyMjI+PJjLde14nGJou91yblW619mURvapOYa6nixwwOIyMjIyMjIyMj41mM614dfQvR1GWmwzv+YIxV/JYaoid13qHoyww7IyMjIyMjIyMj49GMPbRXuccthvL4uTvL8ECzHo3PEKtZUpeXPpmXMDIyMjIyMjIyMp7DGLcGmizrHJ+jzWv2Iah+nZfh95q7XN6q2TMyMjIyMjIyMjIeyxhf9mvb8q2u/2izDYXeObWbnQmrSzsjIyMjIyMjIyPjeYzbXKGF3orhBrlxyzJOHGIKJofZQ7PG3C1mGTcdYmRkZGRkZGRkZDyn8RLyLMP7+5pq7fk5HrEBTA7a7OxiNIvAMzIyMjIyMjIyMp7DGLEt5lkyf51MGuJ8opX+izmVMxT4W/kzMDIyMjIyMjIyMp7DuL6K7pfwjp8hj5Jh7wXSY2/FmJ3ppQ96DtowMjIyMjIyMjIynseYl4cOt2ypt+KwcrSnHYpy28Wtrt/3EuuPcRNRRkZGRkZGRkZGxlMZ42j3SQPFocSejzpp6JMZxnXf2MPTMzIyMjIyMjIyMp7T2Mb3916mCLmlYj7Vp7TYf7FNnv635gqMjIyMjIyMjIyMf79xLW/9ueFKKOdfygrUnezMkmYY97Kt6PAXYmRkZGRkZGRkZDynsZXoeu+1J2Ir04h4hC4vMURT4zltGm9nZGRkZGRkZGRkPIOxHrlmfyu/WEocZrclTAiz59/08e/RGRkZGRkZGRkZGc9jXCex9JYq6190UmxlMWhdnHothfk17VD07nyGkZGRkZGRkZGR8TDGS4mxtNSL5Vo+tFDFD8+x21txyNf89lyBkZGRkZGRkZGR8YDGx+StP2zR2VMcZk0BmfYVNgbVU3Ymp+MZGRkZGRkZGRkZz2r8OvOyleHnl88yOM9SmH/+Xs6ekZGRkZGRkZGR8fjGS3m1z5GZWH1/xLWk2292photNXd5o6cLIyMjIyMjIyMj4wGNfXqnVEePGwrlDUJ76Va+0yt9GCtU+hkZGRkZGRkZGRlPZcxrSTfs8CH2Jl/G0Z5ph89WeqW3kLhJqZzn9O/ByMjIyMjIyMjIeGzjn3kwMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL+gcb/Am9FACpuHEp1AAAAAElFTkSuQmCC" + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ab96fe2382a84dfca8129465", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/payments/55660781347/ticket?caller_id=1310149122&hash=d81b289f-e1b7-45ae-9f11-f314a4fdb9e1", + "revision": "49fbe9ee4b6a4170b8084af2", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540521.215802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter5566078134763047D77", + "revision": "9c0dbadf2bae4d13bbe095d6", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJfklEQVR42u3dQXLbOhIGYGilY+io0lF5hFlyJUxeHFPobtBW5tVUJeTHlUoUiY9eEe0fjdb/+OM/jZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGR8c82ri0et49v7j9PXT5/8+PD4/PUx/Hz1PLx4fH55f3HN9ePa359mJ+KVw03ZGRkZGRkZGRkZDyLcTz5DyR/aD/u/Qz8bZB/flNP/Tp+XnV/YeeXTxmMjIyMjIyMjIyMZzA+Pt/Wt2E/7v1r/O2b9jmN+EUbJg3X15M9k7GFyUcYa31NUBgZGRkZGRkZGRlPbhyL7luJvUd1rcc/hwL8fZKHCZMGRkZGRkZGRkZGRsb0/j4tqKcK/ZadGcMvQR0nFmGGEav4jIyMjIyMjIyMjOc0huzMmgZZUnZmqMeHnHss53+ZwYmn/od8DyMjIyMjIyMjI+PfbqxrSS+lsv7/+fBv1rsyMjIyMjIyMjIy/s3G2TFG11sp5w9PVr/J04hZT5c3DkZGRkZGRkZGRsajG59ptjAM0matXPq0it+Sui5FrU+2vKYI69dzBUZGRkZGRkZGRsZDGm/pZT21VBwT6/dy78dnLH0YrfY4769nzc0aGRkZGRkZGRkZGU9mXEu7xNqSfNZkMdKWBKnNXWq3mMdrrHfyPYyMjIyMjIyMjIwHMsbragfE+TdbhX64/FmK9xG7lN2HWmuleM/IyMjIyMjIyMh4GuNQoW+ltXnvQ3PEPu/70ifrRK+ppWKu0Idmjd/n7BkZGRkZGRkZGRkPZIyR83sJyKRh48SitoTJbVpCrKZP1Jd0Q0ZGRkZGRkZGRsYTGXNTlhp+qbuAhqJ7DrwPorhy9BG7xbyXYWdkZGRkZGRkZGQ8mrGlO9XR1vli0BRvz7X/NumtOE5H2tvZGUZGRkZGRkZGRsajGXt5/Y/G2SAhRLO7j9CWfO/phrdXk8XYRp2RkZGRkZGRkZHxLMadRuYp1R53H7qVenzda2gpc4Vc+09P3xkZGRkZGRkZGRlPZryPTVli55X0HJe9tuVt/oj3neWqz6B+LzvDyMjIyMjIyMjIeBhjTws9l1RrDxX6PmmgeAn9y3u5qgbVl7St6J2RkZGRkZGRkZHxfMbvhl2m7/j5gWYdzadDTCr0jIyMjIyMjIyMjGczrinY0lOIpvZiuU+SMrvHY6dC38J9bvkyRkZGRkZGRkZGxmMbe2rBMivVx60+76+rbpPRKj8uIb3vNFm8MDIyMjIyMjIyMp7J2FOepZdgSw+dFEPgvXZJzLRZqX7dW2bKyMjIyMjIyMjIeA5j3QhoTYtBZ5HzXtq9DM1dam/FWqof4znbjxkZGRkZGRkZGRnPYtx+1UJhflbFX8ace8bGCHyfrkndPbW8UbNnZGRkZGRkZGRkPJAxNym/TdsltnSnmqbJ+wi16cZEcb3pkMF5p2bPyMjIyMjIyMjIeCBjS7mY+No+myu012ZB13CqRmZay03Tww2v5U/FyMjIyMjIyMjIeBrjLI2e3/G/eOtvpeQ/nwfUDUJzpZ+RkZGRkZGRkZHxLMZLaNxSdwRaSlB92Yuup6vqfOIyw96/nyswMjIyMjIyMjIyHsvYJx0Qp63Nh1R7G3u6XNJ8Iv8ToM5LbpOxvllLysjIyMjIyMjIyHgs41pK9dm4G35Jc4XaQHGn7WKYNLzXW5GRkZGRkZGRkZHxWMa4a9Cw0HNJ905dXqbRm/sUu/NAafLByMjIyMjIyMjIeCJj7mg+BNVr38Re9iPqISBT0+h1E9Fe+Pfva/aMjIyMjIyMjIyMhzX2odl5GHYn/NLHruf9dflOK5d8qpUMDiMjIyMjIyMjI+NZjPFlP2XPn6k7y5pq9kO+Zqf6/ojtXsa2i3XOwcjIyMjIyMjIyHgqY5gHxJ6IjxiZybt35shM6M7yTJX+dS+M822+h5GRkZGRkZGRkfGAxsd0LelOCD3NFdoQgQ/YnJ2pofjbZHRGRkZGRkZGRkbGkxljsOU2/uBZ9gUdRXvrRLcb9rJD0WX2DSMjIyMjIyMjI+PJjLde14nGJou91yblW619mURvapOYa6nixwwOIyMjIyMjIyMj41mM614dfQvR1GWmwzv+YIxV/JYaoid13qHoyww7IyMjIyMjIyMj49GMPbRXuccthvL4uTvL8ECzHo3PEKtZUpeXPpmXMDIyMjIyMjIyMp7DGLcGmizrHJ+jzWv2Iah+nZfh95q7XN6q2TMyMjIyMjIyMjIeyxhf9mvb8q2u/2izDYXeObWbnQmrSzsjIyMjIyMjIyPjeYzbXKGF3orhBrlxyzJOHGIKJofZQ7PG3C1mGTcdYmRkZGRkZGRkZDyn8RLyLMP7+5pq7fk5HrEBTA7a7OxiNIvAMzIyMjIyMjIyMp7DGLEt5lkyf51MGuJ8opX+izmVMxT4W/kzMDIyMjIyMjIyMp7DuL6K7pfwjp8hj5Jh7wXSY2/FmJ3ppQ96DtowMjIyMjIyMjIynseYl4cOt2ypt+KwcrSnHYpy28Wtrt/3EuuPcRNRRkZGRkZGRkZGxlMZ42j3SQPFocSejzpp6JMZxnXf2MPTMzIyMjIyMjIyMp7T2Mb3916mCLmlYj7Vp7TYf7FNnv635gqMjIyMjIyMjIyMf79xLW/9ueFKKOdfygrUnezMkmYY97Kt6PAXYmRkZGRkZGRkZDynsZXoeu+1J2Ir04h4hC4vMURT4zltGm9nZGRkZGRkZGRkPIOxHrlmfyu/WEocZrclTAiz59/08e/RGRkZGRkZGRkZGc9jXCex9JYq6190UmxlMWhdnHothfk17VD07nyGkZGRkZGRkZGR8TDGS4mxtNSL5Vo+tFDFD8+x21txyNf89lyBkZGRkZGRkZGR8YDGx+StP2zR2VMcZk0BmfYVNgbVU3Ymp+MZGRkZGRkZGRkZz2r8OvOyleHnl88yOM9SmH/+Xs6ekZGRkZGRkZGR8fjGS3m1z5GZWH1/xLWk2292photNXd5o6cLIyMjIyMjIyMj4wGNfXqnVEePGwrlDUJ76Va+0yt9GCtU+hkZGRkZGRkZGRlPZcxrSTfs8CH2Jl/G0Z5ph89WeqW3kLhJqZzn9O/ByMjIyMjIyMjIeGzjn3kwMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL+gcb/Am9FACpuHEp1AAAAAElFTkSuQmCC", + "revision": "29ad479c8ac64e5da99d6b94", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "1b0bfbccda0b4f84a0742921", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -3039,48 +5108,70 @@ "total_amount": 21.21, "history_id": 1678649850085, "id": 55660781347, - "date_created": "2023-03-12T15:37:30.913-04:00", - "date_last_updated": "2023-03-13T15:40:52.000-04:00", - "date_of_expiration": "2023-03-13T15:37:30.656-04:00", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", "status_detail": "expired", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 21,00 para a carteira iVip 0005.2314.7298.6693-13" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e554059593e74f3889596548", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 21,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "118519d4c52f47b49577b9eb", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } + }, + "revision": "0b36260c888346bbb7161cbd", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -3089,47 +5180,69 @@ "total_amount": 70, "history_id": 1679007163675, "id": 1679007163675, - "date_created": "2023-03-16T22:52:43.675Z", - "date_last_updated": "2023-03-16T22:52:43.675Z", - "date_of_expiration": "2023-04-15T22:52:43.675Z", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 70,00 para a carteira iVip 0005.2314.7298.6693-13" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "85947cca71b04601a3ad7bb6", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 70,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "73595f73274b4e2da191b00b", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } + }, + "revision": "c557ff35f9094e30b61d0372", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -3138,47 +5251,69 @@ "total_amount": 22, "history_id": 1679010027708, "id": 1679010027708, - "date_created": "2023-03-16T23:40:27.708Z", - "date_last_updated": "2023-03-16T23:40:27.708Z", - "date_of_expiration": "2023-04-15T23:40:27.708Z", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 22,00 para a carteira iVip 0005.2314.7298.6693-13" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3dab4c675c9e4b2f97fb42da", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 22,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "3e92133728a64ee792033469", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } + }, + "revision": "646b005af16f4a798c1f1d26", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -3187,53 +5322,96 @@ "total_amount": 34.53, "history_id": 1679010677912, "id": 1679010677912, - "date_created": "2023-03-16T23:51:17.912Z", - "date_last_updated": "2023-03-16T23:51:17.912Z", - "date_of_expiration": "2023-04-15T23:51:17.912Z", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 34,53 para a carteira iVip 0005.2314.7298.6693-13" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0578ee90b52948d191a2400b", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 34,53 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "133be6a467594014b2858a63", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/barcode", "content": { - "type": 1, + "type": "OBJECT", "value": { - "content": "23797929500000053493380261020810012400633330" + "content": "23797929500000053493380261020810012400633330", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "034217282095489294f44838", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", - "amount": 3.49 + "amount": 3.49, + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b983f3c59896431c8282af67", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": "10208100124", @@ -3244,18 +5422,51 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "bradesco", - "external_resource_url": "https://www.mercadopago.com.br/payments/55844330172/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55844330172&payment_method_reference_id=10208100124&hash=b65fca1f-6eb0-406a-adf2-94d1c5555b8a" + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3f9cb47f1ce4446c9a39f2dd", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/payments/55844330172/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55844330172&payment_method_reference_id=10208100124&hash=b65fca1f-6eb0-406a-adf2-94d1c5555b8a", + "revision": "1e99e9d800f6450f8feccea2", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "b75d5bd280674f2881818cb6", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -3264,48 +5475,70 @@ "total_amount": 53.49, "history_id": 1679012344229, "id": 55844330172, - "date_created": "2023-03-16T20:19:04.871-04:00", - "date_last_updated": "2023-03-16T20:19:04.871-04:00", - "date_of_expiration": "2023-03-20T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6dfab8ca3e2440829506abed", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "0fc1ff3698a142558cee7fa9", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } + }, + "revision": "d85dff7720194495b952beac", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -3314,51 +5547,93 @@ "total_amount": 23.54, "history_id": 1679012395493, "id": 1679012395493, - "date_created": "2023-03-17T00:19:55.493Z", - "date_last_updated": "2023-03-17T00:19:55.493Z", - "date_of_expiration": "2023-04-16T00:19:55.493Z", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 23,54 para a carteira iVip 0005.2314.7298.6693-13" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e77fbc986fb643cf8c58ea38", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 23,54 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "93119ff7c31d474c85994af6", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", - "amount": 24 + "amount": 24, + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d72308a02d49430c85111181", "revision_nr": 1, - "created": 1700748395456, - "modified": 1700748395456 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "849fc58f14d94505ac56d519", "revision_nr": 1, - "created": 1700748395460, - "modified": 1700748395460 + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "14c457a1bb824ae3b20a627f", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -3367,52 +5642,94 @@ "total_amount": 224, "history_id": 1679181025084, "id": 1679181025084, - "date_created": "2023-03-18T23:10:25.084Z", - "date_last_updated": "2023-03-18T23:10:25.084Z", - "date_of_expiration": "2023-04-17T23:10:25.084Z", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "df1fe46b354e4ea8998d7d5f", "revision_nr": 1, - "created": 1700748395460, - "modified": 1700748395460 + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", + "revision": "744d588047ec44a7962372ee", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 51 + "amount": 51, + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "568653d439254503969ebd64", "revision_nr": 1, - "created": 1700748395460, - "modified": 1700748395460 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0115f4b678864acdb05a2198", "revision_nr": 1, - "created": 1700748395460, - "modified": 1700748395460 + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "0c7bc0e1124d440caf06da26", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -3421,52 +5738,94 @@ "total_amount": 459, "history_id": 1679181157805, "id": 1679181157805, - "date_created": "2023-03-18T23:12:37.805Z", - "date_last_updated": "2023-03-18T23:12:37.805Z", - "date_of_expiration": "2023-04-17T23:12:37.805Z", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dc871b14ce8245d49f9fe297", "revision_nr": 1, - "created": 1700748395460, - "modified": 1700748395460 + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", + "revision": "ad0226bc33b941b3b262f9a9", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 9.200000000000001 + "amount": 9.200000000000001, + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6405259cd4e744e3b6840cdc", "revision_nr": 1, - "created": 1700748395460, - "modified": 1700748395460 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details", "content": { - "type": 1, + "type": "OBJECT", + "value": {}, + "revision": "de94910ca5f34464b67baa3d", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details/costs", + "content": { + "type": "ARRAY", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ecaae95d08af4aed8c0861cc", "revision_nr": 1, - "created": 1700748395460, - "modified": 1700748395460 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -3475,52 +5834,94 @@ "total_amount": 239.2, "history_id": 1679183534080, "id": 1679183534080, - "date_created": "2023-03-18T23:52:14.080Z", - "date_last_updated": "2023-03-18T23:52:14.080Z", - "date_of_expiration": "2023-04-17T23:52:14.080Z", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0a2158e30a3c44b293ffe17b", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", + "revision": "4bedd8561cda473faec0b022", "revision_nr": 1, - "created": 1700748395460, - "modified": 1700748395460 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 8 + "amount": 8, + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1c4002838ac14cc7b63c77f4", "revision_nr": 1, - "created": 1700748395460, - "modified": 1700748395460 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details", "content": { - "type": 1, + "type": "OBJECT", + "value": {}, + "revision": "21ec5815459044fdbe4a0e5e", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details/costs", + "content": { + "type": "ARRAY", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0a09913d139543ab90bff1fa", "revision_nr": 1, - "created": 1700748395460, - "modified": 1700748395460 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -3529,52 +5930,94 @@ "total_amount": 208, "history_id": 1679184046128, "id": 1679184046128, - "date_created": "2023-03-19T00:00:46.128Z", - "date_last_updated": "2023-03-19T00:00:46.128Z", - "date_of_expiration": "2023-04-18T00:00:46.128Z", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "599768a99d7741cd8eff6f32", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", + "revision": "28ae6077f1cf4ddea984bef8", "revision_nr": 1, - "created": 1700748395460, - "modified": 1700748395460 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 8.4 + "amount": 8.4, + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ab2d2cdd89264434ae17c726", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a132798f237849e790bf6cbe", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383466, + "modified": 1701459383466 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "881171c775c14c3881ad9c4c", + "revision_nr": 1, + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -3583,37 +6026,45 @@ "total_amount": 218.4, "history_id": 1679184832424, "id": 1679184832424, - "date_created": "2023-03-19T00:13:52.424Z", - "date_last_updated": "2023-03-19T00:13:52.424Z", - "date_of_expiration": "2023-04-18T00:13:52.424Z", + "date_created": { + "type": 6, + "value": 1701459383466 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383466 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383466 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "647f8607f5904d62a3555644", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383466, + "modified": 1701459383466 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780561471/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", + "revision": "84d8276492ee49a988b57240", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383466, + "modified": 1701459383466 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780561471/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679780561471, @@ -3624,18 +6075,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383467 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383467 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383467 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ca678db7258e40eb8838f5be", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383467, + "modified": 1701459383467 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780561471", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -3645,38 +6109,46 @@ "original_amount": 50, "total_amount": 50, "id": 1679780561471, - "date_created": "2023-03-25T21:42:41.471Z", - "date_last_updated": "2023-03-25T21:42:41.471Z", - "date_of_expiration": "2023-03-25T21:42:41.471Z", + "date_created": { + "type": 6, + "value": 1701459383467 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383467 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383467 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIPAY", - "history_id": 1679780561471, - "description": "Compra de 50,00 IVIPAY por 5,00 IVIP estabilizando US$ 0,00" + "history_id": 1679780561471 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f7d8ad26218946b5bb413b1f", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383467, + "modified": 1701459383467 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780730626/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780561471/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 50,00 IVIPAY por 5,00 IVIP estabilizando US$ 0,00", + "revision": "e70045afee214226bf20e47a", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383467, + "modified": 1701459383467 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780730626/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679780730626, @@ -3687,18 +6159,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383467 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383467 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383467 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f76b68743ba24cc38a2df6ba", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383467, + "modified": 1701459383467 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780730626", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -3708,38 +6193,46 @@ "original_amount": 50000, "total_amount": 50000, "id": 1679780730626, - "date_created": "2023-03-25T21:45:30.626Z", - "date_last_updated": "2023-03-25T21:45:30.626Z", - "date_of_expiration": "2023-03-25T21:45:30.626Z", + "date_created": { + "type": 6, + "value": 1701459383467 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383467 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383467 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIPAY", - "history_id": 1679780730626, - "description": "Compra de 50.000,00 IVIPAY por 5.000,00 IVIP estabilizando US$ 0,18" + "history_id": 1679780730626 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "95fbfc32cf224215b4f79351", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383467, + "modified": 1701459383467 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679798199684/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780730626/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 50.000,00 IVIPAY por 5.000,00 IVIP estabilizando US$ 0,18", + "revision": "5b2eacc2bc064126a6c005c4", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383467, + "modified": 1701459383467 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679798199684/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679798199684, @@ -3750,18 +6243,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383467 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383467 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383467 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "41ad6f75c0524226b7e91ee3", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383467, + "modified": 1701459383467 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679798199684", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -3771,38 +6277,46 @@ "original_amount": 100000, "total_amount": 100000, "id": 1679798199684, - "date_created": "2023-03-26T02:36:39.684Z", - "date_last_updated": "2023-03-26T02:36:39.684Z", - "date_of_expiration": "2023-03-26T02:36:39.684Z", + "date_created": { + "type": 6, + "value": 1701459383467 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383467 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383467 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIPAY", - "history_id": 1679798199684, - "description": "Compra de 100.000,00 IVIPAY por 10.000,00 IVIP estabilizando US$ 0,32" + "history_id": 1679798199684 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d7c131150f5e4b4383d152d4", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383467, + "modified": 1701459383467 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1681764788277/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679798199684/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 100.000,00 IVIPAY por 10.000,00 IVIP estabilizando US$ 0,32", + "revision": "40054380759d4fc7ab36ee24", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383467, + "modified": 1701459383467 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1681764788277/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1681764788277, @@ -3813,18 +6327,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383467 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383467 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383467 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "450adcec0fc44c8e80c400ec", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383467, + "modified": 1701459383467 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1681764788277", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -3834,9 +6361,18 @@ "original_amount": 3964758, "total_amount": 3964758, "id": 1681764788277, - "date_created": "2023-04-17T20:53:08.277Z", - "date_last_updated": "2023-04-17T20:53:08.277Z", - "date_of_expiration": "2023-04-17T20:53:08.277Z", + "date_created": { + "type": 6, + "value": 1701459383467 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383467 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383467 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3845,27 +6381,16 @@ "history_id": 1681764788277, "description": "Compra de 3.964.758,00 IVIP por 700,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "eedbc47bcb0d4939a3bd2b62", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323304615/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383467, + "modified": 1701459383467 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323304615/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1682323304615, @@ -3876,18 +6401,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383467 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383467 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383467 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "22bcff327eef4a979c58216f", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383467, + "modified": 1701459383467 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323304615", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -3897,38 +6435,35 @@ "original_amount": 175.094, "total_amount": 175.094, "id": 1682323304615, - "date_created": "2023-04-24T08:01:44.615Z", - "date_last_updated": "2023-04-24T08:01:44.615Z", - "date_of_expiration": "2023-04-24T08:01:44.615Z", + "date_created": { + "type": 6, + "value": 1701459383467 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383467 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383467 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1682323304615, - "description": "Pagamento de fatura 1 de 4 no valor de 175,09 BRL" + "history_id": 1682323304615 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "db1d396ef54d4072aa201817", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323486538/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383467, + "modified": 1701459383467 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323486538/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1682323486538, @@ -3939,18 +6474,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383467 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383467 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383467 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "53d51b6185d9400cad8f59eb", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383467, + "modified": 1701459383467 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323486538", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -3960,38 +6508,35 @@ "original_amount": 119.6, "total_amount": 119.6, "id": 1682323486538, - "date_created": "2023-04-24T08:04:46.538Z", - "date_last_updated": "2023-04-24T08:04:46.538Z", - "date_of_expiration": "2023-04-24T08:04:46.538Z", + "date_created": { + "type": 6, + "value": 1701459383467 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383467 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383467 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1682323486538, - "description": "Pagamento de fatura 1 de 2 no valor de 119,60 BRL" + "history_id": 1682323486538 }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324590308/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "779a102224454b4e82ebfd8a", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383467, + "modified": 1701459383467 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324590308/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1682324590308, @@ -4002,18 +6547,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "43058fe311b54026a8717c15", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324590308", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -4023,38 +6581,35 @@ "original_amount": 104, "total_amount": 104, "id": 1682324590308, - "date_created": "2023-04-24T08:23:10.308Z", - "date_last_updated": "2023-04-24T08:23:10.308Z", - "date_of_expiration": "2023-04-24T08:23:10.308Z", + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1682324590308, - "description": "Pagamento de fatura 1 de 2 no valor de 104,00 BRL" + "history_id": 1682324590308 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "28b21ceb8eb249b08f8ea691", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324593569/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324593569/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1682324593569, @@ -4065,18 +6620,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cc938a3c3b4440b18b16c27d", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324593569", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -4086,38 +6654,35 @@ "original_amount": 109.2, "total_amount": 109.2, "id": 1682324593569, - "date_created": "2023-04-24T08:23:13.569Z", - "date_last_updated": "2023-04-24T08:23:13.569Z", - "date_of_expiration": "2023-04-24T08:23:13.569Z", + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1682324593569, - "description": "Pagamento de fatura 1 de 2 no valor de 109,20 BRL" + "history_id": 1682324593569 }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325423689/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7ab524c2b34f48f5aa4a06a7", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325423689/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1682325423689, @@ -4128,18 +6693,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "451d3e7805c2438b9c4dcba0", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325423689", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -4149,38 +6727,35 @@ "original_amount": 104, "total_amount": 104, "id": 1682325423689, - "date_created": "2023-04-24T08:37:03.689Z", - "date_last_updated": "2023-04-24T08:37:03.689Z", - "date_of_expiration": "2023-04-24T08:37:03.689Z", + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1682325423689, - "description": "Pagamento de fatura 1 de 2 no valor de 104,00 BRL" + "history_id": 1682325423689 }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325428664/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d055d14908f1430e8d50a9d9", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325428664/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1682325428664, @@ -4191,18 +6766,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ab4ad3bbfabd46e7b57b42a4", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325428664", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -4212,38 +6800,35 @@ "original_amount": 109.2, "total_amount": 109.2, "id": 1682325428664, - "date_created": "2023-04-24T08:37:08.664Z", - "date_last_updated": "2023-04-24T08:37:08.664Z", - "date_of_expiration": "2023-04-24T08:37:08.664Z", + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1682325428664, - "description": "Pagamento de fatura 1 de 2 no valor de 109,20 BRL" + "history_id": 1682325428664 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a2c357f3f5c54ee78183ce24", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544384/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544384/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -4256,18 +6841,31 @@ "overpaid_amount": 0, "installment_amount": 37.333, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "001d2bed90944b0188d49c63", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544384", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -4278,38 +6876,46 @@ "total_amount": 37.333, "id": 1682578544384, "contract_id": "1679181025084", - "date_created": "2023-04-27T06:55:44.384Z", - "date_last_updated": "2023-04-27T06:55:44.384Z", - "date_of_expiration": "2023-04-27T06:55:44.384Z", + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1682578544384, - "description": "Pagamento de fatura 1 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084" + "history_id": 1682578544384 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a4306f4dfe5c4a949b606d5c", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544557/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544384/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", + "revision": "b1dea7d6a9e24b15a20b9d71", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544557/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -4322,18 +6928,31 @@ "overpaid_amount": 0, "installment_amount": 114.75, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "095704bd9b1d41ca88fbe1c9", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544557", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -4344,38 +6963,46 @@ "total_amount": 114.75, "id": 1682578544557, "contract_id": "1679181157805", - "date_created": "2023-04-27T06:55:44.557Z", - "date_last_updated": "2023-04-27T06:55:44.557Z", - "date_of_expiration": "2023-04-27T06:55:44.557Z", + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1682578544557, - "description": "Pagamento de fatura 1 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805" + "history_id": 1682578544557 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3a21a665c8b84afc8dc1ab58", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984558/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544557/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", + "revision": "4dd93a75997e4af8a0f58232", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984558/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -4388,18 +7015,31 @@ "overpaid_amount": 0, "installment_amount": 119.6, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4aeb2619e95d411787446aec", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984558", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -4410,38 +7050,46 @@ "total_amount": 119.6, "id": 1682578984558, "contract_id": "1679183534080", - "date_created": "2023-04-27T07:03:04.558Z", - "date_last_updated": "2023-04-27T07:03:04.558Z", - "date_of_expiration": "2023-04-27T07:03:04.558Z", + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1682578984558, - "description": "Pagamento de fatura 1 de 2 no valor de 119,60 BRL referente ao contrato 1679183534080" + "history_id": 1682578984558 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d28474aa312d448ca63712eb", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984726/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984558/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 2 no valor de 119,60 BRL referente ao contrato 1679183534080", + "revision": "22955115adca4ae1bb246066", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984726/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -4454,18 +7102,31 @@ "overpaid_amount": 0, "installment_amount": 104, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "87ff8d0f55484989bcb1be46", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984726", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -4476,38 +7137,46 @@ "total_amount": 104, "id": 1682578984726, "contract_id": "1679184046128", - "date_created": "2023-04-27T07:03:04.726Z", - "date_last_updated": "2023-04-27T07:03:04.726Z", - "date_of_expiration": "2023-04-27T07:03:04.726Z", + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1682578984726, - "description": "Pagamento de fatura 1 de 2 no valor de 104,00 BRL referente ao contrato 1679184046128" + "history_id": 1682578984726 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "52847e612d03445b85ae721c", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984913/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984726/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 2 no valor de 104,00 BRL referente ao contrato 1679184046128", + "revision": "20971592a45c43c69d97e844", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984913/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -4520,18 +7189,31 @@ "overpaid_amount": 0, "installment_amount": 109.2, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b40058122e3a4a5fb16948a3", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984913", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -4542,53 +7224,95 @@ "total_amount": 109.2, "id": 1682578984913, "contract_id": "1679184832424", - "date_created": "2023-04-27T07:03:04.913Z", - "date_last_updated": "2023-04-27T07:03:04.913Z", - "date_of_expiration": "2023-04-27T07:03:04.913Z", + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1682578984913, - "description": "Pagamento de fatura 1 de 2 no valor de 109,20 BRL referente ao contrato 1679184832424" + "history_id": 1682578984913 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2625550e20714a1388bae369", + "revision_nr": 1, + "created": 1701459383469, + "modified": 1701459383469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984913/description", + "content": { + "type": "STRING", + "value": "Pagamento de fatura 1 de 2 no valor de 109,20 BRL referente ao contrato 1679184832424", + "revision": "7d77750bb8bd4ef590fba0cd", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 4 + "amount": 4, + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8fd5bc09d06d43089d9e1355", "revision_nr": 1, - "created": 1700748395461, - "modified": 1700748395461 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "37851f8300994e43b4627078", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383469, + "modified": 1701459383469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "4353aef97e924e20ad4a4a3c", + "revision_nr": 1, + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -4597,52 +7321,94 @@ "total_amount": 204, "history_id": 1683665355468, "id": 1683665355468, - "date_created": "2023-05-09T20:49:15.468Z", - "date_last_updated": "2023-05-09T20:49:15.468Z", - "date_of_expiration": "2023-06-08T20:49:15.468Z", + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 204,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "751768583dd944eca6ff5e6a", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383469, + "modified": 1701459383469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 204,00", + "revision": "39909db3aec54c0d944a76ac", + "revision_nr": 1, + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", - "amount": 12 + "amount": 12, + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f7838d4de1ed469aac3e9a95", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details", "content": { - "type": 1, + "type": "OBJECT", + "value": {}, + "revision": "d4f7ccf430b843c2baff7b55", + "revision_nr": 1, + "created": 1701459383469, + "modified": 1701459383469 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details/costs", + "content": { + "type": "ARRAY", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b564176e54b54dc99344dc98", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -4651,48 +7417,70 @@ "total_amount": 212, "history_id": 1683667472591, "id": 1683667472591, - "date_created": "2023-05-09T21:24:32.591Z", - "date_last_updated": "2023-05-09T21:24:32.591Z", - "date_of_expiration": "2023-06-08T21:24:32.591Z", + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b82c56ee51b54a6fb0035bdc", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383469, + "modified": 1701459383469 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", + "revision": "fc3161e590d642e68e35f230", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + } + }, + "revision": "34445792a7064e289baf4321", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -4701,9 +7489,18 @@ "total_amount": 250, "history_id": 1684303097186, "id": 1684303097186, - "date_created": "2023-05-17T05:58:17.186Z", - "date_last_updated": "2023-05-17T05:59:31.953Z", - "date_of_expiration": "2023-06-16T05:58:17.186Z", + "date_created": { + "type": 6, + "value": 1701459383469 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383469 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383469 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -4711,30 +7508,29 @@ "date_approved": "2023-05-17T05:59:31.953Z", "money_release_date": "2023-05-17T05:59:31.953Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 250,00 para a carteira iVip 0005.2314.7298.6693-13" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8e42a5e4a0ac4655a8b177be", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383469, + "modified": 1701459383469 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684348051817/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "fdfed1ce03cd426ca27770ac", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684348051817/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684348051817, @@ -4745,18 +7541,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1e981210e3414d5e9c23f279", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684348051817", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -4766,38 +7575,46 @@ "original_amount": 630, "total_amount": 630, "id": 1684348051817, - "date_created": "2023-05-17T18:27:31.817Z", - "date_last_updated": "2023-05-17T18:27:31.817Z", - "date_of_expiration": "2023-05-17T18:27:31.817Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684348051817, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684348051817 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "625b366a6987466ea4092cf6", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739701/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684348051817/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "8892097e94b646cc8d12d8e2", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383469, + "modified": 1701459383469 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739701/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -4810,18 +7627,31 @@ "overpaid_amount": 0, "installment_amount": 37.333, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "79623b2ab5f349e2ace44e3a", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739701", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -4832,38 +7662,46 @@ "total_amount": 37.333, "id": 1684436739701, "contract_id": "1679181025084", - "date_created": "2023-05-18T19:05:39.701Z", - "date_last_updated": "2023-05-18T19:05:39.701Z", - "date_of_expiration": "2023-05-18T19:05:39.701Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1684436739701, - "description": "Pagamento de fatura 2 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084" + "history_id": 1684436739701 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7fc2d753411c46fab76efad5", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739822/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739701/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", + "revision": "03df5934ef234873a5f19c56", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739822/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -4876,18 +7714,31 @@ "overpaid_amount": 0, "installment_amount": 114.75, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5ea9a48959144631b366b6fa", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739822", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -4898,38 +7749,46 @@ "total_amount": 114.75, "id": 1684436739822, "contract_id": "1679181157805", - "date_created": "2023-05-18T19:05:39.822Z", - "date_last_updated": "2023-05-18T19:05:39.822Z", - "date_of_expiration": "2023-05-18T19:05:39.822Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1684436739822, - "description": "Pagamento de fatura 2 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805" + "history_id": 1684436739822 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "60e6215273084d11bf150784", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739934/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739822/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", + "revision": "19dd7cf701bc441ba7832965", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739934/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -4942,18 +7801,31 @@ "overpaid_amount": 0, "installment_amount": 119.6, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d52543a0dce1453d8f2af0a1", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739934", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -4964,38 +7836,46 @@ "total_amount": 119.6, "id": 1684436739934, "contract_id": "1679183534080", - "date_created": "2023-05-18T19:05:39.934Z", - "date_last_updated": "2023-05-18T19:05:39.934Z", - "date_of_expiration": "2023-05-18T19:05:39.934Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1684436739934, - "description": "Pagamento de fatura 2 de 2 no valor de 119,60 BRL referente ao contrato 1679183534080" + "history_id": 1684436739934 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "858939bfffc740ed825cd174", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740031/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739934/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 2 no valor de 119,60 BRL referente ao contrato 1679183534080", + "revision": "702366f8ef424113b603f2a7", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740031/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -5008,18 +7888,31 @@ "overpaid_amount": 0, "installment_amount": 104, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fcac6285c9a74f329be8b62f", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740031", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -5030,38 +7923,46 @@ "total_amount": 104, "id": 1684436740031, "contract_id": "1679184046128", - "date_created": "2023-05-18T19:05:40.031Z", - "date_last_updated": "2023-05-18T19:05:40.031Z", - "date_of_expiration": "2023-05-18T19:05:40.031Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1684436740031, - "description": "Pagamento de fatura 2 de 2 no valor de 104,00 BRL referente ao contrato 1679184046128" + "history_id": 1684436740031 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b15912c8fc7f4d5d9d3a5ff9", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740155/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740031/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 2 no valor de 104,00 BRL referente ao contrato 1679184046128", + "revision": "7f4c2271e08d40158d955bcd", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740155/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -5074,18 +7975,31 @@ "overpaid_amount": 0, "installment_amount": 109.2, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "47b7921ddb3942cf968fa91d", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740155", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -5096,38 +8010,46 @@ "total_amount": 109.2, "id": 1684436740155, "contract_id": "1679184832424", - "date_created": "2023-05-18T19:05:40.155Z", - "date_last_updated": "2023-05-18T19:05:40.155Z", - "date_of_expiration": "2023-05-18T19:05:40.155Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1684436740155, - "description": "Pagamento de fatura 2 de 2 no valor de 109,20 BRL referente ao contrato 1679184832424" + "history_id": 1684436740155 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a26020392f1040cbb9c879d7", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790150988/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740155/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 2 no valor de 109,20 BRL referente ao contrato 1679184832424", + "revision": "4402e65efd444479bd41e3bb", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790150988/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684790150988, @@ -5138,18 +8060,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "86f4120dcfec4648bfff2244", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790150988", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -5159,9 +8094,18 @@ "original_amount": 5850731, "total_amount": 5850731, "id": 1684790150988, - "date_created": "2023-05-22T21:15:50.988Z", - "date_last_updated": "2023-05-22T21:15:50.988Z", - "date_of_expiration": "2023-05-22T21:15:50.988Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5170,27 +8114,16 @@ "history_id": 1684790150988, "description": "Compra de 5.850.731,00 IVIP por 1.200,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790990972/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2b1d9edaba414b5ba2b8d2c9", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790990972/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684790990972, @@ -5201,18 +8134,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "22fbe84989654543b1be6580", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790990972", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -5222,49 +8168,71 @@ "original_amount": 1065.7, "total_amount": 1065.7, "id": 1684790990972, - "date_created": "2023-05-22T21:29:50.972Z", - "date_last_updated": "2023-05-22T21:29:50.972Z", - "date_of_expiration": "2023-05-22T21:29:50.972Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684790990972, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684790990972 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cca710c22db44d8f95066f8b", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790990972/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "89f35903502c4a23a5bb1b4c", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } + }, + "revision": "e4e67476f1984ae0b92767ed", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -5273,47 +8241,69 @@ "total_amount": 2337199, "history_id": 1685376471814, "id": 1685376471814, - "date_created": "2023-05-29T16:07:51.814Z", - "date_last_updated": "2023-05-29T16:07:51.814Z", - "date_of_expiration": "2023-05-29T16:07:51.814Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 2.337.199,00 IVIP para a carteira 0x0000000000000000000000000000000000000000" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "00b9ea068fc548b3b1d10648", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 2.337.199,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "bf2092209e0c4286b7c5a6c8", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } + }, + "revision": "e968abb791524bdabd56197e", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -5322,47 +8312,69 @@ "total_amount": 1357502, "history_id": 1685376968807, "id": 1685376968807, - "date_created": "2023-05-29T16:16:08.807Z", - "date_last_updated": "2023-05-29T16:16:08.807Z", - "date_of_expiration": "2023-05-29T16:16:08.807Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 1.357.502,00 IVIP para a carteira 0x0000000000000000000000000000000000000000" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "62e327741f8b4b1d8917dc89", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 1.357.502,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "2888640833f248c9bdd493ba", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } + }, + "revision": "14b425397f384670873fa002", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -5371,9 +8383,18 @@ "total_amount": 754612, "history_id": 1685379763814, "id": 1685379763814, - "date_created": "2023-05-29T17:02:43.814Z", - "date_last_updated": "2023-05-29T21:52:34.691Z", - "date_of_expiration": "2023-05-29T17:02:43.814Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -5381,41 +8402,54 @@ "date_approved": "2023-05-29T21:52:34.691Z", "money_release_date": "2023-05-29T21:52:34.691Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 754.612,00 IVIP para a carteira 0x0000000000000000000000000000000000000000" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "021d42e05741476ea63d24ef", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 754.612,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "0566b58c3c0b427fa072c437", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } + }, + "revision": "1bea1695da9c49c6bc3ec375", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -5424,47 +8458,69 @@ "total_amount": 1432864, "history_id": 1685379960399, "id": 1685379960399, - "date_created": "2023-05-29T17:06:00.399Z", - "date_last_updated": "2023-05-29T17:06:00.399Z", - "date_of_expiration": "2023-05-29T17:06:00.399Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 1.432.864,00 IVIP para a carteira 0x0000000000000000000000000000000000000000" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cd2f8d7ca751437c907f23de", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 1.432.864,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "202bb23c5aba49c283b0a8bf", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } + }, + "revision": "fd2aee48fd624271b6461cfe", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -5473,38 +8529,46 @@ "total_amount": 2248, "history_id": 1685382789817, "id": 1685382789817, - "date_created": "2023-05-29T17:53:09.817Z", - "date_last_updated": "2023-05-29T17:53:41.235Z", - "date_of_expiration": "2023-06-28T17:53:09.817Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-05-29T17:53:41.235Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 2.248,00 para a carteira iVip 0005.2314.7298.6693-13" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0098bfaab1c842b4b9f95165", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685391703693/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 2.248,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "4102dc11e3ad4840a3dd7ff9", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685391703693/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685391703693, @@ -5515,18 +8579,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b60ed7128e684e0bba00c79b", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685391703693", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -5536,9 +8613,18 @@ "original_amount": 15, "total_amount": 15, "id": 1685391703693, - "date_created": "2023-05-29T20:21:43.693Z", - "date_last_updated": "2023-05-29T20:21:43.693Z", - "date_of_expiration": "2023-05-29T20:21:43.693Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5547,27 +8633,16 @@ "history_id": 1685391703693, "description": "Compra de 15,00 IVIP por 150,00 IVIPAY" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685392276817/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "04b98fae37d94016b47dc790", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685392276817/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685392276817, @@ -5578,18 +8653,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1f88d9d041b74ffc94666011", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685392276817", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -5599,9 +8687,18 @@ "original_amount": 5000, "total_amount": 5000, "id": 1685392276817, - "date_created": "2023-05-29T20:31:16.817Z", - "date_last_updated": "2023-05-29T20:31:16.817Z", - "date_of_expiration": "2023-05-29T20:31:16.817Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5610,27 +8707,16 @@ "history_id": 1685392276817, "description": "Compra de 5.000,00 IVIP por 50.000,00 IVIPAY" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393515405/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8f8fe1ab4448483d80e1d223", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393515405/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685393515405, @@ -5641,18 +8727,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "713fc32d024441e89c27fd99", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393515405", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -5662,9 +8761,18 @@ "original_amount": 500, "total_amount": 500, "id": 1685393515405, - "date_created": "2023-05-29T20:51:55.405Z", - "date_last_updated": "2023-05-29T20:51:55.405Z", - "date_of_expiration": "2023-05-29T20:51:55.405Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5673,27 +8781,16 @@ "history_id": 1685393515405, "description": "Compra de 500,00 IVIP por 5.000,00 IVIPAY" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e41b21aedbc84575a21f700c", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393559293/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393559293/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685393559293, @@ -5704,18 +8801,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "93b9acc10b524066b63ed02e", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393559293", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -5725,9 +8835,18 @@ "original_amount": 5200, "total_amount": 5200, "id": 1685393559293, - "date_created": "2023-05-29T20:52:39.293Z", - "date_last_updated": "2023-05-29T20:52:39.293Z", - "date_of_expiration": "2023-05-29T20:52:39.293Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5736,27 +8855,16 @@ "history_id": 1685393559293, "description": "Compra de 5.200,00 IVIP por 52.000,00 IVIPAY" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685394959774/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0ed19bd0f3014b409faaf168", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685394959774/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685394959774, @@ -5767,18 +8875,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8a304bf304284531b5dd4c92", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685394959774", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -5788,9 +8909,18 @@ "original_amount": 4200, "total_amount": 4200, "id": 1685394959774, - "date_created": "2023-05-29T21:15:59.774Z", - "date_last_updated": "2023-05-29T21:15:59.774Z", - "date_of_expiration": "2023-05-29T21:15:59.774Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5799,27 +8929,16 @@ "history_id": 1685394959774, "description": "Compra de 4.200,00 IVIP por 42.000,00 IVIPAY" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4dcccbb0fe8b47de98ffead8", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395256711/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395256711/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685395256711, @@ -5830,18 +8949,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4ad678ae196548be902134a6", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395256711", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -5851,9 +8983,18 @@ "original_amount": 9, "total_amount": 9, "id": 1685395256711, - "date_created": "2023-05-29T21:20:56.711Z", - "date_last_updated": "2023-05-29T21:20:56.711Z", - "date_of_expiration": "2023-05-29T21:20:56.711Z", + "date_created": { + "type": 6, + "value": 1701459383470 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383470 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5862,27 +9003,16 @@ "history_id": 1685395256711, "description": "Compra de 9,00 IVIP por 95,00 IVIPAY" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "abf75ce45b3a45bb9861c9de", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395602952/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383470, + "modified": 1701459383470 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395602952/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685395602952, @@ -5893,18 +9023,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7ad4c7ae57c340409842c697", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395602952", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -5914,38 +9057,46 @@ "original_amount": 10000, "total_amount": 10000, "id": 1685395602952, - "date_created": "2023-05-29T21:26:42.952Z", - "date_last_updated": "2023-05-29T21:26:42.952Z", - "date_of_expiration": "2023-05-29T21:26:42.952Z", + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIPAY", - "history_id": 1685395602952, - "description": "Compra de 10.000,00 IVIPAY por 1.000,00 IVIP estabilizando US$ 0,09" + "history_id": 1685395602952 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0b8d4245c20740afa58c4f83", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395698830/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395602952/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 10.000,00 IVIPAY por 1.000,00 IVIP estabilizando US$ 0,09", + "revision": "0da4c1d4731c4d4fba2734e1", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395698830/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685395698830, @@ -5956,18 +9107,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4efa194c5e4e4930b655ad92", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395698830", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -5977,9 +9141,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685395698830, - "date_created": "2023-05-29T21:28:18.830Z", - "date_last_updated": "2023-05-29T21:28:18.830Z", - "date_of_expiration": "2023-05-29T21:28:18.830Z", + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5988,27 +9161,16 @@ "history_id": 1685395698830, "description": "Compra de 1.000,00 IVIP por 10.000,00 IVIPAY" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e6de06ec08b8411190a784f7", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457147497/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457147497/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685457147497, @@ -6019,18 +9181,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "62972517d3054013b0508e09", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457147497", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -6040,38 +9215,46 @@ "original_amount": 30000, "total_amount": 30000, "id": 1685457147497, - "date_created": "2023-05-30T14:32:27.497Z", - "date_last_updated": "2023-05-30T14:32:27.497Z", - "date_of_expiration": "2023-05-30T14:32:27.497Z", + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIPAY", - "history_id": 1685457147497, - "description": "Compra de 30.000,00 IVIPAY por 3.000,00 IVIP estabilizando US$ 0,22" + "history_id": 1685457147497 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7205ede6a8654d1497fa2bed", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457225462/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457147497/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 30.000,00 IVIPAY por 3.000,00 IVIP estabilizando US$ 0,22", + "revision": "0d1fc9b8d4ab41da800c6550", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457225462/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685457225462, @@ -6082,18 +9265,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "55aec11e680a478cac3deee7", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457225462", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -6103,9 +9299,18 @@ "original_amount": 3000, "total_amount": 3000, "id": 1685457225462, - "date_created": "2023-05-30T14:33:45.462Z", - "date_last_updated": "2023-05-30T14:33:45.462Z", - "date_of_expiration": "2023-05-30T14:33:45.462Z", + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6114,27 +9319,16 @@ "history_id": 1685457225462, "description": "Compra de 3.000,00 IVIP por 30.000,00 IVIPAY" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458042396/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aaddda51c38f440683a76cb2", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458042396/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685458042396, @@ -6145,18 +9339,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d6229da3293a4a8cb230e747", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458042396", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -6166,38 +9373,46 @@ "original_amount": 70000, "total_amount": 70000, "id": 1685458042396, - "date_created": "2023-05-30T14:47:22.396Z", - "date_last_updated": "2023-05-30T14:47:22.396Z", - "date_of_expiration": "2023-05-30T14:47:22.396Z", + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIPAY", - "history_id": 1685458042396, - "description": "Compra de 70.000,00 IVIPAY por 7.000,00 IVIP estabilizando US$ 0,46" + "history_id": 1685458042396 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "009d0fb8663c4d5d99ba20e2", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458118470/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458042396/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 70.000,00 IVIPAY por 7.000,00 IVIP estabilizando US$ 0,46", + "revision": "9285022569cc417792043505", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458118470/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685458118470, @@ -6208,18 +9423,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fc4ea63d09c54d9184935f3d", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458118470", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -6229,9 +9457,18 @@ "original_amount": 7000, "total_amount": 7000, "id": 1685458118470, - "date_created": "2023-05-30T14:48:38.470Z", - "date_last_updated": "2023-05-30T14:48:38.470Z", - "date_of_expiration": "2023-05-30T14:48:38.470Z", + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6240,27 +9477,16 @@ "history_id": 1685458118470, "description": "Compra de 7.000,00 IVIP por 70.000,00 IVIPAY" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685663081137/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "357067ff884541f5a26d6a97", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685663081137/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685663081137, @@ -6271,18 +9497,31 @@ "overpaid_amount": 0, "installment_amount": 100000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fc3a2d74224647fd9838ac64", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685663081137", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -6291,9 +9530,18 @@ "original_amount": 100000, "total_amount": 100000, "id": 1685663081137, - "date_created": "2023-06-01T23:44:41.137Z", - "date_last_updated": "2023-06-01T23:44:41.137Z", - "date_of_expiration": "2023-07-01T23:44:41.137Z", + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6303,27 +9551,16 @@ "description": "", "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685732640623/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "47b4a790440b4ba9ae62a7ec", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685732640623/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685732640623, @@ -6334,18 +9571,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "25e3bbe7d7ee4aa4825e402e", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685732640623", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -6355,9 +9605,18 @@ "original_amount": 0, "total_amount": 0, "id": 1685732640623, - "date_created": "2023-06-02T19:04:00.623Z", - "date_last_updated": "2023-06-02T19:04:00.623Z", - "date_of_expiration": "2023-06-02T19:04:00.623Z", + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6366,38 +9625,41 @@ "history_id": 1685732640623, "description": "Compra de 0,00 IVIP por 75,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d281954a65464a98be0bfdfe", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } + }, + "revision": "2853c73fbe914f1ea3008a83", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -6406,36 +9668,44 @@ "total_amount": 220, "history_id": 1686686158496, "id": 1686686158496, - "date_created": "2023-06-13T19:55:58.496Z", - "date_last_updated": "2023-06-13T19:55:58.496Z", - "date_of_expiration": "2023-07-13T19:55:58.496Z", + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 220,00 para a carteira iVip 0005.2314.7298.6693-13" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dd356da4cda648bfa26a09c2", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687279230710/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 220,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "d1f45292627648a3a653a654", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687279230710/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 3, @@ -6448,18 +9718,31 @@ "overpaid_amount": 0, "installment_amount": 37.333, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6e4469e4b94446fb885a119c", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687279230710", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -6470,49 +9753,71 @@ "total_amount": 37.333, "id": 1687279230710, "contract_id": "1679181025084", - "date_created": "2023-06-20T16:40:30.710Z", - "date_last_updated": "2023-06-20T16:40:30.710Z", - "date_of_expiration": "2023-06-20T16:40:30.710Z", + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1687279230710, - "description": "Pagamento de fatura 3 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084" + "history_id": 1687279230710 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ec6a117ad5ee4f78a0f4350f", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687279230710/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 3 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", + "revision": "f67c7989dc1b4b19979da5c2", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } + }, + "revision": "5a6868e999fa44fcb47a677c", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -6521,36 +9826,44 @@ "total_amount": 865324, "history_id": 1687291349985, "id": 1687291349985, - "date_created": "2023-06-20T20:02:29.985Z", - "date_last_updated": "2023-06-20T20:02:29.985Z", - "date_of_expiration": "2023-06-20T20:02:29.985Z", + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 865.324,00 IVIP para a carteira 0x0000000000000000000000000000000000000000" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4aa0abb228f849f195d30a2f", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1688400997533/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 865.324,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "14629d8189394c3d954fbd8c", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1688400997533/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688400997533, @@ -6561,18 +9874,31 @@ "overpaid_amount": 0, "installment_amount": 100000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "167d82be8e204f63afb02554", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1688400997533", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -6581,39 +9907,47 @@ "original_amount": 102000, "total_amount": 102000, "id": 1688400997533, - "date_created": "2023-07-03T16:16:37.533Z", - "date_last_updated": "2023-07-03T16:16:37.533Z", - "date_of_expiration": "2023-07-03T16:16:37.533Z", + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1688400997533, - "wasDebited": true, - "description": "Resgate do investimento staking de 100.000,00 IVIP com um rendimento de +2.000,00 IVIP (2,00%)" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c29164a6de624e92ac05014d", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689203359364/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1688400997533/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 100.000,00 IVIP com um rendimento de +2.000,00 IVIP (2,00%)", + "revision": "8cf47ddc55ec43f4b05461fd", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689203359364/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689203359364, @@ -6624,18 +9958,31 @@ "overpaid_amount": 0, "installment_amount": 960, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4cf5f4f71da64bb79de69b86", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689203359364", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -6644,52 +9991,72 @@ "original_amount": 960, "total_amount": 960, "id": 1689203359364, - "date_created": "2023-07-12T23:09:19.364Z", - "date_last_updated": "2023-07-12T23:09:19.364Z", - "date_of_expiration": "2024-05-12T23:09:19.364Z", + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1689203359364, - "description": "Investimento de 960,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/12/2024" + "history_id": 1689203359364 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "75ff83742dc34173ad51a2d5", "revision_nr": 1, - "created": 1700748395462, - "modified": 1700748395462 + "created": 1701459383471, + "modified": 1701459383471 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689203359364/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-08-19T18:23:22.188Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 960,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/12/2024", + "revision": "adb0a933c94343b2a10c25b7", "revision_nr": 1, - "created": 1700748395463, - "modified": 1700748395463 + "created": 1701459383471, + "modified": 1701459383471 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-08-19T18:23:22.188Z", + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } + }, + "revision": "11dd07a3b379474da053748f", "revision_nr": 1, - "created": 1700748395463, - "modified": 1700748395463 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1689877402192, "net_received_amount": 0, @@ -6699,18 +10066,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/extract/000523147298669313/order/1689877402188" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "178cdf2386bf41de8aee0db3", "revision_nr": 1, - "created": 1700748395463, - "modified": 1700748395463 + "created": 1701459383471, + "modified": 1701459383471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/extract/000523147298669313/order/1689877402188", + "revision": "39e8da02f2f94a1e8ccab4a0", + "revision_nr": 1, + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -6719,51 +10109,72 @@ "total_amount": 7104, "id": 1689877402192, "history_id": 1689877402192, - "date_created": "2023-07-20T18:23:22.192Z", - "date_last_updated": "2023-07-20T18:23:22.192Z", + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor R$ 7.104,00 para a carteira iVip 0005.2314.7298.6693-13" + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3edd40f6026947ac8f03cbcb", "revision_nr": 1, - "created": 1700748395463, - "modified": 1700748395463 + "created": 1701459383471, + "modified": 1701459383471 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-08-19T20:01:24.161Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 7.104,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "7258bbd56ce043a1973f5758", "revision_nr": 1, - "created": 1700748395463, - "modified": 1700748395463 + "created": 1701459383471, + "modified": 1701459383471 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-08-19T20:01:24.161Z", + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } + }, + "revision": "b518ca639cc64d39a9a6b13f", "revision_nr": 1, - "created": 1700748395463, - "modified": 1700748395463 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1689883284161, "net_received_amount": 0, @@ -6773,18 +10184,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1689883284161" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aa26f0f81e9146af944afbb8", "revision_nr": 1, - "created": 1700748395463, - "modified": 1700748395463 + "created": 1701459383471, + "modified": 1701459383471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1689883284161", + "revision": "d4befe1a48a94951a1004693", + "revision_nr": 1, + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -6793,8 +10227,14 @@ "total_amount": 1391, "id": 1689883284161, "history_id": 1689883284161, - "date_created": "2023-07-20T20:01:24.161Z", - "date_last_updated": "2023-07-20T20:02:07.692Z", + "date_created": { + "type": 6, + "value": 1701459383471 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383471 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -6804,33 +10244,59 @@ "money_release_date": "2023-07-20T20:02:07.692Z", "money_release_status": "rejected", "wasDebited": true, - "description": "Deposito de um valor R$ 1.391,00 para a carteira iVip 0005.2314.7298.6693-13" + "date_of_expiration": { + "type": 6, + "value": 1701459383471 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2b2bd97257174abaad50383a", "revision_nr": 1, - "created": 1700748395463, - "modified": 1700748395463 + "created": 1701459383471, + "modified": 1701459383471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.391,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "4f6da5bf679746c49670174a", + "revision_nr": 1, + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3%", - "amount": 145.5 + "amount": 145.5, + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "92106f8f2b8141e88284ebb6", "revision_nr": 1, - "created": 1700748395463, - "modified": 1700748395463 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690566158772, "net_received_amount": 0, @@ -6840,18 +10306,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566158772" + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "34e186c642754dd58f998390", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566158772", + "revision": "12ba82346ca842eb84235297", + "revision_nr": 1, + "created": 1701459383471, + "modified": 1701459383471 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "f290c87e6a7c4593808e1acb", "revision_nr": 1, - "created": 1700748395463, - "modified": 1700748395463 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -6860,9 +10359,18 @@ "total_amount": 4850, "id": 1690566158772, "history_id": 1690566158772, - "date_created": "2023-07-28T17:42:38.772Z", - "date_last_updated": "2023-07-28T18:25:14.945Z", - "date_of_expiration": "2023-07-28T17:42:38.772Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -6871,34 +10379,56 @@ "status_detail": "rejected", "money_release_date": "2023-07-28T18:25:14.945Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Saque de 50,00 IVIP para a carteira 0x0000000000000000000000000000000000000000" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9db02bdd8714423b9e05d369", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/description", + "content": { + "type": "STRING", + "value": "Saque de 50,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "2bad43aad74c44509935248d", "revision_nr": 1, - "created": 1700748395463, - "modified": 1700748395463 + "created": 1701459383471, + "modified": 1701459383471 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3%", - "amount": 29.099999999999998 + "amount": 29.099999999999998, + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4726453ed9384e6e83d78bce", "revision_nr": 1, - "created": 1700748395463, - "modified": 1700748395463 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690566489489, "net_received_amount": 0, @@ -6908,18 +10438,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566489489" + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c85be72836c54e80a3625f70", "revision_nr": 1, - "created": 1700748395463, - "modified": 1700748395463 + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566489489", + "revision": "a14884ef1f694382b29ddfeb", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "16f5c0815be74e3f9e1da522", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -6928,9 +10491,18 @@ "total_amount": 970, "id": 1690566489489, "history_id": 1690566489489, - "date_created": "2023-07-28T17:48:09.489Z", - "date_last_updated": "2023-07-28T18:25:45.368Z", - "date_of_expiration": "2023-07-28T17:48:09.489Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -6940,34 +10512,56 @@ "date_approved": "2023-07-28T18:25:45.368Z", "money_release_date": "2023-07-28T18:25:45.368Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 10,00 IVIP para a carteira 0x0000000000000000000000000000000000000000" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2516006e14b94a67aba19261", "revision_nr": 1, - "created": 1700748395463, - "modified": 1700748395463 + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/description", + "content": { + "type": "STRING", + "value": "Saque de 10,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "4c90d26a0b524640984256df", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3%", - "amount": 34.92 + "amount": 34.92, + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6d223196ad414056b519eb34", "revision_nr": 1, - "created": 1700748395463, - "modified": 1700748395463 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690566618435, "net_received_amount": 0, @@ -6977,18 +10571,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566618435" + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f7e4981a31b742959ad0e5d5", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566618435", + "revision": "062b0c1f879d4f18bdb91326", "revision_nr": 1, - "created": 1700748395463, - "modified": 1700748395463 + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "db255c7666f74c9d9b493053", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -6997,9 +10624,18 @@ "total_amount": 1164, "id": 1690566618435, "history_id": 1690566618435, - "date_created": "2023-07-28T17:50:18.435Z", - "date_last_updated": "2023-07-28T18:26:54.405Z", - "date_of_expiration": "2023-07-28T17:50:18.435Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -7008,34 +10644,56 @@ "status_detail": "rejected", "money_release_date": "2023-07-28T18:26:54.405Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Saque de 1164 IVIP para a carteira 0x0000000000000000000000000000000000000000" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ef1420a541614c9d9263ed2d", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/description", + "content": { + "type": "STRING", + "value": "Saque de 1164 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "eba75dbb9d48495bada97f15", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 392.84999999999997 + "amount": 392.84999999999997, + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7604a0cd323e4403ba189c85", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690568586623, "net_received_amount": 0, @@ -7045,18 +10703,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690568586623" + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "14fd3324d4bc4f8ba5fd8f8b", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690568586623", + "revision": "a365ff71c1a44c6b88895be4", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "7ee618e4e0a7484283df12ba", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -7065,9 +10756,18 @@ "total_amount": 13095, "id": 1690568586623, "history_id": 1690568586623, - "date_created": "2023-07-28T18:23:06.623Z", - "date_last_updated": "2023-07-28T18:27:14.472Z", - "date_of_expiration": "2023-07-28T18:23:06.623Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -7076,30 +10776,29 @@ "status_detail": "rejected", "money_release_date": "2023-07-28T18:27:14.472Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Saque de 13.095,00 IVIP para a carteira 0x0000000000000000000000000000000000000000" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b2c00da6bd95479da815f43e", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1691685725174/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 13.095,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", + "revision": "43f0bfdbb9974df59c238fc0", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1691685725174/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691685725174, "net_received_amount": 0, @@ -7109,18 +10808,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1691685725174" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0da2d8b7bb064ef0ae5e29c5", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1691685725174/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1691685725174", + "revision": "77cf5edd9f5c46ccb354ab26", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1691685725174", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -7129,9 +10851,18 @@ "total_amount": 155950, "id": 1691685725174, "history_id": 1691685725174, - "date_created": "2023-08-10T16:42:05.174Z", - "date_last_updated": "2023-08-10T16:42:05.174Z", - "date_of_expiration": "2023-08-10T16:42:05.174Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -7140,41 +10871,42 @@ "description": "Compra de 155.950,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8e8c9c46f086448898bb4324", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-16T18:40:23.442Z" + ".val": "2023-09-16T18:40:23.442Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "10e7d61e277d431796712343", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692297623443, "net_received_amount": 0, @@ -7184,18 +10916,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692297623443" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b2df944d5a9348a1b2e6abb5", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692297623443", + "revision": "e4f4a104121d4024861cd832", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -7204,51 +10959,72 @@ "total_amount": 50, "id": 1692297623443, "history_id": 1692297623443, - "date_created": "2023-08-17T18:40:23.443Z", - "date_last_updated": "2023-08-17T18:40:23.443Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 50,00 para a carteira iVip 0005.2314.7298.6693-13" + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "93b24e0b1a8041afa657d07c", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-16T18:42:48.550Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 50,00 para a carteira iVip 0005.2314.7298.6693-13", + "revision": "47cdd4c7f0dd40a1b5fb48ca", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-16T18:42:48.550Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } + }, + "revision": "a1dfada8d6554d3199c12e5e", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692297768550, "net_received_amount": 0, @@ -7258,18 +11034,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692297768550" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "73e1241ac8064032a122b2d3", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692297768550", + "revision": "15cf421786ec46f49fda0e4e", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -7278,8 +11077,14 @@ "total_amount": 25, "id": 1692297768550, "history_id": 1692297768550, - "date_created": "2023-08-17T18:42:48.550Z", - "date_last_updated": "2023-08-17T18:43:22.788Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -7289,43 +11094,58 @@ "money_release_date": "2023-08-17T18:43:22.788Z", "money_release_status": "rejected", "wasDebited": true, - "description": "Deposito de um valor 25,00 BRL para a carteira iVip 0005.2314.7298.6693-13" + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "28a199687a934efa95c66003", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-16T20:37:26.621Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 25,00 BRL para a carteira iVip 0005.2314.7298.6693-13", + "revision": "fab5ee39917e407baa5c9893", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-16T20:37:26.621Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } + }, + "revision": "4920bafb3b41420d84ba8a66", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692304646621, "net_received_amount": 0, @@ -7335,18 +11155,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692304646621" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "57414929b9bc431abe5265d4", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692304646621", + "revision": "d25494c181584e698573e9c9", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -7355,8 +11198,14 @@ "total_amount": 1200, "id": 1692304646621, "history_id": 1692304646621, - "date_created": "2023-08-17T20:37:26.621Z", - "date_last_updated": "2023-08-17T20:40:02.388Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -7366,43 +11215,58 @@ "money_release_date": "2023-08-17T20:40:02.388Z", "money_release_status": "rejected", "wasDebited": true, - "description": "Deposito de um valor 1.200,00 IVIP para a carteira iVip 0005.2314.7298.6693-13" + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5ead2e545119400bb46bad9a", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-16T20:41:33.953Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 1.200,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", + "revision": "a2ac2ca7581a45b3b379f258", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-16T20:41:33.953Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } + }, + "revision": "fe0ea35268f34951ba115593", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692304893954, "net_received_amount": 0, @@ -7412,18 +11276,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692304893954" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "88664fcbc80c43ae881ab930", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692304893954", + "revision": "3c8044e374e648599d61ad25", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -7432,8 +11319,14 @@ "total_amount": 23000, "id": 1692304893954, "history_id": 1692304893954, - "date_created": "2023-08-17T20:41:33.954Z", - "date_last_updated": "2023-08-17T20:41:56.494Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -7444,43 +11337,58 @@ "money_release_date": "2023-08-17T20:41:56.494Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 23.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13" + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b41f73294dfc44d583ca79ef", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-16T23:06:58.376Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 23.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", + "revision": "a7be1db1092e4b82808783df", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-16T23:06:58.376Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } + }, + "revision": "c246f7a2946445f8a69089b5", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692313618376, "net_received_amount": 0, @@ -7490,18 +11398,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692313618376" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b5eb117bc23542018b25a09c", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692313618376", + "revision": "a420090f7c8f49ce98982711", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -7510,51 +11441,72 @@ "total_amount": 10000000, "id": 1692313618376, "history_id": 1692313618376, - "date_created": "2023-08-17T23:06:58.376Z", - "date_last_updated": "2023-08-17T23:06:58.376Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 10.000.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13" + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d74d01016e8a43de87b9df9d", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-17T14:16:26.664Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 10.000.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", + "revision": "7f0208ea021d44ea9b3cef7c", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-17T14:16:26.664Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } + }, + "revision": "f1a09e22a18745e1b634b94c", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692368186664, "net_received_amount": 0, @@ -7564,18 +11516,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692368186664" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dff4b12de03f4e9aaa0d4248", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692368186664", + "revision": "3a123ad0f5764b46bbd64779", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -7584,37 +11559,46 @@ "total_amount": 125000000, "id": 1692368186664, "history_id": 1692368186664, - "date_created": "2023-08-18T14:16:26.664Z", - "date_last_updated": "2023-08-18T14:16:26.664Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 125.000.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13" + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "afd8c9289abe40338466ebaf", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 125.000.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", + "revision": "2a44e5852c18418393fb70b0", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692651485901, "net_received_amount": 0, @@ -7624,20 +11608,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 3, "installments_payable": 1, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651485901" + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1e4c623162634477b5eb833e", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651485901", + "revision": "4a05be0a594b4d25ba89c669", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -7646,38 +11653,46 @@ "total_amount": 114.75, "id": "1692651485901", "history_id": "1692651485901", - "date_created": "2023-08-21T20:58:05.901Z", - "date_last_updated": "2023-08-21T20:58:05.901Z", - "date_of_expiration": "2023-08-21T20:58:05.901Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 3 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b92ce30f76b54bd7841df4af", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 3 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", + "revision": "a8cb721a74ac4d6c9a1ac878", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692651487214, "net_received_amount": 0, @@ -7687,20 +11702,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 4, "installments_payable": 2, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651487214" + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d0529e8471044e44aac20d37", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651487214", + "revision": "5d1b511c2d104e6fa55ba893", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -7709,38 +11747,46 @@ "total_amount": 37.333333333333336, "id": "1692651487214", "history_id": "1692651487214", - "date_created": "2023-08-21T20:58:07.214Z", - "date_last_updated": "2023-08-21T20:58:07.214Z", - "date_of_expiration": "2023-08-21T20:58:07.214Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 4 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b32e42e9c26947adb39b47db", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 4 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", + "revision": "6aa95a3643d24c87a5360027", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692651816060, "net_received_amount": 0, @@ -7750,20 +11796,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 5, "installments_payable": 1, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651816060" + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "90b7cb3a119143ca8045d23f", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651816060", + "revision": "af63b0e0e2f24c8d999cddb2", + "revision_nr": 1, + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -7772,38 +11841,46 @@ "total_amount": 37.333333333333336, "id": "1692651816060", "history_id": "1692651816060", - "date_created": "2023-08-21T21:03:36.060Z", - "date_last_updated": "2023-08-21T21:03:36.060Z", - "date_of_expiration": "2023-08-21T21:03:36.060Z", + "date_created": { + "type": 6, + "value": 1701459383472 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383472 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383472 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 5 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3809e7f63cf94716abec4cf4", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 5 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", + "revision": "38932e15e9ce4705bb6608bd", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383472, + "modified": 1701459383472 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692658113429, "net_received_amount": 0, @@ -7813,20 +11890,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 4, "installments_payable": 0, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692658113429" + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2e5e3c59a0284c66aac078f7", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692658113429", + "revision": "cd019fb545274e35a3809de8", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -7835,42 +11935,73 @@ "total_amount": 114.75, "id": "1692658113429", "history_id": "1692658113429", - "date_created": "2023-08-21T22:48:33.429Z", - "date_last_updated": "2023-08-21T22:48:33.429Z", - "date_of_expiration": "2023-08-21T22:48:33.429Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 4 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5788556da6b94df6aa3b3be5", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429/description", + "content": { + "type": "STRING", + "value": "Pagamento de fatura 4 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", + "revision": "661c78ef9b824362ae912987", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 660000 + "amount": 660000, + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1f69d9c20a5e49f1be39cb87", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692976623136, "net_received_amount": 0, @@ -7880,18 +12011,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692976623136" + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9ea3d13646804176a718787c", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692976623136", + "revision": "1b9416d715704b6c90efbd28", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "9e27c3e18e4f4b20978c3cf2", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -7900,9 +12064,18 @@ "total_amount": 21340000, "id": "1692976623136", "history_id": "1692976623136", - "date_created": "2023-08-25T15:17:03.136Z", - "date_last_updated": "2023-08-25T15:18:37.836Z", - "date_of_expiration": "2023-08-25T15:17:03.136Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -7912,30 +12085,29 @@ "date_approved": "2023-08-25T15:18:37.836Z", "money_release_date": "2023-08-25T15:18:37.836Z", "money_release_status": "drawee", - "wasDebited": true, - "description": "Saque de 21.340.000,00 IVIP para a carteira 0x15a315a0f6917CA88693fDCCD4B753E051c2d173" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "06a2e8051bc449408d34eeb1", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383473, + "modified": 1701459383473 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 21.340.000,00 IVIP para a carteira 0x15a315a0f6917CA88693fDCCD4B753E051c2d173", + "revision": "edfc3d24d83b4b82a226b790", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693346357974, "net_received_amount": 0, @@ -7945,18 +12117,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1693346357974" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b9186e34972e4523bbe79fd6", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1693346357974", + "revision": "84b03eb3e85c4da48d2c4dd8", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -7965,38 +12160,46 @@ "total_amount": 2000000, "id": "1693346357974", "history_id": "1693346357974", - "date_created": "2023-08-29T21:59:17.974Z", - "date_last_updated": "2023-08-29T21:59:17.974Z", - "date_of_expiration": "2025-08-29T21:59:17.968Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 2.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 29/08/2025 - P9A02KSL" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "95be0addceb94845bac632cd", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383473, + "modified": 1701459383473 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 2.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 29/08/2025 - P9A02KSL", + "revision": "71f46c4669b0491099aa65b2", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693765839188, "net_received_amount": 0, @@ -8006,18 +12209,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1693765839188" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cde0774826dd48c2b895f514", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1693765839188", + "revision": "cb6151dbe6444c3e8744dde2", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -8026,38 +12252,46 @@ "total_amount": 1000, "id": "1693765839188", "history_id": "1693765839188", - "date_created": "2023-09-03T18:30:39.188Z", - "date_last_updated": "2023-09-03T18:30:39.188Z", - "date_of_expiration": "2023-10-03T18:30:39.188Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dd19d4139ed749aaa575848a", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383473, + "modified": 1701459383473 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", + "revision": "65c99914529c49b1b9b9c932", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694554040120, "net_received_amount": 0, @@ -8067,20 +12301,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 5, "installments_payable": 1, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554040120" + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "523d0a2ad33846269b601e0c", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554040120", + "revision": "631a993817ff4b3288832070", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -8089,38 +12346,46 @@ "total_amount": 37.333333333333336, "id": "1694554040120", "history_id": "1694554040120", - "date_created": "2023-09-12T21:27:20.120Z", - "date_last_updated": "2023-09-12T21:27:20.120Z", - "date_of_expiration": "2023-09-12T21:27:20.120Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 5 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1ffa897417724c6aacbe4b43", "revision_nr": 1, - "created": 1700748395464, - "modified": 1700748395464 + "created": 1701459383473, + "modified": 1701459383473 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 5 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", + "revision": "9c6a8c0670404ae180d44f42", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694554040222, "net_received_amount": 0, @@ -8130,20 +12395,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 3, "installments_payable": 0, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554040222" + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e9bf4b0731064cf58e43bd48", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554040222", + "revision": "04f2e2cd233a46a2a0a557bb", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -8152,38 +12440,46 @@ "total_amount": 70.66666666666667, "id": "1694554040222", "history_id": "1694554040222", - "date_created": "2023-09-12T21:27:20.222Z", - "date_last_updated": "2023-09-12T21:27:20.222Z", - "date_of_expiration": "2023-09-12T21:27:20.222Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 3 de 3 no valor de 70,67 BRL referente ao contrato 1683667472591" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c87af2051a844f9380ee0581", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 3 de 3 no valor de 70,67 BRL referente ao contrato 1683667472591", + "revision": "47b898f233ba4d1fb8689e8a", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694554084107, "net_received_amount": 0, @@ -8193,20 +12489,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 6, "installments_payable": 0, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554084107" + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "37375b73f5c74b4f8178c599", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554084107", + "revision": "7160e1a91207449692d6570d", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -8215,38 +12534,46 @@ "total_amount": 37.333333333333336, "id": "1694554084107", "history_id": "1694554084107", - "date_created": "2023-09-12T21:28:04.107Z", - "date_last_updated": "2023-09-12T21:28:04.107Z", - "date_of_expiration": "2023-09-12T21:28:04.107Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 6 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "252b827d368940beaabcfc01", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696114300558/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 6 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", + "revision": "e820cdc7c31c48998ee2d431", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696114300558/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696114300558, "net_received_amount": 0, @@ -8256,18 +12583,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696114300558" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cd6b472f000644e3a74261d6", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696114300558/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696114300558", + "revision": "97526b6d12864753b70e880e", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696114300558", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -8277,9 +12627,18 @@ "total_amount": 100000, "id": "1696114300558", "history_id": "1696114300558", - "date_created": "2023-09-30T22:51:40.558Z", - "date_last_updated": "2023-09-30T22:51:40.558Z", - "date_of_expiration": "2023-09-30T22:51:40.558Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8288,27 +12647,16 @@ "description": "Ganho de 100.000,00 IVIP pelo VOUCHER", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "031732dad816426d834f2f34", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696118036096, "net_received_amount": 0, @@ -8318,18 +12666,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696118036096" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "719f5c639bda44d080f28dea", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696118036096", + "revision": "5913e02e41474c7a90c8ce2e", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -8339,38 +12710,46 @@ "total_amount": 100000, "id": "1696118036096", "history_id": "1696118036096", - "date_created": "2023-09-30T23:53:56.096Z", - "date_last_updated": "2023-09-30T23:53:56.096Z", - "date_of_expiration": "2023-09-30T23:53:56.096Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Ganho de 100.000,00 IVIP pelo VOUCHER com o número 1037" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cfd1c4e27fc242bfba5b5d37", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 100.000,00 IVIP pelo VOUCHER com o número 1037", + "revision": "b2386a084b9e465190fdf236", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696118157622, "net_received_amount": 0, @@ -8380,18 +12759,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696118157622" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a48685615f534e7f8181e8cd", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696118157622", + "revision": "fd396dc199a041f78fa4e1c2", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -8401,38 +12803,46 @@ "total_amount": 50000, "id": "1696118157622", "history_id": "1696118157622", - "date_created": "2023-09-30T23:55:57.622Z", - "date_last_updated": "2023-09-30T23:55:57.622Z", - "date_of_expiration": "2023-09-30T23:55:57.622Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Ganho de 50.000,00 IVIP pelo VOUCHER com o número 0023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8ffa22aeff574925a8632230", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 50.000,00 IVIP pelo VOUCHER com o número 0023", + "revision": "02cf5bd15dd24f4daaad0e79", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696360843684, "net_received_amount": 0, @@ -8442,18 +12852,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696360843684" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "03006a2e3b9b4e06b2822a3e", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696360843684", + "revision": "0fd1083434fb4375b23f7b25", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -8463,38 +12896,46 @@ "total_amount": 1020, "id": "1696360843684", "history_id": "1696360843684", - "date_created": "2023-10-03T19:20:43.684Z", - "date_last_updated": "2023-10-03T19:20:43.684Z", - "date_of_expiration": "2023-10-03T19:20:43.684Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "eec49fe54e1e4415a5f603b0", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { - "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186/details/costs", + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%) - Y12XDT27", + "revision": "cae325bd9a9c4cd59322a1b3", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696362317186, "net_received_amount": 0, @@ -8504,18 +12945,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696362317186" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "02dcf0ef34604a2cad8dbe81", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696362317186", + "revision": "bf289ff9ec9543dd99b9aecb", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -8525,53 +12989,84 @@ "total_amount": 1020, "id": "1696362317186", "history_id": "1696362317186", - "date_created": "2023-10-03T19:45:17.186Z", - "date_last_updated": "2023-10-03T19:45:17.186Z", - "date_of_expiration": "2023-10-03T19:45:17.186Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5bd972bbe49c4858930e0f8e", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186/description", + "content": { + "type": "STRING", + "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%) - Y12XDT27", + "revision": "493f442ef278412abb3c9ba3", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cc2a1cd7ebb34d008b301ef5", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", - "amount": 24 + "amount": 24, + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fb82f95986f84c35a289939a", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679181025084, "type": "emprestimo", @@ -8579,37 +13074,81 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": "2023-03-18T23:10:25.084Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00" + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b92530aaf3e64adf988f985e", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", + "revision": "6dd5f436538140f4b2a33189", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "d0d9f39ec6844e44b4b6e52c", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 51 + "amount": 51, + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "36a21272c471494896efed63", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679181157805, "type": "emprestimo", @@ -8617,37 +13156,81 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": "2023-03-18T23:12:37.805Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, "history_id": 1679181157805, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00" + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "652375cc92b346c0b073a5c4", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", + "revision": "37ae8db452304974aa147a66", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "f550fd874a684742b8dba9c6", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 9.200000000000001 + "amount": 9.200000000000001, + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c2f8f899d9ee454b945c4e84", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679183534080, "type": "emprestimo", @@ -8655,37 +13238,81 @@ "total_amount": 239.2, "installments": 2, "installment_amount": 119.6, - "date_created": "2023-03-18T23:52:14.080Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, "history_id": 1679183534080, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20" + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "41531350b2a844ddbe3be9c0", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", + "revision": "aeaa8ed8dbf441759e2f2536", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "a520708fb2f040829d9153d4", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 8 + "amount": 8, + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d24a29dbb7a44dcab9fe9054", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679184046128, "type": "emprestimo", @@ -8693,37 +13320,81 @@ "total_amount": 208, "installments": 2, "installment_amount": 104, - "date_created": "2023-03-19T00:00:46.128Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, "history_id": 1679184046128, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00" + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6aea714deea548408ce0af8b", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", + "revision": "9ef5a088893b47e9a67ef4fb", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "4aa1c93aea4a43b2b3e07c33", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 8.4 + "amount": 8.4, + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "704e5587b5914b08b6846069", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679184832424, "type": "emprestimo", @@ -8731,48 +13402,92 @@ "total_amount": 218.4, "installments": 2, "installment_amount": 109.2, - "date_created": "2023-03-19T00:13:52.424Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, "history_id": 1679184832424, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40" + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9c0ca528acb54d3a813823a6", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", + "revision": "678e45cd08024b16ada9c672", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "409420be653d4abaa4729cfb", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e7e8c1d18ee94eea92f7ed93", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", - "amount": 24 + "amount": 24, + "date_created": { + "type": 6, + "value": 1701459383473 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6ad802f32eb8437a83d324c0", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679181025084, "type": "emprestimo", @@ -8780,37 +13495,81 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": "2023-03-18T23:10:25.084Z", + "date_created": { + "type": 6, + "value": 1701459383473 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00" + "date_last_updated": { + "type": 6, + "value": 1701459383473 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383473 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e730edf476e54010ae8af37b", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", + "revision": "a21f6c00e1ab4a8fbe1f7505", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "13e65dd35df946319f480b46", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 51 + "amount": 51, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ec57d450a5b840cfbb9a1558", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679181157805, "type": "emprestimo", @@ -8818,37 +13577,81 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": "2023-03-18T23:12:37.805Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, "history_id": 1679181157805, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00" + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9f4f38fd837d4903834a096a", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", + "revision": "8b8448e6a2e64ff99c4970cd", + "revision_nr": 1, + "created": 1701459383473, + "modified": 1701459383473 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "4b34c0350fc04164bee2c87b", "revision_nr": 1, - "created": 1700748395465, - "modified": 1700748395465 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 9.200000000000001 + "amount": 9.200000000000001, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cbf9a776d86a4231905900d6", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679183534080, "type": "emprestimo", @@ -8856,37 +13659,81 @@ "total_amount": 239.2, "installments": 2, "installment_amount": 119.6, - "date_created": "2023-03-18T23:52:14.080Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, "history_id": 1679183534080, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20" + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7ee73079e48848f798517c91", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", + "revision": "0f7af38fa2d34a139510af1e", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "c188e2bc29de4ee3a41dbb5a", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 8 + "amount": 8, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "159c4295bc904f5c945a9c56", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679184046128, "type": "emprestimo", @@ -8894,37 +13741,81 @@ "total_amount": 208, "installments": 2, "installment_amount": 104, - "date_created": "2023-03-19T00:00:46.128Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, "history_id": 1679184046128, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00" + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "13eb4ba629424c9baf220822", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", + "revision": "d9a77ca6ec9b4e29a761cce0", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "020739c7c91941858433c80d", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 8.4 + "amount": 8.4, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7e73712b8d9f44df8d2ece57", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679184832424, "type": "emprestimo", @@ -8932,48 +13823,92 @@ "total_amount": 218.4, "installments": 2, "installment_amount": 109.2, - "date_created": "2023-03-19T00:13:52.424Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, "history_id": 1679184832424, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40" + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3692b9c6d5544dcc8468f64c", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", + "revision": "e2c8bc93e0c74f65ab57714d", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "6e92d1cc39794a3eb3f04c52", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c289d933c27d4095bf3c6205", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", - "amount": 24 + "amount": 24, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "64d5a9df13554dd3a4a60111", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679181025084, "type": "emprestimo", @@ -8981,37 +13916,81 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": "2023-03-18T23:10:25.084Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00" + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "55f01f9bbfc24114827d698d", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", + "revision": "12ed88a40d6a4f05920e5ba8", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "a53c2833500b4e54aaa3448e", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 51 + "amount": 51, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8234f38b72b142d28156f209", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679181157805, "type": "emprestimo", @@ -9019,37 +13998,81 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": "2023-03-18T23:12:37.805Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, "history_id": 1679181157805, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00" + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "62da8ebd7a834534979129c6", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", + "revision": "f144bdf2e2284c7885c0a5bf", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "0422d87af0ee434594998fa9", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 4 + "amount": 4, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "78af0262cb574f1096438ff1", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1683665355468, "type": "emprestimo", @@ -9057,37 +14080,81 @@ "total_amount": 204, "installments": 1, "installment_amount": 204, - "date_created": "2023-05-09T20:49:15.468Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, "history_id": 1683665355468, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 204,00" + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2dd33418eec44da59d259ccb", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 204,00", + "revision": "49247abc694048a7ad922150", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "c2503467808c47938526b824", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", - "amount": 12 + "amount": 12, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a1018f5aa35a42fc95f1c3d2", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1683667472591, "type": "emprestimo", @@ -9095,48 +14162,92 @@ "total_amount": 212, "installments": 3, "installment_amount": 70.66666666666667, - "date_created": "2023-05-09T21:24:32.591Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, "history_id": 1683667472591, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00" + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4411f51085dc4bd3a7c95fc0", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", + "revision": "fc6e39a6f31b4aca836d3bde", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "e08b53ea575e47ae96b2b5bd", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4985e8ac1dcb485b9f4cb3f0", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", - "amount": 24 + "amount": 24, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e64c11340a664a6da37d599b", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679181025084, "type": "emprestimo", @@ -9144,37 +14255,81 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": "2023-03-18T23:10:25.084Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00" + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "15b3d03ce0a54617bda67bc2", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", + "revision": "88fdc58302784863a63def2b", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "52089e1f27e341d8a1e2460b", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 51 + "amount": 51, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3e3fae999e2440999939b54c", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679181157805, "type": "emprestimo", @@ -9182,37 +14337,81 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": "2023-03-18T23:12:37.805Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, "history_id": 1679181157805, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00" + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1e84fb3f7094466ab9d90eca", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", + "revision": "c13b8d2799ac40a0be93afb7", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "9f2247fdb679430b875d5842", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", - "amount": 12 + "amount": 12, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d6ea5e3974b941feb2d33f30", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1683667472591, "type": "emprestimo", @@ -9220,48 +14419,92 @@ "total_amount": 212, "installments": 3, "installment_amount": 70.66666666666667, - "date_created": "2023-05-09T21:24:32.591Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, "history_id": 1683667472591, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00" + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "077744d8c4f7416a887a5eac", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", + "revision": "e199734f1145458f8dae7850", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "c327bd5eb12946aaa918bcd1", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7f7715fe04fe47bc8f612492", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", - "amount": 24 + "amount": 24, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "370d304ab8f44452b7c7187c", "revision_nr": 1, - "created": 1700748395466, - "modified": 1700748395466 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679181025084, "type": "emprestimo", @@ -9269,38 +14512,81 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": "2023-03-18T23:10:25.084Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-12T21:27:20.136Z", - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00" + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7a4b6e65d9ba412e9c410848", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", + "revision": "b069481e80f74fd1a2f61152", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "9778d64a5c104eb0a0f00ce3", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", - "amount": 12 + "amount": 12, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "33779edc85f345379607dc0a", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1683667472591, "type": "emprestimo", @@ -9308,49 +14594,92 @@ "total_amount": 212, "installments": 3, "installment_amount": 70.66666666666667, - "date_created": "2023-05-09T21:24:32.591Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, "history_id": 1683667472591, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-12T21:27:20.249Z", - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00" + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b07e845b68764ad698af1c5f", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", + "revision": "df30d3c1cfdc4ae092f7ccb0", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "dc3cf373ccea481790f2b202", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b5f801defe8e4c1681df0e87", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", - "amount": 24 + "amount": 24, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0e6671f3685c4a18a2b5d9f7", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679181025084, "type": "emprestimo", @@ -9358,189 +14687,283 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": "2023-03-18T23:10:25.084Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-12T21:28:04.147Z", - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00" + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1dcdba015697458cb8c2ee3c", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", + "revision": "9288b5c924964b45bb4569c5", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "35a2ab9132d842d68b4524e1", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ce80003a6c2a46fe9f67beee", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "be7f52a99df64ab6867a8dd6", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 1500, "limitUsed": 312.50000000000006, "analysisRequested": "2023-03-17T05:24:01.192Z", - "lastReview": "2023-03-17T05:27:11.310Z" + "lastReview": "2023-03-17T05:27:11.310Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f105c847f3594f83951ed177", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1676677228207, "dateValidity": 1679011956662, "totalValue": 12518.651018650135, "currencyType": "USD", - "balancesModificacao": "2023-10-13T03:00:00.000Z" + "balancesModificacao": "2023-10-13T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c432e0fc6d39407392b03004", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001286046930633944/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c397e79e87374e28bc0b7589", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001286046930633944/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "eeb92c36bd424538a979e8b7", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001286046930633944/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c447da3d1ae54104bc867ae1", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001286046930633944/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4952d1be43d74fc79f80b4f5", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001286046930633944", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1695928321328, "dateValidity": 1695928321874, "currencyType": "USD", - "balancesModificacao": "2023-10-11T03:00:00.000Z" + "balancesModificacao": "2023-10-11T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a4628759ceaa4f94bacb98ba", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "-3396779.42000000", "symbol": "IVIP", - "value": -452.027 + "value": -452.027, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "05a4d684353444d48156d4dc", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7ca90c89e2844b27907164b6", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } + }, + "revision": "11de25abed3a4a088c82d42b", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -9549,9 +14972,18 @@ "total_amount": 500, "history_id": 1684093592429, "id": 1684093592429, - "date_created": "2023-05-14T19:46:32.429Z", - "date_last_updated": "2023-05-14T20:29:22.499Z", - "date_of_expiration": "2023-06-13T19:46:32.429Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -9559,45 +14991,78 @@ "date_approved": "2023-05-14T20:29:22.499Z", "money_release_date": "2023-05-14T20:29:22.499Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0013.4542.5233.2609-77" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d9be4083aa774eae8216e143", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "66e37492e06c46bbabbaa6d3", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 10.02 + "amount": 10.02, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7344785068c24c0090d91a64", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2e0214ab380547ae98c375d7", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "6de2d47e682e4237bc412c82", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -9606,52 +15071,94 @@ "total_amount": 511.02, "history_id": 1684399661939, "id": 1684399661939, - "date_created": "2023-05-18T08:47:41.939Z", - "date_last_updated": "2023-05-18T08:47:41.939Z", - "date_of_expiration": "2023-06-17T08:47:41.939Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 501,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 511,02" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7526e0c3344142a282c4bea5", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 501,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 511,02", + "revision": "03164f0d4e584a0db98c1b33", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 9.98 + "amount": 9.98, + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "51e4603270d44309b6d2b75f", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "02741e86b8334e099ff0c1fb", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "5135d37e31134e4fa66317e8", + "revision_nr": 1, + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -9660,37 +15167,45 @@ "total_amount": 508.98, "history_id": 1684612673872, "id": 1684612673872, - "date_created": "2023-05-20T19:57:53.872Z", - "date_last_updated": "2023-05-20T19:57:53.872Z", - "date_of_expiration": "2023-06-19T19:57:53.872Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 499,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 508,98" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "332781c87a104241a6416d6e", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684624250482/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 499,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 508,98", + "revision": "eea2c1f0c8964eb0a2df7976", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684624250482/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624250482, @@ -9701,18 +15216,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bf78f389e69b4e3b9d03aff8", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684624250482", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -9722,9 +15250,18 @@ "original_amount": 7306097, "total_amount": 7306097, "id": 1684624250482, - "date_created": "2023-05-20T23:10:50.482Z", - "date_last_updated": "2023-05-20T23:10:50.482Z", - "date_of_expiration": "2023-05-20T23:10:50.482Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9733,38 +15270,41 @@ "history_id": 1684624250482, "description": "Compra de 7.306.097,00 IVIP por 1.500,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "89fa95c8d831416f8d728e2b", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } + }, + "revision": "d0bc0a2092054bfb9986c09a", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -9773,47 +15313,69 @@ "total_amount": 562, "history_id": 1684792076230, "id": 1684792076230, - "date_created": "2023-05-22T21:47:56.230Z", - "date_last_updated": "2023-05-22T21:47:56.230Z", - "date_of_expiration": "2023-06-21T21:47:56.230Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d260a8b681cd4191b532dfd8", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "1c43710f7eae47b98dbff586", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } + }, + "revision": "1c63e7c10e974efda0cf4a42", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -9822,47 +15384,69 @@ "total_amount": 562, "history_id": 1684942997083, "id": 1684942997083, - "date_created": "2023-05-24T15:43:17.083Z", - "date_last_updated": "2023-05-24T15:43:17.083Z", - "date_of_expiration": "2023-06-23T15:43:17.083Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dd3b6ab210a94edf991e53b0", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "0dd00c0bc2cf40aab639f4ee", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } + }, + "revision": "7b6834a8dfc54c1a97364930", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -9871,9 +15455,18 @@ "total_amount": 562, "history_id": 1684973822893, "id": 1684973822893, - "date_created": "2023-05-25T00:17:02.893Z", - "date_last_updated": "2023-05-25T11:43:28.165Z", - "date_of_expiration": "2023-06-24T00:17:02.893Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -9881,41 +15474,54 @@ "date_approved": "2023-05-25T11:43:28.165Z", "money_release_date": "2023-05-25T11:43:28.165Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7669d5d669fb4db4bd7b2fc7", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "9401b809445146b1a9eef670", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } + }, + "revision": "cbd35a4f26844786a65428ae", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -9924,9 +15530,18 @@ "total_amount": 517, "history_id": 1685116940519, "id": 1685116940519, - "date_created": "2023-05-26T16:02:20.519Z", - "date_last_updated": "2023-05-29T14:07:27.276Z", - "date_of_expiration": "2023-06-25T16:02:20.519Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -9934,41 +15549,54 @@ "date_approved": "2023-05-29T14:07:27.276Z", "money_release_date": "2023-05-29T14:07:27.276Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 517,00 para a carteira iVip 0013.4542.5233.2609-77" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9fa4e024f1d94a9092064a25", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 517,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "631dc7ce31fc4d5ea4baddb6", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } + }, + "revision": "4233eaec005b4842b9152d08", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -9977,9 +15605,18 @@ "total_amount": 329, "history_id": 1685202990180, "id": 1685202990180, - "date_created": "2023-05-27T15:56:30.180Z", - "date_last_updated": "2023-05-29T12:48:37.239Z", - "date_of_expiration": "2023-06-26T15:56:30.180Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -9987,30 +15624,29 @@ "date_approved": "2023-05-29T12:48:37.239Z", "money_release_date": "2023-05-29T12:48:37.239Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 329,00 para a carteira iVip 0013.4542.5233.2609-77" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bde891ec8f6f44aa84fbd693", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685384470907/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 329,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "1f25773342324f4f973842c1", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685384470907/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685384470907, @@ -10021,18 +15657,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4350587340644b17b72c801e", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685384470907", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -10042,49 +15691,71 @@ "original_amount": 45000, "total_amount": 45000, "id": 1685384470907, - "date_created": "2023-05-29T18:21:10.907Z", - "date_last_updated": "2023-05-29T18:21:10.907Z", - "date_of_expiration": "2023-05-29T18:21:10.907Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "status_detail": "cc_rejected_insufficient_amount", "currency_id": "IVIPAY", - "history_id": 1685384470907, - "description": "Compra de 45.000,00 IVIPAY por 4.500,00 IVIP estabilizando US$ 0,42" + "history_id": 1685384470907 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9256d53f193046d39859b96f", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685384470907/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 45.000,00 IVIPAY por 4.500,00 IVIP estabilizando US$ 0,42", + "revision": "5475f77e4a864616ae1c7082", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + } + }, + "revision": "37d6fe4bfa514632a2de83fd", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -10093,9 +15764,18 @@ "total_amount": 96, "history_id": 1685389853107, "id": 1685389853107, - "date_created": "2023-05-29T19:50:53.107Z", - "date_last_updated": "2023-06-22T12:16:16.583Z", - "date_of_expiration": "2023-06-28T19:50:53.107Z", + "date_created": { + "type": 6, + "value": 1701459383474 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383474 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383474 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -10103,30 +15783,29 @@ "date_approved": "2023-06-22T12:16:16.583Z", "money_release_date": "2023-06-22T12:16:16.583Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 96,00 para a carteira iVip 0013.4542.5233.2609-77" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "952c0a793ac746c184f890c0", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392262218/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 96,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "e5e8cc01645c4b03857592cd", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383474, + "modified": 1701459383474 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392262218/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685392262218, @@ -10137,18 +15816,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5318a233d23f42dc9becb71b", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392262218", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -10158,38 +15850,46 @@ "original_amount": 3000000, "total_amount": 3000000, "id": 1685392262218, - "date_created": "2023-05-29T20:31:02.218Z", - "date_last_updated": "2023-05-29T20:31:02.218Z", - "date_of_expiration": "2023-05-29T20:31:02.218Z", + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "status_detail": "cc_rejected_insufficient_amount", "currency_id": "IVIPAY", - "history_id": 1685392262218, - "description": "Compra de 3.000.000,00 IVIPAY por 300.000,00 IVIP estabilizando US$ 26,95" + "history_id": 1685392262218 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "456c3bfc427d4bbeb26602f8", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392563175/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392262218/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 3.000.000,00 IVIPAY por 300.000,00 IVIP estabilizando US$ 26,95", + "revision": "2898e7f989c04d28a933c548", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392563175/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685392563175, @@ -10200,18 +15900,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3616e8769aaa4afaa6b915d0", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392563175", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -10221,38 +15934,46 @@ "original_amount": 30000000, "total_amount": 30000000, "id": 1685392563175, - "date_created": "2023-05-29T20:36:03.175Z", - "date_last_updated": "2023-05-29T20:36:03.175Z", - "date_of_expiration": "2023-05-29T20:36:03.175Z", + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "status_detail": "cc_rejected_insufficient_amount", "currency_id": "IVIPAY", - "history_id": 1685392563175, - "description": "Compra de 30.000.000,00 IVIPAY por 3.000.000,00 IVIP estabilizando US$ 269,53" + "history_id": 1685392563175 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bad547fd62a64abfbd85b7f3", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685394042885/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392563175/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 30.000.000,00 IVIPAY por 3.000.000,00 IVIP estabilizando US$ 269,53", + "revision": "9a7c60afcbaa4ae7ad4850b3", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685394042885/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685394042885, @@ -10263,18 +15984,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "827b40a5324f4902a68f2772", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685394042885", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -10284,38 +16018,46 @@ "original_amount": 3300000, "total_amount": 3300000, "id": 1685394042885, - "date_created": "2023-05-29T21:00:42.885Z", - "date_last_updated": "2023-05-29T21:00:42.885Z", - "date_of_expiration": "2023-05-29T21:00:42.885Z", + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "status_detail": "cc_rejected_insufficient_amount", "currency_id": "IVIP", - "history_id": 1685394042885, - "description": "Compra de 3.300.000,00 IVIP por 33.000.000,00 IVIPAY" + "history_id": 1685394042885 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5797a08ff7104a82b99785ba", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685450530237/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685394042885/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 3.300.000,00 IVIP por 33.000.000,00 IVIPAY", + "revision": "71fce28e8deb41ecb478103e", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685450530237/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685450530237, @@ -10326,18 +16068,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "65bb40d993a6427ab7291d21", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685450530237", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -10347,38 +16102,46 @@ "original_amount": 50000000, "total_amount": 50000000, "id": 1685450530237, - "date_created": "2023-05-30T12:42:10.237Z", - "date_last_updated": "2023-05-30T12:42:10.237Z", - "date_of_expiration": "2023-05-30T12:42:10.237Z", + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "status_detail": "cc_rejected_insufficient_amount", "currency_id": "IVIPAY", - "history_id": 1685450530237, - "description": "Compra de 50.000.000,00 IVIPAY por 5.000.000,00 IVIP estabilizando US$ 456,73" + "history_id": 1685450530237 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0fb65ecbe5b34979971d36de", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685455769977/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685450530237/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 50.000.000,00 IVIPAY por 5.000.000,00 IVIP estabilizando US$ 456,73", + "revision": "ae606a9690e1435cb690fe1c", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685455769977/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685455769977, @@ -10389,18 +16152,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8edd240edcd14f4585f12509", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685455769977", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -10410,38 +16186,46 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1685455769977, - "date_created": "2023-05-30T14:09:29.977Z", - "date_last_updated": "2023-05-30T14:09:29.977Z", - "date_of_expiration": "2023-05-30T14:09:29.977Z", + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "status_detail": "cc_rejected_insufficient_amount", "currency_id": "IVIP", - "history_id": 1685455769977, - "description": "Compra de 5.000.000,00 IVIP por 50.000.000,00 IVIPAY" + "history_id": 1685455769977 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a63503edc7104c7cb611a694", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685743296302/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685455769977/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 5.000.000,00 IVIP por 50.000.000,00 IVIPAY", + "revision": "5c1fe07af5524edfb4cb4aac", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685743296302/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685743296302, @@ -10452,18 +16236,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4635712b81854cc3a53587d5", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685743296302", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -10473,9 +16270,18 @@ "original_amount": 4940350, "total_amount": 4940350, "id": 1685743296302, - "date_created": "2023-06-02T22:01:36.302Z", - "date_last_updated": "2023-06-02T22:01:36.302Z", - "date_of_expiration": "2023-06-02T22:01:36.302Z", + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -10484,27 +16290,16 @@ "history_id": 1685743296302, "description": "Compra de 4.940.350,00 IVIP por 1.408,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7adc6d3e5c0a47edb850c88e", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685744480429/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685744480429/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685744480429, @@ -10515,18 +16310,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "345b71e2b0554533bf668234", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685744480429", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -10536,38 +16344,46 @@ "original_amount": 41.900000000000006, "total_amount": 41.900000000000006, "id": 1685744480429, - "date_created": "2023-06-02T22:21:20.429Z", - "date_last_updated": "2023-06-02T22:21:20.429Z", - "date_of_expiration": "2023-06-02T22:21:20.429Z", + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1685744480429, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1685744480429 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "997aa2cd07d74e8fb7eebc02", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685745152104/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685744480429/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "2c9d67eaa5c04fd4953df52a", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685745152104/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685745152104, @@ -10578,18 +16394,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d143f4dc4d4c4ed0825e4477", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685745152104", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -10599,9 +16428,18 @@ "original_amount": 147164, "total_amount": 147164, "id": 1685745152104, - "date_created": "2023-06-02T22:32:32.104Z", - "date_last_updated": "2023-06-02T22:32:32.104Z", - "date_of_expiration": "2023-06-02T22:32:32.104Z", + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -10610,38 +16448,41 @@ "history_id": 1685745152104, "description": "Compra de 147.164,00 IVIP por 41,90 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "005fd646084c45f89f8d2bf9", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + } + }, + "revision": "69c52aa00d79433386b6ac57", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -10650,9 +16491,18 @@ "total_amount": 1191, "history_id": 1686664360099, "id": 1686664360099, - "date_created": "2023-06-13T13:52:40.099Z", - "date_last_updated": "2023-06-13T14:00:09.214Z", - "date_of_expiration": "2023-07-13T13:52:40.099Z", + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -10660,30 +16510,29 @@ "date_approved": "2023-06-13T14:00:09.214Z", "money_release_date": "2023-06-13T14:00:09.214Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.191,00 para a carteira iVip 0013.4542.5233.2609-77" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "56f08d31aee04e62ad47be63", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436781/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.191,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "933a29a9b7a248b7bd1dd5f2", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436781/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -10696,18 +16545,31 @@ "overpaid_amount": 0, "installment_amount": 511.02, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "38ae6a2fd67d4f388f8117c8", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436781", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -10718,38 +16580,46 @@ "total_amount": 511.02, "id": 1686844436781, "contract_id": "1684399661939", - "date_created": "2023-06-15T15:53:56.781Z", - "date_last_updated": "2023-06-15T15:53:56.781Z", - "date_of_expiration": "2023-06-15T15:53:56.781Z", + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1686844436781, - "description": "Pagamento de fatura 1 de 1 no valor de 511,02 BRL referente ao contrato 1684399661939" + "history_id": 1686844436781 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fb08a332779e4f5bad7a714b", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436954/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436781/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 1 no valor de 511,02 BRL referente ao contrato 1684399661939", + "revision": "6078746287b146619a2deb41", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436954/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -10762,18 +16632,31 @@ "overpaid_amount": 0, "installment_amount": 508.98, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d9fcadef7893418e80ef946b", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436954", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -10784,38 +16667,46 @@ "total_amount": 508.98, "id": 1686844436954, "contract_id": "1684612673872", - "date_created": "2023-06-15T15:53:56.954Z", - "date_last_updated": "2023-06-15T15:53:56.954Z", - "date_of_expiration": "2023-06-15T15:53:56.954Z", + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1686844436954, - "description": "Pagamento de fatura 1 de 1 no valor de 508,98 BRL referente ao contrato 1684612673872" + "history_id": 1686844436954 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "850e6a1ffd904543ada05b92", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687345768938/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436954/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 1 no valor de 508,98 BRL referente ao contrato 1684612673872", + "revision": "cf44b7b4a35a440fbae864d3", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687345768938/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687345768938, @@ -10826,18 +16717,31 @@ "overpaid_amount": 0, "installment_amount": 11152973, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9ecfa9947b1f491181a013df", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687345768938", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -10846,39 +16750,47 @@ "original_amount": 11152973, "total_amount": 11152973, "id": 1687345768938, - "date_created": "2023-06-21T11:09:28.938Z", - "date_last_updated": "2023-06-21T11:09:28.938Z", - "date_of_expiration": "2024-06-21T11:09:28.938Z", + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1687345768938, - "wasDebited": true, - "description": "Investimento de 11.152.973,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2024" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4d6d70367a774dacb2263ba3", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687393215194/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687345768938/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 11.152.973,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2024", + "revision": "7ff9e438628348b0bea960e4", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687393215194/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687393215194, @@ -10889,18 +16801,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "340064f8714d4d3282b7e181", "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687393215194", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -10910,9 +16835,18 @@ "original_amount": 818586, "total_amount": 818586, "id": 1687393215194, - "date_created": "2023-06-22T00:20:15.194Z", - "date_last_updated": "2023-06-22T00:20:15.194Z", - "date_of_expiration": "2023-06-22T00:20:15.194Z", + "date_created": { + "type": 6, + "value": 1701459383475 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383475 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -10921,27 +16855,16 @@ "history_id": 1687393215194, "description": "Compra de 818.586,00 IVIP por 171,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395467, - "modified": 1700748395467 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687495116294/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7be3c5399c4b4a26856c8f17", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383475, + "modified": 1701459383475 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687495116294/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687495116294, @@ -10952,18 +16875,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7512e784f1b6457cb7166e17", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687495116294", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -10973,9 +16909,18 @@ "original_amount": 496157, "total_amount": 496157, "id": 1687495116294, - "date_created": "2023-06-23T04:38:36.294Z", - "date_last_updated": "2023-06-23T04:38:36.294Z", - "date_of_expiration": "2023-06-23T04:38:36.294Z", + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -10984,27 +16929,16 @@ "history_id": 1687495116294, "description": "Compra de 496.157,00 IVIP por 96,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687547056698/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1247c054e85346a0adf1a022", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687547056698/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687547056698, @@ -11015,18 +16949,31 @@ "overpaid_amount": 0, "installment_amount": 12152954, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e2ba167d7e1f449393486a6f", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687547056698", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -11035,50 +16982,72 @@ "original_amount": 12152954, "total_amount": 12152954, "id": 1687547056698, - "date_created": "2023-06-23T19:04:16.698Z", - "date_last_updated": "2023-06-23T19:04:16.698Z", - "date_of_expiration": "2025-06-23T19:04:16.698Z", + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "status_detail": "cc_rejected_insufficient_amount", "currency_id": "IVIP", "history_id": 1687547056698, - "wasDebited": true, - "description": "Investimento de 12.152.954,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "80b8b822cd2043f0b295e700", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687547056698/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 12.152.954,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", + "revision": "56f26fbae1944f209fdd8215", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + } + }, + "revision": "782141b5ace342d9a365d182", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -11087,47 +17056,69 @@ "total_amount": 526, "history_id": 1688994491622, "id": 1688994491622, - "date_created": "2023-07-10T13:08:11.622Z", - "date_last_updated": "2023-07-10T13:08:11.622Z", - "date_of_expiration": "2023-08-09T13:08:11.622Z", + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 526,00 para a carteira iVip 0013.4542.5233.2609-77" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "480e212664a54e5a8fd9b0f5", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 526,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "bd0ce934cb864191a2027448", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + } + }, + "revision": "a6b09b292863440db5c4b33d", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -11136,9 +17127,18 @@ "total_amount": 2224, "history_id": 1689000633630, "id": 1689000633630, - "date_created": "2023-07-10T14:50:33.630Z", - "date_last_updated": "2023-07-10T15:21:46.324Z", - "date_of_expiration": "2023-08-09T14:50:33.630Z", + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -11146,30 +17146,29 @@ "date_approved": "2023-07-10T15:21:46.324Z", "money_release_date": "2023-07-10T15:21:46.324Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 2.224,00 para a carteira iVip 0013.4542.5233.2609-77" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cbd28e35f53f4cdbb8d0bead", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689082225194/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 2.224,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "8d6cdc1237e3421d9da8985d", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689082225194/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689082225194, @@ -11180,18 +17179,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7ce9ea1301ed45948358752a", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689082225194", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -11201,9 +17213,18 @@ "original_amount": 180125, "total_amount": 180125, "id": 1689082225194, - "date_created": "2023-07-11T13:30:25.194Z", - "date_last_updated": "2023-07-11T13:30:25.194Z", - "date_of_expiration": "2023-07-11T13:30:25.194Z", + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11212,27 +17233,16 @@ "history_id": 1689082225194, "description": "Compra de 180.125,00 IVIP por 224,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689114929852/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e2e398f32f3b45ac90baaf35", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689114929852/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689114929852, @@ -11243,18 +17253,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0d5f7ebccc8342e08bb0b949", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689114929852", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -11264,9 +17287,18 @@ "original_amount": 305476, "total_amount": 305476, "id": 1689114929852, - "date_created": "2023-07-11T22:35:29.852Z", - "date_last_updated": "2023-07-11T22:35:29.852Z", - "date_of_expiration": "2023-07-11T22:35:29.852Z", + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11275,38 +17307,41 @@ "history_id": 1689114929852, "description": "Compra de 305.476,00 IVIP por 500,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "40eeb9cadbfc4a27a3ff8b79", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + } + }, + "revision": "4dd533bea90e4af08d55b318", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -11315,9 +17350,18 @@ "total_amount": 726, "history_id": 1689115029893, "id": 1689115029893, - "date_created": "2023-07-11T22:37:09.893Z", - "date_last_updated": "2023-07-12T08:23:29.959Z", - "date_of_expiration": "2023-08-10T22:37:09.893Z", + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -11325,30 +17369,29 @@ "date_approved": "2023-07-12T08:23:29.959Z", "money_release_date": "2023-07-12T08:23:29.959Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 726,00 para a carteira iVip 0013.4542.5233.2609-77" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2d058c03d7eb497494252cd1", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689195736692/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 726,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "9c9cd3b4fe9e4b8f90125424", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689195736692/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689195736692, @@ -11359,18 +17402,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3b1b26dd2ddf48029e3a614e", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689195736692", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -11380,9 +17436,18 @@ "original_amount": 93754, "total_amount": 93754, "id": 1689195736692, - "date_created": "2023-07-12T21:02:16.692Z", - "date_last_updated": "2023-07-12T21:02:16.692Z", - "date_of_expiration": "2023-07-12T21:02:16.692Z", + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11391,27 +17456,16 @@ "history_id": 1689195736692, "description": "Compra de 93.754,00 IVIP por 226,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e4164f31e5fb40c89ef6f82e", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204261841/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204261841/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689204261841, @@ -11422,18 +17476,31 @@ "overpaid_amount": 0, "installment_amount": 1904, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2d38d7c1557a46baacdeb52b", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204261841", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -11442,39 +17509,47 @@ "original_amount": 1904, "total_amount": 1904, "id": 1689204261841, - "date_created": "2023-07-12T23:24:21.841Z", - "date_last_updated": "2023-07-12T23:24:21.841Z", - "date_of_expiration": "2024-05-12T23:24:21.841Z", + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "history_id": 1689204261841, - "wasDebited": true, - "description": "Investimento de 1.904,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/12/2024" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ffb3b73d4834444396d250f8", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204343069/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204261841/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.904,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/12/2024", + "revision": "e540691afbf3451e9690c61a", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204343069/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689204343069, @@ -11485,18 +17560,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e50b240fa5694e92920cccc0", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204343069", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -11506,9 +17594,18 @@ "original_amount": 40949, "total_amount": 40949, "id": 1689204343069, - "date_created": "2023-07-12T23:25:43.069Z", - "date_last_updated": "2023-07-12T23:25:43.069Z", - "date_of_expiration": "2023-07-12T23:25:43.069Z", + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11517,38 +17614,41 @@ "history_id": 1689204343069, "description": "Compra de 40.949,00 IVIP por 96,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0e4dee4d9b3441e9a7bb9cad", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + } + }, + "revision": "72623d465432465bb4d9dd01", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -11557,47 +17657,69 @@ "total_amount": 1423, "history_id": 1689347614368, "id": 1689347614368, - "date_created": "2023-07-14T15:13:34.368Z", - "date_last_updated": "2023-07-14T15:13:34.368Z", - "date_of_expiration": "2023-08-13T15:13:34.368Z", + "date_created": { + "type": 6, + "value": 1701459383476 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383476 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383476 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.423,00 para a carteira iVip 0013.4542.5233.2609-77" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8cd2dc9a660b4a66a63df75e", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.423,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "f2696b4287834eb1aa3d2abb", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } + }, + "revision": "1a2a5ac803e34885b3655207", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -11606,9 +17728,18 @@ "total_amount": 1379, "history_id": 1689618134136, "id": 1689618134136, - "date_created": "2023-07-17T18:22:14.136Z", - "date_last_updated": "2023-07-17T18:39:06.304Z", - "date_of_expiration": "2023-08-16T18:22:14.136Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -11616,30 +17747,29 @@ "date_approved": "2023-07-17T18:39:06.304Z", "money_release_date": "2023-07-17T18:39:06.304Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.379,00 para a carteira iVip 0013.4542.5233.2609-77" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d7f9b0447a1647e18214f675", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689619360780/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.379,00 para a carteira iVip 0013.4542.5233.2609-77", + "revision": "5050e3e8077a43c89b97b11f", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383476, + "modified": 1701459383476 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689619360780/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689619360780, @@ -11650,18 +17780,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8ad1b7c80e754680aa488587", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689619360780", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -11671,9 +17814,18 @@ "original_amount": 326875, "total_amount": 326875, "id": 1689619360780, - "date_created": "2023-07-17T18:42:40.780Z", - "date_last_updated": "2023-07-17T18:42:40.780Z", - "date_of_expiration": "2023-07-17T18:42:40.780Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11682,27 +17834,16 @@ "history_id": 1689619360780, "description": "Compra de 326.875,00 IVIP por 500,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690237331737/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3f9d1a1d18fd485eba1be5da", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690237331737/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1690237331737, @@ -11713,18 +17854,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0cb68304508b44dd936ced41", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690237331737", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -11734,9 +17888,18 @@ "original_amount": 318321, "total_amount": 318321, "id": 1690237331737, - "date_created": "2023-07-24T22:22:11.737Z", - "date_last_updated": "2023-07-24T22:22:11.737Z", - "date_of_expiration": "2023-07-24T22:22:11.737Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11745,27 +17908,16 @@ "history_id": 1690237331737, "description": "Compra de 318.321,00 IVIP por 450,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "da9cff2478f84555abe1c10b", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690273510959/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690273510959/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1690273510959, @@ -11776,18 +17928,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "930b22ddf37c420c8f24e320", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690273510959", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -11797,9 +17962,18 @@ "original_amount": 338652, "total_amount": 338652, "id": 1690273510959, - "date_created": "2023-07-25T08:25:10.959Z", - "date_last_updated": "2023-07-25T08:25:10.959Z", - "date_of_expiration": "2023-07-25T08:25:10.959Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11808,41 +17982,42 @@ "history_id": 1690273510959, "description": "Compra de 338.652,00 IVIP por 429,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c5288b45c88840e5a0b0bc8d", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-20T11:04:14.014Z" + ".val": "2023-09-20T11:04:14.014Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2649f882ac42439d9444b2f4", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692615854014, "net_received_amount": 0, @@ -11852,18 +18027,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1692615854014" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b36f72cd7d0c446fab046fd1", + "revision_nr": 1, + "created": 1701459383477, + "modified": 1701459383477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1692615854014", + "revision": "d7f0d9dca65b47648c67fbb8", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -11872,37 +18070,46 @@ "total_amount": 450, "id": 1692615854014, "history_id": 1692615854014, - "date_created": "2023-08-21T11:04:14.014Z", - "date_last_updated": "2023-08-21T11:04:14.014Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 450,00 BRL para a carteira iVip 0013.4542.5233.2609-77" + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4c10c3b7c2dc4eaea09f13b2", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 450,00 BRL para a carteira iVip 0013.4542.5233.2609-77", + "revision": "008700e64041467ebaa33d55", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693771767267, "net_received_amount": 0, @@ -11912,18 +18119,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1693771767267" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ddb15f8949e346a9bacee941", + "revision_nr": 1, + "created": 1701459383477, + "modified": 1701459383477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1693771767267", + "revision": "539c90ad50824ce7b91097d6", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -11932,38 +18162,46 @@ "total_amount": 3384929, "id": "1693771767267", "history_id": "1693771767267", - "date_created": "2023-09-03T20:09:27.267Z", - "date_last_updated": "2023-09-03T20:09:27.267Z", - "date_of_expiration": "2023-10-03T20:09:27.265Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 3.384.929,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "50e7ac7521ec486db4b48440", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 3.384.929,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", + "revision": "71163185afcb46c8a40161c2", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696371493428, "net_received_amount": 0, @@ -11973,18 +18211,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696371493428" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "85de447ac7ef430a83c18864", + "revision_nr": 1, + "created": 1701459383477, + "modified": 1701459383477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696371493428", + "revision": "15f93090941043e496916fbf", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -11994,38 +18255,46 @@ "total_amount": 3452627.58, "id": "1696371493428", "history_id": "1696371493428", - "date_created": "2023-10-03T22:18:13.428Z", - "date_last_updated": "2023-10-03T22:18:13.428Z", - "date_of_expiration": "2023-10-03T22:18:13.428Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "cc_rejected_duplicated_payment", - "description": "Resgate do investimento staking de 3.384.929,00 IVIP com um rendimento de +67.698,58 IVIP (2,00%) - Y12XDT27" + "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f61f1a47597442cdae34c1d8", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 3.384.929,00 IVIP com um rendimento de +67.698,58 IVIP (2,00%) - Y12XDT27", + "revision": "a632dbd204da46739b859d42", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696371493371, "net_received_amount": 0, @@ -12035,18 +18304,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696371493371" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "69be5e5f66804691af1056cf", + "revision_nr": 1, + "created": 1701459383477, + "modified": 1701459383477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696371493371", + "revision": "46bff8790098467cb0021d02", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -12056,38 +18348,46 @@ "total_amount": 3452627.58, "id": "1696371493371", "history_id": "1696371493371", - "date_created": "2023-10-03T22:18:13.371Z", - "date_last_updated": "2023-10-03T22:18:13.371Z", - "date_of_expiration": "2023-10-03T22:18:13.371Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 3.384.929,00 IVIP com um rendimento de +67.698,58 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b06c1f227f324be995af5aee", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 3.384.929,00 IVIP com um rendimento de +67.698,58 IVIP (2,00%) - Y12XDT27", + "revision": "954d2a745f184c7583dd4b82", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696459483900, "net_received_amount": 0, @@ -12097,18 +18397,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696459483900" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e018522dff414d82b594f5d1", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696459483900", + "revision": "5e54d2cb3ce540f9a2027a3d", + "revision_nr": 1, + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -12118,52 +18441,72 @@ "total_amount": 7624011, "id": "1696459483900", "history_id": "1696459483900", - "date_created": "2023-10-04T22:44:43.900Z", - "date_last_updated": "2023-10-04T22:44:43.900Z", - "date_of_expiration": "2023-11-04T22:44:43.861Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 7.624.011,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9f71d5e60cac4ac09a12dbcb", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-11-05T22:09:19.538Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 7.624.011,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "692a8440cce24a49941e6fc9", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { - "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/details/costs", + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-11-05T22:09:19.538Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } + }, + "revision": "d9bc0441d60f47568fff77c0", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696630159545", "net_received_amount": 0, @@ -12173,18 +18516,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696630159545" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "26822a63285049d8ab7ed01b", + "revision_nr": 1, + "created": 1701459383477, + "modified": 1701459383477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696630159545", + "revision": "0d3a6b8e6345425dae6d4951", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -12194,52 +18560,84 @@ "total_amount": 1000, "id": "1696630159545", "history_id": "1696630159545", - "date_created": "2023-10-06T22:09:19.545Z", - "date_last_updated": "2023-10-06T22:09:19.545Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0013.4542.5233.2609-77" + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "098462e1d31742e6a306c764", + "revision_nr": 1, + "created": 1701459383477, + "modified": 1701459383477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0013.4542.5233.2609-77", + "revision": "f35d3ebc6920492b95f8f00d", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a9479b70129149af806dbfdc", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 10.02 + "amount": 10.02, + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "526dcfcf8587473a8084b803", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684399661939, "type": "emprestimo", @@ -12247,37 +18645,81 @@ "total_amount": 511.02, "installments": 1, "installment_amount": 511.02, - "date_created": "2023-05-18T08:47:41.939Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, "history_id": 1684399661939, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 501,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 511,02" + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d569354a33fe4c44a73ac423", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 501,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 511,02", + "revision": "9e4061c1aedd447cbfde0770", + "revision_nr": 1, + "created": 1701459383477, + "modified": 1701459383477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "3721c06ad3fb41f383bec7ab", + "revision_nr": 1, + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 9.98 + "amount": 9.98, + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dd4f209fb38f4548bdfa99a4", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684612673872, "type": "emprestimo", @@ -12285,125 +18727,196 @@ "total_amount": 508.98, "installments": 1, "installment_amount": 508.98, - "date_created": "2023-05-20T19:57:53.872Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, "history_id": 1684612673872, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 499,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 508,98" + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "120b8eaa46eb448fb2b7ac1a", + "revision_nr": 1, + "created": 1701459383477, + "modified": 1701459383477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 499,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 508,98", + "revision": "14298d4d9101477a83bc8d9a", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "22e2a0ba493b4d1995659dc5", + "revision_nr": 1, + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bb8b146e2ed94db980bf93bb", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7771a9ce104d4877b76b76ee", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 1000, "limitUsed": 0, "analysisRequested": "2023-05-17T11:09:17.322Z", - "lastReview": "2023-05-17T13:23:34.101Z" + "lastReview": "2023-05-17T13:23:34.101Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a4f2f9730cbb453db6274446", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684091909123, "dateValidity": 1684091909123, "totalValue": 5846.89, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z" + "balancesModificacao": "2023-10-09T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a30f6b18080945d9a5c72e4b", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "BRL", "available": "100.00000000", - "value": 20.09 + "value": 20.09, + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e9c5b10968324f338467bd5a", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b23e0391753c4ed0ae7cb04f", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } + }, + "revision": "406d98af79ab41b391e3d41a", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -12412,9 +18925,18 @@ "total_amount": 100, "history_id": 1684119457629, "id": 1684119457629, - "date_created": "2023-05-15T02:57:37.629Z", - "date_last_updated": "2023-05-15T03:02:14.913Z", - "date_of_expiration": "2023-06-14T02:57:37.629Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -12422,119 +18944,168 @@ "date_approved": "2023-05-15T03:02:14.913Z", "money_release_date": "2023-05-15T03:02:14.913Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0024.4576.8964.9692-86" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d87f6b305cdf4bfc9254558e", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0024.4576.8964.9692-86", + "revision": "fc1d9cd3c02241628bc73c45", + "revision_nr": 1, + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "90b6e58ed3e74175926dfb7c", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5556b63ca81d4c75b061d2b9", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "21779fd2fa584029871bb3ae", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684119427446, "dateValidity": 1684119427446, "totalValue": 20.09, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2dc7b58d3ecf466a90af3441", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "5324627.00000000", "symbol": "IVIP", - "value": 1075.36 + "value": 1075.36, + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e5da3ad3bd1346a08cd52020", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3241001f34e049a498f18348", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } + }, + "revision": "4e58033e6bf74cf7a151a5c9", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -12543,49 +19114,71 @@ "total_amount": 2000, "history_id": 1677798769726, "id": 1677798769726, - "date_created": "2023-03-02T23:12:49.726Z", - "date_last_updated": "2023-03-13T13:16:05.659Z", - "date_of_expiration": "2023-04-01T23:12:49.726Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-03-13T13:16:05.659Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0037.5729.7582.0925-33" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "87852642966642f98abd8c23", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { - "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792/details/costs", + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0037.5729.7582.0925-33", + "revision": "80a83a91ce824689b99e7cf8", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } + }, + "revision": "af66b01242674a1b84c73867", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -12594,49 +19187,71 @@ "total_amount": 1000, "history_id": 1678058459792, "id": 1678058459792, - "date_created": "2023-03-05T23:20:59.792Z", - "date_last_updated": "2023-03-13T13:41:25.155Z", - "date_of_expiration": "2023-04-04T23:20:59.792Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-03-13T13:41:25.155Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0037.5729.7582.0925-33" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e7b5b60747c2441e9b7459ac", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { - "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058/details/costs", + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0037.5729.7582.0925-33", + "revision": "e134f236afa64b60831aaa78", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } + }, + "revision": "9fc317b1e589450987ef4bf7", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -12645,9 +19260,18 @@ "total_amount": 1000, "history_id": 1678527306058, "id": 1678527306058, - "date_created": "2023-03-11T09:35:06.058Z", - "date_last_updated": "2023-03-11T14:22:04.146Z", - "date_of_expiration": "2023-04-10T09:35:06.058Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -12655,30 +19279,29 @@ "date_approved": "2023-03-11T14:22:04.146Z", "money_release_date": "2023-03-11T14:22:04.146Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0037.5729.7582.0925-33" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1da7ef02c61445a3872e654b", "revision_nr": 1, - "created": 1700748395468, - "modified": 1700748395468 + "created": 1701459383477, + "modified": 1701459383477 } }, { - "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1679908062539/details/costs", + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0037.5729.7582.0925-33", + "revision": "9781dbb9bbbd44ee8f676aa9", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1679908062539/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679908062539, @@ -12689,18 +19312,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "062c727d9c8947ecbd062509", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1679908062539", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -12710,9 +19346,18 @@ "original_amount": 5325627, "total_amount": 5325627, "id": 1679908062539, - "date_created": "2023-03-27T09:07:42.539Z", - "date_last_updated": "2023-03-27T09:07:42.539Z", - "date_of_expiration": "2023-03-27T09:07:42.539Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12721,27 +19366,16 @@ "history_id": 1679908062539, "description": "Compra de 5.325.627,00 IVIP por 1.000,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e9035bcceee34f919f6acca7", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1687109837625/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1687109837625/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687109837625, @@ -12752,18 +19386,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cc64b97cddd448269b33342e", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1687109837625", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -12772,166 +19419,236 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687109837625, - "date_created": "2023-06-18T17:37:17.625Z", - "date_last_updated": "2023-06-18T17:37:17.625Z", - "date_of_expiration": "2023-12-18T17:37:17.625Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1687109837625, - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/18/2023" + "history_id": 1687109837625 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6d2023b5705b47b68e312e0b", + "revision_nr": 1, + "created": 1701459383477, + "modified": 1701459383477 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1687109837625/description", + "content": { + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/18/2023", + "revision": "e9449d2cd3a744be95a0c24f", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c7eb5f0673a349c58ea84ed0", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0c7463c2cb1c4728b1aa5cff", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9af0c4c70e4b4fe39b783ade", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677457152875, "dateValidity": 1678995120507, "totalValue": 249.76613748285868, "currencyType": "USD", - "balancesModificacao": "2023-10-01T03:00:00.000Z" + "balancesModificacao": "2023-10-01T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383477 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383477 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383477 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "079fd3e0ef1743b4b9b03a11", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/005753000686812060/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d1e57b87c289448da93764c6", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383477, + "modified": 1701459383477 } }, { "path": "ivipcoin-db::__movement_wallet__/005753000686812060/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7b25931030ca42259be0445f", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383478, + "modified": 1701459383478 } }, { "path": "ivipcoin-db::__movement_wallet__/005753000686812060", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678127212147, "dateValidity": 1678325697693, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383478 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383478 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383478 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a348d2a1c56448f88765bc86", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383478, + "modified": 1701459383478 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "150.00000000", "symbol": "BRL", - "value": 29.27 + "value": 29.27, + "date_created": { + "type": 6, + "value": 1701459383478 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383478 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383478 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "628261411f9145c898ca878c", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383478, + "modified": 1701459383478 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dd64b2ba7f6040a696f695f1", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383478, + "modified": 1701459383478 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383478 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383478 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383478 + } + }, + "revision": "5fdf8002da074abbab0ce178", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383478, + "modified": 1701459383478 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -12940,50 +19657,72 @@ "total_amount": 100, "history_id": 1689373938365, "id": 1689373938365, - "date_created": "2023-07-14T22:32:18.365Z", - "date_last_updated": "2023-07-26T21:41:01.153Z", - "date_of_expiration": "2023-08-13T22:32:18.365Z", + "date_created": { + "type": 6, + "value": 1701459383478 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383478 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383478 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", "money_release_date": "2023-07-26T21:41:01.153Z", "money_release_status": "cancelled", - "wasDebited": true, - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0072.1969.3774.2530-22" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "58952fd6fc994013b4c0ead8", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383478, + "modified": 1701459383478 } }, { - "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118/details/costs", + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0072.1969.3774.2530-22", + "revision": "b8875e05da824f24bee99e15", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383478, + "modified": 1701459383478 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383478 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383478 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383478 + } + }, + "revision": "aac2428272da4082b318ad14", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383478, + "modified": 1701459383478 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -12992,53 +19731,73 @@ "total_amount": 130, "history_id": 1689719003118, "id": 1689719003118, - "date_created": "2023-07-18T22:23:23.118Z", - "date_last_updated": "2023-07-26T21:40:36.264Z", - "date_of_expiration": "2023-08-17T22:23:23.118Z", + "date_created": { + "type": 6, + "value": 1701459383478 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383478 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383478 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", "money_release_date": "2023-07-26T21:40:36.264Z", "money_release_status": "cancelled", - "wasDebited": true, - "description": "Deposito de um valor R$ 130,00 para a carteira iVip 0072.1969.3774.2530-22" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "047d5b489f6740499286672d", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383478, + "modified": 1701459383478 } }, { - "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-08-23T16:27:21.978Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0072.1969.3774.2530-22", + "revision": "0c4d6e81dafc45a583268e9d", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383478, + "modified": 1701459383478 } }, { - "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/details/costs", + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-08-23T16:27:21.978Z", + "date_created": { + "type": 6, + "value": 1701459383478 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383478 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383478 + } + }, + "revision": "0f487d39f6954b13bf8fe6d4", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383478, + "modified": 1701459383478 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690216041978, "net_received_amount": 0, @@ -13048,18 +19807,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/007219693774253022/history/1690216041978" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383478 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383478 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383478 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e510e52b36494629acc92825", + "revision_nr": 1, + "created": 1701459383478, + "modified": 1701459383478 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/007219693774253022/history/1690216041978", + "revision": "fd031ead2d544522bab30edc", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383478, + "modified": 1701459383478 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -13068,8 +19850,14 @@ "total_amount": 150, "id": 1690216041978, "history_id": 1690216041978, - "date_created": "2023-07-24T16:27:21.978Z", - "date_last_updated": "2023-07-24T17:23:10.794Z", + "date_created": { + "type": 6, + "value": 1701459383478 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383478 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13080,180 +19868,245 @@ "money_release_date": "2023-07-24T17:23:10.794Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor R$ 150,00 para a carteira iVip 0072.1969.3774.2530-22" + "date_of_expiration": { + "type": 6, + "value": 1701459383478 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7690a606911e40f0a707fa4f", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383478, + "modified": 1701459383478 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0072.1969.3774.2530-22", + "revision": "b4d3f3acfa2d4742b8e42bbf", + "revision_nr": 1, + "created": 1701459383478, + "modified": 1701459383478 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aea9c285cd7a4a83b0c60ca1", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383478, + "modified": 1701459383478 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "68543ca2ecfd4676acce5b07", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383478, + "modified": 1701459383478 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383478 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383478 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383478 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4d0f93d37c56455ebb5ae00a", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383478, + "modified": 1701459383478 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1689373828234, "dateValidity": 1689373828234, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": "2023-10-14T03:00:00.000Z" + "balancesModificacao": "2023-10-14T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383478 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383478 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383478 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a6c6da2f98384c65ba6728e5", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383478, + "modified": 1701459383478 } }, { "path": "ivipcoin-db::__movement_wallet__/007971641402707341/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "315197fd37e944baaa4b84bb", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/007971641402707341/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "599e1c0cba5d48efb423a577", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/007971641402707341", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678227735051, "dateValidity": 1678242135085, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8bfe599627f14faf90aeae63", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/010022330876236384/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "226e04c757164f14a95f2d8c", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/010022330876236384/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3b2f2281cff64b7f9e8945a7", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/010022330876236384", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677760347570, "dateValidity": 1677760347570, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "df52b05cd53c41f2979dad38", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2e00bee21ca04a7dabb94461", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + } + }, + "revision": "14083e802a4b418c988b088c", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -13262,9 +20115,18 @@ "total_amount": 507, "history_id": 1684424340055, "id": 1684424340055, - "date_created": "2023-05-18T15:39:00.055Z", - "date_last_updated": "2023-05-18T17:02:50.415Z", - "date_of_expiration": "2023-06-17T15:39:00.055Z", + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -13272,41 +20134,54 @@ "date_approved": "2023-05-18T17:02:50.415Z", "money_release_date": "2023-05-18T17:02:50.415Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 507,00 para a carteira iVip 0117.2048.7643.9274-14" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c0b02f2f60d84148863cbd98", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { - "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683/details/costs", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 507,00 para a carteira iVip 0117.2048.7643.9274-14", + "revision": "121fec163139457bb2627e35", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + } + }, + "revision": "1512c1f6871f4143a545645c", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -13315,9 +20190,18 @@ "total_amount": 1093, "history_id": 1684539875683, "id": 1684539875683, - "date_created": "2023-05-19T23:44:35.683Z", - "date_last_updated": "2023-05-19T23:57:17.031Z", - "date_of_expiration": "2023-06-18T23:44:35.683Z", + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -13325,30 +20209,29 @@ "date_approved": "2023-05-19T23:57:17.031Z", "money_release_date": "2023-05-19T23:57:17.031Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.093,00 para a carteira iVip 0117.2048.7643.9274-14" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ecb3a7a819b442c0a327acc1", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { - "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684625025298/details/costs", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.093,00 para a carteira iVip 0117.2048.7643.9274-14", + "revision": "32788a642a864d5dbf393427", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684625025298/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684625025298, @@ -13359,18 +20242,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "79168cd57c5845e0983df903", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684625025298", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -13380,9 +20276,18 @@ "original_amount": 7793170, "total_amount": 7793170, "id": 1684625025298, - "date_created": "2023-05-20T23:23:45.298Z", - "date_last_updated": "2023-05-20T23:23:45.298Z", - "date_of_expiration": "2023-05-20T23:23:45.298Z", + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13391,38 +20296,41 @@ "history_id": 1684625025298, "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d97febb02f2a4a7db271149d", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + } + }, + "revision": "e654fa1dab444cabb277b912", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -13431,9 +20339,18 @@ "total_amount": 5588008, "history_id": 1685465338404, "id": 1685465338404, - "date_created": "2023-05-30T16:48:58.404Z", - "date_last_updated": "2023-05-30T18:43:23.347Z", - "date_of_expiration": "2023-05-30T16:48:58.404Z", + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -13441,30 +20358,29 @@ "date_approved": "2023-05-30T18:43:23.347Z", "money_release_date": "2023-05-30T18:43:23.347Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 5.588.008,00 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a6cb39f54a8b403a80bcfbe4", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { - "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720288992/details/costs", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 5.588.008,00 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", + "revision": "16f28ed3df7b4cddbda2ddee", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720288992/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685720288992, @@ -13475,18 +20391,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3c663af3395e43158013121e", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720288992", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -13495,38 +20424,46 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685720288992, - "date_created": "2023-06-02T15:38:08.992Z", - "date_last_updated": "2023-06-02T15:38:08.992Z", - "date_of_expiration": "2023-12-02T15:38:08.992Z", + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685720288992, - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/2/2023" + "history_id": 1685720288992 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d3c6d1ff2ce64412b24f8fba", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { - "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720363618/details/costs", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720288992/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/2/2023", + "revision": "e796e3d8a5a644c69d2b6217", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720363618/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685720363618, @@ -13537,18 +20474,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "438ab2e89e844ac6919e826e", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720363618", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -13557,38 +20507,46 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685720363618, - "date_created": "2023-06-02T15:39:23.618Z", - "date_last_updated": "2023-06-02T15:39:23.618Z", - "date_of_expiration": "2023-07-02T15:39:23.618Z", + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685720363618, - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/2/2023" + "history_id": 1685720363618 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9118c38904a24ce2a1b215ff", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { - "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688400602023/details/costs", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720363618/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/2/2023", + "revision": "00174410b6c0471e92494f19", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688400602023/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688400602023, @@ -13599,18 +20557,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dbb9260562af44d19d1b2948", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688400602023", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -13619,39 +20590,47 @@ "original_amount": 1020, "total_amount": 1020, "id": 1688400602023, - "date_created": "2023-07-03T16:10:02.023Z", - "date_last_updated": "2023-07-03T16:10:02.023Z", - "date_of_expiration": "2023-07-03T16:10:02.023Z", + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1688400602023, - "wasDebited": true, - "description": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%)" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8293edf447ae49368d9dc1e3", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { - "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688595538475/details/costs", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688400602023/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%)", + "revision": "953343a007324bac90a178cc", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688595538475/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688595538475, @@ -13662,18 +20641,31 @@ "overpaid_amount": 0, "installment_amount": 2154096, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f86eb4c017a3419399919896", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688595538475", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -13682,38 +20674,46 @@ "original_amount": 2154096, "total_amount": 2154096, "id": 1688595538475, - "date_created": "2023-07-05T22:18:58.475Z", - "date_last_updated": "2023-07-05T22:18:58.475Z", - "date_of_expiration": "2023-08-05T22:18:58.475Z", + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1688595538475, - "description": "Investimento de 2.154.096,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023" + "history_id": 1688595538475 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "41157a59962d4573ab6d0b11", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { - "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792/details/costs", + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688595538475/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 2.154.096,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", + "revision": "9b22689103204edabe9b7a98", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691274110792, "net_received_amount": 0, @@ -13723,18 +20723,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691274110792" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "18a6735ab2b848c59c68b5eb", + "revision_nr": 1, + "created": 1701459383481, + "modified": 1701459383481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691274110792", + "revision": "4b89141582b6440785efb45f", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -13743,42 +20766,73 @@ "total_amount": 2197177.92, "id": 1691274110792, "history_id": 1691274110792, - "date_created": "2023-08-05T22:21:50.792Z", - "date_last_updated": "2023-08-05T22:21:50.792Z", - "date_of_expiration": "2023-08-05T22:21:50.792Z", + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 2.154.096,00 IVIP com um rendimento de +43.081,92 IVIP (2,00%)" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9936104628c64096a3d46407", + "revision_nr": 1, + "created": 1701459383481, + "modified": 1701459383481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792/description", + "content": { + "type": "STRING", + "value": "Resgate do investimento staking de 2.154.096,00 IVIP com um rendimento de +43.081,92 IVIP (2,00%)", + "revision": "e761c94c69044fc79a67a92c", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 36290.1735 + "amount": 36290.1735, + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "049d91577d8e4604830801bf", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691439593377, "net_received_amount": 0, @@ -13788,18 +20842,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691439593377" + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e40ce902a5a44a80a38ae30f", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691439593377", + "revision": "5f560ca9a2e44b77900fff86", + "revision_nr": 1, + "created": 1701459383481, + "modified": 1701459383481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "aa45e1db0d0443dfa1b1851d", + "revision_nr": 1, + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -13808,9 +20895,18 @@ "total_amount": 1209672.45, "id": 1691439593377, "history_id": 1691439593377, - "date_created": "2023-08-07T20:19:53.377Z", - "date_last_updated": "2023-08-16T13:13:21.115Z", - "date_of_expiration": "2023-08-07T20:19:53.377Z", + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -13819,34 +20915,56 @@ "status_detail": "cc_rejected_insufficient_amount", "money_release_date": "2023-08-16T13:13:21.115Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Saque de 1.209.672,45 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a3d31986bbf841e0b932b7eb", + "revision_nr": 1, + "created": 1701459383481, + "modified": 1701459383481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/description", + "content": { + "type": "STRING", + "value": "Saque de 1.209.672,45 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", + "revision": "71d07eb78f164220979e65db", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 36184.977 + "amount": 36184.977, + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "183fe6def3024b1594f8f99a", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691439992266, "net_received_amount": 0, @@ -13856,18 +20974,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691439992266" + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ece6a4de83644545ac50e937", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691439992266", + "revision": "361194b193464c97bef69329", + "revision_nr": 1, + "created": 1701459383481, + "modified": 1701459383481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "cf9d74d1df0b4cee97c60d33", + "revision_nr": 1, + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -13876,9 +21027,18 @@ "total_amount": 1206165.9, "id": 1691439992266, "history_id": 1691439992266, - "date_created": "2023-08-07T20:26:32.266Z", - "date_last_updated": "2023-08-16T13:12:57.715Z", - "date_of_expiration": "2023-08-07T20:26:32.266Z", + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -13887,34 +21047,56 @@ "status_detail": "cc_rejected_insufficient_amount", "money_release_date": "2023-08-16T13:12:57.715Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Saque de 1.206.165,9 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0a50182a37d4489b8487c3b8", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/description", + "content": { + "type": "STRING", + "value": "Saque de 1.206.165,9 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", + "revision": "dfdd1d0dabe14478813171c1", + "revision_nr": 1, + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 65395.38 + "amount": 65395.38, + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a3255d15e138420b88b9688a", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691447884361, "net_received_amount": 0, @@ -13924,18 +21106,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691447884361" + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4118374225d34c398479c084", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691447884361", + "revision": "c59ac7ec227648569ba94ffe", + "revision_nr": 1, + "created": 1701459383481, + "modified": 1701459383481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "3580ec171e924d35ac77a539", + "revision_nr": 1, + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -13944,9 +21159,18 @@ "total_amount": 2179846, "id": 1691447884361, "history_id": 1691447884361, - "date_created": "2023-08-07T22:38:04.361Z", - "date_last_updated": "2023-08-08T13:28:08.315Z", - "date_of_expiration": "2023-08-07T22:38:04.361Z", + "date_created": { + "type": 6, + "value": 1701459383481 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383481 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383481 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -13956,143 +21180,192 @@ "date_approved": "2023-08-08T13:28:08.315Z", "money_release_date": "2023-08-08T13:28:08.315Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 2.179.846,00 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "335a07e4e1174411ae34def7", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/description", + "content": { + "type": "STRING", + "value": "Saque de 2.179.846,00 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", + "revision": "008bfd301bd94001a0c4eb77", + "revision_nr": 1, + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "92a11ee5b1a74c5f961f6b58", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ef4ceb43a3a44bc292eb58ca", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383481, + "modified": 1701459383481 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "97108c857cdb46119ce1a823", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684369387404, "dateValidity": 1684369387404, "totalValue": 4.914821489351172, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z" + "balancesModificacao": "2023-10-06T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "90a41553cb50423894fa7fd4", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/012415886921139930/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "26a4c04c4c8b46f4a4da48f7", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/012415886921139930/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3bb6ce13388b41c69f0c089b", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/012415886921139930", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1696522229806, "dateValidity": 1696522229867, "currencyType": "USD", - "balancesModificacao": "2023-10-05T03:00:00.000Z" + "balancesModificacao": "2023-10-05T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0fbc11c100f343db8c9cf99a", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1a05f70869654c0399aec2eb", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } + }, + "revision": "d4e8b793a53b404ba7e41d43", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -14101,9 +21374,18 @@ "total_amount": 50, "history_id": 1678555308384, "id": 1678555308384, - "date_created": "2023-03-11T17:21:48.384Z", - "date_last_updated": "2023-03-12T14:35:22.207Z", - "date_of_expiration": "2023-04-10T17:21:48.384Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -14111,30 +21393,29 @@ "date_approved": "2023-03-12T14:35:22.207Z", "money_release_date": "2023-03-12T14:35:22.207Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0128.8622.7244.5948-72" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "10270f516ec74c899b9b61f3", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { - "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1679266899414/details/costs", + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0128.8622.7244.5948-72", + "revision": "e9e587e2e9e949629738e145", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1679266899414/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679266899414, @@ -14145,18 +21426,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4c809b30c5dd48839ecb5097", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1679266899414", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -14166,9 +21460,18 @@ "original_amount": 291076, "total_amount": 291076, "id": 1679266899414, - "date_created": "2023-03-19T23:01:39.414Z", - "date_last_updated": "2023-03-19T23:01:39.414Z", - "date_of_expiration": "2023-03-19T23:01:39.414Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14177,27 +21480,16 @@ "history_id": 1679266899414, "description": "Compra de 291076 IVIP por 50 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cada2fa88f6342d488cc9fcf", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1685668294321/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1685668294321/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685668294321, @@ -14208,18 +21500,31 @@ "overpaid_amount": 0, "installment_amount": 291076, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ac8f22fb62994b0db1d37e04", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1685668294321", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -14228,129 +21533,187 @@ "original_amount": 291076, "total_amount": 291076, "id": 1685668294321, - "date_created": "2023-06-02T01:11:34.321Z", - "date_last_updated": "2023-06-02T01:11:34.321Z", - "date_of_expiration": "2025-06-02T01:11:34.321Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1685668294321, - "wasDebited": true, - "description": "Investimento de 291.076,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cbdf5736f5094a67a9651665", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1685668294321/description", + "content": { + "type": "STRING", + "value": "Investimento de 291.076,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", + "revision": "3865d8ddb80d4bcda9320aca", + "revision_nr": 1, + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "02a8f9b7d9f24a028f8279e1", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "86c75278a2ed4d34b1005a00", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "65e531d1f4a54a99928ce567", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678552860672, "dateValidity": 1678668725687, "totalValue": 16.26, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z" + "balancesModificacao": "2023-10-06T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6e7f9641aef947308495bf59", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "739882.02000000", "symbol": "IVIP", - "value": 77.94 + "value": 77.94, + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "017efc7dd45942b893a25cd9", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "51cdacea8afe40bd8a79e9a8", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } + }, + "revision": "bf7d0b117e67407dbb79a1b9", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -14359,9 +21722,18 @@ "total_amount": 150, "history_id": 1684102091531, "id": 1684102091531, - "date_created": "2023-05-14T22:08:11.531Z", - "date_last_updated": "2023-05-14T22:23:10.115Z", - "date_of_expiration": "2023-06-13T22:08:11.531Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -14369,30 +21741,29 @@ "date_approved": "2023-05-14T22:23:10.115Z", "money_release_date": "2023-05-14T22:23:10.115Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 150,00 para a carteira iVip 0150.9473.3487.9762-98" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e57eaa1a79e8423b80374c29", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { - "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684624257232/details/costs", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0150.9473.3487.9762-98", + "revision": "6134df82682f472ba9520870", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684624257232/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624257232, @@ -14403,18 +21774,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0df4e0767ecc4e70ac766ebc", "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684624257232", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -14424,9 +21808,18 @@ "original_amount": 730609, "total_amount": 730609, "id": 1684624257232, - "date_created": "2023-05-20T23:10:57.232Z", - "date_last_updated": "2023-05-20T23:10:57.232Z", - "date_of_expiration": "2023-05-20T23:10:57.232Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14435,27 +21828,16 @@ "history_id": 1684624257232, "description": "Compra de 730.609,00 IVIP por 150,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395469, - "modified": 1700748395469 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113576960/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4ff3448ba58a4eb49d4322ec", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113576960/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687113576960, @@ -14466,18 +21848,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ae9926f2489c421ea0fc1a0c", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113576960", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -14486,39 +21881,47 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687113576960, - "date_created": "2023-06-18T18:39:36.960Z", - "date_last_updated": "2023-06-18T18:39:36.960Z", - "date_of_expiration": "2023-12-18T18:39:36.960Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1687113576960, - "wasDebited": true, - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/18/2023" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3ea8cab59bda485c97581bef", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { - "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113714689/details/costs", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113576960/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/18/2023", + "revision": "33bca34b265c47238766ee4a", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113714689/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687113714689, @@ -14529,18 +21932,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a31eeb8ca2894457b6eff3b8", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113714689", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -14549,38 +21965,46 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687113714689, - "date_created": "2023-06-18T18:41:54.689Z", - "date_last_updated": "2023-06-18T18:41:54.689Z", - "date_of_expiration": "2024-06-18T18:41:54.689Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1687113714689, - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/18/2024" + "history_id": 1687113714689 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5806b19230b247d88ec242ff", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { - "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113759469/details/costs", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113714689/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/18/2024", + "revision": "84331dc3020d4e17ad5f5826", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113759469/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687113759469, @@ -14591,18 +22015,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b13536d8b74e4e95a2f2fae8", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113759469", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -14611,38 +22048,46 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687113759469, - "date_created": "2023-06-18T18:42:39.469Z", - "date_last_updated": "2023-06-18T18:42:39.469Z", - "date_of_expiration": "2025-06-18T18:42:39.469Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1687113759469, - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/18/2025" + "history_id": 1687113759469 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0dcba30fc14f4941a87b45e6", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { - "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313544564/details/costs", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113759469/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/18/2025", + "revision": "3aa0e83c70c344fb9c778edc", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313544564/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687313544564, @@ -14653,18 +22098,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9457223229df466197f66821", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313544564", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -14673,38 +22131,46 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687313544564, - "date_created": "2023-06-21T02:12:24.564Z", - "date_last_updated": "2023-06-21T02:12:24.564Z", - "date_of_expiration": "2025-06-21T02:12:24.564Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1687313544564, - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2025" + "history_id": 1687313544564 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f7bb185e1ac34e99afea1436", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { - "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313588225/details/costs", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313544564/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2025", + "revision": "9618e8c92da6485e95e9a79d", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313588225/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687313588225, @@ -14715,18 +22181,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d84cc2f422e24e4dbd7692e7", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313588225", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -14735,38 +22214,46 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687313588225, - "date_created": "2023-06-21T02:13:08.225Z", - "date_last_updated": "2023-06-21T02:13:08.225Z", - "date_of_expiration": "2024-06-21T02:13:08.225Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1687313588225, - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024" + "history_id": 1687313588225 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bcd2b9cfa698448590503445", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { - "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1688595606369/details/costs", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313588225/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", + "revision": "643ee629853a413cb0e1971f", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1688595606369/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688595606369, @@ -14777,18 +22264,31 @@ "overpaid_amount": 0, "installment_amount": 713651, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b004cab07323423ca35257a5", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1688595606369", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -14797,38 +22297,46 @@ "original_amount": 713651, "total_amount": 713651, "id": 1688595606369, - "date_created": "2023-07-05T22:20:06.369Z", - "date_last_updated": "2023-07-05T22:20:06.369Z", - "date_of_expiration": "2023-08-05T22:20:06.369Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1688595606369, - "description": "Investimento de 713.651,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023" + "history_id": 1688595606369 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d1d0cb9adb954cfd83b4af1e", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { - "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709/details/costs", + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1688595606369/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 713.651,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", + "revision": "52a316fe68c14592bb82dda7", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691274110709, "net_received_amount": 0, @@ -14838,18 +22346,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/015094733487976298/history/1691274110709" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ef00668901874aa2bfb1baf5", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/015094733487976298/history/1691274110709", + "revision": "88fa97e197e14594b5e969fa", + "revision_nr": 1, + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -14858,206 +22389,300 @@ "total_amount": 727924.02, "id": 1691274110709, "history_id": 1691274110709, - "date_created": "2023-08-05T22:21:50.709Z", - "date_last_updated": "2023-08-05T22:21:50.709Z", - "date_of_expiration": "2023-08-05T22:21:50.709Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 713.651,00 IVIP com um rendimento de +14.273,02 IVIP (2,00%)" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "78187c4aeb494b12a59427e9", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709/description", + "content": { + "type": "STRING", + "value": "Resgate do investimento staking de 713.651,00 IVIP com um rendimento de +14.273,02 IVIP (2,00%)", + "revision": "8a5dcbcec492459cb1792063", + "revision_nr": 1, + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ee64ddf1aeab440995bd782c", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "789d364ec4a94122b29e6142", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4fe01276420e407da61a28ae", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684102027321, "dateValidity": 1684102027322, "totalValue": 1.39, "currencyType": "USD", - "balancesModificacao": "2023-10-14T03:00:00.000Z" + "balancesModificacao": "2023-10-14T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "62a341dcd7754a6dbc03c369", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/016159398553157178/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "28f035124d2246ec9edf4c78", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/016159398553157178/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d181985eb1b64821a00868dc", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/016159398553157178/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8edd9c85dfca43dfb33db44b", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/016159398553157178/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e29b4da19c504fff91cf4608", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/016159398553157178", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1688737390323, "dateValidity": 1688737390323, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0ab7c4b48c114c40a9eb24e5", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "BRL", "available": "0.00000000", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "48856e87ce5b4ed880b6c4ce", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "IVIP", "available": "0.00000000", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b85b075aff3a4e0aaf89ce65", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f0f8038336bd41d19a266dc6", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } + }, + "revision": "b42f1f9f54614d59b2770489", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -15066,49 +22691,71 @@ "total_amount": 1000, "history_id": 1684198299992, "id": 1684198299992, - "date_created": "2023-05-16T00:51:39.992Z", - "date_last_updated": "2023-05-20T04:50:35.747Z", - "date_of_expiration": "2023-06-15T00:51:39.992Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-05-20T04:50:35.747Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0164.7568.6934.0474-40" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "649cbac6b6a8485985bf23fb", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { - "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429/details/costs", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0164.7568.6934.0474-40", + "revision": "ce5409876cea4ce8bc8e7417", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } + }, + "revision": "13310a167a7e4a35a6156cdc", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -15117,9 +22764,18 @@ "total_amount": 1000, "history_id": 1684201414429, "id": 1684201414429, - "date_created": "2023-05-16T01:43:34.429Z", - "date_last_updated": "2023-05-16T14:08:50.715Z", - "date_of_expiration": "2023-06-15T01:43:34.429Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -15127,41 +22783,54 @@ "date_approved": "2023-05-16T14:08:50.715Z", "money_release_date": "2023-05-16T14:08:50.715Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0164.7568.6934.0474-40" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b2380095bd21472b8770b1a2", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { - "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255/details/costs", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0164.7568.6934.0474-40", + "revision": "4015e37283714c2d88467d8e", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + } + }, + "revision": "b5b7db876d67469e84767cac", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -15170,9 +22839,18 @@ "total_amount": 600, "history_id": 1684440954255, "id": 1684440954255, - "date_created": "2023-05-18T20:15:54.255Z", - "date_last_updated": "2023-05-18T21:09:15.806Z", - "date_of_expiration": "2023-06-17T20:15:54.255Z", + "date_created": { + "type": 6, + "value": 1701459383482 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383482 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383482 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -15180,30 +22858,29 @@ "date_approved": "2023-05-18T21:09:15.806Z", "money_release_date": "2023-05-18T21:09:15.806Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 600,00 para a carteira iVip 0164.7568.6934.0474-40" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f67ef641878b4e568a1ab81a", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { - "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684626826140/details/costs", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 600,00 para a carteira iVip 0164.7568.6934.0474-40", + "revision": "6c2c42ecdd394abaa3e438d2", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383482, + "modified": 1701459383482 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684626826140/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684626826140, @@ -15214,18 +22891,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e65a37fd6a554588872d5c89", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684626826140", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -15235,9 +22925,18 @@ "original_amount": 7793170, "total_amount": 7793170, "id": 1684626826140, - "date_created": "2023-05-20T23:53:46.140Z", - "date_last_updated": "2023-05-20T23:53:46.140Z", - "date_of_expiration": "2023-05-20T23:53:46.140Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15246,38 +22945,41 @@ "history_id": 1684626826140, "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f4ce89265d6042f8a1249fc3", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } + }, + "revision": "c70a7cb20bc14434969d2515", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -15286,47 +22988,69 @@ "total_amount": 788564, "history_id": 1685396913259, "id": 1685396913259, - "date_created": "2023-05-29T21:48:33.259Z", - "date_last_updated": "2023-05-29T21:48:33.259Z", - "date_of_expiration": "2023-05-29T21:48:33.259Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 788.564,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4b468d16b3ef4ee0a8b74be8", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { - "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106/details/costs", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 788.564,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", + "revision": "9031508eeb514d40bb90eb08", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } + }, + "revision": "fbad2ebed8394d27bb45d37d", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -15335,49 +23059,71 @@ "total_amount": 788564, "history_id": 1685470076106, "id": 1685470076106, - "date_created": "2023-05-30T18:07:56.106Z", - "date_last_updated": "2023-05-31T12:12:11.930Z", - "date_of_expiration": "2023-05-30T18:07:56.106Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", "money_release_date": "2023-05-31T12:12:11.930Z", - "money_release_status": "rejected", - "description": "Saque de 788.564,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0e0204f7c7ee4ad38ad699b7", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { - "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415/details/costs", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 788.564,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", + "revision": "07887e277d3a451aaeec3e91", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } + }, + "revision": "950bf3f3ef48469b89a815d1", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -15386,9 +23132,18 @@ "total_amount": 7793170, "history_id": 1685470615415, "id": 1685470615415, - "date_created": "2023-05-30T18:16:55.415Z", - "date_last_updated": "2023-05-31T12:45:25.835Z", - "date_of_expiration": "2023-05-30T18:16:55.415Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -15396,41 +23151,54 @@ "date_approved": "2023-05-31T12:45:25.835Z", "money_release_date": "2023-05-31T12:45:25.835Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 7.793.170,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a7b87961912145179ed7636f", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { - "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322/details/costs", + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 7.793.170,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", + "revision": "fe793ac6887e4d7690173885", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } + }, + "revision": "4ac6ce5c55a24e56ad42cd52", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -15439,190 +23207,272 @@ "total_amount": 7793170, "history_id": 1685537035322, "id": 1685537035322, - "date_created": "2023-05-31T12:43:55.322Z", - "date_last_updated": "2023-05-31T12:44:28.819Z", - "date_of_expiration": "2023-05-31T12:43:55.322Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", "money_release_date": "2023-05-31T12:44:28.819Z", - "money_release_status": "rejected", - "description": "Saque de 7.793.170,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2c5d4ce6795b4004b4f3637b", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322/description", + "content": { + "type": "STRING", + "value": "Saque de 7.793.170,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", + "revision": "70371b97b5e740e1a2aad68d", + "revision_nr": 1, + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "21aca5954b7446d499f007fd", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5dc41fd50de444259476b6a1", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b887d1da23c44eda8fc48251", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684198152404, "dateValidity": 1684198152404, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "49f1984a14114f0abf4d6ad7", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017170382309708910/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "50db65cbecf14ae0b0b13652", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017170382309708910/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1cc3fa5f31d249bcafbca503", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017170382309708910/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "147ec2ef09074364ae5230b1", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017170382309708910/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "02f200c0a4b4427dab6189c4", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017170382309708910", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1685395419731, "dateValidity": 1685395419731, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cea2212e7a434d1788167720", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "0.74000000", "symbol": "IVIP", - "value": 0.000077 + "value": 0.000077, + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ee6c79f05e9044c093024d3a", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2c103037163346a0bef0d3b4", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } + }, + "revision": "a71c4b2400d148bfaa402541", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -15631,9 +23481,18 @@ "total_amount": 500, "history_id": 1683998693589, "id": 1683998693589, - "date_created": "2023-05-13T17:24:53.589Z", - "date_last_updated": "2023-05-13T17:52:34.399Z", - "date_of_expiration": "2023-06-12T17:24:53.589Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -15641,45 +23500,78 @@ "date_approved": "2023-05-13T17:52:34.399Z", "money_release_date": "2023-05-13T17:52:34.399Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0176.0919.3050.0250-62" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4fbf322a4484431b9454be5d", + "revision_nr": 1, + "created": 1701459383483, + "modified": 1701459383483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0176.0919.3050.0250-62", + "revision": "6f4bfe07976b4239b51635ba", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5ec894d59ef9462f96d06fcf", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details", "content": { - "type": 1, + "type": "OBJECT", + "value": {}, + "revision": "ccf123e137d04ffcb488cf6a", + "revision_nr": 1, + "created": 1701459383483, + "modified": 1701459383483 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details/costs", + "content": { + "type": "ARRAY", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "687b790b1fa24c7397051641", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -15688,37 +23580,45 @@ "total_amount": 1100, "history_id": 1684003059388, "id": 1684003059388, - "date_created": "2023-05-13T18:37:39.388Z", - "date_last_updated": "2023-05-13T18:37:39.388Z", - "date_of_expiration": "2023-06-12T18:37:39.388Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7a40f9839f674838a2fdcb8f", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684018960001/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "7a465f8fe226475ba2b9b656", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684018960001/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684018960001, @@ -15729,18 +23629,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e438b61459dc4bcdaa0a4451", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684018960001", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -15750,9 +23663,18 @@ "original_amount": 8106588, "total_amount": 8106588, "id": 1684018960001, - "date_created": "2023-05-13T23:02:40.001Z", - "date_last_updated": "2023-05-13T23:02:40.001Z", - "date_of_expiration": "2023-05-13T23:02:40.001Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15761,38 +23683,41 @@ "history_id": 1684018960001, "description": "Compra de 8.106.588,00 IVIP por 1.500,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9f36cde638ae424382f1a9ae", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } + }, + "revision": "b0a06d7d61024382851696e1", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -15801,9 +23726,18 @@ "total_amount": 100, "history_id": 1684106238297, "id": 1684106238297, - "date_created": "2023-05-14T23:17:18.297Z", - "date_last_updated": "2023-05-16T12:14:40.222Z", - "date_of_expiration": "2023-06-13T23:17:18.297Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -15811,30 +23745,29 @@ "date_approved": "2023-05-16T12:14:40.222Z", "money_release_date": "2023-05-16T12:14:40.222Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0176.0919.3050.0250-62" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "758bc71ed3a743daa7c5d9ed", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684631103258/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0176.0919.3050.0250-62", + "revision": "f5a1b40ab16f4d2b932133c6", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684631103258/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684631103258, @@ -15845,18 +23778,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5e86c0d8a9e049ea8ee8e1ec", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684631103258", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -15866,9 +23812,18 @@ "original_amount": 487804, "total_amount": 487804, "id": 1684631103258, - "date_created": "2023-05-21T01:05:03.258Z", - "date_last_updated": "2023-05-21T01:05:03.258Z", - "date_of_expiration": "2023-05-21T01:05:03.258Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15877,38 +23832,41 @@ "history_id": 1684631103258, "description": "Compra de 487.804,00 IVIP por 100,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c312a2699bfd4eebba6170c1", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } + }, + "revision": "dc7b56cf89034e579f149145", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -15917,47 +23875,69 @@ "total_amount": 4297196, "history_id": 1685388293760, "id": 1685388293760, - "date_created": "2023-05-29T19:24:53.760Z", - "date_last_updated": "2023-05-29T19:24:53.760Z", - "date_of_expiration": "2023-05-29T19:24:53.760Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 4.297.196,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5876d290ebac4c4ba0596723", "revision_nr": 1, - "created": 1700748395470, - "modified": 1700748395470 + "created": 1701459383483, + "modified": 1701459383483 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 4.297.196,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", + "revision": "53df2ddc22e84f228c37f04e", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } + }, + "revision": "9219fb12690f4cbb83d5bf56", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -15966,9 +23946,18 @@ "total_amount": 250, "history_id": 1686323712726, "id": 1686323712726, - "date_created": "2023-06-09T15:15:12.726Z", - "date_last_updated": "2023-06-12T17:38:39.918Z", - "date_of_expiration": "2023-07-09T15:15:12.726Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -15976,30 +23965,29 @@ "date_approved": "2023-06-12T17:38:39.918Z", "money_release_date": "2023-06-12T17:38:39.918Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 250,00 para a carteira iVip 0176.0919.3050.0250-62" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "31ddb74713824384902f8a44", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686591730981/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0176.0919.3050.0250-62", + "revision": "1f88e82706074cf4b9e95cdb", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686591730981/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -16012,18 +24000,31 @@ "overpaid_amount": 0, "installment_amount": 220, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9f2f36d4232641f59e21c6ef", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686591730981", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -16034,49 +24035,71 @@ "total_amount": 220, "id": 1686591730981, "contract_id": "1684003059388", - "date_created": "2023-06-12T17:42:10.981Z", - "date_last_updated": "2023-06-12T17:42:10.981Z", - "date_of_expiration": "2023-06-12T17:42:10.981Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1686591730981, - "description": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388" + "history_id": 1686591730981 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1c7b370ff874486780a197f1", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686591730981/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", + "revision": "d834731e4a7c43639549d66a", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } + }, + "revision": "a7b91acd97f34c1e9dc3ee9e", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -16085,9 +24108,18 @@ "total_amount": 200, "history_id": 1688314787645, "id": 1688314787645, - "date_created": "2023-07-02T16:19:47.645Z", - "date_last_updated": "2023-07-02T16:23:34.952Z", - "date_of_expiration": "2023-08-01T16:19:47.645Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -16095,30 +24127,29 @@ "date_approved": "2023-07-02T16:23:34.952Z", "money_release_date": "2023-07-02T16:23:34.952Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0176.0919.3050.0250-62" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b94da0d396e848fd865f733e", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688315152944/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0176.0919.3050.0250-62", + "revision": "7a281f8992f640da9a1d7d1e", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688315152944/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -16131,18 +24162,31 @@ "overpaid_amount": 0, "installment_amount": 220, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "81b68877ff154dc4b9a8d860", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688315152944", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -16153,38 +24197,46 @@ "total_amount": 220, "id": 1688315152944, "contract_id": "1684003059388", - "date_created": "2023-07-02T16:25:52.944Z", - "date_last_updated": "2023-07-02T16:25:52.944Z", - "date_of_expiration": "2023-07-02T16:25:52.944Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1688315152944, - "description": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388" + "history_id": 1688315152944 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d085b1a722e94728aa9207e9", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688426195717/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688315152944/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", + "revision": "a572a2c0797f464580ab4dc8", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688426195717/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688426195717, @@ -16195,18 +24247,31 @@ "overpaid_amount": 0, "installment_amount": 344736, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "29e6b31c5b8f453cac901a64", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688426195717", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -16215,50 +24280,72 @@ "original_amount": 344736, "total_amount": 344736, "id": 1688426195717, - "date_created": "2023-07-03T23:16:35.717Z", - "date_last_updated": "2023-07-03T23:16:35.717Z", - "date_of_expiration": "2023-08-03T23:16:35.717Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1688426195717, - "wasDebited": true, - "description": "Investimento de 344.736,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6b2e24e2e5674aeb9418a5e5", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688426195717/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 344.736,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", + "revision": "3a232c694ae540dea8aa5b09", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } + }, + "revision": "dc3d3e45553a4edc87df282e", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -16267,9 +24354,18 @@ "total_amount": 430, "history_id": 1689095226322, "id": 1689095226322, - "date_created": "2023-07-11T17:07:06.322Z", - "date_last_updated": "2023-07-11T18:16:10.658Z", - "date_of_expiration": "2023-08-10T17:07:06.322Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -16277,30 +24373,29 @@ "date_approved": "2023-07-11T18:16:10.658Z", "money_release_date": "2023-07-11T18:16:10.658Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 430,00 para a carteira iVip 0176.0919.3050.0250-62" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3a103d782d9d4130b43b6da3", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349679189/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 430,00 para a carteira iVip 0176.0919.3050.0250-62", + "revision": "43a92b33a8744111b50430bf", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349679189/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689349679189, @@ -16311,18 +24406,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9e112c6d75db4ca8b017eb94", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349679189", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -16332,9 +24440,18 @@ "original_amount": 284782, "total_amount": 284782, "id": 1689349679189, - "date_created": "2023-07-14T15:47:59.189Z", - "date_last_updated": "2023-07-14T15:47:59.189Z", - "date_of_expiration": "2023-07-14T15:47:59.189Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16343,38 +24460,41 @@ "history_id": 1689349679189, "description": "Compra de 284.782,00 IVIP por 440,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ef095a63774f466d907623e0", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + } + }, + "revision": "b95a59812d424c2fbc5875be", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -16383,9 +24503,18 @@ "total_amount": 284782, "history_id": 1689349971065, "id": 1689349971065, - "date_created": "2023-07-14T15:52:51.065Z", - "date_last_updated": "2023-07-14T15:54:58.919Z", - "date_of_expiration": "2023-07-14T15:52:51.065Z", + "date_created": { + "type": 6, + "value": 1701459383483 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383483 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383483 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -16393,30 +24522,29 @@ "date_approved": "2023-07-14T15:54:58.919Z", "money_release_date": "2023-07-14T15:54:58.919Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 284.782,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "864b84319a194bff83a0ede4", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689794977578/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 284.782,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", + "revision": "80a6e9c249724cde96c278a7", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689794977578/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689794977578, @@ -16427,18 +24555,31 @@ "overpaid_amount": 0, "installment_amount": 500000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a66067edc87c456fa85ff598", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689794977578", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -16447,49 +24588,71 @@ "original_amount": 500000, "total_amount": 500000, "id": 1689794977578, - "date_created": "2023-07-19T19:29:37.578Z", - "date_last_updated": "2023-07-19T19:29:37.578Z", - "date_of_expiration": "2025-07-19T19:29:37.578Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1689794977578, - "description": "Investimento de 500.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/19/2025" + "history_id": 1689794977578 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "665c82d872fa4eeab5cbb463", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689794977578/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 500.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/19/2025", + "revision": "53af1b2a6c8f479cbea9008f", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383483, + "modified": 1701459383483 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } + }, + "revision": "6c78b21cbaa947c5a311e64a", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -16498,36 +24661,44 @@ "total_amount": 345419, "history_id": 1689796488476, "id": 1689796488476, - "date_created": "2023-07-19T19:54:48.476Z", - "date_last_updated": "2023-07-19T19:54:48.476Z", - "date_of_expiration": "2023-07-19T19:54:48.476Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 345.419,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "857eaa4558ed49a183ee0031", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 345.419,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", + "revision": "ff6ad711e8d14809ac25d9c1", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690130150231, "net_received_amount": 0, @@ -16537,18 +24708,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1690130150231" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7a467a933331461dbc0e84a5", + "revision_nr": 1, + "created": 1701459383484, + "modified": 1701459383484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1690130150231", + "revision": "543f5a3171f14e519b557ee1", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -16557,38 +24751,46 @@ "total_amount": 1908099, "id": 1690130150231, "history_id": 1690130150231, - "date_created": "2023-07-23T16:35:50.231Z", - "date_last_updated": "2023-07-23T16:35:50.231Z", - "date_of_expiration": "2023-07-23T16:35:50.231Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "pending_waiting_payment", - "description": "Saque de 1.908.099,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd" + "status_detail": "pending_waiting_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6f0533ecf6be4845aa4ee28c", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 1.908.099,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", + "revision": "41a10e2a2f904eee97af6193", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690225429559, "net_received_amount": 0, @@ -16598,18 +24800,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1690225429559" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "28bcbf71c1144352a7e2bc73", + "revision_nr": 1, + "created": 1701459383484, + "modified": 1701459383484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1690225429559", + "revision": "e2710fa9e264423bbb27c3de", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -16618,38 +24843,46 @@ "total_amount": 1829159, "id": 1690225429559, "history_id": 1690225429559, - "date_created": "2023-07-24T19:03:49.559Z", - "date_last_updated": "2023-07-24T19:03:49.559Z", - "date_of_expiration": "2023-07-24T19:03:49.559Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "pending_waiting_payment", - "description": "Saque de 1.829.159,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd" + "status_detail": "pending_waiting_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c29772595ab2455b8522d8ed", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 1.829.159,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", + "revision": "8d1653d4362c4e2bb196ee6e", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691104619419, "net_received_amount": 0, @@ -16659,18 +24892,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1691104619419" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5edffa1508a54a188408e70e", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1691104619419", + "revision": "d3acb9deba6c430bade00499", + "revision_nr": 1, + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -16679,38 +24935,46 @@ "total_amount": 351630.72000000003, "id": 1691104619419, "history_id": 1691104619419, - "date_created": "2023-08-03T23:16:59.419Z", - "date_last_updated": "2023-08-03T23:16:59.419Z", - "date_of_expiration": "2023-08-03T23:16:59.419Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 344.736,00 IVIP com um rendimento de +6.894,72 IVIP (2,00%)" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1f73087eabf5451da31afd5e", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 344.736,00 IVIP com um rendimento de +6.894,72 IVIP (2,00%)", + "revision": "37326a6821dd47ba878108bf", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691246155706, "net_received_amount": 0, @@ -16720,18 +24984,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1691246155706" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "00860eadfdbe4a5987934a29", + "revision_nr": 1, + "created": 1701459383484, + "modified": 1701459383484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1691246155706", + "revision": "7ac1cc4e4202432b9ac90cc7", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -16740,52 +25027,72 @@ "total_amount": 4123251, "id": 1691246155706, "history_id": 1691246155706, - "date_created": "2023-08-05T14:35:55.706Z", - "date_last_updated": "2023-08-05T14:35:55.706Z", - "date_of_expiration": "2023-09-05T14:35:55.705Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 4.123.251,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "70173ec5bae548aa9cfe9504", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-14T17:56:58.629Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 4.123.251,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", + "revision": "4631c05180354361bafbe75c", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-14T17:56:58.629Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } + }, + "revision": "d970a6d19b41467cbbe781b6", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692122218629, "net_received_amount": 0, @@ -16795,18 +25102,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1692122218629" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d54bb6df50764f84bbce32b0", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1692122218629", + "revision": "d219eccf895e433fa6563964", + "revision_nr": 1, + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -16815,8 +25145,14 @@ "total_amount": 220, "id": 1692122218629, "history_id": 1692122218629, - "date_created": "2023-08-15T17:56:58.629Z", - "date_last_updated": "2023-08-15T18:13:29.335Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16827,29 +25163,32 @@ "money_release_date": "2023-08-15T18:13:29.335Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 220,00 para a carteira iVip 0176.0919.3050.0250-62" + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4b14304c0dbc4f589e570439", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692210661601/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 220,00 para a carteira iVip 0176.0919.3050.0250-62", + "revision": "f6777f3db8b142609d0f74cb", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692210661601/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 3, @@ -16862,18 +25201,31 @@ "overpaid_amount": 0, "installment_amount": 220, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f866ab8c076a48a4b88eecdc", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692210661601", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -16884,38 +25236,46 @@ "total_amount": 220, "id": 1692210661601, "contract_id": "1684003059388", - "date_created": "2023-08-16T18:31:01.601Z", - "date_last_updated": "2023-08-16T18:31:01.601Z", - "date_of_expiration": "2023-08-16T18:31:01.601Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1692210661601, - "description": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388" + "history_id": 1692210661601 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e2ba9b395807438680a82543", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692210661601/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", + "revision": "db18a4e67fb14c1db981ecbe", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693924607794, "net_received_amount": 0, @@ -16925,18 +25285,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1693924607794" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c531c7268e924bb89440efb0", + "revision_nr": 1, + "created": 1701459383484, + "modified": 1701459383484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1693924607794", + "revision": "57c80e3d275148358b301d91", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -16945,42 +25328,73 @@ "total_amount": 4205716.02, "id": "1693924607794", "history_id": "1693924607794", - "date_created": "2023-09-05T14:36:47.794Z", - "date_last_updated": "2023-09-05T14:36:47.794Z", - "date_of_expiration": "2023-09-05T14:36:47.794Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 4.123.251,00 IVIP com um rendimento de +82.465,02 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fd78ef69a8b748c799a9404b", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794/description", + "content": { + "type": "STRING", + "value": "Resgate do investimento staking de 4.123.251,00 IVIP com um rendimento de +82.465,02 IVIP (2,00%) - Y12XDT27", + "revision": "0c814fc6adb14fd482a15001", + "revision_nr": 1, + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 107596.65 + "amount": 107596.65, + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b004985fce9b49f9aac75868", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694019139358, "net_received_amount": 0, @@ -16990,18 +25404,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694019139358" + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c4dcad1cd39245d48f9924bb", + "revision_nr": 1, + "created": 1701459383484, + "modified": 1701459383484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694019139358", + "revision": "e0a571a1464b4d569996ac9d", + "revision_nr": 1, + "created": 1701459383484, + "modified": 1701459383484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "58c7af0ab21d440bb763ef54", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -17010,9 +25457,18 @@ "total_amount": 3478958.35, "id": "1694019139358", "history_id": "1694019139358", - "date_created": "2023-09-06T16:52:19.358Z", - "date_last_updated": "2023-09-11T22:23:22.474Z", - "date_of_expiration": "2023-09-06T16:52:19.358Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -17022,30 +25478,29 @@ "date_approved": "2023-09-11T22:23:22.474Z", "money_release_date": "2023-09-11T22:23:22.474Z", "money_release_status": "drawee", - "wasDebited": true, - "description": "Saque de 3.478.958,35 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4512a837bba747099846e83d", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 3.478.958,35 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", + "revision": "976c9b2b90434984a03c1d39", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694530925477, "net_received_amount": 0, @@ -17055,18 +25510,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694530925477" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c102a29b65cc462390096193", + "revision_nr": 1, + "created": 1701459383484, + "modified": 1701459383484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694530925477", + "revision": "533693698d5847c8a3f85d78", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -17075,9 +25553,18 @@ "total_amount": 13248, "id": "1694530925477", "history_id": "1694530925477", - "date_created": "2023-09-12T15:02:05.477Z", - "date_last_updated": "2023-10-04T23:31:59.830Z", - "date_of_expiration": "2023-10-12T15:02:05.475Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -17086,44 +25573,55 @@ "status_detail": "cc_rejected_insufficient_staked_amount", "money_release_date": "2023-10-04T23:31:59.830Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Investimento de 13.248,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 12/10/2023 - Y12XDT27" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8f2733216f484439a8a5d2a7", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-12T22:54:09.010Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 13.248,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 12/10/2023 - Y12XDT27", + "revision": "f21b0a659dab4e0c897399d2", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-12T22:54:09.010Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } + }, + "revision": "003da558d98247c9b353be2e", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694559249011, "net_received_amount": 0, @@ -17133,18 +25631,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694559249011" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0da83409cc1646b2af2a6a96", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694559249011", + "revision": "ca90834b7da3407495749dd3", + "revision_nr": 1, + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -17153,8 +25674,14 @@ "total_amount": 220, "id": "1694559249011", "history_id": "1694559249011", - "date_created": "2023-09-12T22:54:09.011Z", - "date_last_updated": "2023-09-12T23:10:55.083Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17165,29 +25692,32 @@ "money_release_date": "2023-09-12T23:10:55.083Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 220,00 BRL para a carteira iVip 0176.0919.3050.0250-62" + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f6335c68199d42fe9c497195", "revision_nr": 1, - "created": 1700748395471, - "modified": 1700748395471 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 220,00 BRL para a carteira iVip 0176.0919.3050.0250-62", + "revision": "5a9c6260e7fc42b1920b0331", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694560328887, "net_received_amount": 0, @@ -17197,20 +25727,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 4, "installments_payable": 1, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694560328887" + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c46fd538c2f1484b995b3832", + "revision_nr": 1, + "created": 1701459383484, + "modified": 1701459383484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694560328887", + "revision": "310d39765d9440f9a9cf7fb7", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -17219,38 +25772,46 @@ "total_amount": 220, "id": "1694560328887", "history_id": "1694560328887", - "date_created": "2023-09-12T23:12:08.887Z", - "date_last_updated": "2023-09-12T23:12:08.887Z", - "date_of_expiration": "2023-09-12T23:12:08.887Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9afe6d4e7ef1415dbb624cc7", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", + "revision": "0a1cce8e92414737b296609f", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695164776163, "net_received_amount": 0, @@ -17260,18 +25821,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1695164776163" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "11029bb69be44059990bdde5", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383484, + "modified": 1701459383484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1695164776163", + "revision": "e5e9956fc1c645c987a09460", + "revision_nr": 1, + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -17280,9 +25864,18 @@ "total_amount": 4583948, "id": "1695164776163", "history_id": "1695164776163", - "date_created": "2023-09-19T23:06:16.163Z", - "date_last_updated": "2023-09-25T21:44:45.837Z", - "date_of_expiration": "2024-03-19T23:06:16.135Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -17291,30 +25884,29 @@ "status_detail": "cc_rejected_insufficient_staked_amount", "money_release_date": "2023-09-25T21:44:45.837Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Investimento de 4.583.948,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "797598e4639549b2a031583a", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 4.583.948,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", + "revision": "5e6724b8e86d44258d8fdba2", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696551378554, "net_received_amount": 0, @@ -17324,18 +25916,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1696551378554" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5f2dfc32fef14d5bb4621c9c", + "revision_nr": 1, + "created": 1701459383484, + "modified": 1701459383484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1696551378554", + "revision": "622219a38e6a44f3b22c8e50", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -17345,52 +25960,72 @@ "total_amount": 4597196, "id": "1696551378554", "history_id": "1696551378554", - "date_created": "2023-10-06T00:16:18.554Z", - "date_last_updated": "2023-10-06T00:16:18.554Z", - "date_of_expiration": "2023-11-06T00:16:18.481Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 4.597.196,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "56c4b2c06b5a41eab5af78ef", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-11-12T12:26:40.740Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 4.597.196,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", + "revision": "a3d744732e944d3c991cb5a2", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-11-12T12:26:40.740Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } + }, + "revision": "e8b2aa8e8e7944b69fcd8764", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1697200000740", "net_received_amount": 0, @@ -17400,18 +26035,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1697200000740" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "441b8b0ddf89496a889ef2ff", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383484, + "modified": 1701459383484 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1697200000740", + "revision": "d51504cfc7a942df85e542bb", + "revision_nr": 1, + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -17421,8 +26079,14 @@ "total_amount": 220, "id": "1697200000740", "history_id": "1697200000740", - "date_created": "2023-10-13T12:26:40.740Z", - "date_last_updated": "2023-10-13T13:19:44.767Z", + "date_created": { + "type": 6, + "value": 1701459383484 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383484 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17433,29 +26097,32 @@ "money_release_date": "2023-10-13T13:19:44.767Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 220,00 BRL para a carteira iVip 0176.0919.3050.0250-62" + "date_of_expiration": { + "type": 6, + "value": 1701459383484 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8e40a3d2acb74b0bba94d8e6", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383484, + "modified": 1701459383484 } }, { - "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 220,00 BRL para a carteira iVip 0176.0919.3050.0250-62", + "revision": "e33609c540794aaa91998a86", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383484, + "modified": 1701459383484 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1697203305717", "net_received_amount": 0, @@ -17465,20 +26132,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 5, "installments_payable": 0, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1697203305717" + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "832aebd33d714bb5888a26b2", + "revision_nr": 1, + "created": 1701459383485, + "modified": 1701459383485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1697203305717", + "revision": "2d877392d0254edba83b9cf2", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -17488,53 +26178,84 @@ "total_amount": 220, "id": "1697203305717", "history_id": "1697203305717", - "date_created": "2023-10-13T13:21:45.717Z", - "date_last_updated": "2023-10-13T13:21:45.717Z", - "date_of_expiration": "2023-10-13T13:21:45.717Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9ab57c3f90214e75bd52b686", + "revision_nr": 1, + "created": 1701459383485, + "modified": 1701459383485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717/description", + "content": { + "type": "STRING", + "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", + "revision": "ed33134d556247ccbeef8246", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3c10dc519b0d462fa28b642a", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b6eb704e59d4496c83622c61", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684003059388, "type": "emprestimo", @@ -17542,48 +26263,92 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-13T18:37:39.388Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c820f9077cdb4481adfa8141", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "be6696bb938b4ad9b78f849a", + "revision_nr": 1, + "created": 1701459383485, + "modified": 1701459383485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "4e22062dff0b4f0a9c2185a0", + "revision_nr": 1, + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a2a7c219a98a4797bcae1fcb", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aac4209219144eee93f12304", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684003059388, "type": "emprestimo", @@ -17591,48 +26356,92 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-13T18:37:39.388Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4e9c538c514e44c79e12e28e", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "36b725266bae44aa9d2122c9", + "revision_nr": 1, + "created": 1701459383485, + "modified": 1701459383485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "ac57fc0cc9464ef0b660ed58", + "revision_nr": 1, + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7ee2a106df7d483b95d37067", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "39bc7bfa94bb4cf091e26056", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684003059388, "type": "emprestimo", @@ -17640,48 +26449,92 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-13T18:37:39.388Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ea6999747e8e4223bf3b8b0d", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "bafd26fc4e814078a784ab26", + "revision_nr": 1, + "created": 1701459383485, + "modified": 1701459383485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "0e877d3547d7451fbadcc015", + "revision_nr": 1, + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "25811bde1dfd453da9164299", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0381d2aa4951470b9cae2941", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684003059388, "type": "emprestimo", @@ -17689,49 +26542,92 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-13T18:37:39.388Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-12T23:12:08.902Z", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "308e74ca42dd47fa92c4f80c", + "revision_nr": 1, + "created": 1701459383485, + "modified": 1701459383485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "79a2a48d7a4d4b54b6162756", + "revision_nr": 1, + "created": 1701459383485, + "modified": 1701459383485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "99aaeb8355584f1192994020", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7df631a54a4640cea1dc6a88", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9097dc9e7ba247e79ac43a3a", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684003059388, "type": "emprestimo", @@ -17739,100 +26635,158 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-13T18:37:39.388Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-10-13T13:21:45.729Z", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b24c0dc7ccf44c599bb6dcf3", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "590d2c7a9be8439595bd57e1", + "revision_nr": 1, + "created": 1701459383485, + "modified": 1701459383485 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "df4f51a0884948ceaaf50ae2", + "revision_nr": 1, + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b37671d95d554104ad7c16d2", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "50da7070e559464690afe6aa", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 1000, "limitUsed": 400, "analysisRequested": "2023-05-13T18:00:13.915Z", - "lastReview": "2023-05-13T18:03:09.928Z" + "lastReview": "2023-05-13T18:03:09.928Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "619430f744224ae0819674d2", "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1682097646342, "dateValidity": 1682097646342, "totalValue": 2544.535, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z" + "balancesModificacao": "2023-10-15T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395472, - "modified": 1700748395472 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "865c2ca57606485ca664c00c", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } + }, + "revision": "84a9c780a22c4e018aaa745b", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -17841,9 +26795,18 @@ "total_amount": 15000, "history_id": 1684943727392, "id": 1684943727392, - "date_created": "2023-05-24T15:55:27.392Z", - "date_last_updated": "2023-05-24T15:55:53.725Z", - "date_of_expiration": "2023-06-23T15:55:27.392Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -17851,30 +26814,29 @@ "date_approved": "2023-05-24T15:55:53.725Z", "money_release_date": "2023-05-24T15:55:53.725Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 15.000,00 para a carteira iVip 0176.2260.5984.9780-02" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8780ad911ec04c2d823852f5", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { - "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1685471938618/details/costs", + "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 15.000,00 para a carteira iVip 0176.2260.5984.9780-02", + "revision": "0a0e9cf8e01e4e4eb2dccc30", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1685471938618/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685471938618, @@ -17885,18 +26847,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "317f655ee0cb4d5aa4658759", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1685471938618", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -17906,9 +26881,18 @@ "original_amount": 200000000, "total_amount": 200000000, "id": 1685471938618, - "date_created": "2023-05-30T18:38:58.618Z", - "date_last_updated": "2023-05-30T18:38:58.618Z", - "date_of_expiration": "2023-05-30T18:38:58.618Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17917,181 +26901,244 @@ "history_id": 1685471938618, "description": "Compra de 200.000.000,00 IVIP por 15.000,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0aa46a2cc5d34b48a1da7a23", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "07e72e4206c84e958aa54606", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ffa8b69e1c4945d8adc513e7", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "56ed01ce68e545cebd16c598", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "200000000.00000000", "symbol": "IVIP", - "value": 20332.55 + "value": 20332.55, + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "33673510cc9e4da583a74b54", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7c70194780304dacb709f982", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1683153627758, "dateValidity": 1683153627758, "totalValue": 13477.18, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z" + "balancesModificacao": "2023-10-16T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cfe17ed6e4e74810bbacd5b8", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/018061972197789932/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e71b2c97e2bf419bae5aedf7", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/018061972197789932/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f8da0a42e4cc4e03b02140d2", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/018061972197789932", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678058024401, "dateValidity": 1678162416437, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9f2e30b39a3640e09a7c105a", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "0.60000000", "symbol": "IVIP", - "value": 0.000081 + "value": 0.000081, + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "29bb795e096741ab878c6756", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aabb015156944cd0aae516ad", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } + }, + "revision": "e408820021354b1094d8d299", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -18100,49 +27147,71 @@ "total_amount": 100, "history_id": 1678138020034, "id": 1678138020034, - "date_created": "2023-03-06T21:27:00.034Z", - "date_last_updated": "2023-03-06T21:31:53.569Z", - "date_of_expiration": "2023-04-05T21:27:00.034Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-03-06T21:31:53.569Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0192.1172.1108.0322-64" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "57043922014740298f0d7785", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594/details/costs", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0192.1172.1108.0322-64", + "revision": "11604e25ff4e442499e4aba2", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } + }, + "revision": "f1620cf7692342ad933a3af2", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -18151,9 +27220,18 @@ "total_amount": 2000, "history_id": 1677965965594, "id": 1677965965594, - "date_created": "2023-03-04T21:39:25.594Z", - "date_last_updated": "2023-03-05T00:07:26.209Z", - "date_of_expiration": "2023-04-03T21:39:25.594Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -18161,41 +27239,54 @@ "date_approved": "2023-03-05T00:07:26.209Z", "money_release_date": "2023-03-05T00:07:26.209Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0192.1172.1108.0322-64" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b4e63f9b431a451b8516b924", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348/details/costs", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0192.1172.1108.0322-64", + "revision": "f7c56d77cac24a6ea7b24d4a", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } + }, + "revision": "32c8835b275d4d1f824288cf", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -18204,39 +27295,47 @@ "total_amount": 1000, "history_id": 1678138148348, "id": 1678138148348, - "date_created": "2023-03-06T21:29:08.348Z", - "date_last_updated": "2023-03-07T15:01:46.976Z", - "date_of_expiration": "2023-04-05T21:29:08.348Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "date_approved": "2023-03-07T15:01:46.976Z", "money_release_date": "2023-03-07T15:01:46.976Z", - "money_release_status": "approved", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0192.1172.1108.0322-64" + "money_release_status": "approved" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "348d4d50ad1c496cab65ade8", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678162119494/details/costs", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0192.1172.1108.0322-64", + "revision": "5f89c7b284a64c1ebffc63f2", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678162119494/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678162119494, @@ -18247,18 +27346,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0e04b2af841a4592b01d70d9", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678162119494", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -18268,9 +27380,18 @@ "original_amount": 14292068, "total_amount": 14292068, "id": 1678162119494, - "date_created": "2023-03-07T04:08:39.494Z", - "date_last_updated": "2023-03-07T04:08:39.494Z", - "date_of_expiration": "2023-03-07T04:08:39.494Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18279,27 +27400,16 @@ "history_id": 1678162119494, "description": "Compra de 14292068 IVIP por 2000 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9ca9c5eee3cc436e89771958", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678201718893/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678201718893/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678201718893, @@ -18310,18 +27420,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "399adb240e26444e82b7c896", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678201718893", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -18331,9 +27454,18 @@ "original_amount": 7083024, "total_amount": 7083024, "id": 1678201718893, - "date_created": "2023-03-07T15:08:38.893Z", - "date_last_updated": "2023-03-07T15:08:38.893Z", - "date_of_expiration": "2023-03-07T15:08:38.893Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18342,38 +27474,41 @@ "history_id": 1678201718893, "description": "Compra de 7083024 IVIP por 1000 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "704c0713232e4c1c87586440", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } + }, + "revision": "17c32c27c316447b9bec8786", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -18382,49 +27517,71 @@ "total_amount": 15000000, "history_id": 1687306180932, "id": 1687306180932, - "date_created": "2023-06-21T00:09:40.932Z", - "date_last_updated": "2023-06-22T13:14:46.349Z", - "date_of_expiration": "2023-06-21T00:09:40.932Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", "money_release_date": "2023-06-22T13:14:46.349Z", - "money_release_status": "rejected", - "description": "Saque de 15.000.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bb113fbf4527450fb2694f3e", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776/details/costs", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 15.000.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", + "revision": "f4fdc7ed45c548c3b57898ed", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } + }, + "revision": "4c1a2b0e09f74b41b9c7e06c", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -18433,9 +27590,18 @@ "total_amount": 15000000, "history_id": 1687306331776, "id": 1687306331776, - "date_created": "2023-06-21T00:12:11.776Z", - "date_last_updated": "2023-06-22T13:15:07.717Z", - "date_of_expiration": "2023-06-21T00:12:11.776Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -18443,30 +27609,29 @@ "date_approved": "2023-06-22T13:15:07.717Z", "money_release_date": "2023-06-22T13:15:07.717Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 15.000.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7d6823b74e6040dcadfd9836", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687525932247/details/costs", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 15.000.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", + "revision": "2d208f70a6264ca6b8e3276c", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687525932247/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687525932247, @@ -18477,18 +27642,31 @@ "overpaid_amount": 0, "installment_amount": 6375092, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "12cbe6221e6d40848d02c16a", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687525932247", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -18497,39 +27675,47 @@ "original_amount": 6375092, "total_amount": 6375092, "id": 1687525932247, - "date_created": "2023-06-23T13:12:12.247Z", - "date_last_updated": "2023-06-23T13:12:12.247Z", - "date_of_expiration": "2025-06-23T13:12:12.247Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1687525932247, - "wasDebited": true, - "description": "Investimento de 6.375.092,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "963eed019f4042b7b7f06ad5", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688054453004/details/costs", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687525932247/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 6.375.092,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", + "revision": "886d681dc3404ab9b9bc9968", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688054453004/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688054453004, @@ -18540,18 +27726,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0fdad2af42f44087ae6bff94", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688054453004", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -18560,50 +27759,72 @@ "original_amount": 1000, "total_amount": 1000, "id": 1688054453004, - "date_created": "2023-06-29T16:00:53.004Z", - "date_last_updated": "2023-06-29T16:00:53.004Z", - "date_of_expiration": "2024-06-29T16:00:53.004Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1688054453004, - "wasDebited": true, - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/29/2024" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4bf06dc15332420a9dccc862", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395/details/costs", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688054453004/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/29/2024", + "revision": "255814cd60eb49da9ff9735e", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } + }, + "revision": "a30d0e5846764e999e9a8a3c", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -18612,36 +27833,44 @@ "total_amount": 1375000, "history_id": 1688055217395, "id": 1688055217395, - "date_created": "2023-06-29T16:13:37.395Z", - "date_last_updated": "2023-06-29T16:13:37.395Z", - "date_of_expiration": "2023-06-29T16:13:37.395Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 1.375.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1c16d8797daf44b19b52e5b4", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688400574946/details/costs", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 1.375.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", + "revision": "f4d1a0184e9342b895765461", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688400574946/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688400574946, @@ -18652,18 +27881,31 @@ "overpaid_amount": 0, "installment_amount": 5000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "46507596e6a64ccdb0fa8145", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688400574946", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -18672,38 +27914,46 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1688400574946, - "date_created": "2023-07-03T16:09:34.946Z", - "date_last_updated": "2023-07-03T16:09:34.946Z", - "date_of_expiration": "2023-08-03T16:09:34.946Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1688400574946, - "description": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023" + "history_id": 1688400574946 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e198e04941014f969d255f20", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079119787/details/costs", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688400574946/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", + "revision": "e2db871ef7c14cd89c88d509", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079119787/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1691079119787, @@ -18714,18 +27964,31 @@ "overpaid_amount": 0, "installment_amount": 5000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0d9efb4689334116abe59ec1", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079119787", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -18734,39 +27997,47 @@ "original_amount": 5100000, "total_amount": 5100000, "id": 1691079119787, - "date_created": "2023-08-03T16:11:59.787Z", - "date_last_updated": "2023-08-03T16:11:59.787Z", - "date_of_expiration": "2023-08-03T16:11:59.787Z", + "date_created": { + "type": 6, + "value": 1701459383485 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383485 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383485 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1691079119787, - "wasDebited": true, - "description": "Resgate do investimento staking de 5.000.000,00 IVIP com um rendimento de +100.000,00 IVIP (2,00%)" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e98d5afb7e7d4457ac7fc814", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079120545/details/costs", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079119787/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 5.000.000,00 IVIP com um rendimento de +100.000,00 IVIP (2,00%)", + "revision": "a0f849776764476490bc1b7a", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383485, + "modified": 1701459383485 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079120545/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1691079120545, @@ -18777,18 +28048,31 @@ "overpaid_amount": 0, "installment_amount": 5000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6dbe3a52c7dc4ac797357158", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079120545", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -18797,39 +28081,47 @@ "original_amount": 5100000, "total_amount": 5100000, "id": 1691079120545, - "date_created": "2023-08-03T16:12:00.545Z", - "date_last_updated": "2023-08-03T16:12:00.545Z", - "date_of_expiration": "2023-08-03T16:12:00.545Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1691079120545, - "wasDebited": true, - "description": "Resgate do investimento staking de 5.000.000,00 IVIP com um rendimento de +100.000,00 IVIP (2,00%)" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a867a3260ac14924b539dad4", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409/details/costs", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079120545/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 5.000.000,00 IVIP com um rendimento de +100.000,00 IVIP (2,00%)", + "revision": "364e20ce37304182bc0ae487", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691085199409, "net_received_amount": 0, @@ -18839,18 +28131,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1691085199409" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b53b6ea53ff24ac88d46804f", + "revision_nr": 1, + "created": 1701459383486, + "modified": 1701459383486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1691085199409", + "revision": "16ab4207f21d4873925d2028", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -18859,38 +28174,46 @@ "total_amount": 5199000, "id": 1691085199409, "history_id": 1691085199409, - "date_created": "2023-08-03T17:53:19.409Z", - "date_last_updated": "2023-08-03T17:53:19.409Z", - "date_of_expiration": "2023-09-03T17:53:19.408Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 5.199.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "11ad3787aa1a459385098be4", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046/details/costs", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 5.199.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", + "revision": "597020ff06b441c59f6eb919", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693763776046, "net_received_amount": 0, @@ -18900,18 +28223,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1693763776046" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "11fb3946de324488936f4410", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1693763776046", + "revision": "3c9f3280721c4f358652dfa8", + "revision_nr": 1, + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -18920,38 +28266,46 @@ "total_amount": 5302980, "id": "1693763776046", "history_id": "1693763776046", - "date_created": "2023-09-03T17:56:16.046Z", - "date_last_updated": "2023-09-03T17:56:16.046Z", - "date_of_expiration": "2023-09-03T17:56:16.046Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 5.199.000,00 IVIP com um rendimento de +103.980,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4b06b2b16ea24aa4a49772d1", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176/details/costs", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 5.199.000,00 IVIP com um rendimento de +103.980,00 IVIP (2,00%) - Y12XDT27", + "revision": "dca912551f8a4d56a6e216f4", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693924633176, "net_received_amount": 0, @@ -18961,18 +28315,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1693924633176" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c2551b3adb6545c6b76fb86c", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1693924633176", + "revision": "bd80a36d3237471ea0f16578", + "revision_nr": 1, + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -18981,38 +28358,46 @@ "total_amount": 5302980, "id": "1693924633176", "history_id": "1693924633176", - "date_created": "2023-09-05T14:37:13.176Z", - "date_last_updated": "2023-09-05T14:37:13.176Z", - "date_of_expiration": "2023-10-05T14:37:13.174Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 5.302.980,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2a42628d9411465883b6075d", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226/details/costs", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 5.302.980,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", + "revision": "59994eb2c81f4e09b4d1ba48", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696516664226, "net_received_amount": 0, @@ -19022,18 +28407,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1696516664226" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b80b76bca45d44379ca9b5e1", + "revision_nr": 1, + "created": 1701459383486, + "modified": 1701459383486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1696516664226", + "revision": "2343c53b70a24c8e9d86b13f", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -19043,38 +28451,46 @@ "total_amount": 5409039.6, "id": "1696516664226", "history_id": "1696516664226", - "date_created": "2023-10-05T14:37:44.226Z", - "date_last_updated": "2023-10-05T14:37:44.226Z", - "date_of_expiration": "2023-10-05T14:37:44.226Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 5.302.980,00 IVIP com um rendimento de +106.059,6 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "527537329a854e459cbabfc8", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { - "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766/details/costs", + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 5.302.980,00 IVIP com um rendimento de +106.059,6 IVIP (2,00%) - Y12XDT27", + "revision": "f5fb6318ebf3451db395cfbd", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696621887766", "net_received_amount": 0, @@ -19084,18 +28500,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1696621887766" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "00fce9a8bacd4254b1e84889", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1696621887766", + "revision": "97836022369d4a9d9925ab65", + "revision_nr": 1, + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -19105,129 +28544,187 @@ "total_amount": 5409039, "id": "1696621887766", "history_id": "1696621887766", - "date_created": "2023-10-06T19:51:27.766Z", - "date_last_updated": "2023-10-06T19:51:27.766Z", - "date_of_expiration": "2023-11-06T19:51:27.733Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 5.409.039,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3c5fa935a7ae4a59a9c81690", + "revision_nr": 1, + "created": 1701459383486, + "modified": 1701459383486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766/description", + "content": { + "type": "STRING", + "value": "Investimento de 5.409.039,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", + "revision": "4de268cfa34c4e958339a5a2", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "24475e6eeb40422793009b35", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b1b95db532ef4aed9a65b7a1", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-07-19T15:26:56.218Z" + "analysisRequested": "2023-07-19T15:26:56.218Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "de00c089cfff4183bec71dd4", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677444787438, "dateValidity": 1678664927087, "totalValue": 1001.4056590358118, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z" + "balancesModificacao": "2023-10-09T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "92546193953644dc811b9e88", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "80.00000000", "symbol": "BRL", - "value": 16.58 + "value": 16.58, + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a1a863bec29246d88ce2053f", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "706bace7ff2c41a3864719f2", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } + }, + "revision": "239b7814f6a142afb55f3d1c", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -19236,39 +28733,47 @@ "total_amount": 100, "history_id": 1679011728068, "id": 1679011728068, - "date_created": "2023-03-17T00:08:48.068Z", - "date_last_updated": "2023-03-17T12:47:59.547Z", - "date_of_expiration": "2023-04-16T00:08:48.068Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "date_approved": "2023-03-17T12:47:59.547Z", "money_release_date": "2023-03-17T12:47:59.547Z", - "money_release_status": "approved", - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0199.6555.6064.9756-30" + "money_release_status": "approved" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e000f75f2e3c4d50b859570e", "revision_nr": 1, - "created": 1700748395473, - "modified": 1700748395473 + "created": 1701459383486, + "modified": 1701459383486 } }, { - "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588/details/costs", + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0199.6555.6064.9756-30", + "revision": "4c75fc40f4cf4a78b5d0853d", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1689901373588, "net_received_amount": 0, @@ -19278,18 +28783,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/019965556064975630/history/1689901373588" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3b7a5b8c6da4446fb2bcee91", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/019965556064975630/history/1689901373588", + "revision": "5a73dda84dd7447bb44a06ae", + "revision_nr": 1, + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -19298,143 +28826,213 @@ "total_amount": 20, "id": 1689901373588, "history_id": 1689901373588, - "date_created": "2023-07-21T01:02:53.588Z", - "date_last_updated": "2023-07-21T01:02:53.588Z", - "date_of_expiration": "2024-05-21T01:02:53.584Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "accredited", - "description": "Investimento de 20,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/20/2024" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "53301dfb970e42de9ece6baf", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588/description", + "content": { + "type": "STRING", + "value": "Investimento de 20,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/20/2024", + "revision": "c146c342944045d88c040d7d", + "revision_nr": 1, + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5710b0b4786e44c1a242427b", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "890853510d3d4fc6b8169125", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "552f919ffcda4b1bbbe23c27", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1679011642708, "dateValidity": 1679026042762, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": 1689822000000 + "balancesModificacao": 1689822000000, + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6731955b2e484d4ea13748dd", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0c629b80285348b3b6a1b758", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "72120104.00000000", "symbol": "IVIP", - "value": 10477.68 + "value": 10477.68, + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "74dde6b6c8eb4c05871ebc1b", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b9f4fd17d54a45a588a6e991", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } + }, + "revision": "0c8b2119e6604d9394834bb0", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -19443,9 +29041,18 @@ "total_amount": 10000, "history_id": 1677725964136, "id": 1677725964136, - "date_created": "2023-03-02T02:59:24.136Z", - "date_last_updated": "2023-03-02T11:03:26.417Z", - "date_of_expiration": "2023-04-01T02:59:24.136Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -19453,30 +29060,29 @@ "date_approved": "2023-03-02T11:03:26.417Z", "money_release_date": "2023-03-02T11:03:26.417Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0219.7710.1011.6756-04" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "707b505cb8f5465dadda1940", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { - "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678147737654/details/costs", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0219.7710.1011.6756-04", + "revision": "7d74620972a44059ae3b9193", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678147737654/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678147737654, @@ -19487,18 +29093,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c004d0b30ccc4488bd223175", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678147737654", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -19508,9 +29127,18 @@ "original_amount": 71386212, "total_amount": 71386212, "id": 1678147737654, - "date_created": "2023-03-07T00:08:57.654Z", - "date_last_updated": "2023-03-07T00:08:57.654Z", - "date_of_expiration": "2023-03-07T00:08:57.654Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19519,27 +29147,16 @@ "history_id": 1678147737654, "description": "Compra de 71386212 IVIP por 10000 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c8b5d4b0e8774aaaab2d3a5a", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678160584706/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678160584706/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678160584706, @@ -19550,18 +29167,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bb2a915290bd4656a65196ce", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678160584706", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -19571,38 +29201,46 @@ "original_amount": 1000, "total_amount": 1000, "id": 1678160584706, - "date_created": "2023-03-07T03:43:04.706Z", - "date_last_updated": "2023-03-07T03:43:04.706Z", - "date_of_expiration": "2023-03-07T03:43:04.706Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1678160584706, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1678160584706 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "667953fed64b493abdd9f619", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { - "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678162248934/details/costs", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678160584706/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "96e94829d19a466299eb16cf", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678162248934/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678162248934, @@ -19613,18 +29251,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "57f7df79fad5449d8e02ff64", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678162248934", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -19634,9 +29285,18 @@ "original_amount": 7146034, "total_amount": 7146034, "id": 1678162248934, - "date_created": "2023-03-07T04:10:48.934Z", - "date_last_updated": "2023-03-07T04:10:48.934Z", - "date_of_expiration": "2023-03-07T04:10:48.934Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19645,44 +29305,68 @@ "history_id": 1678162248934, "description": "Compra de 7146034 IVIP por 1000 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a2cb7ac3f04344b8a32cf5e0", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/barcode", "content": { - "type": 1, + "type": "OBJECT", "value": { - "content": "23797927500010103493380261019562276900633330" + "content": "23797927500010103493380261019562276900633330", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8aedc64123b04504b694a9bc", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", - "amount": 3.49 + "amount": 3.49, + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a21feb5590bf4ced9763b7c9", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": "10195622769", @@ -19693,18 +29377,51 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "bradesco", - "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1311811220/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311811220&payment_method_reference_id=10195622769&hash=8d50adc1-12db-410d-a168-79594db6001b" + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a89fe2c28ebe4653a2c70bbb", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/sandbox/payments/1311811220/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311811220&payment_method_reference_id=10195622769&hash=8d50adc1-12db-410d-a168-79594db6001b", + "revision": "f903923a7f96405fbcd42322", + "revision_nr": 1, + "created": 1701459383486, + "modified": 1701459383486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "ec92a83c62cb45348d6b0faf", + "revision_nr": 1, + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -19713,37 +29430,45 @@ "total_amount": 10103.49, "history_id": 1677379209968, "id": 1311811220, - "date_created": "2023-02-25T22:40:10.662-04:00", - "date_last_updated": "2023-02-25T22:40:10.662-04:00", - "date_of_expiration": "2023-02-28T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 10.100,00 para a carteira iVip 0219.7710.1011.6756-04" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8980422866d641a9a52722b1", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { - "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684348383580/details/costs", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 10.100,00 para a carteira iVip 0219.7710.1011.6756-04", + "revision": "e19142c967444703969a56d0", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684348383580/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684348383580, @@ -19754,18 +29479,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2b7d7a85221d409d8d9840bb", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684348383580", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -19775,38 +29513,46 @@ "original_amount": 326, "total_amount": 326, "id": 1684348383580, - "date_created": "2023-05-17T18:33:03.580Z", - "date_last_updated": "2023-05-17T18:33:03.580Z", - "date_of_expiration": "2023-05-17T18:33:03.580Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684348383580, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684348383580 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1e4ede9ed4904bb990e67444", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { - "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684624810300/details/costs", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684348383580/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "3d100f928d284a62af290538", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684624810300/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624810300, @@ -19817,18 +29563,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "64e4602035744e4481c13f18", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684624810300", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -19838,9 +29597,18 @@ "original_amount": 1587858, "total_amount": 1587858, "id": 1684624810300, - "date_created": "2023-05-20T23:20:10.300Z", - "date_last_updated": "2023-05-20T23:20:10.300Z", - "date_of_expiration": "2023-05-20T23:20:10.300Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19849,27 +29617,16 @@ "history_id": 1684624810300, "description": "Compra de 1.587.858,00 IVIP por 326,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1685668591211/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9c1e0dd13dbc4caea2d19992", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1685668591211/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685668591211, @@ -19880,18 +29637,31 @@ "overpaid_amount": 0, "installment_amount": 8000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1c6b51d4e7ed4d3ca2d30756", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1685668591211", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -19900,49 +29670,71 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685668591211, - "date_created": "2023-06-02T01:16:31.211Z", - "date_last_updated": "2023-06-02T01:16:31.211Z", - "date_of_expiration": "2024-06-02T01:16:31.211Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685668591211, - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024" + "history_id": 1685668591211 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "509942ac910047c98f32ce4e", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { - "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853/details/costs", + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1685668591211/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", + "revision": "741d8739bc364375af6f2225", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + } + }, + "revision": "78716383747f4d7d9a5d6cbf", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -19951,40 +29743,71 @@ "total_amount": 72120104, "history_id": 1689198160853, "id": 1689198160853, - "date_created": "2023-07-12T21:42:40.853Z", - "date_last_updated": "2023-07-12T21:42:40.853Z", - "date_of_expiration": "2023-07-12T21:42:40.853Z", + "date_created": { + "type": 6, + "value": 1701459383486 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383486 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383486 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 72.120.104,00 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "23d9c4f856944c23b86b3c17", + "revision_nr": 1, + "created": 1701459383486, + "modified": 1701459383486 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853/description", + "content": { + "type": "STRING", + "value": "Saque de 72.120.104,00 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", + "revision": "9f5954e0e4dd48b8bb0728c8", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 2098695.0264 + "amount": 2098695.0264, + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "20803d8751fa4a6f9809123e", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690914468659, "net_received_amount": 0, @@ -19994,18 +29817,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/021977101011675604/history/1690914468659" + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "29ddc3da5f354b7788062fda", + "revision_nr": 1, + "created": 1701459383487, + "modified": 1701459383487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/021977101011675604/history/1690914468659", + "revision": "471592f68d51427ba86be8e6", + "revision_nr": 1, + "created": 1701459383487, + "modified": 1701459383487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "3da3b591e03b400a8c837490", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -20014,9 +29870,18 @@ "total_amount": 69956500.88, "id": 1690914468659, "history_id": 1690914468659, - "date_created": "2023-08-01T18:27:48.659Z", - "date_last_updated": "2023-08-07T14:42:48.367Z", - "date_of_expiration": "2023-08-01T18:27:48.659Z", + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -20026,34 +29891,56 @@ "date_approved": "2023-08-07T14:42:48.367Z", "money_release_date": "2023-08-07T14:42:48.367Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 69.956.500,88 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "991b86366fe04acfad55093c", + "revision_nr": 1, + "created": 1701459383487, + "modified": 1701459383487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/description", + "content": { + "type": "STRING", + "value": "Saque de 69.956.500,88 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", + "revision": "c479998cac0c4c8f8c1bd294", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383486, + "modified": 1701459383486 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 1026103.0443000001 + "amount": 1026103.0443000001, + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "33fffd4cff274456a441bf4d", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690914748870, "net_received_amount": 0, @@ -20063,18 +29950,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/021977101011675604/history/1690914748870" + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aebd35fbde434697856a240e", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/021977101011675604/history/1690914748870", + "revision": "d11be9640db24c03a188a04b", + "revision_nr": 1, + "created": 1701459383487, + "modified": 1701459383487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "13b2438063cc470a998ae967", + "revision_nr": 1, + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -20083,9 +30003,18 @@ "total_amount": 34203434.81, "id": 1690914748870, "history_id": 1690914748870, - "date_created": "2023-08-01T18:32:28.870Z", - "date_last_updated": "2023-08-16T14:21:59.152Z", - "date_of_expiration": "2023-08-01T18:32:28.870Z", + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -20094,120 +30023,169 @@ "status_detail": "rejected", "money_release_date": "2023-08-16T14:21:59.152Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Saque de 34.203.434,81 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9174c1dcb41849a5b0b60d55", + "revision_nr": 1, + "created": 1701459383487, + "modified": 1701459383487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/description", + "content": { + "type": "STRING", + "value": "Saque de 34.203.434,81 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", + "revision": "1499e48e180e4c538960a1ed", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0f7458174deb438db5ac804c", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f5d93f3e26514705b3afba77", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1af83dc38747427e8d5daca3", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677376425892, "dateValidity": 1678341464139, "totalValue": 3999.180462637249, "currencyType": "USD", - "balancesModificacao": 1691419368675 + "balancesModificacao": 1691419368675, + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c54b7b76dd7c4b6097fd541c", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "62553.00000000", "symbol": "IVIP", - "value": 6.93 + "value": 6.93, + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2189c3ca05a34f79994d6f9b", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bdb0914783124ebf90373f25", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + } + }, + "revision": "e79c68fab76d4b3883b614cd", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -20216,9 +30194,18 @@ "total_amount": 100, "history_id": 1689290027436, "id": 1689290027436, - "date_created": "2023-07-13T23:13:47.436Z", - "date_last_updated": "2023-07-14T17:32:15.839Z", - "date_of_expiration": "2023-08-12T23:13:47.436Z", + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -20226,41 +30213,54 @@ "date_approved": "2023-07-14T17:32:15.839Z", "money_release_date": "2023-07-14T17:32:15.839Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d88a0c9338644c57bdbf7a06", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { - "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555/details/costs", + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", + "revision": "25f2674208654ff7bb621c57", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + } + }, + "revision": "9d7f92d0f6234a36880f2b9b", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -20269,47 +30269,69 @@ "total_amount": 100, "history_id": 1689338968555, "id": 1689338968555, - "date_created": "2023-07-14T12:49:28.555Z", - "date_last_updated": "2023-07-14T12:49:28.555Z", - "date_of_expiration": "2023-08-13T12:49:28.555Z", + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1caa0c3a0baa4014aeaccc65", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { - "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748/details/costs", + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", + "revision": "4866e7714e584ab7b75719af", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + } + }, + "revision": "ee6c5963e203406ea1784c36", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -20318,36 +30340,44 @@ "total_amount": 100, "history_id": 1689345853748, "id": 1689345853748, - "date_created": "2023-07-14T14:44:13.748Z", - "date_last_updated": "2023-07-14T14:44:13.748Z", - "date_of_expiration": "2023-08-13T14:44:13.748Z", + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f5ad19dbc081492d81ad8d9a", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { - "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689357674118/details/costs", + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", + "revision": "4caa4f933d5941148a70634e", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689357674118/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689357674118, @@ -20358,18 +30388,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a93c42c3067c48c99b4e721f", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689357674118", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -20379,9 +30422,18 @@ "original_amount": 62553, "total_amount": 62553, "id": 1689357674118, - "date_created": "2023-07-14T18:01:14.118Z", - "date_last_updated": "2023-07-14T18:01:14.118Z", - "date_of_expiration": "2023-07-14T18:01:14.118Z", + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20390,27 +30442,16 @@ "history_id": 1689357674118, "description": "Compra de 62.553,00 IVIP por 100,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "df84df32fb2c4c74abc58733", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690557889809, "net_received_amount": 0, @@ -20420,18 +30461,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/023129781601157750/history/1690557889809" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f34dc08f9e44441481ad3077", + "revision_nr": 1, + "created": 1701459383487, + "modified": 1701459383487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/023129781601157750/history/1690557889809", + "revision": "a568948cc79b4469960d8511", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -20440,102 +30504,148 @@ "total_amount": 62553, "id": 1690557889809, "history_id": 1690557889809, - "date_created": "2023-07-28T15:24:49.809Z", - "date_last_updated": "2023-07-28T15:24:49.809Z", - "date_of_expiration": "2023-07-28T15:24:49.809Z", + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "pending_waiting_payment", - "description": "Saque de 62.553,00 IVIP para a carteira 0x0f58150836c0785C212ea8Eb4eC1Cce6E595CE4a" + "status_detail": "pending_waiting_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5b0271e17ca942f989f13d57", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809/description", + "content": { + "type": "STRING", + "value": "Saque de 62.553,00 IVIP para a carteira 0x0f58150836c0785C212ea8Eb4eC1Cce6E595CE4a", + "revision": "e22afbbb38954e659415fee2", + "revision_nr": 1, + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9d42b453ae614f23af08a317", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "63f65cd02ae64a8d8b731d67", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "468aab9bd006494490aa0397", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1689289832519, "dateValidity": 1689289832519, "totalValue": 20.68, "currencyType": "USD", - "balancesModificacao": "2023-10-12T03:00:00.000Z" + "balancesModificacao": "2023-10-12T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2d3ad8eab1f3496da779900d", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + } + }, + "revision": "537c54f518234e1c930fd3b0", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -20544,9 +30654,18 @@ "total_amount": 62000, "history_id": 1688838966144, "id": 1688838966144, - "date_created": "2023-07-08T17:56:06.144Z", - "date_last_updated": "2023-07-08T17:56:06.144Z", - "date_of_expiration": "2023-07-08T17:56:06.144Z", + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -20554,30 +30673,29 @@ "date_approved": "2023-07-08T17:56:06.144Z", "money_release_date": "2023-07-08T17:56:06.144Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 62.000,00 para a carteira iVip 0255.1405.5020.5792-40" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5a4fa0c4897d4c33a7bd7cd7", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { - "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688839141121/details/costs", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 62.000,00 para a carteira iVip 0255.1405.5020.5792-40", + "revision": "179ab89f752b473297416602", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688839141121/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688839141121, @@ -20588,18 +30706,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c0f767b4b7cf4fcabcd75bbb", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688839141121", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -20609,9 +30740,18 @@ "original_amount": 100000000, "total_amount": 100000000, "id": 1688839141121, - "date_created": "2023-07-08T17:59:01.121Z", - "date_last_updated": "2023-07-08T17:59:01.121Z", - "date_of_expiration": "2023-07-08T17:59:01.121Z", + "date_created": { + "type": 6, + "value": 1701459383487 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383487 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383487 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20620,38 +30760,41 @@ "history_id": 1688839141121, "description": "Compra de 100.000.000,00 IVIP por 62.000,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f8619fe0e5a04411a85d147f", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383487, + "modified": 1701459383487 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } + }, + "revision": "4925e94c428c4b63a10bc804", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -20660,9 +30803,18 @@ "total_amount": 50000000, "history_id": 1689276795860, "id": 1689276795860, - "date_created": "2023-07-13T19:33:15.860Z", - "date_last_updated": "2023-07-13T19:33:15.860Z", - "date_of_expiration": "2023-07-13T19:33:15.860Z", + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -20670,30 +30822,29 @@ "date_approved": "2023-07-13T19:33:15.860Z", "money_release_date": "2023-07-13T19:33:15.860Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor 50.000.000,00 IVIP para a carteira iVip 0255.1405.5020.5792-40" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a160b27c088048a18b7ee38a", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { - "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689278842357/details/costs", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 50.000.000,00 IVIP para a carteira iVip 0255.1405.5020.5792-40", + "revision": "1022105b721546f8beeac31b", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689278842357/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689278842357, @@ -20704,18 +30855,31 @@ "overpaid_amount": 0, "installment_amount": 149517672, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "732b0ae78f4b46b0afa8466d", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689278842357", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -20724,38 +30888,46 @@ "original_amount": 149517672, "total_amount": 149517672, "id": 1689278842357, - "date_created": "2023-07-13T20:07:22.357Z", - "date_last_updated": "2023-07-13T20:07:22.357Z", - "date_of_expiration": "2024-01-13T20:07:22.357Z", + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1689278842357, - "description": "Investimento de 149.517.672,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 1/13/2024" + "history_id": 1689278842357 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c34a8006eb2b44a09bee07a3", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { - "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689295244660/details/costs", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689278842357/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 149.517.672,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 1/13/2024", + "revision": "5dc9b3eecab64b02ba7a896f", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689295244660/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689295244660, @@ -20766,18 +30938,31 @@ "overpaid_amount": 0, "installment_amount": 450820, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a4bf43fabc484623934f2797", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689295244660", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -20786,49 +30971,71 @@ "original_amount": 450820, "total_amount": 450820, "id": 1689295244660, - "date_created": "2023-07-14T00:40:44.660Z", - "date_last_updated": "2023-07-14T00:40:44.660Z", - "date_of_expiration": "2025-07-14T00:40:44.660Z", + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1689295244660, - "description": "Investimento de 450.820,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/13/2025" + "history_id": 1689295244660 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3317d068b6d54ec39f33d4d9", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { - "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243/details/costs", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689295244660/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 450.820,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/13/2025", + "revision": "d617bcb7eea7462fbce5c8b0", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } + }, + "revision": "07b735e0d4dc4992952495e1", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -20837,47 +31044,69 @@ "total_amount": 9396, "history_id": 1689350577243, "id": 1689350577243, - "date_created": "2023-07-14T16:02:57.243Z", - "date_last_updated": "2023-07-14T16:02:57.243Z", - "date_of_expiration": "2023-08-13T16:02:57.243Z", + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 9.396,00 para a carteira iVip 0255.1405.5020.5792-40" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5875821c3f01415194f5a3b6", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { - "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945/details/costs", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 9.396,00 para a carteira iVip 0255.1405.5020.5792-40", + "revision": "a920c9190d1b430fabd75f34", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } + }, + "revision": "8fc4d7fd5e41402a90a97794", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -20886,36 +31115,44 @@ "total_amount": 30010000, "history_id": 1690472510945, "id": 1690472510945, - "date_created": "2023-07-27T15:41:50.945Z", - "date_last_updated": "2023-07-27T15:41:50.945Z", - "date_of_expiration": "2023-07-27T15:41:50.945Z", + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", - "currency_id": "IVIP", - "description": "Deposito de um valor 30.010.000,00 IVIP para a carteira iVip 0255.1405.5020.5792-40" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "20003f2d8ed9465f81825dc8", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { - "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647/details/costs", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 30.010.000,00 IVIP para a carteira iVip 0255.1405.5020.5792-40", + "revision": "8caa3467e1974a7e9dbc74e5", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691081114647, "net_received_amount": 0, @@ -20925,18 +31162,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1691081114647" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7813a2d7e0114cd78ff64fd3", + "revision_nr": 1, + "created": 1701459383488, + "modified": 1701459383488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1691081114647", + "revision": "78d08023dda84d6c9b3571a3", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -20945,42 +31205,73 @@ "total_amount": 6001475, "id": 1691081114647, "history_id": 1691081114647, - "date_created": "2023-08-03T16:45:14.647Z", - "date_last_updated": "2023-08-03T16:45:14.647Z", - "date_of_expiration": "2023-09-03T16:45:14.646Z", + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 6.001.475,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8e50a3c777a642cab1cf8952", + "revision_nr": 1, + "created": 1701459383488, + "modified": 1701459383488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647/description", + "content": { + "type": "STRING", + "value": "Investimento de 6.001.475,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", + "revision": "c00df56d87b8401fad271d53", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 721200.99 + "amount": 721200.99, + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "792c5dd367164015a394b723", "revision_nr": 1, - "created": 1700748395474, - "modified": 1700748395474 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692462419697, "net_received_amount": 0, @@ -20990,18 +31281,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1692462419697" + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1cee37fb382e4890a9096876", + "revision_nr": 1, + "created": 1701459383488, + "modified": 1701459383488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1692462419697", + "revision": "5ac17c5517664b19acfa9a14", + "revision_nr": 1, + "created": 1701459383488, + "modified": 1701459383488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "836e4f72eda940209a304658", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -21010,9 +31334,18 @@ "total_amount": 23318832.01, "id": 1692462419697, "history_id": 1692462419697, - "date_created": "2023-08-19T16:26:59.697Z", - "date_last_updated": "2023-08-21T10:14:55.779Z", - "date_of_expiration": "2023-08-19T16:26:59.697Z", + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -21021,30 +31354,29 @@ "status_detail": "rejected", "money_release_date": "2023-08-21T10:14:55.779Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Saque de 23.318.832,01 IVIP para a carteira 0x4BA972D54bb60Db93749D2cf5c4e160a3dd735c8" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "14bec7050c55482d830db705", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { - "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053/details/costs", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 23.318.832,01 IVIP para a carteira 0x4BA972D54bb60Db93749D2cf5c4e160a3dd735c8", + "revision": "3d4297130cce432e9e4bd7d5", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693759701053, "net_received_amount": 0, @@ -21054,18 +31386,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1693759701053" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ee6b32040dd6449abf5f844b", + "revision_nr": 1, + "created": 1701459383488, + "modified": 1701459383488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1693759701053", + "revision": "7cfdd1a7ef25494f824768d9", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -21074,38 +31429,46 @@ "total_amount": 6121504.5, "id": "1693759701053", "history_id": "1693759701053", - "date_created": "2023-09-03T16:48:21.053Z", - "date_last_updated": "2023-09-03T16:48:21.053Z", - "date_of_expiration": "2023-09-03T16:48:21.053Z", + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 6.001.475,00 IVIP com um rendimento de +120.029,5 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c0a28187dc73488789687a53", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { - "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974/details/costs", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 6.001.475,00 IVIP com um rendimento de +120.029,5 IVIP (2,00%) - Y12XDT27", + "revision": "b2c5af534428473288796329", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693861899974, "net_received_amount": 0, @@ -21115,18 +31478,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1693861899974" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8e6e46c713414e29af81e2cb", + "revision_nr": 1, + "created": 1701459383488, + "modified": 1701459383488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1693861899974", + "revision": "ddfc1ab32aec4da490423997", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -21135,9 +31521,18 @@ "total_amount": 7836614, "id": "1693861899974", "history_id": "1693861899974", - "date_created": "2023-09-04T21:11:39.974Z", - "date_last_updated": "2023-10-04T13:04:00.162Z", - "date_of_expiration": "2023-10-04T21:11:39.973Z", + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -21146,44 +31541,55 @@ "status_detail": "cc_rejected_insufficient_staked_amount", "money_release_date": "2023-10-04T13:04:00.162Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Investimento de 7.836.614,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/10/2023 - Y12XDT27" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8e251ec291a54b7b88708a10", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { - "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-13T13:17:39.628Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 7.836.614,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/10/2023 - Y12XDT27", + "revision": "e42232928ffc41f680f37120", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { - "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/details/costs", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-13T13:17:39.628Z", + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } + }, + "revision": "41ccc27e5d0140aa84efa2c0", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694611059637, "net_received_amount": 0, @@ -21193,18 +31599,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694611059637" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "933986f80b404cbb8225d4e3", + "revision_nr": 1, + "created": 1701459383488, + "modified": 1701459383488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694611059637", + "revision": "770b701ab99f45868af7e8dc", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -21213,8 +31642,14 @@ "total_amount": 24582, "id": "1694611059637", "history_id": "1694611059637", - "date_created": "2023-09-13T13:17:39.637Z", - "date_last_updated": "2023-09-13T13:18:06.754Z", + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21225,29 +31660,32 @@ "money_release_date": "2023-09-13T13:18:06.754Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 24.582,00 BRL para a carteira iVip 0255.1405.5020.5792-40" + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5df9751fc99b44b0be1e8203", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { - "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694612208335/details/costs", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 24.582,00 BRL para a carteira iVip 0255.1405.5020.5792-40", + "revision": "898444944a5b4c8da96e5d41", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694612208335/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694612208335, "net_received_amount": 0, @@ -21257,18 +31695,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694612208335" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "01c992283aec49cc93b6feeb", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694612208335/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694612208335", + "revision": "a3f058346670483c9676c4f9", + "revision_nr": 1, + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694612208335", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -21277,9 +31738,18 @@ "total_amount": 39021269, "id": "1694612208335", "history_id": "1694612208335", - "date_created": "2023-09-13T13:36:48.335Z", - "date_last_updated": "2023-09-13T13:36:48.335Z", - "date_of_expiration": "2023-09-13T13:36:48.335Z", + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -21288,41 +31758,42 @@ "description": "Compra de 39.021.269,00 IVIP por 24.582,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b70b6bbd34274cb6891a9807", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-13T15:48:27.989Z" + ".val": "2023-10-13T15:48:27.989Z", + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0ccaa53f66f84431a871a112", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694620107990, "net_received_amount": 0, @@ -21332,18 +31803,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694620107990" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "06c8c620e3a4412cb9a637fb", + "revision_nr": 1, + "created": 1701459383488, + "modified": 1701459383488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694620107990", + "revision": "c92a33296d6d42d580cba1c9", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -21352,8 +31846,14 @@ "total_amount": 168, "id": "1694620107990", "history_id": "1694620107990", - "date_created": "2023-09-13T15:48:27.990Z", - "date_last_updated": "2023-09-13T17:11:03.588Z", + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21364,29 +31864,32 @@ "money_release_date": "2023-09-13T17:11:03.588Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 168,00 BRL para a carteira iVip 0255.1405.5020.5792-40" + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "946fb360b42f4e23b69b440b", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { - "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694641684988/details/costs", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 168,00 BRL para a carteira iVip 0255.1405.5020.5792-40", + "revision": "6bff2e3a0f7a4a0c87d1c122", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694641684988/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694641684988, "net_received_amount": 0, @@ -21396,18 +31899,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694641684988" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8afd95f84cea4997b96b8e8d", + "revision_nr": 1, + "created": 1701459383488, + "modified": 1701459383488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694641684988/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694641684988", + "revision": "22e31cf79e174287b432e665", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694641684988", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -21416,9 +31942,18 @@ "total_amount": 258446, "id": "1694641684988", "history_id": "1694641684988", - "date_created": "2023-09-13T21:48:04.988Z", - "date_last_updated": "2023-09-13T21:48:04.988Z", - "date_of_expiration": "2023-09-13T21:48:04.988Z", + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -21427,31 +31962,43 @@ "description": "Compra de 258.446,00 IVIP por 168,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4105eded98bb469c80354cae", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 750000 + "amount": 750000, + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9198b5dd33b148b7b63957ff", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694692198880, "net_received_amount": 0, @@ -21461,18 +32008,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694692198880" + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "38da82ca3fb34872908d9b75", + "revision_nr": 1, + "created": 1701459383488, + "modified": 1701459383488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694692198880", + "revision": "8a1cc781255e485c9f1efebe", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "28920c0d3552400487a24d96", + "revision_nr": 1, + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -21481,9 +32061,18 @@ "total_amount": 24250000, "id": "1694692198880", "history_id": "1694692198880", - "date_created": "2023-09-14T11:49:58.880Z", - "date_last_updated": "2023-09-18T13:02:22.983Z", - "date_of_expiration": "2023-09-14T11:49:58.880Z", + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -21493,30 +32082,29 @@ "date_approved": "2023-09-18T13:02:22.983Z", "money_release_date": "2023-09-18T13:02:22.983Z", "money_release_status": "drawee", - "wasDebited": true, - "description": "Saque de 24.250.000,00 IVIP para a carteira 0xd3CF5Ea2Dcfb3c96d31AE10BA19cc4c7218b45b1" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7646ec0bc3284340b6036b95", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { - "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047/details/costs", + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 24.250.000,00 IVIP para a carteira 0xd3CF5Ea2Dcfb3c96d31AE10BA19cc4c7218b45b1", + "revision": "6fae6263700c4957a106d622", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696451540047, "net_received_amount": 0, @@ -21526,18 +32114,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1696451540047" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7ecbecfd5d32441bbbb5bffe", + "revision_nr": 1, + "created": 1701459383488, + "modified": 1701459383488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1696451540047", + "revision": "7b939d6f6a71493ba9bcca76", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -21547,155 +32158,225 @@ "total_amount": 8000000, "id": "1696451540047", "history_id": "1696451540047", - "date_created": "2023-10-04T20:32:20.047Z", - "date_last_updated": "2023-10-04T20:32:20.047Z", - "date_of_expiration": "2023-11-04T20:32:19.879Z", + "date_created": { + "type": 6, + "value": 1701459383488 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383488 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383488 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ba1b9e74c4ba4625acfd4ad8", + "revision_nr": 1, + "created": 1701459383488, + "modified": 1701459383488 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047/description", + "content": { + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "62cf39255d70495f9ada0f70", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8d54000d6a0840468345a567", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383488, + "modified": 1701459383488 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f1be0cdceb3047f8a632efe7", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-09-18T16:29:37.899Z" + "analysisRequested": "2023-09-18T16:29:37.899Z", + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2d12be8bf8b6427696c47737", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "36441252.50000000", "symbol": "IVIP", - "value": 4538.39 + "value": 4538.39, + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "089b5a3765944e82b2cab6b8", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8a07f318943646f2a8ae84b3", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1688773726146, "dateValidity": 1688773726146, "totalValue": 15.572371266885096, "currencyType": "USD", - "balancesModificacao": "2023-10-11T03:00:00.000Z" + "balancesModificacao": "2023-10-11T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "387119512a3249e8b386ba77", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "8958033.00000000", "symbol": "IVIP", - "value": 9273.73 + "value": 9273.73, + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "446f8b5eb11b428abec36850", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5b568d12d9c24b7c9eef512d", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } + }, + "revision": "69f98a4675964c15a1a95c23", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -21704,9 +32385,18 @@ "total_amount": 50, "history_id": 1681332472707, "id": 1681332472707, - "date_created": "2023-04-12T20:47:52.707Z", - "date_last_updated": "2023-04-12T21:15:14.528Z", - "date_of_expiration": "2023-05-12T20:47:52.707Z", + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -21714,41 +32404,54 @@ "date_approved": "2023-04-12T21:15:14.528Z", "money_release_date": "2023-04-12T21:15:14.528Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0266.8515.5320.8373-72" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "27fc8236e1194b4aad674ab3", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { - "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618/details/costs", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0266.8515.5320.8373-72", + "revision": "d90c42d3b32948af871861a3", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } + }, + "revision": "1749ee870d8349d3b81b092e", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -21757,9 +32460,18 @@ "total_amount": 350, "history_id": 1681334377618, "id": 1681334377618, - "date_created": "2023-04-12T21:19:37.618Z", - "date_last_updated": "2023-04-12T21:22:27.169Z", - "date_of_expiration": "2023-05-12T21:19:37.618Z", + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -21767,41 +32479,54 @@ "date_approved": "2023-04-12T21:22:27.169Z", "money_release_date": "2023-04-12T21:22:27.169Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 350,00 para a carteira iVip 0266.8515.5320.8373-72" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "97e4cec5d85f44cc92033c7c", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { - "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202/details/costs", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 350,00 para a carteira iVip 0266.8515.5320.8373-72", + "revision": "f5e77f8c1fcc4582b3e1f5b8", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } + }, + "revision": "b8df98c5932a43ef8e9a98f5", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -21810,9 +32535,18 @@ "total_amount": 200, "history_id": 1682092492202, "id": 1682092492202, - "date_created": "2023-04-21T15:54:52.202Z", - "date_last_updated": "2023-04-24T17:30:53.305Z", - "date_of_expiration": "2023-05-21T15:54:52.202Z", + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -21820,41 +32554,54 @@ "date_approved": "2023-04-24T17:30:53.305Z", "money_release_date": "2023-04-24T17:30:53.305Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0266.8515.5320.8373-72" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "92803d57cc7b470ea5371b3e", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { - "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521/details/costs", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0266.8515.5320.8373-72", + "revision": "d125523ecb654d6da6f768a4", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } + }, + "revision": "23242f291bd34008933718fa", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -21863,51 +32610,93 @@ "total_amount": 200, "history_id": 1682353441521, "id": 1682353441521, - "date_created": "2023-04-24T16:24:01.521Z", - "date_last_updated": "2023-04-24T16:24:01.521Z", - "date_of_expiration": "2023-05-24T16:24:01.521Z", + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0266.8515.5320.8373-72" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e7e042be34224af3abd8eabc", + "revision_nr": 1, + "created": 1701459383489, + "modified": 1701459383489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0266.8515.5320.8373-72", + "revision": "a5dddbdf9c984e8698e7934e", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 20 + "amount": 20, + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3c84119369da4f3591a57640", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "150613367bff4f4abe1f7d1f", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "21d2a10b062f4c249292fbe5", + "revision_nr": 1, + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -21916,37 +32705,45 @@ "total_amount": 1020, "history_id": 1682354342344, "id": 1682354342344, - "date_created": "2023-04-24T16:39:02.344Z", - "date_last_updated": "2023-04-24T16:39:02.344Z", - "date_of_expiration": "2023-05-24T16:39:02.344Z", + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0266.8515.5320.8373-72 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.020,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fa677a7217aa4518ab5bed50", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { - "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1684018921033/details/costs", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0266.8515.5320.8373-72 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.020,00", + "revision": "d320df1925ed4f759a7b3a15", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1684018921033/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684018921033, @@ -21957,18 +32754,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c01396d157084bd5937a474b", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1684018921033", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -21978,9 +32788,18 @@ "original_amount": 8647027, "total_amount": 8647027, "id": 1684018921033, - "date_created": "2023-05-13T23:02:01.033Z", - "date_last_updated": "2023-05-13T23:02:01.033Z", - "date_of_expiration": "2023-05-13T23:02:01.033Z", + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21989,38 +32808,41 @@ "history_id": 1684018921033, "description": "Compra de 8.647.027,00 IVIP por 1.600,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "10d9314977ee49bc8fecbe53", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } + }, + "revision": "919c5922dac045b88e984f69", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -22029,9 +32851,18 @@ "total_amount": 400, "history_id": 1689084265995, "id": 1689084265995, - "date_created": "2023-07-11T14:04:25.995Z", - "date_last_updated": "2023-07-13T19:05:38.556Z", - "date_of_expiration": "2023-08-10T14:04:25.995Z", + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -22039,41 +32870,54 @@ "date_approved": "2023-07-13T19:05:38.556Z", "money_release_date": "2023-07-13T19:05:38.556Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 400,00 para a carteira iVip 0266.8515.5320.8373-72" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d60a7b5b816f4d169272faf8", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { - "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542/details/costs", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0266.8515.5320.8373-72", + "revision": "c177be851e3a4663aee4de8b", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } + }, + "revision": "24f8ab5de1cd4f1488d35752", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -22082,36 +32926,44 @@ "total_amount": 401.02, "history_id": 1689095021542, "id": 1689095021542, - "date_created": "2023-07-11T17:03:41.542Z", - "date_last_updated": "2023-07-11T17:03:41.542Z", - "date_of_expiration": "2023-08-10T17:03:41.542Z", + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 401,02 para a carteira iVip 0266.8515.5320.8373-72" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9d6f4b901fb04fa389211ce5", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { - "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689275206669/details/costs", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 401,02 para a carteira iVip 0266.8515.5320.8373-72", + "revision": "5685f71f48b747b187de358d", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689275206669/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689275206669, @@ -22122,18 +32974,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ad4e6fc7718b4c339db5cd9f", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689275206669", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -22143,9 +33008,18 @@ "original_amount": 168630, "total_amount": 168630, "id": 1689275206669, - "date_created": "2023-07-13T19:06:46.669Z", - "date_last_updated": "2023-07-13T19:06:46.669Z", - "date_of_expiration": "2023-07-13T19:06:46.669Z", + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -22154,41 +33028,42 @@ "history_id": 1689275206669, "description": "Compra de 168.630,00 IVIP por 400,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f6976fa16d1e418b8ad57f59", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-28T03:07:50.124Z" + ".val": "2023-08-28T03:07:50.124Z", + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0f7f8946bbd74f48b645f3df", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690600070124, "net_received_amount": 0, @@ -22198,18 +33073,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690600070124" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4a65cd7aeab744bb8535a220", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690600070124", + "revision": "2ae6d35173d247bb849471d9", + "revision_nr": 1, + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -22218,8 +33116,14 @@ "total_amount": 30, "id": 1690600070124, "history_id": 1690600070124, - "date_created": "2023-07-29T03:07:50.124Z", - "date_last_updated": "2023-07-31T13:14:27.089Z", + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -22230,29 +33134,32 @@ "money_release_date": "2023-07-31T13:14:27.089Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 30,00 para a carteira iVip 0266.8515.5320.8373-72" + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "49907f3c4eb64727b658a972", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { - "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690822928470/details/costs", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 30,00 para a carteira iVip 0266.8515.5320.8373-72", + "revision": "20bdd1db1fcc4c8aacda7067", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690822928470/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690822928470, "net_received_amount": 0, @@ -22262,18 +33169,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690822928470" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f32e75beea3d410e89fdc93e", + "revision_nr": 1, + "created": 1701459383489, + "modified": 1701459383489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690822928470/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690822928470", + "revision": "d113dac2c0c74c27864d954e", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690822928470", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -22282,9 +33212,18 @@ "total_amount": 26363, "id": 1690822928470, "history_id": 1690822928470, - "date_created": "2023-07-31T17:02:08.470Z", - "date_last_updated": "2023-07-31T17:02:08.470Z", - "date_of_expiration": "2023-07-31T17:02:08.470Z", + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -22293,41 +33232,42 @@ "description": "Compra de 26.363,00 IVIP por 30,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "50add6cd8f054a4987f13288", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-31T17:04:16.427Z" + ".val": "2023-08-31T17:04:16.427Z", + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d7c8a1169cc040a587926eb1", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690909456427, "net_received_amount": 0, @@ -22337,18 +33277,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690909456427" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6870259b8ba4429d9e326757", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690909456427", + "revision": "16a6a4f55d5b47b78d390329", + "revision_nr": 1, + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -22357,8 +33320,14 @@ "total_amount": 100, "id": 1690909456427, "history_id": 1690909456427, - "date_created": "2023-08-01T17:04:16.427Z", - "date_last_updated": "2023-08-02T11:58:05.678Z", + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -22369,29 +33338,32 @@ "money_release_date": "2023-08-02T11:58:05.678Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 100,00 para a carteira iVip 0266.8515.5320.8373-72" + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6ad9b6f46f5545a4bb0f78bb", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { - "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690977815869/details/costs", + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 100,00 para a carteira iVip 0266.8515.5320.8373-72", + "revision": "4db2e8f9da80411e8d5814d3", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690977815869/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690977815869, "net_received_amount": 0, @@ -22401,18 +33373,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690977815869" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "199a735850a0469a88b02b62", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690977815869/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690977815869", + "revision": "50ef11bb17ba48a8877011a6", + "revision_nr": 1, + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690977815869", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -22421,9 +33416,18 @@ "total_amount": 116013, "id": 1690977815869, "history_id": 1690977815869, - "date_created": "2023-08-02T12:03:35.869Z", - "date_last_updated": "2023-08-02T12:03:35.869Z", - "date_of_expiration": "2023-08-02T12:03:35.869Z", + "date_created": { + "type": 6, + "value": 1701459383489 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383489 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383489 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -22432,42 +33436,54 @@ "description": "Compra de 116.013,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0f534f3262b64ec2a7b07045", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4cca7721a2e1455cbfa4d787", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 20 + "amount": 20, + "date_created": { + "type": 6, + "value": 1701459383490 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383490 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383490 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "79bffba63f3e4d9481855294", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383490, + "modified": 1701459383490 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1682354342344, "type": "emprestimo", @@ -22475,177 +33491,272 @@ "total_amount": 1020, "installments": 1, "installment_amount": 1020, - "date_created": "2023-04-24T16:39:02.344Z", + "date_created": { + "type": 6, + "value": 1701459383490 + }, "history_id": 1682354342344, "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0266.8515.5320.8373-72 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.020,00" + "date_last_updated": { + "type": 6, + "value": 1701459383490 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383490 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1aedc456610843409ee255b4", + "revision_nr": 1, + "created": 1701459383490, + "modified": 1701459383490 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0266.8515.5320.8373-72 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.020,00", + "revision": "eaf61527e78c474a8fc8968a", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383489, + "modified": 1701459383489 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "2e56a2f26ab64b98acd34b16", + "revision_nr": 1, + "created": 1701459383490, + "modified": 1701459383490 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cf54aa1ab693485bb0f09244", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383490, + "modified": 1701459383490 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b6addf2f2bf64b908806b814", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383490, + "modified": 1701459383490 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 1000, "limitUsed": 1000, "analysisRequested": "2023-04-21T15:53:57.620Z", - "lastReview": "2023-04-21T15:54:24.302Z" + "lastReview": "2023-04-21T15:54:24.302Z", + "date_created": { + "type": 6, + "value": 1701459383490 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383490 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383490 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8bb58d8460ed48fb9ebc60a1", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383490, + "modified": 1701459383490 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1681239500343, "dateValidity": 1681239500343, "totalValue": 405.92, "currencyType": "USD", - "balancesModificacao": "2023-10-02T03:00:00.000Z" + "balancesModificacao": "2023-10-02T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383490 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383490 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383490 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b3a6293c9ca3491fa42622cc", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383490, + "modified": 1701459383490 } }, { "path": "ivipcoin-db::__movement_wallet__/027193309143186410/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8c9ea1b6f3304035a1ba85b9", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383490, + "modified": 1701459383490 } }, { "path": "ivipcoin-db::__movement_wallet__/027193309143186410/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3ca69f32b7794383a6f2c907", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383490, + "modified": 1701459383490 } }, { "path": "ivipcoin-db::__movement_wallet__/027193309143186410", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678237675259, "dateValidity": 1678252075296, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383490 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383490 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383490 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d1c2f66ac8bf401e9f207eba", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383490, + "modified": 1701459383490 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383490 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383490 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383490 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "58301971222c44a285ebba58", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383490, + "modified": 1701459383490 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "7306097.00000000", "symbol": "IVIP", - "value": 2344.22 + "value": 2344.22, + "date_created": { + "type": 6, + "value": 1701459383490 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383490 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383490 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "876fe46ddc6c48e68a5b9559", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383490, + "modified": 1701459383490 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "62820b90c6324c79a3b50828", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383490, + "modified": 1701459383490 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383490 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383490 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383490 + } + }, + "revision": "9bca23ed205a407a920dc075", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383490, + "modified": 1701459383490 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -22654,9 +33765,18 @@ "total_amount": 1000, "history_id": 1684115687035, "id": 1684115687035, - "date_created": "2023-05-15T01:54:47.035Z", - "date_last_updated": "2023-05-15T02:11:26.172Z", - "date_of_expiration": "2023-06-14T01:54:47.035Z", + "date_created": { + "type": 6, + "value": 1701459383490 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383490 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383490 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -22664,41 +33784,54 @@ "date_approved": "2023-05-15T02:11:26.172Z", "money_release_date": "2023-05-15T02:11:26.172Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0275.3660.7098.8736-24" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a5ec34bb775d4402b7623980", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383490, + "modified": 1701459383490 } }, { - "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162/details/costs", + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0275.3660.7098.8736-24", + "revision": "abbb1f056bd54093a5d63a2f", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383490, + "modified": 1701459383490 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383490 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383490 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383490 + } + }, + "revision": "175141f8c3594ff9979dcb6a", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383490, + "modified": 1701459383490 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -22707,9 +33840,18 @@ "total_amount": 500, "history_id": 1684116712162, "id": 1684116712162, - "date_created": "2023-05-15T02:11:52.162Z", - "date_last_updated": "2023-05-15T02:12:17.988Z", - "date_of_expiration": "2023-06-14T02:11:52.162Z", + "date_created": { + "type": 6, + "value": 1701459383490 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383490 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383490 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -22717,30 +33859,29 @@ "date_approved": "2023-05-15T02:12:17.988Z", "money_release_date": "2023-05-15T02:12:17.988Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0275.3660.7098.8736-24" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d690924280f043c0ad2cd45e", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383490, + "modified": 1701459383490 } }, { - "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684625508072/details/costs", + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0275.3660.7098.8736-24", + "revision": "0f82c5001cda4b61b59685ef", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383490, + "modified": 1701459383490 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684625508072/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684625508072, @@ -22751,18 +33892,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0c1b6c79869f453a9e1c63d1", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684625508072", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -22772,9 +33926,18 @@ "original_amount": 7306097, "total_amount": 7306097, "id": 1684625508072, - "date_created": "2023-05-20T23:31:48.072Z", - "date_last_updated": "2023-05-20T23:31:48.072Z", - "date_of_expiration": "2023-05-20T23:31:48.072Z", + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -22783,38 +33946,41 @@ "history_id": 1684625508072, "description": "Compra de 7.306.097,00 IVIP por 1.500,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2866812ac4a34b33854ffadc", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } + }, + "revision": "0738ada601dc46329a74abe6", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -22823,47 +33989,69 @@ "total_amount": 7306097, "history_id": 1685398096730, "id": 1685398096730, - "date_created": "2023-05-29T22:08:16.730Z", - "date_last_updated": "2023-05-29T22:08:16.730Z", - "date_of_expiration": "2023-05-29T22:08:16.730Z", + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 7.306.097,00 IVIP para a carteira 0x5127C3d0B17433E2f03F2bdC96157ca9B00eeD8e" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "24a46b82d7c34caf833843a3", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { - "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765/details/costs", + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 7.306.097,00 IVIP para a carteira 0x5127C3d0B17433E2f03F2bdC96157ca9B00eeD8e", + "revision": "b3069686b21c4343a3ed45b1", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } + }, + "revision": "aae8d11279b348a1b46a27f5", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -22872,215 +34060,295 @@ "total_amount": 7306097, "history_id": 1685398151765, "id": 1685398151765, - "date_created": "2023-05-29T22:09:11.765Z", - "date_last_updated": "2023-05-29T22:09:11.765Z", - "date_of_expiration": "2023-05-29T22:09:11.765Z", + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 7.306.097,00 IVIP para a carteira 0x5127C3d0B17433E2f03F2bdC96157ca9B00eeD8e" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ef1dec94a56e4fb68f3ada6d", + "revision_nr": 1, + "created": 1701459383491, + "modified": 1701459383491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765/description", + "content": { + "type": "STRING", + "value": "Saque de 7.306.097,00 IVIP para a carteira 0x5127C3d0B17433E2f03F2bdC96157ca9B00eeD8e", + "revision": "8aeb45ba859c4396a083bd35", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0a2392593c904a039dfc2ae0", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cd598504d9834c0187205d76", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9d370098567e452b8afbc161", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684115568267, "dateValidity": 1684115568267, "totalValue": 301.2, "currencyType": "USD", - "balancesModificacao": 1689822000000 + "balancesModificacao": 1689822000000, + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6ed5bb01170948548244cd20", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/028175815433013172/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e1e830018f264c10b97fdb67", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/028175815433013172/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ae9a55f87ff3431d820e5d32", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/028175815433013172", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678161645477, "dateValidity": 1678176045916, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e0879a9aed6e4e1f9d849f42", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/028947617959504292/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ed1babefc64a44c29c484bd4", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/028947617959504292/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9145f024c53a47c480143722", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/028947617959504292", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678243619498, "dateValidity": 1678254419535, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8ec55e6962f9488fbd3d2dbd", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "19cb7c865d5b4f228dc83463", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0f4e597fc58049a4b7f24bf2", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3ce6df49826644038351b912", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-25T23:10:05.269Z" + ".val": "2023-08-25T23:10:05.269Z", + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "21be9efaa1f645e5bd884086", "revision_nr": 1, - "created": 1700748395475, - "modified": 1700748395475 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690413005269, "net_received_amount": 0, @@ -23090,18 +34358,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1690413005269" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "569b2f8cca9a4e57829968d5", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383491, + "modified": 1701459383491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1690413005269", + "revision": "12e3b1d683c84c8484ba86c9", + "revision_nr": 1, + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -23110,51 +34401,72 @@ "total_amount": 20, "id": 1690413005269, "history_id": 1690413005269, - "date_created": "2023-07-26T23:10:05.269Z", - "date_last_updated": "2023-07-26T23:10:05.269Z", + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0292.8722.8206.6813-90" + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "433e6afb854543fd9668950b", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383491, + "modified": 1701459383491 } }, { - "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-02T00:11:10.147Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0292.8722.8206.6813-90", + "revision": "de2cc53391f04b4e9070bb9d", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383491, + "modified": 1701459383491 } }, { - "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/details/costs", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-02T00:11:10.147Z", + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } + }, + "revision": "17fe3a79a87a492fabc399be", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691021470147, "net_received_amount": 0, @@ -23164,18 +34476,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691021470147" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dd87ccd0d4654cacb71ec667", + "revision_nr": 1, + "created": 1701459383491, + "modified": 1701459383491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691021470147", + "revision": "24e8d754dfac47d9beefc5a2", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -23184,51 +34519,72 @@ "total_amount": 20, "id": 1691021470147, "history_id": 1691021470147, - "date_created": "2023-08-03T00:11:10.147Z", - "date_last_updated": "2023-08-03T00:11:10.147Z", + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 20,00 para a carteira iVip 0292.8722.8206.6813-90" + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8366a20d423f4956a795f327", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383491, + "modified": 1701459383491 } }, { - "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-06T13:35:18.336Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 20,00 para a carteira iVip 0292.8722.8206.6813-90", + "revision": "df9309edd09c4b90a8c282db", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383491, + "modified": 1701459383491 } }, { - "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/details/costs", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-06T13:35:18.336Z", + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } + }, + "revision": "b9edd91628274567a86670ab", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691415318336, "net_received_amount": 0, @@ -23238,18 +34594,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691415318336" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1105eb39a8324d6d81679bbc", + "revision_nr": 1, + "created": 1701459383491, + "modified": 1701459383491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691415318336", + "revision": "cc6156de7ff54f328471f876", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -23258,8 +34637,14 @@ "total_amount": 30, "id": 1691415318336, "history_id": 1691415318336, - "date_created": "2023-08-07T13:35:18.336Z", - "date_last_updated": "2023-08-07T13:37:52.035Z", + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -23270,29 +34655,32 @@ "money_release_date": "2023-08-07T13:37:52.035Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 30,00 para a carteira iVip 0292.8722.8206.6813-90" + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "822ec8c57a08469585384be9", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383491, + "modified": 1701459383491 } }, { - "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415588273/details/costs", + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 30,00 para a carteira iVip 0292.8722.8206.6813-90", + "revision": "2031f60a41334ad3b4540492", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415588273/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691415588273, "net_received_amount": 0, @@ -23302,18 +34690,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691415588273" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2a0f0130c0094c01acc75e5f", + "revision_nr": 1, + "created": 1701459383491, + "modified": 1701459383491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415588273/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691415588273", + "revision": "e557b6944536448aa766c5f5", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415588273", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -23322,9 +34733,18 @@ "total_amount": 41845, "id": 1691415588273, "history_id": 1691415588273, - "date_created": "2023-08-07T13:39:48.273Z", - "date_last_updated": "2023-08-07T13:39:48.273Z", - "date_of_expiration": "2023-08-07T13:39:48.273Z", + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -23333,31 +34753,43 @@ "description": "Compra de 41.845,00 IVIP por 30,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "19937903a9e44eabb9d1b370", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 1255.35 + "amount": 1255.35, + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a9e5b52510964f71b258b119", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696141267349, "net_received_amount": 0, @@ -23367,18 +34799,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1696141267349" + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "067cf9b94fc44489968b6501", + "revision_nr": 1, + "created": 1701459383491, + "modified": 1701459383491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1696141267349", + "revision": "73c868e5130549c3b870b8f2", + "revision_nr": 1, + "created": 1701459383491, + "modified": 1701459383491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "744bf9030fcc456b84844b48", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -23388,9 +34853,18 @@ "total_amount": 40589.65, "id": "1696141267349", "history_id": "1696141267349", - "date_created": "2023-10-01T06:21:07.349Z", - "date_last_updated": "2023-10-03T00:32:36.722Z", - "date_of_expiration": "2023-10-01T06:21:07.349Z", + "date_created": { + "type": 6, + "value": 1701459383491 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383491 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383491 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -23400,34 +34874,56 @@ "date_approved": "2023-10-03T00:32:36.722Z", "money_release_date": "2023-10-03T00:32:36.722Z", "money_release_status": "drawee", - "wasDebited": true, - "description": "Saque de 40.589,65 IVIP para a carteira 0x8A01aF53Ea3A83B5f89C029a625Bc2B840aa0B17" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1303bb458c12436c963f1bb6", + "revision_nr": 1, + "created": 1701459383491, + "modified": 1701459383491 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/description", + "content": { + "type": "STRING", + "value": "Saque de 40.589,65 IVIP para a carteira 0x8A01aF53Ea3A83B5f89C029a625Bc2B840aa0B17", + "revision": "674920ee53f54d6096fb8aa9", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383491, + "modified": 1701459383491 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 1255.35 + "amount": 1255.35, + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "62b56228491c44849247a058", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696142296852, "net_received_amount": 0, @@ -23437,18 +34933,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1696142296852" + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6464181c80784c3789816018", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1696142296852", + "revision": "d9dce92435084c25bde40c02", + "revision_nr": 1, + "created": 1701459383495, + "modified": 1701459383495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "4a90e398ed35480c90e177e3", + "revision_nr": 1, + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -23458,9 +34987,18 @@ "total_amount": 40589.65, "id": "1696142296852", "history_id": "1696142296852", - "date_created": "2023-10-01T06:38:16.852Z", - "date_last_updated": "2023-10-03T00:46:17.233Z", - "date_of_expiration": "2023-10-01T06:38:16.852Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -23469,205 +35007,278 @@ "status_detail": "cc_rejected_insufficient_amount", "money_release_date": "2023-10-03T00:46:17.233Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Saque de 40.589,65 IVIP para a carteira 0x8A01aF53Ea3A83B5f89C029a625Bc2B840aa0B17" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bfed252a9dfc439aa5acfb89", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/description", + "content": { + "type": "STRING", + "value": "Saque de 40.589,65 IVIP para a carteira 0x8A01aF53Ea3A83B5f89C029a625Bc2B840aa0B17", + "revision": "d1b2dfe8dddf4d0ab85e31f9", + "revision_nr": 1, + "created": 1701459383494, + "modified": 1701459383494 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "16c4460cc3b04e3eb83d1e24", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390", "content": { - "type": 1, + "type": "OBJECT", "value": { "dateValidity": 1690386695913, - "balancesModificacao": "2023-10-14T03:00:00.000Z" + "balancesModificacao": "2023-10-14T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f3b57554cd7b40998c27e882", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/029673451892467508/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d2b626391fb04cd2b375fd92", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/029673451892467508/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9fddc3857952473794a4f0a7", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/029673451892467508", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678135581348, "dateValidity": 1678166670994, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c6685f8558cb4418ba03edce", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/030266248194021460/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1f5984638b2b4f7091ed655a", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/030266248194021460/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f538f5dfb003453eb99d94eb", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/030266248194021460", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684104956115, "dateValidity": 1684104956115, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d1d0f6a998b54f2da1f725de", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/031498453118469660/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7a65d2510d3044e992f3117d", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/031498453118469660/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a4a1747558df42d2bdce2e7e", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/031498453118469660", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1696478671880, "dateValidity": 1696478671929, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e11bf83c3d194304b3448f9e", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "5000843.00000000", "symbol": "IVIP", - "value": 622.94 + "value": 622.94, + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3aaf1e35ffa04be385af8ec4", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e4742f9c6a2d4587ad00217e", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } + }, + "revision": "f0549b2f44834573b192dd9c", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -23676,9 +35287,18 @@ "total_amount": 100, "history_id": 1688955478238, "id": 1688955478238, - "date_created": "2023-07-10T02:17:58.238Z", - "date_last_updated": "2023-07-10T15:24:43.693Z", - "date_of_expiration": "2023-08-09T02:17:58.238Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -23686,30 +35306,29 @@ "date_approved": "2023-07-10T15:24:43.693Z", "money_release_date": "2023-07-10T15:24:43.693Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0329.8017.0462.5356-52" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b35a3464c21246f398ea9c48", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { - "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1689002980878/details/costs", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0329.8017.0462.5356-52", + "revision": "37894ced86b54bae81fa196b", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1689002980878/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689002980878, @@ -23720,18 +35339,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f659a99dbf3b4de0a2a9382e", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1689002980878", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -23741,9 +35373,18 @@ "original_amount": 145670, "total_amount": 145670, "id": 1689002980878, - "date_created": "2023-07-10T15:29:40.878Z", - "date_last_updated": "2023-07-10T15:29:40.878Z", - "date_of_expiration": "2023-07-10T15:29:40.878Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -23752,41 +35393,42 @@ "history_id": 1689002980878, "description": "Compra de 145.670,00 IVIP por 100,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8b97676b717e422f9e8cf3a4", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-03T23:36:57.742Z" + ".val": "2023-09-03T23:36:57.742Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5403fe9bba5a4e5587f1a655", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691192217742, "net_received_amount": 0, @@ -23796,18 +35438,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691192217742" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "735e5a2652334f87abf18b2e", + "revision_nr": 1, + "created": 1701459383495, + "modified": 1701459383495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691192217742", + "revision": "f9091750198b4e3599690e4a", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -23816,8 +35481,14 @@ "total_amount": 356, "id": 1691192217742, "history_id": 1691192217742, - "date_created": "2023-08-04T23:36:57.742Z", - "date_last_updated": "2023-08-05T15:26:29.728Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -23828,29 +35499,32 @@ "money_release_date": "2023-08-05T15:26:29.728Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 356,00 para a carteira iVip 0329.8017.0462.5356-52" + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a7be605ee436438aab8c8c30", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { - "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691277371847/details/costs", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 356,00 para a carteira iVip 0329.8017.0462.5356-52", + "revision": "5a7a7d2bedd94595b898aad5", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691277371847/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691277371847, "net_received_amount": 0, @@ -23860,18 +35534,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691277371847" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "181334f967b641fd929978de", + "revision_nr": 1, + "created": 1701459383495, + "modified": 1701459383495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691277371847/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691277371847", + "revision": "b1524cefd7774d69ad4efaca", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691277371847", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -23880,9 +35577,18 @@ "total_amount": 505200, "id": 1691277371847, "history_id": 1691277371847, - "date_created": "2023-08-05T23:16:11.847Z", - "date_last_updated": "2023-08-05T23:16:11.847Z", - "date_of_expiration": "2023-08-05T23:16:11.847Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -23891,41 +35597,42 @@ "description": "Compra de 505.200,00 IVIP por 356,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "23227479468a45ffa32da85d", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-10T00:55:06.900Z" + ".val": "2023-09-10T00:55:06.900Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ec27faa8bf934f538f8901aa", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691715306900, "net_received_amount": 0, @@ -23935,18 +35642,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691715306900" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "958f119411c4494e91b5b3e2", + "revision_nr": 1, + "created": 1701459383495, + "modified": 1701459383495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691715306900", + "revision": "87bb57de588b4c76a1fc961d", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -23955,8 +35685,14 @@ "total_amount": 1800, "id": 1691715306900, "history_id": 1691715306900, - "date_created": "2023-08-11T00:55:06.900Z", - "date_last_updated": "2023-08-12T02:30:44.902Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -23967,29 +35703,32 @@ "money_release_date": "2023-08-12T02:30:44.902Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 1.800,00 para a carteira iVip 0329.8017.0462.5356-52" + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6b16a670136b4451b62f1d7b", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { - "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691847078457/details/costs", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 1.800,00 para a carteira iVip 0329.8017.0462.5356-52", + "revision": "5a4c8c7adf4f41e699c78d7d", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691847078457/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691847078457, "net_received_amount": 0, @@ -23999,18 +35738,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691847078457" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8540971e50584654807475b2", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691847078457/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691847078457", + "revision": "6c07ca1b9ec44cb886a5aa22", + "revision_nr": 1, + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691847078457", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -24019,9 +35781,18 @@ "total_amount": 3402797, "id": 1691847078457, "history_id": 1691847078457, - "date_created": "2023-08-12T13:31:18.457Z", - "date_last_updated": "2023-08-12T13:31:18.457Z", - "date_of_expiration": "2023-08-12T13:31:18.457Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -24030,41 +35801,42 @@ "description": "Compra de 3.402.797,00 IVIP por 1.800,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "67010ba1141f405593245ab4", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-26T00:10:05.865Z" + ".val": "2023-10-26T00:10:05.865Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0fca0ce59fdb472faf53abb0", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695687005865, "net_received_amount": 0, @@ -24074,18 +35846,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1695687005865" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "eb81e7f7d08e40f2892e78f8", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1695687005865", + "revision": "f6248952f572443f8566b23e", + "revision_nr": 1, + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -24095,8 +35890,14 @@ "total_amount": 647176, "id": "1695687005865", "history_id": "1695687005865", - "date_created": "2023-09-26T00:10:05.865Z", - "date_last_updated": "2023-09-26T00:24:38.463Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24107,43 +35908,58 @@ "money_release_date": "2023-09-26T00:24:38.463Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 647.176,00 IVIP para a carteira iVip 0329.8017.0462.5356-52" + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0bb0e1376294417dbc17d233", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { - "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-27T21:50:32.960Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 647.176,00 IVIP para a carteira iVip 0329.8017.0462.5356-52", + "revision": "becb4294ded746dd9f83c185", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { - "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/details/costs", + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-27T21:50:32.960Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } + }, + "revision": "3be4df4af38b4058b9034abc", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695851432961, "net_received_amount": 0, @@ -24153,18 +35969,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1695851432961" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d90e2eca40644b858c747ddc", + "revision_nr": 1, + "created": 1701459383495, + "modified": 1701459383495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1695851432961", + "revision": "fb3db1b64469400f89875813", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -24174,8 +36013,14 @@ "total_amount": 300000, "id": "1695851432961", "history_id": "1695851432961", - "date_created": "2023-09-27T21:50:32.961Z", - "date_last_updated": "2023-09-28T20:48:07.672Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24186,134 +36031,199 @@ "money_release_date": "2023-09-28T20:48:07.672Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 300.000,00 IVIP para a carteira iVip 0329.8017.0462.5356-52" + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5a1e2260406f4c158a943f39", + "revision_nr": 1, + "created": 1701459383495, + "modified": 1701459383495 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor 300.000,00 IVIP para a carteira iVip 0329.8017.0462.5356-52", + "revision": "e02a962adef941159aa65fd9", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "320843df5e254fea8cec6611", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c343bd78b33d4819ac026f30", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f5c4649d137e446fb70db065", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1688955354063, "dateValidity": 1688955354063, "totalValue": 20.42, "currencyType": "USD", - "balancesModificacao": "2023-10-10T03:00:00.000Z" + "balancesModificacao": "2023-10-10T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3a1c0a4d820a431bb4f0e823", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "62.42718182", "symbol": "BRL", - "value": 12.2 + "value": 12.2, + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0f7cfd1c176c48bc871562d4", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "302069023.00000000", "symbol": "IVIP", - "value": 32205.5 + "value": 32205.5, + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "44b32eff1d0d461aa9f72cc9", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d5610451a3f84e11b30c7303", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } + }, + "revision": "9d5b4d862480459f822f2f0e", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -24322,9 +36232,18 @@ "total_amount": 5510, "history_id": 1677785461525, "id": 1677785461525, - "date_created": "2023-03-02T19:31:01.525Z", - "date_last_updated": "2023-03-02T21:53:04.457Z", - "date_of_expiration": "2023-04-01T19:31:01.525Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -24332,41 +36251,54 @@ "date_approved": "2023-03-02T21:53:04.457Z", "money_release_date": "2023-03-02T21:53:04.457Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 5.510,00 para a carteira iVip 0331.9555.3972.0461-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3ccc74f83c154e40a094339c", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 5.510,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "f255cfd2e7104fe984bea8ab", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } + }, + "revision": "ede63b40dc8b410abc9eafc8", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -24375,9 +36307,18 @@ "total_amount": 6500, "history_id": 1677785378675, "id": 1677785378675, - "date_created": "2023-03-02T19:29:38.675Z", - "date_last_updated": "2023-03-02T21:54:03.971Z", - "date_of_expiration": "2023-04-01T19:29:38.675Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -24385,41 +36326,54 @@ "date_approved": "2023-03-02T21:54:03.971Z", "money_release_date": "2023-03-02T21:54:03.971Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 6.500,00 para a carteira iVip 0331.9555.3972.0461-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "420fdfd9954c46dc9a4ecf2e", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 6.500,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "94bb7e264fb84c1bb6bfd210", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } + }, + "revision": "2c8ae93cb7f844899daa0754", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -24428,9 +36382,18 @@ "total_amount": 7700, "history_id": 1677785194938, "id": 1677785194938, - "date_created": "2023-03-02T19:26:34.938Z", - "date_last_updated": "2023-03-02T21:54:58.990Z", - "date_of_expiration": "2023-04-01T19:26:34.938Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -24438,41 +36401,54 @@ "date_approved": "2023-03-02T21:54:58.990Z", "money_release_date": "2023-03-02T21:54:58.990Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 7.700,00 para a carteira iVip 0331.9555.3972.0461-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8a3b082f4d804140a1ad1860", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 7.700,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "8a5825aeeceb4aaf911a2486", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } + }, + "revision": "995c095f025c43ed9c6449cc", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -24481,9 +36457,18 @@ "total_amount": 9900, "history_id": 1677748547608, "id": 1677748547608, - "date_created": "2023-03-02T09:15:47.608Z", - "date_last_updated": "2023-03-02T12:35:22.227Z", - "date_of_expiration": "2023-04-01T09:15:47.608Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -24491,41 +36476,54 @@ "date_approved": "2023-03-02T12:35:22.227Z", "money_release_date": "2023-03-02T12:35:22.227Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 9.900,00 para a carteira iVip 0331.9555.3972.0461-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "65ca657b47bf4f7dba643bf2", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 9.900,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "3f2e075a42764b8e998d20a1", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } + }, + "revision": "055fefedb95949a9ac349cf4", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -24534,9 +36532,18 @@ "total_amount": 100, "history_id": 1677748489604, "id": 1677748489604, - "date_created": "2023-03-02T09:14:49.604Z", - "date_last_updated": "2023-03-02T11:11:15.426Z", - "date_of_expiration": "2023-04-01T09:14:49.604Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -24544,41 +36551,54 @@ "date_approved": "2023-03-02T11:11:15.426Z", "money_release_date": "2023-03-02T11:11:15.426Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0331.9555.3972.0461-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "515d79951f574806992e856e", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "7aa21c5390514060aa35805b", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } + }, + "revision": "5233ddefb6724828b1ea8fd0", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -24587,9 +36607,18 @@ "total_amount": 12000, "history_id": 1678472649293, "id": 1678472649293, - "date_created": "2023-03-10T18:24:09.293Z", - "date_last_updated": "2023-03-11T12:56:55.180Z", - "date_of_expiration": "2023-04-09T18:24:09.293Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -24597,30 +36626,29 @@ "date_approved": "2023-03-11T12:56:55.180Z", "money_release_date": "2023-03-11T12:56:55.180Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 12.000,00 para a carteira iVip 0331.9555.3972.0461-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ce27dd39ac634081933bec89", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153842542/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 12.000,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "f773faed9cb245659ef6d276", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153842542/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678153842542, @@ -24631,18 +36659,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "78328de7d26647b0a5fbdc68", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153842542", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -24652,9 +36693,18 @@ "original_amount": 71460340, "total_amount": 71460340, "id": 1678153842542, - "date_created": "2023-03-07T01:50:42.542Z", - "date_last_updated": "2023-03-07T01:50:42.542Z", - "date_of_expiration": "2023-03-07T01:50:42.542Z", + "date_created": { + "type": 6, + "value": 1701459383495 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383495 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383495 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24663,27 +36713,16 @@ "history_id": 1678153842542, "description": "Compra de 71460340 IVIP por 10000 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153902578/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "773118887b6245ae8fdd71ec", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383495, + "modified": 1701459383495 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153902578/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678153902578, @@ -24694,18 +36733,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4e5dfc52e7e94804bedbe854", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153902578", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -24715,9 +36767,18 @@ "original_amount": 71460340, "total_amount": 71460340, "id": 1678153902578, - "date_created": "2023-03-07T01:51:42.578Z", - "date_last_updated": "2023-03-07T01:51:42.578Z", - "date_of_expiration": "2023-03-07T01:51:42.578Z", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24726,86 +36787,163 @@ "history_id": 1678153902578, "description": "Compra de 71460340 IVIP por 10000 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5e74e1f70e534e3a86741a89", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 19.8 + "amount": 19.8, + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "37461b47f9ee425eb111171f", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f790605154e948b5aa944fbd", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "zBCfpF dcGeyDOq lplNs" + "account_holder_name": "zBCfpF dcGeyDOq lplNs", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7febfeb73a0d4899ba400669", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6e79b2080cb540e6b58821c5", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 2019.8, "overpaid_amount": 0, "installment_amount": 0, - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dXYrlNhAGUO1A+9+lduAQCBlb9UnugUAS6/hhmO7rto/uW1F/7fofXaPR0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v7z2jZf/c/f9b8/6Pm+v373+PTPB98+fb6x/brlrx/73x/0zKClpaWlpaWlpaWlpT1E2++PvT/kF6o9n/6Qladfz+M+8OV7GPcvKKtoaWlpaWlpaWlpaWkP0E4BZPm0l2P8+nGKBKc/u8eYV7hlEbjS0tLS0tLS0tLS0tLSXiVNN9oiKdhLdu8eQI6S7CtGWlpaWlpaWlpaWlpa2hDNpfivZO1S0eQj5Fz+kwo4aWlpaWlpaWlpaWlpj9UmfMnk1chy2TVXGuF2mbxN8SctLS0tLS0tLS0tLe0R2lba2v6Vf9qqu46WlpaWlpaWlpaWlvbb2nxNYyDH/PeLGSa13y1Hm6MkD7cWWlpaWlpaWlpaWlrab2tTC9v0pLHtfKtVl2VySTrulNgbq2QfLS0tLS0tLS0tLS3tt7VT+9u9Z21KANa9a2lw5P2h+3rOZTw55rJNWlpaWlpaWlpaWlraL2una3pFPtD1nEOSTpWm/1/PBODIn77EvLS0tLS0tLS0tLS0tN/TjpJ+S6uwU4ZuemOBLq5pl/b+aLS0tLS0tLS0tLS0tF/XpldsSiqn371WTpaodNqbndrkxm6mCi0tLS0tLS0tLS0t7de09xCxlfkiOcas8d9UL5mb49rmHblrjpaWlpaWlpaWlpaW9gBtCd/aCrCINpdFkymyXJ6lfHOdlpaWlpaWlpaWlpb2JO2Uq/vpaMi7dpRRk6X+spcItOzIbj/JRdLS0tLS0tLS0tLS0n5W2zZJvNwNV2PC+//qCoA0LjLHmLS0tLS0tLS0tLS0tEdpy3jHviqGHOXdZb1aiglb0Kap/qOlglBaWlpaWlpaWlpaWtova6d7U05vSZkiwU0UeZUD5RGS/aXqkpaWlpaWlpaWlpaW9nva0v6WEntXHiGZai03C9RqKPm2ho2WlpaWlpaWlpaWlvYcbc/LrsuTrpziy5NGaqBZTt/L9P+XqktaWlpaWlpaWlpaWtqvaROl9MUtE3ujRKDpAUlR8GlYCi0tLS0tLS0tLS0t7QHagppCv0cRZh4IWfdXp1O93XKVp9DS0tLS0tLS0tLS0p6jDRm1lpNuNSW31KaCy1J1uSv+pKWlpaWlpaWlpaWlPUJb/qrnOftTyLlcXZ3mlZTxk/WhZZsALS0tLS0tLS0tLS3tUdo8lqTns2wqMXc9dSlIXQ75p6WlpaWlpaWlpaWlPVN7ldAvxXUTr3S0PUb2/3SZWzkGLS0tLS0tLS0tLS3tOdpR+t1K91oLG9Pa6hVVkaozU/RaZpjQ0tLS0tLS0tLS0tIeoM39blO95DT3Mc0rqTNHSjVlz5Wd6b20tLS0tLS0tLS0tLQnaWurW3ltK0FlPlp6XsrzLSLGPMOElpaWlpaWlpaWlpb229rlfJGUtSvk1Bw3GVvJB26a6HqYk0JLS0tLS0tLS0tLS/t1ba2cXObl7u6pOS5FgmlSZMtVnMuIlpaWlpaWlpaWlpaW9vvaRdZuChYnVA4ql0nB6S+ubbT5NqWElpaWlpaWlpaWlpb2e9rUx5YKJDcx4Xj+r+cg9R5A1igyrxSgpaWlpaWlpaWlpaX9traUWS6u6SGJvOyaW+YDN++jpaWlpaWlpaWlpaU9RZvLLBfvyd1wo0DTerX0jlLFOWIXHi0tLS0tLS0tLS0t7ee1U/ptOX2kLFVLEWjfxKebYZJtnQCkpaWlpaWlpaWlpaU9QFvjxFD9WB/c37J7m0g1zUT5YRRJS0tLS0tLS0tLS0v7Ne1bH1vLYyCXJ97XX07FlfngtLS0tLS0tLS0tLS052jHZgt2nvFYX5bSedNxN+f7napLWlpaWlpaWlpaWlrar2lLDq5WRG4Sdi1QFrwSWdaqy5JQpKWlpaWlpaWlpaWlPUVbCh/rWaZPl0WTG/x0Xw8ZxBEHo9DS0tLS0tLS0tLS0h6kTbFeKZqclq/1cJb2tndtuWQ7jEOhpaWlpaWlpaWlpaX9vHafb0sz+jdh6JUnkkxnfqv7pKWlpaWlpaWlpaWlPUWbSyUXxZClYa6H7F6NRcuXcYU838gtdrS0tLS0tLS0tLS0tF/X3tvfphLIGuaVAsnJvZtD8tYN18PbaGlpaWlpaWlpaWlpz9PmcZFpFfbIQyLvb6y35GTfFcLQTktLS0tLS0tLS0tLe5J2CuRSgWTuWUvNbHXcSG62u2KFZfu9GlFaWlpaWlpaWlpaWtr/vbaQW3hSihh7WAEwvbFtppQU9/jJlBJaWlpaWlpaWlpaWtrPapcj9q9V7Nie/XPXKgJdTvrvscIyNerR0tLS0tLS0tLS0tIeoJ0qLFtegJ0H/9fRIiWdVysxy1VThrS0tLS0tLS0tLS0tEdoy8vGWxHmstby3ttW037LuDMFrqsokpaWlpaWlpaWlpaW9rPaVvZX50kj16qjrb0FhjmhuBuHQktLS0tLS0tLS0tLe4Q2XVMSLy1Gm+6bQs7i6XkzdgpX36suaWlpaWlpaWlpaWlpP6XNoV/tXiuVk6lYsxftJoqsYWM5KS0tLS0tLS0tLS0t7RHangPItGMtzYxMUWRpmOur4srfjiJpaWlpaWlpaWlpaWk/qU2RYH5F3aKW4skQCbbN19Jyix0tLS0tLS0tLS0tLe3B2mWn2uO+zVl2Ryux429m92hpaWlpaWlpaWlpaU/Rpictt6ON5xrtUU41FVwuZ0a+zFShpaWlpaWlpaWlpaX9pDbhSw1lQtUGt2Vx5XL3deFdtLS0tLS0tLS0tLS0Z2lr4ePkya1u1zNX11bbsqd03iizJZfrtmlpaWlpaWlpaWlpaY/Q/vcvWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWtp/TPsHWTbkPnmLk88AAAAASUVORK5CYII=", - "qr_code": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654072019.805802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13128133836304AC44", - "ticket_url": "https://www.mercadopago.com.br/sandbox/payments/1312813383/ticket?caller_id=1310149122&hash=8e6c1cd1-3025-43b0-8279-4a0f2e9a7e7b" + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c0a84c3b4d584928b46f3414", + "revision_nr": 1, + "created": 1701459383496, + "modified": 1701459383496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dXYrlNhAGUO1A+9+lduAQCBlb9UnugUAS6/hhmO7rto/uW1F/7fofXaPR0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v7z2jZf/c/f9b8/6Pm+v373+PTPB98+fb6x/brlrx/73x/0zKClpaWlpaWlpaWlpT1E2++PvT/kF6o9n/6Qladfz+M+8OV7GPcvKKtoaWlpaWlpaWlpaWkP0E4BZPm0l2P8+nGKBKc/u8eYV7hlEbjS0tLS0tLS0tLS0tLSXiVNN9oiKdhLdu8eQI6S7CtGWlpaWlpaWlpaWlpa2hDNpfivZO1S0eQj5Fz+kwo4aWlpaWlpaWlpaWlpj9UmfMnk1chy2TVXGuF2mbxN8SctLS0tLS0tLS0tLe0R2lba2v6Vf9qqu46WlpaWlpaWlpaWlvbb2nxNYyDH/PeLGSa13y1Hm6MkD7cWWlpaWlpaWlpaWlrab2tTC9v0pLHtfKtVl2VySTrulNgbq2QfLS0tLS0tLS0tLS3tt7VT+9u9Z21KANa9a2lw5P2h+3rOZTw55rJNWlpaWlpaWlpaWlraL2una3pFPtD1nEOSTpWm/1/PBODIn77EvLS0tLS0tLS0tLS0tN/TjpJ+S6uwU4ZuemOBLq5pl/b+aLS0tLS0tLS0tLS0tF/XpldsSiqn371WTpaodNqbndrkxm6mCi0tLS0tLS0tLS0t7de09xCxlfkiOcas8d9UL5mb49rmHblrjpaWlpaWlpaWlpaW9gBtCd/aCrCINpdFkymyXJ6lfHOdlpaWlpaWlpaWlpb2JO2Uq/vpaMi7dpRRk6X+spcItOzIbj/JRdLS0tLS0tLS0tLS0n5W2zZJvNwNV2PC+//qCoA0LjLHmLS0tLS0tLS0tLS0tEdpy3jHviqGHOXdZb1aiglb0Kap/qOlglBaWlpaWlpaWlpaWtova6d7U05vSZkiwU0UeZUD5RGS/aXqkpaWlpaWlpaWlpaW9nva0v6WEntXHiGZai03C9RqKPm2ho2WlpaWlpaWlpaWlvYcbc/LrsuTrpziy5NGaqBZTt/L9P+XqktaWlpaWlpaWlpaWtqvaROl9MUtE3ujRKDpAUlR8GlYCi0tLS0tLS0tLS0t7QHagppCv0cRZh4IWfdXp1O93XKVp9DS0tLS0tLS0tLS0p6jDRm1lpNuNSW31KaCy1J1uSv+pKWlpaWlpaWlpaWlPUJb/qrnOftTyLlcXZ3mlZTxk/WhZZsALS0tLS0tLS0tLS3tUdo8lqTns2wqMXc9dSlIXQ75p6WlpaWlpaWlpaWlPVN7ldAvxXUTr3S0PUb2/3SZWzkGLS0tLS0tLS0tLS3tOdpR+t1K91oLG9Pa6hVVkaozU/RaZpjQ0tLS0tLS0tLS0tIeoM39blO95DT3Mc0rqTNHSjVlz5Wd6b20tLS0tLS0tLS0tLQnaWurW3ltK0FlPlp6XsrzLSLGPMOElpaWlpaWlpaWlpb229rlfJGUtSvk1Bw3GVvJB26a6HqYk0JLS0tLS0tLS0tLS/t1ba2cXObl7u6pOS5FgmlSZMtVnMuIlpaWlpaWlpaWlpaW9vvaRdZuChYnVA4ql0nB6S+ubbT5NqWElpaWlpaWlpaWlpb2e9rUx5YKJDcx4Xj+r+cg9R5A1igyrxSgpaWlpaWlpaWlpaX9traUWS6u6SGJvOyaW+YDN++jpaWlpaWlpaWlpaU9RZvLLBfvyd1wo0DTerX0jlLFOWIXHi0tLS0tLS0tLS0t7ee1U/ptOX2kLFVLEWjfxKebYZJtnQCkpaWlpaWlpaWlpaU9QFvjxFD9WB/c37J7m0g1zUT5YRRJS0tLS0tLS0tLS0v7Ne1bH1vLYyCXJ97XX07FlfngtLS0tLS0tLS0tLS052jHZgt2nvFYX5bSedNxN+f7napLWlpaWlpaWlpaWlrar2lLDq5WRG4Sdi1QFrwSWdaqy5JQpKWlpaWlpaWlpaWlPUVbCh/rWaZPl0WTG/x0Xw8ZxBEHo9DS0tLS0tLS0tLS0h6kTbFeKZqclq/1cJb2tndtuWQ7jEOhpaWlpaWlpaWlpaX9vHafb0sz+jdh6JUnkkxnfqv7pKWlpaWlpaWlpaWlPUWbSyUXxZClYa6H7F6NRcuXcYU838gtdrS0tLS0tLS0tLS0tF/X3tvfphLIGuaVAsnJvZtD8tYN18PbaGlpaWlpaWlpaWlpz9PmcZFpFfbIQyLvb6y35GTfFcLQTktLS0tLS0tLS0tLe5J2CuRSgWTuWUvNbHXcSG62u2KFZfu9GlFaWlpaWlpaWlpaWtr/vbaQW3hSihh7WAEwvbFtppQU9/jJlBJaWlpaWlpaWlpaWtrPapcj9q9V7Nie/XPXKgJdTvrvscIyNerR0tLS0tLS0tLS0tIeoJ0qLFtegJ0H/9fRIiWdVysxy1VThrS0tLS0tLS0tLS0tEdoy8vGWxHmstby3ttW037LuDMFrqsokpaWlpaWlpaWlpaW9rPaVvZX50kj16qjrb0FhjmhuBuHQktLS0tLS0tLS0tLe4Q2XVMSLy1Gm+6bQs7i6XkzdgpX36suaWlpaWlpaWlpaWlpP6XNoV/tXiuVk6lYsxftJoqsYWM5KS0tLS0tLS0tLS0t7RHangPItGMtzYxMUWRpmOur4srfjiJpaWlpaWlpaWlpaWk/qU2RYH5F3aKW4skQCbbN19Jyix0tLS0tLS0tLS0tLe3B2mWn2uO+zVl2Ryux429m92hpaWlpaWlpaWlpaU/Rpictt6ON5xrtUU41FVwuZ0a+zFShpaWlpaWlpaWlpaX9pDbhSw1lQtUGt2Vx5XL3deFdtLS0tLS0tLS0tLS0Z2lr4ePkya1u1zNX11bbsqd03iizJZfrtmlpaWlpaWlpaWlpaY/Q/vcvWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWtp/TPsHWTbkPnmLk88AAAAASUVORK5CYII=", + "revision": "58011245f54b412e9d1afa36", + "revision_nr": 1, + "created": 1701459383496, + "modified": 1701459383496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654072019.805802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13128133836304AC44", + "revision": "4e063e0eb80d43ca8bfb53a1", + "revision_nr": 1, + "created": 1701459383496, + "modified": 1701459383496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/sandbox/payments/1312813383/ticket?caller_id=1310149122&hash=8e6c1cd1-3025-43b0-8279-4a0f2e9a7e7b", + "revision": "027d4cbff45042d9b2c5e66a", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "2c4d27b9fc29439584516835", + "revision_nr": 1, + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -24814,96 +36952,192 @@ "total_amount": 2019.8, "history_id": 1677379374499, "id": 1312813383, - "date_created": "2023-02-25T22:42:55.196-04:00", - "date_last_updated": "2023-02-25T22:42:55.196-04:00", - "date_of_expiration": "2023-02-26T22:42:54.972-04:00", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0331.9555.3972.0461-00" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d4eedb6cbf064c6d8ef988b0", + "revision_nr": 1, + "created": 1701459383496, + "modified": 1701459383496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "6242c2006b584292a52942bf", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 19.8 + "amount": 19.8, + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a2ece0f91ccc4568891d5e5f", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8f0d3ade1522401f9568798e", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "zBCfpF dcGeyDOq lplNs" + "account_holder_name": "zBCfpF dcGeyDOq lplNs", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1a80d3b734474d53a8c0b1e4", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "01f0453eb9e44c3ea8ec3f75", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 2019.8, "overpaid_amount": 0, "installment_amount": 0, - "qr_code": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654072019.805802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13128133936304E9E4", - "ticket_url": "https://www.mercadopago.com.br/sandbox/payments/1312813393/ticket?caller_id=1310149122&hash=ba695c70-a0ed-49a1-b87f-05224cd38f84", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2UlEQVR42u3dQY7kNgwFUN3A97+lb6BggmRSFj/l7mCAZOznRaHRLstPtSNIkWP+Rtc5aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXas1/Hjf8fPG0f+3o9F1lX+/N9ff5U3Xh47f658/nxlZdDS0tLS0tLS0tLS0r5Ee3wu+7nI36/9fH7xnGH1ed3uGCPfWLSJQUtLS0tLS0tLS0tL+xbtEkCWu0fZxj+PLZHg8thnjHmJNpffYcOgpaWlpaWlpaWlpaV9qbak6Wo6L7t3WcD0E9DS0tLS0tLS0tLS0tLGaC7FfyVrl4omLyFn+7Hk/mhpaWlpaWlpaWlpad+tTfhUUnlXQ9kEn4Uywsr/ukaUlpaWlpaWlpaWlpb2d9fW9iD/yccXu5TQ0tLS0tLS0tLS0tI+TZuv1IzkyHfbKHIJEZfeJDnkzBZaWlpaWlpaWlpaWtpna9MRtmWlM9Rk1n4liyc1Mkm7X57YZvdoaWlpaWlpaWlpaWmfp12Ov32eWZt3c9da1KYR5SjT1tJv00WRtLS0tLS0tLS0tLS0z9Mu1/KKvKF57UMyY+g3UjrvU3bmuzcxLy0tLS0tLS0tLS0t7fO0Z0m/bSZeH+Gxkf9qr+XL+63R0tLS0tLS0tLS0tI+XVumW+9LKpf/LSHnGXpLpq/UKs5lDsBNr0taWlpaWlpaWlpaWtoHaZdsXErTlRjzNv7Lh+PG5h351BwtLS0tLS0tLS0tLe0LtCV8Gzmn10abbdFk6j7S7qX8cgctLS0tLS0tLS0tLe1LtGnY9T7ZV86xLeS2/vIoEWiZkT1us3u0tLS0tLS0tLS0tLTP06a4bpbm/fk0XH32868jr/K5/AxdJgctLS0tLS0tLS0tLe27tDVDt5l/dnY7SAfcRkgZnlfjgj9HKgilpaWlpaWlpaWlpaV9tnbeDbZeCimvKbvm7pHnuKUCznLi7kvZPVpaWlpaWlpaWlpa2qdo0/G3VE051ms5x7bvzD9LZLnkCMuPRktLS0tLS0tLS0tL+zLtcY0E0yjsuqFytm12x+madF4aELCtuqSlpaWlpaWlpaWlpX2etlBmeL5N7C2DslM8uVt0KcJMj9HS0tLS0tLS0tLS0j5dW1AjlF4eoTCzxHqxF2QJNNuv1FVoaWlpaWlpaWlpaWnfo81R33Hdy7KNowxVWyip4LJUXbbFn5OWlpaWlpaWlpaWlvYl2vJUUwdZdtCMrk79Ssp8tnbRmmmkpaWlpaWlpaWlpaV9hTYda8tH4moqsDSdPMIbl/USvmluQktLS0tLS0tLS0tL+ybtLKFfiutK1eWZY8z0lUVWkn3n987u0dLS0tLS0tLS0tLSPkJbh6CV02sjTEwb3SuqIs9Yq9Fr6WFCS0tLS0tLS0tLS0v7Am0+77bUS6YizHP0V66mPLpEYX0vLS0tLS0tLS0tLS3tm7SjlFmW144SVOatpfVSk/8mYsw9TGhpaWlpaWlpaWlpaZ+tbfuLpKxdGmK9RIzFOK75wGWBEV5+fDkXSUtLS0tLS0tLS0tL+whtE9e1ebny5Sb3lztFjlzF2Ua0tLS0tLS0tLS0tLS0z9emuG6ErpBLJeaxqb/MubrUnPLcFlzS0tLS0tLS0tLS0tK+R9u0d0z9HNuOJDkpOMP+moA0jxSgpaWlpaWlpaWlpaV9trZQbhuPlDLLVFd5loC0vOPYvI2WlpaWlpaWlpaWlvY92px5a96zRJZ5bNoyB2DmU25L6WVanpaWlpaWlpaWlpaW9mXaUlw5b5qHNKWXy7Mp93cp4EzlnX3VJS0tLS0tLS0tLS0t7UO1bTx5hADycnAth5y7ULJNFH45iqSlpaWlpaWlpaWlpX2a9u4c29g0hEzXvv4ytSUpRZi0tLS0tLS0tLS0tLTv0Z6bKdipXWR6WUrnLdvd7O87VZe0tLS0tLS0tLS0tLRP05YcXK2ILMvNsKtxxyuRZa26LAlFWlpaWlpaWlpaWlrat2hL4WNbf3lu+khm6BlCztrLP2UQaWlpaWlpaWlpaWlp36hNsV4pmqzD18pext3ctXbIdmiHQktLS0tLS0tLS0tL+3htzrelyHJ289mOLrKc224mcxOa0tLS0tLS0tLS0tLSvkKbSyWbYshyYO62038us5whz3fmI3a0tLS0tLS0tLS0tLRP134ef1tKIGuYVwokZzfYuvkxNqfhjvA2WlpaWlpaWlpaWlraV2jTELQ0VO3Ig9HSAOx9h5OS7KtBZR9F0tLS0tLS0tLS0tLSPk275OU+I8ua2EtH51KaLnU4yT3/Z5i0PWlpaWlpaWlpaWlpad+lPa8tSEbu219SfOmA21KnOTZdSjaLHrS0tLS0tLS0tLS0tO/SznCibamrTLHjuJ6fm9cayhFyf6PI2n4lXdUlLS0tLS0tLS0tLS3tY7XjWmaZmow0d/fdI9Nelh1sUoa0tLS0tLS0tLS0tLQv0JaX1b4hSxJvceezbaPEiTnubALXLoqkpaWlpaWlpaWlpaV9rHaU+dW508jsTrSNu8AwJxTP7omDlpaWlpaWlpaWlpb2Jdp0LUm83Idk5mzc58aPzSm3sujsxgLQ0tLS0tLS0tLS0tI+W5tDv3TKbamcnGVDS8R4F0XWsLHslJaWlpaWlpaWlpaW9hXaIwSQ+4+lpHJXolnC0JF7Rn45iqSlpaWlpaWlpaWlpX2kdlMlWXtB5raSlzA0RIIj/yxtCHvQ0tLS0tLS0tLS0tK+XduulCh3Hzv8t7N7tLS0tLS0tLS0tLS0L9C2K51rhNcPWistKec1idf0jLzpqUJLS0tLS0tLS0tLS/tIbcKXGsqEqgfc2uLKdvZ14U1aWlpaWlpaWlpaWtp3aWsSb/Hko27zmqsb3bTsXdVlSgXeVF3S0tLS0tLS0tLS0tI+Tfv/v2hpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpf5n2D0v667pa5ajGAAAAAElFTkSuQmCC" + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d76172e068c74f00890a44f2", + "revision_nr": 1, + "created": 1701459383496, + "modified": 1701459383496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654072019.805802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13128133936304E9E4", + "revision": "941575f65a0e41a88b694466", + "revision_nr": 1, + "created": 1701459383496, + "modified": 1701459383496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/sandbox/payments/1312813393/ticket?caller_id=1310149122&hash=ba695c70-a0ed-49a1-b87f-05224cd38f84", + "revision": "8e5e520575c640439b5a592d", + "revision_nr": 1, + "created": 1701459383496, + "modified": 1701459383496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2UlEQVR42u3dQY7kNgwFUN3A97+lb6BggmRSFj/l7mCAZOznRaHRLstPtSNIkWP+Rtc5aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXas1/Hjf8fPG0f+3o9F1lX+/N9ff5U3Xh47f658/nxlZdDS0tLS0tLS0tLS0r5Ee3wu+7nI36/9fH7xnGH1ed3uGCPfWLSJQUtLS0tLS0tLS0tL+xbtEkCWu0fZxj+PLZHg8thnjHmJNpffYcOgpaWlpaWlpaWlpaV9qbak6Wo6L7t3WcD0E9DS0tLS0tLS0tLS0tLGaC7FfyVrl4omLyFn+7Hk/mhpaWlpaWlpaWlpad+tTfhUUnlXQ9kEn4Uywsr/ukaUlpaWlpaWlpaWlpb2d9fW9iD/yccXu5TQ0tLS0tLS0tLS0tI+TZuv1IzkyHfbKHIJEZfeJDnkzBZaWlpaWlpaWlpaWtpna9MRtmWlM9Rk1n4liyc1Mkm7X57YZvdoaWlpaWlpaWlpaWmfp12Ov32eWZt3c9da1KYR5SjT1tJv00WRtLS0tLS0tLS0tLS0z9Mu1/KKvKF57UMyY+g3UjrvU3bmuzcxLy0tLS0tLS0tLS0t7fO0Z0m/bSZeH+Gxkf9qr+XL+63R0tLS0tLS0tLS0tI+XVumW+9LKpf/LSHnGXpLpq/UKs5lDsBNr0taWlpaWlpaWlpaWtoHaZdsXErTlRjzNv7Lh+PG5h351BwtLS0tLS0tLS0tLe0LtCV8Gzmn10abbdFk6j7S7qX8cgctLS0tLS0tLS0tLe1LtGnY9T7ZV86xLeS2/vIoEWiZkT1us3u0tLS0tLS0tLS0tLTP06a4bpbm/fk0XH32868jr/K5/AxdJgctLS0tLS0tLS0tLe27tDVDt5l/dnY7SAfcRkgZnlfjgj9HKgilpaWlpaWlpaWlpaV9tnbeDbZeCimvKbvm7pHnuKUCznLi7kvZPVpaWlpaWlpaWlpa2qdo0/G3VE051ms5x7bvzD9LZLnkCMuPRktLS0tLS0tLS0tL+zLtcY0E0yjsuqFytm12x+madF4aELCtuqSlpaWlpaWlpaWlpX2etlBmeL5N7C2DslM8uVt0KcJMj9HS0tLS0tLS0tLS0j5dW1AjlF4eoTCzxHqxF2QJNNuv1FVoaWlpaWlpaWlpaWnfo81R33Hdy7KNowxVWyip4LJUXbbFn5OWlpaWlpaWlpaWlvYl2vJUUwdZdtCMrk79Ssp8tnbRmmmkpaWlpaWlpaWlpaV9hTYda8tH4moqsDSdPMIbl/USvmluQktLS0tLS0tLS0tL+ybtLKFfiutK1eWZY8z0lUVWkn3n987u0dLS0tLS0tLS0tLSPkJbh6CV02sjTEwb3SuqIs9Yq9Fr6WFCS0tLS0tLS0tLS0v7Am0+77bUS6YizHP0V66mPLpEYX0vLS0tLS0tLS0tLS3tm7SjlFmW144SVOatpfVSk/8mYsw9TGhpaWlpaWlpaWlpaZ+tbfuLpKxdGmK9RIzFOK75wGWBEV5+fDkXSUtLS0tLS0tLS0tL+whtE9e1ebny5Sb3lztFjlzF2Ua0tLS0tLS0tLS0tLS0z9emuG6ErpBLJeaxqb/MubrUnPLcFlzS0tLS0tLS0tLS0tK+R9u0d0z9HNuOJDkpOMP+moA0jxSgpaWlpaWlpaWlpaV9trZQbhuPlDLLVFd5loC0vOPYvI2WlpaWlpaWlpaWlvY92px5a96zRJZ5bNoyB2DmU25L6WVanpaWlpaWlpaWlpaW9mXaUlw5b5qHNKWXy7Mp93cp4EzlnX3VJS0tLS0tLS0tLS0t7UO1bTx5hADycnAth5y7ULJNFH45iqSlpaWlpaWlpaWlpX2a9u4c29g0hEzXvv4ytSUpRZi0tLS0tLS0tLS0tLTv0Z6bKdipXWR6WUrnLdvd7O87VZe0tLS0tLS0tLS0tLRP05YcXK2ILMvNsKtxxyuRZa26LAlFWlpaWlpaWlpaWlrat2hL4WNbf3lu+khm6BlCztrLP2UQaWlpaWlpaWlpaWlp36hNsV4pmqzD18pext3ctXbIdmiHQktLS0tLS0tLS0tL+3htzrelyHJ289mOLrKc224mcxOa0tLS0tLS0tLS0tLSvkKbSyWbYshyYO62038us5whz3fmI3a0tLS0tLS0tLS0tLRP134ef1tKIGuYVwokZzfYuvkxNqfhjvA2WlpaWlpaWlpaWlraV2jTELQ0VO3Ig9HSAOx9h5OS7KtBZR9F0tLS0tLS0tLS0tLSPk275OU+I8ua2EtH51KaLnU4yT3/Z5i0PWlpaWlpaWlpaWlpad+lPa8tSEbu219SfOmA21KnOTZdSjaLHrS0tLS0tLS0tLS0tO/SznCibamrTLHjuJ6fm9cayhFyf6PI2n4lXdUlLS0tLS0tLS0tLS3tY7XjWmaZmow0d/fdI9Nelh1sUoa0tLS0tLS0tLS0tLQv0JaX1b4hSxJvceezbaPEiTnubALXLoqkpaWlpaWlpaWlpaV9rHaU+dW508jsTrSNu8AwJxTP7omDlpaWlpaWlpaWlpb2Jdp0LUm83Idk5mzc58aPzSm3sujsxgLQ0tLS0tLS0tLS0tI+W5tDv3TKbamcnGVDS8R4F0XWsLHslJaWlpaWlpaWlpaW9hXaIwSQ+4+lpHJXolnC0JF7Rn45iqSlpaWlpaWlpaWlpX2kdlMlWXtB5raSlzA0RIIj/yxtCHvQ0tLS0tLS0tLS0tK+XduulCh3Hzv8t7N7tLS0tLS0tLS0tLS0L9C2K51rhNcPWistKec1idf0jLzpqUJLS0tLS0tLS0tLS/tIbcKXGsqEqgfc2uLKdvZ14U1aWlpaWlpaWlpaWtp3aWsSb/Hko27zmqsb3bTsXdVlSgXeVF3S0tLS0tLS0tLS0tI+Tfv/v2hpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpf5n2D0v667pa5ajGAAAAAElFTkSuQmCC", + "revision": "90290caa72a54af3ad2d53cc", + "revision_nr": 1, + "created": 1701459383496, + "modified": 1701459383496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "4829ed193881426c9c8c07a4", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -24912,37 +37146,45 @@ "total_amount": 2019.8, "history_id": 1677379588878, "id": 1312813393, - "date_created": "2023-02-25T22:46:29.568-04:00", - "date_last_updated": "2023-02-25T22:46:29.568-04:00", - "date_of_expiration": "2023-02-26T22:46:29.346-04:00", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0331.9555.3972.0461-00" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7f568a2c70d64123984cb9dc", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679266944717/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "e2d9cb2da0074d00a802da68", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679266944717/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679266944717, @@ -24953,18 +37195,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4896c826a35a4b378ab80837", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679266944717", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -24974,9 +37229,18 @@ "original_amount": 126385600, "total_amount": 126385600, "id": 1679266944717, - "date_created": "2023-03-19T23:02:24.717Z", - "date_last_updated": "2023-03-19T23:02:24.717Z", - "date_of_expiration": "2023-03-19T23:02:24.717Z", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24985,42 +37249,65 @@ "history_id": 1679266944717, "description": "Compra de 126385600 IVIP por 21710 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "777a60b38b014f54ba8bda44", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 51.1 + "amount": 51.1, + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fae47540b2f34cc2b9c4befe", "revision_nr": 1, - "created": 1700748395476, - "modified": 1700748395476 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details", "content": { - "type": 1, + "type": "OBJECT", + "value": {}, + "revision": "75c028da218449cb8bdc76cf", + "revision_nr": 1, + "created": 1701459383496, + "modified": 1701459383496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details/costs", + "content": { + "type": "ARRAY", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e3cfcb291b764d8f982cfab2", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -25029,37 +37316,45 @@ "total_amount": 2606.1, "history_id": 1679852406395, "id": 1679852406395, - "date_created": "2023-03-26T17:40:06.395Z", - "date_last_updated": "2023-03-26T17:40:06.395Z", - "date_of_expiration": "2023-04-25T17:40:06.395Z", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 2.555,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.606,10" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9e0ca3c18bec4fc691db3476", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679872071598/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 2.555,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.606,10", + "revision": "05b55ec3ade44217aaa609c2", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679872071598/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679872071598, @@ -25070,18 +37365,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9c542c5e8ebe44a0ad29076d", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679872071598", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -25091,9 +37399,18 @@ "original_amount": 13606977, "total_amount": 13606977, "id": 1679872071598, - "date_created": "2023-03-26T23:07:51.598Z", - "date_last_updated": "2023-03-26T23:07:51.598Z", - "date_of_expiration": "2023-03-26T23:07:51.598Z", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -25102,42 +37419,65 @@ "history_id": 1679872071598, "description": "Compra de 13.606.977,00 IVIP por 2.555,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "888ffc20dd214fedb92147b5", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 52.2 + "amount": 52.2, + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8be06822ee214860a1fd96e7", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details", "content": { - "type": 1, + "type": "OBJECT", + "value": {}, + "revision": "844b6b9374c445c1b7d9c624", + "revision_nr": 1, + "created": 1701459383496, + "modified": 1701459383496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details/costs", + "content": { + "type": "ARRAY", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "69ea0ea082d34d1b8089313d", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -25146,48 +37486,70 @@ "total_amount": 2662.2, "history_id": 1682964262250, "id": 1682964262250, - "date_created": "2023-05-01T18:04:22.250Z", - "date_last_updated": "2023-05-01T18:04:22.250Z", - "date_of_expiration": "2023-05-31T18:04:22.250Z", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.662,20" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "adc484fe9cf14ae3b0a14b42", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.662,20", + "revision": "70082ebadc244a148f7f2674", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } + }, + "revision": "ccc93fa7b8034dfb8f27dc62", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -25196,9 +37558,18 @@ "total_amount": 2610, "history_id": 1682964678725, "id": 1682964678725, - "date_created": "2023-05-01T18:11:18.725Z", - "date_last_updated": "2023-05-01T18:19:36.565Z", - "date_of_expiration": "2023-05-31T18:11:18.725Z", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -25206,30 +37577,29 @@ "date_approved": "2023-05-01T18:19:36.565Z", "money_release_date": "2023-05-01T18:19:36.565Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bf3acd08f7d04257815eaa8e", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682965648718/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "5bd4b59b782a462380b16b70", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682965648718/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -25242,18 +37612,31 @@ "overpaid_amount": 0, "installment_amount": 2606.1, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ce08aa84a7644dd1a1ca214c", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682965648718", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -25264,49 +37647,71 @@ "total_amount": 2606.1, "id": 1682965648718, "contract_id": "1679852406395", - "date_created": "2023-05-01T18:27:28.718Z", - "date_last_updated": "2023-05-01T18:27:28.718Z", - "date_of_expiration": "2023-05-01T18:27:28.718Z", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1682965648718, - "description": "Pagamento de fatura 1 de 1 no valor de 2.606,10 BRL referente ao contrato 1679852406395" + "history_id": 1682965648718 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2748035b126e43e88c11cbce", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682965648718/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 1 no valor de 2.606,10 BRL referente ao contrato 1679852406395", + "revision": "5852d51e2f724bbf9988321e", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } + }, + "revision": "29e0eb3b5e3a4faf9fc02624", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -25315,9 +37720,18 @@ "total_amount": 50, "history_id": 1683077498849, "id": 1683077498849, - "date_created": "2023-05-03T01:31:38.849Z", - "date_last_updated": "2023-05-03T01:44:35.310Z", - "date_of_expiration": "2023-06-02T01:31:38.849Z", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -25325,30 +37739,29 @@ "date_approved": "2023-05-03T01:44:35.310Z", "money_release_date": "2023-05-03T01:44:35.310Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0331.9555.3972.0461-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b7bda1f564324905acfe8029", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078471570/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "00723265b543403db4ea652c", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078471570/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -25361,18 +37774,31 @@ "overpaid_amount": 0, "installment_amount": 2662.2, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d81b3dbdc831446a9ca55444", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078471570", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -25383,53 +37809,95 @@ "total_amount": 2662.2, "id": 1683078471570, "contract_id": "1682964262250", - "date_created": "2023-05-03T01:47:51.570Z", - "date_last_updated": "2023-05-03T01:47:51.570Z", - "date_of_expiration": "2023-05-03T01:47:51.570Z", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1683078471570, - "description": "Pagamento de fatura 1 de 1 no valor de 2.662,20 BRL referente ao contrato 1682964262250" + "history_id": 1683078471570 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6ebc77c4502a4c54a86e21b0", + "revision_nr": 1, + "created": 1701459383496, + "modified": 1701459383496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078471570/description", + "content": { + "type": "STRING", + "value": "Pagamento de fatura 1 de 1 no valor de 2.662,20 BRL referente ao contrato 1682964262250", + "revision": "d58f4b79cc2043a781466bd0", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300 + "amount": 3300, + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "69cf5083a2894895b311b83f", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details", "content": { - "type": 1, + "type": "OBJECT", + "value": {}, + "revision": "1d24218de0424e18954c77c9", + "revision_nr": 1, + "created": 1701459383496, + "modified": 1701459383496 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details/costs", + "content": { + "type": "ARRAY", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aa5cc52ed37644f3927fef5a", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -25438,37 +37906,45 @@ "total_amount": 13300, "history_id": 1683078539834, "id": 1683078539834, - "date_created": "2023-05-03T01:48:59.834Z", - "date_last_updated": "2023-05-03T01:48:59.834Z", - "date_of_expiration": "2023-06-02T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3656fea1b9d94b47a91bf03d", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684018958577/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "3b29db8a6d5a4af382962a19", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684018958577/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684018958577, @@ -25479,18 +37955,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d8a63a2998a641908f71e85f", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684018958577", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -25500,9 +37989,18 @@ "original_amount": 54049325, "total_amount": 54049325, "id": 1684018958577, - "date_created": "2023-05-13T23:02:38.577Z", - "date_last_updated": "2023-05-13T23:02:38.577Z", - "date_of_expiration": "2023-05-13T23:02:38.577Z", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -25511,27 +38009,16 @@ "history_id": 1684018958577, "description": "Compra de 54.049.325,00 IVIP por 10.001,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1f74b8f5bdb64d5c97240bb7", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684158157715/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684158157715/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684158157715, @@ -25542,18 +38029,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1b6274586e7a4e409651543c", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684158157715", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -25563,38 +38063,46 @@ "original_amount": 369625820, "total_amount": 369625820, "id": 1684158157715, - "date_created": "2023-05-15T13:42:37.715Z", - "date_last_updated": "2023-05-15T13:42:37.715Z", - "date_of_expiration": "2023-05-15T13:42:37.715Z", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIPAY", - "history_id": 1684158157715, - "description": "Compra de 369.625.820,00 IVIPAY por 36.962.582,00 IVIP estabilizando US$ 1.380,18" + "history_id": 1684158157715 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8335dba7469a4240a8a4f942", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924794730/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684158157715/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 369.625.820,00 IVIPAY por 36.962.582,00 IVIP estabilizando US$ 1.380,18", + "revision": "b881a771658248759133c8c3", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924794730/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1686924794730, @@ -25605,18 +38113,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ed9cb8ff0ff24263a6f1ee5f", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924794730", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -25626,38 +38147,46 @@ "original_amount": 3989184, "total_amount": 3989184, "id": 1686924794730, - "date_created": "2023-06-16T14:13:14.730Z", - "date_last_updated": "2023-06-16T14:13:14.730Z", - "date_of_expiration": "2023-06-16T14:13:14.730Z", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1686924794730, - "description": "Compra de 3.989.184,00 IVIP por 39.891.848,00 IVIPAY" + "history_id": 1686924794730 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a221ffa08d224819bc8183a9", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924859436/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924794730/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 3.989.184,00 IVIP por 39.891.848,00 IVIPAY", + "revision": "7daa4d979fc644d3a9cbdecd", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924859436/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1686924859436, @@ -25668,18 +38197,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fb686c3352d74a599acb92b1", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924859436", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -25689,49 +38231,71 @@ "original_amount": 35902602, "total_amount": 35902602, "id": 1686924859436, - "date_created": "2023-06-16T14:14:19.436Z", - "date_last_updated": "2023-06-16T14:14:19.436Z", - "date_of_expiration": "2023-06-16T14:14:19.436Z", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1686924859436, - "description": "Compra de 35.902.602,00 IVIP por 359.026.026,00 IVIPAY" + "history_id": 1686924859436 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fbbb7742846d421b8d09f76c", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924859436/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 35.902.602,00 IVIP por 359.026.026,00 IVIPAY", + "revision": "5178789c04344720aaed0b81", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } + }, + "revision": "9c4c0be09506429f9b674a1b", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -25740,9 +38304,18 @@ "total_amount": 1735, "history_id": 1688993449178, "id": 1688993449178, - "date_created": "2023-07-10T12:50:49.178Z", - "date_last_updated": "2023-07-10T20:43:20.593Z", - "date_of_expiration": "2023-08-09T12:50:49.178Z", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -25750,30 +38323,29 @@ "date_approved": "2023-07-10T20:43:20.593Z", "money_release_date": "2023-07-10T20:43:20.593Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.735,00 para a carteira iVip 0331.9555.3972.0461-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c6775b949a7846cab48fbdf8", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689023462249/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.735,00 para a carteira iVip 0331.9555.3972.0461-00", + "revision": "4388cc914bf14523b2d01914", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689023462249/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -25786,18 +38358,31 @@ "overpaid_amount": 0, "installment_amount": 1209.091, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7bbe49671e1745e5989e8fdd", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689023462249", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -25808,38 +38393,46 @@ "total_amount": 1209.091, "id": 1689023462249, "contract_id": "1683078539834", - "date_created": "2023-07-10T21:11:02.249Z", - "date_last_updated": "2023-07-10T21:11:02.249Z", - "date_of_expiration": "2023-07-10T21:11:02.249Z", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1689023462249, - "description": "Pagamento de fatura 1 de 11 no valor de 1.209,09 BRL referente ao contrato 1683078539834" + "history_id": 1689023462249 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f46646837cc0458bb7d79450", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689027294801/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689023462249/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 11 no valor de 1.209,09 BRL referente ao contrato 1683078539834", + "revision": "809a25eea4b448008b961051", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689027294801/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689027294801, @@ -25850,18 +38443,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e70ee6bef6af42759d816246", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689027294801", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -25871,9 +38477,18 @@ "original_amount": 23038, "total_amount": 23038, "id": 1689027294801, - "date_created": "2023-07-10T22:14:54.801Z", - "date_last_updated": "2023-07-10T22:14:54.801Z", - "date_of_expiration": "2023-07-10T22:14:54.801Z", + "date_created": { + "type": 6, + "value": 1701459383496 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383496 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -25882,27 +38497,16 @@ "history_id": 1689027294801, "description": "Compra de 23.038,00 IVIP por 26,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1c2682cffe7e4cccb259bfaa", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689119838635/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383496, + "modified": 1701459383496 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689119838635/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689119838635, @@ -25913,18 +38517,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0196f3cd899e47b897b8dc3b", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689119838635", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -25934,9 +38551,18 @@ "original_amount": 10892, "total_amount": 10892, "id": 1689119838635, - "date_created": "2023-07-11T23:57:18.635Z", - "date_last_updated": "2023-07-11T23:57:18.635Z", - "date_of_expiration": "2023-07-11T23:57:18.635Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -25945,27 +38571,16 @@ "history_id": 1689119838635, "description": "Compra de 10.892,00 IVIP por 20,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "faa30a77d5354e8c9a54e98a", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689121233961/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689121233961/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689121233961, @@ -25976,18 +38591,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "67841a2f1fe0465985131a2e", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689121233961", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -25997,9 +38625,18 @@ "original_amount": 44060, "total_amount": 44060, "id": 1689121233961, - "date_created": "2023-07-12T00:20:33.961Z", - "date_last_updated": "2023-07-12T00:20:33.961Z", - "date_of_expiration": "2023-07-12T00:20:33.961Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -26008,27 +38645,16 @@ "history_id": 1689121233961, "description": "Compra de 44.060,00 IVIP por 80,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f93cf41c086a472899ef9e45", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689164526021/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689164526021/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689164526021, @@ -26039,18 +38665,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2cbb6452364b448ca1b5fe4b", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689164526021", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -26060,9 +38699,18 @@ "original_amount": 9455, "total_amount": 9455, "id": 1689164526021, - "date_created": "2023-07-12T12:22:06.021Z", - "date_last_updated": "2023-07-12T12:22:06.021Z", - "date_of_expiration": "2023-07-12T12:22:06.021Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -26071,27 +38719,16 @@ "history_id": 1689164526021, "description": "Compra de 9.455,00 IVIP por 20,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689704009270/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1fb1ee6c10424e4ea016e423", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689704009270/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689704009270, @@ -26102,18 +38739,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "97cdb8dcec964736afefbc31", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689704009270", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -26123,9 +38773,18 @@ "original_amount": 12818, "total_amount": 12818, "id": 1689704009270, - "date_created": "2023-07-18T18:13:29.270Z", - "date_last_updated": "2023-07-18T18:13:29.270Z", - "date_of_expiration": "2023-07-18T18:13:29.270Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -26134,27 +38793,16 @@ "history_id": 1689704009270, "description": "Compra de 12.818,00 IVIP por 20,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245422296/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bc7df93b302748cc80cf0ad6", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245422296/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1690245422296, @@ -26165,18 +38813,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6884ca916a3c4d7ab86f00c5", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245422296", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -26186,9 +38847,18 @@ "original_amount": 82033, "total_amount": 82033, "id": 1690245422296, - "date_created": "2023-07-25T00:37:02.296Z", - "date_last_updated": "2023-07-25T00:37:02.296Z", - "date_of_expiration": "2023-07-25T00:37:02.296Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -26197,27 +38867,16 @@ "history_id": 1690245422296, "description": "Compra de 82.033,00 IVIP por 100,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245659912/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5561619d28814580a73c5253", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245659912/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1690245659912, @@ -26228,18 +38887,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "eac332d8bc294d699814b0a8", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245659912", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -26249,9 +38921,18 @@ "original_amount": 16360, "total_amount": 16360, "id": 1690245659912, - "date_created": "2023-07-25T00:40:59.912Z", - "date_last_updated": "2023-07-25T00:40:59.912Z", - "date_of_expiration": "2023-07-25T00:40:59.912Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -26260,27 +38941,16 @@ "history_id": 1690245659912, "description": "Compra de 16.360,00 IVIP por 20,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690477890638/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f2d4f472d191463891de3f4e", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690477890638/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690477890638, "net_received_amount": 0, @@ -26290,18 +38960,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690477890638" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f47b25cc97674cdaa70bb7e3", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690477890638/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690477890638", + "revision": "1bddb5bda45e474299784f87", + "revision_nr": 1, + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690477890638", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -26310,9 +39003,18 @@ "total_amount": 23044, "id": 1690477890638, "history_id": 1690477890638, - "date_created": "2023-07-27T17:11:30.638Z", - "date_last_updated": "2023-07-27T17:11:30.638Z", - "date_of_expiration": "2023-07-27T17:11:30.638Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -26321,27 +39023,16 @@ "description": "Compra de 23.044,00 IVIP por 30,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4457b293ae2a4c0f88dd0371", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690581074985/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690581074985/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690581074985, "net_received_amount": 0, @@ -26351,18 +39042,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690581074985" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8c493d72524641f2b631ee52", + "revision_nr": 1, + "created": 1701459383497, + "modified": 1701459383497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690581074985/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690581074985", + "revision": "52f8185825284da691b276d5", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690581074985", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -26371,9 +39085,18 @@ "total_amount": 103259, "id": 1690581074985, "history_id": 1690581074985, - "date_created": "2023-07-28T21:51:14.985Z", - "date_last_updated": "2023-07-28T21:51:14.985Z", - "date_of_expiration": "2023-07-28T21:51:14.985Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -26382,27 +39105,16 @@ "description": "Compra de 103.259,00 IVIP por 110,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "57bc106fd8b54d06a4f08e70", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690912306732/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690912306732/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690912306732, "net_received_amount": 0, @@ -26412,18 +39124,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690912306732" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5fc6bd27f4ee4eccba3b15e2", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690912306732/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690912306732", + "revision": "fb22f5aa3a8546f09ad7ac13", + "revision_nr": 1, + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690912306732", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -26432,9 +39167,18 @@ "total_amount": 55731, "id": 1690912306732, "history_id": 1690912306732, - "date_created": "2023-08-01T17:51:46.732Z", - "date_last_updated": "2023-08-01T17:51:46.732Z", - "date_of_expiration": "2023-08-01T17:51:46.732Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -26443,27 +39187,16 @@ "description": "Compra de 55.731,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "791324de0d864485a11ae84e", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691091813497, "net_received_amount": 0, @@ -26473,18 +39206,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1691091813497" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5b2f32e2bc104ddcba6b5225", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1691091813497", + "revision": "dc40f82d2d4246a8aaa25c1a", + "revision_nr": 1, + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -26493,38 +39249,46 @@ "total_amount": 7000000, "id": 1691091813497, "history_id": 1691091813497, - "date_created": "2023-08-03T19:43:33.497Z", - "date_last_updated": "2023-08-03T19:43:33.497Z", - "date_of_expiration": "2023-09-03T19:43:33.496Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 7.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0fd1c6c682ac4449bb88408a", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691190824646/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 7.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", + "revision": "07cd2fe42a9f48d7a30028f3", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691190824646/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691190824646, "net_received_amount": 0, @@ -26534,18 +39298,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1691190824646" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d50897a2533049a5b4193b8c", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691190824646/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1691190824646", + "revision": "82bf2f4f149e437099dd13ad", + "revision_nr": 1, + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691190824646", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -26554,9 +39341,18 @@ "total_amount": 61311, "id": 1691190824646, "history_id": 1691190824646, - "date_created": "2023-08-04T23:13:44.646Z", - "date_last_updated": "2023-08-04T23:13:44.646Z", - "date_of_expiration": "2023-08-04T23:13:44.646Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -26565,41 +39361,42 @@ "description": "Compra de 61.311,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ea31cc4fa5914d939659979b", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-24T19:13:12.970Z" + ".val": "2023-09-24T19:13:12.970Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "80bbda42d7df45cd83f769f0", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692990792970, "net_received_amount": 0, @@ -26609,18 +39406,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1692990792970" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "30ee5f97ef4247d48ab0deea", + "revision_nr": 1, + "created": 1701459383497, + "modified": 1701459383497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1692990792970", + "revision": "a8ea675d9f39459f9f97680f", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -26629,37 +39449,46 @@ "total_amount": 2000, "id": "1692990792970", "history_id": "1692990792970", - "date_created": "2023-08-25T19:13:12.970Z", - "date_last_updated": "2023-08-25T19:13:12.970Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0331.9555.3972.0461-00" + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "81907d3653784387a1aa9515", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0331.9555.3972.0461-00", + "revision": "d6369c6d5294419d964938c2", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693770411115, "net_received_amount": 0, @@ -26669,18 +39498,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1693770411115" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1c9b53cb03294ecda417ea20", + "revision_nr": 1, + "created": 1701459383497, + "modified": 1701459383497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1693770411115", + "revision": "123c7d58414f411fa7460ad0", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -26689,52 +39541,72 @@ "total_amount": 7140000, "id": "1693770411115", "history_id": "1693770411115", - "date_created": "2023-09-03T19:46:51.115Z", - "date_last_updated": "2023-09-03T19:46:51.115Z", - "date_of_expiration": "2023-09-03T19:46:51.115Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 7.000.000,00 IVIP com um rendimento de +140.000,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "33acc46491dc49dc88fd7ce8", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-12T10:36:53.081Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 7.000.000,00 IVIP com um rendimento de +140.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "6f08c18438aa4962b250dea3", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-12T10:36:53.081Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } + }, + "revision": "8eb150dc0dd24598a78ec65f", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694515013082, "net_received_amount": 0, @@ -26744,18 +39616,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694515013082" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8034cadeeef1487fac4851cf", + "revision_nr": 1, + "created": 1701459383497, + "modified": 1701459383497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694515013082", + "revision": "dd14713211e64775a4b55b9b", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -26764,41 +39659,73 @@ "total_amount": 2000, "id": "1694515013082", "history_id": "1694515013082", - "date_created": "2023-09-12T10:36:53.082Z", - "date_last_updated": "2023-09-12T10:36:53.082Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0331.9555.3972.0461-00" + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fdda8671f97248068fd22f87", + "revision_nr": 1, + "created": 1701459383497, + "modified": 1701459383497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0331.9555.3972.0461-00", + "revision": "bb39c73788fe40be83bfa5f7", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 30 + "amount": 30, + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "69a4c399a4d742be87d47b3f", "revision_nr": 1, - "created": 1700748395477, - "modified": 1700748395477 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694563336129, "net_received_amount": 0, @@ -26808,18 +39735,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694563336129" + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fdfa6571c2834a938360d101", + "revision_nr": 1, + "created": 1701459383497, + "modified": 1701459383497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694563336129", + "revision": "6f4db08e441c444e93a5d2fc", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383497, + "modified": 1701459383497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "f09ad9b85f5544689903e92a", + "revision_nr": 1, + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -26828,9 +39788,18 @@ "total_amount": 970, "id": "1694563336129", "history_id": "1694563336129", - "date_created": "2023-09-13T00:02:16.129Z", - "date_last_updated": "2023-09-19T13:03:18.738Z", - "date_of_expiration": "2023-09-13T00:02:16.129Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -26840,44 +39809,55 @@ "date_approved": "2023-09-19T13:03:18.738Z", "money_release_date": "2023-09-19T13:03:18.738Z", "money_release_status": "drawee", - "wasDebited": true, - "description": "Saque de 970,00 IVIP para a carteira 0x1250E6646AB77FF3f9708D761091ef1aD60bc9ec" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0c6b5e35dd124ee6b74c0d11", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383497, + "modified": 1701459383497 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-13T10:54:06.900Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 970,00 IVIP para a carteira 0x1250E6646AB77FF3f9708D761091ef1aD60bc9ec", + "revision": "2907bcdfc4df427c8c30b3ea", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383497, + "modified": 1701459383497 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-13T10:54:06.900Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } + }, + "revision": "21c542c4bc96437ca15c3178", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694602446900, "net_received_amount": 0, @@ -26887,18 +39867,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694602446900" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d7c6976aee424a92a4ae5eee", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383497, + "modified": 1701459383497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694602446900", + "revision": "ec6158bc5f034db1b5bb21f9", + "revision_nr": 1, + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -26907,8 +39910,14 @@ "total_amount": 2500, "id": "1694602446900", "history_id": "1694602446900", - "date_created": "2023-09-13T10:54:06.900Z", - "date_last_updated": "2023-09-13T14:14:25.688Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -26919,29 +39928,32 @@ "money_release_date": "2023-09-13T14:14:25.688Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 2.500,00 BRL para a carteira iVip 0331.9555.3972.0461-00" + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cc86b84105254d1cb8c3b86c", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383497, + "modified": 1701459383497 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 2.500,00 BRL para a carteira iVip 0331.9555.3972.0461-00", + "revision": "c8ed2d8520e742f7b58998bc", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694614621977, "net_received_amount": 0, @@ -26951,20 +39963,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 2, "installments_payable": 9, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694614621977" + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "567b568d7bc448c59e88bb13", + "revision_nr": 1, + "created": 1701459383497, + "modified": 1701459383497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694614621977", + "revision": "48efdcc6803d4425b6ec2275", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -26973,38 +40008,46 @@ "total_amount": 1209.090909090909, "id": "1694614621977", "history_id": "1694614621977", - "date_created": "2023-09-13T14:17:01.977Z", - "date_last_updated": "2023-09-13T14:17:01.977Z", - "date_of_expiration": "2023-09-13T14:17:01.977Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 2 de 11 no valor de 1.209,0909 BRL referente ao contrato 1683078539834" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f6983b40b07242d9812b4145", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383497, + "modified": 1701459383497 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 11 no valor de 1.209,0909 BRL referente ao contrato 1683078539834", + "revision": "d2d716e9cf0f461596ac789d", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694614622168, "net_received_amount": 0, @@ -27014,20 +40057,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 3, "installments_payable": 8, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694614622168" + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a9862ec4d41a42b08c156c94", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383497, + "modified": 1701459383497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694614622168", + "revision": "59bdf2f6c1c34d44846593f3", + "revision_nr": 1, + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -27036,42 +40102,73 @@ "total_amount": 1209.090909090909, "id": "1694614622168", "history_id": "1694614622168", - "date_created": "2023-09-13T14:17:02.168Z", - "date_last_updated": "2023-09-13T14:17:02.168Z", - "date_of_expiration": "2023-09-13T14:17:02.168Z", + "date_created": { + "type": 6, + "value": 1701459383497 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383497 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 3 de 11 no valor de 1.209,0909 BRL referente ao contrato 1683078539834" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8000ab18629d4c9abc2e5509", + "revision_nr": 1, + "created": 1701459383497, + "modified": 1701459383497 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168/description", + "content": { + "type": "STRING", + "value": "Pagamento de fatura 3 de 11 no valor de 1.209,0909 BRL referente ao contrato 1683078539834", + "revision": "d321099e0ef94c08a3bf70b8", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 942112.9199999999 + "amount": 942112.9199999999, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a648ad5c07da49b5bc8d1094", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694707376145, "net_received_amount": 0, @@ -27081,18 +40178,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694707376145" + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "585ec0fa5c01471dbb92743a", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694707376145", + "revision": "d9dacb3ee5c54eac8e8dd609", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "99cfbcf7c41845b6a819d6e4", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -27101,9 +40231,18 @@ "total_amount": 30461651.08, "id": "1694707376145", "history_id": "1694707376145", - "date_created": "2023-09-14T16:02:56.145Z", - "date_last_updated": "2023-09-21T23:31:12.164Z", - "date_of_expiration": "2023-09-14T16:02:56.145Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -27113,30 +40252,29 @@ "date_approved": "2023-09-21T23:31:12.164Z", "money_release_date": "2023-09-21T23:31:12.164Z", "money_release_status": "drawee", - "wasDebited": true, - "description": "Saque de 30.461.651,08 IVIP para a carteira 0x1250E6646AB77FF3f9708D761091ef1aD60bc9ec" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bdcda676689b43239db3bb81", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383498, + "modified": 1701459383498 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 30.461.651,08 IVIP para a carteira 0x1250E6646AB77FF3f9708D761091ef1aD60bc9ec", + "revision": "c142c1d784d1477a976771a1", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383497, + "modified": 1701459383497 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696309633832, "net_received_amount": 0, @@ -27146,18 +40284,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1696309633832" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "11b783ad54c941319ddbd9d1", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1696309633832", + "revision": "c1aaee11c61f4156bb254ea1", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -27167,38 +40328,46 @@ "total_amount": 20, "id": "1696309633832", "history_id": "1696309633832", - "date_created": "2023-10-03T05:07:13.832Z", - "date_last_updated": "2023-10-03T05:07:13.832Z", - "date_of_expiration": "2024-08-03T05:07:13.831Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "accredited", - "description": "Investimento de 20,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 03/08/2024 - D03OS92M" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "deaa6acee1f246daaa153168", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383498, + "modified": 1701459383498 } }, { - "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105/details/costs", + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 20,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 03/08/2024 - D03OS92M", + "revision": "e399b99bccc54799a8085a39", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696433201105, "net_received_amount": 0, @@ -27208,18 +40377,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1696433201105" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "94dd954a77924748af457eed", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1696433201105", + "revision": "7ed89d1dd5b24271a144a8f0", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -27229,53 +40421,84 @@ "total_amount": 7000000, "id": "1696433201105", "history_id": "1696433201105", - "date_created": "2023-10-04T15:26:41.105Z", - "date_last_updated": "2023-10-04T15:26:41.105Z", - "date_of_expiration": "2023-11-04T15:26:41.054Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 7.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1daad7849b444dffab88e285", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105/description", + "content": { + "type": "STRING", + "value": "Investimento de 7.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "016808d4cdba4a20b04734fb", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a83721d4419f4e4e9c73527a", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 51.1 + "amount": 51.1, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "56c657cb175f48a29b3b6b04", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679852406395, "type": "emprestimo", @@ -27283,48 +40506,92 @@ "total_amount": 2606.1, "installments": 1, "installment_amount": 2606.1, - "date_created": "2023-03-26T17:40:06.395Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, "history_id": 1679852406395, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 2.555,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.606,10" + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "abe103f9ad7d4bff9ad3d09e", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 2.555,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.606,10", + "revision": "7e8375b3ae114a57850d0e71", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "0ed8921d05b44f98b571afee", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "379d6336b33544b1ad0a4865", "revision_nr": 1, - "created": 1700748395478, - "modified": 1700748395478 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 52.2 + "amount": 52.2, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "533771ea0f1a424c9910a84f", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1682964262250, "type": "emprestimo", @@ -27332,37 +40599,81 @@ "total_amount": 2662.2, "installments": 1, "installment_amount": 2662.2, - "date_created": "2023-05-01T18:04:22.250Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, "history_id": 1682964262250, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.662,20" + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "398e9e175cb740c4b18d5415", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.662,20", + "revision": "18f047b8948b433db38d717e", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "bdef353ac7114f9d9deab538", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300 + "amount": 3300, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5acea83538d54480accb7581", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1683078539834, "type": "emprestimo", @@ -27370,48 +40681,92 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, "history_id": 1683078539834, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cf7de98125f649089d71a94c", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "a7c7ce6435fa4fd289adf6d2", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "ba604d194d8d44a59a8823ce", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "854d496720f84d069f7c7106", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300 + "amount": 3300, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "36021650c20842d1b6284d44", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1683078539834, "type": "emprestimo", @@ -27419,49 +40774,92 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, "history_id": 1683078539834, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-13T14:17:02.016Z", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f8dfed62ddea417bb4e1cb6f", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "0219fda4017c4ac4a51e6e46", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "fb8b9f2d8c1f45569c98dcac", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2018da5cf36047ca930d058e", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300 + "amount": 3300, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e0fb7a81384149949e7fcb15", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1683078539834, "type": "emprestimo", @@ -27469,49 +40867,92 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, "history_id": 1683078539834, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-13T14:17:02.191Z", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "179cb18268fe4a11a59aacd2", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "d333bcd4c4fe4b98a66e25d3", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "952275bdfd834a858da7c310", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "207ce05d258a4e0fa89e1096", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300 + "amount": 3300, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "00320050b3ef48b7a49f1e4c", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1683078539834, "type": "emprestimo", @@ -27519,47 +40960,91 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, "history_id": 1683078539834, "currency_id": "BRL", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "47a038dff17c459ab228348b", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "1646676fabbe44d6bdb2a31e", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "901ca5cc486f48e297c154cb", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "596dba32327343c493a305ad", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300 + "amount": 3300, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7d1d6816cf20433e8d0b1f81", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1683078539834, "type": "emprestimo", @@ -27567,47 +41052,91 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, "history_id": 1683078539834, "currency_id": "BRL", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e4c1951da5484782b9e01549", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "4e411ceac4634fb68b0e2e71", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "a77df37a8c1846f19fa43767", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "77970ccd73e84e338395cb5b", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300 + "amount": 3300, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4365f2a129544069bec999c6", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1683078539834, "type": "emprestimo", @@ -27615,47 +41144,91 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, "history_id": 1683078539834, "currency_id": "BRL", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d43114dd37b94422b0410c39", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "8904fcfe87914b868867c1d5", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "9881d3f125fd4d4c8c8aa26b", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "602a1c14d1e44011963ba50c", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300 + "amount": 3300, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "30efda8ac70b4397b0cf8349", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1683078539834, "type": "emprestimo", @@ -27663,47 +41236,91 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, "history_id": 1683078539834, "currency_id": "BRL", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "61f5294df9f64397a5b15ecd", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "eaef24dfed544931bc2f2cd5", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "989f9f92d8d14ce0982a7dea", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "05bd7009ada44e8db8fc7650", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300 + "amount": 3300, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5419c297cfa1443ea97570d3", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1683078539834, "type": "emprestimo", @@ -27711,47 +41328,91 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, "history_id": 1683078539834, "currency_id": "BRL", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "48ce8005df4c4836b6ceddff", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "c92a2c1252fc4a6ea8275bdf", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "5fa98e12fbdf4e50801743ad", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c8a602d00025400998ce9f62", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300 + "amount": 3300, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "58dfcf9f9b7a4ced975e4e79", "revision_nr": 1, - "created": 1700748395479, - "modified": 1700748395479 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1683078539834, "type": "emprestimo", @@ -27759,47 +41420,91 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, "history_id": 1683078539834, "currency_id": "BRL", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "15a067aefeb44685a2f26647", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "ea1df0b5273841979b38d5ad", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "6819e54860de4535bad6410a", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4a25abd66848481984c53cb7", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300 + "amount": 3300, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e28ef6f792cc489fa5985d4a", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1683078539834, "type": "emprestimo", @@ -27807,47 +41512,91 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, "history_id": 1683078539834, "currency_id": "BRL", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "08193bebe3da4224815a2064", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "365e3bde61e3469ba74650a5", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "9edea98fdaf44cd7ab5f7374", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "78a911e49df745fa8e08cba0", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300 + "amount": 3300, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "99bbaa96b9d84029b512b240", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1683078539834, "type": "emprestimo", @@ -27855,124 +41604,195 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, "history_id": 1683078539834, "currency_id": "BRL", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "375b48ac7af240529623de26", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", + "revision": "176bf58c050042c49c4a1774", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "bae803c2df8b47bf9c0062ab", + "revision_nr": 1, + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3108b9b8f0704c39a5398070", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1a16bc82e9b24dcfa6565502", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 10000, "limitUsed": 9090.90909090909, "analysisRequested": "2023-03-26T01:06:09.965Z", - "lastReview": "2023-03-26T01:17:09.922Z" + "lastReview": "2023-03-26T01:17:09.922Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "16cbce9e44ee44f6a4d9a961", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677378717676, "dateValidity": 1678943777415, "totalValue": 13247.575, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z" + "balancesModificacao": "2023-10-15T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "eff60448100c40c3b0ab5d08", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "38137.00000000", "symbol": "IVIP", - "value": 3.88 + "value": 3.88, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "54b138daa4d64e3190ffde2a", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a18c25e7648c492b917edab6", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } + }, + "revision": "c25c926ebd9944be93af43cf", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -27981,9 +41801,18 @@ "total_amount": 20, "history_id": 1689115233061, "id": 1689115233061, - "date_created": "2023-07-11T22:40:33.061Z", - "date_last_updated": "2023-07-12T08:25:46.943Z", - "date_of_expiration": "2023-08-10T22:40:33.061Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -27991,41 +41820,54 @@ "date_approved": "2023-07-12T08:25:46.943Z", "money_release_date": "2023-07-12T08:25:46.943Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4f5d3b6d0ae54a1b9551035f", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { - "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835/details/costs", + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", + "revision": "ae899b5a1a25498eacd6b317", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } + }, + "revision": "7ad5e35ea27f44f6b4ef08eb", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -28034,9 +41876,18 @@ "total_amount": 20, "history_id": 1689278707835, "id": 1689278707835, - "date_created": "2023-07-13T20:05:07.835Z", - "date_last_updated": "2023-07-13T20:07:08.225Z", - "date_of_expiration": "2023-08-12T20:05:07.835Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -28044,30 +41895,29 @@ "date_approved": "2023-07-13T20:07:08.225Z", "money_release_date": "2023-07-13T20:07:08.225Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "721a4650ddf34fd8be495c46", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { - "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689683815156/details/costs", + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", + "revision": "ce99e297c2cc4840b217a320", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689683815156/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689683815156, @@ -28078,18 +41928,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "12afce37ea5e47e88902dcd1", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689683815156", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -28099,9 +41962,18 @@ "original_amount": 25268, "total_amount": 25268, "id": 1689683815156, - "date_created": "2023-07-18T12:36:55.156Z", - "date_last_updated": "2023-07-18T12:36:55.156Z", - "date_of_expiration": "2023-07-18T12:36:55.156Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28110,38 +41982,41 @@ "history_id": 1689683815156, "description": "Compra de 25.268,00 IVIP por 40,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4a58a86d577c43808c528d86", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } + }, + "revision": "b0519dea58644d9f885c79a8", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -28150,9 +42025,18 @@ "total_amount": 20, "history_id": 1689684340625, "id": 1689684340625, - "date_created": "2023-07-18T12:45:40.625Z", - "date_last_updated": "2023-07-18T14:46:07.863Z", - "date_of_expiration": "2023-08-17T12:45:40.625Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -28160,30 +42044,29 @@ "date_approved": "2023-07-18T14:46:07.863Z", "money_release_date": "2023-07-18T14:46:07.863Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0238db408e7e4e78bbe72362", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { - "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689695209900/details/costs", + "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", + "revision": "b95d1d97b1d84f8da8de6855", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689695209900/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689695209900, @@ -28194,18 +42077,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3bd32e7eb8f346cca76f1e4c", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689695209900", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -28215,9 +42111,18 @@ "original_amount": 12869, "total_amount": 12869, "id": 1689695209900, - "date_created": "2023-07-18T15:46:49.900Z", - "date_last_updated": "2023-07-18T15:46:49.900Z", - "date_of_expiration": "2023-07-18T15:46:49.900Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28226,180 +42131,243 @@ "history_id": 1689695209900, "description": "Compra de 12.869,00 IVIP por 20,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "df3799ac75084b0c93198d75", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e0ccdad52a1d4d079e708ea7", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "995a520e63ae4175ac481ac2", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c9a1a5a3abc94813bbee5f2b", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1681695529045, "dateValidity": 1681695529045, "totalValue": 12.39, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z" + "balancesModificacao": "2023-10-16T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "18b68dcc702d4bd5acdbf2ea", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036609796475115090/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d554b40f8a65479197fa8295", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036609796475115090/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b687ffc11c53457da1e92e59", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036609796475115090/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e093cc1720054bb383161773", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036609796475115090/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7b39483f443b4c1c8d13880c", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036609796475115090", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1689337184637, "dateValidity": 1689337184638, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "11a74d6410de40ed8a91320f", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "31783.20000000", "symbol": "IVIP", - "value": 6.74 + "value": 6.74, + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "020e8e828480454eadd95825", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f727975a0f294412bf7a9abc", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } + }, + "revision": "83e325bc6a5447058c846638", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -28408,47 +42376,69 @@ "total_amount": 20, "history_id": 1689220381451, "id": 1689220381451, - "date_created": "2023-07-13T03:53:01.451Z", - "date_last_updated": "2023-07-13T03:53:01.451Z", - "date_of_expiration": "2023-08-12T03:53:01.451Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "93f013a25d9c4b76bbfe6055", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { - "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584/details/costs", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", + "revision": "5ec961694292415c83c5cfb5", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } + }, + "revision": "4eb714603e3547f1bafbec5c", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -28457,9 +42447,18 @@ "total_amount": 50, "history_id": 1689220411584, "id": 1689220411584, - "date_created": "2023-07-13T03:53:31.584Z", - "date_last_updated": "2023-07-13T14:14:45.911Z", - "date_of_expiration": "2023-08-12T03:53:31.584Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -28467,30 +42466,29 @@ "date_approved": "2023-07-13T14:14:45.911Z", "money_release_date": "2023-07-13T14:14:45.911Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0367.8180.5197.0763-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "89b1c7684a2e4ede8debcd9a", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { - "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689258185846/details/costs", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0367.8180.5197.0763-00", + "revision": "39bc703c78284a06826c7cc9", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689258185846/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689258185846, @@ -28501,18 +42499,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5ac284b1fe4f4614add36d8a", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689258185846", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -28522,9 +42533,18 @@ "original_amount": 18682, "total_amount": 18682, "id": 1689258185846, - "date_created": "2023-07-13T14:23:05.846Z", - "date_last_updated": "2023-07-13T14:23:05.846Z", - "date_of_expiration": "2023-07-13T14:23:05.846Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28533,38 +42553,41 @@ "history_id": 1689258185846, "description": "Compra de 18.682,00 IVIP por 50,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4b2fa214981b41d6ab415576", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } + }, + "revision": "8ff591743b9445f6a6f170b8", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -28573,47 +42596,69 @@ "total_amount": 20, "history_id": 1689488308744, "id": 1689488308744, - "date_created": "2023-07-16T06:18:28.744Z", - "date_last_updated": "2023-07-16T06:18:28.744Z", - "date_of_expiration": "2023-08-15T06:18:28.744Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b4d54d4cc77b45f8b9b68319", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { - "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765/details/costs", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", + "revision": "0ec1853834dd4e6cbac4b324", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + } + }, + "revision": "5e2fd6be9ddf4f16b2b15709", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -28622,9 +42667,18 @@ "total_amount": 20, "history_id": 1689488325765, "id": 1689488325765, - "date_created": "2023-07-16T06:18:45.765Z", - "date_last_updated": "2023-07-17T17:15:08.067Z", - "date_of_expiration": "2023-08-15T06:18:45.765Z", + "date_created": { + "type": 6, + "value": 1701459383498 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383498 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383498 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -28632,41 +42686,54 @@ "date_approved": "2023-07-17T17:15:08.067Z", "money_release_date": "2023-07-17T17:15:08.067Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ea82b18ac9824a5a988704db", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { - "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771/details/costs", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", + "revision": "c85fa03842254e15af8072df", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383498, + "modified": 1701459383498 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } + }, + "revision": "1fc8abf746474bf1b3f434be", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -28675,36 +42742,44 @@ "total_amount": 20, "history_id": 1689606916771, "id": 1689606916771, - "date_created": "2023-07-17T15:15:16.771Z", - "date_last_updated": "2023-07-17T15:15:16.771Z", - "date_of_expiration": "2023-08-16T15:15:16.771Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2368e3e766e543249b656019", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { - "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689614163424/details/costs", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", + "revision": "28db1925065242d9b9db5316", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689614163424/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689614163424, @@ -28715,18 +42790,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5ac373f1dc474cafba055b2d", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689614163424", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -28736,9 +42824,18 @@ "original_amount": 12478, "total_amount": 12478, "id": 1689614163424, - "date_created": "2023-07-17T17:16:03.424Z", - "date_last_updated": "2023-07-17T17:16:03.424Z", - "date_of_expiration": "2023-07-17T17:16:03.424Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28747,27 +42844,16 @@ "history_id": 1689614163424, "description": "Compra de 12.478,00 IVIP por 20,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "717be71384864a2fbb3b8680", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690673977679, "net_received_amount": 0, @@ -28777,18 +42863,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1690673977679" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "858111f0bfd347be9b9c4d1e", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1690673977679", + "revision": "6a6428fc34674c6f9a796f81", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -28797,52 +42906,72 @@ "total_amount": 31160, "id": 1690673977679, "history_id": 1690673977679, - "date_created": "2023-07-29T23:39:37.679Z", - "date_last_updated": "2023-07-29T23:39:37.679Z", - "date_of_expiration": "2023-08-29T23:39:37.677Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 31.160,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/29/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c6a99320f1b545ed8f689c5c", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { - "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-08-28T23:41:03.331Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 31.160,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/29/2023", + "revision": "817e42f89b0a4a2395787570", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { - "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/details/costs", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-08-28T23:41:03.331Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } + }, + "revision": "a0aba0151b3e4c4fa5d8ff0b", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690674063331, "net_received_amount": 0, @@ -28852,18 +42981,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1690674063331" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a6e7c107f4d14c3783f6c528", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1690674063331", + "revision": "9cc8b557108e4f3c9acb454c", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -28872,51 +43024,72 @@ "total_amount": 50, "id": 1690674063331, "history_id": 1690674063331, - "date_created": "2023-07-29T23:41:03.331Z", - "date_last_updated": "2023-07-29T23:41:03.331Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 50,00 para a carteira iVip 0367.8180.5197.0763-00" + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "245e6536801a40149947a590", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { - "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-11T22:49:28.160Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 50,00 para a carteira iVip 0367.8180.5197.0763-00", + "revision": "6481d89a729b4b4090ea7fb7", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { - "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/details/costs", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-11T22:49:28.160Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } + }, + "revision": "857558ef79744a349367dc1b", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691880568161, "net_received_amount": 0, @@ -28926,18 +43099,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1691880568161" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "56fa8245d1e84ce0a82d8c1a", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1691880568161", + "revision": "f42833bbedf249a5b7d2bcca", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -28946,37 +43142,46 @@ "total_amount": 20, "id": 1691880568161, "history_id": 1691880568161, - "date_created": "2023-08-12T22:49:28.161Z", - "date_last_updated": "2023-08-12T22:49:28.161Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 20,00 para a carteira iVip 0367.8180.5197.0763-00" + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cffae36242ff4902ab4fe135", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { - "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151/details/costs", + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 20,00 para a carteira iVip 0367.8180.5197.0763-00", + "revision": "23211ace3c744301bc54b625", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693353168151, "net_received_amount": 0, @@ -28986,18 +43191,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1693353168151" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2488d85da0a64ec6b85fae9c", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1693353168151", + "revision": "c3baf1a5b9414266b9bc42b7", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -29006,169 +43234,237 @@ "total_amount": 31783.2, "id": "1693353168151", "history_id": "1693353168151", - "date_created": "2023-08-29T23:52:48.151Z", - "date_last_updated": "2023-08-29T23:52:48.151Z", - "date_of_expiration": "2023-08-29T23:52:48.151Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 31.160,00 IVIP com um rendimento de +623,2 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0c785f1cccba461f84de03cb", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151/description", + "content": { + "type": "STRING", + "value": "Resgate do investimento staking de 31.160,00 IVIP com um rendimento de +623,2 IVIP (2,00%) - Y12XDT27", + "revision": "5d616318cedb4edfbd11c212", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "07705ab4d9a74c5e83bc8c6b", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "72907e35656e4be0834bd8e7", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7a883984cd394b00aaf0725c", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1689220270724, "dateValidity": 1689220270724, "totalValue": 14.47, "currencyType": "USD", - "balancesModificacao": "2023-10-02T03:00:00.000Z" + "balancesModificacao": "2023-10-02T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "661e7175093540eebb743658", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039695615525592090/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "66634c89cf5e41e6b039e9bb", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039695615525592090/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "71338c19be7e4c0fb6c8b4c7", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039695615525592090", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677455523126, "dateValidity": 1677455523127, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e4dd3922fa9e4f9c8263ee50", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "150481.00000000", "symbol": "IVIP", - "value": 16.044 + "value": 16.044, + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c9f9e861a91b40bc8fa094d9", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5a9c4fd9b8ec403aacf4a70d", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-04T15:32:38.190Z" + ".val": "2023-11-04T15:32:38.190Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "068ebc4fba044161afb8ec7d", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696519958190, "net_received_amount": 0, @@ -29178,18 +43474,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696519958190" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1b491e5ec9de4247a4d07a55", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696519958190", + "revision": "687f3e6bfdb34f3896bb857f", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -29199,51 +43518,72 @@ "total_amount": 100, "id": "1696519958190", "history_id": "1696519958190", - "date_created": "2023-10-05T15:32:38.190Z", - "date_last_updated": "2023-10-05T15:32:38.190Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 100,00 BRL para a carteira iVip 0397.3472.1775.6545-10" + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9deadf74a4b04372bd3ef7c0", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { - "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-11-04T21:32:52.533Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0397.3472.1775.6545-10", + "revision": "4b57473e2e6d487dbe7d91f5", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { - "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/details/costs", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-11-04T21:32:52.533Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } + }, + "revision": "0ab95c67cd7c4d22a400b55b", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696541572533, "net_received_amount": 0, @@ -29253,18 +43593,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696541572533" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "38bc5448ed304abbb11bbda3", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696541572533", + "revision": "a0819e4a8da642148002cd19", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -29274,51 +43637,72 @@ "total_amount": 50, "id": "1696541572533", "history_id": "1696541572533", - "date_created": "2023-10-05T21:32:52.533Z", - "date_last_updated": "2023-10-05T21:32:52.533Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10" + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "64e7875b24534df7bf567f70", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { - "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-11-05T09:46:24.658Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", + "revision": "69a8737381c44cb6ac346868", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { - "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/details/costs", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-11-05T09:46:24.658Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } + }, + "revision": "5d8f3d6ab8ec4e8792113ea6", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696585584658, "net_received_amount": 0, @@ -29328,18 +43712,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696585584658" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "44b39a2402ce4c81a0ff158b", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696585584658", + "revision": "97bcbe62b7b64c53aed186fd", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -29349,8 +43756,14 @@ "total_amount": 50, "id": "1696585584658", "history_id": "1696585584658", - "date_created": "2023-10-06T09:46:24.658Z", - "date_last_updated": "2023-10-07T14:19:56.574Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29361,29 +43774,32 @@ "money_release_date": "2023-10-07T14:19:56.574Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10" + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bf17ffa66d8d43238a6447e8", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { - "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696706580251/details/costs", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", + "revision": "e6a19e9d9b0c49e292c358dc", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696706580251/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696706580251", "net_received_amount": 0, @@ -29393,18 +43809,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696706580251" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2aca127bc2b143d2a6152099", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696706580251/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696706580251", + "revision": "daa4e7596b5a44d49f14f6e6", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696706580251", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -29414,9 +43853,18 @@ "total_amount": 70156, "id": "1696706580251", "history_id": "1696706580251", - "date_created": "2023-10-07T19:23:00.251Z", - "date_last_updated": "2023-10-07T19:23:00.251Z", - "date_of_expiration": "2023-10-07T19:23:00.251Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -29425,41 +43873,42 @@ "description": "Compra de 70.156,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "85306c71b0424bf397abd2f9", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-08T23:46:10.002Z" + ".val": "2023-11-08T23:46:10.002Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8c8b8671be394b83974a95a1", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696895170006", "net_received_amount": 0, @@ -29469,18 +43918,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696895170006" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "07b016a7bba844dbbb32d5bc", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696895170006", + "revision": "c2b691c6993245cfb31db362", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -29490,8 +43962,14 @@ "total_amount": 50, "id": "1696895170006", "history_id": "1696895170006", - "date_created": "2023-10-09T23:46:10.006Z", - "date_last_updated": "2023-10-10T12:08:30.416Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29502,29 +43980,32 @@ "money_release_date": "2023-10-10T12:08:30.416Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10" + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8bb25ebcdd6142d09509cff2", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { - "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696951453164/details/costs", + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", + "revision": "8c3be3887cd143e58a9b9c6f", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696951453164/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696951453164", "net_received_amount": 0, @@ -29534,18 +44015,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696951453164" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e002c50364ae45208b0a6d77", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696951453164/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696951453164", + "revision": "90033b6867a441238d2387a6", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696951453164", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -29555,9 +44059,18 @@ "total_amount": 80325, "id": "1696951453164", "history_id": "1696951453164", - "date_created": "2023-10-10T15:24:13.164Z", - "date_last_updated": "2023-10-10T15:24:13.164Z", - "date_of_expiration": "2023-10-10T15:24:13.164Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -29566,176 +44079,289 @@ "description": "Compra de 80.325,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "80f4a63ef7b4417b81328046", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "47dfc76b63ca427aad3bd981", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ad49fa61a73a42dfbc31b85f", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a8d3d4bf423c46bb8b30bb07", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1696456086300, "dateValidity": 1696456087509, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z" + "balancesModificacao": "2023-10-16T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "68c726fb5e124152ac1ef2aa", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041090915252286260/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4f149fe04f3a4cb5b5dc80ed", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041090915252286260/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2a0ff0ca1d7a44f4a5b7707a", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041090915252286260", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677897482019, "dateValidity": 1678002144888, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f93a359c7e504f06858fb669", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.9900000000000001 + "amount": 0.9900000000000001, + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4b890923b2954a6ab06afc21", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e084ed2f621942fb98d0a808", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "IVIPCOIN LTDA" + "account_holder_name": "IVIPCOIN LTDA", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3d7b2f855ee341cd9b431a41", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "92c44d7aaa1049f8b0716daa", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 100.99, "overpaid_amount": 0, "installment_amount": 0, - "ticket_url": "https://www.mercadopago.com.br/payments/55838306631/ticket?caller_id=1310149122&hash=c84a0406-1525-4894-8c96-d700cf2da43d", - "qr_code": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558383066316304189E", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIwElEQVR42u3dW67rNgwFUM3A85+lZ+CiRYsTi5ty+gDaWisfBzfXr+X8EaS2xvU/+pyDlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlvaf1475c/z+fz9Hp6t/O+XXm4zpX58n/xytD/rt6HReYtDS0tLS0tLS0tLS0m6iPQLlhvq5+3Sn35+zJk+8n8v+OPB5l6SipaWlpaWlpaWlpaXdQPtZQE7G815FnvdHTFVfuqKpItNzC4OWlpaWlpaWlpaWlnZb7Y9ses6Vj6a3mm6V6sTyh5aWlpaWlpaWlpaWlvZ+6SeqbcmdZWRyeqHULZxOpqWlpaWlpaWlpaWl3Vubi7vpsdNzahGYxjbTa0yy9fAnLS0tLS0tLS0tLS3t+7UppeRf+PM3MlVoaWlpaWlpaWlpaWn/z9r1pxR8q8Vx7Yjm5EnpkYsPLS0tLS0tLS0tLS3t27VpaPLs+nfNore2Fi0vdJvinMYxc7OPlpaWlpaWlpaWlpb23dqUqZ/y+NMyuUWxWN+vLLGro5w55J+WlpaWlpaWlpaWlnYDbboq5UOmwvCL0Mn8Vs2tQvIkLS0tLS0tLS0tLS3tm7Vt2fh598dAyMWzk/sM+SdX30GkpaWlpaWlpaWlpaV9s/Yz1LGG8k+5/eWyM/xpj9Y5zfJjXLS0tLS0tLS0tLS0tNtp03K1ttWW2nQF0GyAXWrRVJBmPC0tLS0tLS0tLS0t7Zu1U+2YSro8JVlHKr9q4k1r4NIqvOOb3dZoaWlpaWlpaWlpaWnfoi0tuSvsUD0Wrbt02RRkkuJLyv+NgKelpaWlpaWlpaWlpd1CO9Vwj4EiZTbyDNopanJqBU4/xs1Y3LS0tLS0tLS0tLS0tO/WlttdXb9t3MNIajduPYQ5tf1K5v8I05m0tLS0tLS0tLS0tLRbaOvCtfRJJWLpEa7TTKZHnnk685vd1mhpaWlpaWlpaWlpaV+kzVXfKFtXlzqxjl6WLdea4Mg8sXmUP7S0tLS0tLS0tLS0tDtppxJx3AHJk0Yv1/Elx1M/sOy7RktLS0tLS0tLS0tLu4W2NuJSi6+si7vCXGVqFNYi9fMNmnK1m7qkpaWlpaWlpaWlpaV9o/Ysi9RyETh92r3YVgvcuv7dfJfnmpeWlpaWlpaWlpaWlvY92rbqq1tXT0kjix0BJveRD7RF5UPNS0tLS0tLS0tLS0tL+yJtTnEcnewsGf2lzzfC6za80je8vkuPpKWlpaWlpaWlpaWlfZE2l351zVrbzitf6+Rknthsv54P3T1aWlpaWlpaWlpaWtpXaafdqNuycTq5FHxnCJNM7by08i0FTF60tLS0tLS0tLS0tLTbaJsZyvVquBT0WOrOx/5d0aafhZaWlpaWlpaWlpaWdgNtiiCZFKXMO7sXOrqAknT78+nhtLS0tLS0tLS0tLS079ceYXwyrWO75qbbyKOXdSFcKi/Tj1HKS1paWlpaWlpaWlpa2i20zT3DqrRR9sNuVs2V5W+3a6eXTEn/tLS0tLS0tLS0tLS0+2hTMkjp3zUL3HIr8DaxuVj+lp47HjNVaGlpaWlpaWlpaWlp36b9yjNCJTgFj4x7eXl1gZDncuryeNgFm5aWlpaWlpaWlpaW9n3aqelWbnc978B2hfHJo4svGWOk2c3CuGhpaWlpaWlpaWlpaXfSJuhULJaoklHySkrZ2LzaUzDKcy+SlpaWlpaWlpaWlpb2VdpKbrNJ0tK5z6/rVmA7YZn+RUtLS0tLS0tLS0tLu4+23mQagWxPWdwgdfKushAuT10ej71IWlpaWlpaWlpaWlraV2lTKTnVjkf+miMkx2cTb7pznrpMpSQtLS0tLS0tLS0tLe0u2kw5u7iRK2/DlkJGcmjJ1W0kMEajoqWlpaWlpaWlpaWl3UJ7ftmwO/LXMqy5Wv5WytVV4AktLS0tLS0tLS0tLe0W2sVwZTM+mXJGUuBJiTlp3+C6dwZpaWlpaWlpaWlpaWn30TZFYNmwum3i1fZgGq586hGefVYlLS0tLS0tLS0tLS3tm7WtJ6f1X12QSdPEm0Yv20HPchdaWlpaWlpaWlpaWtr9tOtdq9Nua9OBKdo/D2vW5JI8hHnR0tLS0tLS0tLS0tLupJ3unkYlS8jICrqY52y2x05BlLS0tLS0tLS0tLS0tJtob2XjNCWZlqt9FoarGP+Mr+/8XFTS0tLS0tLS0tLS0tK+W9vuRp3SR6be37GY08y5lFcZ4Jx+m9BLpKWlpaWlpaWlpaWlfbP2qbF3ZVl+q+seEnmWPt9TZ7BuzUZLS0tLS0tLS0tLS/t2bRmuHGUEcnq1DDhz22/6CUq5OrroE1paWlpaWlpaWlpa2n20dUFamrBchEke91e/dQtL6y7tlt0Un7S0tLS0tLS0tLS0tJto2xru7NbAjedokaucnGctp9bi9V13j5aWlpaWlpaWlpaW9kXabKz7pLWzkYshzGkRXXMgl7C0tLS0tLS0tLS0tLSbacfTFte5wrvCHmsVn2TrUpKWlpaWlpaWlpaWlnYfbfp8PuLMo5clgiRVlqlh990+bsupS1paWlpaWlpaWlpa2ldpS2jI48P+cp8vrXy7uo3bDlpaWlpaWlpaWlpa2m20617dGM3JaWe1ZrjyKUzyz1SRtLS0tLS0tLS0tLS0r9SmAjLNRuYu4Cqov23npZ8l1ae0tLS0tLS0tLS0tLR7akfIDRkhAfIKefzNnm3t1OX0us/dPVpaWlpaWlpaWlpa2g20i4j9Jpn/CB2/1M67uunMOsBJS0tLS0tLS0tLS0u7j3aN/5ymXPf+0t7Xq3Vx69V1tLS0tLS0tLS0tLS0m2jr4GNepHbOw5CjnJdW0p3h2qv8DmmJHS0tLS0tLS0tLS0t7Rba//6HlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlvYf0/4CTrnpnMA9aVMAAAAASUVORK5CYII=" + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "78861812fd354ac3bb984514", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/payments/55838306631/ticket?caller_id=1310149122&hash=c84a0406-1525-4894-8c96-d700cf2da43d", + "revision": "a452cd95216f4c7e8aa494a5", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558383066316304189E", + "revision": "35bc061209924d15aa5fc491", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIwElEQVR42u3dW67rNgwFUM3A85+lZ+CiRYsTi5ty+gDaWisfBzfXr+X8EaS2xvU/+pyDlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlvaf1475c/z+fz9Hp6t/O+XXm4zpX58n/xytD/rt6HReYtDS0tLS0tLS0tLS0m6iPQLlhvq5+3Sn35+zJk+8n8v+OPB5l6SipaWlpaWlpaWlpaXdQPtZQE7G815FnvdHTFVfuqKpItNzC4OWlpaWlpaWlpaWlnZb7Y9ses6Vj6a3mm6V6sTyh5aWlpaWlpaWlpaWlvZ+6SeqbcmdZWRyeqHULZxOpqWlpaWlpaWlpaWl3Vubi7vpsdNzahGYxjbTa0yy9fAnLS0tLS0tLS0tLS3t+7UppeRf+PM3MlVoaWlpaWlpaWlpaWn/z9r1pxR8q8Vx7Yjm5EnpkYsPLS0tLS0tLS0tLS3t27VpaPLs+nfNore2Fi0vdJvinMYxc7OPlpaWlpaWlpaWlpb23dqUqZ/y+NMyuUWxWN+vLLGro5w55J+WlpaWlpaWlpaWlnYDbboq5UOmwvCL0Mn8Vs2tQvIkLS0tLS0tLS0tLS3tm7Vt2fh598dAyMWzk/sM+SdX30GkpaWlpaWlpaWlpaV9s/Yz1LGG8k+5/eWyM/xpj9Y5zfJjXLS0tLS0tLS0tLS0tNtp03K1ttWW2nQF0GyAXWrRVJBmPC0tLS0tLS0tLS0t7Zu1U+2YSro8JVlHKr9q4k1r4NIqvOOb3dZoaWlpaWlpaWlpaWnfoi0tuSvsUD0Wrbt02RRkkuJLyv+NgKelpaWlpaWlpaWlpd1CO9Vwj4EiZTbyDNopanJqBU4/xs1Y3LS0tLS0tLS0tLS0tO/WlttdXb9t3MNIajduPYQ5tf1K5v8I05m0tLS0tLS0tLS0tLRbaOvCtfRJJWLpEa7TTKZHnnk685vd1mhpaWlpaWlpaWlpaV+kzVXfKFtXlzqxjl6WLdea4Mg8sXmUP7S0tLS0tLS0tLS0tDtppxJx3AHJk0Yv1/Elx1M/sOy7RktLS0tLS0tLS0tLu4W2NuJSi6+si7vCXGVqFNYi9fMNmnK1m7qkpaWlpaWlpaWlpaV9o/Ysi9RyETh92r3YVgvcuv7dfJfnmpeWlpaWlpaWlpaWlvY92rbqq1tXT0kjix0BJveRD7RF5UPNS0tLS0tLS0tLS0tL+yJtTnEcnewsGf2lzzfC6za80je8vkuPpKWlpaWlpaWlpaWlfZE2l351zVrbzitf6+Rknthsv54P3T1aWlpaWlpaWlpaWtpXaafdqNuycTq5FHxnCJNM7by08i0FTF60tLS0tLS0tLS0tLTbaJsZyvVquBT0WOrOx/5d0aafhZaWlpaWlpaWlpaWdgNtiiCZFKXMO7sXOrqAknT78+nhtLS0tLS0tLS0tLS079ceYXwyrWO75qbbyKOXdSFcKi/Tj1HKS1paWlpaWlpaWlpa2i20zT3DqrRR9sNuVs2V5W+3a6eXTEn/tLS0tLS0tLS0tLS0+2hTMkjp3zUL3HIr8DaxuVj+lp47HjNVaGlpaWlpaWlpaWlp36b9yjNCJTgFj4x7eXl1gZDncuryeNgFm5aWlpaWlpaWlpaW9n3aqelWbnc978B2hfHJo4svGWOk2c3CuGhpaWlpaWlpaWlpaXfSJuhULJaoklHySkrZ2LzaUzDKcy+SlpaWlpaWlpaWlpb2VdpKbrNJ0tK5z6/rVmA7YZn+RUtLS0tLS0tLS0tLu4+23mQagWxPWdwgdfKushAuT10ej71IWlpaWlpaWlpaWlraV2lTKTnVjkf+miMkx2cTb7pznrpMpSQtLS0tLS0tLS0tLe0u2kw5u7iRK2/DlkJGcmjJ1W0kMEajoqWlpaWlpaWlpaWl3UJ7ftmwO/LXMqy5Wv5WytVV4AktLS0tLS0tLS0tLe0W2sVwZTM+mXJGUuBJiTlp3+C6dwZpaWlpaWlpaWlpaWn30TZFYNmwum3i1fZgGq586hGefVYlLS0tLS0tLS0tLS3tm7WtJ6f1X12QSdPEm0Yv20HPchdaWlpaWlpaWlpaWtr9tOtdq9Nua9OBKdo/D2vW5JI8hHnR0tLS0tLS0tLS0tLupJ3unkYlS8jICrqY52y2x05BlLS0tLS0tLS0tLS0tJtob2XjNCWZlqt9FoarGP+Mr+/8XFTS0tLS0tLS0tLS0tK+W9vuRp3SR6be37GY08y5lFcZ4Jx+m9BLpKWlpaWlpaWlpaWlfbP2qbF3ZVl+q+seEnmWPt9TZ7BuzUZLS0tLS0tLS0tLS/t2bRmuHGUEcnq1DDhz22/6CUq5OrroE1paWlpaWlpaWlpa2n20dUFamrBchEke91e/dQtL6y7tlt0Un7S0tLS0tLS0tLS0tJto2xru7NbAjedokaucnGctp9bi9V13j5aWlpaWlpaWlpaW9kXabKz7pLWzkYshzGkRXXMgl7C0tLS0tLS0tLS0tLSbacfTFte5wrvCHmsVn2TrUpKWlpaWlpaWlpaWlnYfbfp8PuLMo5clgiRVlqlh990+bsupS1paWlpaWlpaWlpa2ldpS2jI48P+cp8vrXy7uo3bDlpaWlpaWlpaWlpa2m20617dGM3JaWe1ZrjyKUzyz1SRtLS0tLS0tLS0tLS0r9SmAjLNRuYu4Cqov23npZ8l1ae0tLS0tLS0tLS0tLR7akfIDRkhAfIKefzNnm3t1OX0us/dPVpaWlpaWlpaWlpa2g20i4j9Jpn/CB2/1M67uunMOsBJS0tLS0tLS0tLS0u7j3aN/5ymXPf+0t7Xq3Vx69V1tLS0tLS0tLS0tLS0m2jr4GNepHbOw5CjnJdW0p3h2qv8DmmJHS0tLS0tLS0tLS0t7Rba//6HlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlvYf0/4CTrnpnMA9aVMAAAAASUVORK5CYII=", + "revision": "caf151b5b25144c4bfbc7d50", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "6b02bd52bc3e494aa2d43715", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -29744,96 +44370,192 @@ "total_amount": 100.99, "history_id": 1679068099316, "id": 55838306631, - "date_created": "2023-03-17T11:48:19.967-04:00", - "date_last_updated": "2023-03-18T11:50:47.000-04:00", - "date_of_expiration": "2023-03-18T11:48:19.697-04:00", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", "status_detail": "expired", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0413.9580.8163.2810-30" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "45f87ef0423c440980cfa332", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0413.9580.8163.2810-30", + "revision": "080424a9dfeb45c2aa950c15", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.9900000000000001 + "amount": 0.9900000000000001, + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4b1f7cb87bc84d7789997928", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3c8bdfd186cb42b0a7eddab3", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "IVIPCOIN LTDA" + "account_holder_name": "IVIPCOIN LTDA", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a2a79e74dfb045ba9d766c03", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8ccc88586f9e442380985623", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 100.99, "overpaid_amount": 0, "installment_amount": 0, - "qr_code": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558382392976304091C", - "ticket_url": "https://www.mercadopago.com.br/payments/55838239297/ticket?caller_id=1310149122&hash=39da82e9-af89-4bbc-a0a8-066f192eab65", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIu0lEQVR42u3dTW7jOBAGUN5A97+lbqDZDDoW6ysqQTcG0+LzIkgcS3r0rlB/4/qLXuegpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpf3z2jG/jn/f+/rvdHV57yyXfb1XLjt//ajXTgxaWlpaWlpaWlpaWtpNtNM9j/tv5+cjPu90/jrQkclfT54+/Pm5r8saBi0tLS0tLS0tLS0t7RbazwCyGqeI8dM9wgnOEZOHEz49tzBoaWlpaWlpaWlpaWm31V73OHGUXF0JG8+c8Vsk+47wg5aWlpaWlpaWlpaWljak33IQOFVY3l7TcVO2cPowLS0tLS0tLS0tLS3t3toc3E2PbXJ6092n39IxJtm6+JOWlpaWlpaWlpaWlvb92hXgP/zxGzNVaGlpaWlpaWlpaWlp/2bt+tVGgmV8yRGa3pq7pOmRixctLS0tLS0tLS0tLe3btalo8szZuLbprY1Fy4GmoZNXGT+5zO7R0tLS0tLS0tLS0tK+T5tm6j/dPbXEXd2g/jOcOYWhoxvyT0tLS0tLS0tLS0tLu4E2XTUNKCknaPekjTLXJCf72ludqxpRWlpaWlpaWlpaWlrat2kztIZ5n+9dIQd33asujxJ3tlWXaaH2suqSlpaWlpaWlpaWlpb2VdoU9bUllSmT91Sieeb2t+m55eujpaWlpaWlpaWlpaXdTHtL3U1PLAWXTRSZrki8coJU1ElLS0tLS0tLS0tLS7uVNod0aW5Is3ft+0m8ZuhkOdpBS0tLS0tLS0tLS0u7ibY0vTV5vtQcN929nPm8D5Mc9w9P742Ap6WlpaWlpaWlpaWl3UqbB0IeIQistZFFe+T3phO0OcLnKJKWlpaWlpaWlpaWlvY92qaGcjrB501Sb9sRPOMeaNb3ptC0VGfS0tLS0tLS0tLS0tJuoE2Na/ksI8iubi3A7bLc+dYMrPzOtjVaWlpaWlpaWlpaWtoXadNYkrS6OsWJJdA87inDZnDkYujkEdZy09LS0tLS0tLS0tLSbqFNPWu3dN6iXe0qgDy+5FjmA6dkHy0tLS0tLS0tLS0t7T7amogrhY9XuXtJ0x1dojAFqVeYWtmOKqGlpaWlpaWlpaWlpX279rw3qbVB4Mh9cWVP2qrBrcvfzXd5jnlpaWlpaWlpaWlpaWnfo03kafhjTd2lwswSHabazZFnUE5f0EPMS0tLS0tLS0tLS0tL+yLtoq5yGiNylkiwzQzm406JwpHvV8i0tLS0tLS0tLS0tLTv1qa8XOpZKwP9cyIuds2tKzbLn+dDdo+WlpaWlpaWlpaWlvZV2mk8fwkbU/y3CPia2s0mimy3tz3EvLS0tLS0tLS0tLS0tK/Sptu13XBHni+S487H/F0KTafvkJaWlpaWlpaWlpaWdgttGkFS9lw3dZqLAzVtcmlxW/twWlpaWlpaWlpaWlra92vrOP22jy3XS6Zrj3uHXA0v05dRwktaWlpaWlpaWlpaWtottM09Q1faKLWWTddcaX87yx63Ms2kDVxpaWlpaWlpaWlpaWnfrU2TQUr+Lg30PxepwKlNbkrdlRMciwpQWlpaWlpaWlpaWlrat2uT57vGhecKUWSNO8tz845sWlpaWlpaWlpaWlraN2vLSuozBIaju+co66yn0stcidk8vPyXlpaWlpaWlpaWlpZ2P227vzqvx75CdeZVosN2OOVicslBS0tLS0tLS0tLS0u7jbbWX6bZJCUVOOHTArUzZAaPnFUsv9HS0tLS0tLS0tLS0u6jPe/B4hTXjfycFEW229YW38jZhZIXLS0tLS0tLS0tLS3tNtqU55tix7rn+vMEdcJJW5OZqy5TKElLS0tLS0tLS0tLS7uLdrHi+ui0o1RipiAwDy25ukUCYzQqWlpaWlpaWlpaWlraDbQp6stTSo6S3ZvqKp9ShiPO7R9pzAktLS0tLS0tLS0tLe1O2tGtXLty+WSaM5IGnpQxJ+0Jrhyf0tLS0tLS0tLS0tLSvl/bBIFPy9Ka7rV2eH/SLuJOWlpaWlpaWlpaWlraHbVXmAC5jv+mIswaVE6ll22hZ7kLLS0tLS0tLS0tLS3tLto8cf8H29bSZWkgZBo6WX7Lf9LS0tLS0tLS0tLS0r5ZWx7RLEtLRZgtdFHPmdZj10GUzzWitLS0tLS0tLS0tLS0b9F+3jgttk6JvbRZLY05Sfi2xW4RVNLS0tLS0tLS0tLS0r5ZWwokx73fbUrJXRk63a9sZWtkU4z5kykltLS0tLS0tLS0tLS079EeXQ9cihhHmFKSqjPrzJEUVGYBLS0tLS0tLS0tLS3tjtqpIrJZhZ1KKqcwdP0VlHB1dKNPaGlpaWlpaWlpaWlpd9FOZZZpSGS6XcnQXaFXLqXu0rbsJvikpaWlpaWlpaWlpaXdR5sKLtPgyDR4JGUB04dzreX0FVwP2T1aWlpaWlpaWlpaWtr3aVP3Woosn2sja9buHCN9I2mMf17wRktLS0tLS0tLS0tLu492PK247iK8+kq9clW2DiVpaWlpaWlpaWlpaWn30abXer7/lLDLOb00VvLIZZaLSf+0tLS0tLS0tLS0tLQbaNdBYHrYYuN1GjCZqi6r+yc7CGhpaWlpaWlpaWlpaV+mrag8GvLIib3pLqm4crG97cdRJC0tLS0tLS0tLS0t7Su1ZdLIyLWRadL/elB/bnBrTpBDWFpaWlpaWlpaWlpa2h21t2AxRXipy61kC49ctllSfGc4KS0tLS0tLS0tLS0tLe2yOa48Z3qv3YJ9ddWZtZ2OlpaWlpaWlpaWlpZ2H+0a/xkdpgXYU+6v1mm2fXHf3BdAS0tLS0tLS0tLS0v7bm0tfMxNaquIcdH0Vj+X+uemFjtaWlpaWlpaWlpaWtp9tP//Fy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS3tH9P+A9AQYpnhsXB9AAAAAElFTkSuQmCC" + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "569b1f3ddc7d46b7af964e53", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558382392976304091C", + "revision": "7471b9d9854e477f93ccdbd1", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/payments/55838239297/ticket?caller_id=1310149122&hash=39da82e9-af89-4bbc-a0a8-066f192eab65", + "revision": "a4edb2e8550d42c4b7fa0a8a", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIu0lEQVR42u3dTW7jOBAGUN5A97+lbqDZDDoW6ysqQTcG0+LzIkgcS3r0rlB/4/qLXuegpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpf3z2jG/jn/f+/rvdHV57yyXfb1XLjt//ajXTgxaWlpaWlpaWlpaWtpNtNM9j/tv5+cjPu90/jrQkclfT54+/Pm5r8saBi0tLS0tLS0tLS0t7RbazwCyGqeI8dM9wgnOEZOHEz49tzBoaWlpaWlpaWlpaWm31V73OHGUXF0JG8+c8Vsk+47wg5aWlpaWlpaWlpaWljak33IQOFVY3l7TcVO2cPowLS0tLS0tLS0tLS3t3toc3E2PbXJ6092n39IxJtm6+JOWlpaWlpaWlpaWlvb92hXgP/zxGzNVaGlpaWlpaWlpaWlp/2bt+tVGgmV8yRGa3pq7pOmRixctLS0tLS0tLS0tLe3btalo8szZuLbprY1Fy4GmoZNXGT+5zO7R0tLS0tLS0tLS0tK+T5tm6j/dPbXEXd2g/jOcOYWhoxvyT0tLS0tLS0tLS0tLu4E2XTUNKCknaPekjTLXJCf72ludqxpRWlpaWlpaWlpaWlrat2kztIZ5n+9dIQd33asujxJ3tlWXaaH2suqSlpaWlpaWlpaWlpb2VdoU9bUllSmT91Sieeb2t+m55eujpaWlpaWlpaWlpaXdTHtL3U1PLAWXTRSZrki8coJU1ElLS0tLS0tLS0tLS7uVNod0aW5Is3ft+0m8ZuhkOdpBS0tLS0tLS0tLS0u7ibY0vTV5vtQcN929nPm8D5Mc9w9P742Ap6WlpaWlpaWlpaWl3UqbB0IeIQistZFFe+T3phO0OcLnKJKWlpaWlpaWlpaWlvY92qaGcjrB501Sb9sRPOMeaNb3ptC0VGfS0tLS0tLS0tLS0tJuoE2Na/ksI8iubi3A7bLc+dYMrPzOtjVaWlpaWlpaWlpaWtoXadNYkrS6OsWJJdA87inDZnDkYujkEdZy09LS0tLS0tLS0tLSbqFNPWu3dN6iXe0qgDy+5FjmA6dkHy0tLS0tLS0tLS0t7T7amogrhY9XuXtJ0x1dojAFqVeYWtmOKqGlpaWlpaWlpaWlpX279rw3qbVB4Mh9cWVP2qrBrcvfzXd5jnlpaWlpaWlpaWlpaWnfo03kafhjTd2lwswSHabazZFnUE5f0EPMS0tLS0tLS0tLS0tL+yLtoq5yGiNylkiwzQzm406JwpHvV8i0tLS0tLS0tLS0tLTv1qa8XOpZKwP9cyIuds2tKzbLn+dDdo+WlpaWlpaWlpaWlvZV2mk8fwkbU/y3CPia2s0mimy3tz3EvLS0tLS0tLS0tLS0tK/Sptu13XBHni+S487H/F0KTafvkJaWlpaWlpaWlpaWdgttGkFS9lw3dZqLAzVtcmlxW/twWlpaWlpaWlpaWlra92vrOP22jy3XS6Zrj3uHXA0v05dRwktaWlpaWlpaWlpaWtottM09Q1faKLWWTddcaX87yx63Ms2kDVxpaWlpaWlpaWlpaWnfrU2TQUr+Lg30PxepwKlNbkrdlRMciwpQWlpaWlpaWlpaWlrat2uT57vGhecKUWSNO8tz845sWlpaWlpaWlpaWlraN2vLSuozBIaju+co66yn0stcidk8vPyXlpaWlpaWlpaWlpZ2P227vzqvx75CdeZVosN2OOVicslBS0tLS0tLS0tLS0u7jbbWX6bZJCUVOOHTArUzZAaPnFUsv9HS0tLS0tLS0tLS0u6jPe/B4hTXjfycFEW229YW38jZhZIXLS0tLS0tLS0tLS3tNtqU55tix7rn+vMEdcJJW5OZqy5TKElLS0tLS0tLS0tLS7uLdrHi+ui0o1RipiAwDy25ukUCYzQqWlpaWlpaWlpaWlraDbQp6stTSo6S3ZvqKp9ShiPO7R9pzAktLS0tLS0tLS0tLe1O2tGtXLty+WSaM5IGnpQxJ+0Jrhyf0tLS0tLS0tLS0tLSvl/bBIFPy9Ka7rV2eH/SLuJOWlpaWlpaWlpaWlraHbVXmAC5jv+mIswaVE6ll22hZ7kLLS0tLS0tLS0tLS3tLto8cf8H29bSZWkgZBo6WX7Lf9LS0tLS0tLS0tLS0r5ZWx7RLEtLRZgtdFHPmdZj10GUzzWitLS0tLS0tLS0tLS0b9F+3jgttk6JvbRZLY05Sfi2xW4RVNLS0tLS0tLS0tLS0r5ZWwokx73fbUrJXRk63a9sZWtkU4z5kykltLS0tLS0tLS0tLS079EeXQ9cihhHmFKSqjPrzJEUVGYBLS0tLS0tLS0tLS3tjtqpIrJZhZ1KKqcwdP0VlHB1dKNPaGlpaWlpaWlpaWlpd9FOZZZpSGS6XcnQXaFXLqXu0rbsJvikpaWlpaWlpaWlpaXdR5sKLtPgyDR4JGUB04dzreX0FVwP2T1aWlpaWlpaWlpaWtr3aVP3Woosn2sja9buHCN9I2mMf17wRktLS0tLS0tLS0tLu492PK247iK8+kq9clW2DiVpaWlpaWlpaWlpaWn30abXer7/lLDLOb00VvLIZZaLSf+0tLS0tLS0tLS0tLQbaNdBYHrYYuN1GjCZqi6r+yc7CGhpaWlpaWlpaWlpaV+mrag8GvLIib3pLqm4crG97cdRJC0tLS0tLS0tLS0t7Su1ZdLIyLWRadL/elB/bnBrTpBDWFpaWlpaWlpaWlpa2h21t2AxRXipy61kC49ctllSfGc4KS0tLS0tLS0tLS0tLe2yOa48Z3qv3YJ9ddWZtZ2OlpaWlpaWlpaWlpZ2H+0a/xkdpgXYU+6v1mm2fXHf3BdAS0tLS0tLS0tLS0v7bm0tfMxNaquIcdH0Vj+X+uemFjtaWlpaWlpaWlpaWtp9tP//Fy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS3tH9P+A9AQYpnhsXB9AAAAAElFTkSuQmCC", + "revision": "563d16d2c0284d9c89aa2039", + "revision_nr": 1, + "created": 1701459383499, + "modified": 1701459383499 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "69a64a247cda42fe96c4d9e7", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -29842,9 +44564,18 @@ "total_amount": 100.99, "history_id": 1679068275059, "id": 55838239297, - "date_created": "2023-03-17T11:51:15.826-04:00", - "date_last_updated": "2023-03-17T11:52:17.000-04:00", - "date_of_expiration": "2023-03-18T11:51:15.577-04:00", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", @@ -29852,30 +44583,29 @@ "currency_id": "BRL", "date_approved": "2023-03-17T11:52:17.000-04:00", "money_release_date": "2023-03-17T11:52:17.000-04:00", - "wasDebited": true, - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0413.9580.8163.2810-30" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "131e0b0117e14c3eaaa0a4c0", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { - "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679267870429/details/costs", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0413.9580.8163.2810-30", + "revision": "bc3a4438b0e2449f8a4b28d3", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679267870429/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679267870429, @@ -29886,18 +44616,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7be7ece83d0b4d03b9bc7476", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679267870429", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -29907,9 +44650,18 @@ "original_amount": 581846, "total_amount": 581846, "id": 1679267870429, - "date_created": "2023-03-19T23:17:50.429Z", - "date_last_updated": "2023-03-19T23:17:50.429Z", - "date_of_expiration": "2023-03-19T23:17:50.429Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29918,38 +44670,41 @@ "history_id": 1679267870429, "description": "Compra de 581846 IVIP por 100 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9cafa97f3aed4105bea76d9b", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } + }, + "revision": "be24931964494932b9e23eff", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -29958,47 +44713,69 @@ "total_amount": 581846, "history_id": 1686586586983, "id": 1686586586983, - "date_created": "2023-06-12T16:16:26.983Z", - "date_last_updated": "2023-06-12T16:16:26.983Z", - "date_of_expiration": "2023-06-12T16:16:26.983Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 581.846,00 IVIP para a carteira 0x37E0fCB4d560966a0564DA6CD53002e1ec1eb98B" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "35bbcec66246415c97751773", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { - "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320/details/costs", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 581.846,00 IVIP para a carteira 0x37E0fCB4d560966a0564DA6CD53002e1ec1eb98B", + "revision": "3fb9f8760a3a4e1b933a6094", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + } + }, + "revision": "64bd091c47f64d73a69dde97", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -30007,36 +44784,44 @@ "total_amount": 581846, "history_id": 1686586986320, "id": 1686586986320, - "date_created": "2023-06-12T16:23:06.320Z", - "date_last_updated": "2023-06-12T16:23:06.320Z", - "date_of_expiration": "2023-06-12T16:23:06.320Z", + "date_created": { + "type": 6, + "value": 1701459383499 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383499 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383499 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 581.846,00 IVIP para a carteira 0x37E0fCB4d560966a0564DA6CD53002e1ec1eb98B" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2dcda7f083654174ae85e672", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { - "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779/details/costs", + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 581.846,00 IVIP para a carteira 0x37E0fCB4d560966a0564DA6CD53002e1ec1eb98B", + "revision": "5b70aa2b8f7e4581a512aa20", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383499, + "modified": 1701459383499 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690134068779, "net_received_amount": 0, @@ -30046,18 +44831,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/041395808163281030/history/1690134068779" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3435fb85875d4394bf5a7eb2", + "revision_nr": 1, + "created": 1701459383500, + "modified": 1701459383500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/041395808163281030/history/1690134068779", + "revision": "6eaa09e2d223499b8bc80564", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -30066,139 +44874,197 @@ "total_amount": 400954, "id": 1690134068779, "history_id": 1690134068779, - "date_created": "2023-07-23T17:41:08.779Z", - "date_last_updated": "2023-07-23T17:41:08.779Z", - "date_of_expiration": "2023-07-23T17:41:08.779Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "pending_waiting_payment", - "description": "Saque de 400.954,00 IVIP para a carteira 0x8B2f02C31F9ab77685A7c7546e3768e290DD6394" + "status_detail": "pending_waiting_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f89ca6df30dd4208a5d93e26", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779/description", + "content": { + "type": "STRING", + "value": "Saque de 400.954,00 IVIP para a carteira 0x8B2f02C31F9ab77685A7c7546e3768e290DD6394", + "revision": "81d0d862f96248a6a9f66e04", + "revision_nr": 1, + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "76f33f9826a246a28a9bf399", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "581846.00000000", "symbol": "IVIP", - "value": 73.41 + "value": 73.41, + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1151b1b88fcd4ce5971774be", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "80b972bba9384f8fa5e0bd08", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a9b3658a5f2e414c8dfe8a44", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "74db222d787b4bd588924f29", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1679068061044, "dateValidity": 1679068061044, "currencyType": "USD", "totalValue": 18.88, - "balancesModificacao": "2023-10-11T03:00:00.000Z" + "balancesModificacao": "2023-10-11T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ab41d2de00a247ed8630c4c4", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "80d1174b108c468d84c98813", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } + }, + "revision": "2bd1def6a12f46b394a67289", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -30207,128 +45073,184 @@ "total_amount": 100, "history_id": 1689548630515, "id": 1689548630515, - "date_created": "2023-07-16T23:03:50.515Z", - "date_last_updated": "2023-07-16T23:03:50.515Z", - "date_of_expiration": "2023-08-15T23:03:50.515Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0429.6416.2467.3393-60" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e9c9d27ed1dd46a7949171d7", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0429.6416.2467.3393-60", + "revision": "4986b63413204ddca0fd7ce6", + "revision_nr": 1, + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "64c0e79cd9b34811a91726e9", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d756ef4e73184d2ea515d66f", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6c595365d8b44907a5088ac4", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1689548492145, "dateValidity": 1689548492145, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a02da9e3fe5045a4b438862a", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "127146.00000000", "symbol": "IVIP", - "value": 13.81 + "value": 13.81, + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8828b3a8fe184ecca2ca68c7", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f4f96164fe8c4f8697b56d91", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-01T03:44:50.801Z" + ".val": "2023-11-01T03:44:50.801Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b39e623f45c84387bb776768", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696218290801, "net_received_amount": 0, @@ -30338,18 +45260,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696218290801" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "37c33ac0390a445ab6bbb724", + "revision_nr": 1, + "created": 1701459383500, + "modified": 1701459383500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696218290801", + "revision": "3fb68aad318d4102965cb130", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -30359,51 +45304,72 @@ "total_amount": 150, "id": "1696218290801", "history_id": "1696218290801", - "date_created": "2023-10-02T03:44:50.801Z", - "date_last_updated": "2023-10-02T03:44:50.801Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 150,00 BRL para a carteira iVip 0441.0726.0739.8660-40" + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "61d28caf354a40bab83a2495", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { - "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-11-04T13:24:49.783Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 150,00 BRL para a carteira iVip 0441.0726.0739.8660-40", + "revision": "5fb7b025cc9a4c438b866cb8", "revision_nr": 1, - "created": 1700748395480, - "modified": 1700748395480 + "created": 1701459383500, + "modified": 1701459383500 } }, { - "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/details/costs", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-11-04T13:24:49.783Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } + }, + "revision": "b8eba2b55483496e9c610b77", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696512289784, "net_received_amount": 0, @@ -30413,18 +45379,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696512289784" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d9d1361bef034047bed8722b", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696512289784", + "revision": "fa5eeada30d246d9bea8a28f", + "revision_nr": 1, + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -30434,51 +45423,72 @@ "total_amount": 100, "id": "1696512289784", "history_id": "1696512289784", - "date_created": "2023-10-05T13:24:49.784Z", - "date_last_updated": "2023-10-05T13:24:49.784Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 100,00 BRL para a carteira iVip 0441.0726.0739.8660-40" + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b1f24fa6042140a0b160ae2d", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { - "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-11-06T13:24:29.126Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0441.0726.0739.8660-40", + "revision": "ab67f2a329494eb184353140", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { - "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/details/costs", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-11-06T13:24:29.126Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } + }, + "revision": "4c9cd60fc01e4a188acea1fb", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696685069127", "net_received_amount": 0, @@ -30488,18 +45498,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696685069127" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "19d603269dc045a9913ab5ed", + "revision_nr": 1, + "created": 1701459383500, + "modified": 1701459383500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696685069127", + "revision": "3a52e7744f414daab86cecf0", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -30509,8 +45542,14 @@ "total_amount": 100, "id": "1696685069127", "history_id": "1696685069127", - "date_created": "2023-10-07T13:24:29.127Z", - "date_last_updated": "2023-10-07T14:40:38.574Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30521,29 +45560,32 @@ "money_release_date": "2023-10-07T14:40:38.574Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 100,00 BRL para a carteira iVip 0441.0726.0739.8660-40" + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "058efb83df5646bca8bdadc2", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { - "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696690479419/details/costs", + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0441.0726.0739.8660-40", + "revision": "a6b50d825481490691106536", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696690479419/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696690479419", "net_received_amount": 0, @@ -30553,18 +45595,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696690479419" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8f136f2db7ad43ffb9be638e", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696690479419/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696690479419", + "revision": "55f6c1d57bb347ada2152932", + "revision_nr": 1, + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696690479419", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -30574,9 +45639,18 @@ "total_amount": 127146, "id": "1696690479419", "history_id": "1696690479419", - "date_created": "2023-10-07T14:54:39.419Z", - "date_last_updated": "2023-10-07T14:54:39.419Z", - "date_of_expiration": "2023-10-07T14:54:39.419Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -30585,101 +45659,128 @@ "description": "Compra de 127.146,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "215f4a039f864bc583004afb", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "58eccb4f9db149dc8964fee4", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a73b80b013b0441fb5ee6b34", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d07235e4f63f46029bfe8277", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1696161500774, "dateValidity": 1696161500803, "currencyType": "USD", - "balancesModificacao": "2023-10-11T03:00:00.000Z" + "balancesModificacao": "2023-10-11T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "444d5d2deaa947f6bca005fa", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "87b912ce7ac34009b7365b07", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } + }, + "revision": "7b9d38cef49e4b62bdafc1be", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -30688,100 +45789,146 @@ "total_amount": 20, "history_id": 1678092684774, "id": 1678092684774, - "date_created": "2023-03-06T08:51:24.774Z", - "date_last_updated": "2023-03-06T08:51:24.774Z", - "date_of_expiration": "2023-04-05T08:51:24.774Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0443.9842.9081.9756-60" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7d68d4ef9ab948c49feafd5e", + "revision_nr": 1, + "created": 1701459383500, + "modified": 1701459383500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0443.9842.9081.9756-60", + "revision": "aecda63aa36140febcba2b8e", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "13f3e08cc11242d2a43509c1", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678092570010, "dateValidity": 1678110570040, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5c8d39addeb44b269bcc4f41", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "615.00000000", "symbol": "IVIP", - "value": 0.094 + "value": 0.094, + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "38d655e0b8f7454d9510b921", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3a8d12897b0b48478dc513ec", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } + }, + "revision": "0f7b2085b3a2481fb0363727", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -30790,9 +45937,18 @@ "total_amount": 1500, "history_id": 1678363004367, "id": 1678363004367, - "date_created": "2023-03-09T11:56:44.367Z", - "date_last_updated": "2023-03-09T11:57:54.662Z", - "date_of_expiration": "2023-04-08T11:56:44.367Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -30800,41 +45956,54 @@ "date_approved": "2023-03-09T11:57:54.662Z", "money_release_date": "2023-03-09T11:57:54.662Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0451.2281.2371.7113-40" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8a90c49d0973456e8a495408", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { - "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817/details/costs", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0451.2281.2371.7113-40", + "revision": "552e32ef46af41bda0d67301", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } + }, + "revision": "9e962ad4c5b245298ec92e1c", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -30843,9 +46012,18 @@ "total_amount": 150, "history_id": 1678578646817, "id": 1678578646817, - "date_created": "2023-03-11T23:50:46.817Z", - "date_last_updated": "2023-03-11T23:52:26.705Z", - "date_of_expiration": "2023-04-10T23:50:46.817Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -30853,30 +46031,29 @@ "date_approved": "2023-03-11T23:52:26.705Z", "money_release_date": "2023-03-11T23:52:26.705Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 150,00 para a carteira iVip 0451.2281.2371.7113-40" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "80ebf03e11b1436ca26b53d6", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { - "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1679266969508/details/costs", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0451.2281.2371.7113-40", + "revision": "b315c74173944351b2ba0d3a", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1679266969508/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679266969508, @@ -30887,18 +46064,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "625e6d78be554518bcb60269", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1679266969508", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -30908,9 +46098,18 @@ "original_amount": 9610615, "total_amount": 9610615, "id": 1679266969508, - "date_created": "2023-03-19T23:02:49.508Z", - "date_last_updated": "2023-03-19T23:02:49.508Z", - "date_of_expiration": "2023-03-19T23:02:49.508Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30919,27 +46118,16 @@ "history_id": 1679266969508, "description": "Compra de 9610615 IVIP por 1650 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "63ffd650c1694dda88a374b8", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1681517575873/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1681517575873/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1681517575873, @@ -30950,18 +46138,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e895092009f64f11b6e64d36", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1681517575873", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -30971,38 +46172,46 @@ "original_amount": 1000, "total_amount": 1000, "id": 1681517575873, - "date_created": "2023-04-15T00:12:55.873Z", - "date_last_updated": "2023-04-15T00:12:55.873Z", - "date_of_expiration": "2023-04-15T00:12:55.873Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIPAY", - "history_id": 1681517575873, - "description": "Compra de 1.000,00 IVIPAY por 100,00 IVIP estabilizando US$ 0,00" + "history_id": 1681517575873 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b2d1873138094ce8b1f84f23", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { - "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685393623279/details/costs", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1681517575873/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 1.000,00 IVIPAY por 100,00 IVIP estabilizando US$ 0,00", + "revision": "8d5007cc66b24373a292ea22", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685393623279/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685393623279, @@ -31013,18 +46222,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9b0ef2cc79b4472d8d60cb5f", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685393623279", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -31034,9 +46256,18 @@ "original_amount": 100, "total_amount": 100, "id": 1685393623279, - "date_created": "2023-05-29T20:53:43.279Z", - "date_last_updated": "2023-05-29T20:53:43.279Z", - "date_of_expiration": "2023-05-29T20:53:43.279Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31045,27 +46276,16 @@ "history_id": 1685393623279, "description": "Compra de 100,00 IVIP por 1.000,00 IVIPAY" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "97fae32d015245b2a3ba1cda", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685666780649/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685666780649/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685666780649, @@ -31076,18 +46296,31 @@ "overpaid_amount": 0, "installment_amount": 8000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "edbb434f9fa2439cbec1be3b", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685666780649", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -31096,38 +46329,46 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685666780649, - "date_created": "2023-06-02T00:46:20.649Z", - "date_last_updated": "2023-06-02T00:46:20.649Z", - "date_of_expiration": "2023-07-02T00:46:20.649Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685666780649, - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023" + "history_id": 1685666780649 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "73ecb1623992457388d29f1b", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { - "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688400356570/details/costs", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685666780649/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", + "revision": "fab2cafac21040bfb810a16d", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688400356570/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688400356570, @@ -31138,18 +46379,31 @@ "overpaid_amount": 0, "installment_amount": 8000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "893c8acfe00a459397cbfbf4", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688400356570", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -31158,50 +46412,72 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1688400356570, - "date_created": "2023-07-03T16:05:56.570Z", - "date_last_updated": "2023-07-03T16:05:56.570Z", - "date_of_expiration": "2023-07-03T16:05:56.570Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1688400356570, - "wasDebited": true, - "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "14b7c23890384572a424d62b", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { - "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097/details/costs", + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688400356570/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", + "revision": "8d10832539924513be5ca5f1", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } + }, + "revision": "d0d4ce99fd044a94844c9c7d", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -31210,9 +46486,18 @@ "total_amount": 9770000, "history_id": 1688402757097, "id": 1688402757097, - "date_created": "2023-07-03T16:45:57.097Z", - "date_last_updated": "2023-07-04T20:33:31.967Z", - "date_of_expiration": "2023-07-03T16:45:57.097Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -31220,122 +46505,171 @@ "date_approved": "2023-07-04T20:33:31.967Z", "money_release_date": "2023-07-04T20:33:31.967Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 9.770.000,00 IVIP para a carteira 0xB33c611edEE4ac91638b50464CB3bfd488551499" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d6008462acec47a0829a6594", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097/description", + "content": { + "type": "STRING", + "value": "Saque de 9.770.000,00 IVIP para a carteira 0xB33c611edEE4ac91638b50464CB3bfd488551499", + "revision": "ce0f6cd1be394d499901ebd0", + "revision_nr": 1, + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6c54f28439f4475bac46de46", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dc2024ea77a346e5b2d3cf6c", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 3000, "limitUsed": 0, "analysisRequested": "2023-04-04T17:16:15.345Z", - "lastReview": "2023-04-08T18:26:11.033Z" + "lastReview": "2023-04-08T18:26:11.033Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "55f925a322fc4de8b2fd751e", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678330009291, "dateValidity": 1678662517584, "totalValue": 0.17, "currencyType": "BRL", - "balancesModificacao": "2023-10-06T03:00:00.000Z" + "balancesModificacao": "2023-10-06T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a04e979b1a5147d68c2f96de", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "32771309.00000000", "symbol": "IVIP", - "value": 4296.45 + "value": 4296.45, + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1edfc8bf9a1f4fb68f578a71", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "502aaa975dc547dfa4af57af", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } + }, + "revision": "4b592301e9b64488a7b21872", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -31344,9 +46678,18 @@ "total_amount": 4000, "history_id": 1678148520442, "id": 1678148520442, - "date_created": "2023-03-07T00:22:00.442Z", - "date_last_updated": "2023-03-07T16:04:13.026Z", - "date_of_expiration": "2023-04-06T00:22:00.442Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -31354,30 +46697,29 @@ "date_approved": "2023-03-07T16:04:13.026Z", "money_release_date": "2023-03-07T16:04:13.026Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1d9e46af3ec9485789911361", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { - "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678207899775/details/costs", + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", + "revision": "04332f943f8548298d5bfd0a", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678207899775/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678207899775, @@ -31388,18 +46730,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bdf5e4d94fe54a4793a8e38c", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678207899775", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -31409,9 +46764,18 @@ "original_amount": 28376575, "total_amount": 28376575, "id": 1678207899775, - "date_created": "2023-03-07T16:51:39.775Z", - "date_last_updated": "2023-03-07T16:51:39.775Z", - "date_of_expiration": "2023-03-07T16:51:39.775Z", + "date_created": { + "type": 6, + "value": 1701459383500 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383500 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383500 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31420,38 +46784,41 @@ "history_id": 1678207899775, "description": "Compra de 28376575 IVIP por 4000 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4eb454a81ef845198177bb04", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383500, + "modified": 1701459383500 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } + }, + "revision": "447ec31832cd44e88f050b15", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -31460,9 +46827,18 @@ "total_amount": 4000, "history_id": 1689022785271, "id": 1689022785271, - "date_created": "2023-07-10T20:59:45.271Z", - "date_last_updated": "2023-07-10T21:11:29.899Z", - "date_of_expiration": "2023-08-09T20:59:45.271Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -31470,41 +46846,54 @@ "date_approved": "2023-07-10T21:11:29.899Z", "money_release_date": "2023-07-10T21:11:29.899Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6857711c3a204f1ba6288d1b", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { - "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520/details/costs", + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", + "revision": "0983faf26aee45808a6a16eb", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } + }, + "revision": "2846c247adc14c5cbbb04d90", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -31513,36 +46902,44 @@ "total_amount": 4000, "history_id": 1689022932520, "id": 1689022932520, - "date_created": "2023-07-10T21:02:12.520Z", - "date_last_updated": "2023-07-10T21:02:12.520Z", - "date_of_expiration": "2023-08-09T21:02:12.520Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aa86ab89f0e046df9a4c1121", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { - "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689025604196/details/costs", + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", + "revision": "e2f40b072f4f461f8505faa7", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689025604196/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689025604196, @@ -31553,18 +46950,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "59465c749aaf4131a0ec4ecb", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689025604196", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -31574,9 +46984,18 @@ "original_amount": 3621314, "total_amount": 3621314, "id": 1689025604196, - "date_created": "2023-07-10T21:46:44.196Z", - "date_last_updated": "2023-07-10T21:46:44.196Z", - "date_of_expiration": "2023-07-10T21:46:44.196Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31585,38 +47004,41 @@ "history_id": 1689025604196, "description": "Compra de 3.621.314,00 IVIP por 4.000,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1a5f68717bee49cfbdbe8e8f", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } + }, + "revision": "5ed95022a1db4e5daa9e7bf8", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -31625,9 +47047,18 @@ "total_amount": 2000, "history_id": 1689196978297, "id": 1689196978297, - "date_created": "2023-07-12T21:22:58.297Z", - "date_last_updated": "2023-07-13T14:12:53.443Z", - "date_of_expiration": "2023-08-11T21:22:58.297Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -31635,30 +47066,29 @@ "date_approved": "2023-07-13T14:12:53.443Z", "money_release_date": "2023-07-13T14:12:53.443Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0454.0726.5934.5405-84" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "62f58d65f90f4033935a9c21", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { - "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689258784601/details/costs", + "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0454.0726.5934.5405-84", + "revision": "95d6ae4f466c43a28c32f1dc", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689258784601/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689258784601, @@ -31669,18 +47099,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d4ec507aa0314d3088cfd7a1", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689258784601", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -31690,9 +47133,18 @@ "original_amount": 773420, "total_amount": 773420, "id": 1689258784601, - "date_created": "2023-07-13T14:33:04.601Z", - "date_last_updated": "2023-07-13T14:33:04.601Z", - "date_of_expiration": "2023-07-13T14:33:04.601Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31701,256 +47153,343 @@ "history_id": 1689258784601, "description": "Compra de 773.420,00 IVIP por 2.000,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f2b7a65d223544b988d70676", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8c33c63392174458a4c3d992", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "190d539b1728492fa27c926a", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "be11355dad91477a8e372752", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678132398712, "dateValidity": 1678671560774, "totalValue": 7620.23, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z" + "balancesModificacao": "2023-10-09T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8507faf55b994039953bee23", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/045642520706235200/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ecd7eaf6eb7c4a43aeca515b", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/045642520706235200/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1117729fa7c94caab8e8969c", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/045642520706235200", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678565263127, "dateValidity": 1678579663168, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5ba86f2324254326986f08f2", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/046564008100064220/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ad9f6b36504749068f7a3224", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/046564008100064220/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "15f56c1843d04b5e886d394d", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/046564008100064220/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "437f0743f83245258b159bf0", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/046564008100064220/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "da74766a5719410a856cdf06", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/046564008100064220", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1696462399261, "dateValidity": 1696462399357, "currencyType": "USD", - "balancesModificacao": "2023-10-13T03:00:00.000Z" + "balancesModificacao": "2023-10-13T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f643ab785eb74fa2961aaa8a", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047633761232259040/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "62470b53fa694792a4174d81", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047633761232259040/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1bb0375ff85140cbab5a1bd6", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047633761232259040", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1692582136079, "dateValidity": 1692582136128, "currencyType": "USD", - "balancesModificacao": "2023-08-20T03:00:00.000Z" + "balancesModificacao": "2023-08-20T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e81ded2a58a64cb8a60d1f0d", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "8588955.54000000", "symbol": "IVIP", - "value": 4678.3 + "value": 4678.3, + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c849964ab8e1410ca47dda34", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "63a2e12d9e114e59b0167237", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } + }, + "revision": "9214f6c6bd654aecaccf4a81", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -31959,9 +47498,18 @@ "total_amount": 5000, "history_id": 1683569771704, "id": 1683569771704, - "date_created": "2023-05-08T18:16:11.704Z", - "date_last_updated": "2023-05-08T18:34:33.225Z", - "date_of_expiration": "2023-06-07T18:16:11.704Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -31969,30 +47517,29 @@ "date_approved": "2023-05-08T18:34:33.225Z", "money_release_date": "2023-05-08T18:34:33.225Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 5.000,00 para a carteira iVip 0479.2557.7230.6628-20" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c18104bdee184044bd02fe71", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1684018936403/details/costs", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 5.000,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "fd2c81c8336342ddad35797e", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1684018936403/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684018936403, @@ -32003,18 +47550,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5dd26d8482344f93953f9a0c", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1684018936403", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -32024,9 +47584,18 @@ "original_amount": 27021960, "total_amount": 27021960, "id": 1684018936403, - "date_created": "2023-05-13T23:02:16.403Z", - "date_last_updated": "2023-05-13T23:02:16.403Z", - "date_of_expiration": "2023-05-13T23:02:16.403Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32035,27 +47604,16 @@ "history_id": 1684018936403, "description": "Compra de 27.021.960,00 IVIP por 5.000,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c0f53379c62b49f2879056f5", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688531798249/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688531798249/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688531798249, @@ -32066,18 +47624,31 @@ "overpaid_amount": 0, "installment_amount": 7668365, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2cbcab27878849929d8c6391", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688531798249", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -32086,50 +47657,72 @@ "original_amount": 7668365, "total_amount": 7668365, "id": 1688531798249, - "date_created": "2023-07-05T04:36:38.249Z", - "date_last_updated": "2023-07-05T04:36:38.249Z", - "date_of_expiration": "2023-08-05T04:36:38.249Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1688531798249, - "wasDebited": true, - "description": "Investimento de 7.668.365,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d3c5632456884674b5fd68aa", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933/details/costs", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688531798249/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 7.668.365,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", + "revision": "06254239e97f46adb925713b", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } + }, + "revision": "7939bab5e75349bc837174d9", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -32138,9 +47731,18 @@ "total_amount": 500, "history_id": 1688647483933, "id": 1688647483933, - "date_created": "2023-07-06T12:44:43.933Z", - "date_last_updated": "2023-07-07T22:01:16.048Z", - "date_of_expiration": "2023-08-05T12:44:43.933Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -32148,30 +47750,29 @@ "date_approved": "2023-07-07T22:01:16.048Z", "money_release_date": "2023-07-07T22:01:16.048Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0479.2557.7230.6628-20" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fda9f213528945df910933ee", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688771723408/details/costs", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "3c1e3bb3cbc5495b90762a57", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688771723408/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688771723408, @@ -32182,18 +47783,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d736c37334f0417ebc2d7580", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688771723408", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -32203,9 +47817,18 @@ "original_amount": 823634, "total_amount": 823634, "id": 1688771723408, - "date_created": "2023-07-07T23:15:23.408Z", - "date_last_updated": "2023-07-07T23:15:23.408Z", - "date_of_expiration": "2023-07-07T23:15:23.408Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32214,38 +47837,41 @@ "history_id": 1688771723408, "description": "Compra de 823.634,00 IVIP por 500,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "caa50ef55e6f44c0a92ddbf8", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } + }, + "revision": "1ce15db8906f44a4b99b23c1", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -32254,9 +47880,18 @@ "total_amount": 1000, "history_id": 1689021558105, "id": 1689021558105, - "date_created": "2023-07-10T20:39:18.105Z", - "date_last_updated": "2023-07-10T21:07:02.567Z", - "date_of_expiration": "2023-08-09T20:39:18.105Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -32264,30 +47899,29 @@ "date_approved": "2023-07-10T21:07:02.567Z", "money_release_date": "2023-07-10T21:07:02.567Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0479.2557.7230.6628-20" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f2d54939a751400594075e7f", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689023394597/details/costs", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "71fcc907485f4a76ae63c9da", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689023394597/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689023394597, @@ -32298,18 +47932,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c497dc45372340898ea3dd13", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689023394597", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -32319,9 +47966,18 @@ "original_amount": 914949, "total_amount": 914949, "id": 1689023394597, - "date_created": "2023-07-10T21:09:54.597Z", - "date_last_updated": "2023-07-10T21:09:54.597Z", - "date_of_expiration": "2023-07-10T21:09:54.597Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32330,38 +47986,41 @@ "history_id": 1689023394597, "description": "Compra de 914.949,00 IVIP por 1.000,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "be577170f82c42da86a7bd24", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } + }, + "revision": "704080a2f3b2431ab8c57997", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -32370,9 +48029,18 @@ "total_amount": 1000, "history_id": 1689248290301, "id": 1689248290301, - "date_created": "2023-07-13T11:38:10.301Z", - "date_last_updated": "2023-07-13T13:59:27.203Z", - "date_of_expiration": "2023-08-12T11:38:10.301Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -32380,30 +48048,29 @@ "date_approved": "2023-07-13T13:59:27.203Z", "money_release_date": "2023-07-13T13:59:27.203Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0479.2557.7230.6628-20" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5f2b87931fbb4798b810e1ba", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689260053657/details/costs", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "f721c63f947741ec9fb870f4", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689260053657/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689260053657, @@ -32414,18 +48081,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6607cc955a0c4f1b9acd30dd", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689260053657", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -32435,9 +48115,18 @@ "original_amount": 381522, "total_amount": 381522, "id": 1689260053657, - "date_created": "2023-07-13T14:54:13.657Z", - "date_last_updated": "2023-07-13T14:54:13.657Z", - "date_of_expiration": "2023-07-13T14:54:13.657Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32446,27 +48135,16 @@ "history_id": 1689260053657, "description": "Compra de 381.522,00 IVIP por 1.000,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689301547038/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4aaed28d95ae490990b726cf", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689301547038/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689301547038, @@ -32477,18 +48155,31 @@ "overpaid_amount": 0, "installment_amount": 5008550, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "506c2597954b4e29b30175f2", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689301547038", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -32497,49 +48188,71 @@ "original_amount": 5008550, "total_amount": 5008550, "id": 1689301547038, - "date_created": "2023-07-14T02:25:47.038Z", - "date_last_updated": "2023-07-14T02:25:47.038Z", - "date_of_expiration": "2025-07-14T02:25:47.038Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1689301547038, - "description": "Investimento de 5.008.550,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/13/2025" + "history_id": 1689301547038 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a8cbc366ce294e5d9780bb54", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691/details/costs", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689301547038/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 5.008.550,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/13/2025", + "revision": "ad963ffccf2d4bb0b5bccdef", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } + }, + "revision": "c538203553334a45b2e83867", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -32548,9 +48261,18 @@ "total_amount": 2000, "history_id": 1689355287691, "id": 1689355287691, - "date_created": "2023-07-14T17:21:27.691Z", - "date_last_updated": "2023-07-14T17:35:36.387Z", - "date_of_expiration": "2023-08-13T17:21:27.691Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -32558,30 +48280,29 @@ "date_approved": "2023-07-14T17:35:36.387Z", "money_release_date": "2023-07-14T17:35:36.387Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0479.2557.7230.6628-20" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e05caf60397d4bc9a9579172", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689356922364/details/costs", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "bef1b7067e324a0d9d5345fa", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689356922364/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689356922364, @@ -32592,18 +48313,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fcf3279396c34a9d8db053a9", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689356922364", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -32613,9 +48347,18 @@ "original_amount": 1235586, "total_amount": 1235586, "id": 1689356922364, - "date_created": "2023-07-14T17:48:42.364Z", - "date_last_updated": "2023-07-14T17:48:42.364Z", - "date_of_expiration": "2023-07-14T17:48:42.364Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32624,41 +48367,42 @@ "history_id": 1689356922364, "description": "Compra de 1.235.586,00 IVIP por 2.000,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f8c2009b5ceb45ccbe308b2a", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-19T15:43:07.113Z" + ".val": "2023-08-19T15:43:07.113Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "868c0df8f21f45dd92ab8b90", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1689867787119, "net_received_amount": 0, @@ -32668,18 +48412,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/extract/047925577230662820/order/1689867787113" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "baba9d941d2d42be9832ba25", + "revision_nr": 1, + "created": 1701459383501, + "modified": 1701459383501 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/extract/047925577230662820/order/1689867787113", + "revision": "088296d333ff408c9591ac15", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -32688,51 +48455,72 @@ "total_amount": 3000, "id": 1689867787119, "history_id": 1689867787119, - "date_created": "2023-07-20T15:43:07.119Z", - "date_last_updated": "2023-07-20T15:43:07.119Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0479.2557.7230.6628-20" + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9d185cb02b9e4deea1818a29", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-08-20T12:25:11.952Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "9efdad20cfcf4e4994d9cc0e", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/details/costs", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-08-20T12:25:11.952Z", + "date_created": { + "type": 6, + "value": 1701459383501 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383501 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383501 + } + }, + "revision": "c5e91dcd83e44e2d8c4a79f9", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1689942311952, "net_received_amount": 0, @@ -32742,18 +48530,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1689942311952" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e55843da352c48cc870c241e", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1689942311952", + "revision": "2532765e350740458e695257", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -32762,8 +48573,14 @@ "total_amount": 3000, "id": 1689942311952, "history_id": 1689942311952, - "date_created": "2023-07-21T12:25:11.952Z", - "date_last_updated": "2023-07-21T12:25:38.759Z", + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32774,29 +48591,32 @@ "money_release_date": "2023-07-21T12:25:38.759Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0479.2557.7230.6628-20" + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0da0f26f1231431b9a177d59", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942442311/details/costs", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "fe1ef497920e4afa82378459", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383501, + "modified": 1701459383501 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942442311/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689942442311, @@ -32807,18 +48627,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d1ef2efe9d844cada4eebf5d", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942442311", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -32828,9 +48661,18 @@ "original_amount": 1849758, "total_amount": 1849758, "id": 1689942442311, - "date_created": "2023-07-21T12:27:22.311Z", - "date_last_updated": "2023-07-21T12:27:22.311Z", - "date_of_expiration": "2023-07-21T12:27:22.311Z", + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32839,41 +48681,42 @@ "history_id": 1689942442311, "description": "Compra de 1.849.758,00 IVIP por 3.000,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "61aad1b7a417464eb0ca8afe", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-04T01:54:56.983Z" + ".val": "2023-09-04T01:54:56.983Z", + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "48787ef428e241c8a18eec99", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691200496984, "net_received_amount": 0, @@ -32883,18 +48726,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691200496984" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "444ae69a8c594fa0a0327782", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691200496984", + "revision": "2862575a5f22484a9100bf93", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -32903,37 +48769,46 @@ "total_amount": 2000, "id": 1691200496984, "history_id": 1691200496984, - "date_created": "2023-08-05T01:54:56.984Z", - "date_last_updated": "2023-08-05T01:54:56.984Z", + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 2.000,00 para a carteira iVip 0479.2557.7230.6628-20" + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "526cc47945694ae3898042bb", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883/details/costs", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 2.000,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "849b43278d96428bb7b66f13", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691214286883, "net_received_amount": 0, @@ -32943,18 +48818,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691214286883" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "17cba36686a7452d94e67c7a", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691214286883", + "revision": "35efaca8d2a742c18bd698ce", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -32963,52 +48861,72 @@ "total_amount": 7821732.3, "id": 1691214286883, "history_id": 1691214286883, - "date_created": "2023-08-05T05:44:46.883Z", - "date_last_updated": "2023-08-05T05:44:46.883Z", - "date_of_expiration": "2023-08-05T05:44:46.883Z", + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 7.668.365,00 IVIP com um rendimento de +153.367,3 IVIP (2,00%)" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "37db22454aa0445a9165f63d", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-04T16:30:25.281Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 7.668.365,00 IVIP com um rendimento de +153.367,3 IVIP (2,00%)", + "revision": "d17dac8451844769a3d92c8d", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/details/costs", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-04T16:30:25.281Z", + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } + }, + "revision": "43a7da41587d4b29a316c3fc", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691253025281, "net_received_amount": 0, @@ -33018,18 +48936,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691253025281" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6cd16ec61b2748b68a5e0f38", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691253025281", + "revision": "d283560f12444dc88b1d00c3", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -33038,8 +48979,14 @@ "total_amount": 1500, "id": 1691253025281, "history_id": 1691253025281, - "date_created": "2023-08-05T16:30:25.281Z", - "date_last_updated": "2023-08-05T16:33:34.508Z", + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33050,29 +48997,32 @@ "money_release_date": "2023-08-05T16:33:34.508Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 1.500,00 para a carteira iVip 0479.2557.7230.6628-20" + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bd31843f759148ed8ab4132f", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691280221861/details/costs", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 1.500,00 para a carteira iVip 0479.2557.7230.6628-20", + "revision": "1b7ca12f035e4bb7bcda7418", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691280221861/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691280221861, "net_received_amount": 0, @@ -33082,18 +49032,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691280221861" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bfb06571ac654d3d9c657b22", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691280221861/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691280221861", + "revision": "54c088d64c13417693ef2679", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691280221861", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -33102,9 +49075,18 @@ "total_amount": 2127119, "id": 1691280221861, "history_id": 1691280221861, - "date_created": "2023-08-06T00:03:41.861Z", - "date_last_updated": "2023-08-06T00:03:41.861Z", - "date_of_expiration": "2023-08-06T00:03:41.861Z", + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -33113,27 +49095,16 @@ "description": "Compra de 2.127.119,00 IVIP por 1.500,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2c2c278c9ffd4281b24de599", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691283205891, "net_received_amount": 0, @@ -33143,18 +49114,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691283205891" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f6965faa0564489ebab14511", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691283205891", + "revision": "e5fb67a925314d9b9ffba713", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -33163,38 +49157,46 @@ "total_amount": 7769562, "id": 1691283205891, "history_id": 1691283205891, - "date_created": "2023-08-06T00:53:25.891Z", - "date_last_updated": "2023-08-06T00:53:25.891Z", - "date_of_expiration": "2023-09-06T00:53:25.891Z", + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 7.769.562,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7f2715dfcc1c4b9da09fed91", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688/details/costs", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 7.769.562,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", + "revision": "f9895dbfd65040f392dc2d77", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693962455688, "net_received_amount": 0, @@ -33204,18 +49206,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1693962455688" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "822245a62ccd4f9cad312e2d", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1693962455688", + "revision": "7662cc636cfd4824bf4add07", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -33224,38 +49249,46 @@ "total_amount": 7924953.24, "id": "1693962455688", "history_id": "1693962455688", - "date_created": "2023-09-06T01:07:35.688Z", - "date_last_updated": "2023-09-06T01:07:35.688Z", - "date_of_expiration": "2023-09-06T01:07:35.688Z", + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 7.769.562,00 IVIP com um rendimento de +155.391,24 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "99e1162b2215434da0d592c2", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967/details/costs", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 7.769.562,00 IVIP com um rendimento de +155.391,24 IVIP (2,00%) - Y12XDT27", + "revision": "7f403dff5744476ab05530a2", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693962525967, "net_received_amount": 0, @@ -33265,18 +49298,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1693962525967" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b3f21ce13b3c4d5cad038384", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1693962525967", + "revision": "52a137952945427b8846fdc8", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -33285,9 +49341,18 @@ "total_amount": 7931475, "id": "1693962525967", "history_id": "1693962525967", - "date_created": "2023-09-06T01:08:45.967Z", - "date_last_updated": "2023-10-04T13:04:02.602Z", - "date_of_expiration": "2023-10-06T01:08:45.967Z", + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -33296,30 +49361,29 @@ "status_detail": "cc_rejected_insufficient_staked_amount", "money_release_date": "2023-10-04T13:04:02.602Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Investimento de 7.931.475,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bda0d20f329f483a80ca0f48", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103/details/costs", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 7.931.475,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", + "revision": "8f4727a4567f4d32ab9d2f8e", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695167532103, "net_received_amount": 0, @@ -33329,18 +49393,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1695167532103" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e2e726aabbb14921a305392f", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1695167532103", + "revision": "90e66903165249ff89a64f2d", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -33349,9 +49436,18 @@ "total_amount": 19942224, "id": "1695167532103", "history_id": "1695167532103", - "date_created": "2023-09-19T23:52:12.103Z", - "date_last_updated": "2023-09-25T21:44:47.175Z", - "date_of_expiration": "2024-03-19T23:52:12.102Z", + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -33360,34 +49456,56 @@ "status_detail": "cc_rejected_insufficient_staked_amount", "money_release_date": "2023-09-25T21:44:47.175Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Investimento de 19.942.224,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ade6d030ef794b1d9dd38ec3", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103/description", + "content": { + "type": "STRING", + "value": "Investimento de 19.942.224,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", + "revision": "21f8d352546c4b51bd3d9ec9", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 30 + "amount": 30, + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7bdd355b9fc54b09b8ab1434", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695956035041, "net_received_amount": 0, @@ -33397,18 +49515,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1695956035041" + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "17ee5e5356be498e9ecb3a6f", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1695956035041", + "revision": "d8c200de98914553ae33c965", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "cb2283b54ccf416bbc0c8ae1", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -33418,9 +49569,18 @@ "total_amount": 970, "id": "1695956035041", "history_id": "1695956035041", - "date_created": "2023-09-29T02:53:55.041Z", - "date_last_updated": "2023-10-03T00:23:57.561Z", - "date_of_expiration": "2023-09-29T02:53:55.041Z", + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -33430,34 +49590,56 @@ "date_approved": "2023-10-03T00:23:57.561Z", "money_release_date": "2023-10-03T00:23:57.561Z", "money_release_status": "drawee", - "wasDebited": true, - "description": "Saque de 970,00 IVIP para a carteira 0x24f07CBa773a4bF9373E50A5694BAb23E5eF5557" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ff8ec575d60846f981be83bd", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/description", + "content": { + "type": "STRING", + "value": "Saque de 970,00 IVIP para a carteira 0x24f07CBa773a4bF9373E50A5694BAb23E5eF5557", + "revision": "5615287673b342ae8e404da2", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 651697.8461999999 + "amount": 651697.8461999999, + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4467599a45a84e23a6a7ac8d", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696003948025, "net_received_amount": 0, @@ -33467,18 +49649,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696003948025" + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d4cd4a118a8f43e58d84eecf", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696003948025", + "revision": "e75cfa3d6a0a4dbca5a0aec9", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "10db2d1dacaa43f19fc5016e", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -33488,9 +49703,18 @@ "total_amount": 21071563.6938, "id": "1696003948025", "history_id": "1696003948025", - "date_created": "2023-09-29T16:12:28.025Z", - "date_last_updated": "2023-10-03T00:26:33.604Z", - "date_of_expiration": "2023-09-29T16:12:28.025Z", + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -33500,34 +49724,56 @@ "date_approved": "2023-10-03T00:26:33.604Z", "money_release_date": "2023-10-03T00:26:33.604Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Saque de 21.071.563,69 IVIP para a carteira 0x24f07CBa773a4bF9373E50A5694BAb23E5eF5557" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d7f78648c06b49b1a3cc3ad1", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/description", + "content": { + "type": "STRING", + "value": "Saque de 21.071.563,69 IVIP para a carteira 0x24f07CBa773a4bF9373E50A5694BAb23E5eF5557", + "revision": "b137ac47a2904d668ca22f9e", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 304593.12 + "amount": 304593.12, + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "296e2cdc3c8345c489605f73", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696207958470, "net_received_amount": 0, @@ -33537,18 +49783,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696207958470" + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bc4ce98ef9004349b4b849d4", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696207958470", + "revision": "a3a8307bef3a46f08764af2c", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "f785066f248c4ca19edc6c90", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -33558,9 +49837,18 @@ "total_amount": 9848510.88, "id": "1696207958470", "history_id": "1696207958470", - "date_created": "2023-10-02T00:52:38.470Z", - "date_last_updated": "2023-10-03T00:42:07.841Z", - "date_of_expiration": "2023-10-02T00:52:38.470Z", + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -33569,34 +49857,56 @@ "status_detail": "cc_rejected_account_contains_debit_balance", "money_release_date": "2023-10-03T00:42:07.841Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Saque de 9.848.510,88 IVIP para a carteira 0x8de82EE9234B9dF85A4CBc083E49A0B8Db0D4aD1" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8b13c3bcddb34a83bf894697", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/description", + "content": { + "type": "STRING", + "value": "Saque de 9.848.510,88 IVIP para a carteira 0x8de82EE9234B9dF85A4CBc083E49A0B8Db0D4aD1", + "revision": "5cfa7fe3eb8c48f48404e17a", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 600892.0499999999 + "amount": 600892.0499999999, + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fd994f14c26c43f49dc2e5a0", "revision_nr": 1, - "created": 1700748395481, - "modified": 1700748395481 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696471625534, "net_received_amount": 0, @@ -33606,18 +49916,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471625534" + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e67a187bebad41cca1c6ada7", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471625534", + "revision": "a5bb0c8276c5409eafa426b8", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "21bb77eb2752437fb2afeb67", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -33627,9 +49970,18 @@ "total_amount": 19428842.95, "id": "1696471625534", "history_id": "1696471625534", - "date_created": "2023-10-05T02:07:05.534Z", - "date_last_updated": "2023-10-05T03:03:32.296Z", - "date_of_expiration": "2023-10-05T02:07:05.534Z", + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -33639,30 +49991,29 @@ "date_approved": "2023-10-05T03:03:32.296Z", "money_release_date": "2023-10-05T03:03:32.296Z", "money_release_status": "drawee", - "wasDebited": true, - "description": "Saque de 19.428.842,95 IVIP para a carteira 0x8de82EE9234B9dF85A4CBc083E49A0B8Db0D4aD1" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3ba22307dbe243d6b0055080", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383502, + "modified": 1701459383502 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838/details/costs", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 19.428.842,95 IVIP para a carteira 0x8de82EE9234B9dF85A4CBc083E49A0B8Db0D4aD1", + "revision": "85c67bd93bf94e5095209fdf", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696471870838, "net_received_amount": 0, @@ -33672,18 +50023,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471870838" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4843d0e7c3314adcbc129006", + "revision_nr": 1, + "created": 1701459383502, + "modified": 1701459383502 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471870838", + "revision": "d8113782051d421b870f8ca3", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -33693,38 +50067,46 @@ "total_amount": 7931207, "id": "1696471870838", "history_id": "1696471870838", - "date_created": "2023-10-05T02:11:10.838Z", - "date_last_updated": "2023-10-05T02:11:10.838Z", - "date_of_expiration": "2023-11-05T02:11:10.607Z", + "date_created": { + "type": 6, + "value": 1701459383502 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383502 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383502 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "cc_rejected_call_for_authorize", - "description": "Investimento de 7.931.207,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + "status_detail": "cc_rejected_call_for_authorize" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c97ec5252c3447a5ba4af05b", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383502, + "modified": 1701459383502 } }, { - "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293/details/costs", + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 7.931.207,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "d1d1a55b53b4480f808c6478", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383502, + "modified": 1701459383502 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696471977293, "net_received_amount": 0, @@ -33734,18 +50116,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471977293" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9fa0e323d4d54a26b1840e01", + "revision_nr": 1, + "created": 1701459383503, + "modified": 1701459383503 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471977293", + "revision": "d23f7b0482e5490b85e463fb", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -33755,167 +50160,237 @@ "total_amount": 1035046, "id": "1696471977293", "history_id": "1696471977293", - "date_created": "2023-10-05T02:12:57.293Z", - "date_last_updated": "2023-10-05T02:12:57.293Z", - "date_of_expiration": "2023-11-05T02:12:57.200Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 1.035.046,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "15a859f4fd7a4d3a8534a03c", + "revision_nr": 1, + "created": 1701459383503, + "modified": 1701459383503 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293/description", + "content": { + "type": "STRING", + "value": "Investimento de 1.035.046,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "9b48ab94d0224232a6248bd4", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "45f08e6036b5498ea737d335", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ccc5bb4b21fd4c459ca1e407", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-09-29T03:14:47.898Z" + "analysisRequested": "2023-09-29T03:14:47.898Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1110a60ece0a45d3a67ba2b5", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1683569670949, "dateValidity": 1683569670949, "totalValue": 48201.8, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z" + "balancesModificacao": "2023-10-15T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6c41c57ca6b44f7e8d2660e4", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/049717311460128590/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d6dc37f13a294daf98033d62", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/049717311460128590/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2227675e0d514d8db393ffea", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/049717311460128590", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678063274590, "dateValidity": 1678170667714, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0b18490aa79247638ac60c6e", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "1392927.00000000", "symbol": "IVIP", - "value": 149.3 + "value": 149.3, + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5b629a3299334d2ea134a1b2", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6c8db038c8174c1d8ea682da", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } + }, + "revision": "d3441fd96cd2450889e4f16d", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -33924,9 +50399,18 @@ "total_amount": 300, "history_id": 1679232470571, "id": 1679232470571, - "date_created": "2023-03-19T13:27:50.571Z", - "date_last_updated": "2023-03-19T22:56:16.805Z", - "date_of_expiration": "2023-04-18T13:27:50.571Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -33934,41 +50418,54 @@ "date_approved": "2023-03-19T22:56:16.805Z", "money_release_date": "2023-03-19T22:56:16.805Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1e035d5bc64a4a2492f65ae8", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { - "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", + "revision": "3a2e9700f8034dfc8ae01453", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } + }, + "revision": "b6a54a766ebd4bc98ccbaf7e", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -33977,36 +50474,44 @@ "total_amount": 300, "history_id": 1679232566671, "id": 1679232566671, - "date_created": "2023-03-19T13:29:26.671Z", - "date_last_updated": "2023-03-19T13:29:26.671Z", - "date_of_expiration": "2023-04-18T13:29:26.671Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f99ff68ec7ab4012ae8f5559", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { - "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679871668854/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", + "revision": "c28ab8816f104485886e3944", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679871668854/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679871668854, @@ -34017,18 +50522,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f902f328c04b41db98a04e95", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679871668854", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -34038,9 +50556,18 @@ "original_amount": 1597688, "total_amount": 1597688, "id": 1679871668854, - "date_created": "2023-03-26T23:01:08.854Z", - "date_last_updated": "2023-03-26T23:01:08.854Z", - "date_of_expiration": "2023-03-26T23:01:08.854Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34049,38 +50576,41 @@ "history_id": 1679871668854, "description": "Compra de 1.597.688,00 IVIP por 300,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fe4aad8f56624ffbb02909ff", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } + }, + "revision": "aebdce06372946f79551fe81", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -34089,9 +50619,18 @@ "total_amount": 300, "history_id": 1684190255075, "id": 1684190255075, - "date_created": "2023-05-15T22:37:35.075Z", - "date_last_updated": "2023-05-16T12:11:16.762Z", - "date_of_expiration": "2023-06-14T22:37:35.075Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -34099,30 +50638,29 @@ "date_approved": "2023-05-16T12:11:16.762Z", "money_release_date": "2023-05-16T12:11:16.762Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "54dbf892762d49168e5eb33c", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { - "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684624205744/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", + "revision": "a892c482adfc49c5b3a633e4", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684624205744/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624205744, @@ -34133,18 +50671,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5280ecf436f64fdca8a982e8", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684624205744", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -34154,9 +50705,18 @@ "original_amount": 1461219, "total_amount": 1461219, "id": 1684624205744, - "date_created": "2023-05-20T23:10:05.744Z", - "date_last_updated": "2023-05-20T23:10:05.744Z", - "date_of_expiration": "2023-05-20T23:10:05.744Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34165,27 +50725,16 @@ "history_id": 1684624205744, "description": "Compra de 1.461.219,00 IVIP por 300,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353262267/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "326d2632dbc94958815112cc", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353262267/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1686353262267, @@ -34196,18 +50745,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4cb1387c51084b5b9ec66005", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353262267", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -34216,39 +50778,47 @@ "original_amount": 1000, "total_amount": 1000, "id": 1686353262267, - "date_created": "2023-06-09T23:27:42.267Z", - "date_last_updated": "2023-06-09T23:27:42.267Z", - "date_of_expiration": "2023-07-09T23:27:42.267Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1686353262267, - "wasDebited": true, - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/9/2023" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e30fc6b131574c49aa47f41d", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { - "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353693526/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353262267/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/9/2023", + "revision": "14093a6c84374022832f2c5d", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353693526/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1686353693526, @@ -34259,18 +50829,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "08d31afdfea74c2ca35ddc3e", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353693526", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -34279,39 +50862,47 @@ "original_amount": 1000, "total_amount": 1000, "id": 1686353693526, - "date_created": "2023-06-09T23:34:53.526Z", - "date_last_updated": "2023-06-09T23:34:53.526Z", - "date_of_expiration": "2023-12-09T23:34:53.526Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1686353693526, - "wasDebited": true, - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/9/2023" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f62cd0281e9e41a2a713f9b9", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { - "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686657739276/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353693526/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/9/2023", + "revision": "cde214ccf47d473fb8823e3d", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686657739276/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1686657739276, @@ -34322,18 +50913,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6662be5b3c94439dbe617220", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686657739276", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -34342,38 +50946,46 @@ "original_amount": 1000, "total_amount": 1000, "id": 1686657739276, - "date_created": "2023-06-13T12:02:19.276Z", - "date_last_updated": "2023-06-13T12:02:19.276Z", - "date_of_expiration": "2024-06-13T12:02:19.276Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1686657739276, - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/13/2024" + "history_id": 1686657739276 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5f83577fe63c4a4bbecfd8f0", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { - "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363201264/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686657739276/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/13/2024", + "revision": "4da8bacc9f124c68bf2ab6a2", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363201264/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687363201264, @@ -34384,18 +50996,31 @@ "overpaid_amount": 0, "installment_amount": 500000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e14198c1584e41abb78ce845", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363201264", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -34404,38 +51029,46 @@ "original_amount": 500000, "total_amount": 500000, "id": 1687363201264, - "date_created": "2023-06-21T16:00:01.264Z", - "date_last_updated": "2023-06-21T16:00:01.264Z", - "date_of_expiration": "2024-06-21T16:00:01.264Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1687363201264, - "description": "Investimento de 500.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2024" + "history_id": 1687363201264 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b06b8cc41fb2405c8f381526", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { - "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363301418/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363201264/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 500.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2024", + "revision": "df2c83425a8b4dae9da19ae2", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363301418/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687363301418, @@ -34446,18 +51079,31 @@ "overpaid_amount": 0, "installment_amount": 1000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d0693b7e5f8a4eff8b51276c", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363301418", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -34466,38 +51112,46 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1687363301418, - "date_created": "2023-06-21T16:01:41.418Z", - "date_last_updated": "2023-06-21T16:01:41.418Z", - "date_of_expiration": "2025-06-21T16:01:41.418Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1687363301418, - "description": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2025" + "history_id": 1687363301418 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8bf5c8f3562e415ba0be840a", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { - "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1689804806407/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363301418/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2025", + "revision": "bbb5b6e5ef354258b969820b", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1689804806407/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689804806407, @@ -34508,18 +51162,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0e6cdceeed084b10ae90c96e", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1689804806407", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -34528,39 +51195,47 @@ "original_amount": 1020, "total_amount": 1020, "id": 1689804806407, - "date_created": "2023-07-19T22:13:26.407Z", - "date_last_updated": "2023-07-19T22:13:26.407Z", - "date_of_expiration": "2023-07-19T22:13:26.407Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1689804806407, - "wasDebited": true, - "description": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%)" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d8b1d1fef8de4e969f41fdd0", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { - "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1689804806407/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%)", + "revision": "05f1513b0d0f4e3085730624", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690414261722, "net_received_amount": 0, @@ -34570,18 +51245,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1690414261722" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "825dbf57b8f14190b2971375", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1690414261722", + "revision": "dac2a8dc923644ed9ab9fecc", + "revision_nr": 1, + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -34590,38 +51288,46 @@ "total_amount": 100000, "id": 1690414261722, "history_id": 1690414261722, - "date_created": "2023-07-26T23:31:01.722Z", - "date_last_updated": "2023-07-26T23:31:01.722Z", - "date_of_expiration": "2023-08-26T23:31:01.717Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 100.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/26/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9687a885c29b482aa1045b1f", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { - "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 100.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/26/2023", + "revision": "5f15f23ce16e441c8f2b28fe", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693093011374, "net_received_amount": 0, @@ -34631,18 +51337,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693093011374" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5da3fb85c4b342379d5cbffa", + "revision_nr": 1, + "created": 1701459383503, + "modified": 1701459383503 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693093011374", + "revision": "b8510a82cb554d66ba4c1016", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -34651,42 +51380,73 @@ "total_amount": 100000, "id": "1693093011374", "history_id": "1693093011374", - "date_created": "2023-08-26T23:36:51.374Z", - "date_last_updated": "2023-08-26T23:36:51.374Z", - "date_of_expiration": "2023-08-26T23:36:51.374Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 100.000,00 IVIP com um rendimento de +2.000,00 IVIP (2,00%)" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "96ba850d98aa4c6c98316ef7", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374/description", + "content": { + "type": "STRING", + "value": "Resgate do investimento staking de 100.000,00 IVIP com um rendimento de +2.000,00 IVIP (2,00%)", + "revision": "a637d7138aa844f1894bfadc", + "revision_nr": 1, + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 3000 + "amount": 3000, + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "62b16804c23e4d74bd66333f", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693173218030, "net_received_amount": 0, @@ -34696,18 +51456,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693173218030" + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "999c5ac507bf42e1816e1491", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693173218030", + "revision": "ddd56d12b3a144198a81b331", + "revision_nr": 1, + "created": 1701459383503, + "modified": 1701459383503 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "c8b02862d9df4c1f9130c4ef", + "revision_nr": 1, + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -34716,9 +51509,18 @@ "total_amount": 97000, "id": "1693173218030", "history_id": "1693173218030", - "date_created": "2023-08-27T21:53:38.030Z", - "date_last_updated": "2023-09-04T21:32:36.578Z", - "date_of_expiration": "2023-08-27T21:53:38.030Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -34728,30 +51530,29 @@ "date_approved": "2023-09-04T21:32:36.578Z", "money_release_date": "2023-09-04T21:32:36.578Z", "money_release_status": "drawee", - "wasDebited": true, - "description": "Saque de 97.000,00 IVIP para a carteira 0x984b739d05a74462Ab9171EDF8Be5CDDa7fF8c26" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "521ca54b11d1450482ec64f7", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { - "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 97.000,00 IVIP para a carteira 0x984b739d05a74462Ab9171EDF8Be5CDDa7fF8c26", + "revision": "32007fd03e28414d94eafe1c", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693228740965, "net_received_amount": 0, @@ -34761,18 +51562,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693228740965" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "982b936d975d4f4b80c5c961", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693228740965", + "revision": "a3b0eb23a79b46d180ab3348", + "revision_nr": 1, + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -34781,38 +51605,46 @@ "total_amount": 800000, "id": "1693228740965", "history_id": "1693228740965", - "date_created": "2023-08-28T13:19:00.965Z", - "date_last_updated": "2023-08-28T13:19:00.965Z", - "date_of_expiration": "2023-09-28T13:19:00.964Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 800.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/28/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0848acbcc8ef471c88c7604f", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { - "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 800.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/28/2023", + "revision": "f34fc25fc06a463fae5bb029", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695907162897, "net_received_amount": 0, @@ -34822,18 +51654,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1695907162897" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ca79ca880efb447494fafb58", + "revision_nr": 1, + "created": 1701459383503, + "modified": 1701459383503 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1695907162897", + "revision": "307d8a6d0dfc4f26afb12e71", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -34843,38 +51698,46 @@ "total_amount": 816000, "id": "1695907162897", "history_id": "1695907162897", - "date_created": "2023-09-28T13:19:22.897Z", - "date_last_updated": "2023-09-28T13:19:22.897Z", - "date_of_expiration": "2023-09-28T13:19:22.897Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 800.000,00 IVIP com um rendimento de +16.000,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d0c2345b14624cc7bb62eb5e", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { - "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 800.000,00 IVIP com um rendimento de +16.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "1744094038bb4967b67bd64b", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695925845472, "net_received_amount": 0, @@ -34884,18 +51747,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1695925845472" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2b91eb6371fe47dd82a0b6c5", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1695925845472", + "revision": "bdaf5f74bccb4f0287cb360b", + "revision_nr": 1, + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -34905,129 +51791,187 @@ "total_amount": 80000, "id": "1695925845472", "history_id": "1695925845472", - "date_created": "2023-09-28T18:30:45.472Z", - "date_last_updated": "2023-09-28T18:30:45.472Z", - "date_of_expiration": "2023-10-28T18:30:45.420Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 80.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 28/10/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ef3ba02a197b49cf9dd961d9", + "revision_nr": 1, + "created": 1701459383503, + "modified": 1701459383503 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472/description", + "content": { + "type": "STRING", + "value": "Investimento de 80.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 28/10/2023 - Y12XDT27", + "revision": "9a54ba197ce548f0919db505", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d22b5c3d9cd447ad98f95496", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b82b23da97b24cd085093ca1", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-09-28T18:35:16.598Z" + "analysisRequested": "2023-09-28T18:35:16.598Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c5de5bdae73144aba6b11d60", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1679096727973, "dateValidity": 1679096727973, "totalValue": 488.05285041642975, "currencyType": "USD", - "balancesModificacao": "2023-10-14T03:00:00.000Z" + "balancesModificacao": "2023-10-14T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b4505651688849298456bf52", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "48500.00000000", "symbol": "IVIP", - "value": 7.28 + "value": 7.28, + "date_created": { + "type": 6, + "value": 1701459383503 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383503 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383503 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f0aabc39359945f7a3eddc12", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f71a87df328e4f3b98251422", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383503, + "modified": 1701459383503 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + } + }, + "revision": "766d243139cb48ebbd2117ac", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -35036,9 +51980,18 @@ "total_amount": 1000, "history_id": 1678145412146, "id": 1678145412146, - "date_created": "2023-03-06T23:30:12.146Z", - "date_last_updated": "2023-03-07T20:21:25.124Z", - "date_of_expiration": "2023-04-05T23:30:12.146Z", + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -35046,41 +51999,54 @@ "date_approved": "2023-03-07T20:21:25.124Z", "money_release_date": "2023-03-07T20:21:25.124Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0502.9485.5698.2423-30" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "68d9791a844b40aea3d656fe", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0502.9485.5698.2423-30", + "revision": "ddfc527870344578a6ffc356", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383504, + "modified": 1701459383504 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + } + }, + "revision": "ef0a91e7b381432595b9d0aa", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -35089,9 +52055,18 @@ "total_amount": 1000, "history_id": 1678043796128, "id": 1678043796128, - "date_created": "2023-03-05T19:16:36.128Z", - "date_last_updated": "2023-03-07T20:20:39.067Z", - "date_of_expiration": "2023-04-04T19:16:36.128Z", + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -35099,41 +52074,54 @@ "date_approved": "2023-03-07T20:20:39.067Z", "money_release_date": "2023-03-07T20:20:39.067Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0502.9485.5698.2423-30" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f03e390da3d94981b2cc2363", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0502.9485.5698.2423-30", + "revision": "4fa50337afb044e7ab8d393e", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + } + }, + "revision": "db1c2e31ef3f473caa028886", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -35142,9 +52130,18 @@ "total_amount": 2000, "history_id": 1677774543947, "id": 1677774543947, - "date_created": "2023-03-02T16:29:03.947Z", - "date_last_updated": "2023-03-02T17:25:47.224Z", - "date_of_expiration": "2023-04-01T16:29:03.947Z", + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -35152,30 +52149,29 @@ "date_approved": "2023-03-02T17:25:47.224Z", "money_release_date": "2023-03-02T17:25:47.224Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0502.9485.5698.2423-30" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0ed57839b9c849b9ab5f3a93", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145303669/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0502.9485.5698.2423-30", + "revision": "754a05451c93400789253751", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145303669/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678145303669, @@ -35186,18 +52182,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "53b0243af5724fd6a2e1c38b", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145303669", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -35207,9 +52216,18 @@ "original_amount": 14284655, "total_amount": 14284655, "id": 1678145303669, - "date_created": "2023-03-06T23:28:23.669Z", - "date_last_updated": "2023-03-06T23:28:23.669Z", - "date_of_expiration": "2023-03-06T23:28:23.669Z", + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35218,27 +52236,16 @@ "history_id": 1678145303669, "description": "Compra de 14284655 IVIP por 2000 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678220742550/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e218acda9bee41a2b3dfeed8", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678220742550/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678220742550, @@ -35249,18 +52256,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b51715d997ca4766bdb0778d", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678220742550", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -35270,9 +52290,18 @@ "original_amount": 14195700, "total_amount": 14195700, "id": 1678220742550, - "date_created": "2023-03-07T20:25:42.550Z", - "date_last_updated": "2023-03-07T20:25:42.550Z", - "date_of_expiration": "2023-03-07T20:25:42.550Z", + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35281,38 +52310,41 @@ "history_id": 1678220742550, "description": "Compra de 14195700 IVIP por 2000 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4c206a7fcd3f4060b8a34622", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + } + }, + "revision": "502be95583c0426582fab088", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -35321,49 +52353,71 @@ "total_amount": 14038113, "history_id": 1686128267183, "id": 1686128267183, - "date_created": "2023-06-07T08:57:47.183Z", - "date_last_updated": "2023-07-07T23:13:02.648Z", - "date_of_expiration": "2023-06-07T08:57:47.183Z", + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", "money_release_date": "2023-07-07T23:13:02.648Z", - "money_release_status": "rejected", - "description": "Saque de 14.038.113,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a8a0ed6b25c94c97bd67837f", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 14.038.113,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", + "revision": "8321084d725e4c3eabe941e0", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + } + }, + "revision": "a09d1e525e6a4e43ac5fa683", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -35372,38 +52426,46 @@ "total_amount": 28480355, "history_id": 1686128970156, "id": 1686128970156, - "date_created": "2023-06-07T09:09:30.156Z", - "date_last_updated": "2023-07-07T23:13:12.581Z", - "date_of_expiration": "2023-06-07T09:09:30.156Z", + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", "money_release_date": "2023-07-07T23:13:12.581Z", - "money_release_status": "rejected", - "description": "Saque de 28.480.355,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e14dabc785054c6796a1da69", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190557366/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 28.480.355,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", + "revision": "05b3d4ea2a7a4c5eab57c0a4", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190557366/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1686190557366, @@ -35414,18 +52476,31 @@ "overpaid_amount": 0, "installment_amount": 50000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1db4a55bf7c84f2aa9b57486", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190557366", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -35434,38 +52509,46 @@ "original_amount": 50000, "total_amount": 50000, "id": 1686190557366, - "date_created": "2023-06-08T02:15:57.366Z", - "date_last_updated": "2023-06-08T02:15:57.366Z", - "date_of_expiration": "2025-06-08T02:15:57.366Z", + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1686190557366, - "description": "Investimento de 50.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/7/2025" + "history_id": 1686190557366 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "196418d7fbdc4c2784c00d28", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190633022/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190557366/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 50.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/7/2025", + "revision": "377b74d1dd6b4fa784910a3c", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190633022/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1686190633022, @@ -35476,18 +52559,31 @@ "overpaid_amount": 0, "installment_amount": 30000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "342a6caec1ea48bba3eab9d2", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190633022", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -35496,38 +52592,46 @@ "original_amount": 30000, "total_amount": 30000, "id": 1686190633022, - "date_created": "2023-06-08T02:17:13.022Z", - "date_last_updated": "2023-06-08T02:17:13.022Z", - "date_of_expiration": "2024-06-08T02:17:13.022Z", + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1686190633022, - "description": "Investimento de 30.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/7/2024" + "history_id": 1686190633022 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ad2821d357154944968b3228", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190671429/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190633022/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 30.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/7/2024", + "revision": "10c706f4fd0d47d098fd0ded", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190671429/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1686190671429, @@ -35538,18 +52642,31 @@ "overpaid_amount": 0, "installment_amount": 50000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383505 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cdcd4439165f4b4b8abf622d", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190671429", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -35558,38 +52675,46 @@ "original_amount": 50000, "total_amount": 50000, "id": 1686190671429, - "date_created": "2023-06-08T02:17:51.429Z", - "date_last_updated": "2023-06-08T02:17:51.429Z", - "date_of_expiration": "2023-12-08T02:17:51.429Z", + "date_created": { + "type": 6, + "value": 1701459383505 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383505 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1686190671429, - "description": "Investimento de 50.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/7/2023" + "history_id": 1686190671429 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9b2a2c9517d24bf2863d025b", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190710908/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190671429/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 50.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/7/2023", + "revision": "c6d95464f8ed4fb5995dc1df", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383505, + "modified": 1701459383505 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190710908/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1686190710908, @@ -35600,18 +52725,31 @@ "overpaid_amount": 0, "installment_amount": 30000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f69403f5ec85456f85a39609", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190710908", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -35620,38 +52758,46 @@ "original_amount": 30000, "total_amount": 30000, "id": 1686190710908, - "date_created": "2023-06-08T02:18:30.908Z", - "date_last_updated": "2023-06-08T02:18:30.908Z", - "date_of_expiration": "2023-07-08T02:18:30.908Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1686190710908, - "description": "Investimento de 30.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/7/2023" + "history_id": 1686190710908 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e9e08bce8d4b453bb68ed412", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1687472497935/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190710908/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 30.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/7/2023", + "revision": "cecea1303d5a482a8a988695", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1687472497935/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687472497935, @@ -35662,18 +52808,31 @@ "overpaid_amount": 0, "installment_amount": 14524522, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2f17420d8ff747cb872c63ca", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1687472497935", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -35682,49 +52841,71 @@ "original_amount": 14524522, "total_amount": 14524522, "id": 1687472497935, - "date_created": "2023-06-22T22:21:37.935Z", - "date_last_updated": "2023-06-22T22:21:37.935Z", - "date_of_expiration": "2025-06-22T22:21:37.935Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1687472497935, - "description": "Investimento de 14.524.522,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/22/2025" + "history_id": 1687472497935 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b7f5e8ff695f4b16b18fee5c", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1687472497935/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 14.524.522,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/22/2025", + "revision": "f6a9832987a447d5878368d3", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } + }, + "revision": "9d5ec2dada7f48a7a739ff13", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -35733,9 +52914,18 @@ "total_amount": 13795833, "history_id": 1688575377865, "id": 1688575377865, - "date_created": "2023-07-05T16:42:57.865Z", - "date_last_updated": "2023-07-07T23:13:24.088Z", - "date_of_expiration": "2023-07-05T16:42:57.865Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -35743,30 +52933,29 @@ "date_approved": "2023-07-07T23:13:24.088Z", "money_release_date": "2023-07-07T23:13:24.088Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 13.795.833,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c4719d73b00646278f202937", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1689804799815/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 13.795.833,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", + "revision": "bac2fad13e9a4d5db33a2f66", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1689804799815/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689804799815, @@ -35777,18 +52966,31 @@ "overpaid_amount": 0, "installment_amount": 30000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "623721c9bc43483a8de9b126", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1689804799815", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -35797,39 +52999,47 @@ "original_amount": 30600, "total_amount": 30600, "id": 1689804799815, - "date_created": "2023-07-19T22:13:19.815Z", - "date_last_updated": "2023-07-19T22:13:19.815Z", - "date_of_expiration": "2023-07-19T22:13:19.815Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1689804799815, - "wasDebited": true, - "description": "Resgate do investimento staking de 30.000,00 IVIP com um rendimento de +600,00 IVIP (2,00%)" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9fdd698652ab47b8bef52d66", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1689804799815/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 30.000,00 IVIP com um rendimento de +600,00 IVIP (2,00%)", + "revision": "be9eee2988c84f1d98b3c9cb", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690467644472, "net_received_amount": 0, @@ -35839,18 +53049,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1690467644472" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f41ba15f28b74299aba291e6", + "revision_nr": 1, + "created": 1701459383506, + "modified": 1701459383506 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1690467644472", + "revision": "686928fc9e584da99bbacf6a", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -35859,38 +53092,46 @@ "total_amount": 30600, "id": 1690467644472, "history_id": 1690467644472, - "date_created": "2023-07-27T14:20:44.472Z", - "date_last_updated": "2023-07-27T14:20:44.472Z", - "date_of_expiration": "2023-08-27T14:20:44.468Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 30.600,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/27/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6001eca4c4834573a8b9f1a9", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 30.600,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/27/2023", + "revision": "4cef83bc22864db08e752cb0", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693147070930, "net_received_amount": 0, @@ -35900,18 +53141,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1693147070930" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fd3311f318df4497b24c6fd1", + "revision_nr": 1, + "created": 1701459383506, + "modified": 1701459383506 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1693147070930", + "revision": "3d8ab83841bb424f9dacd27e", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -35920,38 +53184,46 @@ "total_amount": 30600, "id": "1693147070930", "history_id": "1693147070930", - "date_created": "2023-08-27T14:37:50.930Z", - "date_last_updated": "2023-08-27T14:37:50.930Z", - "date_of_expiration": "2023-08-27T14:37:50.930Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 30.600,00 IVIP com um rendimento de +612,00 IVIP (2,00%)" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "12a63acb915e4d47bdad24d5", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 30.600,00 IVIP com um rendimento de +612,00 IVIP (2,00%)", + "revision": "d0565f5953954d35afaae99a", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693780247117, "net_received_amount": 0, @@ -35961,18 +53233,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1693780247117" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "63fe2766e6c84c9798908752", + "revision_nr": 1, + "created": 1701459383506, + "modified": 1701459383506 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1693780247117", + "revision": "9937fe73ed184eefaf5e898f", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -35981,38 +53276,46 @@ "total_amount": 2500, "id": "1693780247117", "history_id": "1693780247117", - "date_created": "2023-09-03T22:30:47.117Z", - "date_last_updated": "2023-09-03T22:30:47.117Z", - "date_of_expiration": "2023-10-03T22:30:47.116Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 2.500,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "91c178669a514677b0ee6af5", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 2.500,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", + "revision": "62ed0671ae7b4ef491940d78", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696382633982, "net_received_amount": 0, @@ -36022,18 +53325,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696382633982" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1799dcdda3314cafa1bc833b", + "revision_nr": 1, + "created": 1701459383506, + "modified": 1701459383506 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696382633982", + "revision": "7b532b6f18ec4f4e96536751", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36043,38 +53369,46 @@ "total_amount": 2550, "id": "1696382633982", "history_id": "1696382633982", - "date_created": "2023-10-04T01:23:53.982Z", - "date_last_updated": "2023-10-04T01:23:53.982Z", - "date_of_expiration": "2023-10-04T01:23:53.982Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5ddc68dc102346e29953f10b", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", + "revision": "0815ea10fc1e441da7440c10", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696384242905, "net_received_amount": 0, @@ -36084,18 +53418,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242905" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "30af8d4033bf4a4b9fe716f6", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242905", + "revision": "fae10422f83244b88fa9f229", + "revision_nr": 1, + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36105,38 +53462,46 @@ "total_amount": 2550, "id": "1696384242905", "history_id": "1696384242905", - "date_created": "2023-10-04T01:50:42.905Z", - "date_last_updated": "2023-10-04T01:50:42.905Z", - "date_of_expiration": "2023-10-04T01:50:42.905Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "cc_rejected_duplicated_payment", - "description": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1fb99bfe97a44caba13f3cf8", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", + "revision": "1057715e46ce492f842fc3a3", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696384242925, "net_received_amount": 0, @@ -36146,18 +53511,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242925" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8e1f6176fde04ae6a92f4f58", + "revision_nr": 1, + "created": 1701459383506, + "modified": 1701459383506 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242925", + "revision": "26c5a16ecda944bd9d08d5e2", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36167,38 +53555,46 @@ "total_amount": 2550, "id": "1696384242925", "history_id": "1696384242925", - "date_created": "2023-10-04T01:50:42.925Z", - "date_last_updated": "2023-10-04T01:50:42.925Z", - "date_of_expiration": "2023-10-04T01:50:42.925Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "cc_rejected_duplicated_payment", - "description": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ee0f4b5c55204cda811d8f69", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", + "revision": "34bd764e13024d8482d3a49c", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696384242931, "net_received_amount": 0, @@ -36208,18 +53604,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242931" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "69c218799fa548308ff893a0", + "revision_nr": 1, + "created": 1701459383506, + "modified": 1701459383506 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242931", + "revision": "4a391501ce1e4fd5ac78cef0", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36229,38 +53648,46 @@ "total_amount": 2550, "id": "1696384242931", "history_id": "1696384242931", - "date_created": "2023-10-04T01:50:42.931Z", - "date_last_updated": "2023-10-04T01:50:42.931Z", - "date_of_expiration": "2023-10-04T01:50:42.931Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "cc_rejected_duplicated_payment", - "description": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ee76418e36e1406fbbcefafe", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", + "revision": "64f50858188d446d8d9a32df", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696384243125, "net_received_amount": 0, @@ -36270,18 +53697,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384243125" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4cb8ed0719c640dfbf8baa43", + "revision_nr": 1, + "created": 1701459383506, + "modified": 1701459383506 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384243125", + "revision": "91c81e5b4f434f6dbcc2fea1", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36291,38 +53741,46 @@ "total_amount": 2550, "id": "1696384243125", "history_id": "1696384243125", - "date_created": "2023-10-04T01:50:43.125Z", - "date_last_updated": "2023-10-04T01:50:43.125Z", - "date_of_expiration": "2023-10-04T01:50:43.125Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "cc_rejected_duplicated_payment", - "description": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1ea632ca59f34aecad6dc338", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", + "revision": "23d6ce024337410380882676", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696384243425, "net_received_amount": 0, @@ -36332,18 +53790,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384243425" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8d64c1a026044d99889bbae9", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384243425", + "revision": "c19c017ab0a04d2dac248518", + "revision_nr": 1, + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36353,38 +53834,46 @@ "total_amount": 2550, "id": "1696384243425", "history_id": "1696384243425", - "date_created": "2023-10-04T01:50:43.425Z", - "date_last_updated": "2023-10-04T01:50:43.425Z", - "date_of_expiration": "2023-10-04T01:50:43.425Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "cc_rejected_duplicated_payment", - "description": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c362c648a27341679187ea1c", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", + "revision": "4f4e9f61bad643c58a2c4af2", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696384244783, "net_received_amount": 0, @@ -36394,18 +53883,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384244783" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "26d37673b165493fa628dc95", + "revision_nr": 1, + "created": 1701459383506, + "modified": 1701459383506 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384244783", + "revision": "e2a80c58286d437da3feb7c5", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36415,38 +53927,46 @@ "total_amount": 2550, "id": "1696384244783", "history_id": "1696384244783", - "date_created": "2023-10-04T01:50:44.783Z", - "date_last_updated": "2023-10-04T01:50:44.783Z", - "date_of_expiration": "2023-10-04T01:50:44.783Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "cc_rejected_duplicated_payment", - "description": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0b2ce25c46c8443d849cd7d4", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { - "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885/details/costs", + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", + "revision": "242b7624ebf5403383110a44", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696384244885, "net_received_amount": 0, @@ -36456,18 +53976,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384244885" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b91ccf46f8db4a1ea09d7d0b", + "revision_nr": 1, + "created": 1701459383506, + "modified": 1701459383506 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384244885", + "revision": "69e6051eef184570ad1320a8", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36477,179 +54020,261 @@ "total_amount": 2550, "id": "1696384244885", "history_id": "1696384244885", - "date_created": "2023-10-04T01:50:44.885Z", - "date_last_updated": "2023-10-04T01:50:44.885Z", - "date_of_expiration": "2023-10-04T01:50:44.885Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "cc_rejected_duplicated_payment", - "description": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fecf244589724b6d8a405ca5", + "revision_nr": 1, + "created": 1701459383506, + "modified": 1701459383506 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885/description", + "content": { + "type": "STRING", + "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", + "revision": "9df966dad72a4ee19704638b", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7fc68b50a53f4d9297c9da3a", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "36c68a1dbaac411ebd328bec", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c3eea304cdc24ec5aee2f101", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677774434896, "dateValidity": 1678238494873, "totalValue": 9.579933648427893, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c245f53b79834ea0bab57644", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050395970230084904/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "584077cfc0194d99bbaf3fde", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050395970230084904/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6613929bffe84be2b47d5b63", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/050395970230084904", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1696468517081, "dateValidity": 1696468517276, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "186f8ca2acc84b44823c5827", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "81b1f0b0459343c5bab539e6", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "812799.00000000", "symbol": "IVIP", - "value": 263.24 + "value": 263.24, + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ec9deb91eb9f4cacba54dc02", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "30e875d0bd73484487004d4f", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } + }, + "revision": "35c6dd85b20d405f947a7baf", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36658,9 +54283,18 @@ "total_amount": 50, "history_id": 1678221951810, "id": 1678221951810, - "date_created": "2023-03-07T20:45:51.810Z", - "date_last_updated": "2023-03-08T13:21:59.635Z", - "date_of_expiration": "2023-04-06T20:45:51.810Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -36668,41 +54302,54 @@ "date_approved": "2023-03-08T13:21:59.635Z", "money_release_date": "2023-03-08T13:21:59.635Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0532.9875.7978.5992-90" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "efd11dfa178542b4b1117d1f", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { - "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784/details/costs", + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0532.9875.7978.5992-90", + "revision": "db585fb95bd942fba60a519d", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } + }, + "revision": "54d2eeeb66844532a1240f7b", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36711,9 +54358,18 @@ "total_amount": 100, "history_id": 1679009072784, "id": 1679009072784, - "date_created": "2023-03-16T23:24:32.784Z", - "date_last_updated": "2023-03-20T14:29:47.158Z", - "date_of_expiration": "2023-04-15T23:24:32.784Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -36721,41 +54377,54 @@ "date_approved": "2023-03-20T14:29:47.158Z", "money_release_date": "2023-03-20T14:29:47.158Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0532.9875.7978.5992-90" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f7be6fc31ac5449997ba6500", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { - "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145/details/costs", + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0532.9875.7978.5992-90", + "revision": "f3112c7422c14aa69c9cfb3c", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } + }, + "revision": "f40edc8958044bcc97ae6755", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36764,38 +54433,46 @@ "total_amount": 100, "history_id": 1679009122145, "id": 1679009122145, - "date_created": "2023-03-16T23:25:22.145Z", - "date_last_updated": "2023-03-20T14:32:34.987Z", - "date_of_expiration": "2023-04-15T23:25:22.145Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-03-20T14:32:34.987Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0532.9875.7978.5992-90" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "853ade00539d45af98aa7eeb", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { - "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1680059811857/details/costs", + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0532.9875.7978.5992-90", + "revision": "7235712f72724a5e86b6bf71", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1680059811857/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1680059811857, @@ -36806,18 +54483,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6670a94c5606485f94e178ce", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1680059811857", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -36827,9 +54517,18 @@ "original_amount": 812799, "total_amount": 812799, "id": 1680059811857, - "date_created": "2023-03-29T03:16:51.857Z", - "date_last_updated": "2023-03-29T03:16:51.857Z", - "date_of_expiration": "2023-03-29T03:16:51.857Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -36838,38 +54537,41 @@ "history_id": 1680059811857, "description": "Compra de 812.799,00 IVIP por 150,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "af21b6b8968b4964a5983465", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } + }, + "revision": "bcc39be3018f4bd9900d3ec7", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -36878,126 +54580,184 @@ "total_amount": 812799, "history_id": 1687793732463, "id": 1687793732463, - "date_created": "2023-06-26T15:35:32.463Z", - "date_last_updated": "2023-06-26T15:35:32.463Z", - "date_of_expiration": "2023-06-26T15:35:32.463Z", + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 812.799,00 IVIP para a carteira 0x76DD50e5E925D29D22251e5b2A71bBB9b5672254" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8b41cad408384610a10757be", + "revision_nr": 1, + "created": 1701459383506, + "modified": 1701459383506 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463/description", + "content": { + "type": "STRING", + "value": "Saque de 812.799,00 IVIP para a carteira 0x76DD50e5E925D29D22251e5b2A71bBB9b5672254", + "revision": "6e27848bd55242798f50d150", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7269923aa5a1461da3f1b3b9", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4c7b2b038adb46d6babb332a", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c9c621269edc49de90b708b6", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678221202102, "dateValidity": 1679026523803, "totalValue": 28.34, "currencyType": "USD", - "balancesModificacao": 1689822000000 + "balancesModificacao": 1689822000000, + "date_created": { + "type": 6, + "value": 1701459383506 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383506 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383506 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "23af44ab7376440dbc1fe510", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383506, + "modified": 1701459383506 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "51023.00000000", "symbol": "IVIP", - "value": 6.23 + "value": 6.23, + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1ce36dac854247c29cdb3bf7", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8b07845d337243d2a70af2d0", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } + }, + "revision": "00cf17362b734c8fbfc82206", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -37006,9 +54766,18 @@ "total_amount": 120, "history_id": 1689173674893, "id": 1689173674893, - "date_created": "2023-07-12T14:54:34.893Z", - "date_last_updated": "2023-07-12T16:57:39.550Z", - "date_of_expiration": "2023-08-11T14:54:34.893Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -37016,30 +54785,29 @@ "date_approved": "2023-07-12T16:57:39.550Z", "money_release_date": "2023-07-12T16:57:39.550Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 120,00 para a carteira iVip 0543.4133.5642.4860-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c2e83bea653f4c3bbb112752", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { - "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689182033050/details/costs", + "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 120,00 para a carteira iVip 0543.4133.5642.4860-00", + "revision": "d3d320c218dd46c7a9becd37", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689182033050/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689182033050, @@ -37050,18 +54818,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ac4448f7c8a04ac799e7eed6", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689182033050", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -37071,9 +54852,18 @@ "original_amount": 51023, "total_amount": 51023, "id": 1689182033050, - "date_created": "2023-07-12T17:13:53.050Z", - "date_last_updated": "2023-07-12T17:13:53.050Z", - "date_of_expiration": "2023-07-12T17:13:53.050Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37082,105 +54872,130 @@ "history_id": 1689182033050, "description": "Compra de 51.023,00 IVIP por 120,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5674c4dc1d034a46a8f54278", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ac1e39f6204646f5ab61f681", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e17797648ba441d2b3a5a549", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a3626daa9210459586056479", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1689173582935, "dateValidity": 1689173582935, "totalValue": 24.77, "currencyType": "USD", - "balancesModificacao": "2023-10-10T03:00:00.000Z" + "balancesModificacao": "2023-10-10T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "369e5c5c5810400cb971381e", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3a31a88cc5e347f8becf4fce", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-11T02:45:06.134Z" + ".val": "2023-11-11T02:45:06.134Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a469eb000f5445deb7e4e03a", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1697078706134", "net_received_amount": 0, @@ -37190,18 +55005,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697078706134" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5943763b61fb4ccba2959a1d", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697078706134", + "revision": "958bbd5a0c974fc18db3f26f", + "revision_nr": 1, + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -37211,8 +55049,14 @@ "total_amount": 99635.8518, "id": "1697078706134", "history_id": "1697078706134", - "date_created": "2023-10-12T02:45:06.134Z", - "date_last_updated": "2023-10-12T13:47:23.226Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37223,43 +55067,58 @@ "money_release_date": "2023-10-12T13:47:23.226Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 99.635,85 IVIP para a carteira iVip 0556.4401.2114.1117-40" + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "349e2da018874ae68bc373d5", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { - "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-11-11T14:06:48.666Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 99.635,85 IVIP para a carteira iVip 0556.4401.2114.1117-40", + "revision": "1958286912e34310a165939c", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { - "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/details/costs", + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-11-11T14:06:48.666Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } + }, + "revision": "c8c08e36ad7e469688fa1adc", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1697119608666", "net_received_amount": 0, @@ -37269,18 +55128,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697119608666" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "94572655d7ed40f3b321d352", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697119608666", + "revision": "cbc3ae2f4bdf4b6bb9178787", + "revision_nr": 1, + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -37290,8 +55172,14 @@ "total_amount": 25, "id": "1697119608666", "history_id": "1697119608666", - "date_created": "2023-10-12T14:06:48.666Z", - "date_last_updated": "2023-10-12T14:33:43.741Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37302,29 +55190,32 @@ "money_release_date": "2023-10-12T14:33:43.741Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 25,00 BRL para a carteira iVip 0556.4401.2114.1117-40" + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c9fd9540918b4fd88eb992a3", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { - "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697122378430/details/costs", + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 25,00 BRL para a carteira iVip 0556.4401.2114.1117-40", + "revision": "5d493ead5e6d4bdc9792fae0", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697122378430/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1697122378430", "net_received_amount": 0, @@ -37334,18 +55225,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697122378430" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ee1d71ad89c14ea9a6486208", + "revision_nr": 1, + "created": 1701459383507, + "modified": 1701459383507 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697122378430/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697122378430", + "revision": "3d48081227344b608bfdedea", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697122378430", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -37355,9 +55269,18 @@ "total_amount": 46978, "id": "1697122378430", "history_id": "1697122378430", - "date_created": "2023-10-12T14:52:58.430Z", - "date_last_updated": "2023-10-12T14:52:58.430Z", - "date_of_expiration": "2023-10-12T14:52:58.430Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -37366,131 +55289,182 @@ "description": "Compra de 46.978,00 IVIP por 25,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d356b7762a6c4801a1a345f1", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "999ab3a5e34441dcb7670e3b", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "75527947a407456c926232fd", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fd4c86c96b0f4f3481563551", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1697078617873, "dateValidity": 1697078617917, "currencyType": "USD", - "balancesModificacao": "2023-10-12T03:00:00.000Z" + "balancesModificacao": "2023-10-12T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "96e876a8b69549ebaace15ee", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5bf50eb9d0be492b8c5289f2", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "5352934.00000000", "symbol": "IVIP", - "value": 720.46 + "value": 720.46, + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ab8e54937d1a4953a3eb14f7", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "093099134fb84ff68e2250f8", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } + }, + "revision": "1fe4db7ad9344687bdb15222", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -37499,9 +55473,18 @@ "total_amount": 800, "history_id": 1684093509797, "id": 1684093509797, - "date_created": "2023-05-14T19:45:09.797Z", - "date_last_updated": "2023-05-14T19:50:33.853Z", - "date_of_expiration": "2023-06-13T19:45:09.797Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -37509,41 +55492,54 @@ "date_approved": "2023-05-14T19:50:33.853Z", "money_release_date": "2023-05-14T19:50:33.853Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 800,00 para a carteira iVip 0565.4676.9240.3558-40" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4821b64e3585414b926b6ed5", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { - "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149/details/costs", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0565.4676.9240.3558-40", + "revision": "5af193fa2d8f4582aa341979", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } + }, + "revision": "76b3e22ff6bc424f901545b4", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -37552,9 +55548,18 @@ "total_amount": 299, "history_id": 1684583054149, "id": 1684583054149, - "date_created": "2023-05-20T11:44:14.149Z", - "date_last_updated": "2023-05-20T15:08:23.300Z", - "date_of_expiration": "2023-06-19T11:44:14.149Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -37562,30 +55567,29 @@ "date_approved": "2023-05-20T15:08:23.300Z", "money_release_date": "2023-05-20T15:08:23.300Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 299,00 para a carteira iVip 0565.4676.9240.3558-40" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1256a87935844fe9b8626d31", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { - "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684624980630/details/costs", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 299,00 para a carteira iVip 0565.4676.9240.3558-40", + "revision": "9db03ac782464bf3ad143401", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684624980630/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624980630, @@ -37596,18 +55600,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0e7d70b303cf4fe582716a74", "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684624980630", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -37617,9 +55634,18 @@ "original_amount": 5352934, "total_amount": 5352934, "id": 1684624980630, - "date_created": "2023-05-20T23:23:00.630Z", - "date_last_updated": "2023-05-20T23:23:00.630Z", - "date_of_expiration": "2023-05-20T23:23:00.630Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37628,38 +55654,41 @@ "history_id": 1684624980630, "description": "Compra de 5.352.934,00 IVIP por 1.099,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395482, - "modified": 1700748395482 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4569ff032509421a8f008fa6", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } + }, + "revision": "1a921e5fef3d4170a9576ac7", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -37668,47 +55697,69 @@ "total_amount": 5352934, "history_id": 1689104056845, "id": 1689104056845, - "date_created": "2023-07-11T19:34:16.845Z", - "date_last_updated": "2023-07-11T19:34:16.845Z", - "date_of_expiration": "2023-07-11T19:34:16.845Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f4e685119b234d9a88aef6e6", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { - "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830/details/costs", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", + "revision": "3c385bbff62144b9b459e005", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } + }, + "revision": "638184ec671747c58a46f180", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -37717,47 +55768,69 @@ "total_amount": 5352934, "history_id": 1689104143830, "id": 1689104143830, - "date_created": "2023-07-11T19:35:43.830Z", - "date_last_updated": "2023-07-11T19:35:43.830Z", - "date_of_expiration": "2023-07-11T19:35:43.830Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1d308270e60a4d61ab2e35e9", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { - "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803/details/costs", + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", + "revision": "53df29bb13cd409a88943af7", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } + }, + "revision": "d837aee8c0a94f0fa6a1f3c5", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -37766,40 +55839,71 @@ "total_amount": 5352934, "history_id": 1689646587803, "id": 1689646587803, - "date_created": "2023-07-18T02:16:27.803Z", - "date_last_updated": "2023-07-18T02:16:27.803Z", - "date_of_expiration": "2023-07-18T02:16:27.803Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "db5d691b2b8d409e97fa7179", + "revision_nr": 1, + "created": 1701459383507, + "modified": 1701459383507 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803/description", + "content": { + "type": "STRING", + "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", + "revision": "7b25728ca88845f985665b80", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 160588.02 + "amount": 160588.02, + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "70dc51ca9230420e8ad643e1", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692620472334, "net_received_amount": 0, @@ -37809,18 +55913,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/056546769240355840/history/1692620472334" + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a1a395f3951544de8afd134b", + "revision_nr": 1, + "created": 1701459383507, + "modified": 1701459383507 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/056546769240355840/history/1692620472334", + "revision": "f1851189a7774d30a0b301f7", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "845e34e15b33447dbdec441b", + "revision_nr": 1, + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -37829,9 +55966,18 @@ "total_amount": 5192345.98, "id": 1692620472334, "history_id": 1692620472334, - "date_created": "2023-08-21T12:21:12.334Z", - "date_last_updated": "2023-08-21T12:21:55.386Z", - "date_of_expiration": "2023-08-21T12:21:12.334Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -37841,159 +55987,220 @@ "date_approved": "2023-08-21T12:21:55.386Z", "money_release_date": "2023-08-21T12:21:55.386Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 5.192.345,98 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8e8c4201ee9a429c855a138a", + "revision_nr": 1, + "created": 1701459383507, + "modified": 1701459383507 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/description", + "content": { + "type": "STRING", + "value": "Saque de 5.192.345,98 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", + "revision": "baaeecef59f94426828a3dc4", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1f203775e7a94c97adc806e1", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8ed7cc84e97c4ea1889e8978", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-08-18T18:47:04.311Z" + "analysisRequested": "2023-08-18T18:47:04.311Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6d0a34526ff2412c91d99811", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678095088185, "dateValidity": 1678245807542, "totalValue": 218.81, "currencyType": "USD", - "balancesModificacao": "2023-08-21T03:00:00.000Z" + "balancesModificacao": "2023-08-21T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "477b35433c2041889a7722a1", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057251085848447400/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3f42050b7ff54b59951606bf", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057251085848447400/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "27f4bb856ea34d8396fbff91", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057251085848447400", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677956784862, "dateValidity": 1678334303407, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "26ad3cba0c3f4c6394281869", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "561917.00000000", "symbol": "IVIP", - "value": 59.89 + "value": 59.89, + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "554ca7512baa4b06ba1c5949", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b68e503e10694f019697ac13", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } + }, + "revision": "93c258c5e3844f7683b1adfd", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -38002,9 +56209,18 @@ "total_amount": 20, "history_id": 1679346644168, "id": 1679346644168, - "date_created": "2023-03-20T21:10:44.168Z", - "date_last_updated": "2023-03-20T21:15:55.591Z", - "date_of_expiration": "2023-04-19T21:10:44.168Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -38012,41 +56228,54 @@ "date_approved": "2023-03-20T21:15:55.591Z", "money_release_date": "2023-03-20T21:15:55.591Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9223f5f835704b75aedf93b3", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", + "revision": "d50b8f333c9f4dd5bf5ff71c", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } + }, + "revision": "99133a58f1ec4dc5b3d5627a", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -38055,9 +56284,18 @@ "total_amount": 20, "history_id": 1679707462559, "id": 1679707462559, - "date_created": "2023-03-25T01:24:22.559Z", - "date_last_updated": "2023-03-25T01:45:37.072Z", - "date_of_expiration": "2023-04-24T01:24:22.559Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -38065,30 +56303,29 @@ "date_approved": "2023-03-25T01:45:37.072Z", "money_release_date": "2023-03-25T01:45:37.072Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a559cbfb4a054d05a6bc8030", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679871671858/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", + "revision": "175f88e3b9724872a01b5d13", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679871671858/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679871671858, @@ -38099,18 +56336,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3c89af67f67847118dc540ac", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679871671858", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -38120,9 +56370,18 @@ "original_amount": 213025, "total_amount": 213025, "id": 1679871671858, - "date_created": "2023-03-26T23:01:11.858Z", - "date_last_updated": "2023-03-26T23:01:11.858Z", - "date_of_expiration": "2023-03-26T23:01:11.858Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38131,38 +56390,41 @@ "history_id": 1679871671858, "description": "Compra de 213.025,00 IVIP por 40,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8122e1e2e7614ed08e1e8037", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } + }, + "revision": "9f530ef0692c4b70a76d87b0", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -38171,47 +56433,69 @@ "total_amount": 20, "history_id": 1689132225947, "id": 1689132225947, - "date_created": "2023-07-12T03:23:45.947Z", - "date_last_updated": "2023-07-12T03:23:45.947Z", - "date_of_expiration": "2023-08-11T03:23:45.947Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "46f926e5cc6a4db489e75da7", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", + "revision": "0da0d592a6d14a15a879bdb2", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } + }, + "revision": "df228a0f099b403b82712f35", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -38220,47 +56504,69 @@ "total_amount": 50, "history_id": 1689175940633, "id": 1689175940633, - "date_created": "2023-07-12T15:32:20.633Z", - "date_last_updated": "2023-07-12T15:32:20.633Z", - "date_of_expiration": "2023-08-11T15:32:20.633Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5a3c96727f5e4747929ad489", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", + "revision": "f14bb2d7ba55479f927b69bf", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + } + }, + "revision": "2f9a972f22b349419b368af7", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -38269,47 +56575,69 @@ "total_amount": 50, "history_id": 1689367674517, "id": 1689367674517, - "date_created": "2023-07-14T20:47:54.517Z", - "date_last_updated": "2023-07-14T20:47:54.517Z", - "date_of_expiration": "2023-08-13T20:47:54.517Z", + "date_created": { + "type": 6, + "value": 1701459383507 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383507 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383507 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9e1628a75f4a46b99d4a0ddd", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", + "revision": "5ec1082955554855b9dcd6a3", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383507, + "modified": 1701459383507 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } + }, + "revision": "1f2d4b5fa12f49f589b3c89e", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -38318,9 +56646,18 @@ "total_amount": 50, "history_id": 1689622072746, "id": 1689622072746, - "date_created": "2023-07-17T19:27:52.746Z", - "date_last_updated": "2023-07-17T19:33:11.229Z", - "date_of_expiration": "2023-08-16T19:27:52.746Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -38328,30 +56665,29 @@ "date_approved": "2023-07-17T19:33:11.229Z", "money_release_date": "2023-07-17T19:33:11.229Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "db99302eb2cb4515873e3f51", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689623842206/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", + "revision": "32e37a4a777f4f0b9f52691e", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689623842206/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689623842206, @@ -38362,18 +56698,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f1d5654a5b05479697aa71c2", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689623842206", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -38383,9 +56732,18 @@ "original_amount": 32205, "total_amount": 32205, "id": 1689623842206, - "date_created": "2023-07-17T19:57:22.206Z", - "date_last_updated": "2023-07-17T19:57:22.206Z", - "date_of_expiration": "2023-07-17T19:57:22.206Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38394,41 +56752,42 @@ "history_id": 1689623842206, "description": "Compra de 32.205,00 IVIP por 50,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e755aaea8dfe49e6959024ff", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-20T21:23:50.901Z" + ".val": "2023-08-20T21:23:50.901Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c80891488b9e4ce597652009", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1689974630901, "net_received_amount": 0, @@ -38438,18 +56797,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1689974630901" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bc6fb85976ec429bb19ff86e", + "revision_nr": 1, + "created": 1701459383508, + "modified": 1701459383508 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1689974630901", + "revision": "f30a2d74679b43b7b2e03510", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -38458,51 +56840,72 @@ "total_amount": 20, "id": 1689974630901, "history_id": 1689974630901, - "date_created": "2023-07-21T21:23:50.901Z", - "date_last_updated": "2023-07-21T21:23:50.901Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20" + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "61a8ddea1bf94751b71d6822", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-08-24T00:44:32.747Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", + "revision": "fbfc274eae8a43d08f11529b", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-08-24T00:44:32.747Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } + }, + "revision": "81743b47656e46eea67d3d6e", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690245872747, "net_received_amount": 0, @@ -38512,18 +56915,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1690245872747" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7c8b404ccee94545afa3c1d4", + "revision_nr": 1, + "created": 1701459383508, + "modified": 1701459383508 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1690245872747", + "revision": "fa1aac1f23af432283cb1bd1", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -38532,8 +56958,14 @@ "total_amount": 20, "id": 1690245872747, "history_id": 1690245872747, - "date_created": "2023-07-25T00:44:32.747Z", - "date_last_updated": "2023-07-25T18:21:16.564Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38544,29 +56976,32 @@ "money_release_date": "2023-07-25T18:21:16.564Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20" + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "db0f9a6123354f3c961c09f0", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690318679149/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", + "revision": "18bba0fc97ac4f42bcd6f45e", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690318679149/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1690318679149, @@ -38577,18 +57012,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b8cb5350752247e2b01cd243", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690318679149", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -38598,9 +57046,18 @@ "original_amount": 16406, "total_amount": 16406, "id": 1690318679149, - "date_created": "2023-07-25T20:57:59.149Z", - "date_last_updated": "2023-07-25T20:57:59.149Z", - "date_of_expiration": "2023-07-25T20:57:59.149Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38609,41 +57066,42 @@ "history_id": 1690318679149, "description": "Compra de 16.406,00 IVIP por 20,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "350f8bee28b34c6cb97fde36", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-18T19:33:06.359Z" + ".val": "2023-09-18T19:33:06.359Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "94057fe3a1874b1fafe6dfbf", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692473586359, "net_received_amount": 0, @@ -38653,18 +57111,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692473586359" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "76e0eb5f9df04dd8bf682dc6", + "revision_nr": 1, + "created": 1701459383508, + "modified": 1701459383508 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692473586359", + "revision": "d2cae06629804551958504cc", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -38673,8 +57154,14 @@ "total_amount": 20, "id": 1692473586359, "history_id": 1692473586359, - "date_created": "2023-08-19T19:33:06.359Z", - "date_last_updated": "2023-08-19T20:22:50.838Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38685,29 +57172,32 @@ "money_release_date": "2023-08-19T20:22:50.838Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "00bca01c05df44ca8e1b9e2b", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692476742525/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "2f4f2df574ea4a23afc68189", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692476742525/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692476742525, "net_received_amount": 0, @@ -38717,18 +57207,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692476742525" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2f721ef30a83418caa89a54b", + "revision_nr": 1, + "created": 1701459383508, + "modified": 1701459383508 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692476742525/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692476742525", + "revision": "ace45f08b06e4e82adaed32e", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692476742525", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -38737,9 +57250,18 @@ "total_amount": 32045, "id": 1692476742525, "history_id": 1692476742525, - "date_created": "2023-08-19T20:25:42.525Z", - "date_last_updated": "2023-08-19T20:25:42.525Z", - "date_of_expiration": "2023-08-19T20:25:42.525Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -38748,41 +57270,42 @@ "description": "Compra de 32.045,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c5a28fad857b4482b85733b2", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-24T20:53:30.545Z" + ".val": "2023-09-24T20:53:30.545Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8194711247bc48f3b5cf3255", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692996810545, "net_received_amount": 0, @@ -38792,18 +57315,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692996810545" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6105ca856ac14af5917b1522", + "revision_nr": 1, + "created": 1701459383508, + "modified": 1701459383508 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692996810545", + "revision": "f543afcc7aba4732a326de46", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -38812,51 +57358,72 @@ "total_amount": 20, "id": "1692996810545", "history_id": "1692996810545", - "date_created": "2023-08-25T20:53:30.545Z", - "date_last_updated": "2023-08-25T20:53:30.545Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e4a66491646f4647b88dcdee", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-24T20:54:04.899Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "b03b236945dd42fd82c2a642", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-24T20:54:04.899Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } + }, + "revision": "3b2ac2119f924f729e3e0bca", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692996844899, "net_received_amount": 0, @@ -38866,18 +57433,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692996844899" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "22f1ed11ff2449c09bc9ed6f", + "revision_nr": 1, + "created": 1701459383508, + "modified": 1701459383508 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692996844899", + "revision": "c8cddf83008d4290992b9d91", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -38886,8 +57476,14 @@ "total_amount": 20, "id": "1692996844899", "history_id": "1692996844899", - "date_created": "2023-08-25T20:54:04.899Z", - "date_last_updated": "2023-08-25T21:45:21.567Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38898,29 +57494,32 @@ "money_release_date": "2023-08-25T21:45:21.567Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aeb9970e6ea64af78d5a2be5", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693000377717/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "3558cb1560eb4effb2a14c58", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693000377717/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693000377717, "net_received_amount": 0, @@ -38930,18 +57529,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693000377717" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "32e5f90b7a084ccc919e0947", + "revision_nr": 1, + "created": 1701459383508, + "modified": 1701459383508 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693000377717/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693000377717", + "revision": "471c591689af4f90837f9a89", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693000377717", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -38950,9 +57572,18 @@ "total_amount": 40254, "id": "1693000377717", "history_id": "1693000377717", - "date_created": "2023-08-25T21:52:57.717Z", - "date_last_updated": "2023-08-25T21:52:57.717Z", - "date_of_expiration": "2023-08-25T21:52:57.717Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -38961,41 +57592,42 @@ "description": "Compra de 40.254,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "126eea8e9ac049e296886f5c", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-01T21:57:07.916Z" + ".val": "2023-10-01T21:57:07.916Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ae85a5bd0a0e485b9f5891c4", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693605427916, "net_received_amount": 0, @@ -39005,18 +57637,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693605427916" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "163c325a37a4441ba1c54efa", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693605427916", + "revision": "a534cc10c0bb4f7c9c7808da", + "revision_nr": 1, + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -39025,51 +57680,72 @@ "total_amount": 20, "id": "1693605427916", "history_id": "1693605427916", - "date_created": "2023-09-01T21:57:07.916Z", - "date_last_updated": "2023-09-01T21:57:07.916Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0d890634cfbc449aafcdc3a8", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-01T22:02:42.263Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "35a058b2ddf643899c9894a8", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-01T22:02:42.263Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } + }, + "revision": "8501c7a335f940a7a5dc6e25", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693605762263, "net_received_amount": 0, @@ -39079,18 +57755,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693605762263" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4239fbe6675548fabdb97914", + "revision_nr": 1, + "created": 1701459383508, + "modified": 1701459383508 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693605762263", + "revision": "dae6223be5934da5808c39d2", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -39099,8 +57798,14 @@ "total_amount": 20, "id": "1693605762263", "history_id": "1693605762263", - "date_created": "2023-09-01T22:02:42.263Z", - "date_last_updated": "2023-09-01T22:07:13.196Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -39111,29 +57816,32 @@ "money_release_date": "2023-09-01T22:07:13.196Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d309b9937ad94a989ef11ac7", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693606719867/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "e9955814ec1247e5a74c0abd", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693606719867/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693606719867, "net_received_amount": 0, @@ -39143,18 +57851,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693606719867" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e0fa9cf23386413b92181256", + "revision_nr": 1, + "created": 1701459383508, + "modified": 1701459383508 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693606719867/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693606719867", + "revision": "54ec2ac0d80b4cfc83a93527", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693606719867", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -39163,9 +57894,18 @@ "total_amount": 33429, "id": "1693606719867", "history_id": "1693606719867", - "date_created": "2023-09-01T22:18:39.867Z", - "date_last_updated": "2023-09-01T22:18:39.867Z", - "date_of_expiration": "2023-09-01T22:18:39.867Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39174,41 +57914,42 @@ "description": "Compra de 33.429,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ab7f4d68f7914407b06a0789", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-14T01:28:42.996Z" + ".val": "2023-10-14T01:28:42.996Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "87aba0296ba64b46a85c9b0d", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694654922996, "net_received_amount": 0, @@ -39218,18 +57959,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694654922996" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d58da87795a04e8e96d7c05d", + "revision_nr": 1, + "created": 1701459383508, + "modified": 1701459383508 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694654922996", + "revision": "4424fd20fd9e4f3d9fbffd5d", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -39238,8 +58002,14 @@ "total_amount": 20, "id": "1694654922996", "history_id": "1694654922996", - "date_created": "2023-09-14T01:28:42.996Z", - "date_last_updated": "2023-09-14T01:41:00.738Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -39250,43 +58020,58 @@ "money_release_date": "2023-09-14T01:41:00.738Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "076a2a70f8024223aa44f217", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-14T21:52:06.075Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "e753e05f1bf943dd8ad5f4f5", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-14T21:52:06.075Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } + }, + "revision": "d69d097177da40d3b5bc1e90", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694728326075, "net_received_amount": 0, @@ -39296,18 +58081,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694728326075" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "129c22b4c3a849378882bc2e", + "revision_nr": 1, + "created": 1701459383508, + "modified": 1701459383508 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694728326075", + "revision": "674bc3a5c31a44a984144c0f", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -39316,8 +58124,14 @@ "total_amount": 100, "id": "1694728326075", "history_id": "1694728326075", - "date_created": "2023-09-14T21:52:06.075Z", - "date_last_updated": "2023-09-14T22:42:22.567Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -39328,43 +58142,58 @@ "money_release_date": "2023-09-14T22:42:22.567Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 100,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a6428a9808f04d5db0207212", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-14T22:00:59.603Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "358f5afd23f84f78b1687223", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-14T22:00:59.603Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } + }, + "revision": "f239177ca5b7479a8ed668c3", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694728859604, "net_received_amount": 0, @@ -39374,18 +58203,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694728859604" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c6ca73d3383c4d3faadc5197", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694728859604", + "revision": "d1fdc9f7d6fb4c98838b517e", + "revision_nr": 1, + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -39394,37 +58246,46 @@ "total_amount": 100, "id": "1694728859604", "history_id": "1694728859604", - "date_created": "2023-09-14T22:00:59.604Z", - "date_last_updated": "2023-09-14T22:00:59.604Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 100,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9d9eca0129104eda885389cc", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694731526035/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "d1777205a9d64c6e82e50af5", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694731526035/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694731526035, "net_received_amount": 0, @@ -39434,18 +58295,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694731526035" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "41445919197c4221be7eeec3", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694731526035/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694731526035", + "revision": "34b458f2537440009d8ce0f9", + "revision_nr": 1, + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694731526035", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -39454,9 +58338,18 @@ "total_amount": 121808, "id": "1694731526035", "history_id": "1694731526035", - "date_created": "2023-09-14T22:45:26.035Z", - "date_last_updated": "2023-09-14T22:45:26.035Z", - "date_of_expiration": "2023-09-14T22:45:26.035Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39465,27 +58358,16 @@ "description": "Compra de 121.808,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694793493188/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0e9ea26cdce14d389e094fe6", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694793493188/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694793493188, "net_received_amount": 0, @@ -39495,18 +58377,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694793493188" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c8470ca3898347abb03f6d9f", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694793493188/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694793493188", + "revision": "dea5c41600624720843e20d3", + "revision_nr": 1, + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694793493188", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -39515,9 +58420,18 @@ "total_amount": 25384, "id": "1694793493188", "history_id": "1694793493188", - "date_created": "2023-09-15T15:58:13.188Z", - "date_last_updated": "2023-09-15T15:58:13.188Z", - "date_of_expiration": "2023-09-15T15:58:13.188Z", + "date_created": { + "type": 6, + "value": 1701459383508 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383508 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39526,41 +58440,42 @@ "description": "Compra de 25.384,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a9d7e1d5dfab4df492ab74e5", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383508, + "modified": 1701459383508 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-17T15:55:09.290Z" + ".val": "2023-10-17T15:55:09.290Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "90830ce175a54bfb85e25906", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694966109291, "net_received_amount": 0, @@ -39570,18 +58485,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694966109291" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a9f4fb00dc3742579adf3b73", + "revision_nr": 1, + "created": 1701459383509, + "modified": 1701459383509 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694966109291", + "revision": "8305faaf97914626a863f215", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -39590,8 +58528,14 @@ "total_amount": 20, "id": "1694966109291", "history_id": "1694966109291", - "date_created": "2023-09-17T15:55:09.291Z", - "date_last_updated": "2023-09-17T17:58:17.859Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -39602,29 +58546,32 @@ "money_release_date": "2023-09-17T17:58:17.859Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3c39023b388b4237a669866a", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694988703973/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "94ee47238ac54a16a777d5a3", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694988703973/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694988703973, "net_received_amount": 0, @@ -39634,18 +58581,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694988703973" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "347a2b36b2ff43e8928b3d28", + "revision_nr": 1, + "created": 1701459383509, + "modified": 1701459383509 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694988703973/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694988703973", + "revision": "72da8cc5e5224cbd910f4412", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694988703973", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -39654,9 +58624,18 @@ "total_amount": 25302, "id": "1694988703973", "history_id": "1694988703973", - "date_created": "2023-09-17T22:11:43.973Z", - "date_last_updated": "2023-09-17T22:11:43.973Z", - "date_of_expiration": "2023-09-17T22:11:43.973Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39665,41 +58644,42 @@ "description": "Compra de 25.302,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d24e466f756240e0bb70e46e", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-04T15:33:48.284Z" + ".val": "2023-11-04T15:33:48.284Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "175d83fbd5334b869789459c", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696520028285, "net_received_amount": 0, @@ -39709,18 +58689,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1696520028285" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "229f5226e01b40fa8c4da8a8", + "revision_nr": 1, + "created": 1701459383509, + "modified": 1701459383509 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1696520028285", + "revision": "de2e58cb78294705a9aff9fd", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -39730,8 +58733,14 @@ "total_amount": 20, "id": "1696520028285", "history_id": "1696520028285", - "date_created": "2023-10-05T15:33:48.285Z", - "date_last_updated": "2023-10-05T15:44:10.654Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -39742,29 +58751,32 @@ "money_release_date": "2023-10-05T15:44:10.654Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20" + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4089610f345c425ab53a416b", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { - "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520773436/details/costs", + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", + "revision": "503f4a3d646541a4abebb65f", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520773436/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696520773436, "net_received_amount": 0, @@ -39774,18 +58786,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1696520773436" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "31f7905950a24a279a2d90b5", + "revision_nr": 1, + "created": 1701459383509, + "modified": 1701459383509 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520773436/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1696520773436", + "revision": "08fd0db1a26a4fcc93a1c069", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520773436", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -39795,9 +58830,18 @@ "total_amount": 22059, "id": "1696520773436", "history_id": "1696520773436", - "date_created": "2023-10-05T15:46:13.436Z", - "date_last_updated": "2023-10-05T15:46:13.436Z", - "date_of_expiration": "2023-10-05T15:46:13.436Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39806,118 +58850,157 @@ "description": "Compra de 22.059,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7c4c44522e9646f7922be0ed", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ffd1741a4d39491aa638f0f3", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e9d8e0d6db344c30b71e33ff", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-10-01T15:23:13.593Z" + "analysisRequested": "2023-10-01T15:23:13.593Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9b1a9b897ffa4470bd5b1646", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1679345183302, "dateValidity": 1679345183302, "totalValue": 17.88, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z" + "balancesModificacao": "2023-10-15T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "53a46ddeba724e879d1059cf", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "-14612195.00000000", "symbol": "IVIP", - "value": -15912.37 + "value": -15912.37, + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "67bb97a817724ee381fb53d0", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "095d5501e3674afdb3259ccb", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } + }, + "revision": "1f2814dde7234ce8a759c8d2", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -39926,9 +59009,18 @@ "total_amount": 3000, "history_id": 1683732218933, "id": 1683732218933, - "date_created": "2023-05-10T15:23:38.933Z", - "date_last_updated": "2023-05-10T15:38:13.240Z", - "date_of_expiration": "2023-06-09T15:23:38.933Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -39936,30 +59028,29 @@ "date_approved": "2023-05-10T15:38:13.240Z", "money_release_date": "2023-05-10T15:38:13.240Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0583.5908.1725.8996-56" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "347bb438f110479e93712329", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { - "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1684627186163/details/costs", + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0583.5908.1725.8996-56", + "revision": "24b5922406f64a7797229a1c", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1684627186163/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684627186163, @@ -39970,18 +59061,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9990d640fe5640bbbcaf92b5", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1684627186163", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -39991,9 +59095,18 @@ "original_amount": 14612195, "total_amount": 14612195, "id": 1684627186163, - "date_created": "2023-05-20T23:59:46.163Z", - "date_last_updated": "2023-05-20T23:59:46.163Z", - "date_of_expiration": "2023-05-20T23:59:46.163Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -40002,31 +59115,43 @@ "history_id": 1684627186163, "description": "Compra de 14.612.195,00 IVIP por 3.000,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9b1339c1bca044d0b8a8330e", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 438365.85 + "amount": 438365.85, + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ae14b9c7276f457293ed2300", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692302387863, "net_received_amount": 0, @@ -40036,18 +59161,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/058359081725899656/history/1692302387863" + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "885211a413cb4789baf5a31a", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/058359081725899656/history/1692302387863", + "revision": "ffe50d9d27f145f8a9a59e00", + "revision_nr": 1, + "created": 1701459383509, + "modified": 1701459383509 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "7abb128abb5748369430bbcd", + "revision_nr": 1, + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -40056,9 +59214,18 @@ "total_amount": 14173829.15, "id": 1692302387863, "history_id": 1692302387863, - "date_created": "2023-08-17T19:59:47.863Z", - "date_last_updated": "2023-08-25T14:20:52.038Z", - "date_of_expiration": "2023-08-17T19:59:47.863Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -40068,34 +59235,56 @@ "date_approved": "2023-08-25T14:20:52.038Z", "money_release_date": "2023-08-25T14:20:52.038Z", "money_release_status": "drawee", - "wasDebited": true, - "description": "Saque de 14.173.829,15 IVIP para a carteira 0x5cD8D20fc31429974550e7e677C493554c46a73A" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "81fcb03fd76e4d50bd20345a", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/description", + "content": { + "type": "STRING", + "value": "Saque de 14.173.829,15 IVIP para a carteira 0x5cD8D20fc31429974550e7e677C493554c46a73A", + "revision": "33e2fc77017d47179784e85b", + "revision_nr": 1, + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 438365.85 + "amount": 438365.85, + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "69d7dee8c22a42b0bfb4c9d9", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692441112310, "net_received_amount": 0, @@ -40105,18 +59294,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/058359081725899656/history/1692441112310" + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1652c63873aa46f88933d10f", + "revision_nr": 1, + "created": 1701459383509, + "modified": 1701459383509 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/058359081725899656/history/1692441112310", + "revision": "b87fe98cca8f491c8b6d7a37", + "revision_nr": 1, + "created": 1701459383509, + "modified": 1701459383509 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "67a70a3b6eca4736a7fa7d35", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -40125,9 +59347,18 @@ "total_amount": 14173829.15, "id": 1692441112310, "history_id": 1692441112310, - "date_created": "2023-08-19T10:31:52.310Z", - "date_last_updated": "2023-08-25T14:12:05.453Z", - "date_of_expiration": "2023-08-19T10:31:52.310Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -40137,183 +59368,256 @@ "date_approved": "2023-08-25T14:12:05.453Z", "money_release_date": "2023-08-25T14:12:05.453Z", "money_release_status": "drawee", - "wasDebited": true, - "description": "Saque de 14.173.829,15 IVIP para a carteira 0x5cD8D20fc31429974550e7e677C493554c46a73A" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ce337e99f3d349608ebf09e3", + "revision_nr": 1, + "created": 1701459383509, + "modified": 1701459383509 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/description", + "content": { + "type": "STRING", + "value": "Saque de 14.173.829,15 IVIP para a carteira 0x5cD8D20fc31429974550e7e677C493554c46a73A", + "revision": "8641ea071d18453985f675c3", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8866750313fa4d6faddfd039", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a57d3f85ab3943b6b48904cf", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4d3e548fa27b489a9e769a09", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1683669489240, "dateValidity": 1683669489240, "totalValue": 600.6, "currencyType": "USD", - "balancesModificacao": "2023-10-01T03:00:00.000Z" + "balancesModificacao": "2023-10-01T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "114f6469adeb4a12924b7ff5", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395483 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/059914438431437400/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3411073541224ad7a3f9d811", "revision_nr": 1, - "created": 1700748395483, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/059914438431437400/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "77ec6a5977104e9197554b54", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/059914438431437400/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "67cf09cddc4343e8beb9844b", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/059914438431437400/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "01351e1454da454dabd4787b", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/059914438431437400", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684637987083, "dateValidity": 1684637987083, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "025911d5e7964e3fad84bf2b", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "BRL", "available": "30.00000000", - "value": 6.027 + "value": 6.027, + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3a866437bb4749c790bba06a", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9b51675e7f8244e9a5c1d85a", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } + }, + "revision": "d83e821448a84057b9184a79", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -40322,9 +59626,18 @@ "total_amount": 30, "history_id": 1684092073649, "id": 1684092073649, - "date_created": "2023-05-14T19:21:13.649Z", - "date_last_updated": "2023-05-14T19:24:42.901Z", - "date_of_expiration": "2023-06-13T19:21:13.649Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -40332,134 +59645,195 @@ "date_approved": "2023-05-14T19:24:42.901Z", "money_release_date": "2023-05-14T19:24:42.901Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 30,00 para a carteira iVip 0600.4447.6007.1925-36" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5d3de4c3a09e450689e1e73a", + "revision_nr": 1, + "created": 1701459383509, + "modified": 1701459383509 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0600.4447.6007.1925-36", + "revision": "046d723226354620aebbf4be", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "82d6d9c4a39f48d9b22c8897", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e5621293b16241ef9ba37628", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4668b896df6948ac9f80e09b", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684091907959, "dateValidity": 1684091907959, "totalValue": 6.03, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e7a0bf9d3fb84f59b5ee08e4", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "27270acc05b5429593d6dae6", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "0.00000000", "symbol": "IVIP", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c5de5c4e40a3483a87811050", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f7604878d4a9470f8a6e17e9", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } + }, + "revision": "314910ba0c444267866a100d", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -40468,9 +59842,18 @@ "total_amount": 30, "history_id": 1684104224358, "id": 1684104224358, - "date_created": "2023-05-14T22:43:44.358Z", - "date_last_updated": "2023-05-14T22:51:50.880Z", - "date_of_expiration": "2023-06-13T22:43:44.358Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -40478,30 +59861,29 @@ "date_approved": "2023-05-14T22:51:50.880Z", "money_release_date": "2023-05-14T22:51:50.880Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 30,00 para a carteira iVip 0602.8179.3071.1252-50" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f6d4039612c14218bd498021", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { - "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684702707589/details/costs", + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0602.8179.3071.1252-50", + "revision": "f7fe529b52f148cfa198875d", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684702707589/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684702707589, @@ -40512,18 +59894,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b58f27b4a14244d1a74b7718", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684702707589", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -40533,9 +59928,18 @@ "original_amount": 145829, "total_amount": 145829, "id": 1684702707589, - "date_created": "2023-05-21T20:58:27.589Z", - "date_last_updated": "2023-05-21T20:58:27.589Z", - "date_of_expiration": "2023-05-21T20:58:27.589Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -40544,38 +59948,41 @@ "history_id": 1684702707589, "description": "Compra de 145.829,00 IVIP por 30,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "adcbdbc0ddfd460db9793898", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } + }, + "revision": "8532642f31194d14ae2170f0", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -40584,47 +59991,69 @@ "total_amount": 20, "history_id": 1685061340656, "id": 1685061340656, - "date_created": "2023-05-26T00:35:40.656Z", - "date_last_updated": "2023-05-26T00:35:40.656Z", - "date_of_expiration": "2023-06-25T00:35:40.656Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0602.8179.3071.1252-50" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a43d7c037f394c22aaae7570", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { - "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809/details/costs", + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0602.8179.3071.1252-50", + "revision": "3cce5c779d0a4b7fad7a24b2", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } + }, + "revision": "e504cb3387064842851cb858", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -40633,38 +60062,46 @@ "total_amount": 1055, "history_id": 1685664745809, "id": 1685664745809, - "date_created": "2023-06-02T00:12:25.809Z", - "date_last_updated": "2023-06-02T17:34:44.727Z", - "date_of_expiration": "2023-07-02T00:12:25.809Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-06-02T17:34:44.727Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 1.055,00 para a carteira iVip 0602.8179.3071.1252-50" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "483dbdabb7d34d88b7ff9011", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { - "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090/details/costs", + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.055,00 para a carteira iVip 0602.8179.3071.1252-50", + "revision": "42384d8d05964df1b8dc8edd", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690250551090, "net_received_amount": 0, @@ -40674,18 +60111,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/060281793071125250/history/1690250551090" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b186b526d2fe483d84e4a341", + "revision_nr": 1, + "created": 1701459383509, + "modified": 1701459383509 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/060281793071125250/history/1690250551090", + "revision": "02c76bf18e2049eba6320898", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -40694,38 +60154,46 @@ "total_amount": 145829, "id": 1690250551090, "history_id": 1690250551090, - "date_created": "2023-07-25T02:02:31.090Z", - "date_last_updated": "2023-07-25T02:02:31.090Z", - "date_of_expiration": "2023-07-25T02:02:31.090Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "pending_waiting_payment", - "description": "Saque de 145.829,00 IVIP para a carteira 0xD99D89C01D8F4F0809a32D3916CbC94331E7b87e" + "status_detail": "pending_waiting_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ca42262df3fb40ada6cddde2", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { - "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963/details/costs", + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 145.829,00 IVIP para a carteira 0xD99D89C01D8F4F0809a32D3916CbC94331E7b87e", + "revision": "394ca87676cd4e019da4dfa6", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690380108963, "net_received_amount": 0, @@ -40735,18 +60203,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/060281793071125250/history/1690380108963" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1a1e92b4a17848d2a592d063", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/060281793071125250/history/1690380108963", + "revision": "e1c0f9ba93354b6d8f15f108", + "revision_nr": 1, + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -40755,9 +60246,18 @@ "total_amount": 145829, "id": 1690380108963, "history_id": 1690380108963, - "date_created": "2023-07-26T14:01:48.963Z", - "date_last_updated": "2023-07-26T17:31:37.340Z", - "date_of_expiration": "2023-07-26T14:01:48.963Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -40767,120 +60267,169 @@ "date_approved": "2023-07-26T17:31:37.340Z", "money_release_date": "2023-07-26T17:31:37.340Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 145.829,00 IVIP para a carteira 0xD99D89C01D8F4F0809a32D3916CbC94331E7b87e" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "368272a2c7c9421f92e39da8", + "revision_nr": 1, + "created": 1701459383509, + "modified": 1701459383509 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963/description", + "content": { + "type": "STRING", + "value": "Saque de 145.829,00 IVIP para a carteira 0xD99D89C01D8F4F0809a32D3916CbC94331E7b87e", + "revision": "cf141b3bf42e4ebb8869b85c", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0a23fb4a1bf64c719159559d", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7c062f2c2a904901af65a6c2", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cf36b2398db54f6fadedf1dc", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684104139226, "dateValidity": 1684104139226, "totalValue": 6.02, "currencyType": "USD", - "balancesModificacao": "2023-08-26T03:00:00.000Z" + "balancesModificacao": "2023-08-26T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "db6ec907d059439ca4334b77", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "2596003.86000000", "symbol": "IVIP", - "value": 270.012 + "value": 270.012, + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1a49618966fb4ab6b6ef22de", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c8e8c97ce87948b5bcaa6eb2", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + } + }, + "revision": "58e89c4fecdd4a39afef6d13", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -40889,9 +60438,18 @@ "total_amount": 1800, "history_id": 1679009450729, "id": 1679009450729, - "date_created": "2023-03-16T23:30:50.729Z", - "date_last_updated": "2023-03-16T23:32:58.413Z", - "date_of_expiration": "2023-04-15T23:30:50.729Z", + "date_created": { + "type": 6, + "value": 1701459383509 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383509 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383509 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -40899,30 +60457,29 @@ "date_approved": "2023-03-16T23:32:58.413Z", "money_release_date": "2023-03-16T23:32:58.413Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.800,00 para a carteira iVip 0606.0636.6606.7580-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "023c756b9559457c84f7ed86", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { - "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679267499015/details/costs", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.800,00 para a carteira iVip 0606.0636.6606.7580-00", + "revision": "c1eb492469a0408ead719ec4", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383509, + "modified": 1701459383509 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679267499015/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679267499015, @@ -40933,18 +60490,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bb676e2ba1254963befd92ce", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679267499015", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -40954,9 +60524,18 @@ "original_amount": 10484307, "total_amount": 10484307, "id": 1679267499015, - "date_created": "2023-03-19T23:11:39.015Z", - "date_last_updated": "2023-03-19T23:11:39.015Z", - "date_of_expiration": "2023-03-19T23:11:39.015Z", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -40965,27 +60544,16 @@ "history_id": 1679267499015, "description": "Compra de 10484307 IVIP por 1800 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476464326/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d4e7a41c07634a6e987ee87d", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476464326/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688476464326, @@ -40996,18 +60564,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b5c463771a664a7787c4d092", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476464326", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -41016,38 +60597,46 @@ "original_amount": 1000, "total_amount": 1000, "id": 1688476464326, - "date_created": "2023-07-04T13:14:24.326Z", - "date_last_updated": "2023-07-04T13:14:24.326Z", - "date_of_expiration": "2024-07-04T13:14:24.326Z", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1688476464326, - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/4/2024" + "history_id": 1688476464326 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4c5e07ac3baf45388200dd2e", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { - "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476478538/details/costs", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476464326/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/4/2024", + "revision": "5e1c150829234620af1a0afa", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476478538/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688476478538, @@ -41058,18 +60647,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3b09ccf3967b4625bab71e03", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476478538", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -41078,38 +60680,46 @@ "original_amount": 1000, "total_amount": 1000, "id": 1688476478538, - "date_created": "2023-07-04T13:14:38.538Z", - "date_last_updated": "2023-07-04T13:14:38.538Z", - "date_of_expiration": "2025-07-04T13:14:38.538Z", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1688476478538, - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/4/2025" + "history_id": 1688476478538 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "88d16d65b56d4acc8e1e47e7", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { - "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259/details/costs", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476478538/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/4/2025", + "revision": "5ef29637eadc4e48ad285224", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693784335259, "net_received_amount": 0, @@ -41119,18 +60729,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1693784335259" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bfb47b05c4e447cba73d651b", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1693784335259", + "revision": "0a7d8e89a1e8475ebb8c5f4c", + "revision_nr": 1, + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -41139,38 +60772,46 @@ "total_amount": 5684843, "id": "1693784335259", "history_id": "1693784335259", - "date_created": "2023-09-03T23:38:55.259Z", - "date_last_updated": "2023-09-03T23:38:55.259Z", - "date_of_expiration": "2023-10-03T23:38:55.258Z", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 5.684.843,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "034649e20d5c435288cfdbab", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { - "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715/details/costs", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 5.684.843,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", + "revision": "1dfe789cf98b497f9aa870b6", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696384249715, "net_received_amount": 0, @@ -41180,18 +60821,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384249715" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f160d1aa5641401fad209085", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384249715", + "revision": "8cfe9a18dff24c2d8dfd3cad", + "revision_nr": 1, + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -41201,38 +60865,46 @@ "total_amount": 5798539.86, "id": "1696384249715", "history_id": "1696384249715", - "date_created": "2023-10-04T01:50:49.715Z", - "date_last_updated": "2023-10-04T01:50:49.715Z", - "date_of_expiration": "2023-10-04T01:50:49.715Z", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6c58143458654436bbe824f7", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { - "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400/details/costs", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", + "revision": "ebb44ffe3c9d4f58bd9eaf55", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696384254400, "net_received_amount": 0, @@ -41242,18 +60914,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384254400" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6d168301a4324d068329bf45", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384254400", + "revision": "521059f1b4704110b341ac1d", + "revision_nr": 1, + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -41263,38 +60958,46 @@ "total_amount": 5798539.86, "id": "1696384254400", "history_id": "1696384254400", - "date_created": "2023-10-04T01:50:54.400Z", - "date_last_updated": "2023-10-04T01:50:54.400Z", - "date_of_expiration": "2023-10-04T01:50:54.400Z", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "cc_rejected_duplicated_payment", - "description": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27" + "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "85e96d29381749888e38fc9a", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { - "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628/details/costs", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", + "revision": "8a3e07fcbc0d4016a6edcdf4", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696384253628, "net_received_amount": 0, @@ -41304,18 +61007,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384253628" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9ef5dfb0ecd84646845a387d", + "revision_nr": 1, + "created": 1701459383510, + "modified": 1701459383510 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384253628", + "revision": "e88374e858df4ac097504816", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -41325,38 +61051,46 @@ "total_amount": 5798539.86, "id": "1696384253628", "history_id": "1696384253628", - "date_created": "2023-10-04T01:50:53.628Z", - "date_last_updated": "2023-10-04T01:50:53.628Z", - "date_of_expiration": "2023-10-04T01:50:53.628Z", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "cc_rejected_duplicated_payment", - "description": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27" + "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e53f6af54e2b4c12b0ad51a4", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { - "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654/details/costs", + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", + "revision": "179581b4a4ef4d75b8d0887a", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696457810654, "net_received_amount": 0, @@ -41366,18 +61100,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696457810654" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b5624838819f4a57910d385a", + "revision_nr": 1, + "created": 1701459383510, + "modified": 1701459383510 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696457810654", + "revision": "8ca0dafc13434143a433559d", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -41387,304 +61144,480 @@ "total_amount": 8000000, "id": "1696457810654", "history_id": "1696457810654", - "date_created": "2023-10-04T22:16:50.654Z", - "date_last_updated": "2023-10-04T22:16:50.654Z", - "date_of_expiration": "2023-11-04T22:16:50.615Z", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9269699976ed453fbe969c7f", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654/description", + "content": { + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "8149cb63c4544a20a5cdd893", + "revision_nr": 1, + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9298e2f2ffbf42a7a3ba6222", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c0ad40dc03ac439a8f327951", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "90c8d71eeb2b456c8075764a", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1679008860926, "dateValidity": 1679023260971, "totalValue": 563.3215233209353, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z" + "balancesModificacao": "2023-10-15T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "628459cb65d946918079406f", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "716d88fd969448068eca476a", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BTC", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "BTC", "value": 0.12708406600000002, - "available": "0.00000509" + "available": "0.00000509", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0537d872b67f4e6fa073e9c5", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BNB", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "BNB", "value": 0.0088529947, - "available": "0.00002689" + "available": "0.00002689", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "245c4468a62140918fe776d6", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BUSD", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "BUSD", "value": 0.032112, - "available": "0.03211200" + "available": "0.03211200", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fb999f1805894fb4b0180288", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/KAVA", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "KAVA", "value": 1.4510568362399998, - "available": "1.41843288" + "available": "1.41843288", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5e60be9926c547dba6700f2b", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "BRL", "value": 0.145340815, - "available": "0.76697000" + "available": "0.76697000", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "08d079fca93e469395e6b66d", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/IDEX", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "IDEX", "value": 0.0002743, - "available": "0.00500000" + "available": "0.00500000", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "81961bf8bf0b49e78e3517f5", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/NFT", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "NFT", "value": 0.15272504798763, - "available": "372500.117043" + "available": "372500.117043", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "57e89b84d2654392b90fa622", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/LUNC", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "LUNC", "value": 7.524e-8, - "available": "0.00060000" + "available": "0.00060000", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "907b63005f6e40b4a3f4d45a", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/GFT", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "GFT", "value": 0.001235, - "available": "0.10000000" + "available": "0.10000000", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "95aa9a5336884b2eaea8b711", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f68082c221fd4b23b4b8a3e7", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678997573060, "dateValidity": 1679015562550, "totalValue": 1.919, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "82a15babf77741b1a97af2ad", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "1808506.00000000", "symbol": "IVIP", - "value": 279.32 + "value": 279.32, + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b0289897f13d40a1af6cf191", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "210847350def4d548199113d", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-01T16:40:33.996Z" + ".val": "2023-09-01T16:40:33.996Z", + "date_created": { + "type": 6, + "value": 1701459383510 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383510 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383510 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4e33e744aad14b35ab906b96", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690994433997, "net_received_amount": 0, @@ -41694,18 +61627,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1690994433997" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383511 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383511 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383511 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "40852aba33354c7fa2006b60", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383511, + "modified": 1701459383511 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1690994433997", + "revision": "6e800a2f1b0e4948a949f0c8", + "revision_nr": 1, + "created": 1701459383511, + "modified": 1701459383511 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -41714,8 +61670,14 @@ "total_amount": 1000, "id": 1690994433997, "history_id": 1690994433997, - "date_created": "2023-08-02T16:40:33.997Z", - "date_last_updated": "2023-08-02T20:48:32.957Z", + "date_created": { + "type": 6, + "value": 1701459383511 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383511 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -41726,29 +61688,32 @@ "money_release_date": "2023-08-02T20:48:32.957Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 1.000,00 para a carteira iVip 0625.7521.4502.4773-84" + "date_of_expiration": { + "type": 6, + "value": 1701459383511 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "78e09d334b0e4d0981432f33", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383511, + "modified": 1701459383511 } }, { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691064347943/details/costs", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 1.000,00 para a carteira iVip 0625.7521.4502.4773-84", + "revision": "63b5e16a9a934b1b8900c161", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383510, + "modified": 1701459383510 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691064347943/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691064347943, "net_received_amount": 0, @@ -41758,18 +61723,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691064347943" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383511 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383511 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383511 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a06c2e3fced04e29bc80eedc", + "revision_nr": 1, + "created": 1701459383511, + "modified": 1701459383511 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691064347943/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691064347943", + "revision": "411146ad17404802a73c827c", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383511, + "modified": 1701459383511 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691064347943", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -41778,9 +61766,18 @@ "total_amount": 207673, "id": 1691064347943, "history_id": 1691064347943, - "date_created": "2023-08-03T12:05:47.943Z", - "date_last_updated": "2023-08-03T12:05:47.943Z", - "date_of_expiration": "2023-08-03T12:05:47.943Z", + "date_created": { + "type": 6, + "value": 1701459383511 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383511 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383511 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -41789,27 +61786,16 @@ "description": "Compra de 207.673,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691234903050/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "082e050b40194fb39734bf7f", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383511, + "modified": 1701459383511 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691234903050/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691234903050, "net_received_amount": 0, @@ -41819,18 +61805,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691234903050" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383511 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383511 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383511 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d0f5135da91b442fb23df420", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383511, + "modified": 1701459383511 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691234903050/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691234903050", + "revision": "a7b4f5120e36418098a3865c", + "revision_nr": 1, + "created": 1701459383511, + "modified": 1701459383511 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691234903050", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -41839,9 +61848,18 @@ "total_amount": 292108, "id": 1691234903050, "history_id": 1691234903050, - "date_created": "2023-08-05T11:28:23.050Z", - "date_last_updated": "2023-08-05T11:28:23.050Z", - "date_of_expiration": "2023-08-05T11:28:23.050Z", + "date_created": { + "type": 6, + "value": 1701459383511 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383511 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383511 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -41850,27 +61868,16 @@ "description": "Compra de 292.108,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "694b8c02c5f84f6596450747", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691237670718/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383511, + "modified": 1701459383511 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691237670718/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691237670718, "net_received_amount": 0, @@ -41880,18 +61887,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691237670718" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383511 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383511 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383511 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "63823a415db74d34af7fb7f4", + "revision_nr": 1, + "created": 1701459383511, + "modified": 1701459383511 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691237670718/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691237670718", + "revision": "aed5eda7f8964f44b39aab3b", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383511, + "modified": 1701459383511 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691237670718", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -41900,9 +61930,18 @@ "total_amount": 293284, "id": 1691237670718, "history_id": 1691237670718, - "date_created": "2023-08-05T12:14:30.718Z", - "date_last_updated": "2023-08-05T12:14:30.718Z", - "date_of_expiration": "2023-08-05T12:14:30.718Z", + "date_created": { + "type": 6, + "value": 1701459383511 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383511 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383511 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -41911,27 +61950,16 @@ "description": "Compra de 293.284,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4939e75c148e402190a7ddc7", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691454318499/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383511, + "modified": 1701459383511 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691454318499/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691454318499, "net_received_amount": 0, @@ -41941,18 +61969,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691454318499" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383511 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383511 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383511 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "302fffc2244e4f90bdcfcb00", + "revision_nr": 1, + "created": 1701459383511, + "modified": 1701459383511 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691454318499/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691454318499", + "revision": "ec23027834c44fe09f4cddd5", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383511, + "modified": 1701459383511 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691454318499", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -41961,9 +62012,18 @@ "total_amount": 327037, "id": 1691454318499, "history_id": 1691454318499, - "date_created": "2023-08-08T00:25:18.499Z", - "date_last_updated": "2023-08-08T00:25:18.499Z", - "date_of_expiration": "2023-08-08T00:25:18.499Z", + "date_created": { + "type": 6, + "value": 1701459383511 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383511 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383511 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -41972,41 +62032,42 @@ "description": "Compra de 327.037,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3aef5ca8e9e546fca1582fbf", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383511, + "modified": 1701459383511 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-07T11:45:10.176Z" + ".val": "2023-09-07T11:45:10.176Z", + "date_created": { + "type": 6, + "value": 1701459383511 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383511 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383511 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6ed6fc801d994fe3982053db", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383511, + "modified": 1701459383511 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691495110179, "net_received_amount": 0, @@ -42016,18 +62077,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691495110179" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6caff9641191422499db0dae", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691495110179", + "revision": "f4967d1230284b72b7b07907", + "revision_nr": 1, + "created": 1701459383511, + "modified": 1701459383511 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -42036,8 +62120,14 @@ "total_amount": 1000, "id": 1691495110179, "history_id": 1691495110179, - "date_created": "2023-08-08T11:45:10.179Z", - "date_last_updated": "2023-08-08T13:05:51.775Z", + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -42048,29 +62138,32 @@ "money_release_date": "2023-08-08T13:05:51.775Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 1.000,00 para a carteira iVip 0625.7521.4502.4773-84" + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9069b46975bb49158fb25e72", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691500327136/details/costs", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 1.000,00 para a carteira iVip 0625.7521.4502.4773-84", + "revision": "280e969bfc054db28153c21a", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383511, + "modified": 1701459383511 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691500327136/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691500327136, "net_received_amount": 0, @@ -42080,18 +62173,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691500327136" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "985bc89291ec4acc9a427da3", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691500327136/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691500327136", + "revision": "70984f1e6085462ea2ae68c3", + "revision_nr": 1, + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691500327136", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -42100,9 +62216,18 @@ "total_amount": 332596, "id": 1691500327136, "history_id": 1691500327136, - "date_created": "2023-08-08T13:12:07.136Z", - "date_last_updated": "2023-08-08T13:12:07.136Z", - "date_of_expiration": "2023-08-08T13:12:07.136Z", + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -42111,27 +62236,16 @@ "description": "Compra de 332.596,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691711802306/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e1160204020d4f649644dbb2", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691711802306/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691711802306, "net_received_amount": 0, @@ -42141,18 +62255,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691711802306" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c411e0504f0041f4b8596dee", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691711802306/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691711802306", + "revision": "0259e3e066844e3092de46b2", + "revision_nr": 1, + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691711802306", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -42161,9 +62298,18 @@ "total_amount": 372254, "id": 1691711802306, "history_id": 1691711802306, - "date_created": "2023-08-10T23:56:42.306Z", - "date_last_updated": "2023-08-10T23:56:42.306Z", - "date_of_expiration": "2023-08-10T23:56:42.306Z", + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -42172,27 +62318,16 @@ "description": "Compra de 372.254,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691848017758/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0512f2c60e104667a51277cd", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691848017758/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691848017758, "net_received_amount": 0, @@ -42202,18 +62337,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691848017758" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "45e6235f6fe14b3da1b7c64f", + "revision_nr": 1, + "created": 1701459383512, + "modified": 1701459383512 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691848017758/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691848017758", + "revision": "bd7244a0803f4bfd8c2922cf", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691848017758", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -42222,9 +62380,18 @@ "total_amount": 378088, "id": 1691848017758, "history_id": 1691848017758, - "date_created": "2023-08-12T13:46:57.758Z", - "date_last_updated": "2023-08-12T13:46:57.758Z", - "date_of_expiration": "2023-08-12T13:46:57.758Z", + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -42233,27 +62400,16 @@ "description": "Compra de 378.088,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2c5d76ae3f6140c1a693c27d", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692027842104/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692027842104/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692027842104, "net_received_amount": 0, @@ -42263,18 +62419,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692027842104" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "871bba9631ad4f58b6e4a2f4", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692027842104/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692027842104", + "revision": "619dc7c790ff48b8adab3b32", + "revision_nr": 1, + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692027842104", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -42283,9 +62462,18 @@ "total_amount": 456006, "id": 1692027842104, "history_id": 1692027842104, - "date_created": "2023-08-14T15:44:02.104Z", - "date_last_updated": "2023-08-14T15:44:02.104Z", - "date_of_expiration": "2023-08-14T15:44:02.104Z", + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -42294,27 +62482,16 @@ "description": "Compra de 456.006,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692250715020/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6d2610fcfb864c20a06b4559", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692250715020/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692250715020, "net_received_amount": 0, @@ -42324,18 +62501,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692250715020" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4d1cd8c54dba4e6f9dca4ad2", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692250715020/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692250715020", + "revision": "07243490dc6448c3ab484abf", + "revision_nr": 1, + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692250715020", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -42344,9 +62544,18 @@ "total_amount": 475181, "id": 1692250715020, "history_id": 1692250715020, - "date_created": "2023-08-17T05:38:35.020Z", - "date_last_updated": "2023-08-17T05:38:35.020Z", - "date_of_expiration": "2023-08-17T05:38:35.020Z", + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -42355,41 +62564,42 @@ "description": "Compra de 475.181,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3113c2f122b34c999ad8071b", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-18T23:21:10.157Z" + ".val": "2023-09-18T23:21:10.157Z", + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fc615edaddfc4c8ba63d0cbf", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692487270158, "net_received_amount": 0, @@ -42399,18 +62609,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692487270158" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c962539c255e49b2a2545567", + "revision_nr": 1, + "created": 1701459383512, + "modified": 1701459383512 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692487270158", + "revision": "730dd7d02c4545f0ba9f731d", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -42419,51 +62652,72 @@ "total_amount": 1500, "id": 1692487270158, "history_id": 1692487270158, - "date_created": "2023-08-19T23:21:10.158Z", - "date_last_updated": "2023-08-19T23:21:10.158Z", + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84" + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a5923895deae4aa58f99093e", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-18T23:26:18.184Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", + "revision": "2d7a5cf6898a404bac3bd522", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/details/costs", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-18T23:26:18.184Z", + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } + }, + "revision": "980fb3aaab36496da0ecb2e2", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692487578184, "net_received_amount": 0, @@ -42473,18 +62727,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692487578184" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6a119aeee44f444fae646bbf", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692487578184", + "revision": "be3e5079d3934f92b32d70e9", + "revision_nr": 1, + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -42493,37 +62770,46 @@ "total_amount": 1500, "id": 1692487578184, "history_id": 1692487578184, - "date_created": "2023-08-19T23:26:18.184Z", - "date_last_updated": "2023-08-19T23:26:18.184Z", + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84" + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "89181731a8414fd0be317456", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692488711638/details/costs", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", + "revision": "4cdb313e70d747b98a6e1aea", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692488711638/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692488711638, "net_received_amount": 0, @@ -42533,18 +62819,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692488711638" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2da01f733ff34614a7c5149d", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692488711638/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692488711638", + "revision": "5225384cd2104bcab839b710", + "revision_nr": 1, + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692488711638", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -42553,9 +62862,18 @@ "total_amount": 328542, "id": 1692488711638, "history_id": 1692488711638, - "date_created": "2023-08-19T23:45:11.638Z", - "date_last_updated": "2023-08-19T23:45:11.638Z", - "date_of_expiration": "2023-08-19T23:45:11.638Z", + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -42564,41 +62882,42 @@ "description": "Compra de 328.542,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fa5a29c50a4d4f9eb3aca442", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-20T20:02:44.836Z" + ".val": "2023-09-20T20:02:44.836Z", + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0454f0d7f65643878f573170", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692648164836, "net_received_amount": 0, @@ -42608,18 +62927,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692648164836" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c25ea82778924a36b8856485", + "revision_nr": 1, + "created": 1701459383512, + "modified": 1701459383512 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692648164836", + "revision": "19c591eafe694b6081391002", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -42628,8 +62970,14 @@ "total_amount": 1500, "id": 1692648164836, "history_id": 1692648164836, - "date_created": "2023-08-21T20:02:44.836Z", - "date_last_updated": "2023-08-22T01:03:51.441Z", + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -42640,29 +62988,32 @@ "money_release_date": "2023-08-22T01:03:51.441Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84" + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ae81d4a6272a45228d4cd1b7", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666772551/details/costs", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", + "revision": "d6e05a0ec5fa4cacb7a6b977", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666772551/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692666772551, "net_received_amount": 0, @@ -42672,18 +63023,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692666772551" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "456c628ca1b54034abd9137a", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666772551/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692666772551", + "revision": "2f7cdde90d2c438d983864c3", + "revision_nr": 1, + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666772551", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -42692,9 +63066,18 @@ "total_amount": 285329, "id": "1692666772551", "history_id": "1692666772551", - "date_created": "2023-08-22T01:12:52.551Z", - "date_last_updated": "2023-08-22T01:12:52.551Z", - "date_of_expiration": "2023-08-22T01:12:52.551Z", + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -42703,27 +63086,16 @@ "description": "Compra de 285.329,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4296b35d62eb46c0aa1b51e3", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666803752/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666803752/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692666803752, "net_received_amount": 0, @@ -42733,18 +63105,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692666803752" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "92415243434744518c65c547", + "revision_nr": 1, + "created": 1701459383512, + "modified": 1701459383512 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666803752/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692666803752", + "revision": "8e3a168acf38493eaffcc637", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666803752", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -42753,9 +63148,18 @@ "total_amount": 285329, "id": "1692666803752", "history_id": "1692666803752", - "date_created": "2023-08-22T01:13:23.752Z", - "date_last_updated": "2023-08-22T01:13:23.752Z", - "date_of_expiration": "2023-08-22T01:13:23.752Z", + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -42764,27 +63168,16 @@ "description": "Compra de 285.329,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "22db32aa471f4e49b3fe4431", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692730130844/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692730130844/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692730130844, "net_received_amount": 0, @@ -42794,18 +63187,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692730130844" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a9fabfd2611744308d847623", + "revision_nr": 1, + "created": 1701459383512, + "modified": 1701459383512 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692730130844/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692730130844", + "revision": "323fa959ac52400e9d848fca", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692730130844", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -42814,9 +63230,18 @@ "total_amount": 282682, "id": "1692730130844", "history_id": "1692730130844", - "date_created": "2023-08-22T18:48:50.844Z", - "date_last_updated": "2023-08-22T18:48:50.844Z", - "date_of_expiration": "2023-08-22T18:48:50.844Z", + "date_created": { + "type": 6, + "value": 1701459383512 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383512 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383512 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -42825,27 +63250,16 @@ "description": "Compra de 282.682,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692751123570/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fd0e7c32c2c84ac585c11410", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383512, + "modified": 1701459383512 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692751123570/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692751123570, "net_received_amount": 0, @@ -42855,18 +63269,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692751123570" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "92ebc0daaf004ca6ace7d5be", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692751123570/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692751123570", + "revision": "73f024aec6a94c6494735376", + "revision_nr": 1, + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692751123570", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -42875,9 +63312,18 @@ "total_amount": 526629, "id": "1692751123570", "history_id": "1692751123570", - "date_created": "2023-08-23T00:38:43.570Z", - "date_last_updated": "2023-08-23T00:38:43.570Z", - "date_of_expiration": "2023-08-23T00:38:43.570Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -42886,27 +63332,16 @@ "description": "Compra de 526.629,00 IVIP por 400,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692814492618/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "af1e0e64eedd41de9d5bd928", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692814492618/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692814492618, "net_received_amount": 0, @@ -42916,18 +63351,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692814492618" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d6c4def6ec1c4726be7d77b1", + "revision_nr": 1, + "created": 1701459383513, + "modified": 1701459383513 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692814492618/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692814492618", + "revision": "d99bfc9ab7c94b8aba08c3b8", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692814492618", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -42936,9 +63394,18 @@ "total_amount": 614430, "id": "1692814492618", "history_id": "1692814492618", - "date_created": "2023-08-23T18:14:52.618Z", - "date_last_updated": "2023-08-23T18:14:52.618Z", - "date_of_expiration": "2023-08-23T18:14:52.618Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -42947,41 +63414,42 @@ "description": "Compra de 614.430,00 IVIP por 500,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7152c2a2e5de4a93b6e31d66", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-14T15:33:42.264Z" + ".val": "2023-10-14T15:33:42.264Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "18d3c2bccffc4365bdfd735e", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694705622264, "net_received_amount": 0, @@ -42991,18 +63459,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1694705622264" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1b9f1c1242e84c43a5a55248", + "revision_nr": 1, + "created": 1701459383513, + "modified": 1701459383513 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1694705622264", + "revision": "46e622c677054599837a4fc9", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -43011,8 +63502,14 @@ "total_amount": 2000, "id": "1694705622264", "history_id": "1694705622264", - "date_created": "2023-09-14T15:33:42.264Z", - "date_last_updated": "2023-09-14T18:38:17.493Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -43023,29 +63520,32 @@ "money_release_date": "2023-09-14T18:38:17.493Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0625.7521.4502.4773-84" + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a9e6d8dbc6b44b5f88e32dcb", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694719090426/details/costs", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0625.7521.4502.4773-84", + "revision": "1419d77d616e489e8b2321d3", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694719090426/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694719090426, "net_received_amount": 0, @@ -43055,18 +63555,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1694719090426" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0fbf0d91c8324b65963f31c0", + "revision_nr": 1, + "created": 1701459383513, + "modified": 1701459383513 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694719090426/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1694719090426", + "revision": "f52b017d6cfb4bc3886405e6", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694719090426", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -43075,9 +63598,18 @@ "total_amount": 2446285, "id": "1694719090426", "history_id": "1694719090426", - "date_created": "2023-09-14T19:18:10.426Z", - "date_last_updated": "2023-09-14T19:18:10.426Z", - "date_of_expiration": "2023-09-14T19:18:10.426Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -43086,27 +63618,16 @@ "description": "Compra de 2.446.285,00 IVIP por 2.000,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "80c1fc97e42f483489fcf88d", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695328321082, "net_received_amount": 0, @@ -43116,18 +63637,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1695328321082" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3d53d197802f4da79a1dd666", + "revision_nr": 1, + "created": 1701459383513, + "modified": 1701459383513 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1695328321082", + "revision": "8750996453d94eed9798b2ce", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -43136,38 +63680,46 @@ "total_amount": 1136670, "id": "1695328321082", "history_id": "1695328321082", - "date_created": "2023-09-21T20:32:01.082Z", - "date_last_updated": "2023-09-21T20:32:01.082Z", - "date_of_expiration": "2025-09-21T20:32:01.058Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 1.136.670,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 21/09/2025 - P9A02KSL" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e295d6ba80624bf1a0ed8552", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { - "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650/details/costs", + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.136.670,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 21/09/2025 - P9A02KSL", + "revision": "995682854ae54d6f8320bff2", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696508927650, "net_received_amount": 0, @@ -43177,18 +63729,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1696508927650" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c2c9adc18a534e25a3eb9fe2", + "revision_nr": 1, + "created": 1701459383513, + "modified": 1701459383513 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1696508927650", + "revision": "1a4bedd0002241cfaa3c5d65", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -43198,128 +63773,186 @@ "total_amount": 4958277, "id": "1696508927650", "history_id": "1696508927650", - "date_created": "2023-10-05T12:28:47.650Z", - "date_last_updated": "2023-10-05T12:28:47.650Z", - "date_of_expiration": "2023-11-05T12:28:47.619Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 4.958.277,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5d4a30488226406ba458fee1", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650/description", + "content": { + "type": "STRING", + "value": "Investimento de 4.958.277,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", + "revision": "4e4c16a7b1004ed0ae54c4df", + "revision_nr": 1, + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bac50b3a6cf448419b64d79f", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0fbccd6cf44449d9acb20888", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-08-05T13:00:00.848Z" + "analysisRequested": "2023-08-05T13:00:00.848Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "17dd6bc28b9f42398a9039ab", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1690559154331, "dateValidity": 1690559154379, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z" + "balancesModificacao": "2023-10-06T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "689e126bd4f14253b2a92597", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "150.00000000", "symbol": "BRL", - "value": 30.33 + "value": 30.33, + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4748610072fc443c8e8655d0", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "869708709cca4d27bbb439a8", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } + }, + "revision": "87259365e9de45fd9d97786b", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -43328,9 +63961,18 @@ "total_amount": 150, "history_id": 1689114820357, "id": 1689114820357, - "date_created": "2023-07-11T22:33:40.357Z", - "date_last_updated": "2023-07-18T14:45:51.563Z", - "date_of_expiration": "2023-08-10T22:33:40.357Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -43338,153 +63980,264 @@ "date_approved": "2023-07-18T14:45:51.563Z", "money_release_date": "2023-07-18T14:45:51.563Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 150,00 para a carteira iVip 0650.1373.1763.7014-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "11ae03b614ce485884f1377b", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0650.1373.1763.7014-00", + "revision": "e6132a3963514c118638f105", + "revision_nr": 1, + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e4697531440945a2932b9bc4", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d02bd85fba8e4862b4f2cd29", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5f43722a5df94923b814827f", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1689114736496, "dateValidity": 1689114736496, "totalValue": 30.93, "currencyType": "USD", - "balancesModificacao": "2023-08-13T03:00:00.000Z" + "balancesModificacao": "2023-08-13T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bf6cd8d3d4844573bdbee485", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "443816f5b6424a069be39864", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.198 + "amount": 0.198, + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "de3dc909b6e047b4a6c3c8d0", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1d9ed1442ded4e8a839dbd57", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "IVIPCOIN LTDA" + "account_holder_name": "IVIPCOIN LTDA", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "939412850314413dbc7ad146", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9c7f03798d3a48b789a210e1", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, "installment_amount": 0, - "qr_code": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540520.205802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558382385016304DD50", - "ticket_url": "https://www.mercadopago.com.br/payments/55838238501/ticket?caller_id=1310149122&hash=983b907e-205f-4db2-9b0a-8e3b51ecea21", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJf0lEQVR42u3dQW7jOhIGYGrlY/io9lF9hLfUShwEebFZVVTizGCAbunzpo0okj72isX8LLb+x3/+aYyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjH+2cW3xc/38ye3r0ueXpff716XPz/Jx8+Pzy/3rh89f/rh0+fjn49Klbx+X/v1JvWt4ICMjIyMjIyMjI+NZjOPFD0j9Eo2310s+fmebjay9aH18Tr19ymBkZGRkZGRkZGQ8g/H+NVt/vvZzav/v+/trjt++XrulouHyGtkWjI9URoR3ra8ChZGRkZGRkZGRkfHkxj68NiyxR/WwVP8cUBvHET/DOFZGRkZGRkZGRkZGxjx/ny6opxX6Zage2uv2QR0Li1BhXMIqPiMjIyMjIyMjI+M5jT0mXJawQj8s3q8lcr6+vsTl/JrBqaXGf5/vYWRkZGRkZGRkZPzbjXUv6VJW1v8/X/6X/a6MjIyMjIyMjIyMf7Nx5xPS6HE5v5dYehjrcwvpWlbxL/3dDyMjIyMjIyMjI+PRjVuqFi6pjLiO6/HPNPqWOri0lIIJW1HjL4exLm+s2TMyMjIyMjIyMjIe1HhNP0mRmSXQHiXwnkd2G3ucxwxODePcGBkZGRkZGRkZGc9mXEu7xLzRs5V+LaHLS5+v4j9Sc5d7HGsfbr+/le9hZGRkZGRkZGRkPJ5x6KSYOyC29JOhlcs1reKnxfuWRhYP/xxoD0ZGRkZGRkZGRsYTGts4bb/Mw+xp1t/m5wiFkW2py8tafnn2FwNGRkZGRkZGRkbG4xtzLD2vtffeS0DmUXLu889SBl3VS3ogIyMjIyMjIyMj4xmMucf5kJS5hBJhfgpo2zuGaBDFnaOpW8x7GXZGRkZGRkZGRkbGoxlz9vxS3jb8TmygGIqGJQ2x7fVWfKR64t18DyMjIyMjIyMjI+NhjD3EyYeXXPealN/LftNvurykMqKlL7GNOiMjIyMjIyMjI+NZjDmN/ijYNnYr70ndyllD9Tk5jDNvu9gZGRkZGRkZGRkZT2YM0/a6qTSeEbRXK0yHeHsrlfNOdoaRkZGRkZGRkZHxQMZh/h4bH157beXSS/UwdGfpKbqeC4tezizqb5+HxMjIyMjIyMjIyHg0Y+1NHl87RM5ju8RbbIiei4bL/BWTFXpGRkZGRkZGRkbGsxnXFGzJLVh6qRWeU/v7RD1Lx89W6OPm1Gu+jZGRkZGRkZGRkfHYxp5asFyni+41jb57fNBaCot46bbTZHFhZGRkZGRkZGRkPJMxZ2damMgPM/rQUjGu9D9f8ii0Ni75j+XIbJspIyMjIyMjIyMj4zmMwwp9zs6sr6hLjpzvhNl773u9FdOgx3hO2LfKyMjIyMjIyMjIeAZjXJj/ZhU/5dxzu8Q4xD7dk7p76dF+0YedkZGRkZGRkZGR8e83zub4W2mX2Mpy/jig25hzXycbT7+5tL2Vs2dkZGRkZGRkZGQ8mjEuzD9eKZicas/9WmqqfS8ys83veqQ0DSMjIyMjIyMjI+OpjLM0ep7j13h7G6f/LWRw5nXAOj8gNERvGBkZGRkZGRkZGc9hfCbWl5RqzztHQ+Q892KZ3dXLHwGWGfb2c63AyMjIyMjIyMjIeCxjn3RAnK7Zf2O8xyaLeQdqrkuuk3f9sJeUkZGRkZGRkZGR8VjGIeqSZ/2tTP+rOs/6Qxxmp+1iKBre7q3IyMjIyMjIyMjIeChjTcG0FGa/TLq87EBm2J0BDQ/8sf8jIyMjIyMjIyMj47GMsVv5bYyux97kLR4HGr/s7gqth4j2wr+99XcFRkZGRkZGRkZGxgMZ89FAYf6+Jdqatn4+XptBY9+X2aBzl5c2zcIzMjIyMjIyMjIynsEYY+kpez6Ntw9r9o/XgHZW3++x3cuy15Gxf1/PMDIyMjIyMjIyMh7SeE0L82HnaG12fnkZ4xbSfAxR2znzc/tddoaRkZGRkZGRkZHxgMaQednps7JXK4wR+IDN2Zkair+WeoKRkZGRkZGRkZHxdMYYbLmOF/Ny/hpaKu7tE30+MJYjuSNjY2RkZGRkZGRkZDytsU9akscmi3kcYfH+MhlHbhJTQ/Exg8PIyMjIyMjIyMh4FmPNs8Qntck202tpoBjSNOOS/6w3TK4ebvW/i5GRkZGRkZGRkfHYxtxbMb+kfkmbQWOspqWtqC1Ctln781vPHRkZGRkZGRkZGRkZD26Ms/77mILpk6JhPDXoPs76Z9tMl1kEvnaCeWPNnpGRkZGRkZGRkfFoxiXR6slCa+l6Hjee/nBpNztT6xJGRkZGRkZGRkbGExnnpwbFBoptjMy0+a7QWwmzh2aN6+SvAWM8h5GRkZGRkZGRkfEsxjxtDwmX/Oza7LylbovPzxC02TnFaKA9GBkZGRkZGRkZGc9m7GGpPuRZWuKvpTJoqdQIWfiYymlJHUqE9Xf9HxkZGRkZGRkZGRn/bmPOzjxKw5UQOW/p9M42ae6SEzfxrr3O6IyMjIyMjIyMjIynMra0PXR4ZEu9FZ9z/KiuIZrUyHyaWA+HiDIyMjIyMjIyMjKeyhixt9JAsRVa2m/aQ9HQJxXGZd/Yw3I+IyMjIyMjIyMj46mMgyif/xMaKM7atMSXzGix/2Ib39VLJxhGRkZGRkZGRkbGMxhzjKU2XAm03ApxnXSCiVtRw4C2UGE8/xsYGRkZGRkZGRkZz2lskzxLT4/MHVyGpMzPIZoaz2mTUDwjIyMjIyMjIyPjOYw7IZr2TbAl5muWFL1pe03Ta9uYnv4+wMjIyMjIyMjIyHgWY57sXyf59BpC36kMbn22OfVSFubXyV0LIyMjIyMjIyMj45mMS4mxtNSLpZ4a1MLpQ6FWmPVWzKmcX9cKjIyMjIyMjIyMjAc03uOsfwklQh/DL7EOuO4vw4fb67tiqTHczsjIyMjIyMjIyHhW407APPRr2b09PzlkZ56Q7Xc5e0ZGRkZGRkZGRsbjG5fSSTFHZobV92d0ffzSXgv8+a8Bz0st7kllZGRkZGRkZGRkPJux7zwpfh5lHMNkv3YrX1MDmPzAtBWVkZGRkZGRkZGR8VTGvJf0iR2+bIM6vW1LJ3zOEust8Gsq58fsDCMjIyMjIyMjI+OxjH/mh5GRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGR8Q80/gd+PCOEIzZrpQAAAABJRU5ErkJggg==" + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cec4f705590b4b6aad98d831", + "revision_nr": 1, + "created": 1701459383513, + "modified": 1701459383513 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540520.205802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558382385016304DD50", + "revision": "18e3487dbe0148219ac0eb53", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/payments/55838238501/ticket?caller_id=1310149122&hash=983b907e-205f-4db2-9b0a-8e3b51ecea21", + "revision": "3a77438bb24d4c2d9931d0bb", + "revision_nr": 1, + "created": 1701459383513, + "modified": 1701459383513 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJf0lEQVR42u3dQW7jOhIGYGrlY/io9lF9hLfUShwEebFZVVTizGCAbunzpo0okj72isX8LLb+x3/+aYyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjH+2cW3xc/38ye3r0ueXpff716XPz/Jx8+Pzy/3rh89f/rh0+fjn49Klbx+X/v1JvWt4ICMjIyMjIyMjI+NZjOPFD0j9Eo2310s+fmebjay9aH18Tr19ymBkZGRkZGRkZGQ8g/H+NVt/vvZzav/v+/trjt++XrulouHyGtkWjI9URoR3ra8ChZGRkZGRkZGRkfHkxj68NiyxR/WwVP8cUBvHET/DOFZGRkZGRkZGRkZGxjx/ny6opxX6Zage2uv2QR0Li1BhXMIqPiMjIyMjIyMjI+M5jT0mXJawQj8s3q8lcr6+vsTl/JrBqaXGf5/vYWRkZGRkZGRkZPzbjXUv6VJW1v8/X/6X/a6MjIyMjIyMjIyMf7Nx5xPS6HE5v5dYehjrcwvpWlbxL/3dDyMjIyMjIyMjI+PRjVuqFi6pjLiO6/HPNPqWOri0lIIJW1HjL4exLm+s2TMyMjIyMjIyMjIe1HhNP0mRmSXQHiXwnkd2G3ucxwxODePcGBkZGRkZGRkZGc9mXEu7xLzRs5V+LaHLS5+v4j9Sc5d7HGsfbr+/le9hZGRkZGRkZGRkPJ5x6KSYOyC29JOhlcs1reKnxfuWRhYP/xxoD0ZGRkZGRkZGRsYTGts4bb/Mw+xp1t/m5wiFkW2py8tafnn2FwNGRkZGRkZGRkbG4xtzLD2vtffeS0DmUXLu889SBl3VS3ogIyMjIyMjIyMj4xmMucf5kJS5hBJhfgpo2zuGaBDFnaOpW8x7GXZGRkZGRkZGRkbGoxlz9vxS3jb8TmygGIqGJQ2x7fVWfKR64t18DyMjIyMjIyMjI+NhjD3EyYeXXPealN/LftNvurykMqKlL7GNOiMjIyMjIyMjI+NZjDmN/ijYNnYr70ndyllD9Tk5jDNvu9gZGRkZGRkZGRkZT2YM0/a6qTSeEbRXK0yHeHsrlfNOdoaRkZGRkZGRkZHxQMZh/h4bH157beXSS/UwdGfpKbqeC4tezizqb5+HxMjIyMjIyMjIyHg0Y+1NHl87RM5ju8RbbIiei4bL/BWTFXpGRkZGRkZGRkbGsxnXFGzJLVh6qRWeU/v7RD1Lx89W6OPm1Gu+jZGRkZGRkZGRkfHYxp5asFyni+41jb57fNBaCot46bbTZHFhZGRkZGRkZGRkPJMxZ2damMgPM/rQUjGu9D9f8ii0Ni75j+XIbJspIyMjIyMjIyMj4zmMwwp9zs6sr6hLjpzvhNl773u9FdOgx3hO2LfKyMjIyMjIyMjIeAZjXJj/ZhU/5dxzu8Q4xD7dk7p76dF+0YedkZGRkZGRkZGR8e83zub4W2mX2Mpy/jig25hzXycbT7+5tL2Vs2dkZGRkZGRkZGQ8mjEuzD9eKZicas/9WmqqfS8ys83veqQ0DSMjIyMjIyMjI+OpjLM0ep7j13h7G6f/LWRw5nXAOj8gNERvGBkZGRkZGRkZGc9hfCbWl5RqzztHQ+Q892KZ3dXLHwGWGfb2c63AyMjIyMjIyMjIeCxjn3RAnK7Zf2O8xyaLeQdqrkuuk3f9sJeUkZGRkZGRkZGR8VjGIeqSZ/2tTP+rOs/6Qxxmp+1iKBre7q3IyMjIyMjIyMjIeChjTcG0FGa/TLq87EBm2J0BDQ/8sf8jIyMjIyMjIyMj47GMsVv5bYyux97kLR4HGr/s7gqth4j2wr+99XcFRkZGRkZGRkZGxgMZ89FAYf6+Jdqatn4+XptBY9+X2aBzl5c2zcIzMjIyMjIyMjIynsEYY+kpez6Ntw9r9o/XgHZW3++x3cuy15Gxf1/PMDIyMjIyMjIyMh7SeE0L82HnaG12fnkZ4xbSfAxR2znzc/tddoaRkZGRkZGRkZHxgMaQednps7JXK4wR+IDN2Zkair+WeoKRkZGRkZGRkZHxdMYYbLmOF/Ny/hpaKu7tE30+MJYjuSNjY2RkZGRkZGRkZDytsU9akscmi3kcYfH+MhlHbhJTQ/Exg8PIyMjIyMjIyMh4FmPNs8Qntck202tpoBjSNOOS/6w3TK4ebvW/i5GRkZGRkZGRkfHYxtxbMb+kfkmbQWOspqWtqC1Ctln781vPHRkZGRkZGRkZGRkZD26Ms/77mILpk6JhPDXoPs76Z9tMl1kEvnaCeWPNnpGRkZGRkZGRkfFoxiXR6slCa+l6Hjee/nBpNztT6xJGRkZGRkZGRkbGExnnpwbFBoptjMy0+a7QWwmzh2aN6+SvAWM8h5GRkZGRkZGRkfEsxjxtDwmX/Oza7LylbovPzxC02TnFaKA9GBkZGRkZGRkZGc9m7GGpPuRZWuKvpTJoqdQIWfiYymlJHUqE9Xf9HxkZGRkZGRkZGRn/bmPOzjxKw5UQOW/p9M42ae6SEzfxrr3O6IyMjIyMjIyMjIynMra0PXR4ZEu9FZ9z/KiuIZrUyHyaWA+HiDIyMjIyMjIyMjKeyhixt9JAsRVa2m/aQ9HQJxXGZd/Yw3I+IyMjIyMjIyMj46mMgyif/xMaKM7atMSXzGix/2Ib39VLJxhGRkZGRkZGRkbGMxhzjKU2XAm03ApxnXSCiVtRw4C2UGE8/xsYGRkZGRkZGRkZz2lskzxLT4/MHVyGpMzPIZoaz2mTUDwjIyMjIyMjIyPjOYw7IZr2TbAl5muWFL1pe03Ta9uYnv4+wMjIyMjIyMjIyHgWY57sXyf59BpC36kMbn22OfVSFubXyV0LIyMjIyMjIyMj45mMS4mxtNSLpZ4a1MLpQ6FWmPVWzKmcX9cKjIyMjIyMjIyMjAc03uOsfwklQh/DL7EOuO4vw4fb67tiqTHczsjIyMjIyMjIyHhW407APPRr2b09PzlkZ56Q7Xc5e0ZGRkZGRkZGRsbjG5fSSTFHZobV92d0ffzSXgv8+a8Bz0st7kllZGRkZGRkZGRkPJux7zwpfh5lHMNkv3YrX1MDmPzAtBWVkZGRkZGRkZGR8VTGvJf0iR2+bIM6vW1LJ3zOEust8Gsq58fsDCMjIyMjIyMjI+OxjH/mh5GRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGR8Q80/gd+PCOEIzZrpQAAAABJRU5ErkJggg==", + "revision": "a209e1c7dba348f8bec6eae2", + "revision_nr": 1, + "created": 1701459383513, + "modified": 1701459383513 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "02f466f5fd84467e93462f1b", + "revision_nr": 1, + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -43493,141 +64246,211 @@ "total_amount": 20.2, "history_id": 1679067982009, "id": 55838238501, - "date_created": "2023-03-17T11:46:22.887-04:00", - "date_last_updated": "2023-03-18T11:50:43.000-04:00", - "date_of_expiration": "2023-03-18T11:46:22.597-04:00", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", "status_detail": "expired", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0667.4940.3784.9818-40" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "781b8033dd7e425999793543", + "revision_nr": 1, + "created": 1701459383513, + "modified": 1701459383513 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0667.4940.3784.9818-40", + "revision": "4a8fd8dff0224acda01290a0", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "faeda82b88e44e34aa5cca8f", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aaef532b9dd34ccda6e3229e", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bb23451072444f1ca502b0de", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1679067783161, "dateValidity": 1679067783161, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c3d8434bbe5348848e863a79", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "20.00000000", "symbol": "BRL", - "value": 3.86 + "value": 3.86, + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6d04f77283aa43ecb2a75e67", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "12224831.00000000", "symbol": "IVIP", - "value": 1888.088 + "value": 1888.088, + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bd1b1852ba5d4a74ae881796", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b63613a12e764f62b2a6d41f", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } + }, + "revision": "e02cee6b11744b5ba5199173", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -43636,9 +64459,18 @@ "total_amount": 1600, "history_id": 1684181007832, "id": 1684181007832, - "date_created": "2023-05-15T20:03:27.832Z", - "date_last_updated": "2023-05-15T21:15:42.475Z", - "date_of_expiration": "2023-06-14T20:03:27.832Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -43646,45 +64478,78 @@ "date_approved": "2023-05-15T21:15:42.475Z", "money_release_date": "2023-05-15T21:15:42.475Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.600,00 para a carteira iVip 0721.5687.2012.5989-10" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9529e7d087c445e79ce2b6de", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 0721.5687.2012.5989-10", + "revision": "fd02daa586f54c748e85624b", + "revision_nr": 1, + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 134.08 + "amount": 134.08, + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "29d2803ffadd4c4299e269f3", "revision_nr": 1, - "created": 1700748395484, - "modified": 1700748395484 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d6cafa9b44494a90998a139f", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "b8d973ab70a8422a86907e51", + "revision_nr": 1, + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -43693,37 +64558,45 @@ "total_amount": 1810.08, "history_id": 1684623306168, "id": 1684623306168, - "date_created": "2023-05-20T22:55:06.168Z", - "date_last_updated": "2023-05-20T22:55:06.168Z", - "date_of_expiration": "2023-06-19T22:55:06.168Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9ac2c5e8cc4049a7b2a69b9d", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624428265/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", + "revision": "578b724f8c474c1d924e4fa0", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624428265/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624428265, @@ -43734,18 +64607,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6346f806b78e4c6e944d5494", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624428265", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -43755,9 +64641,18 @@ "original_amount": 15956517, "total_amount": 15956517, "id": 1684624428265, - "date_created": "2023-05-20T23:13:48.265Z", - "date_last_updated": "2023-05-20T23:13:48.265Z", - "date_of_expiration": "2023-05-20T23:13:48.265Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -43766,42 +64661,65 @@ "history_id": 1684624428265, "description": "Compra de 15.956.517,00 IVIP por 3.276,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f0d86afd50df4b5394b2eeb8", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 105.92 + "amount": 105.92, + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ff6a808082fe4b48997aaab4", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "659a64fc2de34a4a997de967", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "901e93ec90b94fff85a1a55f", + "revision_nr": 1, + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -43810,37 +64728,45 @@ "total_amount": 1429.92, "history_id": 1684624857509, "id": 1684624857509, - "date_created": "2023-05-20T23:20:57.509Z", - "date_last_updated": "2023-05-20T23:20:57.509Z", - "date_of_expiration": "2023-06-19T23:20:57.509Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1b36069c14f94eca9e06f827", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624906138/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", + "revision": "7bd8570db2cf4ebea170e545", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624906138/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624906138, @@ -43851,18 +64777,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9ed62de97cba444db6ac9a8c", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624906138", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -43872,9 +64811,18 @@ "original_amount": 6448848, "total_amount": 6448848, "id": 1684624906138, - "date_created": "2023-05-20T23:21:46.138Z", - "date_last_updated": "2023-05-20T23:21:46.138Z", - "date_of_expiration": "2023-05-20T23:21:46.138Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -43883,38 +64831,41 @@ "history_id": 1684624906138, "description": "Compra de 6.448.848,00 IVIP por 1.324,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "db5422e225f54990a9c3fe18", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } + }, + "revision": "5048f03776f5439daca86863", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -43923,9 +64874,18 @@ "total_amount": 1000, "history_id": 1687293918217, "id": 1687293918217, - "date_created": "2023-06-20T20:45:18.217Z", - "date_last_updated": "2023-06-20T20:45:55.023Z", - "date_of_expiration": "2023-07-20T20:45:18.217Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -43933,30 +64893,29 @@ "date_approved": "2023-06-20T20:45:55.023Z", "money_release_date": "2023-06-20T20:45:55.023Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0721.5687.2012.5989-10" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "33589041c8ca4faba8823dd7", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024615/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0721.5687.2012.5989-10", + "revision": "a6e50da6dea24ab7b15f16ad", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024615/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -43969,18 +64928,31 @@ "overpaid_amount": 0, "installment_amount": 452.52, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f48467b6522a4915b05bb0dd", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024615", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -43991,38 +64963,46 @@ "total_amount": 452.52, "id": 1687294024615, "contract_id": "1684623306168", - "date_created": "2023-06-20T20:47:04.615Z", - "date_last_updated": "2023-06-20T20:47:04.615Z", - "date_of_expiration": "2023-06-20T20:47:04.615Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1687294024615, - "description": "Pagamento de fatura 1 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168" + "history_id": 1687294024615 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9a2a87d19cb74d94b801fc10", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024774/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024615/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", + "revision": "53c16dbf748546ecae8dd883", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024774/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -44035,18 +65015,31 @@ "overpaid_amount": 0, "installment_amount": 357.48, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "09e6da864b5646ac872454c3", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024774", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -44057,38 +65050,46 @@ "total_amount": 357.48, "id": 1687294024774, "contract_id": "1684624857509", - "date_created": "2023-06-20T20:47:04.774Z", - "date_last_updated": "2023-06-20T20:47:04.774Z", - "date_of_expiration": "2023-06-20T20:47:04.774Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1687294024774, - "description": "Pagamento de fatura 1 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509" + "history_id": 1687294024774 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1273c9c27d95416c9533df37", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688524692305/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024774/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", + "revision": "c994e79a82424e36b87e1d09", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688524692305/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688524692305, @@ -44099,18 +65100,31 @@ "overpaid_amount": 0, "installment_amount": 8000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "66f34aadc1034d8b80659cdb", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688524692305", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -44119,38 +65133,46 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1688524692305, - "date_created": "2023-07-05T02:38:12.305Z", - "date_last_updated": "2023-07-05T02:38:12.305Z", - "date_of_expiration": "2023-08-05T02:38:12.305Z", + "date_created": { + "type": 6, + "value": 1701459383513 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383513 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383513 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1688524692305, - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/4/2023" + "history_id": 1688524692305 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "889972d0ab384825a13755eb", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688525524308/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688524692305/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/4/2023", + "revision": "33feaddd11244ba8bf66094d", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383513, + "modified": 1701459383513 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688525524308/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688525524308, @@ -44161,18 +65183,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "db6ebd6deb144d0abaa2ff58", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688525524308", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -44182,9 +65217,18 @@ "original_amount": 155466, "total_amount": 155466, "id": 1688525524308, - "date_created": "2023-07-05T02:52:04.308Z", - "date_last_updated": "2023-07-05T02:52:04.308Z", - "date_of_expiration": "2023-07-05T02:52:04.308Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -44193,38 +65237,41 @@ "history_id": 1688525524308, "description": "Compra de 155.466,00 IVIP por 50,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bf038c35880e4dcebd4a60ee", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } + }, + "revision": "a7fbbaeca8e74dc2bf4ea0b7", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -44233,9 +65280,18 @@ "total_amount": 2500000, "history_id": 1689182003298, "id": 1689182003298, - "date_created": "2023-07-12T17:13:23.298Z", - "date_last_updated": "2023-07-13T13:55:52.452Z", - "date_of_expiration": "2023-07-12T17:13:23.298Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -44243,41 +65299,54 @@ "date_approved": "2023-07-13T13:55:52.452Z", "money_release_date": "2023-07-13T13:55:52.452Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 2.500.000,00 IVIP para a carteira 0xA7d5Cb00F2824b3D3Bf7b0a4AFe13175618B0FdC" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d5869ad7b9a741a5afe15d25", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 2.500.000,00 IVIP para a carteira 0xA7d5Cb00F2824b3D3Bf7b0a4AFe13175618B0FdC", + "revision": "d8427eaab9aa4d33af9e03aa", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } + }, + "revision": "a8b8877cbb7e4f09bb81b905", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -44286,9 +65355,18 @@ "total_amount": 800, "history_id": 1689689388308, "id": 1689689388308, - "date_created": "2023-07-18T14:09:48.308Z", - "date_last_updated": "2023-07-18T14:29:47.708Z", - "date_of_expiration": "2023-08-17T14:09:48.308Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -44296,30 +65374,29 @@ "date_approved": "2023-07-18T14:29:47.708Z", "money_release_date": "2023-07-18T14:29:47.708Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 800,00 para a carteira iVip 0721.5687.2012.5989-10" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "869d7a9f6b544eddb5196840", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928096/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0721.5687.2012.5989-10", + "revision": "4ebd738f820a48d8b433d125", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928096/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -44332,18 +65409,31 @@ "overpaid_amount": 0, "installment_amount": 452.52, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f213a510328f4e90aedcfd0f", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928096", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -44354,38 +65444,46 @@ "total_amount": 452.52, "id": 1689690928096, "contract_id": "1684623306168", - "date_created": "2023-07-18T14:35:28.096Z", - "date_last_updated": "2023-07-18T14:35:28.096Z", - "date_of_expiration": "2023-07-18T14:35:28.096Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1689690928096, - "description": "Pagamento de fatura 2 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168" + "history_id": 1689690928096 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "deb754301cc94c7ca0e56375", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928337/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928096/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", + "revision": "618b7d07c71f429c92d25062", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928337/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -44398,18 +65496,31 @@ "overpaid_amount": 0, "installment_amount": 357.48, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3c65e39eea4842de98dc4075", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928337", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -44420,38 +65531,46 @@ "total_amount": 357.48, "id": 1689690928337, "contract_id": "1684624857509", - "date_created": "2023-07-18T14:35:28.337Z", - "date_last_updated": "2023-07-18T14:35:28.337Z", - "date_of_expiration": "2023-07-18T14:35:28.337Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1689690928337, - "description": "Pagamento de fatura 2 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509" + "history_id": 1689690928337 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5193c313564c43ea96dcee33", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928337/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", + "revision": "e1d30114abfb4c44a65e93ee", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691203130486, "net_received_amount": 0, @@ -44461,18 +65580,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691203130486" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6ee0719adfa44dd190fd246a", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691203130486", + "revision": "00a2b85015914cb086d0f14d", + "revision_nr": 1, + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -44481,38 +65623,46 @@ "total_amount": 8160000, "id": 1691203130486, "history_id": 1691203130486, - "date_created": "2023-08-05T02:38:50.486Z", - "date_last_updated": "2023-08-05T02:38:50.486Z", - "date_of_expiration": "2023-08-05T02:38:50.486Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "96bd7597404941f89344193c", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", + "revision": "a87395cd7e8c4115be4dd9ce", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691556958476, "net_received_amount": 0, @@ -44522,18 +65672,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691556958476" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a4b41f5ebbc94076864c63dc", + "revision_nr": 1, + "created": 1701459383514, + "modified": 1701459383514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691556958476", + "revision": "a7389f7ebb53497db7b9e99a", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -44542,38 +65715,46 @@ "total_amount": 200000, "id": 1691556958476, "history_id": 1691556958476, - "date_created": "2023-08-09T04:55:58.476Z", - "date_last_updated": "2023-08-09T04:55:58.476Z", - "date_of_expiration": "2023-09-09T04:55:58.473Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 200.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/9/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "24579091c1134534881f6e0b", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 200.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/9/2023", + "revision": "4a69fa9dc13e4b4d84e8bb8f", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691557017053, "net_received_amount": 0, @@ -44583,18 +65764,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691557017053" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a4db5923f2cd4ecabd49754d", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691557017053", + "revision": "14375e0d1d624c01b8d1c08a", + "revision_nr": 1, + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -44603,52 +65807,72 @@ "total_amount": 30, "id": 1691557017053, "history_id": 1691557017053, - "date_created": "2023-08-09T04:56:57.053Z", - "date_last_updated": "2023-08-09T04:56:57.053Z", - "date_of_expiration": "2024-06-09T04:56:57.027Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "accredited", - "description": "Investimento de 30,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/9/2024" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0003b4a246e34002a687bb21", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-15T20:07:43.023Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 30,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/9/2024", + "revision": "462c1724b8d845eca5dbeabb", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-15T20:07:43.023Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } + }, + "revision": "eddd7f3dcc254e888234044e", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692216463023, "net_received_amount": 0, @@ -44658,18 +65882,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1692216463023" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dd0cf9f6cf0e4693b5fd895a", + "revision_nr": 1, + "created": 1701459383514, + "modified": 1701459383514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1692216463023", + "revision": "87262c8e512542b1b3df8a13", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -44678,8 +65925,14 @@ "total_amount": 720, "id": 1692216463023, "history_id": 1692216463023, - "date_created": "2023-08-16T20:07:43.023Z", - "date_last_updated": "2023-08-16T20:26:16.651Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -44690,29 +65943,32 @@ "money_release_date": "2023-08-16T20:26:16.651Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 720,00 para a carteira iVip 0721.5687.2012.5989-10" + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fdc73857ff844a72aaab5754", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296799894/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 720,00 para a carteira iVip 0721.5687.2012.5989-10", + "revision": "fb1dc6c2cfc14a32a38083b9", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296799894/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 3, @@ -44725,18 +65981,31 @@ "overpaid_amount": 0, "installment_amount": 452.52, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3bca4c94233b4e75a5a4888a", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296799894", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -44747,38 +66016,46 @@ "total_amount": 452.52, "id": 1692296799894, "contract_id": "1684623306168", - "date_created": "2023-08-17T18:26:39.894Z", - "date_last_updated": "2023-08-17T18:26:39.894Z", - "date_of_expiration": "2023-08-17T18:26:39.894Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1692296799894, - "description": "Pagamento de fatura 3 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168" + "history_id": 1692296799894 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ec0b57d57a2f40d2b9ce6da3", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296800012/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296799894/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 3 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", + "revision": "dd2b11eeceed44e0be51793e", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296800012/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 3, @@ -44791,18 +66068,31 @@ "overpaid_amount": 0, "installment_amount": 357.48, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cd57f8c42e994c8093781df5", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296800012", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -44813,38 +66103,46 @@ "total_amount": 357.48, "id": 1692296800012, "contract_id": "1684624857509", - "date_created": "2023-08-17T18:26:40.012Z", - "date_last_updated": "2023-08-17T18:26:40.012Z", - "date_of_expiration": "2023-08-17T18:26:40.012Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1692296800012, - "description": "Pagamento de fatura 3 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509" + "history_id": 1692296800012 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3e12d44097f245819066727a", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296800012/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 3 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", + "revision": "37d2e050e77c41cea9090b33", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694237371329, "net_received_amount": 0, @@ -44854,18 +66152,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694237371329" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e42c344f44634221833512cf", + "revision_nr": 1, + "created": 1701459383514, + "modified": 1701459383514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694237371329", + "revision": "d86dff97d9f0400393bfb2ae", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -44874,38 +66195,46 @@ "total_amount": 204000, "id": "1694237371329", "history_id": "1694237371329", - "date_created": "2023-09-09T05:29:31.329Z", - "date_last_updated": "2023-09-09T05:29:31.329Z", - "date_of_expiration": "2023-09-09T05:29:31.329Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 200.000,00 IVIP com um rendimento de +4.000,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "039ea76db771403c9efac523", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 200.000,00 IVIP com um rendimento de +4.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "6c71ce1d5b494f08a41675c4", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694237443497, "net_received_amount": 0, @@ -44915,18 +66244,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694237443497" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b3a0771f4b534734b4b750c7", + "revision_nr": 1, + "created": 1701459383514, + "modified": 1701459383514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694237443497", + "revision": "92613c8bc1004bd1b53d523e", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -44935,9 +66287,18 @@ "total_amount": 1030591, "id": "1694237443497", "history_id": "1694237443497", - "date_created": "2023-09-09T05:30:43.497Z", - "date_last_updated": "2023-10-04T23:31:59.577Z", - "date_of_expiration": "2023-10-09T05:30:43.496Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -44946,44 +66307,55 @@ "status_detail": "cc_rejected_insufficient_staked_amount", "money_release_date": "2023-10-04T23:31:59.577Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Investimento de 1.030.591,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 09/10/2023 - Y12XDT27" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "51dd7b5c620444a99aa6ba35", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-14T17:28:50.286Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.030.591,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 09/10/2023 - Y12XDT27", + "revision": "fdf0f3c9fd594f6caa5208a3", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-14T17:28:50.286Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } + }, + "revision": "c2f0c607c1764d2496b01961", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694712530286, "net_received_amount": 0, @@ -44993,18 +66365,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694712530286" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "247645a4f45141818c546ce2", + "revision_nr": 1, + "created": 1701459383514, + "modified": 1701459383514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694712530286", + "revision": "a7f0c8ca0eb94e1fa0951bbb", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -45013,8 +66408,14 @@ "total_amount": 820, "id": "1694712530286", "history_id": "1694712530286", - "date_created": "2023-09-14T17:28:50.286Z", - "date_last_updated": "2023-09-14T18:47:35.639Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -45025,29 +66426,32 @@ "money_release_date": "2023-09-14T18:47:35.639Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 820,00 BRL para a carteira iVip 0721.5687.2012.5989-10" + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e935e280636c40c4a795d4b5", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 820,00 BRL para a carteira iVip 0721.5687.2012.5989-10", + "revision": "c5387ab1b26648d4a8d91d48", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694723447405, "net_received_amount": 0, @@ -45057,20 +66461,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 4, "installments_payable": 0, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694723447405" + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4163b77cfafa4653a44433db", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694723447405", + "revision": "838bd119bf5344d3aea5c2a3", + "revision_nr": 1, + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -45079,38 +66506,46 @@ "total_amount": 452.52, "id": "1694723447405", "history_id": "1694723447405", - "date_created": "2023-09-14T20:30:47.405Z", - "date_last_updated": "2023-09-14T20:30:47.405Z", - "date_of_expiration": "2023-09-14T20:30:47.405Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 4 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4148656fb5c64453b6381990", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 4 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", + "revision": "33ccdab20e8f4f80b549cca6", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694723447463, "net_received_amount": 0, @@ -45120,20 +66555,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 4, "installments_payable": 0, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694723447463" + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2ea8b5cd8ac04f7082e97ad4", + "revision_nr": 1, + "created": 1701459383514, + "modified": 1701459383514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694723447463", + "revision": "afdd7cada12c45c48b0c21e8", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -45142,38 +66600,46 @@ "total_amount": 357.48, "id": "1694723447463", "history_id": "1694723447463", - "date_created": "2023-09-14T20:30:47.463Z", - "date_last_updated": "2023-09-14T20:30:47.463Z", - "date_of_expiration": "2023-09-14T20:30:47.463Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 4 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "afa2111337b643c480be432e", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { - "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 4 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", + "revision": "845fc7168d7649b7b6ca0df3", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696464489805, "net_received_amount": 0, @@ -45183,18 +66649,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1696464489805" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9c193822e2ec49bda83ca3cd", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1696464489805", + "revision": "e5b28579782a4c5c84b53fd9", + "revision_nr": 1, + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -45204,53 +66693,84 @@ "total_amount": 8000000, "id": "1696464489805", "history_id": "1696464489805", - "date_created": "2023-10-05T00:08:09.805Z", - "date_last_updated": "2023-10-05T00:08:09.805Z", - "date_of_expiration": "2023-11-05T00:08:09.771Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2d60840f443c4c23988bc176", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805/description", + "content": { + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "31333615d30e41e2ada9f735", + "revision_nr": 1, + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0f86fbf2b2fa4cce8f8b6350", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 134.08 + "amount": 134.08, + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "35a1fe9d81834e66b503c88b", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684623306168, "type": "emprestimo", @@ -45258,37 +66778,81 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": "2023-05-20T22:55:06.168Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, "history_id": 1684623306168, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08" + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "66fcd73912dc41d58f8b8146", + "revision_nr": 1, + "created": 1701459383514, + "modified": 1701459383514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", + "revision": "a7c642db1c58413ba9e9a8b9", + "revision_nr": 1, + "created": 1701459383514, + "modified": 1701459383514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "17d705aa3cef41c58c21fef3", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 105.92 + "amount": 105.92, + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "97ec7e005044454fa3371938", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684624857509, "type": "emprestimo", @@ -45296,48 +66860,92 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": "2023-05-20T23:20:57.509Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, "history_id": 1684624857509, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92" + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "54676d051f994b49aebf88d2", + "revision_nr": 1, + "created": 1701459383514, + "modified": 1701459383514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", + "revision": "a3ffb1c6f80c43e8bc3e69e0", + "revision_nr": 1, + "created": 1701459383514, + "modified": 1701459383514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "fcc807b740524927b9e05180", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8f5b0e94e5c34ba996c09fc0", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 134.08 + "amount": 134.08, + "date_created": { + "type": 6, + "value": 1701459383514 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4c56c337ca9a4ef5b227c664", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684623306168, "type": "emprestimo", @@ -45345,37 +66953,81 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": "2023-05-20T22:55:06.168Z", + "date_created": { + "type": 6, + "value": 1701459383514 + }, "history_id": 1684623306168, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08" + "date_last_updated": { + "type": 6, + "value": 1701459383514 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383514 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f1c352b2acef48f98dd9a04d", + "revision_nr": 1, + "created": 1701459383514, + "modified": 1701459383514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", + "revision": "54d25c4b381d44af9652f535", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383514, + "modified": 1701459383514 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "bbefb5644af94f719d1d4f33", + "revision_nr": 1, + "created": 1701459383514, + "modified": 1701459383514 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 105.92 + "amount": 105.92, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "afb7a73af7c24b80a3d5205f", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684624857509, "type": "emprestimo", @@ -45383,48 +67035,92 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": "2023-05-20T23:20:57.509Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, "history_id": 1684624857509, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92" + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "42dfd109a0eb4643a7e28a20", + "revision_nr": 1, + "created": 1701459383515, + "modified": 1701459383515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", + "revision": "7db55c7ed86d4580b023896e", + "revision_nr": 1, + "created": 1701459383515, + "modified": 1701459383515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "3062faca4a61448a931a8a83", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "806df585e2d74644955cab3a", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 134.08 + "amount": 134.08, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "20a06a67b37d4b9a84885bba", "revision_nr": 1, - "created": 1700748395485, - "modified": 1700748395485 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684623306168, "type": "emprestimo", @@ -45432,37 +67128,81 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": "2023-05-20T22:55:06.168Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, "history_id": 1684623306168, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08" + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3626b1ab79f84073b68636a1", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", + "revision": "f895ac10f290404b933dcfa1", + "revision_nr": 1, + "created": 1701459383515, + "modified": 1701459383515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "d5e59d16b3ba4775b7122993", + "revision_nr": 1, + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 105.92 + "amount": 105.92, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3785ceb13fa5495a949bbd27", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684624857509, "type": "emprestimo", @@ -45470,48 +67210,92 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": "2023-05-20T23:20:57.509Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, "history_id": 1684624857509, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92" + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7b782d8b5198486680864b4e", + "revision_nr": 1, + "created": 1701459383515, + "modified": 1701459383515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", + "revision": "39fdd88632024395bccc2662", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "dbc24f9803f8408f93828277", + "revision_nr": 1, + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6b6e99526b484213bdedf3a3", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 134.08 + "amount": 134.08, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c5b8be4d72204e479bf97f39", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684623306168, "type": "emprestimo", @@ -45519,38 +67303,81 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": "2023-05-20T22:55:06.168Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, "history_id": 1684623306168, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-14T20:30:47.423Z", - "description": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08" + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0542260a5a3a4edea75db78d", + "revision_nr": 1, + "created": 1701459383515, + "modified": 1701459383515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", + "revision": "732129d2f705429e82655699", + "revision_nr": 1, + "created": 1701459383515, + "modified": 1701459383515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "f9326ed8dc9142cd91bf6988", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 105.92 + "amount": 105.92, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b41de33d9ce54367a462f2df", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684624857509, "type": "emprestimo", @@ -45558,179 +67385,273 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": "2023-05-20T23:20:57.509Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, "history_id": 1684624857509, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-14T20:30:47.480Z", - "description": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92" + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "69d29952b7df41c08b7eca64", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", + "revision": "f41bb97857d64e73b9792e0a", + "revision_nr": 1, + "created": 1701459383515, + "modified": 1701459383515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "b8e1fee5c36c4484b40ffeb3", + "revision_nr": 1, + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "79a7b476f7f94b51b9485aa2", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "76a8b70b52964beb98554a9d", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 3000, "limitUsed": 750, "analysisRequested": "2023-05-15T21:24:05.062Z", - "lastReview": "2023-05-15T21:32:32.172Z" + "lastReview": "2023-05-15T21:32:32.172Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ab9f1276ca4341cba46c65fb", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684180740501, "dateValidity": 1684180740501, "totalValue": 6472.835, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z" + "balancesModificacao": "2023-10-06T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7f64c32b4fc4419aaade1c83", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072270616449276800/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c97e71a61da044f8844f6e55", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072270616449276800/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "85aca29058154f1991db8340", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072270616449276800", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1683670601575, "dateValidity": 1683670601575, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d2da5ff67a51473c9969b656", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aa33c0fef72048e2948b1de2", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "44999.00000000", "symbol": "IVIP", - "value": 15.26 + "value": 15.26, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5a907e141dff42ed9543439f", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6eec819438aa4157ac734811", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } + }, + "revision": "f09a202758534e6a936a131b", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -45739,9 +67660,18 @@ "total_amount": 50, "history_id": 1689017003664, "id": 1689017003664, - "date_created": "2023-07-10T19:23:23.664Z", - "date_last_updated": "2023-07-10T21:48:47.768Z", - "date_of_expiration": "2023-08-09T19:23:23.664Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -45749,30 +67679,29 @@ "date_approved": "2023-07-10T21:48:47.768Z", "money_release_date": "2023-07-10T21:48:47.768Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0723.1653.8247.0090-10" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c90cde27524044ba9e69cb12", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { - "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689029121257/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0723.1653.8247.0090-10", + "revision": "259e48e757f3458abfd2381d", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689029121257/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689029121257, @@ -45783,18 +67712,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b7bef30c8ee94f08b2e5ad04", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689029121257", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -45804,9 +67746,18 @@ "original_amount": 44999, "total_amount": 44999, "id": 1689029121257, - "date_created": "2023-07-10T22:45:21.257Z", - "date_last_updated": "2023-07-10T22:45:21.257Z", - "date_of_expiration": "2023-07-10T22:45:21.257Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -45815,132 +67766,183 @@ "history_id": 1689029121257, "description": "Compra de 44.999,00 IVIP por 50,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "230045a897244792ad534937", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ea843a1dcec1434a951af7c0", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2318fce464d6415a931a8b98", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7618440e70c34a42bf876d11", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1689016980183, "dateValidity": 1689016980183, "totalValue": 10.2, "currencyType": "USD", - "balancesModificacao": 1689822000000 + "balancesModificacao": 1689822000000, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aef2a7eb5fec4f6287024291", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "48a5d228025443a4b79f3c2e", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "88319.00000000", "symbol": "IVIP", - "value": 24.34 + "value": 24.34, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "93584b828e96439a9220fbf6", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0e29543d39da4bc4841efeda", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } + }, + "revision": "67ae43d3c3a0496cb14d05fe", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -45949,9 +67951,18 @@ "total_amount": 100, "history_id": 1684153197656, "id": 1684153197656, - "date_created": "2023-05-15T12:19:57.656Z", - "date_last_updated": "2023-05-15T12:24:35.791Z", - "date_of_expiration": "2023-06-14T12:19:57.656Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -45959,30 +67970,29 @@ "date_approved": "2023-05-15T12:24:35.791Z", "money_release_date": "2023-05-15T12:24:35.791Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0724.0208.9290.1489-10" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1fc9e6c827fb4024ab39bf59", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { - "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684634671417/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0724.0208.9290.1489-10", + "revision": "318f42e1649e4e50b904f8cf", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684634671417/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684634671417, @@ -45993,18 +68003,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e1e040c2936e47b7aad630aa", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684634671417", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -46014,9 +68037,18 @@ "original_amount": 488292, "total_amount": 488292, "id": 1684634671417, - "date_created": "2023-05-21T02:04:31.417Z", - "date_last_updated": "2023-05-21T02:04:31.417Z", - "date_of_expiration": "2023-05-21T02:04:31.417Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46025,38 +68057,41 @@ "history_id": 1684634671417, "description": "Compra de 488.292,00 IVIP por 100,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "46beee09fc8c4423bc055d44", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } + }, + "revision": "bbbe606342774468b37fd38c", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -46065,9 +68100,18 @@ "total_amount": 120, "history_id": 1685124719970, "id": 1685124719970, - "date_created": "2023-05-26T18:11:59.970Z", - "date_last_updated": "2023-05-29T12:51:17.545Z", - "date_of_expiration": "2023-06-25T18:11:59.970Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -46075,41 +68119,54 @@ "date_approved": "2023-05-29T12:51:17.545Z", "money_release_date": "2023-05-29T12:51:17.545Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 120,00 para a carteira iVip 0724.0208.9290.1489-10" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "74ab4b2d7014425eb224465f", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { - "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 120,00 para a carteira iVip 0724.0208.9290.1489-10", + "revision": "c856f43c141f49afa5338554", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } + }, + "revision": "4ac855d0d47b4f469902736a", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -46118,9 +68175,18 @@ "total_amount": 1510, "history_id": 1685203508718, "id": 1685203508718, - "date_created": "2023-05-27T16:05:08.718Z", - "date_last_updated": "2023-05-27T18:12:01.604Z", - "date_of_expiration": "2023-06-26T16:05:08.718Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -46128,30 +68194,29 @@ "date_approved": "2023-05-27T18:12:01.604Z", "money_release_date": "2023-05-27T18:12:01.604Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.510,00 para a carteira iVip 0724.0208.9290.1489-10" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3b73916eb5c5487989f362e7", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { - "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685744132878/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.510,00 para a carteira iVip 0724.0208.9290.1489-10", + "revision": "6a7f8e8e80cb4d75ad68ee30", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685744132878/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685744132878, @@ -46162,18 +68227,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "430bef0572884e99a562c612", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685744132878", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -46183,9 +68261,18 @@ "original_amount": 5725017, "total_amount": 5725017, "id": 1685744132878, - "date_created": "2023-06-02T22:15:32.878Z", - "date_last_updated": "2023-06-02T22:15:32.878Z", - "date_of_expiration": "2023-06-02T22:15:32.878Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46194,38 +68281,41 @@ "history_id": 1685744132878, "description": "Compra de 5.725.017,00 IVIP por 1.630,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cc58d419254646d6a3f46e77", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } + }, + "revision": "9b82412600e24825aa2c647c", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -46234,9 +68324,18 @@ "total_amount": 5122916, "history_id": 1687787978807, "id": 1687787978807, - "date_created": "2023-06-26T13:59:38.807Z", - "date_last_updated": "2023-06-28T18:01:13.708Z", - "date_of_expiration": "2023-06-26T13:59:38.807Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -46244,41 +68343,54 @@ "date_approved": "2023-06-28T18:01:13.708Z", "money_release_date": "2023-06-28T18:01:13.708Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 5.122.916,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "80780393dba1456abec32767", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { - "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 5.122.916,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", + "revision": "d2525a8169ea485aa8c802e9", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } + }, + "revision": "e56894faf30e466c9dca84c2", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -46287,9 +68399,18 @@ "total_amount": 1002074, "history_id": 1688549736848, "id": 1688549736848, - "date_created": "2023-07-05T09:35:36.848Z", - "date_last_updated": "2023-07-05T13:12:16.770Z", - "date_of_expiration": "2023-07-05T09:35:36.848Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -46297,30 +68418,29 @@ "date_approved": "2023-07-05T13:12:16.770Z", "money_release_date": "2023-07-05T13:12:16.770Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 1.002.074,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f33c8f0c4dae4b76ad5d7120", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { - "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361/details/costs", + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 1.002.074,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", + "revision": "9353f4fbc8284db4880bd7d0", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690225683361, "net_received_amount": 0, @@ -46330,18 +68450,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/072402089290148910/history/1690225683361" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4e778767fac9439abeb36aa2", + "revision_nr": 1, + "created": 1701459383515, + "modified": 1701459383515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/072402089290148910/history/1690225683361", + "revision": "6ad293e4f1f6498a90994e5e", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -46350,9 +68493,18 @@ "total_amount": 88319, "id": 1690225683361, "history_id": 1690225683361, - "date_created": "2023-07-24T19:08:03.361Z", - "date_last_updated": "2023-07-26T19:07:32.462Z", - "date_of_expiration": "2023-07-24T19:08:03.361Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -46362,144 +68514,193 @@ "date_approved": "2023-07-26T19:07:32.462Z", "money_release_date": "2023-07-26T19:07:32.462Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 88.319,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f4099d86cf5241d09dcca6ab", + "revision_nr": 1, + "created": 1701459383515, + "modified": 1701459383515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361/description", + "content": { + "type": "STRING", + "value": "Saque de 88.319,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", + "revision": "1e3d5943d2544c8e929cacee", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ab977482b6ba468f961ea240", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "260fe48d3647407185d202ca", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 3000, "limitUsed": 0, "analysisRequested": "2023-06-26T14:00:45.586Z", - "lastReview": "2023-06-28T18:01:24.723Z" + "lastReview": "2023-06-28T18:01:24.723Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "81215bcae93d4769a2d12dac", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684153171860, "dateValidity": 1684153171860, "totalValue": 6.86, "currencyType": "USD", - "balancesModificacao": 1690398452515 + "balancesModificacao": 1690398452515, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "378c8e3fb1494fa8a56bee30", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/073789164441763200/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3bdbf517986c4a53b31d1321", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/073789164441763200/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0b5a1b5f00a54db3aa6107bd", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/073789164441763200", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1696199966019, "dateValidity": 1696199966060, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4e2a292ea03a4c8097f3b91d", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6e7552bc2e8a4b4d90429cfc", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } + }, + "revision": "872fb8e6be9b43d0ace2aecc", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -46508,102 +68709,148 @@ "total_amount": 20, "history_id": 1678088421430, "id": 1678088421430, - "date_created": "2023-03-06T07:40:21.430Z", - "date_last_updated": "2023-03-13T13:57:17.019Z", - "date_of_expiration": "2023-04-05T07:40:21.430Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-03-13T13:57:17.019Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0749.8124.2324.5748-20" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "886365d44309410db57be2ef", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0749.8124.2324.5748-20", + "revision": "d288bd8e47b447ddac2da6fb", + "revision_nr": 1, + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8bf269a894914d94a18ffbbd", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677902662156, "dateValidity": 1678146242488, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6215fe07dbc24bc28675eb39", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "30.00000000", "symbol": "BRL", - "value": 6.28 + "value": 6.28, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d2d98cd3e0664603b4521dd0", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fa229eccde1442b0bb7e492d", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } + }, + "revision": "f7cb60c8b24f46d099abe400", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -46612,9 +68859,18 @@ "total_amount": 30, "history_id": 1689767358341, "id": 1689767358341, - "date_created": "2023-07-19T11:49:18.341Z", - "date_last_updated": "2023-07-26T21:51:18.554Z", - "date_of_expiration": "2023-08-18T11:49:18.341Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -46622,120 +68878,169 @@ "date_approved": "2023-07-26T21:51:18.554Z", "money_release_date": "2023-07-26T21:51:18.554Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 30,00 para a carteira iVip 0752.7001.2379.5890-70" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ded1629a0d204840a0905dfc", + "revision_nr": 1, + "created": 1701459383515, + "modified": 1701459383515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0752.7001.2379.5890-70", + "revision": "7232bafa3530424298c38213", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cfa99b204157429da2a7f5cd", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fd3b1b01651843ccab62ca98", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2966a9e697c4418fbe6bcc86", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1689767257899, "dateValidity": 1689767257899, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": 1690416536434 + "balancesModificacao": 1690416536434, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bfbaac7f2e104795bdfeb610", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "186.00000000", "symbol": "BRL", - "value": 36.47 + "value": 36.47, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fca4dfae672b4e7d860a5c55", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "545af81488f74986bf154442", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } + }, + "revision": "9bd15f353f2a44a0869e4919", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -46744,9 +69049,18 @@ "total_amount": 240, "history_id": 1684093506914, "id": 1684093506914, - "date_created": "2023-05-14T19:45:06.914Z", - "date_last_updated": "2023-05-14T20:28:06.351Z", - "date_of_expiration": "2023-06-13T19:45:06.914Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -46754,30 +69068,29 @@ "date_approved": "2023-05-14T20:28:06.351Z", "money_release_date": "2023-05-14T20:28:06.351Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 240,00 para a carteira iVip 0754.2952.0947.6616-50" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e953200d47264700b1f8335b", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { - "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1689771495719/details/costs", + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 240,00 para a carteira iVip 0754.2952.0947.6616-50", + "revision": "ebf5310e54de4ad08b1e5ea7", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1689771495719/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689771495719, @@ -46788,18 +69101,31 @@ "overpaid_amount": 0, "installment_amount": 54, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7a82e61f50304f39b3b9b665", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1689771495719", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -46808,192 +69134,274 @@ "original_amount": 54, "total_amount": 54, "id": 1689771495719, - "date_created": "2023-07-19T12:58:15.719Z", - "date_last_updated": "2023-07-19T12:58:15.719Z", - "date_of_expiration": "2024-05-19T12:58:15.719Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1689771495719, - "description": "Investimento de 54,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/19/2024" + "history_id": 1689771495719 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "36043661f4234d00ba3b5c91", + "revision_nr": 1, + "created": 1701459383515, + "modified": 1701459383515 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1689771495719/description", + "content": { + "type": "STRING", + "value": "Investimento de 54,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/19/2024", + "revision": "cba1e06e27374491835c02bc", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9467e7ebbc564c51afa548fa", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f53d9354785b4b9380a17b53", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "647ce4d2328e46d89e5a5ef7", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684093342801, "dateValidity": 1684093342801, "totalValue": 38.464800000000004, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z" + "balancesModificacao": "2023-10-16T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4eb95da8de644b7599764135", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/076012264992064480/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f372f760697d4fba9cbd5a13", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/076012264992064480/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3af7ce90f8214d098d356ed9", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/076012264992064480/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "73d2411119c84e01994bbc8d", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/076012264992064480/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fb369c90099543bfba5768b7", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/076012264992064480", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678218975769, "dateValidity": 1678233375802, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": "2023-10-12T03:00:00.000Z" + "balancesModificacao": "2023-10-12T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5bcba9f286a64bad848f4230", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "932705.00000000", "symbol": "IVIP", - "value": 508.13 + "value": 508.13, + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7e9962d2a3954214bb63d401", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c64d434affb94bac9f5d5e15", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383515 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383515 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383515 + } + }, + "revision": "e764d654499b453d800d3275", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -47002,9 +69410,18 @@ "total_amount": 100, "history_id": 1683069444271, "id": 1683069444271, - "date_created": "2023-05-02T23:17:24.271Z", - "date_last_updated": "2023-05-15T12:20:50.305Z", - "date_of_expiration": "2023-06-01T23:17:24.271Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -47012,41 +69429,54 @@ "date_approved": "2023-05-15T12:20:50.305Z", "money_release_date": "2023-05-15T12:20:50.305Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "95b58dcf0f514d97b098f2dd", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297/details/costs", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", + "revision": "f53559e298a54653be086696", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383515, + "modified": 1701459383515 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } + }, + "revision": "a3126d4869a64b94b94d0980", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -47055,9 +69485,18 @@ "total_amount": 100, "history_id": 1684135234297, "id": 1684135234297, - "date_created": "2023-05-15T07:20:34.297Z", - "date_last_updated": "2023-05-15T22:42:26.714Z", - "date_of_expiration": "2023-06-14T07:20:34.297Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -47065,41 +69504,54 @@ "date_approved": "2023-05-15T22:42:26.714Z", "money_release_date": "2023-05-15T22:42:26.714Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a1fb0066aa6f40a1bfd8f4da", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791/details/costs", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", + "revision": "db0757bcf4b14683bc86618b", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } + }, + "revision": "1fd597e6ed3946799ec7c1ae", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -47108,9 +69560,18 @@ "total_amount": 100, "history_id": 1684178465791, "id": 1684178465791, - "date_created": "2023-05-15T19:21:05.791Z", - "date_last_updated": "2023-05-15T20:15:15.990Z", - "date_of_expiration": "2023-06-14T19:21:05.791Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -47118,45 +69579,78 @@ "date_approved": "2023-05-15T20:15:15.990Z", "money_release_date": "2023-05-15T20:15:15.990Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b701bd970035406d8bf87be7", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", + "revision": "611c820c96c94a95bd90bd3d", + "revision_nr": 1, + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300 + "amount": 300, + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8846d08c11e14b05ba839605", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "924433dbe8c14f88a3edf7b7", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "85b6c12167fc4a0eac5b3f7a", + "revision_nr": 1, + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -47165,37 +69659,45 @@ "total_amount": 1300, "history_id": 1684353970499, "id": 1684353970499, - "date_created": "2023-05-17T20:06:10.499Z", - "date_last_updated": "2023-05-17T20:06:10.499Z", - "date_of_expiration": "2023-06-16T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4811fd132f754531a19fdbb6", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684627580539/details/costs", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "6dcedbfed9384d95ab538959", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684627580539/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684627580539, @@ -47206,18 +69708,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9bae2b4fd20549d3889b5234", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684627580539", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -47227,9 +69742,18 @@ "original_amount": 6331951, "total_amount": 6331951, "id": 1684627580539, - "date_created": "2023-05-21T00:06:20.539Z", - "date_last_updated": "2023-05-21T00:06:20.539Z", - "date_of_expiration": "2023-05-21T00:06:20.539Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47238,27 +69762,16 @@ "history_id": 1684627580539, "description": "Compra de 6.331.951,00 IVIP por 1.300,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fcfcbde9ecfd4127b67821e3", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684628335504/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684628335504/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684628335504, @@ -47269,18 +69782,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3027713377d14d76bfbc8100", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684628335504", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -47290,38 +69816,46 @@ "original_amount": 320, "total_amount": 320, "id": 1684628335504, - "date_created": "2023-05-21T00:18:55.504Z", - "date_last_updated": "2023-05-21T00:18:55.504Z", - "date_of_expiration": "2023-05-21T00:18:55.504Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684628335504, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684628335504 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9dd908168fc84ef2b4bd61d0", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684633146254/details/costs", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684628335504/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "cfaee3f526e44734ba89b6b4", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684633146254/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684633146254, @@ -47332,18 +69866,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2e806932d2354208b80c7a48", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684633146254", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -47353,9 +69900,18 @@ "original_amount": 1561756, "total_amount": 1561756, "id": 1684633146254, - "date_created": "2023-05-21T01:39:06.254Z", - "date_last_updated": "2023-05-21T01:39:06.254Z", - "date_of_expiration": "2023-05-21T01:39:06.254Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47364,38 +69920,41 @@ "history_id": 1684633146254, "description": "Compra de 1.561.756,00 IVIP por 320,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "01a56f4fa9494d748ba1a477", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } + }, + "revision": "4c254ca72d9c4228bf4e1cfe", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -47404,9 +69963,18 @@ "total_amount": 130, "history_id": 1687191698878, "id": 1687191698878, - "date_created": "2023-06-19T16:21:38.878Z", - "date_last_updated": "2023-06-23T18:12:45.861Z", - "date_of_expiration": "2023-07-19T16:21:38.878Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -47414,41 +69982,54 @@ "date_approved": "2023-06-23T18:12:45.861Z", "money_release_date": "2023-06-23T18:12:45.861Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 130,00 para a carteira iVip 0765.1978.1500.7150-40" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "45a0b521ce874664a8dda33f", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837/details/costs", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0765.1978.1500.7150-40", + "revision": "ff5b9b357ca348f789c27494", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } + }, + "revision": "cc56be6b124d45cf9efd7321", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -47457,47 +70038,69 @@ "total_amount": 1000, "history_id": 1689106982837, "id": 1689106982837, - "date_created": "2023-07-11T20:23:02.837Z", - "date_last_updated": "2023-07-11T20:23:02.837Z", - "date_of_expiration": "2023-07-11T20:23:02.837Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 1.000,00 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "55db2b51303347c99759bdee", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445/details/costs", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 1.000,00 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", + "revision": "3255812b739e4dbba7603d47", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } + }, + "revision": "4f4d7cae4116457c9bce9903", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -47506,36 +70109,44 @@ "total_amount": 100000, "history_id": 1689107140445, "id": 1689107140445, - "date_created": "2023-07-11T20:25:40.445Z", - "date_last_updated": "2023-07-11T20:25:40.445Z", - "date_of_expiration": "2023-07-11T20:25:40.445Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 100.000,00 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "42fc6f69a1734aa894187f87", "revision_nr": 1, - "created": 1700748395486, - "modified": 1700748395486 + "created": 1701459383516, + "modified": 1701459383516 } }, { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689751872577/details/costs", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 100.000,00 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", + "revision": "b48bb5c5ae72499aa2a7dd5a", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689751872577/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -47548,18 +70159,31 @@ "overpaid_amount": 0, "installment_amount": 130, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e38f79820f8843279323cecb", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689751872577", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -47570,49 +70194,71 @@ "total_amount": 130, "id": 1689751872577, "contract_id": "1684353970499", - "date_created": "2023-07-19T07:31:12.577Z", - "date_last_updated": "2023-07-19T07:31:12.577Z", - "date_of_expiration": "2023-07-19T07:31:12.577Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1689751872577, - "description": "Pagamento de fatura 1 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499" + "history_id": 1689751872577 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "14913897929143a3b2c10c53", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412/details/costs", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689751872577/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", + "revision": "97e6e83f1e9e4ebfa3e48080", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } + }, + "revision": "802130877aa443c69b5e54c1", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -47621,9 +70267,18 @@ "total_amount": 130, "history_id": 1689787472412, "id": 1689787472412, - "date_created": "2023-07-19T17:24:32.412Z", - "date_last_updated": "2023-07-27T14:56:03.902Z", - "date_of_expiration": "2023-08-18T17:24:32.412Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -47631,30 +70286,29 @@ "date_approved": "2023-07-27T14:56:03.902Z", "money_release_date": "2023-07-27T14:56:03.902Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 130,00 para a carteira iVip 0765.1978.1500.7150-40" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "952fdcbcecd34f38841bbc17", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1690471265404/details/costs", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0765.1978.1500.7150-40", + "revision": "f498ddd462b54a328e272085", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1690471265404/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -47667,18 +70321,31 @@ "overpaid_amount": 0, "installment_amount": 130, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "873ef00eaeb2420cb224d7d8", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1690471265404", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -47689,52 +70356,72 @@ "total_amount": 130, "id": 1690471265404, "contract_id": "1684353970499", - "date_created": "2023-07-27T15:21:05.404Z", - "date_last_updated": "2023-07-27T15:21:05.404Z", - "date_of_expiration": "2023-07-27T15:21:05.404Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1690471265404, - "description": "Pagamento de fatura 2 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499" + "history_id": 1690471265404 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "104a8c1ebb674ac196d7ce61", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1690471265404/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-20T13:29:26.475Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", + "revision": "6baf1fd73dde4829b1cacbe3", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/details/costs", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-20T13:29:26.475Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } + }, + "revision": "5ba935b48a8048b5bfc00d0d", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692624566475, "net_received_amount": 0, @@ -47744,18 +70431,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692624566475" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "134824cb55db49caa9f60703", + "revision_nr": 1, + "created": 1701459383516, + "modified": 1701459383516 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692624566475", + "revision": "71956a893c7142c28c59e08e", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -47764,8 +70474,14 @@ "total_amount": 130, "id": 1692624566475, "history_id": 1692624566475, - "date_created": "2023-08-21T13:29:26.475Z", - "date_last_updated": "2023-08-21T13:41:31.282Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47776,29 +70492,32 @@ "money_release_date": "2023-08-21T13:41:31.282Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 130,00 BRL para a carteira iVip 0765.1978.1500.7150-40" + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "51fb7ff4fbd3470b88c2bcab", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580/details/costs", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 130,00 BRL para a carteira iVip 0765.1978.1500.7150-40", + "revision": "ec6628e091c64a0782552d49", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692660761580, "net_received_amount": 0, @@ -47808,20 +70527,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 3, "installments_payable": 7, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692660761580" + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2a9cd22d8bb3470fbf79011c", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692660761580", + "revision": "d1479684c57d4f9cab798bd1", + "revision_nr": 1, + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -47830,42 +70572,73 @@ "total_amount": 130, "id": "1692660761580", "history_id": "1692660761580", - "date_created": "2023-08-21T23:32:41.580Z", - "date_last_updated": "2023-08-21T23:32:41.580Z", - "date_of_expiration": "2023-08-21T23:32:41.580Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 3 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c7133aabbbe745ea8e25700d", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580/description", + "content": { + "type": "STRING", + "value": "Pagamento de fatura 3 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", + "revision": "7c6a53cfd8624feeae3a4d23", + "revision_nr": 1, + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 208830.06 + "amount": 208830.06, + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c435c4f1fe154adbb485ce23", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692785689941, "net_received_amount": 0, @@ -47875,18 +70648,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692785689941" + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d0db80062846437dbce9c0a6", + "revision_nr": 1, + "created": 1701459383516, + "modified": 1701459383516 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692785689941", + "revision": "ccb114a0147a4806a54592ae", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "1a7011b9b32843aaa0f0873c", + "revision_nr": 1, + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -47895,9 +70701,18 @@ "total_amount": 6752171.94, "id": "1692785689941", "history_id": "1692785689941", - "date_created": "2023-08-23T10:14:49.941Z", - "date_last_updated": "2023-08-25T14:03:24.887Z", - "date_of_expiration": "2023-08-23T10:14:49.941Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -47907,44 +70722,55 @@ "date_approved": "2023-08-25T14:03:24.887Z", "money_release_date": "2023-08-25T14:03:24.887Z", "money_release_status": "drawee", - "wasDebited": true, - "description": "Saque de 6.752.171,94 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ed10abdce3c0495f91058368", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-11-05T17:04:41.018Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 6.752.171,94 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", + "revision": "93145a666f3f499686924b71", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/details/costs", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-11-05T17:04:41.018Z", + "date_created": { + "type": 6, + "value": 1701459383516 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383516 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383516 + } + }, + "revision": "8d7c28ec5ac3494996a1c03b", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696611881018", "net_received_amount": 0, @@ -47954,18 +70780,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1696611881018" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0152f58205f0482e84603790", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1696611881018", + "revision": "0d5950cef2d9425bab19c3b6", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -47975,8 +70824,14 @@ "total_amount": 130, "id": "1696611881018", "history_id": "1696611881018", - "date_created": "2023-10-06T17:04:41.018Z", - "date_last_updated": "2023-10-06T17:16:03.868Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47987,29 +70842,32 @@ "money_release_date": "2023-10-06T17:16:03.868Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 130,00 BRL para a carteira iVip 0765.1978.1500.7150-40" + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "39f991bc12584b03a4096fc7", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { - "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272/details/costs", + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 130,00 BRL para a carteira iVip 0765.1978.1500.7150-40", + "revision": "9315d9e79ed245d28bcec1b4", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383516, + "modified": 1701459383516 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696613460272", "net_received_amount": 0, @@ -48019,20 +70877,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 4, "installments_payable": 6, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1696613460272" + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "968049b351254f458d2bf0f2", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1696613460272", + "revision": "0c84d93043eb4f03a54a4ab0", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -48042,53 +70923,84 @@ "total_amount": 130, "id": "1696613460272", "history_id": "1696613460272", - "date_created": "2023-10-06T17:31:00.272Z", - "date_last_updated": "2023-10-06T17:31:00.272Z", - "date_of_expiration": "2023-10-06T17:31:00.272Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 4 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b1a478e0b12d4787a32e0482", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272/description", + "content": { + "type": "STRING", + "value": "Pagamento de fatura 4 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", + "revision": "7a7f1a460a1c4d2d980aa40f", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "60740ea5d065411cbd653266", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300 + "amount": 300, + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "87722e3c8795498f8b00d2f0", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684353970499, "type": "emprestimo", @@ -48096,48 +71008,92 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, "history_id": 1684353970499, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ed5e9daca05b48e9a726a1ff", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "90ebafddb15140369f9b25b8", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "46bff42707144d7b827457fb", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5d3f3c8c2b5740ee83b40480", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300 + "amount": 300, + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3e2933996a4e4653aef48a5a", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684353970499, "type": "emprestimo", @@ -48145,48 +71101,92 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, "history_id": 1684353970499, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5590e0eb71ed4f83babd0ce1", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "b9374222e0a5421ab9e280bc", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "420805f5adb041f0aeec0ff3", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fdbb9eda8ce8417f8a5c5075", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300 + "amount": 300, + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "52b91a8878f740f199b087d4", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684353970499, "type": "emprestimo", @@ -48194,48 +71194,92 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, "history_id": 1684353970499, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6b897561dca8454383e8b7e0", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "b803cdd706624421a08c0416", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "ca4b82fc860f4672b491b159", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d392569140244f87a35d1b55", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300 + "amount": 300, + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6c0f988c2f574a57bfc78359", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684353970499, "type": "emprestimo", @@ -48243,49 +71287,92 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, "history_id": 1684353970499, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-10-06T17:31:00.287Z", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "baf835cff5714be1a723dc22", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "a6dd5a170e6a448793fa1e43", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "6cca172edf9742f697bc7c28", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3776af38608643b48ca81512", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300 + "amount": 300, + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "01189fe1f357450a9ff66373", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684353970499, "type": "emprestimo", @@ -48293,47 +71380,91 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, "history_id": 1684353970499, "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "52c1bf5ea5ee4930ac09efeb", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "cec7a04aace84065bf3bd6d8", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "bed58d8d79fc421cbc49e2f9", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c1af5bb4af264ab193dedd4a", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300 + "amount": 300, + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "546939f471274ce2be478349", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684353970499, "type": "emprestimo", @@ -48341,47 +71472,91 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, "history_id": 1684353970499, "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "753beada6a6f428b836e7d21", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "5f7358b813d74cb3afe1542e", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "2fc8eb557d1547baa161926a", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b63abd3846454f9584952c60", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300 + "amount": 300, + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4ea1b972681e4dfa8083d7c3", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684353970499, "type": "emprestimo", @@ -48389,47 +71564,91 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, "history_id": 1684353970499, "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6c4efa3afc3346c191e67fb4", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "d7c4969985654805a91bc4b2", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "f17b04412a614791a15e2e64", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "367d72d08000482997613eca", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300 + "amount": 300, + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "71b792704e4f4f04bdf5ceb2", "revision_nr": 1, - "created": 1700748395487, - "modified": 1700748395487 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684353970499, "type": "emprestimo", @@ -48437,47 +71656,91 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, "history_id": 1684353970499, "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0b7724828b844f00a7ac57a0", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "aae6fa27bb954b98b180846d", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "f8de60130f9f4b6e9bda22e0", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "73c331ca22ff476694c83e8e", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300 + "amount": 300, + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1290cae9371644229e6c3bea", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684353970499, "type": "emprestimo", @@ -48485,47 +71748,91 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, "history_id": 1684353970499, "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "27372dc418c847df84a058dc", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "ff1b6ee512674ca78de911c4", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "361dab937b324f0fa88821d6", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "048d55ae202a4d86be0237bf", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300 + "amount": 300, + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f2ab90aca9a14f5585a01cdd", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684353970499, "type": "emprestimo", @@ -48533,147 +71840,218 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, "history_id": 1684353970499, "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00" + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4fd2729724974bd7bb710656", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "4308b5d63f544cba846cd28b", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", + "revision": "350d1f2bfd66425aa3108e3a", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2eb4b1c8ab03440ab32f87b4", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6bcd5af695ad4390a5c59a9d", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 1000, "limitUsed": 800, "analysisRequested": "2023-05-17T13:09:04.557Z", - "lastReview": "2023-05-17T13:16:45.576Z" + "lastReview": "2023-05-17T13:16:45.576Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a208d45b7b2a484c9d82d0d8", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1682778060382, "dateValidity": 1682778060382, "totalValue": 296.475, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z" + "balancesModificacao": "2023-10-16T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "140778da6f3045619213d158", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078019109826485740/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "908ce780b86a4a008161282e", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078019109826485740/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d58de4a3b4884d5d932d2160", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078019109826485740", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677453360716, "dateValidity": 1677453360716, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f2ead803f39243db80264939", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "57069d46286d4c72a8b25644", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } + }, + "revision": "45f61f6db15043c2ba166a01", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -48682,117 +72060,175 @@ "total_amount": 500, "history_id": 1677768924149, "id": 1677768924149, - "date_created": "2023-03-02T14:55:24.149Z", - "date_last_updated": "2023-03-13T13:10:27.494Z", - "date_of_expiration": "2023-04-01T14:55:24.149Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-03-13T13:10:27.494Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0782.9501.4075.3404-50" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "422de40b4c134957bdfe8b45", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0782.9501.4075.3404-50", + "revision": "cfb841b9e0944b418fa0418e", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a7283127ad2a4a5d8b41a3d5", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677768631228, "dateValidity": 1677768631228, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "414b3e9cdd0f497592487d25", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "BRL", "available": "0.00000000", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ab5a293789da42c0a923ceab", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "IVIP", "available": "0.00000000", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8f78bea598ef4718aec801a8", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fa0e52b891d44a7cbd55d66b", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } + }, + "revision": "4219d32ac5ef448ca7fd312a", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -48801,9 +72237,18 @@ "total_amount": 100, "history_id": 1684172899523, "id": 1684172899523, - "date_created": "2023-05-15T17:48:19.523Z", - "date_last_updated": "2023-05-15T21:27:24.298Z", - "date_of_expiration": "2023-06-14T17:48:19.523Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -48811,30 +72256,29 @@ "date_approved": "2023-05-15T21:27:24.298Z", "money_release_date": "2023-05-15T21:27:24.298Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0783.4537.2944.2504-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b864a6d9e993404f9edead16", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { - "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684625628231/details/costs", + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0783.4537.2944.2504-80", + "revision": "0077ff5ee3664a5c9059680b", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684625628231/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684625628231, @@ -48845,18 +72289,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d7999a90821e4d0892421861", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684625628231", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -48866,9 +72323,18 @@ "original_amount": 487073, "total_amount": 487073, "id": 1684625628231, - "date_created": "2023-05-20T23:33:48.231Z", - "date_last_updated": "2023-05-20T23:33:48.231Z", - "date_of_expiration": "2023-05-20T23:33:48.231Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48877,38 +72343,41 @@ "history_id": 1684625628231, "description": "Compra de 487.073,00 IVIP por 100,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bf6fb0b8f7474d408acae2e2", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } + }, + "revision": "cde59d2c4bdb4ba699299a8b", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -48917,47 +72386,69 @@ "total_amount": 487073, "history_id": 1688602924031, "id": 1688602924031, - "date_created": "2023-07-06T00:22:04.031Z", - "date_last_updated": "2023-07-06T00:22:04.031Z", - "date_of_expiration": "2023-07-06T00:22:04.031Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6ce6ebd040064183b1657adb", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { - "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209/details/costs", + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", + "revision": "111cec497ec64b19952acf9e", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } + }, + "revision": "db3c042e4fe64156a11b45ed", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -48966,47 +72457,69 @@ "total_amount": 487073, "history_id": 1689096874209, "id": 1689096874209, - "date_created": "2023-07-11T17:34:34.209Z", - "date_last_updated": "2023-07-11T17:34:34.209Z", - "date_of_expiration": "2023-07-11T17:34:34.209Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "116c80efd3364a268e8f14d4", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { - "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273/details/costs", + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", + "revision": "898b377f79e34a5ea3aa0640", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } + }, + "revision": "bb8ad4cb49bb4e5687d183b0", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -49015,47 +72528,69 @@ "total_amount": 487073, "history_id": 1689182689273, "id": 1689182689273, - "date_created": "2023-07-12T17:24:49.273Z", - "date_last_updated": "2023-07-12T17:24:49.273Z", - "date_of_expiration": "2023-07-12T17:24:49.273Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2b33dc0852334d97964b4d2e", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { - "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070/details/costs", + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", + "revision": "0791f73f43ce487ebed3774f", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } + }, + "revision": "798bc56ff3e34afd870c3143", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -49064,9 +72599,18 @@ "total_amount": 487073, "history_id": 1689197773070, "id": 1689197773070, - "date_created": "2023-07-12T21:36:13.070Z", - "date_last_updated": "2023-07-13T13:52:01.891Z", - "date_of_expiration": "2023-07-12T21:36:13.070Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -49074,119 +72618,168 @@ "date_approved": "2023-07-13T13:52:01.891Z", "money_release_date": "2023-07-13T13:52:01.891Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1624b881c4d04f5c8b38b8f4", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070/description", + "content": { + "type": "STRING", + "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", + "revision": "9c4667a240e4405d9fb228ff", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d5d70157bf2a49e19e7a2d74", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "73bfd91428fd4e8288d280d1", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0e9e29351a3e4cb5825686a2", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684172840672, "dateValidity": 1684172840672, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e3cc7c9721fd48838e64ddec", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "1863605.00000000", "symbol": "IVIP", - "value": 199.32 + "value": 199.32, + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "64c0cc2b94064f44954f7bbc", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4e0585a27ce44843bc42d56c", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } + }, + "revision": "b367c11b217944a58e9a1eab", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -49195,9 +72788,18 @@ "total_amount": 2020, "history_id": 1684105639483, "id": 1684105639483, - "date_created": "2023-05-14T23:07:19.483Z", - "date_last_updated": "2023-05-15T14:50:18.116Z", - "date_of_expiration": "2023-06-13T23:07:19.483Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -49205,30 +72807,29 @@ "date_approved": "2023-05-15T14:50:18.116Z", "money_release_date": "2023-05-15T14:50:18.116Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 2.020,00 para a carteira iVip 0807.3197.8336.0713-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "13f3a8d3e7d6451795558c3c", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { - "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684624287649/details/costs", + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 2.020,00 para a carteira iVip 0807.3197.8336.0713-80", + "revision": "5f1575c1c498448bbb7f6628", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684624287649/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624287649, @@ -49239,18 +72840,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e953016311a846c29cf5bb76", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684624287649", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -49260,9 +72874,18 @@ "original_amount": 9838878, "total_amount": 9838878, "id": 1684624287649, - "date_created": "2023-05-20T23:11:27.649Z", - "date_last_updated": "2023-05-20T23:11:27.649Z", - "date_of_expiration": "2023-05-20T23:11:27.649Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49271,27 +72894,16 @@ "history_id": 1684624287649, "description": "Compra de 9.838.878,00 IVIP por 2.020,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1685667269938/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5127d37f352141f892c5a771", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1685667269938/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685667269938, @@ -49302,18 +72914,31 @@ "overpaid_amount": 0, "installment_amount": 7975273, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a9a36acc7528424090fe3710", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1685667269938", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -49322,128 +72947,186 @@ "original_amount": 7975273, "total_amount": 7975273, "id": 1685667269938, - "date_created": "2023-06-02T00:54:29.938Z", - "date_last_updated": "2023-06-02T00:54:29.938Z", - "date_of_expiration": "2025-06-02T00:54:29.938Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685667269938, - "description": "Investimento de 7.975.273,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025" + "history_id": 1685667269938 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "96ac6122888f49dcbc1a7c6c", + "revision_nr": 1, + "created": 1701459383517, + "modified": 1701459383517 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1685667269938/description", + "content": { + "type": "STRING", + "value": "Investimento de 7.975.273,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", + "revision": "3a3c311e98b24e29b420c458", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "291f1fabcea0493c842cb7c6", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "29999f4db4a84e289b83d51f", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "01168e8210184f31af703340", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684103814248, "dateValidity": 1684103814248, "totalValue": 103.1880266333287, "currencyType": "USD", - "balancesModificacao": "2023-10-13T03:00:00.000Z" + "balancesModificacao": "2023-10-13T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ccd2ad40a0e047c19f62719d", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "2366500.54000000", "symbol": "IVIP", - "value": 355.3 + "value": 355.3, + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b17f1e02c14e42aa863cdc00", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9a598f5e94fb46c8ab949796", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } + }, + "revision": "dad9b3295c514fcaa8264848", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -49452,9 +73135,18 @@ "total_amount": 1500, "history_id": 1677928546145, "id": 1677928546145, - "date_created": "2023-03-04T11:15:46.145Z", - "date_last_updated": "2023-03-04T11:25:19.050Z", - "date_of_expiration": "2023-04-03T11:15:46.145Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -49462,41 +73154,54 @@ "date_approved": "2023-03-04T11:25:19.050Z", "money_release_date": "2023-03-04T11:25:19.050Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0813.9836.2853.5692-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3d72e4addd4c4b1992b25436", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0813.9836.2853.5692-80", + "revision": "82639320787b472a8f615f00", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } + }, + "revision": "541b62573e854b478708c005", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -49505,9 +73210,18 @@ "total_amount": 20, "history_id": 1677787145274, "id": 1677787145274, - "date_created": "2023-03-02T19:59:05.274Z", - "date_last_updated": "2023-03-02T20:06:45.317Z", - "date_of_expiration": "2023-04-01T19:59:05.274Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -49515,30 +73229,29 @@ "date_approved": "2023-03-02T20:06:45.317Z", "money_release_date": "2023-03-02T20:06:45.317Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0813.9836.2853.5692-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1a72ec7420b34d96b2f80f0c", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678059759995/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0813.9836.2853.5692-80", + "revision": "a18b606649e6451fa10195dc", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678059759995/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678059759995, @@ -49549,18 +73262,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9129989a48ac47f4b62f4831", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678059759995", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -49570,9 +73296,18 @@ "original_amount": 10760563, "total_amount": 10760563, "id": 1678059759995, - "date_created": "2023-03-05T23:42:39.995Z", - "date_last_updated": "2023-03-05T23:42:39.995Z", - "date_of_expiration": "2023-03-05T23:42:39.995Z", + "date_created": { + "type": 6, + "value": 1701459383517 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383517 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383517 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49581,38 +73316,41 @@ "history_id": 1678059759995, "description": "Compra de 10760563 IVIP por 1520 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3074d9ad561944c49d8edbc6", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383517, + "modified": 1701459383517 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } + }, + "revision": "6dbe63fc3f5e4e878753bae7", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -49621,9 +73359,18 @@ "total_amount": 153, "history_id": 1678742795429, "id": 1678742795429, - "date_created": "2023-03-13T21:26:35.429Z", - "date_last_updated": "2023-03-13T21:27:18.748Z", - "date_of_expiration": "2023-04-12T21:26:35.429Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -49631,30 +73378,29 @@ "date_approved": "2023-03-13T21:27:18.748Z", "money_release_date": "2023-03-13T21:27:18.748Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 153,00 para a carteira iVip 0813.9836.2853.5692-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d81727e1b9f546c39b2095e8", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383518, + "modified": 1701459383518 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678209797800/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 153,00 para a carteira iVip 0813.9836.2853.5692-80", + "revision": "ea252c5f533c4b189329ebbd", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678209797800/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678209797800, @@ -49665,18 +73411,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e73cbb019bdc47d1ac12898d", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678209797800", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -49686,38 +73445,46 @@ "original_amount": 3, "total_amount": 3, "id": 1678209797800, - "date_created": "2023-03-07T17:23:17.800Z", - "date_last_updated": "2023-03-07T17:23:17.800Z", - "date_of_expiration": "2023-03-07T17:23:17.800Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1678209797800, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1678209797800 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0faea8aba3b447b9bb511573", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383518, + "modified": 1701459383518 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678215371496/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678209797800/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "2b13e6f1617f455c9c799d81", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678215371496/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678215371496, @@ -49728,18 +73495,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "27b9d0415bc446f4a8fb47be", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678215371496", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -49749,38 +73529,46 @@ "original_amount": 2, "total_amount": 2, "id": 1678215371496, - "date_created": "2023-03-07T18:56:11.496Z", - "date_last_updated": "2023-03-07T18:56:11.496Z", - "date_of_expiration": "2023-03-07T18:56:11.496Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1678215371496, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1678215371496 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c85b5fe633314fa48b21dc75", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383518, + "modified": 1701459383518 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679267048083/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678215371496/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "d6b42b50e0fb43439e2dc7a6", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679267048083/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679267048083, @@ -49791,18 +73579,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dfb1f321a73640679c25648e", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679267048083", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -49812,38 +73613,46 @@ "original_amount": 9.4, "total_amount": 9.4, "id": 1679267048083, - "date_created": "2023-03-19T23:04:08.083Z", - "date_last_updated": "2023-03-19T23:04:08.083Z", - "date_of_expiration": "2023-03-19T23:04:08.083Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1679267048083, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1679267048083 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2f813a114f52441b849bd5b2", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383518, + "modified": 1701459383518 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679268223760/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679267048083/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "fc6d541b07fd4de6ac2bfeb1", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679268223760/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679268223760, @@ -49854,18 +73663,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "11f33f7e9e2e406c8591380a", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679268223760", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -49875,9 +73697,18 @@ "original_amount": 974525, "total_amount": 974525, "id": 1679268223760, - "date_created": "2023-03-19T23:23:43.760Z", - "date_last_updated": "2023-03-19T23:23:43.760Z", - "date_of_expiration": "2023-03-19T23:23:43.760Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49886,27 +73717,16 @@ "history_id": 1679268223760, "description": "Compra de 974525 IVIP por 167.4 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679914966258/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "92a9eb6bdea442db8bee5272", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679914966258/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679914966258, @@ -49917,18 +73737,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2560a990e37545ffa1c437a4", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679914966258", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -49938,38 +73771,46 @@ "original_amount": 10, "total_amount": 10, "id": 1679914966258, - "date_created": "2023-03-27T11:02:46.258Z", - "date_last_updated": "2023-03-27T11:02:46.258Z", - "date_of_expiration": "2023-03-27T11:02:46.258Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1679914966258, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1679914966258 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d5ff2e3c0f8a48799963c500", "revision_nr": 1, - "created": 1700748395488, - "modified": 1700748395488 + "created": 1701459383518, + "modified": 1701459383518 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684348398411/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679914966258/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "4677834a002e41898e86d4b9", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684348398411/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684348398411, @@ -49980,18 +73821,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "080d03ff210045c7bf393d9e", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684348398411", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -50001,38 +73855,46 @@ "original_amount": 203, "total_amount": 203, "id": 1684348398411, - "date_created": "2023-05-17T18:33:18.411Z", - "date_last_updated": "2023-05-17T18:33:18.411Z", - "date_of_expiration": "2023-05-17T18:33:18.411Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684348398411, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684348398411 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5aef1a34f01f403591793f0b", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624161069/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684348398411/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "b611c43a55fc4c7fbc6d629f", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624161069/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624161069, @@ -50043,18 +73905,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d115139c353d4b36ae802831", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624161069", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -50064,38 +73939,46 @@ "original_amount": 9, "total_amount": 9, "id": 1684624161069, - "date_created": "2023-05-20T23:09:21.069Z", - "date_last_updated": "2023-05-20T23:09:21.069Z", - "date_of_expiration": "2023-05-20T23:09:21.069Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684624161069, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684624161069 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "534c9a14904b4df8b64034be", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624222413/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624161069/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "d6e1c4381e824fe8a5acd694", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624222413/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624222413, @@ -50106,18 +73989,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "10b9356aaa5a4b68aa50b5a4", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624222413", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -50127,9 +74023,18 @@ "original_amount": 1081302, "total_amount": 1081302, "id": 1684624222413, - "date_created": "2023-05-20T23:10:22.413Z", - "date_last_updated": "2023-05-20T23:10:22.413Z", - "date_of_expiration": "2023-05-20T23:10:22.413Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50138,27 +74043,16 @@ "history_id": 1684624222413, "description": "Compra de 1.081.302,00 IVIP por 222,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d23750b4a9894b17b18c7ec8", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624292772/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624292772/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624292772, @@ -50169,18 +74063,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8c381fca406543a39b48d68a", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624292772", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -50190,49 +74097,71 @@ "original_amount": 7, "total_amount": 7, "id": 1684624292772, - "date_created": "2023-05-20T23:11:32.772Z", - "date_last_updated": "2023-05-20T23:11:32.772Z", - "date_of_expiration": "2023-05-20T23:11:32.772Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684624292772, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684624292772 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "11ff9ea3c0154f1d8d4cd403", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624292772/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "1625a38f11cd4b759513356b", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } + }, + "revision": "7e3ca1b78d7c4f87a88da50a", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -50241,9 +74170,18 @@ "total_amount": 1061299, "history_id": 1688520874831, "id": 1688520874831, - "date_created": "2023-07-05T01:34:34.831Z", - "date_last_updated": "2023-07-13T14:18:04.324Z", - "date_of_expiration": "2023-07-05T01:34:34.831Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -50251,41 +74189,54 @@ "date_approved": "2023-07-13T14:18:04.324Z", "money_release_date": "2023-07-13T14:18:04.324Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 1.061.299,00 IVIP para a carteira 0xE15d4Dd48a54BAF74D9FA6a77FBb4B943a2A0d07" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a6b989e8636a4f25a7b4ab96", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 1.061.299,00 IVIP para a carteira 0xE15d4Dd48a54BAF74D9FA6a77FBb4B943a2A0d07", + "revision": "86a843f7fd7b4d10834d0bb1", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } + }, + "revision": "ab8e9003f6d24f259e4dae93", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -50294,9 +74245,18 @@ "total_amount": 10045174, "history_id": 1689257644454, "id": 1689257644454, - "date_created": "2023-07-13T14:14:04.454Z", - "date_last_updated": "2023-07-14T17:46:54.071Z", - "date_of_expiration": "2023-07-13T14:14:04.454Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -50304,41 +74264,54 @@ "date_approved": "2023-07-14T17:46:54.071Z", "money_release_date": "2023-07-14T17:46:54.071Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 10.045.174,00 IVIP para a carteira 0xE15d4Dd48a54BAF74D9FA6a77FBb4B943a2A0d07" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "72942e1ba95f4b369125d680", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 10.045.174,00 IVIP para a carteira 0xE15d4Dd48a54BAF74D9FA6a77FBb4B943a2A0d07", + "revision": "f8478f888e1b48b0b2f3b48c", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } + }, + "revision": "49789e9b6c514133a15fe643", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -50347,9 +74320,18 @@ "total_amount": 1000, "history_id": 1689463707269, "id": 1689463707269, - "date_created": "2023-07-15T23:28:27.269Z", - "date_last_updated": "2023-07-18T13:54:57.994Z", - "date_of_expiration": "2023-08-14T23:28:27.269Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -50357,30 +74339,29 @@ "date_approved": "2023-07-18T13:54:57.994Z", "money_release_date": "2023-07-18T13:54:57.994Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0813.9836.2853.5692-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "10a5eb37f4e64e7fb266ebfb", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689688682027/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0813.9836.2853.5692-80", + "revision": "11ecdbc752394dfa9015538b", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689688682027/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689688682027, @@ -50391,18 +74372,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "03c71d8e21e04c1fb5298421", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689688682027", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -50412,9 +74406,18 @@ "original_amount": 661120, "total_amount": 661120, "id": 1689688682027, - "date_created": "2023-07-18T13:58:02.027Z", - "date_last_updated": "2023-07-18T13:58:02.027Z", - "date_of_expiration": "2023-07-18T13:58:02.027Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50423,41 +74426,42 @@ "history_id": 1689688682027, "description": "Compra de 661.120,00 IVIP por 1.007,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "562af1c6c79f453bb3f72293", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-23T17:07:17.203Z" + ".val": "2023-08-23T17:07:17.203Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1b144f7b4d344784b3fdac65", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690218437204, "net_received_amount": 0, @@ -50467,18 +74471,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1690218437204" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a768e5b561db4323a756c66a", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1690218437204", + "revision": "09887c8f285c4c329649c56c", + "revision_nr": 1, + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -50487,37 +74514,46 @@ "total_amount": 100, "id": 1690218437204, "history_id": 1690218437204, - "date_created": "2023-07-24T17:07:17.204Z", - "date_last_updated": "2023-07-24T17:07:17.204Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0813.9836.2853.5692-80" + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8409e6194f9e455ab7354236", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0813.9836.2853.5692-80", + "revision": "3735635f98d54ff0a1eaddd5", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691105324726, "net_received_amount": 0, @@ -50527,18 +74563,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1691105324726" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6434813a32af4a838ca23b73", + "revision_nr": 1, + "created": 1701459383518, + "modified": 1701459383518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1691105324726", + "revision": "ff2963768df54bf7b65ef704", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -50547,38 +74606,46 @@ "total_amount": 2362853, "id": 1691105324726, "history_id": 1691105324726, - "date_created": "2023-08-03T23:28:44.726Z", - "date_last_updated": "2023-08-03T23:28:44.726Z", - "date_of_expiration": "2023-09-03T23:28:44.725Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 2.362.853,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fc7feef9d71c48a99fd0e4f9", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 2.362.853,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", + "revision": "d4cb39c04d1b46d3ae0561c8", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693783873313, "net_received_amount": 0, @@ -50588,18 +74655,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1693783873313" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1cb2954eddb94a1f99392bfb", + "revision_nr": 1, + "created": 1701459383518, + "modified": 1701459383518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1693783873313", + "revision": "52eca759622449fdabc0097f", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -50608,38 +74698,46 @@ "total_amount": 2410110.06, "id": "1693783873313", "history_id": "1693783873313", - "date_created": "2023-09-03T23:31:13.313Z", - "date_last_updated": "2023-09-03T23:31:13.313Z", - "date_of_expiration": "2023-09-03T23:31:13.313Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 2.362.853,00 IVIP com um rendimento de +47.257,06 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d4e22f49a61f40a1b9e3a282", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 2.362.853,00 IVIP com um rendimento de +47.257,06 IVIP (2,00%) - Y12XDT27", + "revision": "cf308a68771a4a768ea1513b", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693916505659, "net_received_amount": 0, @@ -50649,18 +74747,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1693916505659" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9117933e2d3b45ae8df7b7a2", + "revision_nr": 1, + "created": 1701459383518, + "modified": 1701459383518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1693916505659", + "revision": "df0ed52649714bba9dfd5077", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -50669,38 +74790,46 @@ "total_amount": 2410324, "id": "1693916505659", "history_id": "1693916505659", - "date_created": "2023-09-05T12:21:45.659Z", - "date_last_updated": "2023-09-05T12:21:45.659Z", - "date_of_expiration": "2023-10-05T12:21:45.658Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 2.410.324,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4741ccb152484a07ae2f4375", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 2.410.324,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", + "revision": "caee2f26f4704aabbeed5a45", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696508517073, "net_received_amount": 0, @@ -50710,18 +74839,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696508517073" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e5eb8a57e23a42629dfd7d85", + "revision_nr": 1, + "created": 1701459383518, + "modified": 1701459383518 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696508517073", + "revision": "1a57c2c7308942d6afad6e59", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -50731,38 +74883,46 @@ "total_amount": 2458530.48, "id": "1696508517073", "history_id": "1696508517073", - "date_created": "2023-10-05T12:21:57.073Z", - "date_last_updated": "2023-10-05T12:21:57.073Z", - "date_of_expiration": "2023-10-05T12:21:57.073Z", + "date_created": { + "type": 6, + "value": 1701459383518 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383518 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383518 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 2.410.324,00 IVIP com um rendimento de +48.206,48 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d600091aecad41daa816e647", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 2.410.324,00 IVIP com um rendimento de +48.206,48 IVIP (2,00%) - Y12XDT27", + "revision": "b9dfe5b346694ff58dea93ec", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383518, + "modified": 1701459383518 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696541853446, "net_received_amount": 0, @@ -50772,18 +74932,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696541853446" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aef4c5ae382248f386d0af3a", + "revision_nr": 1, + "created": 1701459383519, + "modified": 1701459383519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696541853446", + "revision": "9fd38932bd144e168bebc75a", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -50793,38 +74976,46 @@ "total_amount": 100000, "id": "1696541853446", "history_id": "1696541853446", - "date_created": "2023-10-05T21:37:33.446Z", - "date_last_updated": "2023-10-05T21:37:33.446Z", - "date_of_expiration": "2025-10-05T21:37:33.408Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 100.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 05/10/2025 - P9A02KSL" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cc97f76eb15d4f4da746bafe", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573/details/costs", + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 100.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 05/10/2025 - P9A02KSL", + "revision": "fbec106207e24a7f8d634013", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696640077573", "net_received_amount": 0, @@ -50834,18 +75025,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696640077573" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d204d467baa6435b92e3fb13", + "revision_nr": 1, + "created": 1701459383519, + "modified": 1701459383519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696640077573", + "revision": "81fad888ae2c4beaaf7e5ca2", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -50855,131 +75069,187 @@ "total_amount": 2366500, "id": "1696640077573", "history_id": "1696640077573", - "date_created": "2023-10-07T00:54:37.573Z", - "date_last_updated": "2023-10-07T00:54:37.573Z", - "date_of_expiration": "2023-11-07T00:54:37.538Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 2.366.500,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f59fa2aec9c34d8198e598e0", + "revision_nr": 1, + "created": 1701459383519, + "modified": 1701459383519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573/description", + "content": { + "type": "STRING", + "value": "Investimento de 2.366.500,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", + "revision": "f16c74f09dfd48a28de3fa15", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6cf8249507444904a92f1f80", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "99fb98410c894b589a003157", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f4a8caf0bc504872828d15ab", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677420406636, "dateValidity": 1678944817912, "totalValue": 779.84, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z" + "balancesModificacao": "2023-10-06T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c393c6a1b18e4ae4ba4331ae", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "1189036.00000000", "symbol": "IVIP", - "value": 151.17 + "value": 151.17, + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "08f6a6a1976847ada4c3a430", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "af524a3dc03241babb8fa01e", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-31T22:35:26.584Z" + ".val": "2023-10-31T22:35:26.584Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "28ea345cf45e422e8122ccc8", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696199726584, "net_received_amount": 0, @@ -50989,18 +75259,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696199726584" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5ee1a32da23c48f1a668d74f", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696199726584", + "revision": "3cc40146293a4915910a7e7a", + "revision_nr": 1, + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -51010,51 +75303,72 @@ "total_amount": 10000, "id": "1696199726584", "history_id": "1696199726584", - "date_created": "2023-10-01T22:35:26.584Z", - "date_last_updated": "2023-10-01T22:35:26.584Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 10.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30" + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e51f58c1141742c8883733cd", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-11-01T01:12:03.721Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 10.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", + "revision": "58fa5e228d2c420b93b4edac", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/details/costs", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-11-01T01:12:03.721Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } + }, + "revision": "0cb2aad0e433478694e01f15", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696209123721, "net_received_amount": 0, @@ -51064,18 +75378,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696209123721" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "70955e2482f24e94b10272f3", + "revision_nr": 1, + "created": 1701459383519, + "modified": 1701459383519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696209123721", + "revision": "f7f8cead173f4375a3a85252", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -51085,8 +75422,14 @@ "total_amount": 10000, "id": "1696209123721", "history_id": "1696209123721", - "date_created": "2023-10-02T01:12:03.721Z", - "date_last_updated": "2023-10-02T18:48:20.859Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51097,29 +75440,32 @@ "money_release_date": "2023-10-02T18:48:20.859Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 10.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30" + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f9386e9e967e4be2a31ef981", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483/details/costs", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 10.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", + "revision": "9bd0df3e2e404582899118e0", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696355307483, "net_received_amount": 0, @@ -51129,18 +75475,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696355307483" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4c2bb21723124dc4be4c8bda", + "revision_nr": 1, + "created": 1701459383519, + "modified": 1701459383519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696355307483", + "revision": "a21f3a053d324b50985632a5", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -51150,52 +75519,72 @@ "total_amount": 10000, "id": "1696355307483", "history_id": "1696355307483", - "date_created": "2023-10-03T17:48:27.483Z", - "date_last_updated": "2023-10-03T17:48:27.483Z", - "date_of_expiration": "2023-11-03T17:48:27.483Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 10.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c683adc322694afe9f4c0337", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-11-05T16:28:35.603Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 10.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/11/2023 - Y12XDT27", + "revision": "0ca199c3ec80441398a88930", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/details/costs", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-11-05T16:28:35.603Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } + }, + "revision": "52e370dfaad4434899592ca6", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696609715603", "net_received_amount": 0, @@ -51205,18 +75594,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696609715603" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "400ba6d6b09945538b2c1e4e", + "revision_nr": 1, + "created": 1701459383519, + "modified": 1701459383519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696609715603", + "revision": "348ac7222a174bf0bf028529", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -51226,8 +75638,14 @@ "total_amount": 250, "id": "1696609715603", "history_id": "1696609715603", - "date_created": "2023-10-06T16:28:35.603Z", - "date_last_updated": "2023-10-06T16:50:08.116Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51238,43 +75656,58 @@ "money_release_date": "2023-10-06T16:50:08.116Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 250,00 BRL para a carteira iVip 0832.4975.9247.3140-30" + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1f8d86f11d424a97b359e552", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-11-05T16:40:50.136Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 250,00 BRL para a carteira iVip 0832.4975.9247.3140-30", + "revision": "5147814c0fde4ec9ac4bedf1", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/details/costs", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-11-05T16:40:50.136Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } + }, + "revision": "dddef59fc2024ebc9f3c935d", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696610450136", "net_received_amount": 0, @@ -51284,18 +75717,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696610450136" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6e2b08bc8049490c8f27d4f5", + "revision_nr": 1, + "created": 1701459383519, + "modified": 1701459383519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696610450136", + "revision": "bc17b177bebd4ba4828a1df4", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -51305,8 +75761,14 @@ "total_amount": 868000, "id": "1696610450136", "history_id": "1696610450136", - "date_created": "2023-10-06T16:40:50.136Z", - "date_last_updated": "2023-10-06T17:06:26.733Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51317,29 +75779,32 @@ "money_release_date": "2023-10-06T17:06:26.733Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 868.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30" + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a8bb3d95e4894f4d8cd85962", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696611534552/details/costs", + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 868.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", + "revision": "d8801f85c0144a9594745d46", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696611534552/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696611534552", "net_received_amount": 0, @@ -51349,18 +75814,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696611534552" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0259ce4f4bb049c89f7b8d97", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696611534552/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696611534552", + "revision": "d6acd4743bc6426cb4befc70", + "revision_nr": 1, + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696611534552", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -51370,9 +75858,18 @@ "total_amount": 321036, "id": "1696611534552", "history_id": "1696611534552", - "date_created": "2023-10-06T16:58:54.552Z", - "date_last_updated": "2023-10-06T16:58:54.552Z", - "date_of_expiration": "2023-10-06T16:58:54.552Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -51381,104 +75878,129 @@ "description": "Compra de 321.036,00 IVIP por 250,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "707c020cef4242d288443e7a", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c029e53d67dd4e4b835ea101", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "321a4187425a41488673575b", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4889157a71bc4ff6bae9a86a", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1696067091160, "dateValidity": 1696067091189, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z" + "balancesModificacao": "2023-10-09T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d02b8e6820774373a1f6d093", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b117edaff4024699a6ca9a37", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-26T17:17:31.115Z" + ".val": "2023-10-26T17:17:31.115Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b54ce885c2784de389d63e7b", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695748651115, "net_received_amount": 0, @@ -51488,18 +76010,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748651115" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9cd160f416014fefa544fae1", + "revision_nr": 1, + "created": 1701459383519, + "modified": 1701459383519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748651115", + "revision": "0001c3f0ffba41e7b7243706", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -51509,51 +76054,72 @@ "total_amount": 1000, "id": "1695748651115", "history_id": "1695748651115", - "date_created": "2023-09-26T17:17:31.115Z", - "date_last_updated": "2023-09-26T17:17:31.115Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40" + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "767ff2e4f12c4cd282b8df3f", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-26T17:19:03.839Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", + "revision": "82b35f2fe6e5486ab7e23fa0", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/details/costs", + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-26T17:19:03.839Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } + }, + "revision": "aa9ec8a77c3848a3a16261cf", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695748743840, "net_received_amount": 0, @@ -51563,18 +76129,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748743840" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "373c5bdd59f34c8e9b5c83d0", + "revision_nr": 1, + "created": 1701459383519, + "modified": 1701459383519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748743840", + "revision": "9dd591bec1044362bb2749e8", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -51584,51 +76173,72 @@ "total_amount": 1000, "id": "1695748743840", "history_id": "1695748743840", - "date_created": "2023-09-26T17:19:03.840Z", - "date_last_updated": "2023-09-26T17:19:03.840Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40" + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9040a15b47ae4d50bd7ded9f", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-26T17:20:45.971Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", + "revision": "356e3ee1ea144613bba67ee1", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/details/costs", + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-26T17:20:45.971Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } + }, + "revision": "55d0635cc61448a79521818c", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695748845971, "net_received_amount": 0, @@ -51638,18 +76248,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748845971" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5af40a21cf0043b2af14e9d9", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748845971", + "revision": "124d57f39e3b4d949c39292a", + "revision_nr": 1, + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -51659,111 +76292,158 @@ "total_amount": 1000, "id": "1695748845971", "history_id": "1695748845971", - "date_created": "2023-09-26T17:20:45.971Z", - "date_last_updated": "2023-09-26T17:20:45.971Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40" + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "96b771f9c9c94802a326fc3d", + "revision_nr": 1, + "created": 1701459383519, + "modified": 1701459383519 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", + "revision": "0de802a028934978a886b3ab", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c3254fb1ad64407a88c8fa54", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5eb6ff07a41645fe868cdf87", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "038afdd28dc2494e8a3b2411", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1695748509301, "dateValidity": 1695748509557, "currencyType": "USD", - "balancesModificacao": "2023-09-28T03:00:00.000Z" + "balancesModificacao": "2023-09-28T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a0fe3d2dcfbb4efe9ec1be0a", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "11152936f7384ab9afec8ff4", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } + }, + "revision": "7a5f3ca7d6eb43d79daa1604", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -51772,9 +76452,18 @@ "total_amount": 200, "history_id": 1678035077732, "id": 1678035077732, - "date_created": "2023-03-05T16:51:17.732Z", - "date_last_updated": "2023-03-06T18:57:08.692Z", - "date_of_expiration": "2023-04-04T16:51:17.732Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -51782,30 +76471,29 @@ "date_approved": "2023-03-06T18:57:08.692Z", "money_release_date": "2023-03-06T18:57:08.692Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0852.1260.9036.6842-60" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f168dbd24c9c4ee7ad749705", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678163430853/details/costs", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0852.1260.9036.6842-60", + "revision": "f1ae43ae9b2248e98c5ab1ab", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678163430853/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678163430853, @@ -51816,18 +76504,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "86a841d5fa1946539723022d", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678163430853", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -51837,9 +76538,18 @@ "original_amount": 1426241, "total_amount": 1426241, "id": 1678163430853, - "date_created": "2023-03-07T04:30:30.853Z", - "date_last_updated": "2023-03-07T04:30:30.853Z", - "date_of_expiration": "2023-03-07T04:30:30.853Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51848,38 +76558,41 @@ "history_id": 1678163430853, "description": "Compra de 1426241 IVIP por 200 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5e4df7a4d68d4a85ac723363", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } + }, + "revision": "25a81f15311145c09ac82e9d", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -51888,9 +76601,18 @@ "total_amount": 200, "history_id": 1681136191198, "id": 1681136191198, - "date_created": "2023-04-10T14:16:31.198Z", - "date_last_updated": "2023-04-10T14:36:21.704Z", - "date_of_expiration": "2023-05-10T14:16:31.198Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -51898,30 +76620,29 @@ "date_approved": "2023-04-10T14:36:21.704Z", "money_release_date": "2023-04-10T14:36:21.704Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0852.1260.9036.6842-60" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d03cf0b99bf34b39b6d43378", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1684632748749/details/costs", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0852.1260.9036.6842-60", + "revision": "5630283e1b4b478fa56b8852", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1684632748749/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684632748749, @@ -51932,18 +76653,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fb8acb28bc8347e2bd5a0410", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1684632748749", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -51953,9 +76687,18 @@ "original_amount": 976097, "total_amount": 976097, "id": 1684632748749, - "date_created": "2023-05-21T01:32:28.749Z", - "date_last_updated": "2023-05-21T01:32:28.749Z", - "date_of_expiration": "2023-05-21T01:32:28.749Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51964,38 +76707,41 @@ "history_id": 1684632748749, "description": "Compra de 976.097,00 IVIP por 200,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6131b0a7a5364db187b0a231", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } + }, + "revision": "16e531b2c24f49d0859007ae", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -52004,47 +76750,69 @@ "total_amount": 1200, "history_id": 1685109385732, "id": 1685109385732, - "date_created": "2023-05-26T13:56:25.732Z", - "date_last_updated": "2023-05-26T13:56:25.732Z", - "date_of_expiration": "2023-06-25T13:56:25.732Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "65a1704a1ff84a3884a29107", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881/details/costs", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", + "revision": "377e0b4fd21a4f90aa52b39f", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } + }, + "revision": "2e7797fdba8646478df8bcee", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -52053,47 +76821,69 @@ "total_amount": 1200, "history_id": 1685109442881, "id": 1685109442881, - "date_created": "2023-05-26T13:57:22.881Z", - "date_last_updated": "2023-05-26T13:57:22.881Z", - "date_of_expiration": "2023-06-25T13:57:22.881Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "31b78136a05c4d0097e3be74", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014/details/costs", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", + "revision": "2b6d4d804aed4ba7b3176cef", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + } + }, + "revision": "d0e88bc5122d491dacdfca69", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -52102,9 +76892,18 @@ "total_amount": 1200, "history_id": 1685213653014, "id": 1685213653014, - "date_created": "2023-05-27T18:54:13.014Z", - "date_last_updated": "2023-05-29T12:44:18.194Z", - "date_of_expiration": "2023-06-26T18:54:13.014Z", + "date_created": { + "type": 6, + "value": 1701459383519 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383519 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383519 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -52112,30 +76911,29 @@ "date_approved": "2023-05-29T12:44:18.194Z", "money_release_date": "2023-05-29T12:44:18.194Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ec716d77276e4c7781a0ad7d", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { - "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685666059762/details/costs", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", + "revision": "1d9ffda3cd6146b08068c4e6", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685666059762/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685666059762, @@ -52146,18 +76944,31 @@ "overpaid_amount": 0, "installment_amount": 2402000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e2de183f6a444517b951ce3e", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685666059762", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -52166,38 +76977,46 @@ "original_amount": 2402000, "total_amount": 2402000, "id": 1685666059762, - "date_created": "2023-06-02T00:34:19.762Z", - "date_last_updated": "2023-06-02T00:34:19.762Z", - "date_of_expiration": "2024-06-02T00:34:19.762Z", + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685666059762, - "description": "Investimento de 2.402.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024" + "history_id": 1685666059762 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3ea2ba5192b94fcab3619371", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383520, + "modified": 1701459383520 } }, { - "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685744731387/details/costs", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685666059762/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 2.402.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", + "revision": "877a930897ae46109286aaad", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383519, + "modified": 1701459383519 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685744731387/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685744731387, @@ -52208,18 +77027,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "333b5c27150242deb9eef41d", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685744731387", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -52229,9 +77061,18 @@ "original_amount": 4214736, "total_amount": 4214736, "id": 1685744731387, - "date_created": "2023-06-02T22:25:31.387Z", - "date_last_updated": "2023-06-02T22:25:31.387Z", - "date_of_expiration": "2023-06-02T22:25:31.387Z", + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -52240,27 +77081,16 @@ "history_id": 1685744731387, "description": "Compra de 4.214.736,00 IVIP por 1.200,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1688521364022/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4c783286afc04b7f9f112761", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1688521364022/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688521364022, @@ -52271,18 +77101,31 @@ "overpaid_amount": 0, "installment_amount": 4000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d7d3b2fced414b219bbe08ed", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1688521364022", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -52291,38 +77134,46 @@ "original_amount": 4000000, "total_amount": 4000000, "id": 1688521364022, - "date_created": "2023-07-05T01:42:44.022Z", - "date_last_updated": "2023-07-05T01:42:44.022Z", - "date_of_expiration": "2023-08-05T01:42:44.022Z", + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1688521364022, - "description": "Investimento de 4.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/4/2023" + "history_id": 1688521364022 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dcd833a999274912a6e7f9fe", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383520, + "modified": 1701459383520 } }, { - "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902/details/costs", + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1688521364022/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 4.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/4/2023", + "revision": "15b51c4f81ac4ef697c4c33a", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691199857902, "net_received_amount": 0, @@ -52332,18 +77183,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691199857902" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "268b948b372044af9d937725", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383520, + "modified": 1701459383520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691199857902", + "revision": "d26629fa3c32423b9c69f5ab", + "revision_nr": 1, + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -52352,42 +77226,73 @@ "total_amount": 4080000, "id": 1691199857902, "history_id": 1691199857902, - "date_created": "2023-08-05T01:44:17.902Z", - "date_last_updated": "2023-08-05T01:44:17.902Z", - "date_of_expiration": "2023-08-05T01:44:17.902Z", + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 4.000.000,00 IVIP com um rendimento de +80.000,00 IVIP (2,00%)" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "abf1535515954d10bfb09851", + "revision_nr": 1, + "created": 1701459383520, + "modified": 1701459383520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902/description", + "content": { + "type": "STRING", + "value": "Resgate do investimento staking de 4.000.000,00 IVIP com um rendimento de +80.000,00 IVIP (2,00%)", + "revision": "242482dc93604422a13b57ed", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 124986.6534 + "amount": 124986.6534, + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "960f08b451f44aaa87929da2", "revision_nr": 1, - "created": 1700748395489, - "modified": 1700748395489 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691271945589, "net_received_amount": 0, @@ -52397,18 +77302,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691271945589" + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1308dcb1d3b746afbe86c889", + "revision_nr": 1, + "created": 1701459383520, + "modified": 1701459383520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691271945589", + "revision": "2939043234f142c1bd645768", + "revision_nr": 1, + "created": 1701459383520, + "modified": 1701459383520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "1c09f44108274222bed729fd", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -52417,9 +77355,18 @@ "total_amount": 4166221.78, "id": 1691271945589, "history_id": 1691271945589, - "date_created": "2023-08-05T21:45:45.589Z", - "date_last_updated": "2023-08-16T14:27:56.970Z", - "date_of_expiration": "2023-08-05T21:45:45.589Z", + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -52428,34 +77375,56 @@ "status_detail": "rejected", "money_release_date": "2023-08-16T14:27:56.970Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Saque de 4.166.221,78 IVIP para a carteira 0x13d16B24c3293ABAD823e83A490982c0906508A8" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "abe6f657570b47a1a39c4911", + "revision_nr": 1, + "created": 1701459383520, + "modified": 1701459383520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/description", + "content": { + "type": "STRING", + "value": "Saque de 4.166.221,78 IVIP para a carteira 0x13d16B24c3293ABAD823e83A490982c0906508A8", + "revision": "2ea09c05a8a44f5e98e5c308", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 124986.6534 + "amount": 124986.6534, + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7454bf3d482648eeb1c8c3e5", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691437746780, "net_received_amount": 0, @@ -52465,18 +77434,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691437746780" + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "355e6dec8e1640f0803144d4", + "revision_nr": 1, + "created": 1701459383520, + "modified": 1701459383520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691437746780", + "revision": "5cfcb6e88136475690240130", + "revision_nr": 1, + "created": 1701459383520, + "modified": 1701459383520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "4a87e87b0fe74ded9a90795b", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -52485,9 +77487,18 @@ "total_amount": 4166221.78, "id": 1691437746780, "history_id": 1691437746780, - "date_created": "2023-08-07T19:49:06.780Z", - "date_last_updated": "2023-08-08T15:39:46.843Z", - "date_of_expiration": "2023-08-07T19:49:06.780Z", + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -52497,107 +77508,144 @@ "date_approved": "2023-08-08T15:39:46.843Z", "money_release_date": "2023-08-08T15:39:46.843Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 4.166.221,78 IVIP para a carteira 0x13d16B24c3293ABAD823e83A490982c0906508A8" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6f6987686b8c426084bb8320", + "revision_nr": 1, + "created": 1701459383520, + "modified": 1701459383520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/description", + "content": { + "type": "STRING", + "value": "Saque de 4.166.221,78 IVIP para a carteira 0x13d16B24c3293ABAD823e83A490982c0906508A8", + "revision": "3736b32721ad4faea4dee15a", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6bae64ab5a834aa58ecaba0e", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0eca7145a0c3426d9e8da69c", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 1000, "limitUsed": 0, "analysisRequested": "2023-03-18T19:22:30.161Z", - "lastReview": "2023-03-19T21:25:40.619Z" + "lastReview": "2023-03-19T21:25:40.619Z", + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ecf5895cfc0a4e7f9c216a36", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678034837603, "dateValidity": 1679040303242, "totalValue": 14.089318085490447, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z" + "balancesModificacao": "2023-10-06T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "972ac74a6d4a48df85e27f49", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4dbb859adc484962aa8833bd", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + } + }, + "revision": "c90863404a4344c4a36388bc", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -52606,127 +77654,185 @@ "total_amount": 300, "history_id": 1677939492133, "id": 1677939492133, - "date_created": "2023-03-04T14:18:12.133Z", - "date_last_updated": "2023-03-13T13:30:40.045Z", - "date_of_expiration": "2023-04-03T14:18:12.133Z", + "date_created": { + "type": 6, + "value": 1701459383520 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383520 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383520 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-03-13T13:30:40.045Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 300,00 para a carteira iVip 0858.6972.0472.7301-10" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "36b52ddfacee439397917e80", + "revision_nr": 1, + "created": 1701459383520, + "modified": 1701459383520 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0858.6972.0472.7301-10", + "revision": "8a9977cb4927444a80c28c38", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a64b9015be294d4ebf05efb4", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383520, + "modified": 1701459383520 } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "84ed228e695b4d27a305f7f7", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383521, + "modified": 1701459383521 } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383521 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383521 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383521 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0bf199b8520242a6829ad630", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383521, + "modified": 1701459383521 } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677772587436, "dateValidity": 1678142633851, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383521 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383521 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383521 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4e49f13cc8144202a5eef0ea", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383521, + "modified": 1701459383521 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "1370911.00000000", "symbol": "IVIP", - "value": 901.85 + "value": 901.85, + "date_created": { + "type": 6, + "value": 1701459383521 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383521 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383521 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "eee912b620fb45ad9429b6e8", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383521, + "modified": 1701459383521 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "663b9a8ec3ff456585c5fb04", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383521, + "modified": 1701459383521 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383521 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383521 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383521 + } + }, + "revision": "7e8a62e7bfad4f72967f685b", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383521, + "modified": 1701459383521 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -52735,9 +77841,18 @@ "total_amount": 140, "history_id": 1678097305816, "id": 1678097305816, - "date_created": "2023-03-06T10:08:25.816Z", - "date_last_updated": "2023-03-07T18:47:04.970Z", - "date_of_expiration": "2023-04-05T10:08:25.816Z", + "date_created": { + "type": 6, + "value": 1701459383521 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383521 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383521 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -52745,89 +77860,176 @@ "date_approved": "2023-03-07T18:47:04.970Z", "money_release_date": "2023-03-07T18:47:04.970Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 140,00 para a carteira iVip 0878.7790.2032.1434-10" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bbafe9f17dec4a27a4dcbc6b", + "revision_nr": 1, + "created": 1701459383521, + "modified": 1701459383521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 140,00 para a carteira iVip 0878.7790.2032.1434-10", + "revision": "57cac0f594b9466dad342d55", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383521, + "modified": 1701459383521 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 1.00%", - "amount": 1.1111 + "amount": 1.1111, + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0be078be376748d2a173b3b6", "revision_nr": 1, - "created": 1700748395490, - "modified": 1700748395490 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ea0d6c79286d4495931d176e", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "zBCfpF dcGeyDOq lplNs" + "account_holder_name": "zBCfpF dcGeyDOq lplNs", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d48e93f5e229448488343d5d", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7b17397308a248dd890f44c6", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 112.22, "overpaid_amount": 0, "installment_amount": 0, - "qr_code": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406112.225802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13123227786304C4AC", - "ticket_url": "https://www.mercadopago.com.br/sandbox/payments/1312322778/ticket?caller_id=1310149122&hash=6c5d5276-a6c2-41fd-b3ac-10aff2badfc5", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI3klEQVR42u3dSY7kNhAFUN5A97+lbiDDC7uUjB9UeoDhpl4uGo1SpfRUu48YOK5f6HMOWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWtp/Xzvmz/H7z44/Lxx//t4fF37//u3Cz13u/zvH+Hzi+Lnp/QYfFyYGLS0tLS0tLS0tLS3tS7TTY39u8vPYyitvWt/qfuHjLtOF+98hqWhpaWlpaWlpaWlpaV+gnQJk+lb6vSkT3n+WvvvjXt2vMGhpaWlpaWlpaWlpaV+qLVW2q8TL6fNUzvsoAN6NtLS0tLS0tLS0tLS0tDEdtjeeyn4juKfy4BVS5Ph8A1paWlpaWlpaWlpa2jdrEz5dnebYSuluQk0vdDw1a/69HlFaWlpaWlpaWlpaWtpfXdtuKflv//mnO1VoaWlpaWlpaWlpaWl/UW3+nJ+NlOciBLYpsp2ku++WnLZMZgstLS0tLS0tLS0tLe3e2masLe19/NHmBPrhKd2ZR6kRtkcF9CmSlpaWlpaWlpaWlpZ2N23aL5J3PI774pH70Fs7IZcOZGuH447+pDZaWlpaWlpaWlpaWtqdtSUYtudc192SaSQuhcXFnyAd4XasMi8tLS0tLS0tLS0tLe1u2lRRW5/Alrsz6xHXU51vKh6WrsvmpG1aWlpaWlpaWlpaWtrdtan1Mh1sPcXLactkul8edUtdnEdgHLS0tLS0tLS0tLS0tC/Rlum1a5EESylw5O3/7eHZ+RtniJcXLS0tLS0tLS0tLS3tS7Tf37NNmx/PycNxzYlupcfzy8xLS0tLS0tLS0tLS0u7lfb8zITNZsdyzzQcd4UdJnXDSeq1TKVFWlpaWlpaWlpaWlra92jTRNsi9dWXfGrMXD2jPG3Q0tLS0tLS0tLS0tK+S1vJpc1yMqYuyXPEVs5UMiy/cnUL/WlpaWlpaWlpaWlpad+izUmwdk6mzSVTiW+6cDemibsRDml7SpG0tLS0tLS0tLS0tLQ7a8tA2rm83ZlfqM2JJU+eo57IfdLS0tLS0tLS0tLS0r5Qe5TRtMldHnGW9yu3GmGwbnrklc/XpqWlpaWlpaWlpaWlfY82VdRKDa4uLZm6JMtLTiv76zhdyZjtcdu0tLS0tLS0tLS0tLS7a2t8W6fIdhlJ6cSsqbT8lY6/tqWElpaWlpaWlpaWlpZ2U225XUqCU6/lFU5MS+RrET5TT+ZziqSlpaWlpaWlpaWlpd1KW9xH0T61XqZz19Jp2VPX5ciFvUKmpaWlpaWlpaWlpaV9gbZU1JrP9Ox7JqzNle2R2dOB2qkJk5aWlpaWlpaWlpaW9p3aUaLfVABMwbDEwdWtUtvmoqpIS0tLS0tLS0tLS0v7Cu1ZUl9ZDXk8B8gRDsWe/pkuXOGRU58mLS0tLS0tLS0tLS3tC7R5mG2UXDddaL9WTsuuS/4nT3sDWlpaWlpaWlpaWlral2gnwNWdX308LZi8l/iaNss8bFcn6brqHi0tLS0tLS0tLS0t7X7afGD1tFpk5S7GdkvJFENXufOhFklLS0tLS0tLS0tLS7uV9lo8ewp37TRcToLtS448/lZ6N2lpaWlpaWlpaWlpaV+hTZ2TI5+C/fR7I38jle7Wh7R9k3lpaWlpaWlpaWlpaWl304b4Npf42mQ5fSPdKrdUXqU788uuS1paWlpaWlpaWlpa2l205XDqtFXkzLI8IVej6XT7p2j6vFOFlpaWlpaWlpaWlpZ2I23+pNR3fpbfRoiXzZL/e4nvCGGxHgFAS0tLS0tLS0tLS0v7Jm07kLZaXzJlwp/vtjso0ztP71cCJC0tLS0tLS0tLS0t7Qu0pX2y7hfJWa+p1eXCXoqNV64qhk5MWlpaWlpaWlpaWlra7bX35xxdia8ekZbOU0uvVjosj8VW/2V1j5aWlpaWlpaWlpaWdj9tkpUy3Xhyp57MUiOs03UlVH7ZI0pLS0tLS0tLS0tLS7uV9gyyI6TIa7mHJDVXtk2YKZ+OsvWElpaWlpaWlpaWlpb2Fdq0c2QKd4uz067uiOtzMVO3LiNOG05oaWlpaWlpaWlpaWl31yZ3+7BFc2WTLMPOkVhGvL/9V1v9aWlpaWlpaWlpaWlp99Gmk9VWvZZp1WS6UEbdVmN3U3mQlpaWlpaWlpaWlpb2PdoS6abbnTlAdgv4x7RzJN0vl/PSiB0tLS0tLS0tLS0tLe2rtO0c2zTMVtoir26Z5HqwrjmLLfyMlpaWlpaWlpaWlpZ2Z+0EKMZRCnvJXebdkqfWDct0Xa0g0tLS0tLS0tLS0tLS7q+tnY5tYa9Mr9XwuTgtu34tHQHw0CNKS0tLS0tLS0tLS0u7m7b0Rq4G3HJz5fis+J0lWebGzNFt9T9oaWlpaWlpaWlpaWnfpA2hbZRaXbPfvxQFz26wbpRmzdyEmT60tLS0tLS0tLS0tLSv0I5P4yjDbKUjsj4nJdAUL8tz616ThxRJS0tLS0tLS0tLS0u7kTYnxlqDm8bVcqhMpcD6oHRIW15QQktLS0tLS0tLS0tL+x5tsy0krYsspbta8Xuamqu7Tr7uEaWlpaWlpaWlpaWlpd1Nmz7rPSTpTLQSIM8yCJen686n8ElLS0tLS0tLS0tLS7u7to1+04RcIrdNk3kZSUqRTYvmc+alpaWlpaWlpaWlpaXdR9tkvSnclaJbzZ2p9pe6MxP+6xRJS0tLS0tLS0tLS0u7pbbEwVG6Lstc3BVWi9T2yYJqTgRYRlhaWlpaWlpaWlpaWtqXakdosxx5+0g+2PocTVxNu06+r+7R0tLS0tLS0tLS0tK+RXt0Z2TXUbdp6WR7BEC5ywhnAxy0tLS0tLS0tLS0tLSv0y7wIz92emI7EpcC5Ho47jlF0tLS0tLS0tLS0tLSbqZNlbwp4U2yUfLkInw2o3P5DeqGSlpaWlpaWlpaWlpa2t21//8PLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLe2/pv0Nc/R6xtt85A0AAAAASUVORK5CYII=" + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "383a66a6c328472c8e9b66e9", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406112.225802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13123227786304C4AC", + "revision": "c64ca0da641447938fb5ed67", + "revision_nr": 1, + "created": 1701459383521, + "modified": 1701459383521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/sandbox/payments/1312322778/ticket?caller_id=1310149122&hash=6c5d5276-a6c2-41fd-b3ac-10aff2badfc5", + "revision": "554eb129a0c9453da4f41ffc", + "revision_nr": 1, + "created": 1701459383521, + "modified": 1701459383521 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI3klEQVR42u3dSY7kNhAFUN5A97+lbiDDC7uUjB9UeoDhpl4uGo1SpfRUu48YOK5f6HMOWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWtp/Xzvmz/H7z44/Lxx//t4fF37//u3Cz13u/zvH+Hzi+Lnp/QYfFyYGLS0tLS0tLS0tLS3tS7TTY39u8vPYyitvWt/qfuHjLtOF+98hqWhpaWlpaWlpaWlpaV+gnQJk+lb6vSkT3n+WvvvjXt2vMGhpaWlpaWlpaWlpaV+qLVW2q8TL6fNUzvsoAN6NtLS0tLS0tLS0tLS0tDEdtjeeyn4juKfy4BVS5Ph8A1paWlpaWlpaWlpa2jdrEz5dnebYSuluQk0vdDw1a/69HlFaWlpaWlpaWlpaWtpfXdtuKflv//mnO1VoaWlpaWlpaWlpaWl/UW3+nJ+NlOciBLYpsp2ku++WnLZMZgstLS0tLS0tLS0tLe3e2masLe19/NHmBPrhKd2ZR6kRtkcF9CmSlpaWlpaWlpaWlpZ2N23aL5J3PI774pH70Fs7IZcOZGuH447+pDZaWlpaWlpaWlpaWtqdtSUYtudc192SaSQuhcXFnyAd4XasMi8tLS0tLS0tLS0tLe1u2lRRW5/Alrsz6xHXU51vKh6WrsvmpG1aWlpaWlpaWlpaWtrdtan1Mh1sPcXLactkul8edUtdnEdgHLS0tLS0tLS0tLS0tC/Rlum1a5EESylw5O3/7eHZ+RtniJcXLS0tLS0tLS0tLS3tS7Tf37NNmx/PycNxzYlupcfzy8xLS0tLS0tLS0tLS0u7lfb8zITNZsdyzzQcd4UdJnXDSeq1TKVFWlpaWlpaWlpaWlra92jTRNsi9dWXfGrMXD2jPG3Q0tLS0tLS0tLS0tK+S1vJpc1yMqYuyXPEVs5UMiy/cnUL/WlpaWlpaWlpaWlpad+izUmwdk6mzSVTiW+6cDemibsRDml7SpG0tLS0tLS0tLS0tLQ7a8tA2rm83ZlfqM2JJU+eo57IfdLS0tLS0tLS0tLS0r5Qe5TRtMldHnGW9yu3GmGwbnrklc/XpqWlpaWlpaWlpaWlfY82VdRKDa4uLZm6JMtLTiv76zhdyZjtcdu0tLS0tLS0tLS0tLS7a2t8W6fIdhlJ6cSsqbT8lY6/tqWElpaWlpaWlpaWlpZ2U225XUqCU6/lFU5MS+RrET5TT+ZziqSlpaWlpaWlpaWlpd1KW9xH0T61XqZz19Jp2VPX5ciFvUKmpaWlpaWlpaWlpaV9gbZU1JrP9Ox7JqzNle2R2dOB2qkJk5aWlpaWlpaWlpaW9p3aUaLfVABMwbDEwdWtUtvmoqpIS0tLS0tLS0tLS0v7Cu1ZUl9ZDXk8B8gRDsWe/pkuXOGRU58mLS0tLS0tLS0tLS3tC7R5mG2UXDddaL9WTsuuS/4nT3sDWlpaWlpaWlpaWlral2gnwNWdX308LZi8l/iaNss8bFcn6brqHi0tLS0tLS0tLS0t7X7afGD1tFpk5S7GdkvJFENXufOhFklLS0tLS0tLS0tLS7uV9lo8ewp37TRcToLtS448/lZ6N2lpaWlpaWlpaWlpaV+hTZ2TI5+C/fR7I38jle7Wh7R9k3lpaWlpaWlpaWlpaWl304b4Npf42mQ5fSPdKrdUXqU788uuS1paWlpaWlpaWlpa2l205XDqtFXkzLI8IVej6XT7p2j6vFOFlpaWlpaWlpaWlpZ2I23+pNR3fpbfRoiXzZL/e4nvCGGxHgFAS0tLS0tLS0tLS0v7Jm07kLZaXzJlwp/vtjso0ztP71cCJC0tLS0tLS0tLS0t7Qu0pX2y7hfJWa+p1eXCXoqNV64qhk5MWlpaWlpaWlpaWlra7bX35xxdia8ekZbOU0uvVjosj8VW/2V1j5aWlpaWlpaWlpaWdj9tkpUy3Xhyp57MUiOs03UlVH7ZI0pLS0tLS0tLS0tLS7uV9gyyI6TIa7mHJDVXtk2YKZ+OsvWElpaWlpaWlpaWlpb2Fdq0c2QKd4uz067uiOtzMVO3LiNOG05oaWlpaWlpaWlpaWl31yZ3+7BFc2WTLMPOkVhGvL/9V1v9aWlpaWlpaWlpaWlp99Gmk9VWvZZp1WS6UEbdVmN3U3mQlpaWlpaWlpaWlpb2PdoS6abbnTlAdgv4x7RzJN0vl/PSiB0tLS0tLS0tLS0tLe2rtO0c2zTMVtoir26Z5HqwrjmLLfyMlpaWlpaWlpaWlpZ2Z+0EKMZRCnvJXebdkqfWDct0Xa0g0tLS0tLS0tLS0tLS7q+tnY5tYa9Mr9XwuTgtu34tHQHw0CNKS0tLS0tLS0tLS0u7m7b0Rq4G3HJz5fis+J0lWebGzNFt9T9oaWlpaWlpaWlpaWnfpA2hbZRaXbPfvxQFz26wbpRmzdyEmT60tLS0tLS0tLS0tLSv0I5P4yjDbKUjsj4nJdAUL8tz616ThxRJS0tLS0tLS0tLS0u7kTYnxlqDm8bVcqhMpcD6oHRIW15QQktLS0tLS0tLS0tL+x5tsy0krYsspbta8Xuamqu7Tr7uEaWlpaWlpaWlpaWlpd1Nmz7rPSTpTLQSIM8yCJen686n8ElLS0tLS0tLS0tLS7u7to1+04RcIrdNk3kZSUqRTYvmc+alpaWlpaWlpaWlpaXdR9tkvSnclaJbzZ2p9pe6MxP+6xRJS0tLS0tLS0tLS0u7pbbEwVG6Lstc3BVWi9T2yYJqTgRYRlhaWlpaWlpaWlpaWtqXakdosxx5+0g+2PocTVxNu06+r+7R0tLS0tLS0tLS0tK+RXt0Z2TXUbdp6WR7BEC5ywhnAxy0tLS0tLS0tLS0tLSv0y7wIz92emI7EpcC5Ho47jlF0tLS0tLS0tLS0tLSbqZNlbwp4U2yUfLkInw2o3P5DeqGSlpaWlpaWlpaWlpa2t21//8PLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLe2/pv0Nc/R6xtt85A0AAAAASUVORK5CYII=", + "revision": "2f5ce70ffe9a4ca5872d1b3b", + "revision_nr": 1, + "created": 1701459383522, + "modified": 1701459383522 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "d395519642c74b06b9701be6", + "revision_nr": 1, + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -52836,37 +78038,45 @@ "total_amount": 112.22, "history_id": 1679947244258, "id": 1312322778, - "date_created": "2023-03-27T16:00:45.050-04:00", - "date_last_updated": "2023-03-27T16:00:45.050-04:00", - "date_of_expiration": "2023-03-28T16:00:44.758-04:00", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 111,11 para a carteira iVip 0878.7790.2032.1434-10" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b4555177f4df449bb4509cb2", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { - "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680260155565/details/costs", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 111,11 para a carteira iVip 0878.7790.2032.1434-10", + "revision": "3054a8779a72485e9196d301", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383521, + "modified": 1701459383521 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680260155565/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1680260155565, @@ -52877,18 +78087,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1ec36b97ede34c719f120b21", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680260155565", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -52898,9 +78121,18 @@ "original_amount": 500004, "total_amount": 500004, "id": 1680260155565, - "date_created": "2023-03-31T10:55:55.565Z", - "date_last_updated": "2023-03-31T10:55:55.565Z", - "date_of_expiration": "2023-03-31T10:55:55.565Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -52909,27 +78141,16 @@ "history_id": 1680260155565, "description": "Compra de 500.004,00 IVIP por 91,56 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f016189fced14a26a70d9f24", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680391431083/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680391431083/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1680391431083, @@ -52940,18 +78161,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "33b3c1b723634e2191cc2c16", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680391431083", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -52961,9 +78195,18 @@ "original_amount": 267396, "total_amount": 267396, "id": 1680391431083, - "date_created": "2023-04-01T23:23:51.083Z", - "date_last_updated": "2023-04-01T23:23:51.083Z", - "date_of_expiration": "2023-04-01T23:23:51.083Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -52972,38 +78215,41 @@ "history_id": 1680391431083, "description": "Compra de 267.396,00 IVIP por 48,44 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "638b022ee66b4f2c8834e039", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } + }, + "revision": "154795b36ece4da28b5fe1d4", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -53012,9 +78258,18 @@ "total_amount": 99.99, "history_id": 1683913607250, "id": 1683913607250, - "date_created": "2023-05-12T17:46:47.250Z", - "date_last_updated": "2023-05-12T19:04:35.703Z", - "date_of_expiration": "2023-06-11T17:46:47.250Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -53022,30 +78277,29 @@ "date_approved": "2023-05-12T19:04:35.703Z", "money_release_date": "2023-05-12T19:04:35.703Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 99,99 para a carteira iVip 0878.7790.2032.1434-10" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e763a98cfb164d8690a6a744", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { - "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1684628885106/details/costs", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 99,99 para a carteira iVip 0878.7790.2032.1434-10", + "revision": "105ba098001b4019b4594c6d", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1684628885106/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684628885106, @@ -53056,18 +78310,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d993eae916064249a939ea99", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1684628885106", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -53077,9 +78344,18 @@ "original_amount": 487512, "total_amount": 487512, "id": 1684628885106, - "date_created": "2023-05-21T00:28:05.106Z", - "date_last_updated": "2023-05-21T00:28:05.106Z", - "date_of_expiration": "2023-05-21T00:28:05.106Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53088,41 +78364,42 @@ "history_id": 1684628885106, "description": "Compra de 487.512,00 IVIP por 99,99 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4e701008bb2a49158a1a4b8e", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-30T16:52:17.210Z" + ".val": "2023-08-30T16:52:17.210Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6f960ccf60aa415498e25855", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690822337211, "net_received_amount": 0, @@ -53132,18 +78409,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1690822337211" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "531f76e8f6744f89b463daaa", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1690822337211", + "revision": "20b06751671843ce9cb513a1", + "revision_nr": 1, + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -53152,51 +78452,72 @@ "total_amount": 20, "id": 1690822337211, "history_id": 1690822337211, - "date_created": "2023-07-31T16:52:17.211Z", - "date_last_updated": "2023-07-31T16:52:17.211Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 20,00 para a carteira iVip 0878.7790.2032.1434-10" + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "332c758ffb2e477794b2ff96", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { - "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-08-30T16:53:59.890Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 20,00 para a carteira iVip 0878.7790.2032.1434-10", + "revision": "7169bd5c91354a42821d62e0", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { - "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/details/costs", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-08-30T16:53:59.890Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } + }, + "revision": "20cc7becd3564f73b5e5d228", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690822439890, "net_received_amount": 0, @@ -53206,18 +78527,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1690822439890" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8e84589f78a24d4885aa37cf", + "revision_nr": 1, + "created": 1701459383522, + "modified": 1701459383522 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1690822439890", + "revision": "f91142c6b8514246bd8c4db1", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -53226,8 +78570,14 @@ "total_amount": 100, "id": 1690822439890, "history_id": 1690822439890, - "date_created": "2023-07-31T16:53:59.890Z", - "date_last_updated": "2023-07-31T21:00:12.866Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53238,29 +78588,32 @@ "money_release_date": "2023-07-31T21:00:12.866Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 100,00 para a carteira iVip 0878.7790.2032.1434-10" + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e010a7511c89438d840d7fdb", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { - "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1695782499707/details/costs", + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 100,00 para a carteira iVip 0878.7790.2032.1434-10", + "revision": "77a54700230342ae809bb68e", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1695782499707/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695782499707, "net_received_amount": 0, @@ -53270,18 +78623,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1695782499707" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3604986354f3434093b0cab0", + "revision_nr": 1, + "created": 1701459383522, + "modified": 1701459383522 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1695782499707/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1695782499707", + "revision": "ed2c199c36a645428811e590", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1695782499707", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -53291,9 +78667,18 @@ "total_amount": 115999, "id": "1695782499707", "history_id": "1695782499707", - "date_created": "2023-09-27T02:41:39.707Z", - "date_last_updated": "2023-09-27T02:41:39.707Z", - "date_of_expiration": "2023-09-27T02:41:39.707Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -53302,117 +78687,156 @@ "description": "Compra de 115.999,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "19c6d442cb9a4e8b9e00b738", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3424e6e19d504c22bc2f2193", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b0695f30149b4569abccb150", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e5b7cfea2ab644afb41cd5b0", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677405879103, "dateValidity": 1678984144008, "totalValue": 47.38, "currencyType": "USD", - "balancesModificacao": "2023-10-10T03:00:00.000Z" + "balancesModificacao": "2023-10-10T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b4ba21f7adf84ef4b04d17a7", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "16470.00000000", "symbol": "IVIP", - "value": 4.22 + "value": 4.22, + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "79066ddc69384e278767b6d4", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "293c0bb9ade342e48b69ceac", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } + }, + "revision": "11e7182994ef4b95aa0822d7", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -53421,9 +78845,18 @@ "total_amount": 500, "history_id": 1684164750598, "id": 1684164750598, - "date_created": "2023-05-15T15:32:30.598Z", - "date_last_updated": "2023-05-15T21:20:52.543Z", - "date_of_expiration": "2023-06-14T15:32:30.598Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -53431,41 +78864,54 @@ "date_approved": "2023-05-15T21:20:52.543Z", "money_release_date": "2023-05-15T21:20:52.543Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0887.5336.8634.7750-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c9af64f2593f4deca6be3f6b", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "cb1bf88762bd4b5aa1d0c12b", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } + }, + "revision": "1356ba20aef040febaa85578", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -53474,47 +78920,69 @@ "total_amount": 1800, "history_id": 1684165632184, "id": 1684165632184, - "date_created": "2023-05-15T15:47:12.184Z", - "date_last_updated": "2023-05-15T15:47:12.184Z", - "date_of_expiration": "2023-06-14T15:47:12.184Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.800,00 para a carteira iVip 0887.5336.8634.7750-00" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9349e88fda66451bbe3f071a", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.800,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "cc6875a80cb240839fe4d5e9", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } + }, + "revision": "ee307077f2744f4d87fde9a2", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -53523,9 +78991,18 @@ "total_amount": 150, "history_id": 1684452112873, "id": 1684452112873, - "date_created": "2023-05-18T23:21:52.873Z", - "date_last_updated": "2023-05-18T23:26:54.072Z", - "date_of_expiration": "2023-06-17T23:21:52.873Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -53533,41 +79010,54 @@ "date_approved": "2023-05-18T23:26:54.072Z", "money_release_date": "2023-05-18T23:26:54.072Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 150,00 para a carteira iVip 0887.5336.8634.7750-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "15da562abf9147658df3f422", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "9519e5ec79b3478cad36a066", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } + }, + "revision": "9ea78ddeee5847bcb8a8f9fe", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -53576,49 +79066,71 @@ "total_amount": 500, "history_id": 1684519388805, "id": 1684519388805, - "date_created": "2023-05-19T18:03:08.805Z", - "date_last_updated": "2023-05-20T04:17:58.179Z", - "date_of_expiration": "2023-06-18T18:03:08.805Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-05-20T04:17:58.179Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0887.5336.8634.7750-00" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "010b0aa5641647358bf774f1", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "cd6cdf2531b04ab38dad0398", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } + }, + "revision": "9b5cf1b4aef64adfb2579cbc", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -53627,49 +79139,71 @@ "total_amount": 950, "history_id": 1684538973500, "id": 1684538973500, - "date_created": "2023-05-19T23:29:33.500Z", - "date_last_updated": "2023-05-20T04:08:22.071Z", - "date_of_expiration": "2023-06-18T23:29:33.500Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-05-20T04:08:22.071Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2cba83f74bfc4a2bbc0e122a", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "59d7236fb9ff42468a56ef98", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } + }, + "revision": "3bc4f90f62e34cbf8142712c", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -53678,49 +79212,71 @@ "total_amount": 950, "history_id": 1684540522383, "id": 1684540522383, - "date_created": "2023-05-19T23:55:22.383Z", - "date_last_updated": "2023-05-20T21:38:33.877Z", - "date_of_expiration": "2023-06-18T23:55:22.383Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-05-20T21:38:33.877Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "62576196492b48a69e1d0eb4", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "b22c9c64573140e0838a5d84", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } + }, + "revision": "8f2d471aa8b0474c9a2b8113", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -53729,9 +79285,18 @@ "total_amount": 950, "history_id": 1684589302647, "id": 1684589302647, - "date_created": "2023-05-20T13:28:22.647Z", - "date_last_updated": "2023-05-20T14:54:06.380Z", - "date_of_expiration": "2023-06-19T13:28:22.647Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -53739,30 +79304,29 @@ "date_approved": "2023-05-20T14:54:06.380Z", "money_release_date": "2023-05-20T14:54:06.380Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9a61ac52cdd941aa819301f7", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624236329/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "1d0a600d45fa4e4c9adb9966", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624236329/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624236329, @@ -53773,18 +79337,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6590b20449474dbcaefe05dc", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624236329", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -53794,9 +79371,18 @@ "original_amount": 7793170, "total_amount": 7793170, "id": 1684624236329, - "date_created": "2023-05-20T23:10:36.329Z", - "date_last_updated": "2023-05-20T23:10:36.329Z", - "date_of_expiration": "2023-05-20T23:10:36.329Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53805,27 +79391,16 @@ "history_id": 1684624236329, "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624348122/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8fcf517d69714303a09c6cfa", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624348122/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624348122, @@ -53836,18 +79411,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5b16ca3455c14c26b61ed776", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624348122", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -53857,38 +79445,46 @@ "original_amount": 160, "total_amount": 160, "id": 1684624348122, - "date_created": "2023-05-20T23:12:28.122Z", - "date_last_updated": "2023-05-20T23:12:28.122Z", - "date_of_expiration": "2023-05-20T23:12:28.122Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684624348122, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684624348122 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b262cf21f8104bae8964c57a", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624387279/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624348122/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "04b026dbca6e48dab141025b", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624387279/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624387279, @@ -53899,18 +79495,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5214659b72d34d1aa53c89a1", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624387279", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -53920,9 +79529,18 @@ "original_amount": 779317, "total_amount": 779317, "id": 1684624387279, - "date_created": "2023-05-20T23:13:07.279Z", - "date_last_updated": "2023-05-20T23:13:07.279Z", - "date_of_expiration": "2023-05-20T23:13:07.279Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53931,27 +79549,16 @@ "history_id": 1684624387279, "description": "Compra de 779.317,00 IVIP por 160,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624827425/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4cc5ffac255340fabb05c515", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624827425/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624827425, @@ -53962,18 +79569,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b22e7cce6c8e4c498db201a6", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624827425", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -53983,38 +79603,46 @@ "original_amount": 20, "total_amount": 20, "id": 1684624827425, - "date_created": "2023-05-20T23:20:27.425Z", - "date_last_updated": "2023-05-20T23:20:27.425Z", - "date_of_expiration": "2023-05-20T23:20:27.425Z", + "date_created": { + "type": 6, + "value": 1701459383522 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383522 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383522 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684624827425, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684624827425 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d84e6617414f425cbe070e1c", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624867474/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624827425/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "6d820671a3e44fc186a59cc3", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383522, + "modified": 1701459383522 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624867474/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624867474, @@ -54025,18 +79653,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f72daccf03f94e828dd49891", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624867474", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -54046,9 +79687,18 @@ "original_amount": 97414, "total_amount": 97414, "id": 1684624867474, - "date_created": "2023-05-20T23:21:07.474Z", - "date_last_updated": "2023-05-20T23:21:07.474Z", - "date_of_expiration": "2023-05-20T23:21:07.474Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54057,27 +79707,16 @@ "history_id": 1684624867474, "description": "Compra de 97.414,00 IVIP por 20,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685361710845/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "45730974529645dba025fa10", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685361710845/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685361710845, @@ -54088,18 +79727,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "714dab2fa60d4ad794a83812", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685361710845", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -54109,38 +79761,46 @@ "original_amount": 40000000, "total_amount": 40000000, "id": 1685361710845, - "date_created": "2023-05-29T12:01:50.845Z", - "date_last_updated": "2023-05-29T12:01:50.845Z", - "date_of_expiration": "2023-05-29T12:01:50.845Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIPAY", - "history_id": 1685361710845, - "description": "Compra de 40.000.000,00 IVIPAY por 4.000.000,00 IVIP estabilizando US$ 164,00" + "history_id": 1685361710845 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3073a7d0c1f9460c826df137", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391792305/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685361710845/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 40.000.000,00 IVIPAY por 4.000.000,00 IVIP estabilizando US$ 164,00", + "revision": "a2b14ccda4f842f1a839d9fd", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391792305/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685391792305, @@ -54151,18 +79811,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e2ecb80a9bc944ef9a5f46be", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391792305", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -54172,38 +79845,35 @@ "original_amount": 400000, "total_amount": 400000, "id": 1685391792305, - "date_created": "2023-05-29T20:23:12.305Z", - "date_last_updated": "2023-05-29T20:23:12.305Z", - "date_of_expiration": "2023-05-29T20:23:12.305Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685391792305, - "description": "Compra de 400.000,00 IVIP por 4.000.000,00 IVIPAY" + "history_id": 1685391792305 }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391842660/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ba824c2ef2b7448cb84c4312", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391842660/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685391842660, @@ -54214,18 +79884,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "32184125d6f746c1b0f5ff9d", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391842660", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -54235,38 +79918,46 @@ "original_amount": 2000000, "total_amount": 2000000, "id": 1685391842660, - "date_created": "2023-05-29T20:24:02.660Z", - "date_last_updated": "2023-05-29T20:24:02.660Z", - "date_of_expiration": "2023-05-29T20:24:02.660Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685391842660, - "description": "Compra de 2.000.000,00 IVIP por 20.000.000,00 IVIPAY" + "history_id": 1685391842660 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "54e01d91ea304928a275b2ca", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391972284/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391842660/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 2.000.000,00 IVIP por 20.000.000,00 IVIPAY", + "revision": "91c5ef321dcd4dbbaa2de9a9", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391972284/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685391972284, @@ -54277,18 +79968,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b8225454d6b24a838f2c6034", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391972284", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -54298,38 +80002,35 @@ "original_amount": 160000, "total_amount": 160000, "id": 1685391972284, - "date_created": "2023-05-29T20:26:12.284Z", - "date_last_updated": "2023-05-29T20:26:12.284Z", - "date_of_expiration": "2023-05-29T20:26:12.284Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685391972284, - "description": "Compra de 160.000,00 IVIP por 1.600.000,00 IVIPAY" + "history_id": 1685391972284 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e939440d842a4ab4bdeb4db7", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392038537/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392038537/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685392038537, @@ -54340,18 +80041,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "db8c1ba0e8f1441c98e8db77", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392038537", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -54361,38 +80075,46 @@ "original_amount": 1400000, "total_amount": 1400000, "id": 1685392038537, - "date_created": "2023-05-29T20:27:18.537Z", - "date_last_updated": "2023-05-29T20:27:18.537Z", - "date_of_expiration": "2023-05-29T20:27:18.537Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685392038537, - "description": "Compra de 1.400.000,00 IVIP por 14.000.000,00 IVIPAY" + "history_id": 1685392038537 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "73f2b5297d6f4c3db4e3a738", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392165654/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392038537/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 1.400.000,00 IVIP por 14.000.000,00 IVIPAY", + "revision": "e8dfff9b19734a0cbc5a9242", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392165654/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685392165654, @@ -54403,18 +80125,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ff95387d29ac46a4916e70c0", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392165654", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -54424,9 +80159,18 @@ "original_amount": 10000, "total_amount": 10000, "id": 1685392165654, - "date_created": "2023-05-29T20:29:25.654Z", - "date_last_updated": "2023-05-29T20:29:25.654Z", - "date_of_expiration": "2023-05-29T20:29:25.654Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54435,27 +80179,16 @@ "history_id": 1685392165654, "description": "Compra de 10.000,00 IVIP por 100.000,00 IVIPAY" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ad9b551da703414786fa6279", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392465062/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392465062/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685392465062, @@ -54466,18 +80199,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aa099bf6248b4b2aa4e95500", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392465062", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -54487,9 +80233,18 @@ "original_amount": 30000, "total_amount": 30000, "id": 1685392465062, - "date_created": "2023-05-29T20:34:25.062Z", - "date_last_updated": "2023-05-29T20:34:25.062Z", - "date_of_expiration": "2023-05-29T20:34:25.062Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54498,38 +80253,41 @@ "history_id": 1685392465062, "description": "Compra de 30.000,00 IVIP por 300.000,00 IVIPAY" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "205d003cf5b94d62aee264c5", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } + }, + "revision": "e97025709f744629994ce8de", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -54538,36 +80296,44 @@ "total_amount": 4669901, "history_id": 1685396749543, "id": 1685396749543, - "date_created": "2023-05-29T21:45:49.543Z", - "date_last_updated": "2023-05-29T21:45:49.543Z", - "date_of_expiration": "2023-05-29T21:45:49.543Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 4.669.901,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d0753a85805446cea72959e4", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685409104532/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 4.669.901,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", + "revision": "25001dc445164ac7a33531b8", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685409104532/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685409104532, @@ -54578,18 +80344,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e0e75693478346f482d3a0c9", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685409104532", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -54599,38 +80378,46 @@ "original_amount": 86699010, "total_amount": 86699010, "id": 1685409104532, - "date_created": "2023-05-30T01:11:44.532Z", - "date_last_updated": "2023-05-30T01:11:44.532Z", - "date_of_expiration": "2023-05-30T01:11:44.532Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIPAY", - "history_id": 1685409104532, - "description": "Compra de 86.699.010,00 IVIPAY por 8.669.901,00 IVIP estabilizando US$ 790,81" + "history_id": 1685409104532 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "88e713aa76d44712813e8475", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494858663/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685409104532/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 86.699.010,00 IVIPAY por 8.669.901,00 IVIP estabilizando US$ 790,81", + "revision": "86300d858f0b4f9795c38126", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494858663/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685494858663, @@ -54641,18 +80428,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b2aca6143cd74cca8136f2a4", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494858663", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -54662,38 +80462,46 @@ "original_amount": 1544789, "total_amount": 1544789, "id": 1685494858663, - "date_created": "2023-05-31T01:00:58.663Z", - "date_last_updated": "2023-05-31T01:00:58.663Z", - "date_of_expiration": "2023-05-31T01:00:58.663Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685494858663, - "description": "Compra de 1.544.789,00 IVIP por 15.447.894,00 IVIPAY" + "history_id": 1685494858663 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "804c8ac5829c48ca9e985d63", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494914975/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494858663/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 1.544.789,00 IVIP por 15.447.894,00 IVIPAY", + "revision": "969eed531b7246d8b9d99bf5", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494914975/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685494914975, @@ -54704,18 +80512,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "409447265ccf45db8cc32453", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494914975", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -54725,38 +80546,46 @@ "original_amount": 13900000, "total_amount": 13900000, "id": 1685494914975, - "date_created": "2023-05-31T01:01:54.975Z", - "date_last_updated": "2023-05-31T01:01:54.975Z", - "date_of_expiration": "2023-05-31T01:01:54.975Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685494914975, - "description": "Compra de 13.900.000,00 IVIP por 139.000.000,00 IVIPAY" + "history_id": 1685494914975 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6f3c7d69cca74afaa77b6b0b", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495030715/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494914975/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 13.900.000,00 IVIP por 139.000.000,00 IVIPAY", + "revision": "a6f08c58ed7045f2a0333db5", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495030715/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685495030715, @@ -54767,18 +80596,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5797951724cf433f8226dd98", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495030715", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -54788,9 +80630,18 @@ "original_amount": 3105, "total_amount": 3105, "id": 1685495030715, - "date_created": "2023-05-31T01:03:50.715Z", - "date_last_updated": "2023-05-31T01:03:50.715Z", - "date_of_expiration": "2023-05-31T01:03:50.715Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54799,38 +80650,41 @@ "history_id": 1685495030715, "description": "Compra de 3.105,00 IVIP por 31.054,00 IVIPAY" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "12f9f4a73ac246919b8caa8c", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } + }, + "revision": "338a4826fe694143898ed0fe", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -54839,38 +80693,46 @@ "total_amount": 15447894, "history_id": 1685495440046, "id": 1685495440046, - "date_created": "2023-05-31T01:10:40.046Z", - "date_last_updated": "2023-06-02T18:03:07.171Z", - "date_of_expiration": "2023-05-31T01:10:40.046Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", "money_release_date": "2023-06-02T18:03:07.171Z", - "money_release_status": "rejected", - "description": "Saque de 15.447.894,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "11657928d1594b32a184fb29", "revision_nr": 1, - "created": 1700748395491, - "modified": 1700748395491 + "created": 1701459383523, + "modified": 1701459383523 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685496474860/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 15.447.894,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", + "revision": "0ce59f5d8f5543289e497d79", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685496474860/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685496474860, @@ -54881,18 +80743,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "43ea3ac618b34e3aa9af3063", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685496474860", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -54902,38 +80777,46 @@ "original_amount": 154478940, "total_amount": 154478940, "id": 1685496474860, - "date_created": "2023-05-31T01:27:54.860Z", - "date_last_updated": "2023-05-31T01:27:54.860Z", - "date_of_expiration": "2023-05-31T01:27:54.860Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIPAY", - "history_id": 1685496474860, - "description": "Compra de 154.478.940,00 IVIPAY por 15.447.894,00 IVIP estabilizando US$ 957,12" + "history_id": 1685496474860 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8250de5cc7534fcbb368b31d", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685572512459/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685496474860/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 154.478.940,00 IVIPAY por 15.447.894,00 IVIP estabilizando US$ 957,12", + "revision": "835de30cf4e5476c8867bfa5", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685572512459/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685572512459, @@ -54944,18 +80827,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2adbea18f6c54091b87e72e3", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685572512459", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -54965,49 +80861,71 @@ "original_amount": 14660794, "total_amount": 14660794, "id": 1685572512459, - "date_created": "2023-05-31T22:35:12.459Z", - "date_last_updated": "2023-05-31T22:35:12.459Z", - "date_of_expiration": "2023-05-31T22:35:12.459Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685572512459, - "description": "Compra de 14.660.794,00 IVIP por 146.607.949,00 IVIPAY" + "history_id": 1685572512459 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7dff167486f24c00963dd496", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685572512459/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 14.660.794,00 IVIP por 146.607.949,00 IVIPAY", + "revision": "4af16517f2ec45d7b0f6ab21", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } + }, + "revision": "ba46f2dc7f7649919075f6a7", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -55016,49 +80934,71 @@ "total_amount": 10637617, "history_id": 1685574712795, "id": 1685574712795, - "date_created": "2023-05-31T23:11:52.795Z", - "date_last_updated": "2023-06-02T17:55:39.697Z", - "date_of_expiration": "2023-05-31T23:11:52.795Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", "money_release_date": "2023-06-02T17:55:39.697Z", - "money_release_status": "rejected", - "description": "Saque de 10.637.617,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7e809ce506f84eb39d1bd7d1", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 10.637.617,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", + "revision": "aae58c006216466999346eed", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } + }, + "revision": "23f4af9cfce348b9b8b54fce", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -55067,49 +81007,71 @@ "total_amount": 14660794, "history_id": 1685587807706, "id": 1685587807706, - "date_created": "2023-06-01T02:50:07.706Z", - "date_last_updated": "2023-06-02T17:54:02.582Z", - "date_of_expiration": "2023-06-01T02:50:07.706Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", "money_release_date": "2023-06-02T17:54:02.582Z", - "money_release_status": "rejected", - "description": "Saque de 14.660.794,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "44b231fa785044b1909cb486", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 14.660.794,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", + "revision": "bc271d8f23784093a389f043", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } + }, + "revision": "21b1b605bf454fc5ab361eb3", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -55118,9 +81080,18 @@ "total_amount": 14660794, "history_id": 1685623890790, "id": 1685623890790, - "date_created": "2023-06-01T12:51:30.790Z", - "date_last_updated": "2023-06-01T19:33:18.019Z", - "date_of_expiration": "2023-06-01T12:51:30.790Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -55128,30 +81099,29 @@ "date_approved": "2023-06-01T19:33:18.019Z", "money_release_date": "2023-06-01T19:33:18.019Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 14.660.794,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "459178b186444193b4536cff", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685625562355/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 14.660.794,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", + "revision": "c1be2ff84729413382b2967b", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685625562355/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685625562355, @@ -55162,18 +81132,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7ca4aad642414cd5bb1226bf", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685625562355", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -55183,38 +81166,46 @@ "original_amount": 146607940, "total_amount": 146607940, "id": 1685625562355, - "date_created": "2023-06-01T13:19:22.355Z", - "date_last_updated": "2023-06-01T13:19:22.355Z", - "date_of_expiration": "2023-06-01T13:19:22.355Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "status_detail": "cc_rejected_insufficient_amount", "currency_id": "IVIPAY", - "history_id": 1685625562355, - "description": "Compra de 146.607.940,00 IVIPAY por 14.660.794,00 IVIP estabilizando US$ 749,86" + "history_id": 1685625562355 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7a416cbaa5e949778ca1f451", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685639526258/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685625562355/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 146.607.940,00 IVIPAY por 14.660.794,00 IVIP estabilizando US$ 749,86", + "revision": "21de1dade6384192aeab3d15", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685639526258/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685639526258, @@ -55225,18 +81216,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d05f1abaf1374a2db376436c", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685639526258", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -55246,9 +81250,18 @@ "original_amount": 1490, "total_amount": 1490, "id": 1685639526258, - "date_created": "2023-06-01T17:12:06.258Z", - "date_last_updated": "2023-06-01T17:12:06.258Z", - "date_of_expiration": "2023-06-01T17:12:06.258Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -55257,38 +81270,41 @@ "history_id": 1685639526258, "description": "Compra de 1.490,00 IVIP por 14.900,00 IVIPAY" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f659d236419541afb873b138", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + } + }, + "revision": "58900772eab64906abe8fd3b", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -55297,9 +81313,18 @@ "total_amount": 1490, "history_id": 1685647933824, "id": 1685647933824, - "date_created": "2023-06-01T19:32:13.824Z", - "date_last_updated": "2023-06-01T19:34:53.267Z", - "date_of_expiration": "2023-06-01T19:32:13.824Z", + "date_created": { + "type": 6, + "value": 1701459383523 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383523 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383523 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -55307,30 +81332,29 @@ "date_approved": "2023-06-01T19:34:53.267Z", "money_release_date": "2023-06-01T19:34:53.267Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 1.490,00 IVIP para a carteira 0x46450913428e27edfc5B4055875c08eC6a22cbfF" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aa565f712a1642ce96cc53ca", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685653675417/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 1.490,00 IVIP para a carteira 0x46450913428e27edfc5B4055875c08eC6a22cbfF", + "revision": "bf6946a05c844fb3a8fcb591", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685653675417/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685653675417, @@ -55341,18 +81365,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7ffb74e268394047bdc306a0", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685653675417", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -55362,49 +81399,71 @@ "original_amount": 13603163, "total_amount": 13603163, "id": 1685653675417, - "date_created": "2023-06-01T21:07:55.417Z", - "date_last_updated": "2023-06-01T21:07:55.417Z", - "date_of_expiration": "2023-06-01T21:07:55.417Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "status_detail": "cc_rejected_insufficient_amount", "currency_id": "IVIP", - "history_id": 1685653675417, - "description": "Compra de 13.603.163,00 IVIP por 136.031.630,00 IVIPAY" + "history_id": 1685653675417 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fab6095e74064bbcbdae0f20", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685653675417/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 13.603.163,00 IVIP por 136.031.630,00 IVIPAY", + "revision": "2c5de513b0c848928e9e5050", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383523, + "modified": 1701459383523 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } + }, + "revision": "f5dc98ed32d74c24b1083802", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -55413,47 +81472,69 @@ "total_amount": 3463, "history_id": 1688596994749, "id": 1688596994749, - "date_created": "2023-07-05T22:43:14.749Z", - "date_last_updated": "2023-07-05T22:43:14.749Z", - "date_of_expiration": "2023-08-04T22:43:14.749Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 3.463,00 para a carteira iVip 0887.5336.8634.7750-00" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3342998a7d2b40ea855034a1", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 3.463,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "d28f4417dde24d6685c50e93", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } + }, + "revision": "517f8bba79a34b9d8a367453", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -55462,50 +81543,70 @@ "total_amount": 1000, "history_id": 1689384333712, "id": 1689384333712, - "date_created": "2023-07-15T01:25:33.712Z", - "date_last_updated": "2023-07-15T01:25:33.712Z", - "date_of_expiration": "2023-08-14T01:25:33.712Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0887.5336.8634.7750-00" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d91300e2bc2b47b8ae011b62", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-08-20T15:58:57.377Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "5cb0823f8aa34a17973580ee", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-08-20T15:58:57.377Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } + }, + "revision": "f1036be7b502489fa2a9d6ef", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1689955137377, "net_received_amount": 0, @@ -55515,18 +81616,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1689955137377" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "456541b41e7a4a448a50270e", + "revision_nr": 1, + "created": 1701459383524, + "modified": 1701459383524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1689955137377", + "revision": "e85fb07cc0334e81866f688c", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -55535,51 +81659,72 @@ "total_amount": 1671, "id": 1689955137377, "history_id": 1689955137377, - "date_created": "2023-07-21T15:58:57.377Z", - "date_last_updated": "2023-07-21T15:58:57.377Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor R$ 1.671,00 para a carteira iVip 0887.5336.8634.7750-00" + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "51dfc894d55b4999b31b6a4f", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-08-30T21:05:23.298Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.671,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "ab485bac2bca4cd083764047", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-08-30T21:05:23.298Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } + }, + "revision": "4e0100c4bd1d4799b4eaf3f3", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690837523298, "net_received_amount": 0, @@ -55589,18 +81734,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1690837523298" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0289e126ebd346d8b379e675", + "revision_nr": 1, + "created": 1701459383524, + "modified": 1701459383524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1690837523298", + "revision": "1e29a7f18b9744138a71db38", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -55609,8 +81777,14 @@ "total_amount": 20, "id": 1690837523298, "history_id": 1690837523298, - "date_created": "2023-07-31T21:05:23.298Z", - "date_last_updated": "2023-07-31T22:01:04.751Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -55621,29 +81795,32 @@ "money_release_date": "2023-07-31T22:01:04.751Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 20,00 para a carteira iVip 0887.5336.8634.7750-00" + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ec243b2a70a84cb9a6da23a1", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { - "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690844181474/details/costs", + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 20,00 para a carteira iVip 0887.5336.8634.7750-00", + "revision": "9cc1187509384614aeb822c7", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690844181474/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690844181474, "net_received_amount": 0, @@ -55653,18 +81830,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1690844181474" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0e900ddb0a18427893cef8c4", + "revision_nr": 1, + "created": 1701459383524, + "modified": 1701459383524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690844181474/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1690844181474", + "revision": "cd4f3575763e40bc91f88de3", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690844181474", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -55673,9 +81873,18 @@ "total_amount": 17960, "id": 1690844181474, "history_id": 1690844181474, - "date_created": "2023-07-31T22:56:21.474Z", - "date_last_updated": "2023-07-31T22:56:21.474Z", - "date_of_expiration": "2023-07-31T22:56:21.474Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -55684,118 +81893,157 @@ "description": "Compra de 17.960,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e0801801c9244ac287cf1dd5", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d3a48fb3d43f4e00b6911adc", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cc36f5b62a00400692a8af44", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-07-08T23:25:44.635Z" + "analysisRequested": "2023-07-08T23:25:44.635Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c6b77d4cc34c442c81247512", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684160584822, "dateValidity": 1684160584822, "totalValue": 8.87, "currencyType": "USD", - "balancesModificacao": "2023-09-29T03:00:00.000Z" + "balancesModificacao": "2023-09-29T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "61a90268aa4e43a695a42afe", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "465751.00000000", "symbol": "IVIP", - "value": 507.45 + "value": 507.45, + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a8b896adbe9641418e9fe8f4", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ffa8e268a0b0473c97e1311c", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } + }, + "revision": "b7e1424d276245949eab557d", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -55804,9 +82052,18 @@ "total_amount": 200, "history_id": 1689132397301, "id": 1689132397301, - "date_created": "2023-07-12T03:26:37.301Z", - "date_last_updated": "2023-07-12T09:22:05.926Z", - "date_of_expiration": "2023-08-11T03:26:37.301Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -55814,30 +82071,29 @@ "date_approved": "2023-07-12T09:22:05.926Z", "money_release_date": "2023-07-12T09:22:05.926Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 0918.7836.9033.5585-10" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "734ae8b29d2a40d3bf3b687d", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { - "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689197549929/details/costs", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0918.7836.9033.5585-10", + "revision": "317f6c82fac94e92b548f035", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689197549929/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689197549929, @@ -55848,18 +82104,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "68b110edef8b4ef6a72b1a1e", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689197549929", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -55869,9 +82138,18 @@ "original_amount": 82125, "total_amount": 82125, "id": 1689197549929, - "date_created": "2023-07-12T21:32:29.929Z", - "date_last_updated": "2023-07-12T21:32:29.929Z", - "date_of_expiration": "2023-07-12T21:32:29.929Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -55880,41 +82158,42 @@ "history_id": 1689197549929, "description": "Compra de 82.125,00 IVIP por 200,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1e15121087b348b78eea0ce4", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-28T11:29:10.248Z" + ".val": "2023-10-28T11:29:10.248Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "50398ef9c301433b9e33d617", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695900550248, "net_received_amount": 0, @@ -55924,18 +82203,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900550248" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "226f609e0b3243868a75f6e7", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900550248", + "revision": "2b2e5bd813114df6ac950432", + "revision_nr": 1, + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -55945,51 +82247,72 @@ "total_amount": 458, "id": "1695900550248", "history_id": "1695900550248", - "date_created": "2023-09-28T11:29:10.248Z", - "date_last_updated": "2023-09-28T11:29:10.248Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10" + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d5231a673a8846c5bafcb295", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { - "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-28T11:29:10.761Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", + "revision": "071c3c00f5c44ee5ae785120", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { - "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/details/costs", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-28T11:29:10.761Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } + }, + "revision": "fdd5e618ad1246ddbef1c32e", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695900550761, "net_received_amount": 0, @@ -55999,18 +82322,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900550761" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4d2cd12efd4e4fe6a17b7a01", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900550761", + "revision": "a2e96376cd7641df84c053b2", + "revision_nr": 1, + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -56020,51 +82366,72 @@ "total_amount": 458, "id": "1695900550761", "history_id": "1695900550761", - "date_created": "2023-09-28T11:29:10.761Z", - "date_last_updated": "2023-09-28T11:29:10.761Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10" + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6a1b626610f6460bb6bbe459", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { - "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-28T11:29:25.784Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", + "revision": "c734a22f3bc24414a0e4fbc0", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { - "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/details/costs", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-28T11:29:25.784Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } + }, + "revision": "0f97babf38db49f09d9cd1bf", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695900565784, "net_received_amount": 0, @@ -56074,18 +82441,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900565784" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "309e45d0b0454d16b3e9e36a", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900565784", + "revision": "21ade288bff44d048f089467", + "revision_nr": 1, + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -56095,8 +82485,14 @@ "total_amount": 458, "id": "1695900565784", "history_id": "1695900565784", - "date_created": "2023-09-28T11:29:25.784Z", - "date_last_updated": "2023-09-28T11:46:53.220Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -56107,29 +82503,32 @@ "money_release_date": "2023-09-28T11:46:53.220Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10" + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "31dd4ad6134f479bb93d6071", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { - "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695903994262/details/costs", + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", + "revision": "f7cb1b4ddb0a474997f918e3", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695903994262/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695903994262, "net_received_amount": 0, @@ -56139,18 +82538,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695903994262" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "41387d4189b74bfd88ad9369", + "revision_nr": 1, + "created": 1701459383524, + "modified": 1701459383524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695903994262/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695903994262", + "revision": "6eb2d498115b42e78c020121", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695903994262", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -56160,9 +82582,18 @@ "total_amount": 383626, "id": "1695903994262", "history_id": "1695903994262", - "date_created": "2023-09-28T12:26:34.262Z", - "date_last_updated": "2023-09-28T12:26:34.262Z", - "date_of_expiration": "2023-09-28T12:26:34.262Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -56171,102 +82602,129 @@ "description": "Compra de 383.626,00 IVIP por 458,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "869907b4298648ec9c06e515", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f4f772b02d72490f81d28406", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "64a42a64067e411f8b7fa15f", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1b3cd8366b3e433a91571033", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1689132373088, "dateValidity": 1689132373088, "totalValue": 41.04, "currencyType": "USD", - "balancesModificacao": "2023-10-01T03:00:00.000Z" + "balancesModificacao": "2023-10-01T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7275bbe5a8b54d9582624034", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "807000501d734a96a910f6fc", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } + }, + "revision": "641b484e7b7c463196720d02", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -56275,87 +82733,121 @@ "total_amount": 50, "history_id": 1678089239675, "id": 1678089239675, - "date_created": "2023-03-06T07:53:59.675Z", - "date_last_updated": "2023-03-13T14:08:07.775Z", - "date_of_expiration": "2023-04-05T07:53:59.675Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-03-13T14:08:07.775Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0923.9225.3957.1184-80" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a7e2902c053e425c934ff94a", + "revision_nr": 1, + "created": 1701459383524, + "modified": 1701459383524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0923.9225.3957.1184-80", + "revision": "003f233e53a8436a95a75128", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "03e41f5ae98048e1aef32757", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677466864789, "dateValidity": 1678103589466, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9184f91b18594643aa9567a0", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9751b704f5e44c388e7e17f3", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } + }, + "revision": "d9e728bd05384b75a80df8b9", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -56364,47 +82856,69 @@ "total_amount": 1500, "history_id": 1689457461269, "id": 1689457461269, - "date_created": "2023-07-15T21:44:21.269Z", - "date_last_updated": "2023-07-15T21:44:21.269Z", - "date_of_expiration": "2023-08-14T21:44:21.269Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0956.3322.9427.8818-90" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "28d3ebdeae7e42f3b52079ee", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { - "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479/details/costs", + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0956.3322.9427.8818-90", + "revision": "55dbf13d807c4c90a29b517b", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } + }, + "revision": "7b8f74212b374e0d828c45f9", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -56413,110 +82927,156 @@ "total_amount": 1500, "history_id": 1689629737479, "id": 1689629737479, - "date_created": "2023-07-17T21:35:37.479Z", - "date_last_updated": "2023-07-17T21:35:37.479Z", - "date_of_expiration": "2023-08-16T21:35:37.479Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0956.3322.9427.8818-90" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "00aff5e4d21e4e2da8f445d8", + "revision_nr": 1, + "created": 1701459383524, + "modified": 1701459383524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0956.3322.9427.8818-90", + "revision": "c5140fd25de24314ba359e0c", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3778ca2bea2344f9860eb821", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9f65375a0b164184ba243d0b", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "58ff2d8d44744a29b30af863", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1689457427075, "dateValidity": 1689457427075, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ed95231002774644aa2f403c", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1fe7782b0a0e4f3dad2ecf7f", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } + }, + "revision": "471d3ea04e75407ba4f25e75", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -56525,177 +83085,259 @@ "total_amount": 100, "history_id": 1684543373520, "id": 1684543373520, - "date_created": "2023-05-20T00:42:53.520Z", - "date_last_updated": "2023-05-20T00:42:53.520Z", - "date_of_expiration": "2023-06-19T00:42:53.520Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0961.2401.6860.3556-50" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dc7c7f32e24a426f8a12ca5c", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0961.2401.6860.3556-50", + "revision": "e9e17e53d09140e7a17634a0", + "revision_nr": 1, + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2438508679be4c7cbbbdb96b", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0d58779dd4f64c67b86627bb", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a9560c69e9da43648588adb9", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684187165100, "dateValidity": 1684187165100, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "96722d41156d414b9ea7136f", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/096261179492313170/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b2d963a6641a427882e1ccc2", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/096261179492313170/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7daeb9907170488d8f4c084d", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/096261179492313170", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1696117965905, "dateValidity": 1696117965942, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ba22ac257e16404691acb1e9", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "10.00000000", "symbol": "BRL", - "value": 1.92 + "value": 1.92, + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ed1e114a452046ab892c3da2", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "480000.00000000", "symbol": "IVIP", - "value": 62.92 + "value": 62.92, + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b1b04ae87d2b4ecdaaa4f2f4", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ffa663b930064bc59a06ac74", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } + }, + "revision": "728f6568f1584709a8411dfc", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -56704,9 +83346,18 @@ "total_amount": 3000, "history_id": 1680564390483, "id": 1680564390483, - "date_created": "2023-04-03T23:26:30.483Z", - "date_last_updated": "2023-04-04T01:09:40.299Z", - "date_of_expiration": "2023-05-03T23:26:30.483Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -56714,41 +83365,54 @@ "date_approved": "2023-04-04T01:09:40.299Z", "money_release_date": "2023-04-04T01:09:40.299Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0983.0244.9130.1420-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0d0155d996274f11a4c2f49d", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0983.0244.9130.1420-80", + "revision": "dc1f636085134192aff6dc5a", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } + }, + "revision": "c48d11f2f7cb4c56b15bf9d5", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -56757,9 +83421,18 @@ "total_amount": 2000, "history_id": 1680570737667, "id": 1680570737667, - "date_created": "2023-04-04T01:12:17.667Z", - "date_last_updated": "2023-04-04T01:12:57.315Z", - "date_of_expiration": "2023-05-04T01:12:17.667Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -56767,45 +83440,78 @@ "date_approved": "2023-04-04T01:12:57.315Z", "money_release_date": "2023-04-04T01:12:57.315Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3aee07c07a9c47fe98dc9012", + "revision_nr": 1, + "created": 1701459383524, + "modified": 1701459383524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80", + "revision": "996c676400cc4c8fa47742dc", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000 + "amount": 2000, + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dcfb4ca32af040f88a8c1c3c", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details", "content": { - "type": 1, + "type": "OBJECT", + "value": {}, + "revision": "9c9efce72a9849969258e278", + "revision_nr": 1, + "created": 1701459383524, + "modified": 1701459383524 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details/costs", + "content": { + "type": "ARRAY", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c0b5ac37fa714335b489a531", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -56814,37 +83520,45 @@ "total_amount": 12000, "history_id": 1680571158806, "id": 1680571158806, - "date_created": "2023-04-04T01:19:18.806Z", - "date_last_updated": "2023-04-04T01:19:18.806Z", - "date_of_expiration": "2023-05-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1701459383524 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383524 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383524 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "94a427b0da264a1b993b40f5", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1683548182568/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "3ee3777908824ae3b9f22631", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1683548182568/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -56857,18 +83571,31 @@ "overpaid_amount": 0, "installment_amount": 1200, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5da5e6dca6964fb488335928", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1683548182568", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -56879,38 +83606,46 @@ "total_amount": 1200, "id": 1683548182568, "contract_id": "1680571158806", - "date_created": "2023-05-08T12:16:22.568Z", - "date_last_updated": "2023-05-08T12:16:22.568Z", - "date_of_expiration": "2023-05-08T12:16:22.568Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1683548182568, - "description": "Pagamento de fatura 2 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806" + "history_id": 1683548182568 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e230cc2e05b5411083fb5fdd", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367503606/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1683548182568/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", + "revision": "c52030b55fcf4b55a2595cb9", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383524, + "modified": 1701459383524 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367503606/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -56923,18 +83658,31 @@ "overpaid_amount": 0, "installment_amount": 1200, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7796d8312fbb4895933052ef", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367503606", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -56945,53 +83693,95 @@ "total_amount": 1200, "id": 1684367503606, "contract_id": "1680571158806", - "date_created": "2023-05-17T23:51:43.606Z", - "date_last_updated": "2023-05-17T23:51:43.606Z", - "date_of_expiration": "2023-05-17T23:51:43.606Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1684367503606, - "description": "Pagamento de fatura 1 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806" + "history_id": 1684367503606 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2a4f4312f3224935806c2d98", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383525, + "modified": 1701459383525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367503606/description", + "content": { + "type": "STRING", + "value": "Pagamento de fatura 1 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", + "revision": "409d24c07f9e405988d47296", + "revision_nr": 1, + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320 + "amount": 320, + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "31e4548151804692b74322f7", "revision_nr": 1, - "created": 1700748395492, - "modified": 1700748395492 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1d9270f7648e481dbe216248", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "9cb51aa73c9b4893afa68106", + "revision_nr": 1, + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -57000,37 +83790,45 @@ "total_amount": 2320, "history_id": 1684367721554, "id": 1684367721554, - "date_created": "2023-05-17T23:55:21.554Z", - "date_last_updated": "2023-05-17T23:55:21.554Z", - "date_of_expiration": "2023-06-16T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d4117abe75ad4478b6b3976c", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684415962143/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "3d3ff6ae44c24cb7ae83879b", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684415962143/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -57043,18 +83841,31 @@ "overpaid_amount": 0, "installment_amount": 290, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8ad3849942554a6a94d07edc", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684415962143", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -57065,49 +83876,71 @@ "total_amount": 290, "id": 1684415962143, "contract_id": "1684367721554", - "date_created": "2023-05-18T13:19:22.143Z", - "date_last_updated": "2023-05-18T13:19:22.143Z", - "date_of_expiration": "2023-05-18T13:19:22.143Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1684415962143, - "description": "Pagamento de fatura 1 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554" + "history_id": 1684415962143 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9e41934437084e10ae79ad36", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684415962143/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", + "revision": "520fc21317504dd78ea4a3a8", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } + }, + "revision": "b10ca97307864889b5ec7929", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -57116,9 +83949,18 @@ "total_amount": 1600, "history_id": 1684544477879, "id": 1684544477879, - "date_created": "2023-05-20T01:01:17.879Z", - "date_last_updated": "2023-05-20T01:10:36.886Z", - "date_of_expiration": "2023-06-19T01:01:17.879Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -57126,30 +83968,29 @@ "date_approved": "2023-05-20T01:10:36.886Z", "money_release_date": "2023-05-20T01:10:36.886Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.600,00 para a carteira iVip 0983.0244.9130.1420-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d4dd74352e4d4f779ccfbf6f", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684624390329/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 0983.0244.9130.1420-80", + "revision": "7df55f8ef5a140188524b693", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684624390329/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624390329, @@ -57160,18 +84001,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a6bf7c8da87a4ce1873a7f6b", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684624390329", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -57181,9 +84035,18 @@ "original_amount": 77493341, "total_amount": 77493341, "id": 1684624390329, - "date_created": "2023-05-20T23:13:10.329Z", - "date_last_updated": "2023-05-20T23:13:10.329Z", - "date_of_expiration": "2023-05-20T23:13:10.329Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -57192,42 +84055,65 @@ "history_id": 1684624390329, "description": "Compra de 77.493.341,00 IVIP por 15.910,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "85590088514542c08f538e28", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 5 + "amount": 5, + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "deb1d93a420f424f9c0c5fec", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details", "content": { - "type": 1, + "type": "OBJECT", + "value": {}, + "revision": "323c22a99a7c4417863fa8e9", + "revision_nr": 1, + "created": 1701459383525, + "modified": 1701459383525 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details/costs", + "content": { + "type": "ARRAY", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6593caebfdb942c7b9ae1972", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -57236,37 +84122,45 @@ "total_amount": 255, "history_id": 1684661775049, "id": 1684661775049, - "date_created": "2023-05-21T09:36:15.049Z", - "date_last_updated": "2023-05-21T09:36:15.049Z", - "date_of_expiration": "2023-06-20T09:36:15.049Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 250,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 255,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "61584bd0d2ad4d92ade38fd8", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661800868/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 255,00", + "revision": "972ba6ea309d4b85961a54fb", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661800868/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684661800868, @@ -57277,18 +84171,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bcb3d536c16e41e59c76a351", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661800868", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -57298,9 +84205,18 @@ "original_amount": 1218292, "total_amount": 1218292, "id": 1684661800868, - "date_created": "2023-05-21T09:36:40.868Z", - "date_last_updated": "2023-05-21T09:36:40.868Z", - "date_of_expiration": "2023-05-21T09:36:40.868Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -57309,38 +84225,41 @@ "history_id": 1684661800868, "description": "Compra de 1.218.292,00 IVIP por 250,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9e03ddc29bab4f8694e4a7d8", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } + }, + "revision": "e2ddaf72f3dc4b4683c39cf1", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -57349,9 +84268,18 @@ "total_amount": 255, "history_id": 1685452383443, "id": 1685452383443, - "date_created": "2023-05-30T13:13:03.443Z", - "date_last_updated": "2023-05-30T22:32:00.714Z", - "date_of_expiration": "2023-06-29T13:13:03.443Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -57359,30 +84287,29 @@ "date_approved": "2023-05-30T22:32:00.714Z", "money_release_date": "2023-05-30T22:32:00.714Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 255,00 para a carteira iVip 0983.0244.9130.1420-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5825972325a649ff8d05446c", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685486477860/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 255,00 para a carteira iVip 0983.0244.9130.1420-80", + "revision": "b759f26fa59d442fb034f4b1", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685486477860/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -57395,18 +84322,31 @@ "overpaid_amount": 0, "installment_amount": 255, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "40b557ef598d4fa4b205d77f", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685486477860", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -57417,38 +84357,46 @@ "total_amount": 255, "id": 1685486477860, "contract_id": "1684661775049", - "date_created": "2023-05-30T22:41:17.860Z", - "date_last_updated": "2023-05-30T22:41:17.860Z", - "date_of_expiration": "2023-05-30T22:41:17.860Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1685486477860, - "description": "Pagamento de fatura 1 de 1 no valor de 255,00 BRL referente ao contrato 1684661775049" + "history_id": 1685486477860 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ddbd9c284e2c42c29e5f069f", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667437011/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685486477860/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 1 no valor de 255,00 BRL referente ao contrato 1684661775049", + "revision": "c28b2c8d2273418695809bff", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667437011/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685667437011, @@ -57459,18 +84407,31 @@ "overpaid_amount": 0, "installment_amount": 8000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bccf266259ff4a0786eb4f8d", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667437011", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -57479,38 +84440,46 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667437011, - "date_created": "2023-06-02T00:57:17.011Z", - "date_last_updated": "2023-06-02T00:57:17.011Z", - "date_of_expiration": "2025-06-02T00:57:17.011Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685667437011, - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025" + "history_id": 1685667437011 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "785e23930faa44368a6a9a38", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667452001/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667437011/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", + "revision": "5a31a1c45abb4599b94e827b", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667452001/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685667452001, @@ -57521,18 +84490,31 @@ "overpaid_amount": 0, "installment_amount": 8000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "01ff16642b5840539a9f43b8", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667452001", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -57541,38 +84523,46 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667452001, - "date_created": "2023-06-02T00:57:32.001Z", - "date_last_updated": "2023-06-02T00:57:32.001Z", - "date_of_expiration": "2024-06-02T00:57:32.001Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685667452001, - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024" + "history_id": 1685667452001 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ed57efc732ef47a4845f2ac3", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667466065/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667452001/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", + "revision": "3742efce2e334ddc94191de0", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667466065/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685667466065, @@ -57583,18 +84573,31 @@ "overpaid_amount": 0, "installment_amount": 8000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a231af704b4a4ecfb71e34db", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667466065", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -57603,38 +84606,46 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667466065, - "date_created": "2023-06-02T00:57:46.065Z", - "date_last_updated": "2023-06-02T00:57:46.065Z", - "date_of_expiration": "2023-12-02T00:57:46.065Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685667466065, - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023" + "history_id": 1685667466065 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "558e68786cb64feca4d08360", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667479611/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667466065/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", + "revision": "0621c6c2eab8403b8217b402", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667479611/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685667479611, @@ -57645,18 +84656,31 @@ "overpaid_amount": 0, "installment_amount": 8000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bc729262085148aba44d2a2d", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667479611", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -57665,38 +84689,46 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667479611, - "date_created": "2023-06-02T00:57:59.611Z", - "date_last_updated": "2023-06-02T00:57:59.611Z", - "date_of_expiration": "2023-07-02T00:57:59.611Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685667479611, - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023" + "history_id": 1685667479611 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bd31f0924ef546bbaace1caf", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687307213896/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667479611/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", + "revision": "25e7f73027c1407eba23b41a", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687307213896/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687307213896, @@ -57707,18 +84739,31 @@ "overpaid_amount": 0, "installment_amount": 22711633, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dcdebdc1c3d84b38a52b3125", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687307213896", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -57727,38 +84772,46 @@ "original_amount": 22711633, "total_amount": 22711633, "id": 1687307213896, - "date_created": "2023-06-21T00:26:53.896Z", - "date_last_updated": "2023-06-21T00:26:53.896Z", - "date_of_expiration": "2024-06-21T00:26:53.896Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1687307213896, - "description": "Investimento de 22.711.633,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024" + "history_id": 1687307213896 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "99cd47bbe0644b89811407f3", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687313762388/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687307213896/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 22.711.633,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", + "revision": "ad61528d3cd84576a10037ce", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687313762388/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687313762388, @@ -57769,18 +84822,31 @@ "overpaid_amount": 0, "installment_amount": 24000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4f85a9f0209245c4a9d31963", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687313762388", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -57789,38 +84855,46 @@ "original_amount": 24000000, "total_amount": 24000000, "id": 1687313762388, - "date_created": "2023-06-21T02:16:02.388Z", - "date_last_updated": "2023-06-21T02:16:02.388Z", - "date_of_expiration": "2025-06-21T02:16:02.388Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1687313762388, - "description": "Investimento de 24.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2025" + "history_id": 1687313762388 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b5b455acd8304e888524249e", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688400402521/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687313762388/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 24.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2025", + "revision": "15a3d0b125794333901431c8", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688400402521/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688400402521, @@ -57831,18 +84905,31 @@ "overpaid_amount": 0, "installment_amount": 8000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3613a20c1d094e469aeeb588", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688400402521", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -57851,39 +84938,47 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1688400402521, - "date_created": "2023-07-03T16:06:42.521Z", - "date_last_updated": "2023-07-03T16:06:42.521Z", - "date_of_expiration": "2023-07-03T16:06:42.521Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1688400402521, - "wasDebited": true, - "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "518d75e0d4e04f218cb835e0", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688403044242/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688400402521/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", + "revision": "1ef968e1d71d4813b45c69e0", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688403044242/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688403044242, @@ -57894,18 +84989,31 @@ "overpaid_amount": 0, "installment_amount": 8000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5db9fdefc93b49e68bab7fca", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688403044242", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -57914,49 +85022,71 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1688403044242, - "date_created": "2023-07-03T16:50:44.242Z", - "date_last_updated": "2023-07-03T16:50:44.242Z", - "date_of_expiration": "2023-08-03T16:50:44.242Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1688403044242, - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023" + "history_id": 1688403044242 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "887f68d75e144a89a4ee21cd", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688403044242/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", + "revision": "66fdbed081004e1fabaefa34", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } + }, + "revision": "7b9731c9d655443b951ae4d9", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -57965,9 +85095,18 @@ "total_amount": 1500, "history_id": 1689132091915, "id": 1689132091915, - "date_created": "2023-07-12T03:21:31.915Z", - "date_last_updated": "2023-07-13T01:07:51.960Z", - "date_of_expiration": "2023-08-11T03:21:31.915Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -57975,30 +85114,29 @@ "date_approved": "2023-07-13T01:07:51.960Z", "money_release_date": "2023-07-13T01:07:51.960Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0983.0244.9130.1420-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dffd329626cd4a93860eff2c", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234387/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0983.0244.9130.1420-80", + "revision": "4f4efb7629af450cb309c5fa", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234387/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 3, @@ -58011,18 +85149,31 @@ "overpaid_amount": 0, "installment_amount": 1200, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "28f47712c2c6490d8037d948", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234387", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -58033,38 +85184,46 @@ "total_amount": 1200, "id": 1689211234387, "contract_id": "1680571158806", - "date_created": "2023-07-13T01:20:34.387Z", - "date_last_updated": "2023-07-13T01:20:34.387Z", - "date_of_expiration": "2023-07-13T01:20:34.387Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1689211234387, - "description": "Pagamento de fatura 3 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806" + "history_id": 1689211234387 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "11acca73aae340ea87b7ae27", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234773/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234387/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 3 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", + "revision": "735b7a985dbb4249baa8dbab", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234773/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -58077,18 +85236,31 @@ "overpaid_amount": 0, "installment_amount": 290, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2ce4ad492e96403a84c607aa", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234773", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -58099,38 +85271,46 @@ "total_amount": 290, "id": 1689211234773, "contract_id": "1684367721554", - "date_created": "2023-07-13T01:20:34.773Z", - "date_last_updated": "2023-07-13T01:20:34.773Z", - "date_of_expiration": "2023-07-13T01:20:34.773Z", + "date_created": { + "type": 6, + "value": 1701459383525 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383525 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1689211234773, - "description": "Pagamento de fatura 2 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554" + "history_id": 1689211234773 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e7dfa44b835548bc883ce5a6", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691081485992/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234773/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", + "revision": "9c349fed326e4999bed2a8bc", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383525, + "modified": 1701459383525 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691081485992/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1691081485992, @@ -58141,18 +85321,31 @@ "overpaid_amount": 0, "installment_amount": 8000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fc98636719374ada8fe28215", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691081485992", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -58161,39 +85354,47 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1691081485992, - "date_created": "2023-08-03T16:51:25.992Z", - "date_last_updated": "2023-08-03T16:51:25.992Z", - "date_of_expiration": "2023-08-03T16:51:25.992Z", + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1691081485992, - "wasDebited": true, - "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "84f28728e1a946e3b68e8b0d", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691081485992/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", + "revision": "c6386aa41d5e4afe81659b50", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691082200859, "net_received_amount": 0, @@ -58203,18 +85404,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1691082200859" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5dcd11af94ea487397e1046d", + "revision_nr": 1, + "created": 1701459383526, + "modified": 1701459383526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1691082200859", + "revision": "440776db98a1451eacc0f4fa", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -58223,52 +85447,72 @@ "total_amount": 8000000, "id": 1691082200859, "history_id": 1691082200859, - "date_created": "2023-08-03T17:03:20.859Z", - "date_last_updated": "2023-08-03T17:03:20.859Z", - "date_of_expiration": "2023-09-03T17:03:20.858Z", + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "89f8e3f88be34500a6105c04", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-10T23:12:17.743Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", + "revision": "3467f7045d0744948ad7aca8", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-10T23:12:17.743Z", + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + } + }, + "revision": "d46580cd7bc74afe9b844421", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691795537743, "net_received_amount": 0, @@ -58278,18 +85522,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1691795537743" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1e62b0feb8f64da39ecba278", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1691795537743", + "revision": "c831af4eafc846f186e64472", + "revision_nr": 1, + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -58298,8 +85565,14 @@ "total_amount": 1490, "id": 1691795537743, "history_id": 1691795537743, - "date_created": "2023-08-11T23:12:17.743Z", - "date_last_updated": "2023-08-12T01:52:36.867Z", + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58310,29 +85583,32 @@ "money_release_date": "2023-08-12T01:52:36.867Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 1.490,00 para a carteira iVip 0983.0244.9130.1420-80" + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "43af3d1f7a3c4c6899750d40", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838943906/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 1.490,00 para a carteira iVip 0983.0244.9130.1420-80", + "revision": "1cf89304f2b64935bf4fc402", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838943906/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 4, @@ -58345,18 +85621,31 @@ "overpaid_amount": 0, "installment_amount": 1200, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4e62bdda3dd648e7bfbd578a", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838943906", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -58367,38 +85656,46 @@ "total_amount": 1200, "id": 1691838943906, "contract_id": "1680571158806", - "date_created": "2023-08-12T11:15:43.906Z", - "date_last_updated": "2023-08-12T11:15:43.906Z", - "date_of_expiration": "2023-08-12T11:15:43.906Z", + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1691838943906, - "description": "Pagamento de fatura 4 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806" + "history_id": 1691838943906 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c274fd8313a5445abda27378", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838944125/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838943906/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 4 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", + "revision": "888f7cc84dd94c27beb5d315", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838944125/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 3, @@ -58411,18 +85708,31 @@ "overpaid_amount": 0, "installment_amount": 290, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "44fac8953d5743fbb4051df4", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838944125", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -58433,38 +85743,46 @@ "total_amount": 290, "id": 1691838944125, "contract_id": "1684367721554", - "date_created": "2023-08-12T11:15:44.125Z", - "date_last_updated": "2023-08-12T11:15:44.125Z", - "date_of_expiration": "2023-08-12T11:15:44.125Z", + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1691838944125, - "description": "Pagamento de fatura 3 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554" + "history_id": 1691838944125 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "336e98378807444ca6a97ef2", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838944125/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 3 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", + "revision": "7268c04641c04f0382381972", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693760654707, "net_received_amount": 0, @@ -58474,18 +85792,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1693760654707" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9c8e4da7398a409293c0771b", + "revision_nr": 1, + "created": 1701459383526, + "modified": 1701459383526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1693760654707", + "revision": "69b8bbce5edf485897fea46e", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -58494,38 +85835,46 @@ "total_amount": 8160000, "id": "1693760654707", "history_id": "1693760654707", - "date_created": "2023-09-03T17:04:14.707Z", - "date_last_updated": "2023-09-03T17:04:14.707Z", - "date_of_expiration": "2023-09-03T17:04:14.707Z", + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b40a30380781440d9df0b40c", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "d5add494086e48a3b505411a", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693869394011, "net_received_amount": 0, @@ -58535,18 +85884,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1693869394011" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "54633105807742579b0979c9", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1693869394011", + "revision": "9527e6b890fb4338879ef6cc", + "revision_nr": 1, + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -58555,9 +85927,18 @@ "total_amount": 5000000, "id": "1693869394011", "history_id": "1693869394011", - "date_created": "2023-09-04T23:16:34.011Z", - "date_last_updated": "2023-10-04T13:04:00.740Z", - "date_of_expiration": "2023-10-04T23:16:34.011Z", + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -58566,44 +85947,55 @@ "status_detail": "cc_rejected_insufficient_staked_amount", "money_release_date": "2023-10-04T13:04:00.740Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/10/2023 - Y12XDT27" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e74456fbb1ea428bbc05e944", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-12T01:25:11.857Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/10/2023 - Y12XDT27", + "revision": "4656b8089d85446597eeed0a", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-12T01:25:11.857Z", + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + } + }, + "revision": "31673a6cbfeb478d85828d48", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694481911857, "net_received_amount": 0, @@ -58613,18 +86005,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694481911857" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2a369f16029b460f900e21ca", + "revision_nr": 1, + "created": 1701459383526, + "modified": 1701459383526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694481911857", + "revision": "4515e43ec8754e6a8adf689c", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -58633,8 +86048,14 @@ "total_amount": 1490, "id": "1694481911857", "history_id": "1694481911857", - "date_created": "2023-09-12T01:25:11.857Z", - "date_last_updated": "2023-09-13T17:37:38.166Z", + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58645,29 +86066,32 @@ "money_release_date": "2023-09-13T17:37:38.166Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 1.490,00 BRL para a carteira iVip 0983.0244.9130.1420-80" + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1120e350b3c54552a3f16bc3", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 1.490,00 BRL para a carteira iVip 0983.0244.9130.1420-80", + "revision": "b19cbbf98cf042de96b87fe9", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694627290479, "net_received_amount": 0, @@ -58677,20 +86101,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 5, "installments_payable": 5, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694627290479" + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "01ee28bd097e4d4c8ca06034", + "revision_nr": 1, + "created": 1701459383526, + "modified": 1701459383526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694627290479", + "revision": "2fe40a60a76547ba92675d85", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -58699,38 +86146,46 @@ "total_amount": 1200, "id": "1694627290479", "history_id": "1694627290479", - "date_created": "2023-09-13T17:48:10.479Z", - "date_last_updated": "2023-09-13T17:48:10.479Z", - "date_of_expiration": "2023-09-13T17:48:10.479Z", + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 5 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0c16d3e1303c4a19bc105333", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 5 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", + "revision": "902a651cdd064ec6a2671629", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694627290565, "net_received_amount": 0, @@ -58740,20 +86195,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 4, "installments_payable": 4, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694627290565" + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8dd609c84cef4829ba52f32a", + "revision_nr": 1, + "created": 1701459383526, + "modified": 1701459383526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694627290565", + "revision": "f2f509a9863a4f0e9a4e1c3e", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -58762,38 +86240,46 @@ "total_amount": 290, "id": "1694627290565", "history_id": "1694627290565", - "date_created": "2023-09-13T17:48:10.565Z", - "date_last_updated": "2023-09-13T17:48:10.565Z", - "date_of_expiration": "2023-09-13T17:48:10.565Z", + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 4 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "355907bdee7a487d94acd338", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 4 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", + "revision": "c1705e3a5492431ab2a506d9", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696555808953, "net_received_amount": 0, @@ -58803,18 +86289,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696555808953" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "97f73d46d4c84f3f9c74b4fb", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696555808953", + "revision": "bfacbb38ead34b479e021425", + "revision_nr": 1, + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -58824,52 +86333,72 @@ "total_amount": 8000000, "id": "1696555808953", "history_id": "1696555808953", - "date_created": "2023-10-06T01:30:08.953Z", - "date_last_updated": "2023-10-06T01:30:08.953Z", - "date_of_expiration": "2023-11-06T01:30:08.931Z", + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "446e3f64229e4fa485aa7afa", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-11-08T02:49:04.331Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", + "revision": "4ba1425802934c8695b2b6ae", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-11-08T02:49:04.331Z", + "date_created": { + "type": 6, + "value": 1701459383526 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383526 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383526 + } + }, + "revision": "ed292a8ae89e4704953acd53", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383526, + "modified": 1701459383526 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696819744331", "net_received_amount": 0, @@ -58879,18 +86408,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696819744331" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383527 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383527 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383527 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "795dd22b297243f1bc439def", + "revision_nr": 1, + "created": 1701459383527, + "modified": 1701459383527 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696819744331", + "revision": "3aabf2cd679c4074a07e513e", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383527, + "modified": 1701459383527 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -58900,8 +86452,14 @@ "total_amount": 1490, "id": "1696819744331", "history_id": "1696819744331", - "date_created": "2023-10-09T02:49:04.331Z", - "date_last_updated": "2023-10-09T12:39:01.326Z", + "date_created": { + "type": 6, + "value": 1701459383527 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383527 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58912,29 +86470,32 @@ "money_release_date": "2023-10-09T12:39:01.326Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 1.490,00 BRL para a carteira iVip 0983.0244.9130.1420-80" + "date_of_expiration": { + "type": 6, + "value": 1701459383527 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f176f7721ccd4a9495bf8c4f", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383527, + "modified": 1701459383527 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 1.490,00 BRL para a carteira iVip 0983.0244.9130.1420-80", + "revision": "ea1bad131a9048549048570f", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383527, + "modified": 1701459383527 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696861214347", "net_received_amount": 0, @@ -58944,20 +86505,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 6, "installments_payable": 4, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696861214347" + "date_created": { + "type": 6, + "value": 1701459383527 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383527 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383527 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bcaf8f4f6bd145f8a4233993", + "revision_nr": 1, + "created": 1701459383527, + "modified": 1701459383527 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696861214347", + "revision": "0c2f8d5774d84a84a91f630b", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383527, + "modified": 1701459383527 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -58967,38 +86551,46 @@ "total_amount": 1200, "id": "1696861214347", "history_id": "1696861214347", - "date_created": "2023-10-09T14:20:14.347Z", - "date_last_updated": "2023-10-09T14:20:14.347Z", - "date_of_expiration": "2023-10-09T14:20:14.347Z", + "date_created": { + "type": 6, + "value": 1701459383527 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383527 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383527 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 6 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "93008954f0c34a9e94c07c0c", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383527, + "modified": 1701459383527 } }, { - "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511/details/costs", + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 6 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", + "revision": "18e3260385b34703b6b8bb10", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383527, + "modified": 1701459383527 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696861218511", "net_received_amount": 0, @@ -59008,20 +86600,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 5, "installments_payable": 3, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696861218511" + "date_created": { + "type": 6, + "value": 1701459383527 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383527 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383527 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "33ee2e8f354d4c3bac30de24", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383527, + "modified": 1701459383527 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696861218511", + "revision": "a9687bb16b0c45bfb8146257", + "revision_nr": 1, + "created": 1701459383527, + "modified": 1701459383527 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -59031,53 +86646,84 @@ "total_amount": 290, "id": "1696861218511", "history_id": "1696861218511", - "date_created": "2023-10-09T14:20:18.511Z", - "date_last_updated": "2023-10-09T14:20:18.511Z", - "date_of_expiration": "2023-10-09T14:20:18.511Z", + "date_created": { + "type": 6, + "value": 1701459383527 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383527 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383527 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 5 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2df85cf05d2f4675b1a064c3", + "revision_nr": 1, + "created": 1701459383527, + "modified": 1701459383527 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511/description", + "content": { + "type": "STRING", + "value": "Pagamento de fatura 5 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", + "revision": "a5124bec447d4c1a8ec20885", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383527, + "modified": 1701459383527 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f9011a3478eb4b818b03dc1e", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383527, + "modified": 1701459383527 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000 + "amount": 2000, + "date_created": { + "type": 6, + "value": 1701459383527 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383527 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383527 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "02e9f7e44af04d2c932476e4", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383527, + "modified": 1701459383527 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680571158806, "type": "emprestimo", @@ -59085,48 +86731,92 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1701459383527 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + "date_last_updated": { + "type": 6, + "value": 1701459383527 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383527 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dee30002367c408d97720509", + "revision_nr": 1, + "created": 1701459383527, + "modified": 1701459383527 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "afa090801d8f4ebd95293349", + "revision_nr": 1, + "created": 1701459383527, + "modified": 1701459383527 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "dc99c121a0a94379afb48878", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383527, + "modified": 1701459383527 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9ca3c0ea9d0444349887cf97", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383527, + "modified": 1701459383527 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000 + "amount": 2000, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "40c7362177954d95a78ad8ff", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680571158806, "type": "emprestimo", @@ -59134,37 +86824,81 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e2c36b1049ea40ad9f465994", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "8d837bb5d91e4d62af96417a", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "6e27e451f11b48d2aeccc5b3", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320 + "amount": 320, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "200643777b7c403d9e4bf38e", "revision_nr": 1, - "created": 1700748395493, - "modified": 1700748395493 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684367721554, "type": "emprestimo", @@ -59172,37 +86906,81 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": "2023-05-17T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f931fb4d59e54a27a2bba854", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "20bf1f6dc572420fbba22ab4", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "5aea292850f0417e923f067f", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 5 + "amount": 5, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ec1294c33cf24b07bae508df", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684661775049, "type": "emprestimo", @@ -59210,48 +86988,92 @@ "total_amount": 255, "installments": 1, "installment_amount": 255, - "date_created": "2023-05-21T09:36:15.049Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1684661775049, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 250,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 255,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "06bc8e205a16414aa1c58e2a", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 255,00", + "revision": "7dca13bcdf024c148e672453", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "5765a79091e14a74a3471343", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "85c1d4db189d46a594316ac5", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000 + "amount": 2000, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ed608d94f8124ffe931887dd", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680571158806, "type": "emprestimo", @@ -59259,37 +87081,81 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1687f031db2c486d8db5c4d5", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "54b0d5643f9e4d4e8f518cc8", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "9801369670a34320884737c4", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320 + "amount": 320, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b827220bb3824de2add3990f", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684367721554, "type": "emprestimo", @@ -59297,48 +87163,92 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": "2023-05-17T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ce1e417ce0074e4ca7158b0d", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "52bd7929ee0f43a3af84382b", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "86e7dee50aff4374b098edff", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e56666c4ba214d9d9169e871", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000 + "amount": 2000, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6a1aa0417416457c9fcff76c", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680571158806, "type": "emprestimo", @@ -59346,37 +87256,81 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "95d29d8eb7954fa591460378", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "7460a3fb342a4b2e887324f7", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "bc9b266a7cbc4eb191deabd2", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320 + "amount": 320, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "449bbba4352349fc9e886221", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684367721554, "type": "emprestimo", @@ -59384,48 +87338,92 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": "2023-05-17T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3e8d3a2783594baab2bacc38", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "00cbfb005dbf4a2d8d495923", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "19866661bc4a4916a97cb35b", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7e3664a6a4f0475a80b17682", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000 + "amount": 2000, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6448ff1e8dc845d88a997d49", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680571158806, "type": "emprestimo", @@ -59433,38 +87431,81 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-13T17:48:10.497Z", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6d8a58e2ba004daaaacb5ba4", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "62767c489da440699a792211", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "f7cc0ee8bd2f4b07a29b141e", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320 + "amount": 320, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "164e52578475489babe64876", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684367721554, "type": "emprestimo", @@ -59472,49 +87513,92 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": "2023-05-17T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-13T17:48:10.583Z", - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ca861dc5dd9244cc8914a406", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "c683dbf14ab147da8adb1fb2", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "d725e72e589a4a25a6fcfa10", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "43106cee82fd4bc6ac676432", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000 + "amount": 2000, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "73c2b1e733e94e25af86f093", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680571158806, "type": "emprestimo", @@ -59522,38 +87606,81 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-10-09T14:20:18.119Z", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0e877be40e224ba6b736cd6d", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "19d7a52d18ca4203aa1cee04", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "54e713d736c24b4d99867836", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320 + "amount": 320, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d4302648fdc849e594cbb84d", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684367721554, "type": "emprestimo", @@ -59561,49 +87688,92 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": "2023-05-17T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-10-09T14:20:18.540Z", - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b9dcab03d1564025b25147ab", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "fb40bfed731940c2b865e9e7", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "421015b23657476187c1ce25", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6002210fc3364274986a3fd2", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000 + "amount": 2000, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "db0da44b594c41a8937cc013", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680571158806, "type": "emprestimo", @@ -59611,36 +87781,80 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1680571158806, "currency_id": "BRL", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6603b79652dc4a56875e7d43", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "958555da68914e928708b604", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "c55ce38d823e486198e6138f", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320 + "amount": 320, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cace3b642bff45acbed9013c", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684367721554, "type": "emprestimo", @@ -59648,47 +87862,91 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": "2023-05-17T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1684367721554, "currency_id": "BRL", - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "57be233fb7da4a2a84352052", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "bb77681719614000af255694", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "42154e3be07e4c4d80db88eb", "revision_nr": 1, - "created": 1700748395494, - "modified": 1700748395494 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ae0db2331f1a48198256bd61", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000 + "amount": 2000, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "858062934c484f2b9964f2e7", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680571158806, "type": "emprestimo", @@ -59696,36 +87954,80 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1680571158806, "currency_id": "BRL", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f9d0cf7c11ab473c9b631d89", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "6469a804ef3145b08fbfa58c", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "4d2c52e0b87c420bbef4d9ac", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320 + "amount": 320, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "621f3ab8089c4ce783d2ec87", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684367721554, "type": "emprestimo", @@ -59733,47 +88035,91 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": "2023-05-17T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1684367721554, "currency_id": "BRL", - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aa8c61306be74a399456e8d4", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "766d00775de04dbd970549b3", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "6b3fdd035cd94fa3b48684d9", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "53ff148a37334ad08d4e3476", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000 + "amount": 2000, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "85a7adedfa504a6d9d755b9b", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680571158806, "type": "emprestimo", @@ -59781,36 +88127,80 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1680571158806, "currency_id": "BRL", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "672b60f9c1e54c6ea13120a8", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "48dfd2e95c0947b1aa1e6bf5", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "40546710cdfb47cc9ede81c7", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320 + "amount": 320, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "05b04949f4f64da69f753753", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684367721554, "type": "emprestimo", @@ -59818,47 +88208,91 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": "2023-05-17T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1684367721554, "currency_id": "BRL", - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3fc3774b1bf14aba94f2c077", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", + "revision": "97455de5160b40459ae627e0", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "c8c90502f7d345f68ebcd9f6", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7a6035d502f646219bf6d282", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000 + "amount": 2000, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "082902cd4a1c4a2da25baedb", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680571158806, "type": "emprestimo", @@ -59866,273 +88300,392 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, "history_id": 1680571158806, "currency_id": "BRL", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00" + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "63f4f010c3dc4fcdb2d56a30", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", + "revision": "2320d4d9dafd47acab42e5af", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "b7d46d25b60c414087914ade", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4c52373b2eea41f79a19d30a", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "59f4818e4c3d4387aed985e4", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 10000, "limitUsed": 7250, "analysisRequested": "2023-04-04T01:13:28.027Z", - "lastReview": "2023-04-08T18:26:33.740Z" + "lastReview": "2023-04-08T18:26:33.740Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "334937ad16e24dcbbf87f5d2", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1680465637248, "dateValidity": 1680465637248, "totalValue": 7716.736, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z" + "balancesModificacao": "2023-10-09T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c948c2d304184146af73a2c8", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/099867702110120200/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d55a438575534ccaaf98937b", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/099867702110120200/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9d42fda831a54f68b9421507", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/099867702110120200/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2a2bd759589d475ebb977603", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/099867702110120200/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c53812f7322447b38702ddbd", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/099867702110120200", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684118396230, "dateValidity": 1684118396230, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "98acd894b78b488fb88b5480", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/100571192646522480/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c2b0aeee578a47c7aadde982", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/100571192646522480/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c5f7fc67b7ec4c3abbb7855f", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/100571192646522480", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677468345456, "dateValidity": 1677468345456, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5c4901f45f244e5dad917f49", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101099073948007100/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b08139838f344c39b6c990e4", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101099073948007100/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "74e7bd61cdc6494a94386590", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101099073948007100/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8786c0f80c6341bab8f4b1e8", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101099073948007100/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d4ca84a7a90946edac392cb9", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101099073948007100", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1685622109779, "dateValidity": 1685622109779, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "59acaa2d3c544ca9ac4e2b87", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7b0576200eb0468aacd99605", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } + }, + "revision": "08f6f9eb9b304c1da4a29458", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -60141,9 +88694,18 @@ "total_amount": 1700, "history_id": 1683387433855, "id": 1683387433855, - "date_created": "2023-05-06T15:37:13.855Z", - "date_last_updated": "2023-05-06T17:20:32.539Z", - "date_of_expiration": "2023-06-05T15:37:13.855Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -60151,41 +88713,54 @@ "date_approved": "2023-05-06T17:20:32.539Z", "money_release_date": "2023-05-06T17:20:32.539Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.700,00 para a carteira iVip 1017.8820.3938.8364-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "966977909e6e411dbf34df96", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { - "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058/details/costs", + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.700,00 para a carteira iVip 1017.8820.3938.8364-80", + "revision": "3fbbe1b084b949a29af11fb1", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } + }, + "revision": "285629f0d9a64f3195ab56e5", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -60194,9 +88769,18 @@ "total_amount": 1000, "history_id": 1683729448058, "id": 1683729448058, - "date_created": "2023-05-10T14:37:28.058Z", - "date_last_updated": "2023-05-10T14:48:52.161Z", - "date_of_expiration": "2023-06-09T14:37:28.058Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -60204,30 +88788,29 @@ "date_approved": "2023-05-10T14:48:52.161Z", "money_release_date": "2023-05-10T14:48:52.161Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1017.8820.3938.8364-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7d5554769392402f95215a73", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { - "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1684018976722/details/costs", + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1017.8820.3938.8364-80", + "revision": "080f3f7a97be41b28f997783", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1684018976722/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684018976722, @@ -60238,18 +88821,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3866fd3856034e2282f414aa", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1684018976722", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -60259,9 +88855,18 @@ "original_amount": 14591858, "total_amount": 14591858, "id": 1684018976722, - "date_created": "2023-05-13T23:02:56.722Z", - "date_last_updated": "2023-05-13T23:02:56.722Z", - "date_of_expiration": "2023-05-13T23:02:56.722Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60270,38 +88875,41 @@ "history_id": 1684018976722, "description": "Compra de 14.591.858,00 IVIP por 2.700,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ccade1a00b13410680d4e626", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } + }, + "revision": "0124593c6dd74b6191779539", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -60310,47 +88918,69 @@ "total_amount": 14591858, "history_id": 1686488141706, "id": 1686488141706, - "date_created": "2023-06-11T12:55:41.706Z", - "date_last_updated": "2023-06-11T12:55:41.706Z", - "date_of_expiration": "2023-06-11T12:55:41.706Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "33504108c900443c894d93ad", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { - "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256/details/costs", + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", + "revision": "527cb379c14d4bc3a67fea6e", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } + }, + "revision": "9ba87467e6c94341ac92a6a0", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -60359,47 +88989,69 @@ "total_amount": 14591858, "history_id": 1686581079256, "id": 1686581079256, - "date_created": "2023-06-12T14:44:39.256Z", - "date_last_updated": "2023-06-12T14:44:39.256Z", - "date_of_expiration": "2023-06-12T14:44:39.256Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4e771e3c9ae0442b9eb40c43", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { - "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098/details/costs", + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", + "revision": "bf34c759702344a88b59dca0", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } + }, + "revision": "151dad000c6b43c1a8929dcf", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -60408,47 +89060,69 @@ "total_amount": 14591858, "history_id": 1686647052098, "id": 1686647052098, - "date_created": "2023-06-13T09:04:12.098Z", - "date_last_updated": "2023-06-13T09:04:12.098Z", - "date_of_expiration": "2023-06-13T09:04:12.098Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "52f277efcca449eda55e35a1", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { - "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224/details/costs", + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", + "revision": "c782fc85c2ca46a0b2b5d570", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } + }, + "revision": "f2952cb70f0b4f7c80e93d01", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -60457,9 +89131,18 @@ "total_amount": 14591858, "history_id": 1686750536224, "id": 1686750536224, - "date_created": "2023-06-14T13:48:56.224Z", - "date_last_updated": "2023-06-15T21:42:14.419Z", - "date_of_expiration": "2023-06-14T13:48:56.224Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -60467,41 +89150,54 @@ "date_approved": "2023-06-15T21:42:14.419Z", "money_release_date": "2023-06-15T21:42:14.419Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b2ce7d8a80e14094a79b5f28", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { - "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655/details/costs", + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", + "revision": "382cf1a2e8a5420691ecbe1a", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } + }, + "revision": "d27aa061835141d89a83bfb7", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -60510,331 +89206,461 @@ "total_amount": 14591858, "history_id": 1686865268655, "id": 1686865268655, - "date_created": "2023-06-15T21:41:08.655Z", - "date_last_updated": "2023-06-15T21:41:08.655Z", - "date_of_expiration": "2023-06-15T21:41:08.655Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2d762c18eb924bb5b469b0ec", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655/description", + "content": { + "type": "STRING", + "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", + "revision": "a9f3d128b87a44768b9ab2b7", + "revision_nr": 1, + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4991233cef3f4286a4cd2f40", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "31ff6ea0cf234297a6a84dc7", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-09-14T17:27:37.445Z" + "analysisRequested": "2023-09-14T17:27:37.445Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "55124a6babc14c4f85e69dcc", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1683247685722, "dateValidity": 1683247685722, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": "2023-09-25T03:00:00.000Z" + "balancesModificacao": "2023-09-25T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1aef90e79d134cf794a47374", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101924508374940270/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7b7cde42592e413f9a9e4db2", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101924508374940270/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ee4cb82220864d93839e60fa", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/101924508374940270", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1679287665883, "dateValidity": 1679287665883, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2bde124a0dcd4261ad04af0f", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/102162769887914180/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0a21af706035405c90c8811f", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/102162769887914180/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fa3607dcb84543b596a805bf", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/102162769887914180", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1689113009824, "dateValidity": 1689113009824, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7bea433defae4f2f8a72bf7f", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/102585657323784220/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cdee58258ba14c8e92c67967", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/102585657323784220/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7f6d9d2d8aab49fba5ff8856", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/102585657323784220", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1679436379945, "dateValidity": 1679436379945, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f93dd33881a64450a432d651", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/102986238363877330/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4a3513ee5f0f44329f0a0320", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/102986238363877330/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "79ac9a55251a448582f0ff36", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/102986238363877330", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1696096915384, "dateValidity": 1696096916164, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c27d84edef5e42bb8848f7cd", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/103931688787322940/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5b29df6b68f04cd794653b26", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/103931688787322940/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0fdf2af51f5445c2b72c4563", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/103931688787322940", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1679165777705, "dateValidity": 1679165777705, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9cfb71437e0c45d5a2bacfe1", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "BRL", "available": "0.00000000", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d65d4518c2b747b79e0731ea", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "IVIP", "available": "0.00000000", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dd4f26d2194e4922921785db", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "98dbebdd0a004b6e8742fca8", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } + }, + "revision": "e14cfb28a39848c48e75fce8", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -60843,9 +89669,18 @@ "total_amount": 50, "history_id": 1684170542717, "id": 1684170542717, - "date_created": "2023-05-15T17:09:02.717Z", - "date_last_updated": "2023-05-15T21:30:21.404Z", - "date_of_expiration": "2023-06-14T17:09:02.717Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -60853,30 +89688,29 @@ "date_approved": "2023-05-15T21:30:21.404Z", "money_release_date": "2023-05-15T21:30:21.404Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 50,00 para a carteira iVip 1069.0089.6878.2698-70" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "16a9fadc289941789b032e20", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { - "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684624294208/details/costs", + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 50,00 para a carteira iVip 1069.0089.6878.2698-70", + "revision": "9ef153f8e4c34799bb9f0b17", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684624294208/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624294208, @@ -60887,18 +89721,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "022aebfb59f647b5bd152615", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684624294208", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -60908,9 +89755,18 @@ "original_amount": 243536, "total_amount": 243536, "id": 1684624294208, - "date_created": "2023-05-20T23:11:34.208Z", - "date_last_updated": "2023-05-20T23:11:34.208Z", - "date_of_expiration": "2023-05-20T23:11:34.208Z", + "date_created": { + "type": 6, + "value": 1701459383528 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383528 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383528 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60919,38 +89775,41 @@ "history_id": 1684624294208, "description": "Compra de 243.536,00 IVIP por 50,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "db50f5a115c946f9b7a04829", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383528, + "modified": 1701459383528 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } + }, + "revision": "c866807f566e4631b8269c1a", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -60959,9 +89818,18 @@ "total_amount": 243536, "history_id": 1688846842830, "id": 1688846842830, - "date_created": "2023-07-08T20:07:22.830Z", - "date_last_updated": "2023-07-08T20:08:12.432Z", - "date_of_expiration": "2023-07-08T20:07:22.830Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -60969,169 +89837,230 @@ "date_approved": "2023-07-08T20:08:12.432Z", "money_release_date": "2023-07-08T20:08:12.432Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 243.536,00 IVIP para a carteira 0x58120E330A738FD12B195740b06B7792A5C7DD7D" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "28692c1af5024a1793f9c9d5", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830/description", + "content": { + "type": "STRING", + "value": "Saque de 243.536,00 IVIP para a carteira 0x58120E330A738FD12B195740b06B7792A5C7DD7D", + "revision": "7edaea29b1fc494bb2813422", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "415ffbca303a4df8894a5713", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e1790997fb394e8aaa4b27fc", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f9775d71101844148646ccc4", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684170470840, "dateValidity": 1684170470840, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "38b46c024b214f079a01e910", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/108390022183703310/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1dc08f8155df4109a9bed8bc", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/108390022183703310/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d8ec64bf271a47d6a037ea9f", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/108390022183703310", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1680695438579, "dateValidity": 1680695438579, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "76b1942ee83c453981e93943", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/108783781111851280/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1da20b94ec5349f3a3f222d1", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/108783781111851280/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ded91a4b7eed43a6a6ad9f71", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/108783781111851280", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1681661884795, "dateValidity": 1681661884795, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f46adc5afdb64dafba08d559", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } + }, + "revision": "4e8252ca78164b3daff226bf", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -61140,9 +90069,18 @@ "total_amount": 500, "history_id": 1684095990042, "id": 1684095990042, - "date_created": "2023-05-14T20:26:30.042Z", - "date_last_updated": "2023-05-15T03:09:26.798Z", - "date_of_expiration": "2023-06-13T20:26:30.042Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -61150,30 +90088,29 @@ "date_approved": "2023-05-15T03:09:26.798Z", "money_release_date": "2023-05-15T03:09:26.798Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1100.9860.6095.8997-30" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "027fa6f13c9644c5887e84f5", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { - "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1686325443110/details/costs", + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1100.9860.6095.8997-30", + "revision": "c78dbb25a0c44ea6811cc63a", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1686325443110/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1686325443110, @@ -61184,18 +90121,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cca7a099a6c2438aabe2c08b", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1686325443110", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -61205,9 +90155,18 @@ "original_amount": 1792114, "total_amount": 1792114, "id": 1686325443110, - "date_created": "2023-06-09T15:44:03.110Z", - "date_last_updated": "2023-06-09T15:44:03.110Z", - "date_of_expiration": "2023-06-09T15:44:03.110Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61216,27 +90175,16 @@ "history_id": 1686325443110, "description": "Compra de 1.792.114,00 IVIP por 500,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c798adc5a3484d37bb598257", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690019958173, "net_received_amount": 0, @@ -61246,18 +90194,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/110098606095899730/history/1690019958173" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "92bb88f5efb84c9db2bd74fb", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/110098606095899730/history/1690019958173", + "revision": "9c00fa3fd74e466a8c550526", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -61266,42 +90237,73 @@ "total_amount": 1792114, "id": 1690019958173, "history_id": 1690019958173, - "date_created": "2023-07-22T09:59:18.173Z", - "date_last_updated": "2023-07-22T09:59:18.173Z", - "date_of_expiration": "2023-07-22T09:59:18.173Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "pending_waiting_payment", - "description": "Saque de 1.792.114,00 IVIP para a carteira 0x007E69086fF7981e3fA99368fACD516952625148" + "status_detail": "pending_waiting_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "57d7fede469545dcb17a8074", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173/description", + "content": { + "type": "STRING", + "value": "Saque de 1.792.114,00 IVIP para a carteira 0x007E69086fF7981e3fA99368fACD516952625148", + "revision": "f993d065ab7f485588ab9c25", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 53763.42 + "amount": 53763.42, + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1ac92596a37743e18422f73c", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694046051457, "net_received_amount": 0, @@ -61311,18 +90313,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/110098606095899730/history/1694046051457" + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "31822b902cba42afba883c2d", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/110098606095899730/history/1694046051457", + "revision": "29c41988a129431cb58f57bf", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "8da6cd26d6bb49d39b8cb0f0", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -61331,9 +90366,18 @@ "total_amount": 1738350.58, "id": "1694046051457", "history_id": "1694046051457", - "date_created": "2023-09-07T00:20:51.457Z", - "date_last_updated": "2023-09-11T22:18:05.227Z", - "date_of_expiration": "2023-09-07T00:20:51.457Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -61343,146 +90387,207 @@ "date_approved": "2023-09-11T22:18:05.227Z", "money_release_date": "2023-09-11T22:18:05.227Z", "money_release_status": "drawee", - "wasDebited": true, - "description": "Saque de 1.738.350,58 IVIP para a carteira 0x007E69086fF7981e3fA99368fACD516952625148" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "114479b715ad4f9daaac62ac", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/description", + "content": { + "type": "STRING", + "value": "Saque de 1.738.350,58 IVIP para a carteira 0x007E69086fF7981e3fA99368fACD516952625148", + "revision": "1c604ec489d143ffa18961f7", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ac0da3ab2fb04260a40b360a", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "29f7cdffd87d482aa8ec77f5", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "52ac45826af548059f21f51d", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fe151b4426114f2fb6e99a13", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "1792114.00000000", "symbol": "IVIP", - "value": 199.51 + "value": 199.51, + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "59fef6ad1a1948f49dd08bdf", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "adddef3d4db94ef6b5bacece", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684095886828, "dateValidity": 1684095886828, "totalValue": 82.74, "currencyType": "USD", - "balancesModificacao": "2023-09-11T03:00:00.000Z" + "balancesModificacao": "2023-09-11T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "62f4ed2cfc22414aa1adab05", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "302b279515474d4ba602875b", "revision_nr": 1, - "created": 1700748395495, - "modified": 1700748395495 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } + }, + "revision": "934f774d11104573a3ad38c4", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -61491,167 +90596,235 @@ "total_amount": 100, "history_id": 1684539878275, "id": 1684539878275, - "date_created": "2023-05-19T23:44:38.275Z", - "date_last_updated": "2023-05-19T23:44:38.275Z", - "date_of_expiration": "2023-06-18T23:44:38.275Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1101.2161.6136.6665-00" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "36251e18b1614483a0c0518c", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1101.2161.6136.6665-00", + "revision": "a21af9e1f5f548a8aaa38649", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f7f346fea6a648ecaea6d1e5", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d60f21688c394e12a6fce043", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b646b4dd78f14a769888904b", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684536217510, "dateValidity": 1684536217510, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5832e16181694d9e96f475d2", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110261910786918940/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f1c70752daa8427aa1ca38dd", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110261910786918940/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "17154c1955fe4e97a1061137", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110261910786918940", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1679301294113, "dateValidity": 1679301294113, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5b84ebc75ff84ef6ac030eaf", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "BRL", "value": 0.132, - "available": "0.66666666" + "available": "0.66666666", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f4c8fa97ce9141babf1d9f19", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "IVIP", "value": 0, - "available": "0.00000000" + "available": "0.00000000", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bd40111b355a4b61981b890f", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1678154662168/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8b56d4c4a8874a05a6ee73ca", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1678154662168/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678154662168, @@ -61662,18 +90835,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "78d1898e792b4226bb485925", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1678154662168", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -61683,9 +90869,18 @@ "original_amount": 1594392, "total_amount": 1594392, "id": 1678154662168, - "date_created": "2023-03-07T02:04:22.168Z", - "date_last_updated": "2023-03-07T02:04:22.168Z", - "date_of_expiration": "2023-03-07T02:04:22.168Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61694,38 +90889,41 @@ "history_id": 1678154662168, "description": "Compra de 1594392 IVIP por 223 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "290bfbd7d09546678105d8f4", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } + }, + "revision": "04cef35625a64e068fddad79", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -61734,9 +90932,18 @@ "total_amount": 223, "history_id": 1677860043639, "id": 1677860043639, - "date_created": "2023-03-03T16:14:03.639Z", - "date_last_updated": "2023-03-03T16:28:35.639Z", - "date_of_expiration": "2023-04-02T16:14:03.639Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -61744,30 +90951,29 @@ "date_approved": "2023-03-03T16:28:35.639Z", "money_release_date": "2023-03-03T16:28:35.639Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 223,00 para a carteira iVip 1105.2091.7322.8272-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bf11dca828804032ad67289c", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { - "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547247302/details/costs", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 223,00 para a carteira iVip 1105.2091.7322.8272-00", + "revision": "52e340394be141dcba26ddb8", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547247302/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1680547247302, @@ -61778,18 +90984,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0d44d2ac14b64dc498ce997e", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547247302", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -61799,9 +91018,18 @@ "original_amount": 2760078, "total_amount": 2760078, "id": 1680547247302, - "date_created": "2023-04-03T18:40:47.302Z", - "date_last_updated": "2023-04-03T18:40:47.302Z", - "date_of_expiration": "2023-04-03T18:40:47.302Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61810,38 +91038,41 @@ "history_id": 1680547247302, "description": "Compra de 2.760.078,00 IVIP por 500,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a7a7b0076da8457d8bcf39c5", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } + }, + "revision": "969f89ec0d7b4c55b240a010", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -61850,9 +91081,18 @@ "total_amount": 52, "history_id": 1684007108709, "id": 1684007108709, - "date_created": "2023-05-13T19:45:08.709Z", - "date_last_updated": "2023-05-13T19:55:29.125Z", - "date_of_expiration": "2023-06-12T19:45:08.709Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -61860,30 +91100,29 @@ "date_approved": "2023-05-13T19:55:29.125Z", "money_release_date": "2023-05-13T19:55:29.125Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 52,00 para a carteira iVip 1105.2091.7322.8272-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "420399bb050443f9acf8c57c", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { - "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007784160/details/costs", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 52,00 para a carteira iVip 1105.2091.7322.8272-00", + "revision": "b734791745af40bfa2ac4d59", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007784160/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -61896,18 +91135,31 @@ "overpaid_amount": 0, "installment_amount": 51.667, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2cbdd78eeee04cb59b7d13ec", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007784160", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -61918,49 +91170,71 @@ "total_amount": 51.667, "id": 1684007784160, "contract_id": "1680547112243", - "date_created": "2023-05-13T19:56:24.160Z", - "date_last_updated": "2023-05-13T19:56:24.160Z", - "date_of_expiration": "2023-05-13T19:56:24.160Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1684007784160, - "description": "Pagamento de fatura 2 de 12 no valor de 51,67 BRL referente ao contrato 1680547112243" + "history_id": 1684007784160 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "83c7c46f4f234ed1afffbbaf", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { - "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886/details/costs", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007784160/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 12 no valor de 51,67 BRL referente ao contrato 1680547112243", + "revision": "cab6cbd401d44126b9d4ad6b", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } + }, + "revision": "f415d68be6d543f1a89c68ba", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -61969,9 +91243,18 @@ "total_amount": 52, "history_id": 1685634389886, "id": 1685634389886, - "date_created": "2023-06-01T15:46:29.886Z", - "date_last_updated": "2023-06-01T18:56:11.760Z", - "date_of_expiration": "2023-07-01T15:46:29.886Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -61979,30 +91262,29 @@ "date_approved": "2023-06-01T18:56:11.760Z", "money_release_date": "2023-06-01T18:56:11.760Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 52,00 para a carteira iVip 1105.2091.7322.8272-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4b5e4a82126c42f7834ecff1", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { - "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685657159164/details/costs", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 52,00 para a carteira iVip 1105.2091.7322.8272-00", + "revision": "9e89eda593ec435a845f9a7f", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685657159164/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -62015,18 +91297,31 @@ "overpaid_amount": 0, "installment_amount": 51.667, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cf15495cac0e4b2eb912a710", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685657159164", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -62037,38 +91332,46 @@ "total_amount": 51.667, "id": 1685657159164, "contract_id": "1680547112243", - "date_created": "2023-06-01T22:05:59.164Z", - "date_last_updated": "2023-06-01T22:05:59.164Z", - "date_of_expiration": "2023-06-01T22:05:59.164Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1685657159164, - "description": "Pagamento de fatura 1 de 12 no valor de 51,67 BRL referente ao contrato 1680547112243" + "history_id": 1685657159164 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ed5681d036a64fcabf73a7b1", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { - "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686939269544/details/costs", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685657159164/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 12 no valor de 51,67 BRL referente ao contrato 1680547112243", + "revision": "750a990488ef40f89dcc623b", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686939269544/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -62081,18 +91384,31 @@ "overpaid_amount": 0, "installment_amount": 2300063, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a2f4c610e51240369b64d12f", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686939269544", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -62103,53 +91419,95 @@ "total_amount": 2300063, "id": 1686939269544, "contract_id": "1680547112243", - "date_created": "2023-06-16T18:14:29.544Z", - "date_last_updated": "2023-06-16T18:14:29.544Z", - "date_of_expiration": "2023-06-16T18:14:29.544Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "history_id": 1686939269544, - "description": "Pagamento de faturas no valor de 2.300.063,00 IVIP referente ao contrato 1680547112243" + "history_id": 1686939269544 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d49248aea1154a16a4c69f80", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686939269544/description", + "content": { + "type": "STRING", + "value": "Pagamento de faturas no valor de 2.300.063,00 IVIP referente ao contrato 1680547112243", + "revision": "9ec87ec152994019b8cb974e", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e71c1261c2a94ccaa67d1169", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6a07b3925c934641a40614dc", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "3a314d7c41c54c7093fe82f6", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -62158,48 +91516,70 @@ "total_amount": 620, "history_id": 1680547112243, "id": 1680547112243, - "date_created": "2023-04-03T18:38:32.243Z", - "date_last_updated": "2023-04-03T18:38:32.243Z", - "date_of_expiration": "2023-05-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f2f4c1dbb9004f3d97dfdae5", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { - "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040/details/costs", + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "7cd1174e557b4a76a6767cc0", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } + }, + "revision": "bfa836738b4347e79818570e", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -62208,9 +91588,18 @@ "total_amount": 2054407, "history_id": 1686940226040, "id": 1686940226040, - "date_created": "2023-06-16T18:30:26.040Z", - "date_last_updated": "2023-06-21T17:25:23.358Z", - "date_of_expiration": "2023-06-16T18:30:26.040Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -62218,45 +91607,67 @@ "date_approved": "2023-06-21T17:25:23.358Z", "money_release_date": "2023-06-21T17:25:23.358Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 2.054.407,00 IVIP para a carteira 0x660cf406B5942C1cfAb19D31EAe648D68fAb56bF" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "741e1bd691a44dbf99742132", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040/description", + "content": { + "type": "STRING", + "value": "Saque de 2.054.407,00 IVIP para a carteira 0x660cf406B5942C1cfAb19D31EAe648D68fAb56bF", + "revision": "38f32c9c207947f486233ed3", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "68c41f38e045486da743531d", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "83fc7a3f745440c1a81557f4", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680547112243, "type": "emprestimo", @@ -62264,48 +91675,92 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6471904a65454c188025aa93", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "a0462117db3f4514b3bf424f", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "c585ab43befe4d4385328eb7", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dd2ad8190e1f4b60ac230969", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ce401bcaccb94e7b824bc10f", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680547112243, "type": "emprestimo", @@ -62313,48 +91768,92 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "da433da019324724a87f138a", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "8fb74f7b3b794acd9ccad6eb", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "b18533b0f98344b090143401", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f03b347e844a4c39836fa176", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "75a2b8c9f1e54ce7af142d00", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680547112243, "type": "emprestimo", @@ -62362,48 +91861,92 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "52b8cec317e34cfead128196", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "f72d8fe09ecf457482bd767b", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "4b7a45cec4e9472a86b0c884", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "95fb18b02b8e4b76b1d8ce28", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383529 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "158e908d00ef450784e3e136", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680547112243, "type": "emprestimo", @@ -62411,48 +91954,92 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1701459383529 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + "date_last_updated": { + "type": 6, + "value": 1701459383529 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383529 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f3cf1451025c47909d3518f9", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "8b8c7f87a2a54c58821c90f8", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "1e6c688af417444b81f87c92", + "revision_nr": 1, + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0347ce0e25244cc681ec46bf", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383529, + "modified": 1701459383529 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c837bff2d60a46a692aff836", "revision_nr": 1, - "created": 1700748395496, - "modified": 1700748395496 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680547112243, "type": "emprestimo", @@ -62460,48 +92047,92 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e583df7df7a846a2bce940d1", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "1e233a28e3af4d41878db5ce", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "089219edc8cf411fb7392b96", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d83234761a2249caac9c52e0", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fabc54a4221848088e4edaca", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680547112243, "type": "emprestimo", @@ -62509,48 +92140,92 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "92cc8287294a43078948eb45", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "77107881337c4435be900a63", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "6b2f313a67144947b4a3c4b6", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e285baf486f94e4596f63454", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "418abf1c9e204b9cb83a65bb", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680547112243, "type": "emprestimo", @@ -62558,48 +92233,92 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ae7ed05c83364386ac5dbd59", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "d7786a4b16924b589a6a790d", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "1f4cde059cde4631b15b2c1a", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f48663c1c6f54bbeb795f6be", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "103ff5747066454e86f6f005", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680547112243, "type": "emprestimo", @@ -62607,48 +92326,92 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "254e9e83fade491dbae1620c", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "599789631da14dce81421149", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "f946e4e0258242b896640896", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "28d0e4f42b6a470aa30b7200", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "202d39a491924a0daa209d80", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680547112243, "type": "emprestimo", @@ -62656,48 +92419,92 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "60bbbbd6ead64d21aabb5fd1", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "3dafb8c5ec5a483cb7b950de", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "b310dc2703da452db5d1e1be", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "68b0d6d15ac14cb29a8a5ca1", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "60b58dfdd109429eb3fd104e", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680547112243, "type": "emprestimo", @@ -62705,48 +92512,92 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8b9498563c8f488a8b4d6bcd", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "86d8828569cc448187e0e335", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "bb4bbf78d389438482e5c0a2", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6e3aa846096d422e84c4acd6", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7fa3717ef14845a0babb8da9", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680547112243, "type": "emprestimo", @@ -62754,48 +92605,92 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fea78a27d3b64db3bcb2cad1", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "878df50f1f164031bceb30e4", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "d18a7c71aed149f49d21dd0d", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2a70750d0fbf47b0bb6e1f6b", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "02917423549b469bafac7ce5", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1680547112243, "type": "emprestimo", @@ -62803,139 +92698,222 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00" + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "41beda3df96145779a876fe1", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", + "revision": "d156d204be6a455aa75005ae", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "36e276672b8a465b863cb1c0", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "94e27c298b10487896677f2d", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fb1b56217f5b4f49902fc7d2", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 1000, "limitUsed": 0, "analysisRequested": "2023-03-18T23:21:54.669Z", - "lastReview": "2023-03-19T21:24:27.910Z" + "lastReview": "2023-03-19T21:24:27.910Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1297a0f9c9734c41a9eb6532", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677859170230, "dateValidity": 1678919633238, "totalValue": 0.13, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5318860daad34d0a9a136358", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e7dd7ba800d648e78df52011", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "0.00000000", "symbol": "IVIP", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "19fd275f0ca546b1bed9bb2d", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2be55a5fce3647aa9f802a4d", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } + }, + "revision": "cd6a63d0386d499ca87f69cc", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -62944,47 +92922,69 @@ "total_amount": 20, "history_id": 1684156066045, "id": 1684156066045, - "date_created": "2023-05-15T13:07:46.045Z", - "date_last_updated": "2023-05-15T13:07:46.045Z", - "date_of_expiration": "2023-06-14T13:07:46.045Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 1115.9744.4051.0128-00" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "82a849e8e9d54a9884fc0d60", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { - "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281/details/costs", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1115.9744.4051.0128-00", + "revision": "f7c8fb9a153043e78c217d54", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } + }, + "revision": "8d3b8a73d5ac40159bcbfd6f", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -62993,47 +92993,69 @@ "total_amount": 100, "history_id": 1684156180281, "id": 1684156180281, - "date_created": "2023-05-15T13:09:40.281Z", - "date_last_updated": "2023-05-15T13:09:40.281Z", - "date_of_expiration": "2023-06-14T13:09:40.281Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7852007eb3904a14975807c6", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { - "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109/details/costs", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", + "revision": "ba731d0c4a55402f8c0754ac", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } + }, + "revision": "9b19622e2cdf47b2b7defcb6", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -63042,9 +93064,18 @@ "total_amount": 100, "history_id": 1684157124109, "id": 1684157124109, - "date_created": "2023-05-15T13:25:24.109Z", - "date_last_updated": "2023-05-15T14:49:20.711Z", - "date_of_expiration": "2023-06-14T13:25:24.109Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -63052,30 +93083,29 @@ "date_approved": "2023-05-15T14:49:20.711Z", "money_release_date": "2023-05-15T14:49:20.711Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2db3255ed94547ddadd396a1", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { - "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684667280508/details/costs", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", + "revision": "c19662f5564a4e618571b993", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684667280508/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684667280508, @@ -63086,18 +93116,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a323be01996445e59f2ea3b9", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684667280508", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -63107,9 +93150,18 @@ "original_amount": 487073, "total_amount": 487073, "id": 1684667280508, - "date_created": "2023-05-21T11:08:00.508Z", - "date_last_updated": "2023-05-21T11:08:00.508Z", - "date_of_expiration": "2023-05-21T11:08:00.508Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63118,38 +93170,41 @@ "history_id": 1684667280508, "description": "Compra de 487.073,00 IVIP por 100,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "78b7a8ebf5a54f6085e03293", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } + }, + "revision": "5227ae755b5f479d8d869ebb", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -63158,9 +93213,18 @@ "total_amount": 120, "history_id": 1685125796189, "id": 1685125796189, - "date_created": "2023-05-26T18:29:56.189Z", - "date_last_updated": "2023-05-27T10:47:37.369Z", - "date_of_expiration": "2023-06-25T18:29:56.189Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -63168,41 +93232,54 @@ "date_approved": "2023-05-27T10:47:37.369Z", "money_release_date": "2023-05-27T10:47:37.369Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 120,00 para a carteira iVip 1115.9744.4051.0128-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "45e566770fca493a9a733583", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { - "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781/details/costs", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 120,00 para a carteira iVip 1115.9744.4051.0128-00", + "revision": "89579165680442c3894beebe", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } + }, + "revision": "1e3eef68272943edb8995deb", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -63211,9 +93288,18 @@ "total_amount": 1410, "history_id": 1685203490781, "id": 1685203490781, - "date_created": "2023-05-27T16:04:50.781Z", - "date_last_updated": "2023-05-27T18:12:36.964Z", - "date_of_expiration": "2023-06-26T16:04:50.781Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -63221,30 +93307,29 @@ "date_approved": "2023-05-27T18:12:36.964Z", "money_release_date": "2023-05-27T18:12:36.964Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.410,00 para a carteira iVip 1115.9744.4051.0128-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1ab31dc001c746f997657f07", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { - "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685730135668/details/costs", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.410,00 para a carteira iVip 1115.9744.4051.0128-00", + "revision": "9024fb2f482a4b8090944f6f", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685730135668/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685730135668, @@ -63255,18 +93340,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "df5a519b082a48aba8957f04", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685730135668", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -63276,9 +93374,18 @@ "original_amount": 5206344, "total_amount": 5206344, "id": 1685730135668, - "date_created": "2023-06-02T18:22:15.668Z", - "date_last_updated": "2023-06-02T18:22:15.668Z", - "date_of_expiration": "2023-06-02T18:22:15.668Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63287,38 +93394,41 @@ "history_id": 1685730135668, "description": "Compra de 5.206.344,00 IVIP por 1.530,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e51d510646a241b580093f25", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } + }, + "revision": "452c633550964303ad741716", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -63327,9 +93437,18 @@ "total_amount": 100, "history_id": 1686621899168, "id": 1686621899168, - "date_created": "2023-06-13T02:04:59.168Z", - "date_last_updated": "2023-06-13T12:15:29.648Z", - "date_of_expiration": "2023-07-13T02:04:59.168Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -63337,30 +93456,29 @@ "date_approved": "2023-06-13T12:15:29.648Z", "money_release_date": "2023-06-13T12:15:29.648Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9d842e04bd6b44de89526102", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { - "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686792689847/details/costs", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", + "revision": "28dd1e59bdee43b3aa5e4719", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686792689847/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1686792689847, @@ -63371,18 +93489,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0d9540fbab9e4d9f819cf172", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686792689847", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -63392,9 +93523,18 @@ "original_amount": 637246, "total_amount": 637246, "id": 1686792689847, - "date_created": "2023-06-15T01:31:29.847Z", - "date_last_updated": "2023-06-15T01:31:29.847Z", - "date_of_expiration": "2023-06-15T01:31:29.847Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63403,27 +93543,16 @@ "history_id": 1686792689847, "description": "Compra de 637.246,00 IVIP por 100,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ccf717cdc61248379ba76533", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1688230681708/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1688230681708/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688230681708, @@ -63434,18 +93563,31 @@ "overpaid_amount": 0, "installment_amount": 5832008, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "45f0699bf7a04094a5ea9ca1", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1688230681708", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -63454,38 +93596,46 @@ "original_amount": 5832008, "total_amount": 5832008, "id": 1688230681708, - "date_created": "2023-07-01T16:58:01.708Z", - "date_last_updated": "2023-07-01T16:58:01.708Z", - "date_of_expiration": "2025-07-01T16:58:01.708Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1688230681708, - "description": "Investimento de 5.832.008,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/1/2025" + "history_id": 1688230681708 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0b9785527d76493e9a39a61a", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { - "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656/details/costs", + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1688230681708/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 5.832.008,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/1/2025", + "revision": "ee037395c5a74fe995e69865", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690233382656, "net_received_amount": 0, @@ -63495,18 +93645,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/111597444051012800/history/1690233382656" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "133097164f664c269fa1bca4", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/111597444051012800/history/1690233382656", + "revision": "2e14115b83f84effafb02577", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -63515,9 +93688,18 @@ "total_amount": 498655, "id": 1690233382656, "history_id": 1690233382656, - "date_created": "2023-07-24T21:16:22.656Z", - "date_last_updated": "2023-07-26T19:13:04.450Z", - "date_of_expiration": "2023-07-24T21:16:22.656Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -63527,196 +93709,269 @@ "date_approved": "2023-07-26T19:13:04.450Z", "money_release_date": "2023-07-26T19:13:04.450Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 498.655,00 IVIP para a carteira 0x31608012D8205A2BE2AaDBE2c528d75de71a36E8" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c1467ac26eed4464b5753190", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656/description", + "content": { + "type": "STRING", + "value": "Saque de 498.655,00 IVIP para a carteira 0x31608012D8205A2BE2AaDBE2c528d75de71a36E8", + "revision": "0d74999ebf6d41da88ae1310", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dab7960f1d9c4321b334ee3e", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fda2735bb8214ba28a6ca924", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "105d0b424b0d4700a66aff50", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684155865709, "dateValidity": 1684155865709, "totalValue": 22.552945262588203, "currencyType": "USD", - "balancesModificacao": 1691060735628 + "balancesModificacao": 1691060735628, + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1dbecb4bf8a94641a202113a", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/112180841461099860/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a387085b20db47b5bd3f67c2", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/112180841461099860/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6073b541c4074453907bdcf3", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/112180841461099860", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1689619740886, "dateValidity": 1689619740886, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a004c46cc87a4a4182480b7e", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/112268931101963340/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9480e0ccc974488c9f57b892", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/112268931101963340/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ebb4ac022c0f45e7a33d0ebc", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/112268931101963340", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677432431553, "dateValidity": 1677432431553, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b1b414d4ff854918b34d5e34", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "5721757.00000000", "symbol": "IVIP", - "value": 612.41 + "value": 612.41, + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "db916ece2edb4ed5b4d4810e", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ec16e8623be64ac4a34e4dd0", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } + }, + "revision": "3e90baab81f44d36873ca651", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -63725,9 +93980,18 @@ "total_amount": 1600, "history_id": 1677943939458, "id": 1677943939458, - "date_created": "2023-03-04T15:32:19.458Z", - "date_last_updated": "2023-03-04T20:44:06.599Z", - "date_of_expiration": "2023-04-03T15:32:19.458Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -63735,30 +93999,29 @@ "date_approved": "2023-03-04T20:44:06.599Z", "money_release_date": "2023-03-04T20:44:06.599Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.600,00 para a carteira iVip 1127.2038.0478.0658-70" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "73e1ef25550e4e6faf9acfff", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { - "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1678154526038/details/costs", + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 1127.2038.0478.0658-70", + "revision": "60e0eeae5a1146b3a8fbe2d3", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1678154526038/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678154526038, @@ -63769,18 +94032,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "21ed0fa2d0e04e74acc791bf", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1678154526038", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -63790,9 +94066,18 @@ "original_amount": 11445515, "total_amount": 11445515, "id": 1678154526038, - "date_created": "2023-03-07T02:02:06.038Z", - "date_last_updated": "2023-03-07T02:02:06.038Z", - "date_of_expiration": "2023-03-07T02:02:06.038Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63801,38 +94086,41 @@ "history_id": 1678154526038, "description": "Compra de 11445515 IVIP por 1600 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4f808a5a2a344b40b01afbcb", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } + }, + "revision": "43112a8bb43f461da68829d4", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -63841,36 +94129,44 @@ "total_amount": 1766725, "history_id": 1689270623353, "id": 1689270623353, - "date_created": "2023-07-13T17:50:23.353Z", - "date_last_updated": "2023-07-13T17:50:23.353Z", - "date_of_expiration": "2023-07-13T17:50:23.353Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 1.766.725,00 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f178d04b0de64f21a6f91bab", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { - "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254/details/costs", + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 1.766.725,00 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", + "revision": "1e0af1c01f074b1a8f8b243a", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690310464254, "net_received_amount": 0, @@ -63880,18 +94176,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1690310464254" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "829764b7a7d84bcab8b186e9", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1690310464254", + "revision": "244b78a593024ff1b5051904", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -63900,9 +94219,18 @@ "total_amount": 1000, "id": 1690310464254, "history_id": 1690310464254, - "date_created": "2023-07-25T18:41:04.254Z", - "date_last_updated": "2023-07-26T17:38:50.972Z", - "date_of_expiration": "2023-07-25T18:41:04.254Z", + "date_created": { + "type": 6, + "value": 1701459383530 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383530 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383530 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -63912,34 +94240,56 @@ "date_approved": "2023-07-26T17:38:50.972Z", "money_release_date": "2023-07-26T17:38:50.972Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 1.000,00 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0621b8d1388a4b0d8e554e55", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383530, + "modified": 1701459383530 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254/description", + "content": { + "type": "STRING", + "value": "Saque de 1.000,00 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", + "revision": "c1f97dd7f6024437bd0950e3", + "revision_nr": 1, + "created": 1701459383530, + "modified": 1701459383530 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 171682.74 + "amount": 171682.74, + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c6b9c609a2a74cbda3ff5c45", "revision_nr": 1, - "created": 1700748395497, - "modified": 1700748395497 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695843073185, "net_received_amount": 0, @@ -63949,18 +94299,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1695843073185" + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f5bf7fdb425346e38d9ac711", + "revision_nr": 1, + "created": 1701459383531, + "modified": 1701459383531 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1695843073185", + "revision": "b213e5b947f640b089322894", + "revision_nr": 1, + "created": 1701459383531, + "modified": 1701459383531 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "f3094feb8dc34442a134e02b", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -63970,9 +94353,18 @@ "total_amount": 5551075.26, "id": "1695843073185", "history_id": "1695843073185", - "date_created": "2023-09-27T19:31:13.185Z", - "date_last_updated": "2023-10-05T13:48:58.903Z", - "date_of_expiration": "2023-09-27T19:31:13.185Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -63981,34 +94373,56 @@ "status_detail": "cc_rejected_other_reason", "money_release_date": "2023-10-05T13:48:58.903Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Saque de 5.551.075,26 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f95dcf5c65024049bf91b434", + "revision_nr": 1, + "created": 1701459383531, + "modified": 1701459383531 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/description", + "content": { + "type": "STRING", + "value": "Saque de 5.551.075,26 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", + "revision": "096dc85785f34c82b38d0e94", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 171682.74 + "amount": 171682.74, + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1342a143f3c344d49547e88d", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695843125867, "net_received_amount": 0, @@ -64018,18 +94432,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1695843125867" + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "38eb79c839dc4c059ca24102", + "revision_nr": 1, + "created": 1701459383531, + "modified": 1701459383531 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1695843125867", + "revision": "6d48a94416e74e07839fd79d", + "revision_nr": 1, + "created": 1701459383531, + "modified": 1701459383531 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "8505046e830f44eab723bdf6", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -64039,9 +94486,18 @@ "total_amount": 5551075.26, "id": "1695843125867", "history_id": "1695843125867", - "date_created": "2023-09-27T19:32:05.867Z", - "date_last_updated": "2023-10-02T23:17:29.131Z", - "date_of_expiration": "2023-09-27T19:32:05.867Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -64051,455 +94507,672 @@ "date_approved": "2023-10-02T23:17:29.131Z", "money_release_date": "2023-10-02T23:17:29.131Z", "money_release_status": "drawee", - "wasDebited": true, - "description": "Saque de 5.551.075,26 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c22b7565ddcf42cfab27f859", + "revision_nr": 1, + "created": 1701459383531, + "modified": 1701459383531 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/description", + "content": { + "type": "STRING", + "value": "Saque de 5.551.075,26 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", + "revision": "dc5dd026274547ebab801477", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "48729c40132d4d13986db580", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "33f0a023155f4601a20fa9b6", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5e30b44d434f4f838bc70047", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677943677925, "dateValidity": 1678919503018, "totalValue": 308.8, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z" + "balancesModificacao": "2023-10-16T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1399490266524333aeeac88c", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113397082035573860/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "28e09dc2b405438a904580f9", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113397082035573860/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "171289ce001f4c2cb9af14d1", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113397082035573860/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1f3a49263ebd49409742f648", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113397082035573860/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2de7b997299b47428d12e8b3", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113397082035573860", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684093885315, "dateValidity": 1684093885315, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6c94c0e96ad3437bbdb80c13", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fd32fd090bb14dbc9e071220", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BNB", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "BNB", "value": 329390, - "available": "1000.00000000" + "available": "1000.00000000", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4bfe3c298e6d4198807863d4", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BTC", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "BTC", "value": 24969.54, - "available": "1.00000000" + "available": "1.00000000", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6f0eee382fcf44338b5edb92", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BUSD", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "BUSD", "value": 10000, - "available": "10000.00000000" + "available": "10000.00000000", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1a858881f81940dfb66ee6c2", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/ETH", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "ETH", "value": 168116, - "available": "100.00000000" + "available": "100.00000000", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4117977eca184db2986cff03", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/LTC", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "LTC", "value": 39525, - "available": "500.00000000" + "available": "500.00000000", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "68e18a5e5922431981e12158", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/TRX", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "TRX", "value": 32965, - "available": "500000.00000000" + "available": "500000.00000000", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "67c5819b025b4d1ca6547a08", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/USDT", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "USDT", "value": 10020, - "available": "10000.00000000" + "available": "10000.00000000", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e41c439f0e9f4aa3894bec14", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/XRP", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "XRP", "value": 18315, - "available": "50000.00000000" + "available": "50000.00000000", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a0dcb196f2e241ad8880169a", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ec618404f04c45b5b61b2100", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678997585705, "dateValidity": 1679015574916, "totalValue": 633300.54, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ac8d3f02799d4a9c86e90281", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113679410552544270/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "58aa3fbaea4741cb97135f9b", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113679410552544270/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8c8e5878f57344ab9ad2c1dc", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113679410552544270", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677932902892, "dateValidity": 1678217961007, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "40aada2ab9dd4e059a3a572b", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113719047968885220/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4f5cd7f7ed204332b4378d3b", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113719047968885220/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9d2d486ef41b4171aaf26048", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/113719047968885220", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678200529926, "dateValidity": 1678214929961, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "21caea437b7c4feca4070d9c", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/114964316693074270/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0925d6b524234a52975a3830", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/114964316693074270/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0a6a820a5996492894dea7c1", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/114964316693074270", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1680104445044, "dateValidity": 1680104445044, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3a472422699c44b79296b8e1", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "1000000.88000000", "symbol": "IVIP", - "value": 106.42 + "value": 106.42, + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bd39d18781a54650abe57e12", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "31228139c7474eda9b2dd0f7", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } + }, + "revision": "0859f1ac1c6148379113bac2", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -64508,9 +95181,18 @@ "total_amount": 1500, "history_id": 1689207673127, "id": 1689207673127, - "date_created": "2023-07-13T00:21:13.127Z", - "date_last_updated": "2023-07-13T12:12:30.894Z", - "date_of_expiration": "2023-08-12T00:21:13.127Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -64518,30 +95200,29 @@ "date_approved": "2023-07-13T12:12:30.894Z", "money_release_date": "2023-07-13T12:12:30.894Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1154.3638.5305.7469-60" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "006a67e5428540d9b4169f37", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { - "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689260591470/details/costs", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1154.3638.5305.7469-60", + "revision": "630651148ae84ce080172ac7", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689260591470/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689260591470, @@ -64552,18 +95233,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3300389c4d0541eb84f89381", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689260591470", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -64573,9 +95267,18 @@ "original_amount": 593666, "total_amount": 593666, "id": 1689260591470, - "date_created": "2023-07-13T15:03:11.470Z", - "date_last_updated": "2023-07-13T15:03:11.470Z", - "date_of_expiration": "2023-07-13T15:03:11.470Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64584,41 +95287,42 @@ "history_id": 1689260591470, "description": "Compra de 593.666,00 IVIP por 1.500,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5de5d9b5a0c046a6a8b34a67", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-19T16:57:31.151Z" + ".val": "2023-08-19T16:57:31.151Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e27aea91e14649948eb0706d", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1689872251156, "net_received_amount": 0, @@ -64628,18 +95332,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/extract/115436385305746960/order/1689872251151" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d68fe70a36934b1aa4d5f51b", + "revision_nr": 1, + "created": 1701459383531, + "modified": 1701459383531 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/extract/115436385305746960/order/1689872251151", + "revision": "f8716c0b5e64477abd2f16c9", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -64648,51 +95375,72 @@ "total_amount": 650, "id": 1689872251156, "history_id": 1689872251156, - "date_created": "2023-07-20T16:57:31.156Z", - "date_last_updated": "2023-07-20T16:57:31.156Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor R$ 650,00 para a carteira iVip 1154.3638.5305.7469-60" + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "998fa2a8084d4d92b53c6bca", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { - "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-08-24T18:51:46.238Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 650,00 para a carteira iVip 1154.3638.5305.7469-60", + "revision": "df12fab23a1a4b378fce9bdf", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { - "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/details/costs", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-08-24T18:51:46.238Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } + }, + "revision": "dd264261c33a4bc7bbf84d1c", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690311106238, "net_received_amount": 0, @@ -64702,18 +95450,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1690311106238" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0ab11b1db1ae4d6ba689e8d0", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1690311106238", + "revision": "16bb017584bb4b41be6f152d", + "revision_nr": 1, + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -64722,8 +95493,14 @@ "total_amount": 650, "id": 1690311106238, "history_id": 1690311106238, - "date_created": "2023-07-25T18:51:46.238Z", - "date_last_updated": "2023-07-25T18:55:05.225Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64734,29 +95511,32 @@ "money_release_date": "2023-07-25T18:55:05.225Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor R$ 650,00 para a carteira iVip 1154.3638.5305.7469-60" + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4b85a9dc7e2e4361ae7b7dcb", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { - "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311787862/details/costs", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 650,00 para a carteira iVip 1154.3638.5305.7469-60", + "revision": "b06dd89d49184763bf4ac63f", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311787862/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1690311787862, @@ -64767,18 +95547,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ddcdee0c33e4444c9ee79f1d", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311787862", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -64788,9 +95581,18 @@ "original_amount": 526109, "total_amount": 526109, "id": 1690311787862, - "date_created": "2023-07-25T19:03:07.862Z", - "date_last_updated": "2023-07-25T19:03:07.862Z", - "date_of_expiration": "2023-07-25T19:03:07.862Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64799,27 +95601,16 @@ "history_id": 1690311787862, "description": "Compra de 526.109,00 IVIP por 650,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dc90988392874534a0b26f3a", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691353182696, "net_received_amount": 0, @@ -64829,18 +95620,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691353182696" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5293c5f3e87b45fbae0d8f7a", + "revision_nr": 1, + "created": 1701459383531, + "modified": 1701459383531 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691353182696", + "revision": "75c6b6de156045aab8827d32", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -64849,52 +95663,72 @@ "total_amount": 1119775, "id": 1691353182696, "history_id": 1691353182696, - "date_created": "2023-08-06T20:19:42.696Z", - "date_last_updated": "2023-08-06T20:19:42.696Z", - "date_of_expiration": "2023-09-06T20:19:42.695Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 1.119.775,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/6/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1536fad22cd5468580ac9916", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { - "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-10T12:16:37.423Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.119.775,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/6/2023", + "revision": "f50841786c3d4290a67d5a31", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { - "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/details/costs", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-10T12:16:37.423Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } + }, + "revision": "372e4433dd64491383b8f89d", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691756197423, "net_received_amount": 0, @@ -64904,18 +95738,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691756197423" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0a026b2366ce4c4d8b53a978", + "revision_nr": 1, + "created": 1701459383531, + "modified": 1701459383531 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691756197423", + "revision": "1f517531e4cf4824a46abf8d", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -64924,8 +95781,14 @@ "total_amount": 500, "id": 1691756197423, "history_id": 1691756197423, - "date_created": "2023-08-11T12:16:37.423Z", - "date_last_updated": "2023-08-11T13:36:00.390Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64936,29 +95799,32 @@ "money_release_date": "2023-08-11T13:36:00.390Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 500,00 para a carteira iVip 1154.3638.5305.7469-60" + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ca30e85631f24252b4df8604", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { - "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691761354889/details/costs", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 500,00 para a carteira iVip 1154.3638.5305.7469-60", + "revision": "c41fea27b38d4b3199d70013", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691761354889/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691761354889, "net_received_amount": 0, @@ -64968,18 +95834,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691761354889" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "39e0bb5aecff46149d781add", + "revision_nr": 1, + "created": 1701459383531, + "modified": 1701459383531 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691761354889/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691761354889", + "revision": "cbdb01215d334490b1acb70e", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691761354889", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -64988,9 +95877,18 @@ "total_amount": 917399, "id": 1691761354889, "history_id": 1691761354889, - "date_created": "2023-08-11T13:42:34.889Z", - "date_last_updated": "2023-08-11T13:42:34.889Z", - "date_of_expiration": "2023-08-11T13:42:34.889Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -64999,27 +95897,16 @@ "description": "Compra de 917.399,00 IVIP por 500,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6bda67661ccc4d82aea7462f", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694032195852, "net_received_amount": 0, @@ -65029,18 +95916,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1694032195852" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2f354d119654494fb1d1fdf2", + "revision_nr": 1, + "created": 1701459383531, + "modified": 1701459383531 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1694032195852", + "revision": "77bec79b5b174193aa636537", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -65049,38 +95959,46 @@ "total_amount": 1142170.5, "id": "1694032195852", "history_id": "1694032195852", - "date_created": "2023-09-06T20:29:55.852Z", - "date_last_updated": "2023-09-06T20:29:55.852Z", - "date_of_expiration": "2023-09-06T20:29:55.852Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 1.119.775,00 IVIP com um rendimento de +22.395,5 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dee1773a3714443a911de874", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { - "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454/details/costs", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 1.119.775,00 IVIP com um rendimento de +22.395,5 IVIP (2,00%) - Y12XDT27", + "revision": "2e542733682b40c982a71dea", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694041733454, "net_received_amount": 0, @@ -65090,18 +96008,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1694041733454" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9e54090373fd45e5ae5f61fc", + "revision_nr": 1, + "created": 1701459383531, + "modified": 1701459383531 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1694041733454", + "revision": "ca9b1f510da6451cb84b8809", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -65110,38 +96051,46 @@ "total_amount": 2059569, "id": "1694041733454", "history_id": "1694041733454", - "date_created": "2023-09-06T23:08:53.454Z", - "date_last_updated": "2023-09-06T23:08:53.454Z", - "date_of_expiration": "2023-10-06T23:08:53.454Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 2.059.569,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/10/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ab888d75b6e94063b6f50a3c", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { - "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454/details/costs", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 2.059.569,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/10/2023 - Y12XDT27", + "revision": "993b79d71b2c40188d3e4467", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696633733454", "net_received_amount": 0, @@ -65151,18 +96100,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1696633733454" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e765c29422034d659bf8023a", + "revision_nr": 1, + "created": 1701459383531, + "modified": 1701459383531 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1696633733454", + "revision": "c70ac90f862d481a9225fbfb", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -65172,38 +96144,46 @@ "total_amount": 2100760.38, "id": "1696633733454", "history_id": "1696633733454", - "date_created": "2023-10-07T05:04:51.607Z", - "date_last_updated": "2023-10-07T05:04:51.607Z", - "date_of_expiration": "2023-10-07T05:04:51.607Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 2.059.569,00 IVIP com um rendimento de +41.191,38 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c41e5f63449244518c58480b", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { - "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975/details/costs", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 2.059.569,00 IVIP com um rendimento de +41.191,38 IVIP (2,00%) - Y12XDT27", + "revision": "e2f42811f180453ca9d61ca7", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1696668184975", "net_received_amount": 0, @@ -65213,18 +96193,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1696668184975" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b3029a19df35414a933e0ef4", + "revision_nr": 1, + "created": 1701459383531, + "modified": 1701459383531 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1696668184975", + "revision": "2f80343f66444311ac694450", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -65234,52 +96237,72 @@ "total_amount": 1100760, "id": "1696668184975", "history_id": "1696668184975", - "date_created": "2023-10-07T08:43:04.975Z", - "date_last_updated": "2023-10-07T08:43:04.975Z", - "date_of_expiration": "2023-11-07T08:43:04.935Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 1.100.760,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 07/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f82afdaa2ed9411eac46986c", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { - "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-11-12T13:25:25.577Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.100.760,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 07/11/2023 - Y12XDT27", + "revision": "59ccebbe6e22494b9757aeee", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { - "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/details/costs", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-11-12T13:25:25.577Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } + }, + "revision": "91ca289da099440aabd269ad", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1697203525578", "net_received_amount": 0, @@ -65289,18 +96312,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1697203525578" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "11c09883df354ae496b21ac1", + "revision_nr": 1, + "created": 1701459383531, + "modified": 1701459383531 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1697203525578", + "revision": "d8600f5f298a4d07b752822f", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -65310,8 +96356,14 @@ "total_amount": 1600, "id": "1697203525578", "history_id": "1697203525578", - "date_created": "2023-10-13T13:25:25.578Z", - "date_last_updated": "2023-10-13T13:32:21.571Z", + "date_created": { + "type": 6, + "value": 1701459383531 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383531 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65322,29 +96374,32 @@ "money_release_date": "2023-10-13T13:32:21.571Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 1.600,00 BRL para a carteira iVip 1154.3638.5305.7469-60" + "date_of_expiration": { + "type": 6, + "value": 1701459383531 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7f471661c8ad41d6a788f33c", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { - "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697204057820/details/costs", + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 1.600,00 BRL para a carteira iVip 1154.3638.5305.7469-60", + "revision": "0a5e6e46b6f348d6979de864", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383531, + "modified": 1701459383531 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697204057820/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1697204057820", "net_received_amount": 0, @@ -65354,18 +96409,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1697204057820" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4c5c6204909c486983c48828", + "revision_nr": 1, + "created": 1701459383532, + "modified": 1701459383532 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697204057820/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1697204057820", + "revision": "c34187f4a80f42b19961cc7d", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697204057820", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -65375,9 +96453,18 @@ "total_amount": 2947170, "id": "1697204057820", "history_id": "1697204057820", - "date_created": "2023-10-13T13:34:17.820Z", - "date_last_updated": "2023-10-13T13:34:17.820Z", - "date_of_expiration": "2023-10-13T13:34:17.820Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -65386,181 +96473,244 @@ "description": "Compra de 2.947.170,00 IVIP por 1.600,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1c7a5271d66f46ada85c7912", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7682787f0b7a477e9b1181da", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a5da1ab8422546e98e42350f", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-09-29T12:24:00.020Z" + "analysisRequested": "2023-09-29T12:24:00.020Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "45605e10203b4378a33b1a7e", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1689197249139, "dateValidity": 1689197249139, "totalValue": 309.3, "currencyType": "USD", - "balancesModificacao": "2023-10-13T03:00:00.000Z" + "balancesModificacao": "2023-10-13T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2c75cf98853849808f88125b", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/115766338093199020/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "faa0b40554e34e7eb58777ee", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/115766338093199020/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b93a1f0e70174417bc8060f1", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/115766338093199020", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1679078083825, "dateValidity": 1679078083825, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d441f3baae704e629b327f91", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0b2cec9c190843bbae19eba0", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9185c67e4e004db7be77ebb8", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "36743092.00000000", "symbol": "IVIP", - "value": 7620.42 + "value": 7620.42, + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0503efd029ef43a68e6f5bb4", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "09358b3e0b144b6f8bf85afa", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } + }, + "revision": "01449e121b5d49c9a6b24cea", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -65569,9 +96719,18 @@ "total_amount": 10000, "history_id": 1685463962891, "id": 1685463962891, - "date_created": "2023-05-30T16:26:02.891Z", - "date_last_updated": "2023-05-30T17:41:26.567Z", - "date_of_expiration": "2023-06-29T16:26:02.891Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -65579,30 +96738,29 @@ "date_approved": "2023-05-30T17:41:26.567Z", "money_release_date": "2023-05-30T17:41:26.567Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1162.6149.5252.0901-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a8f63ee9c977483e9b152c24", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { - "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1688996128425/details/costs", + "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1162.6149.5252.0901-80", + "revision": "88453f0886144408889b6528", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1688996128425/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688996128425, @@ -65613,18 +96771,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0cf44a350fcd409a8833d2db", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1688996128425", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -65634,9 +96805,18 @@ "original_amount": 36743092, "total_amount": 36743092, "id": 1688996128425, - "date_created": "2023-07-10T13:35:28.425Z", - "date_last_updated": "2023-07-10T13:35:28.425Z", - "date_of_expiration": "2023-07-10T13:35:28.425Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65645,192 +96825,255 @@ "history_id": 1688996128425, "description": "Compra de 36.743.092,00 IVIP por 10.000,70 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "643babc5ea214f79ac0f9381", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "180a98abcc48419aaa839378", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1685463582486, "dateValidity": 1685463582486, "totalValue": 5105.87, "currencyType": "USD", - "balancesModificacao": "2023-10-02T03:00:00.000Z" + "balancesModificacao": "2023-10-02T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "570259839d684ef986a6407b", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/116696192475580050/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "95a73ef52d7c4ea08e4e38d1", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/116696192475580050/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6718e03891e5419fab6afbde", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/116696192475580050/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "96b21bb6ef3043c5b90aaa42", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/116696192475580050/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c32ee374fe1547bd807aed8c", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/116696192475580050", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678753662620, "dateValidity": 1678768062657, - "totalValue": 0 + "totalValue": 0, + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "be537a45112441dc8552adda", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117188412170673220/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "162515cf43d84f3cb7ce5250", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117188412170673220/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ed3e6ba823e6423584b0c843", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117188412170673220", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678532146149, "dateValidity": 1678546546189, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "818c3aad6a6b4e03a42a1cf0", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "0.70000000", "symbol": "IVIP", - "value": 0.00037 + "value": 0.00037, + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "06d28701ba424a0987b3f6f7", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0e69992f819e4bc08f9d1245", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } + }, + "revision": "14520c172df344d0966ad0e9", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -65839,9 +97082,18 @@ "total_amount": 200, "history_id": 1677877705308, "id": 1677877705308, - "date_created": "2023-03-03T21:08:25.308Z", - "date_last_updated": "2023-03-03T21:16:05.656Z", - "date_of_expiration": "2023-04-02T21:08:25.308Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -65849,30 +97101,29 @@ "date_approved": "2023-03-03T21:16:05.656Z", "money_release_date": "2023-03-03T21:16:05.656Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 1177.1880.3693.7100-20" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c7f359bc64c04e25837de0c3", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1678145189537/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1177.1880.3693.7100-20", + "revision": "dd8cb03d9e71413f9ac7fb7c", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1678145189537/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678145189537, @@ -65883,18 +97134,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d8372b147ccd4ccf958e1145", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1678145189537", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -65904,9 +97168,18 @@ "original_amount": 1428465, "total_amount": 1428465, "id": 1678145189537, - "date_created": "2023-03-06T23:26:29.537Z", - "date_last_updated": "2023-03-06T23:26:29.537Z", - "date_of_expiration": "2023-03-06T23:26:29.537Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65915,38 +97188,41 @@ "history_id": 1678145189537, "description": "Compra de 1428465 IVIP por 200 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6d39c0ecc5354352b6895b5b", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } + }, + "revision": "d065d14152c846419504f88d", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -65955,47 +97231,69 @@ "total_amount": 2000, "history_id": 1683395429062, "id": 1683395429062, - "date_created": "2023-05-06T17:50:29.062Z", - "date_last_updated": "2023-05-06T17:50:29.062Z", - "date_of_expiration": "2023-06-05T17:50:29.062Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1177.1880.3693.7100-20" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "04a70eb3f18243e9aa4db8de", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1177.1880.3693.7100-20", + "revision": "e998a2b374bc488f98c88a23", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } + }, + "revision": "96321a07e4d84dcfa2a44b1d", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -66004,9 +97302,18 @@ "total_amount": 350, "history_id": 1684179573429, "id": 1684179573429, - "date_created": "2023-05-15T19:39:33.429Z", - "date_last_updated": "2023-05-15T20:13:31.494Z", - "date_of_expiration": "2023-06-14T19:39:33.429Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -66014,45 +97321,78 @@ "date_approved": "2023-05-15T20:13:31.494Z", "money_release_date": "2023-05-15T20:13:31.494Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 350,00 para a carteira iVip 1177.1880.3693.7100-20" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3daab41978eb4430a5e7edbc", + "revision_nr": 1, + "created": 1701459383532, + "modified": 1701459383532 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 350,00 para a carteira iVip 1177.1880.3693.7100-20", + "revision": "f2fb747ff83d43099f359be2", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 6.00%", - "amount": 60 + "amount": 60, + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "79332dab05ee4cf2980cf81f", "revision_nr": 1, - "created": 1700748395498, - "modified": 1700748395498 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d915d3841f8c4017a0a175b6", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "e29ee5c16cf64f429b1b13c6", + "revision_nr": 1, + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -66061,37 +97401,45 @@ "total_amount": 1060, "history_id": 1684182120706, "id": 1684182120706, - "date_created": "2023-05-15T20:22:00.706Z", - "date_last_updated": "2023-05-15T20:22:00.706Z", - "date_of_expiration": "2023-06-14T20:22:00.706Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "14bb7b3744424d19b7c1b2a7", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684624218931/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", + "revision": "bb01430b1a08448fbe6b86d6", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684624218931/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624218931, @@ -66102,18 +97450,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fa81f0bbe96f4b7ca022c7ad", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684624218931", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -66123,9 +97484,18 @@ "original_amount": 6575487, "total_amount": 6575487, "id": 1684624218931, - "date_created": "2023-05-20T23:10:18.931Z", - "date_last_updated": "2023-05-20T23:10:18.931Z", - "date_of_expiration": "2023-05-20T23:10:18.931Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -66134,38 +97504,41 @@ "history_id": 1684624218931, "description": "Compra de 6.575.487,00 IVIP por 1.350,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8ef8c55a641f47cfb1f71b95", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } + }, + "revision": "af1752b0705148f893b35ce8", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -66174,47 +97547,69 @@ "total_amount": 2982650, "history_id": 1685388624157, "id": 1685388624157, - "date_created": "2023-05-29T19:30:24.157Z", - "date_last_updated": "2023-05-29T19:30:24.157Z", - "date_of_expiration": "2023-05-29T19:30:24.157Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 2.982.650,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4994894fbd1d4cb391415420", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 2.982.650,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "0e8bdc0b54564e9487977bc3", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } + }, + "revision": "7fbadba3100b48bbaaa63432", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -66223,36 +97618,44 @@ "total_amount": 8003952, "history_id": 1685389940740, "id": 1685389940740, - "date_created": "2023-05-29T19:52:20.740Z", - "date_last_updated": "2023-05-29T19:52:20.740Z", - "date_of_expiration": "2023-05-29T19:52:20.740Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 8.003.952,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cefa6946ace6482092b385e8", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685665639073/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 8.003.952,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "b30c00a8d6784d169e4de981", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685665639073/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685665639073, @@ -66263,18 +97666,31 @@ "overpaid_amount": 0, "installment_amount": 3568754, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9ce2237db7864860b6c316cc", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685665639073", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -66283,39 +97699,47 @@ "original_amount": 3568754, "total_amount": 3568754, "id": 1685665639073, - "date_created": "2023-06-02T00:27:19.073Z", - "date_last_updated": "2023-06-02T00:27:19.073Z", - "date_of_expiration": "2023-07-02T00:27:19.073Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1685665639073, - "wasDebited": true, - "description": "Investimento de 3.568.754,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d954215168f54010b59cdd29", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685668997292/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685665639073/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 3.568.754,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", + "revision": "b41b75eebf2b433382e119df", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685668997292/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685668997292, @@ -66326,18 +97750,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "13db97b8fa9f44e4a8b49bc5", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685668997292", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -66346,38 +97783,46 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685668997292, - "date_created": "2023-06-02T01:23:17.292Z", - "date_last_updated": "2023-06-02T01:23:17.292Z", - "date_of_expiration": "2023-12-02T01:23:17.292Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685668997292, - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023" + "history_id": 1685668997292 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "81cdd5942b8d4f00bb570fa0", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669010794/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685668997292/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", + "revision": "b95c5e60519e4b7ba98dadf7", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669010794/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685669010794, @@ -66388,18 +97833,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3152b788315143329a119398", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669010794", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -66408,38 +97866,46 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685669010794, - "date_created": "2023-06-02T01:23:30.794Z", - "date_last_updated": "2023-06-02T01:23:30.794Z", - "date_of_expiration": "2024-06-02T01:23:30.794Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685669010794, - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024" + "history_id": 1685669010794 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "271972b2a8914d108bb6ce40", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669017906/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669010794/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", + "revision": "2ffa079a78df4442bac0ab12", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669017906/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685669017906, @@ -66450,18 +97916,31 @@ "overpaid_amount": 0, "installment_amount": 1000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cc40d53f0b204fcab2b09218", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669017906", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -66470,49 +97949,71 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685669017906, - "date_created": "2023-06-02T01:23:37.906Z", - "date_last_updated": "2023-06-02T01:23:37.906Z", - "date_of_expiration": "2025-06-02T01:23:37.906Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685669017906, - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025" + "history_id": 1685669017906 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e45c11c2ca234c0b8a61180a", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669017906/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", + "revision": "35356de6f5ee47b6b572821c", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } + }, + "revision": "9ea80c24f12b45d7a6deaf14", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -66521,47 +98022,69 @@ "total_amount": 470112, "history_id": 1686742076839, "id": 1686742076839, - "date_created": "2023-06-14T11:27:56.839Z", - "date_last_updated": "2023-06-14T11:27:56.839Z", - "date_of_expiration": "2023-06-14T11:27:56.839Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 470.112,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9293bab87a6d44f0aefdbed3", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 470.112,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "37b5f00eeef842fba3110bf5", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } + }, + "revision": "f183d6af3bf14db0a0920368", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -66570,47 +98093,69 @@ "total_amount": 530, "history_id": 1686831828859, "id": 1686831828859, - "date_created": "2023-06-15T12:23:48.859Z", - "date_last_updated": "2023-06-15T12:23:48.859Z", - "date_of_expiration": "2023-07-15T12:23:48.859Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0baa31e0ef4940878d8926c2", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", + "revision": "79306493a99d4b689b16c40e", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } + }, + "revision": "308dfe8458d14def921341bf", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -66619,9 +98164,18 @@ "total_amount": 530, "history_id": 1686831937569, "id": 1686831937569, - "date_created": "2023-06-15T12:25:37.569Z", - "date_last_updated": "2023-06-15T14:10:38.027Z", - "date_of_expiration": "2023-07-15T12:25:37.569Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -66629,30 +98183,29 @@ "date_approved": "2023-06-15T14:10:38.027Z", "money_release_date": "2023-06-15T14:10:38.027Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6f9e9480e5e343a283f08eb7", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838699070/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", + "revision": "1dc51f2126b24f72bd089c5f", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838699070/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -66665,18 +98218,31 @@ "overpaid_amount": 0, "installment_amount": 530, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "268069167a4c4179a5515c0a", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838699070", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -66687,49 +98253,71 @@ "total_amount": 530, "id": 1686838699070, "contract_id": "1684182120706", - "date_created": "2023-06-15T14:18:19.070Z", - "date_last_updated": "2023-06-15T14:18:19.070Z", - "date_of_expiration": "2023-06-15T14:18:19.070Z", + "date_created": { + "type": 6, + "value": 1701459383532 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383532 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383532 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1686838699070, - "description": "Pagamento de fatura 1 de 2 no valor de 530,00 BRL referente ao contrato 1684182120706" + "history_id": 1686838699070 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1cd798a8d81d4ad5b4713ec9", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838699070/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 2 no valor de 530,00 BRL referente ao contrato 1684182120706", + "revision": "1ce0020088fe4dc5b0f8e716", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383532, + "modified": 1701459383532 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } + }, + "revision": "d6962c07ff6b4d6ba79094c8", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -66738,36 +98326,44 @@ "total_amount": 3897629, "history_id": 1686838872989, "id": 1686838872989, - "date_created": "2023-06-15T14:21:12.989Z", - "date_last_updated": "2023-06-15T14:21:12.989Z", - "date_of_expiration": "2023-06-15T14:21:12.989Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 3.897.629,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6aa0bcd4dd4d4254bae8f909", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688400243137/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 3.897.629,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "99cec4156ae74dcb99a3a32a", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688400243137/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688400243137, @@ -66778,18 +98374,31 @@ "overpaid_amount": 0, "installment_amount": 3568754, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4bd6245faa0a4cf2b8dce28d", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688400243137", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -66798,50 +98407,72 @@ "original_amount": 3640129.08, "total_amount": 3640129.08, "id": 1688400243137, - "date_created": "2023-07-03T16:04:03.137Z", - "date_last_updated": "2023-07-03T16:04:03.137Z", - "date_of_expiration": "2023-07-03T16:04:03.137Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1688400243137, - "wasDebited": true, - "description": "Resgate do investimento staking de 3.568.754,00 IVIP com um rendimento de +71.375,08 IVIP (2,00%)" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5fde616a2b8747b2a30364f1", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688400243137/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 3.568.754,00 IVIP com um rendimento de +71.375,08 IVIP (2,00%)", + "revision": "0fdc92bc1f8a4d8299d42afc", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } + }, + "revision": "39e22f98fee249a4a9ad791f", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -66850,47 +98481,69 @@ "total_amount": 4926607, "history_id": 1688424411822, "id": 1688424411822, - "date_created": "2023-07-03T22:46:51.822Z", - "date_last_updated": "2023-07-03T22:46:51.822Z", - "date_of_expiration": "2023-07-03T22:46:51.822Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 4.926.607,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fe41daaf6a184958b52ed16a", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 4.926.607,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "973bf239422d4992a97f8ba5", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } + }, + "revision": "4e75b595c86b46c58d87353b", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -66899,9 +98552,18 @@ "total_amount": 1082278, "history_id": 1689020922030, "id": 1689020922030, - "date_created": "2023-07-10T20:28:42.030Z", - "date_last_updated": "2023-07-10T20:43:39.362Z", - "date_of_expiration": "2023-07-10T20:28:42.030Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -66909,41 +98571,54 @@ "date_approved": "2023-07-10T20:43:39.362Z", "money_release_date": "2023-07-10T20:43:39.362Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 1.082.278,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0c763d9ca560414fbb7916ff", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 1.082.278,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "805504c984fe422e80774f89", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } + }, + "revision": "df37badd20b6436a9bec5042", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -66952,47 +98627,69 @@ "total_amount": 5031032, "history_id": 1689102393644, "id": 1689102393644, - "date_created": "2023-07-11T19:06:33.644Z", - "date_last_updated": "2023-07-11T19:06:33.644Z", - "date_of_expiration": "2023-07-11T19:06:33.644Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 5.031.032,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fad5b77a75f54eed95c94aad", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 5.031.032,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", + "revision": "4f3057dde20d492181c189bb", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } + }, + "revision": "0db83ba5a95742ae89a8d32b", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -67001,47 +98698,69 @@ "total_amount": 5995148, "history_id": 1689189282410, "id": 1689189282410, - "date_created": "2023-07-12T19:14:42.410Z", - "date_last_updated": "2023-07-12T19:14:42.410Z", - "date_of_expiration": "2023-07-12T19:14:42.410Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 5.995.148,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "94410d2e6408406a8a83d620", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 5.995.148,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "d13e828315de4ab19768e400", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } + }, + "revision": "f490168a39764a75896235ca", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -67050,47 +98769,69 @@ "total_amount": 1000000, "history_id": 1689258056089, "id": 1689258056089, - "date_created": "2023-07-13T14:20:56.089Z", - "date_last_updated": "2023-07-13T14:20:56.089Z", - "date_of_expiration": "2023-07-13T14:20:56.089Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 1.000.000,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7424a0b2145f43ee8a848b1f", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 1.000.000,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "3cd3a99d7699420ca25c826f", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } + }, + "revision": "7cba615064454917a2385d9f", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -67099,47 +98840,69 @@ "total_amount": 530, "history_id": 1689390236969, "id": 1689390236969, - "date_created": "2023-07-15T03:03:56.969Z", - "date_last_updated": "2023-07-15T03:03:56.969Z", - "date_of_expiration": "2023-08-14T03:03:56.969Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9438b952bb024df683b78ef2", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", + "revision": "aa074b8b37de40bdaf2c6673", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } + }, + "revision": "0bb1a374256f4aa79043a350", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -67148,47 +98911,69 @@ "total_amount": 530, "history_id": 1689424277440, "id": 1689424277440, - "date_created": "2023-07-15T12:31:17.440Z", - "date_last_updated": "2023-07-15T12:31:17.440Z", - "date_of_expiration": "2023-08-14T12:31:17.440Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "06ec7195b66046cd8583e069", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", + "revision": "fed4448dcfc0499e963e2a41", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } + }, + "revision": "449d397e29444f2da0cce84e", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -67197,9 +98982,18 @@ "total_amount": 530, "history_id": 1689612021512, "id": 1689612021512, - "date_created": "2023-07-17T16:40:21.512Z", - "date_last_updated": "2023-07-25T18:05:52.467Z", - "date_of_expiration": "2023-08-16T16:40:21.512Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -67207,41 +99001,54 @@ "date_approved": "2023-07-25T18:05:52.467Z", "money_release_date": "2023-07-25T18:05:52.467Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f8ba39eed1db49d2b6e3b623", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", + "revision": "59c69f2428c042ae98034d6b", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } + }, + "revision": "f58a80043c0346ffafd3c307", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -67250,36 +99057,44 @@ "total_amount": 2000000, "history_id": 1689612840534, "id": 1689612840534, - "date_created": "2023-07-17T16:54:00.534Z", - "date_last_updated": "2023-07-17T16:54:00.534Z", - "date_of_expiration": "2023-07-17T16:54:00.534Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 2.000.000,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6b98c4729b794850851b5ef6", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690326796884/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 2.000.000,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", + "revision": "662f4f77ec044d28844a7ed1", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690326796884/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -67292,18 +99107,31 @@ "overpaid_amount": 0, "installment_amount": 530, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2a29ed92fe714efe9868d0d6", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690326796884", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -67314,38 +99142,46 @@ "total_amount": 530, "id": 1690326796884, "contract_id": "1684182120706", - "date_created": "2023-07-25T23:13:16.884Z", - "date_last_updated": "2023-07-25T23:13:16.884Z", - "date_of_expiration": "2023-07-25T23:13:16.884Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1690326796884, - "description": "Pagamento de fatura 2 de 2 no valor de 530,00 BRL referente ao contrato 1684182120706" + "history_id": 1690326796884 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "67f27b71798842bead4c6df5", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690326796884/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 2 no valor de 530,00 BRL referente ao contrato 1684182120706", + "revision": "71aaad1266534098aba5d4ef", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690327152842, "net_received_amount": 0, @@ -67355,18 +99191,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1690327152842" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2aa0625f28124135a682a731", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1690327152842", + "revision": "a23b22d7a6a141bba9f339ea", + "revision_nr": 1, + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -67375,9 +99234,18 @@ "total_amount": 6990049, "id": 1690327152842, "history_id": 1690327152842, - "date_created": "2023-07-25T23:19:12.842Z", - "date_last_updated": "2023-07-26T17:34:13.723Z", - "date_of_expiration": "2023-07-25T23:19:12.842Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -67386,30 +99254,29 @@ "status_detail": "cc_rejected_insufficient_amount", "money_release_date": "2023-07-26T17:34:13.723Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Saque de 6.990.049,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bfd6b70cfc754f1e87644abe", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 6.990.049,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", + "revision": "c4755db74e314de69b0a4dfe", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690371637044, "net_received_amount": 0, @@ -67419,18 +99286,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1690371637044" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b0e5ace090024a90b1e31e8e", + "revision_nr": 1, + "created": 1701459383533, + "modified": 1701459383533 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1690371637044", + "revision": "004a09ef5aaf42d3ac1687c7", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -67439,9 +99329,18 @@ "total_amount": 3280090, "id": 1690371637044, "history_id": 1690371637044, - "date_created": "2023-07-26T11:40:37.044Z", - "date_last_updated": "2023-07-26T17:33:05.648Z", - "date_of_expiration": "2023-07-26T11:40:37.044Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -67451,30 +99350,29 @@ "date_approved": "2023-07-26T17:33:05.648Z", "money_release_date": "2023-07-26T17:33:05.648Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 3.280.090,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1287f36e151b4064867ce6e9", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 3.280.090,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", + "revision": "545e9d2057e54ce0bf8c19b1", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694007742356, "net_received_amount": 0, @@ -67484,18 +99382,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1694007742356" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e03f7fa48cfe4a13bd6390f9", + "revision_nr": 1, + "created": 1701459383533, + "modified": 1701459383533 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1694007742356", + "revision": "65f6d87472ad488cabc6a49d", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -67504,38 +99425,46 @@ "total_amount": 3678031, "id": "1694007742356", "history_id": "1694007742356", - "date_created": "2023-09-06T13:42:22.356Z", - "date_last_updated": "2023-09-06T13:42:22.356Z", - "date_of_expiration": "2023-10-06T13:42:22.356Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 3.678.031,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/10/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4df31fc9d12247fca5ef0f01", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 3.678.031,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/10/2023 - Y12XDT27", + "revision": "c7e8e2600098443c846e4575", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696599770690, "net_received_amount": 0, @@ -67545,18 +99474,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1696599770690" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6687ab434aaf4cb9b9923b78", + "revision_nr": 1, + "created": 1701459383533, + "modified": 1701459383533 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1696599770690", + "revision": "3f356a038d1643af9ac4938a", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -67566,38 +99518,46 @@ "total_amount": 3751591.62, "id": "1696599770690", "history_id": "1696599770690", - "date_created": "2023-10-06T13:42:50.690Z", - "date_last_updated": "2023-10-06T13:42:50.690Z", - "date_of_expiration": "2023-10-06T13:42:50.690Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 3.678.031,00 IVIP com um rendimento de +73.560,62 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2b5c4e7b20c4441187c77525", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843/details/costs", + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 3.678.031,00 IVIP com um rendimento de +73.560,62 IVIP (2,00%) - Y12XDT27", + "revision": "fd71520fb9344601b915115b", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696599812843, "net_received_amount": 0, @@ -67607,18 +99567,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1696599812843" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "01e9e52201f6489a80181ce8", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1696599812843", + "revision": "0873f8757ce3407ca30d62f3", + "revision_nr": 1, + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -67628,53 +99611,84 @@ "total_amount": 3783519, "id": "1696599812843", "history_id": "1696599812843", - "date_created": "2023-10-06T13:43:32.843Z", - "date_last_updated": "2023-10-06T13:43:32.843Z", - "date_of_expiration": "2023-11-06T13:43:32.817Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 3.783.519,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "308154dad36e4187a75b4337", + "revision_nr": 1, + "created": 1701459383533, + "modified": 1701459383533 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843/description", + "content": { + "type": "STRING", + "value": "Investimento de 3.783.519,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", + "revision": "3226da924e184993bc33b3aa", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5e6fd1214aa74ffd9e86466e", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 6.00%", - "amount": 60 + "amount": 60, + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "860da7a7ad3542da8bc86cc9", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684182120706, "type": "emprestimo", @@ -67682,48 +99696,92 @@ "total_amount": 1060, "installments": 2, "installment_amount": 530, - "date_created": "2023-05-15T20:22:00.706Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, "history_id": 1684182120706, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00" + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2ddf4daae05d4553bcc34b6b", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", + "revision": "ecd3bd1ee8234fbaa01f6905", + "revision_nr": 1, + "created": 1701459383533, + "modified": 1701459383533 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "67039d5f63334eb7912b67c4", + "revision_nr": 1, + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d823d6da41694849b3b5e5e3", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 6.00%", - "amount": 60 + "amount": 60, + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b481883c137c435bbadc77dd", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684182120706, "type": "emprestimo", @@ -67731,140 +99789,223 @@ "total_amount": 1060, "installments": 2, "installment_amount": 530, - "date_created": "2023-05-15T20:22:00.706Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, "history_id": 1684182120706, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00" + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c83c620a2b074f278b5cf51e", + "revision_nr": 1, + "created": 1701459383533, + "modified": 1701459383533 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", + "revision": "dad552a40c06460bb61fc548", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "7538dfbb275846b5ba330d4f", + "revision_nr": 1, + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "713cd2485a3d424dbc62be4c", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2e5504e3ce3a46f197cf064d", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 1000, "limitUsed": 0, "analysisRequested": "2023-05-06T03:39:28.087Z", - "lastReview": "2023-05-06T03:39:53.183Z" + "lastReview": "2023-05-06T03:39:53.183Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b4e7e9ef6bb8402eb5ccfa26", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677877676290, "dateValidity": 1678707203279, "totalValue": 2242.137, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z" + "balancesModificacao": "2023-10-15T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ee99a0390ea6476985e73da5", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "5.00000000", "symbol": "BRL", - "value": 0.98 + "value": 0.98, + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "871b2552cb704b66a70da99a", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "0.20000000", "symbol": "IVIP", - "value": 0.000021 + "value": 0.000021, + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "234505cb98bc4d2c8c52732d", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f1ce322f5164430bb74d695d", "revision_nr": 1, - "created": 1700748395499, - "modified": 1700748395499 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } + }, + "revision": "7e465d5b38ed422a9a91c279", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -67873,9 +100014,18 @@ "total_amount": 200, "history_id": 1684492352568, "id": 1684492352568, - "date_created": "2023-05-19T10:32:32.568Z", - "date_last_updated": "2023-05-19T10:35:07.764Z", - "date_of_expiration": "2023-06-18T10:32:32.568Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -67883,30 +100033,29 @@ "date_approved": "2023-05-19T10:35:07.764Z", "money_release_date": "2023-05-19T10:35:07.764Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 1181.6054.9969.9842-60" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e7df859bdfb74317a84f7bb8", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684624220546/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1181.6054.9969.9842-60", + "revision": "936b30894a4346dbb133a2ec", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684624220546/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624220546, @@ -67917,18 +100066,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "26f9d72be1c845bb8468a136", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684624220546", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -67938,9 +100100,18 @@ "original_amount": 974146, "total_amount": 974146, "id": 1684624220546, - "date_created": "2023-05-20T23:10:20.546Z", - "date_last_updated": "2023-05-20T23:10:20.546Z", - "date_of_expiration": "2023-05-20T23:10:20.546Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -67949,42 +100120,65 @@ "history_id": 1684624220546, "description": "Compra de 974.146,00 IVIP por 200,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3c88edff0b0142ea9798d71c", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "95dbb83fbfdc418fb39aa9ea", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8f10b6ee3a93469e88bc5827", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383533, + "modified": 1701459383533 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "31c68b587e4448b6b9456673", + "revision_nr": 1, + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -67993,37 +100187,45 @@ "total_amount": 1100, "history_id": 1684625319623, "id": 1684625319623, - "date_created": "2023-05-20T23:28:39.623Z", - "date_last_updated": "2023-05-20T23:28:39.623Z", - "date_of_expiration": "2023-06-19T23:28:39.623Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f54851c9bfad43d3b56fbf7f", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383533, + "modified": 1701459383533 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625351966/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "7c10ccbc62564cbbbe257b53", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625351966/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684625351966, @@ -68034,18 +100236,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2f2d76de2d954d77a8665a6f", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625351966", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -68055,9 +100270,18 @@ "original_amount": 4870731, "total_amount": 4870731, "id": 1684625351966, - "date_created": "2023-05-20T23:29:11.966Z", - "date_last_updated": "2023-05-20T23:29:11.966Z", - "date_of_expiration": "2023-05-20T23:29:11.966Z", + "date_created": { + "type": 6, + "value": 1701459383533 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383533 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383533 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -68066,38 +100290,41 @@ "history_id": 1684625351966, "description": "Compra de 4.870.731,00 IVIP por 1.000,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7bc09eb18fa1426a965a542c", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383533, + "modified": 1701459383533 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } + }, + "revision": "ecf9c487c2774499a4dd5692", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -68106,9 +100333,18 @@ "total_amount": 400, "history_id": 1685027205516, "id": 1685027205516, - "date_created": "2023-05-25T15:06:45.516Z", - "date_last_updated": "2023-05-28T22:24:43.393Z", - "date_of_expiration": "2023-06-24T15:06:45.516Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -68116,30 +100352,29 @@ "date_approved": "2023-05-28T22:24:43.393Z", "money_release_date": "2023-05-28T22:24:43.393Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 400,00 para a carteira iVip 1181.6054.9969.9842-60" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "120f02b9645a4d02a5b01897", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685234226998/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 400,00 para a carteira iVip 1181.6054.9969.9842-60", + "revision": "ec246782147245258a823954", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685234226998/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685234226998, @@ -68150,18 +100385,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "286ab92885994cb9973cf498", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685234226998", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -68171,38 +100419,46 @@ "original_amount": 10000000, "total_amount": 10000000, "id": 1685234226998, - "date_created": "2023-05-28T00:37:06.998Z", - "date_last_updated": "2023-05-28T00:37:06.998Z", - "date_of_expiration": "2023-05-28T00:37:06.998Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "status_detail": "cc_rejected_insufficient_amount", "currency_id": "IVIPAY", - "history_id": 1685234226998, - "description": "Compra de 10.000.000,00 IVIPAY por 1.000.000,00 IVIP estabilizando US$ 41,00" + "history_id": 1685234226998 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7f1a49b243f34dc1929fdaaf", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685456788341/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685234226998/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 10.000.000,00 IVIPAY por 1.000.000,00 IVIP estabilizando US$ 41,00", + "revision": "354f1ad66e394707b93c440c", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685456788341/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685456788341, @@ -68213,18 +100469,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "06ab016333484b8683261b4e", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685456788341", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -68234,38 +100503,46 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685456788341, - "date_created": "2023-05-30T14:26:28.341Z", - "date_last_updated": "2023-05-30T14:26:28.341Z", - "date_of_expiration": "2023-05-30T14:26:28.341Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "status_detail": "cc_rejected_insufficient_amount", "currency_id": "IVIP", - "history_id": 1685456788341, - "description": "Compra de 1.000.000,00 IVIP por 10.000.000,00 IVIPAY" + "history_id": 1685456788341 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "de0b3cc0f6bf43da92bf5641", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665895143/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685456788341/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Compra de 1.000.000,00 IVIP por 10.000.000,00 IVIPAY", + "revision": "20162769e84540f280002fe6", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665895143/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685665895143, @@ -68276,18 +100553,31 @@ "overpaid_amount": 0, "installment_amount": 1000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2846503d658c4de4ac50e2dd", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665895143", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -68296,38 +100586,46 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685665895143, - "date_created": "2023-06-02T00:31:35.143Z", - "date_last_updated": "2023-06-02T00:31:35.143Z", - "date_of_expiration": "2025-06-02T00:31:35.143Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685665895143, - "description": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025" + "history_id": 1685665895143 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "739ba63939664ff085d5bdce", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665913616/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665895143/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", + "revision": "e7b272b879194ce6a887ddba", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665913616/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685665913616, @@ -68338,18 +100636,31 @@ "overpaid_amount": 0, "installment_amount": 1000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2273e2d0ac164e79917535a9", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665913616", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -68358,38 +100669,46 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685665913616, - "date_created": "2023-06-02T00:31:53.616Z", - "date_last_updated": "2023-06-02T00:31:53.616Z", - "date_of_expiration": "2024-06-02T00:31:53.616Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685665913616, - "description": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024" + "history_id": 1685665913616 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c81c8e06d90f464db793d532", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665938582/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665913616/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", + "revision": "3082d952bb8549c392495089", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665938582/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685665938582, @@ -68400,18 +100719,31 @@ "overpaid_amount": 0, "installment_amount": 1844877, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e9d742f22ed9461e9c1b9207", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665938582", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -68420,39 +100752,47 @@ "original_amount": 1844877, "total_amount": 1844877, "id": 1685665938582, - "date_created": "2023-06-02T00:32:18.582Z", - "date_last_updated": "2023-06-02T00:32:18.582Z", - "date_of_expiration": "2023-12-02T00:32:18.582Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1685665938582, - "wasDebited": true, - "description": "Investimento de 1.844.877,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9134d62b22f0430b82434b69", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665980650/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665938582/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.844.877,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", + "revision": "cf92ea9569814aa7ab007101", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665980650/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685665980650, @@ -68463,18 +100803,31 @@ "overpaid_amount": 0, "installment_amount": 1000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2fc2da95aba1425886aa0bd4", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665980650", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -68483,38 +100836,46 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685665980650, - "date_created": "2023-06-02T00:33:00.650Z", - "date_last_updated": "2023-06-02T00:33:00.650Z", - "date_of_expiration": "2023-07-02T00:33:00.650Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685665980650, - "description": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023" + "history_id": 1685665980650 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aa4646c3c4374c0b8027ae88", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685743358755/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665980650/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", + "revision": "dfc484452bf941259a6409c9", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685743358755/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685743358755, @@ -68525,18 +100886,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2f17a28710e4452ea19d5139", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685743358755", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -68546,9 +100920,18 @@ "original_amount": 1403508, "total_amount": 1403508, "id": 1685743358755, - "date_created": "2023-06-02T22:02:38.755Z", - "date_last_updated": "2023-06-02T22:02:38.755Z", - "date_of_expiration": "2023-06-02T22:02:38.755Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -68557,38 +100940,41 @@ "history_id": 1685743358755, "description": "Compra de 1.403.508,00 IVIP por 400,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "925123251d2b404e9b3b35bb", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } + }, + "revision": "f19fd98344bc4c5fad2d57f6", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -68597,9 +100983,18 @@ "total_amount": 250, "history_id": 1686581106502, "id": 1686581106502, - "date_created": "2023-06-12T14:45:06.502Z", - "date_last_updated": "2023-06-12T15:20:07.910Z", - "date_of_expiration": "2023-07-12T14:45:06.502Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -68607,30 +101002,29 @@ "date_approved": "2023-06-12T15:20:07.910Z", "money_release_date": "2023-06-12T15:20:07.910Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 250,00 para a carteira iVip 1181.6054.9969.9842-60" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "29d36abd2cd64a5a999f6239", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686597954870/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 250,00 para a carteira iVip 1181.6054.9969.9842-60", + "revision": "9553cae660ea4b8a9f0471f2", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686597954870/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -68643,18 +101037,31 @@ "overpaid_amount": 0, "installment_amount": 220, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5e349a8366234cb4bf03d5d2", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686597954870", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -68665,38 +101072,46 @@ "total_amount": 220, "id": 1686597954870, "contract_id": "1684625319623", - "date_created": "2023-06-12T19:25:54.870Z", - "date_last_updated": "2023-06-12T19:25:54.870Z", - "date_of_expiration": "2023-06-12T19:25:54.870Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1686597954870, - "description": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623" + "history_id": 1686597954870 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "46412b5e1fc7412fb362cc79", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1687313544975/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686597954870/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", + "revision": "6dba7b3f5bc14409a662dbfb", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1687313544975/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687313544975, @@ -68707,18 +101122,31 @@ "overpaid_amount": 0, "installment_amount": 2000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "004d319c5c8b4550b4162438", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1687313544975", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -68727,38 +101155,46 @@ "original_amount": 2000000, "total_amount": 2000000, "id": 1687313544975, - "date_created": "2023-06-21T02:12:24.975Z", - "date_last_updated": "2023-06-21T02:12:24.975Z", - "date_of_expiration": "2024-06-21T02:12:24.975Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1687313544975, - "description": "Investimento de 2.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024" + "history_id": 1687313544975 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1246f9fc3abf4bd2af5fb118", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400283150/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1687313544975/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 2.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", + "revision": "15a0e1a2e8d4429d9e910adc", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400283150/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688400283150, @@ -68769,18 +101205,31 @@ "overpaid_amount": 0, "installment_amount": 1000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "42fdefe273af4606902ea429", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400283150", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -68789,39 +101238,47 @@ "original_amount": 1020000, "total_amount": 1020000, "id": 1688400283150, - "date_created": "2023-07-03T16:04:43.150Z", - "date_last_updated": "2023-07-03T16:04:43.150Z", - "date_of_expiration": "2023-07-03T16:04:43.150Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1688400283150, - "wasDebited": true, - "description": "Resgate do investimento staking de 1.000.000,00 IVIP com um rendimento de +20.000,00 IVIP (2,00%)" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1e52a25879544041b53506b1", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400827775/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400283150/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 1.000.000,00 IVIP com um rendimento de +20.000,00 IVIP (2,00%)", + "revision": "a3e9595083884f28b6d51042", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400827775/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688400827775, @@ -68832,18 +101289,31 @@ "overpaid_amount": 0, "installment_amount": 3268385, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e91699f5751a45a58cd48026", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400827775", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -68852,49 +101322,71 @@ "original_amount": 3268385, "total_amount": 3268385, "id": 1688400827775, - "date_created": "2023-07-03T16:13:47.775Z", - "date_last_updated": "2023-07-03T16:13:47.775Z", - "date_of_expiration": "2023-08-03T16:13:47.775Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1688400827775, - "description": "Investimento de 3.268.385,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023" + "history_id": 1688400827775 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a9edf859dcfc4b4a8951606d", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400827775/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 3.268.385,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", + "revision": "bd9480e15c4e4ffa9d5f47ab", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } + }, + "revision": "f729290490674729b57dd64c", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -68903,9 +101395,18 @@ "total_amount": 200, "history_id": 1689085555442, "id": 1689085555442, - "date_created": "2023-07-11T14:25:55.442Z", - "date_last_updated": "2023-07-12T13:26:43.996Z", - "date_of_expiration": "2023-08-10T14:25:55.442Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -68913,30 +101414,29 @@ "date_approved": "2023-07-12T13:26:43.996Z", "money_release_date": "2023-07-12T13:26:43.996Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 1181.6054.9969.9842-60" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c3a6c641fe3043b9985dd21d", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689168458989/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1181.6054.9969.9842-60", + "revision": "3cb290e70ecc4d489cf53a22", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689168458989/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -68949,18 +101449,31 @@ "overpaid_amount": 0, "installment_amount": 220, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "33ed0f9503544ce7be1ae80c", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689168458989", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -68971,38 +101484,46 @@ "total_amount": 220, "id": 1689168458989, "contract_id": "1684625319623", - "date_created": "2023-07-12T13:27:38.989Z", - "date_last_updated": "2023-07-12T13:27:38.989Z", - "date_of_expiration": "2023-07-12T13:27:38.989Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1689168458989, - "description": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623" + "history_id": 1689168458989 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bf18867259674aef926d6204", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691079300942/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689168458989/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", + "revision": "480b4ae60f95495895346124", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691079300942/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1691079300942, @@ -69013,18 +101534,31 @@ "overpaid_amount": 0, "installment_amount": 3268385, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6798219758f245779075ae44", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691079300942", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -69033,39 +101567,47 @@ "original_amount": 3333752.7, "total_amount": 3333752.7, "id": 1691079300942, - "date_created": "2023-08-03T16:15:00.942Z", - "date_last_updated": "2023-08-03T16:15:00.942Z", - "date_of_expiration": "2023-08-03T16:15:00.942Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1691079300942, - "wasDebited": true, - "description": "Resgate do investimento staking de 3.268.385,00 IVIP com um rendimento de +65.367,7 IVIP (2,00%)" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4769ba95a0354fb8a887d9f2", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691079300942/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 3.268.385,00 IVIP com um rendimento de +65.367,7 IVIP (2,00%)", + "revision": "982c4d14b91b403f852a985d", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691084485881, "net_received_amount": 0, @@ -69075,18 +101617,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1691084485881" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0bc0f38e36e44dbfb4448b5b", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1691084485881", + "revision": "b3519f9e762b48dc8c015e40", + "revision_nr": 1, + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -69095,52 +101660,72 @@ "total_amount": 1488875, "id": 1691084485881, "history_id": 1691084485881, - "date_created": "2023-08-03T17:41:25.881Z", - "date_last_updated": "2023-08-03T17:41:25.881Z", - "date_of_expiration": "2023-09-03T17:41:25.881Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 1.488.875,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1fcebc29a12640aaa282b22a", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-13T13:01:20.318Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.488.875,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", + "revision": "586db5801d6e49ea94667ba5", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-13T13:01:20.318Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } + }, + "revision": "8610bd5f710a4d4d8e4d1222", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692018080319, "net_received_amount": 0, @@ -69150,18 +101735,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1692018080319" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "79571f43da644c0aadb6af0d", + "revision_nr": 1, + "created": 1701459383534, + "modified": 1701459383534 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1692018080319", + "revision": "f4c366b8755a4a0f98b84b9f", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -69170,8 +101778,14 @@ "total_amount": 250, "id": 1692018080319, "history_id": 1692018080319, - "date_created": "2023-08-14T13:01:20.319Z", - "date_last_updated": "2023-08-14T13:42:27.554Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -69182,29 +101796,32 @@ "money_release_date": "2023-08-14T13:42:27.554Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 250,00 para a carteira iVip 1181.6054.9969.9842-60" + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f29fcef0f0d844b68e15f86b", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692288719964/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 250,00 para a carteira iVip 1181.6054.9969.9842-60", + "revision": "be1cd18c3e9b4b86a352afb9", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692288719964/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 3, @@ -69217,18 +101834,31 @@ "overpaid_amount": 0, "installment_amount": 220, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f86b286607fc4c098d98e7b4", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692288719964", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -69239,38 +101869,46 @@ "total_amount": 220, "id": 1692288719964, "contract_id": "1684625319623", - "date_created": "2023-08-17T16:11:59.964Z", - "date_last_updated": "2023-08-17T16:11:59.964Z", - "date_of_expiration": "2023-08-17T16:11:59.964Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1692288719964, - "description": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623" + "history_id": 1692288719964 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a0c997f2aa1646cc8e4c42ce", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692288719964/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", + "revision": "fac2bccfa2d345438a9c5b1d", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693763097865, "net_received_amount": 0, @@ -69280,18 +101918,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1693763097865" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "58d0edeb98244eeeaf8ec02d", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1693763097865", + "revision": "4a0dd2d312ae4255aa20548f", + "revision_nr": 1, + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -69300,38 +101961,46 @@ "total_amount": 1518652.5, "id": "1693763097865", "history_id": "1693763097865", - "date_created": "2023-09-03T17:44:57.865Z", - "date_last_updated": "2023-09-03T17:44:57.865Z", - "date_of_expiration": "2023-09-03T17:44:57.865Z", + "date_created": { + "type": 6, + "value": 1701459383534 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383534 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383534 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 1.488.875,00 IVIP com um rendimento de +29.777,5 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d3bf0efbcb5b46bdb46d3159", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 1.488.875,00 IVIP com um rendimento de +29.777,5 IVIP (2,00%) - Y12XDT27", + "revision": "456a03abb4a64306a7fe9635", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383534, + "modified": 1701459383534 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693915531936, "net_received_amount": 0, @@ -69341,18 +102010,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1693915531936" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ea70f5da03cd431e8ab3e37c", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1693915531936", + "revision": "d906225813b7427698ddd541", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -69361,9 +102053,18 @@ "total_amount": 1487490, "id": "1693915531936", "history_id": "1693915531936", - "date_created": "2023-09-05T12:05:31.936Z", - "date_last_updated": "2023-10-04T13:04:00.989Z", - "date_of_expiration": "2023-10-05T12:05:31.936Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -69372,44 +102073,55 @@ "status_detail": "cc_rejected_insufficient_staked_amount", "money_release_date": "2023-10-04T13:04:00.989Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Investimento de 1.487.490,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d07b87eb514340b0a671dac5", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-06T13:21:36.774Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.487.490,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", + "revision": "0a7b355d546045f68818e98d", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-06T13:21:36.774Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } + }, + "revision": "07fabbe7a650442e9bbf5e2f", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694006496775, "net_received_amount": 0, @@ -69419,18 +102131,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1694006496775" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8cb49e9c070b45e48225c007", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1694006496775", + "revision": "e4655eb4092948a7bc0a1615", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -69439,8 +102174,14 @@ "total_amount": 220, "id": "1694006496775", "history_id": "1694006496775", - "date_created": "2023-09-06T13:21:36.775Z", - "date_last_updated": "2023-09-06T13:32:40.077Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -69451,29 +102192,32 @@ "money_release_date": "2023-09-06T13:32:40.077Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 220,00 BRL para a carteira iVip 1181.6054.9969.9842-60" + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "724c39b56fcd4cf6ad261ad4", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 220,00 BRL para a carteira iVip 1181.6054.9969.9842-60", + "revision": "0839b455ac44425fb8da07c3", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694572285717, "net_received_amount": 0, @@ -69483,20 +102227,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 4, "installments_payable": 1, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1694572285717" + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e4488fc10a7544ab8c528ffb", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1694572285717", + "revision": "c92725dd41814e62a8bbe91a", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -69505,38 +102272,46 @@ "total_amount": 220, "id": "1694572285717", "history_id": "1694572285717", - "date_created": "2023-09-13T02:31:25.717Z", - "date_last_updated": "2023-09-13T02:31:25.717Z", - "date_of_expiration": "2023-09-13T02:31:25.717Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d2d66a258b2442068d6d8e04", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", + "revision": "5c24b78fde2a42189ab60fd5", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696081581090, "net_received_amount": 0, @@ -69546,18 +102321,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696081581090" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "20995745300042cd9d87c765", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696081581090", + "revision": "4e6939a8b91647fa984f56ed", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -69567,52 +102365,72 @@ "total_amount": 40, "id": "1696081581090", "history_id": "1696081581090", - "date_created": "2023-09-30T13:46:21.090Z", - "date_last_updated": "2023-09-30T13:46:21.090Z", - "date_of_expiration": "2024-07-30T13:46:21.089Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "accredited", - "description": "Investimento de 40,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 30/07/2024 - D03OS92M" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2796d55a9a0f44479b411672", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-30T13:48:22.609Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 40,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 30/07/2024 - D03OS92M", + "revision": "5d6d5a1439bf4f9eb6815555", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-30T13:48:22.609Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } + }, + "revision": "d33c8a73a7454c70accebc72", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696081702609, "net_received_amount": 0, @@ -69622,18 +102440,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696081702609" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9c483159ec74480982ae5c5a", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696081702609", + "revision": "d679392c6c2649489b23cd03", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -69643,8 +102484,14 @@ "total_amount": 225, "id": "1696081702609", "history_id": "1696081702609", - "date_created": "2023-09-30T13:48:22.609Z", - "date_last_updated": "2023-09-30T14:52:32.609Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -69655,29 +102502,32 @@ "money_release_date": "2023-09-30T14:52:32.609Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 225,00 BRL para a carteira iVip 1181.6054.9969.9842-60" + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a18625675fe541b29d4d0a29", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 225,00 BRL para a carteira iVip 1181.6054.9969.9842-60", + "revision": "ecc7b7b16c5f4649bdf8f1d9", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696085699487, "net_received_amount": 0, @@ -69687,20 +102537,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 5, "installments_payable": 0, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696085699487" + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7ee563e589e040dba45c77ba", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696085699487", + "revision": "a8add7c2f8624612b2bf2508", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -69710,38 +102583,46 @@ "total_amount": 220, "id": "1696085699487", "history_id": "1696085699487", - "date_created": "2023-09-30T14:54:59.487Z", - "date_last_updated": "2023-09-30T14:54:59.487Z", - "date_of_expiration": "2023-09-30T14:54:59.487Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "165dc4227b3647fbb092d3ff", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", + "revision": "7b85f5411a8240e5a2f8537e", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696349167615, "net_received_amount": 0, @@ -69751,18 +102632,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696349167615" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "730afa0dd38a48979cdcd443", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696349167615", + "revision": "5be7c12dcd8547a3ba36fe1a", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -69772,38 +102676,46 @@ "total_amount": 31163, "id": "1696349167615", "history_id": "1696349167615", - "date_created": "2023-10-03T16:06:07.615Z", - "date_last_updated": "2023-10-03T16:06:07.615Z", - "date_of_expiration": "2025-10-03T16:06:07.614Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 31.163,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 03/10/2025 - P9A02KSL" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "85e988e411844ebf95fe7516", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { - "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596/details/costs", + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 31.163,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 03/10/2025 - P9A02KSL", + "revision": "5d42e41578ac4db3839dcb8c", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696462181596, "net_received_amount": 0, @@ -69813,18 +102725,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696462181596" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7d1c8ed4a2a3479e937173a4", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696462181596", + "revision": "0a0e5ae2aacb41c89c60b641", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -69834,53 +102769,84 @@ "total_amount": 1487490, "id": "1696462181596", "history_id": "1696462181596", - "date_created": "2023-10-04T23:29:41.596Z", - "date_last_updated": "2023-10-04T23:29:41.596Z", - "date_of_expiration": "2023-11-04T23:29:41.513Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 1.487.490,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1f1c10d7d9784ff39dae694e", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596/description", + "content": { + "type": "STRING", + "value": "Investimento de 1.487.490,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "f460698075cc4f4ba00be6f1", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "383130ecba0d4f199cdd368b", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "de67a706b31f4df28e0805d7", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684625319623, "type": "emprestimo", @@ -69888,48 +102854,92 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-20T23:28:39.623Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f8c1bd8b4157437693ada47f", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "3ea689c8869b48ee894e96d7", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "7f0990d02efe463a8d37cdba", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3c1188ac11c74ae89998809e", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c3fc5399a4414e84ab8e7ffb", "revision_nr": 1, - "created": 1700748395500, - "modified": 1700748395500 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684625319623, "type": "emprestimo", @@ -69937,48 +102947,92 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-20T23:28:39.623Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "50bdabe14bf146d3b513f4fc", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "1dceed4d602945e2b12e4b18", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "df39f74b933847e0b02a8cd5", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3fc33829df1e4357aae315f1", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2201a0535d90460293f0633a", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684625319623, "type": "emprestimo", @@ -69986,48 +103040,92 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-20T23:28:39.623Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d7c8fee04aed4efcad2ad5c3", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "1e228a1e8a8c441d830f2e26", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "725d1c1f916b4140a58c99c5", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d0a2c9a0c8294336b625db75", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e253908c89e34b54ac51edb2", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684625319623, "type": "emprestimo", @@ -70035,49 +103133,92 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-20T23:28:39.623Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-13T02:31:25.736Z", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7f234a38a70d402c8dcaf5fe", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "8d313988e9c64ea1bb7088ed", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "881a0867614a45c0ac00f9ea", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c5904a7e1dbd4701a3e510b5", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7b815dab115c4036b5a1b241", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684625319623, "type": "emprestimo", @@ -70085,179 +103226,273 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-20T23:28:39.623Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-30T14:54:59.499Z", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c1a01b6c9fb64c3f8e5e1db9", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "ebe283c3376a4ac18cb73ee2", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "6c1b5fcfc38e42ccada52080", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c01c0527b34246d290fa03b7", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bc7db4fb3c1a4f18b6f08193", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 1000, "limitUsed": 400, "analysisRequested": "2023-05-20T21:32:58.558Z", - "lastReview": "2023-05-20T21:33:49.410Z" + "lastReview": "2023-05-20T21:33:49.410Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "98addd221bb948f090a9628b", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684492261254, "dateValidity": 1684492261254, "totalValue": 1371.271, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z" + "balancesModificacao": "2023-10-15T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "819eaf5b1c8d442bb5f9e8c2", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/120996359783253070/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "55080db0866e4002b05fe381", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/120996359783253070/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "660120117a304c6fb9da7960", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/120996359783253070", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678148092390, "dateValidity": 1678198916837, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d2088b3faf7444059fe6e4be", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "9.00000000", "symbol": "BRL", - "value": 1.74 + "value": 1.74, + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7cc721b138334299827bc8f1", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "443235.00000000", "symbol": "IVIP", - "value": 70.34 + "value": 70.34, + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8bd97688e797499cb64bbf14", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e62d4c3143184d9b8e406831", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } + }, + "revision": "fec25b4ea8f94c9683501aff", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -70266,9 +103501,18 @@ "total_amount": 100, "history_id": 1684273040978, "id": 1684273040978, - "date_created": "2023-05-16T21:37:20.978Z", - "date_last_updated": "2023-05-17T13:45:34.751Z", - "date_of_expiration": "2023-06-15T21:37:20.978Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -70276,30 +103520,29 @@ "date_approved": "2023-05-17T13:45:34.751Z", "money_release_date": "2023-05-17T13:45:34.751Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1218.4763.4268.5788-20" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "375b5d70886f4479852e8cc2", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { - "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624212629/details/costs", + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1218.4763.4268.5788-20", + "revision": "98e30a706143409f958db697", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624212629/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624212629, @@ -70310,18 +103553,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fc67578483fe4c738c094d7e", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624212629", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -70331,9 +103587,18 @@ "original_amount": 97852, "total_amount": 97852, "id": 1684624212629, - "date_created": "2023-05-20T23:10:12.629Z", - "date_last_updated": "2023-05-20T23:10:12.629Z", - "date_of_expiration": "2023-05-20T23:10:12.629Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70342,27 +103607,16 @@ "history_id": 1684624212629, "description": "Compra de 97.852,00 IVIP por 20,09 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624265601/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "57bfe18d554d4a559ebafa43", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624265601/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624265601, @@ -70373,18 +103627,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d16215f23f89425281cd35b8", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624265601", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -70394,9 +103661,18 @@ "original_amount": 345383, "total_amount": 345383, "id": 1684624265601, - "date_created": "2023-05-20T23:11:05.601Z", - "date_last_updated": "2023-05-20T23:11:05.601Z", - "date_of_expiration": "2023-05-20T23:11:05.601Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70405,27 +103681,16 @@ "history_id": 1684624265601, "description": "Compra de 345.383,00 IVIP por 70,91 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "95b81f719d3a4abd8bb44edb", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696563980031, "net_received_amount": 0, @@ -70435,18 +103700,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/121847634268578820/history/1696563980031" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a095055ae6124402b5f2060e", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/121847634268578820/history/1696563980031", + "revision": "067065c1c2db4f22a3fba431", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -70456,116 +103744,160 @@ "total_amount": 1000, "id": "1696563980031", "history_id": "1696563980031", - "date_created": "2023-10-06T03:46:20.031Z", - "date_last_updated": "2023-10-06T03:46:20.031Z", - "date_of_expiration": "2023-11-06T03:46:19.931Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f76c2dfcfa204b6c9783494e", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031/description", + "content": { + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", + "revision": "c1fa48a90e564f8893a4ec97", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "295c2936e6e94ff791133e81", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9a5570d3ff29490eb676bf18", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c19f9f3174b244f8a49fae6a", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684189916126, "dateValidity": 1684189916126, "totalValue": 20.09, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z" + "balancesModificacao": "2023-10-06T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1be8e98a41ad45ac82de48fc", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d4a983da9d8a4cbfbc601968", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-01T15:25:22.792Z" + ".val": "2023-09-01T15:25:22.792Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4f6128853e484ab99f7e5325", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690989922793, "net_received_amount": 0, @@ -70575,18 +103907,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1690989922793" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4bf52e8b0da948f9b2e53f55", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1690989922793", + "revision": "f2bc3be9c4b541898cf0160c", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -70595,8 +103950,14 @@ "total_amount": 100, "id": 1690989922793, "history_id": 1690989922793, - "date_created": "2023-08-02T15:25:22.793Z", - "date_last_updated": "2023-08-02T19:55:14.626Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70607,29 +103968,32 @@ "money_release_date": "2023-08-02T19:55:14.626Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 100,00 para a carteira iVip 1227.6483.0599.8103-50" + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d5be60a2d2454b549876e620", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006310448/details/costs", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 100,00 para a carteira iVip 1227.6483.0599.8103-50", + "revision": "6b0a2af2fc4043cbbff6c17d", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006310448/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691006310448, "net_received_amount": 0, @@ -70639,18 +104003,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691006310448" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2746d6af63d24939b5e30d1c", + "revision_nr": 1, + "created": 1701459383535, + "modified": 1701459383535 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006310448/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691006310448", + "revision": "4dc7c46fcf86450d953a8b7a", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006310448", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -70659,9 +104046,18 @@ "total_amount": 108815, "id": 1691006310448, "history_id": 1691006310448, - "date_created": "2023-08-02T19:58:30.448Z", - "date_last_updated": "2023-08-02T19:58:30.448Z", - "date_of_expiration": "2023-08-02T19:58:30.448Z", + "date_created": { + "type": 6, + "value": 1701459383535 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383535 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383535 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -70670,27 +104066,16 @@ "description": "Compra de 108.815,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "49780591e6b8497e990428e3", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691006485984, "net_received_amount": 0, @@ -70700,18 +104085,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691006485984" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "18a233afbca040fb960190e1", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691006485984", + "revision": "655293a538024c11b8568d6c", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -70720,52 +104128,72 @@ "total_amount": 108815, "id": 1691006485984, "history_id": 1691006485984, - "date_created": "2023-08-02T20:01:25.984Z", - "date_last_updated": "2023-08-02T20:01:25.984Z", - "date_of_expiration": "2025-08-02T20:01:25.917Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 108.815,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 8/2/2025" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b30d534b8c1b4d9ab79f9438", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-08T12:47:40.996Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 108.815,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 8/2/2025", + "revision": "d522a4d904b44722a30cb0ce", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383535, + "modified": 1701459383535 } }, { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/details/costs", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-08T12:47:40.996Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } + }, + "revision": "5bd42e14241a4024b5f9aea1", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691585260996, "net_received_amount": 0, @@ -70775,18 +104203,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691585260996" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8118cbbd4ce94ba7a199fa61", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691585260996", + "revision": "4ec9d6801267443095e4f1c9", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -70795,8 +104246,14 @@ "total_amount": 50, "id": 1691585260996, "history_id": 1691585260996, - "date_created": "2023-08-09T12:47:40.996Z", - "date_last_updated": "2023-08-09T13:57:20.313Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70807,29 +104264,32 @@ "money_release_date": "2023-08-09T13:57:20.313Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 50,00 para a carteira iVip 1227.6483.0599.8103-50" + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "18f9822adbbb440a840306ca", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589566120/details/costs", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 50,00 para a carteira iVip 1227.6483.0599.8103-50", + "revision": "f88cbc78f97b4679a81cdd66", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589566120/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691589566120, "net_received_amount": 0, @@ -70839,18 +104299,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691589566120" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8eea2712983e4ac387a7b0d0", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589566120/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691589566120", + "revision": "3865e7ecaf8741edafc6baec", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589566120", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -70859,9 +104342,18 @@ "total_amount": 76363, "id": 1691589566120, "history_id": 1691589566120, - "date_created": "2023-08-09T13:59:26.120Z", - "date_last_updated": "2023-08-09T13:59:26.120Z", - "date_of_expiration": "2023-08-09T13:59:26.120Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -70870,27 +104362,16 @@ "description": "Compra de 76.363,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "099ddd24dc874dbaa2a6ba3f", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691589908652, "net_received_amount": 0, @@ -70900,18 +104381,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691589908652" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fd23466d68604b4ebad44732", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691589908652", + "revision": "57f959a932a14b30b0d418bb", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -70920,38 +104424,46 @@ "total_amount": 20000, "id": 1691589908652, "history_id": 1691589908652, - "date_created": "2023-08-09T14:05:08.652Z", - "date_last_updated": "2023-08-09T14:05:08.652Z", - "date_of_expiration": "2023-09-09T14:05:08.648Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 20.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/9/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c5a41d044ece46e29f6cabd1", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615/details/costs", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 20.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/9/2023", + "revision": "c5a3d07e8d7240ca908af5dd", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694268632615, "net_received_amount": 0, @@ -70961,18 +104473,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694268632615" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "08cc5b9cfe424c9ab25da34e", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694268632615", + "revision": "e2060c5666e14c7cb5f8052e", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -70981,38 +104516,46 @@ "total_amount": 20400, "id": "1694268632615", "history_id": "1694268632615", - "date_created": "2023-09-09T14:10:32.615Z", - "date_last_updated": "2023-09-09T14:10:32.615Z", - "date_of_expiration": "2023-09-09T14:10:32.615Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 20.000,00 IVIP com um rendimento de +400,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a6a1a95cd6454f58a03517b3", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658/details/costs", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 20.000,00 IVIP com um rendimento de +400,00 IVIP (2,00%) - Y12XDT27", + "revision": "676d463ce5d249f58396d3e2", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694304834658, "net_received_amount": 0, @@ -71022,18 +104565,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694304834658" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b1d1aadc357546dd96e917cd", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694304834658", + "revision": "f70e2a1c5a8c4be38fba8e53", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -71042,9 +104608,18 @@ "total_amount": 63131, "id": "1694304834658", "history_id": "1694304834658", - "date_created": "2023-09-10T00:13:54.658Z", - "date_last_updated": "2023-10-04T23:31:59.684Z", - "date_of_expiration": "2023-10-10T00:13:54.657Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -71053,44 +104628,55 @@ "status_detail": "cc_rejected_insufficient_staked_amount", "money_release_date": "2023-10-04T23:31:59.684Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Investimento de 63.131,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 09/10/2023 - Y12XDT27" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c87c9880cc4148ca8409a51c", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-14T18:40:41.417Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 63.131,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 09/10/2023 - Y12XDT27", + "revision": "5d08ed161d424359ac629f29", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/details/costs", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-14T18:40:41.417Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } + }, + "revision": "3b135aa116574e6cacdd7d9b", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694716841418, "net_received_amount": 0, @@ -71100,18 +104686,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694716841418" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0870acdccbb1402fbf398f48", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694716841418", + "revision": "367b7f0fef794f81a3e268c7", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -71120,8 +104729,14 @@ "total_amount": 20, "id": "1694716841418", "history_id": "1694716841418", - "date_created": "2023-09-14T18:40:41.418Z", - "date_last_updated": "2023-09-14T19:10:39.334Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71132,29 +104747,32 @@ "money_release_date": "2023-09-14T19:10:39.334Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 20,00 BRL para a carteira iVip 1227.6483.0599.8103-50" + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5406263bcdf246a6b24363a5", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694723873975/details/costs", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 1227.6483.0599.8103-50", + "revision": "bd971106cb0c40699e0d8227", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694723873975/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694723873975, "net_received_amount": 0, @@ -71164,18 +104782,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694723873975" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0abf5659a9bf433e8f3a3250", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694723873975/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694723873975", + "revision": "7f965e5f5eab4ea9ae902b3d", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694723873975", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -71184,9 +104825,18 @@ "total_amount": 22823, "id": "1694723873975", "history_id": "1694723873975", - "date_created": "2023-09-14T20:37:53.975Z", - "date_last_updated": "2023-09-14T20:37:53.975Z", - "date_of_expiration": "2023-09-14T20:37:53.975Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -71195,41 +104845,42 @@ "description": "Compra de 22.823,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e3e01089282a4557ab8db975", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-16T17:35:37.888Z" + ".val": "2023-10-16T17:35:37.888Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ddc4f03239fb4ce594dd31c2", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694885737888, "net_received_amount": 0, @@ -71239,18 +104890,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694885737888" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "33d8159471424f01a2472ca2", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694885737888", + "revision": "ef03e919ea4a46ef871d16cd", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -71259,51 +104933,72 @@ "total_amount": 28.17, "id": "1694885737888", "history_id": "1694885737888", - "date_created": "2023-09-16T17:35:37.888Z", - "date_last_updated": "2023-09-16T17:35:37.888Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 28,17 BRL para a carteira iVip 1227.6483.0599.8103-50" + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "78879f6786a5435887b1de38", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-19T19:20:50.157Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 28,17 BRL para a carteira iVip 1227.6483.0599.8103-50", + "revision": "cb4a753c547047239c6fb4b6", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/details/costs", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-19T19:20:50.157Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } + }, + "revision": "864aeb42692a414cbeb7e007", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695151250157, "net_received_amount": 0, @@ -71313,18 +105008,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695151250157" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "70209e352d6f4ca6a43faa8f", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695151250157", + "revision": "78fd7e8631114167b350b1f6", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -71333,8 +105051,14 @@ "total_amount": 29370, "id": "1695151250157", "history_id": "1695151250157", - "date_created": "2023-09-19T19:20:50.157Z", - "date_last_updated": "2023-09-19T20:56:06.903Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71345,29 +105069,32 @@ "money_release_date": "2023-09-19T20:56:06.903Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 29.370,00 IVIP para a carteira iVip 1227.6483.0599.8103-50" + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dc271c018e4e415fa2a11caf", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307/details/costs", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 29.370,00 IVIP para a carteira iVip 1227.6483.0599.8103-50", + "revision": "c75f4b0d0e284cad818cbb89", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695152833307, "net_received_amount": 0, @@ -71377,18 +105104,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695152833307" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2be9124c5e004023831b220f", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695152833307", + "revision": "9eb4e77cf3a14818b16cadf6", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -71397,9 +105147,18 @@ "total_amount": 36455, "id": "1695152833307", "history_id": "1695152833307", - "date_created": "2023-09-19T19:47:13.307Z", - "date_last_updated": "2023-09-25T21:44:43.636Z", - "date_of_expiration": "2024-03-19T19:47:13.306Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -71408,30 +105167,29 @@ "status_detail": "cc_rejected_insufficient_staked_amount", "money_release_date": "2023-09-25T21:44:43.636Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Investimento de 36.455,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "220926492e684a51971dcabf", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667/details/costs", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 36.455,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", + "revision": "67ece6ac49f94259b21c592d", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695158486667, "net_received_amount": 0, @@ -71441,18 +105199,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695158486667" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1d2d722d9d604e4996fdc80f", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695158486667", + "revision": "2d5d800506054d2598ccc2e2", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -71461,9 +105242,18 @@ "total_amount": 29370, "id": "1695158486667", "history_id": "1695158486667", - "date_created": "2023-09-19T21:21:26.667Z", - "date_last_updated": "2023-09-25T21:45:21.877Z", - "date_of_expiration": "2024-09-19T21:21:26.665Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -71472,30 +105262,29 @@ "status_detail": "cc_rejected_insufficient_staked_amount", "money_release_date": "2023-09-25T21:45:21.877Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Investimento de 29.370,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 19/09/2024 - CLSMJY90" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "858cc4a9a3c54974bbe68316", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { - "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923/details/costs", + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 29.370,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 19/09/2024 - CLSMJY90", + "revision": "02a7de5fdb36465591d3f930", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696466013923, "net_received_amount": 0, @@ -71505,18 +105294,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1696466013923" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cb916b99695f4d46adb4ff0f", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1696466013923", + "revision": "f73b53223ac9435cb80b054d", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -71526,175 +105338,307 @@ "total_amount": 128956, "id": "1696466013923", "history_id": "1696466013923", - "date_created": "2023-10-05T00:33:33.923Z", - "date_last_updated": "2023-10-05T00:33:33.923Z", - "date_of_expiration": "2023-11-05T00:33:33.853Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 128.956,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c663bce2659141d29b07eadb", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923/description", + "content": { + "type": "STRING", + "value": "Investimento de 128.956,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "12bc0c64b9c743889420121c", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5327772ef0e540cfa91d5e3a", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bff3d831020d49e4b604b438", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fc5abd0df7524d4daa0df9a0", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1690989855646, "dateValidity": 1690989855726, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z" + "balancesModificacao": "2023-10-15T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "652a8d436ff846c884ab7c0f", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "7503835.00000000", "symbol": "IVIP", - "value": 789.35 + "value": 789.35, + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "62e79d5fc9d344f2a78eba49", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "901aec87c57c428bb8165c7b", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 1.00%", - "amount": 5 + "amount": 5, + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "709c84432cbd4186b24d1393", "revision_nr": 1, - "created": 1700748395501, - "modified": 1700748395501 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6925963392c944dbaaef484f", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "IVIPCOIN LTDA" + "account_holder_name": "IVIPCOIN LTDA", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3973701df5214239a47044b2", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a6042acfd6814b5f981ec163", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 505, "overpaid_amount": 0, "installment_amount": 0, - "ticket_url": "https://www.mercadopago.com.br/payments/55900907390/ticket?caller_id=1310149122&hash=b46698ba-1661-4287-87f2-802c80f36c71", - "qr_code": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406505.005802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter559009073906304E54F", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI3UlEQVR42u3dUY7jNgwGYN3A97+lbqAC7WITi7+UdFsUXevLw2BmYkuf/UaQItv4jT690dLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tL++9o2f64f//vx7fXzkuvnHddfi7Tpt9dt79fdNvrz4h8/Rrl3YtDS0tLS0tLS0tLS0h6indasqNfq7yv19wcq5P6+83Tx68f7bQsGLS0tLS0tLS0tLS3tEdr3AHIyTtAX5bXZ9AS9xeRhWmDatzBoaWlpaWlpaWlpaWmP1Y57nPjaZ5RYb4oTp6xd/rPGk7S0tLS0tLS0tLS0tLQt3TqRX3FiobR7Ou/2uClbOF1MS0tLS0tLS0tLS0t7tjbj07ZVNq0+/ZYeY3PE7ldqRGlpaWlpaWlpaWlpaX937WLv//rHP+ipQktLS0tLS0tLS0tL+ztr958SVKbiyikcrCWam1UWR+fue9DS0tLS0tLS0tLS0j5buyia3FRi3u7dx6KlTnNqOjnClIBNdo+WlpaWlpaWlpaWlvZ52tRTfwr9Xp6prWQpuGzhi15qLV8vaDocl5v809LS0tLS0tLS0tLSPltbAC142uc/P0aW03uYNk8T2GhpaWlpaWlpaWlpaU/Ublo+jk0OrlRdXuF/y6rLOlB7W3VJS0tLS0tLS0tLS0v7KG1qzz+Fg+WLser5P8JEgF54OW9Yw1BaWlpaWlpaWlpaWtpDtK0cV0tJvLRw7k2yGIBd3kMPT5/xtLS0tLS0tLS0tLS0z9ZO46db6eeYz7ZNHUna/XGXSby+maX99dk9WlpaWlpaWlpaWlraB2lzhq7duz32kMnrIca8cjOS8kau/JZSsxRaWlpaWlpaWlpaWtpztMviyuIepelkplylHHOaIVDqPkdw09LS0tLS0tLS0tLSPl07Nq39U8f9svdVEoCpCDMXZvYw263teqrQ0tLS0tLS0tLS0tI+Tbtppz9ycFd4U9FkyyMApi2X1Zlfz4ajpaWlpaWlpaWlpaV9hnbZRuRThu4q3frTPOw8EWB6tBGSgrS0tLS0tLS0tLS0tIdpdyfVcjFkjQlLFLk4XZfzgVOyj5aWlpaWlpaWlpaW9hzt2IZ+S9kojf/zoy3yfOlIXH4jtLS0tLS0tLS0tLS0T9f27cG1EXpBVsr7dWMzKmBZsbkJV2lpaWlpaWlpaWlpaZ+uHe/JuU3BZSvdR0oEOkozkoJvYQxbDSo/xLy0tLS0tLS0tLS0tLQP0qaWj2ls2nTHMnX3aYE0261mBmlpaWlpaWlpaWlpac/RptBvGQQuY8cpFi0D1K5Qsbn8s3/I7tHS0tLS0tLS0tLS0j5KW8odF1HfVBGZYseUBdyEoa30JslzBWhpaWlpaWlpaWlpaZ+u3e94rQouez4rV+LOXf6uaOs7pKWlpaWlpaWlpaWlPUJbPtPqqaFI7eBfnm95nO5aVXvWzWlpaWlpaWlpaWlpaZ+vTZPVFmWW0+o5REy5v/0ct2V4SUtLS0tLS0tLS0tLe4r203Dq21G3gr9Kt/5y/K1vJmOnTv+0tLS0tLS0tLS0tLTHasv/Uv6urYav1YLLzfG32pFkuo2WlpaWlpaWlpaWlvYI7bL+chlFTtm9VFKZjrqlcHVfsUlLS0tLS0tLS0tLS3uEtsh6PJC2WLOFrv4jVFN+cUdqHElLS0tLS0tLS0tLS3uANt1QTsP1+z4pErzCxLRbQLoMV3PnkouWlpaWlpaWlpaWlvYY7VhVRNZL9vhkLLddIXpNv9HS0tLS0tLS0tLS0p6j7ZvyyXLy7Sr9RVL3kem3slvtXFIWHbS0tLS0tLS0tLS0tMdoxyZ2zOWT1yp2vFbavnqCvgolaWlpaWlpaWlpaWlpT9FOQdvUWiRfUhN2UxD41VC1VOOZtqSlpaWlpaWlpaWlpT1AWzqI1ALJokh1mv0eNvb7ZLXF4bgUwtLS0tLS0tLS0tLS0p6ozaOwF4WUm0Nvo+T+Unya8O/L09LS0tLS0tLS0tLSnqNt4XzaFZbrOZRMJZpf4ds27qSlpaWlpaWlpaWlpT1F+37tKAFkif96blqSk3g1UVj26KtVaGlpaWlpaWlpaWlpz9H2MgV7SrVN5MmzHHa9LNacXlAuwhy0tLS0tLS0tLS0tLSHaL844FbajaTayFE8qZ4zj8eevr2+PrtHS0tLS0tLS0tLS0v7HG25oqXQrwSGtV3k+wIJX5/5c1BJS0tLS0tLS0tLS0v7ZO0X06hTni/9SKfmVgPU5iNxpfTyoqWlpaWlpaWlpaWlPUY77ifQFq0cywC1NCyth/TgyFWXuVizjmajpaWlpaWlpaWlpaU9QpsrLFOGboon02fxaCXtt2jyv626pKWlpaWlpaWlpaWlfZ62RG59M0/tfbm88HxHSd2ladkjdKgctLS0tLS0tLS0tLS0h2iXMdw+EZdiwvLFwrh8Bekd0tLS0tLS0tLS0tLSPl1bwsGe56Sl2sgSbY77+bmeU4GpjX8JYWlpaWlpaWlpaWlpaQ/TtlV/yNZqyHndizX39Zcty/ahJC0tLS0tLS0tLS0t7Tna9Nk0f+z3SLCHBGAqx0xFnVeIVOu7oaWlpaWlpaWlpaWlfbp22WRkGfotuz2WYs22fbSem1N+GfPS0tLS0tLS0tLS0tI+R3uFAHLqNJI+PWfjUnHlp2aSfyeKpKWlpaWlpaWlpaWlfaQ21VqmwdbpgFupnGylGUl5oKtMYFvGp7S0tLS0tLS0tLS0tGdqF/m2NPa6hINpZtu1qbrMY91oaWlpaWlpaWlpaWmP15Z9anYvdfXP4eAUfH5XwElLS0tLS0tLS0tLS3uONq/USkXkVBZZqjPT7Otrcy4unbP7tdNwtLS0tLS0tLS0tLS0v7G2Fj7mQ2qLwdZ5IFvlLedcv7+CXt4SLS0tLS0tLS0tLS3t07X//w8tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t7b+m/QNO7FsdSE0lWQAAAABJRU5ErkJggg==" + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ad08cd3315d843ee88d648c1", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/payments/55900907390/ticket?caller_id=1310149122&hash=b46698ba-1661-4287-87f2-802c80f36c71", + "revision": "f72fd15dfb1e46fda473c3fd", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406505.005802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter559009073906304E54F", + "revision": "fb5d78ec8ff0449ea6800afd", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI3UlEQVR42u3dUY7jNgwGYN3A97+lbqAC7WITi7+UdFsUXevLw2BmYkuf/UaQItv4jT690dLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tL++9o2f64f//vx7fXzkuvnHddfi7Tpt9dt79fdNvrz4h8/Rrl3YtDS0tLS0tLS0tLS0h6indasqNfq7yv19wcq5P6+83Tx68f7bQsGLS0tLS0tLS0tLS3tEdr3AHIyTtAX5bXZ9AS9xeRhWmDatzBoaWlpaWlpaWlpaWmP1Y57nPjaZ5RYb4oTp6xd/rPGk7S0tLS0tLS0tLS0tLQt3TqRX3FiobR7Ou/2uClbOF1MS0tLS0tLS0tLS0t7tjbj07ZVNq0+/ZYeY3PE7ldqRGlpaWlpaWlpaWlpaX937WLv//rHP+ipQktLS0tLS0tLS0tL+ztr958SVKbiyikcrCWam1UWR+fue9DS0tLS0tLS0tLS0j5buyia3FRi3u7dx6KlTnNqOjnClIBNdo+WlpaWlpaWlpaWlvZ52tRTfwr9Xp6prWQpuGzhi15qLV8vaDocl5v809LS0tLS0tLS0tLSPltbAC142uc/P0aW03uYNk8T2GhpaWlpaWlpaWlpaU/Ublo+jk0OrlRdXuF/y6rLOlB7W3VJS0tLS0tLS0tLS0v7KG1qzz+Fg+WLser5P8JEgF54OW9Yw1BaWlpaWlpaWlpaWtpDtK0cV0tJvLRw7k2yGIBd3kMPT5/xtLS0tLS0tLS0tLS0z9ZO46db6eeYz7ZNHUna/XGXSby+maX99dk9WlpaWlpaWlpaWlraB2lzhq7duz32kMnrIca8cjOS8kau/JZSsxRaWlpaWlpaWlpaWtpztMviyuIepelkplylHHOaIVDqPkdw09LS0tLS0tLS0tLSPl07Nq39U8f9svdVEoCpCDMXZvYw263teqrQ0tLS0tLS0tLS0tI+Tbtppz9ycFd4U9FkyyMApi2X1Zlfz4ajpaWlpaWlpaWlpaV9hnbZRuRThu4q3frTPOw8EWB6tBGSgrS0tLS0tLS0tLS0tIdpdyfVcjFkjQlLFLk4XZfzgVOyj5aWlpaWlpaWlpaW9hzt2IZ+S9kojf/zoy3yfOlIXH4jtLS0tLS0tLS0tLS0T9f27cG1EXpBVsr7dWMzKmBZsbkJV2lpaWlpaWlpaWlpaZ+uHe/JuU3BZSvdR0oEOkozkoJvYQxbDSo/xLy0tLS0tLS0tLS0tLQP0qaWj2ls2nTHMnX3aYE0261mBmlpaWlpaWlpaWlpac/RptBvGQQuY8cpFi0D1K5Qsbn8s3/I7tHS0tLS0tLS0tLS0j5KW8odF1HfVBGZYseUBdyEoa30JslzBWhpaWlpaWlpaWlpaZ+u3e94rQouez4rV+LOXf6uaOs7pKWlpaWlpaWlpaWlPUJbPtPqqaFI7eBfnm95nO5aVXvWzWlpaWlpaWlpaWlpaZ+vTZPVFmWW0+o5REy5v/0ct2V4SUtLS0tLS0tLS0tLe4r203Dq21G3gr9Kt/5y/K1vJmOnTv+0tLS0tLS0tLS0tLTHasv/Uv6urYav1YLLzfG32pFkuo2WlpaWlpaWlpaWlvYI7bL+chlFTtm9VFKZjrqlcHVfsUlLS0tLS0tLS0tLS3uEtsh6PJC2WLOFrv4jVFN+cUdqHElLS0tLS0tLS0tLS3uANt1QTsP1+z4pErzCxLRbQLoMV3PnkouWlpaWlpaWlpaWlvYY7VhVRNZL9vhkLLddIXpNv9HS0tLS0tLS0tLS0p6j7ZvyyXLy7Sr9RVL3kem3slvtXFIWHbS0tLS0tLS0tLS0tMdoxyZ2zOWT1yp2vFbavnqCvgolaWlpaWlpaWlpaWlpT9FOQdvUWiRfUhN2UxD41VC1VOOZtqSlpaWlpaWlpaWlpT1AWzqI1ALJokh1mv0eNvb7ZLXF4bgUwtLS0tLS0tLS0tLS0p6ozaOwF4WUm0Nvo+T+Unya8O/L09LS0tLS0tLS0tLSnqNt4XzaFZbrOZRMJZpf4ds27qSlpaWlpaWlpaWlpT1F+37tKAFkif96blqSk3g1UVj26KtVaGlpaWlpaWlpaWlpz9H2MgV7SrVN5MmzHHa9LNacXlAuwhy0tLS0tLS0tLS0tLSHaL844FbajaTayFE8qZ4zj8eevr2+PrtHS0tLS0tLS0tLS0v7HG25oqXQrwSGtV3k+wIJX5/5c1BJS0tLS0tLS0tLS0v7ZO0X06hTni/9SKfmVgPU5iNxpfTyoqWlpaWlpaWlpaWlPUY77ifQFq0cywC1NCyth/TgyFWXuVizjmajpaWlpaWlpaWlpaU9QpsrLFOGboon02fxaCXtt2jyv626pKWlpaWlpaWlpaWlfZ62RG59M0/tfbm88HxHSd2ladkjdKgctLS0tLS0tLS0tLS0h2iXMdw+EZdiwvLFwrh8Bekd0tLS0tLS0tLS0tLSPl1bwsGe56Sl2sgSbY77+bmeU4GpjX8JYWlpaWlpaWlpaWlpaQ/TtlV/yNZqyHndizX39Zcty/ahJC0tLS0tLS0tLS0t7Tna9Nk0f+z3SLCHBGAqx0xFnVeIVOu7oaWlpaWlpaWlpaWlfbp22WRkGfotuz2WYs22fbSem1N+GfPS0tLS0tLS0tLS0tI+R3uFAHLqNJI+PWfjUnHlp2aSfyeKpKWlpaWlpaWlpaWlfaQ21VqmwdbpgFupnGylGUl5oKtMYFvGp7S0tLS0tLS0tLS0tGdqF/m2NPa6hINpZtu1qbrMY91oaWlpaWlpaWlpaWmP15Z9anYvdfXP4eAUfH5XwElLS0tLS0tLS0tLS3uONq/USkXkVBZZqjPT7Otrcy4unbP7tdNwtLS0tLS0tLS0tLS0v7G2Fj7mQ2qLwdZ5IFvlLedcv7+CXt4SLS0tLS0tLS0tLS3t07X//w8tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t7b+m/QNO7FsdSE0lWQAAAABJRU5ErkJggg==", + "revision": "a6cafb8eb9f84e38a97cabb3", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "1f5eb21fff9d44898e102c1b", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -71703,9 +105647,18 @@ "total_amount": 505, "history_id": 1679152509855, "id": 55900907390, - "date_created": "2023-03-18T11:15:10.620-04:00", - "date_last_updated": "2023-03-18T11:35:13.000-04:00", - "date_of_expiration": "2023-03-19T11:15:10.378-04:00", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", @@ -71713,41 +105666,54 @@ "currency_id": "BRL", "date_approved": "2023-03-18T11:35:13.000-04:00", "money_release_date": "2023-03-18T11:35:13.000-04:00", - "wasDebited": true, - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b045e22d241040958f905577", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383536, + "modified": 1701459383536 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "c7702187dedb405e82a2b933", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } + }, + "revision": "3ddebeccb9ee44edb8f17fdf", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -71756,47 +105722,69 @@ "total_amount": 505, "history_id": 1679153875722, "id": 1679153875722, - "date_created": "2023-03-18T15:37:55.722Z", - "date_last_updated": "2023-03-18T15:37:55.722Z", - "date_of_expiration": "2023-04-17T15:37:55.722Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 505,00 para a carteira iVip 1251.9390.3817.0948-30" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f77999318ad4486fabf9c91e", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383536, + "modified": 1701459383536 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 505,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "b6b43d7f254140c49c77cc37", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } + }, + "revision": "c657fbfb13e14061ae6de825", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -71805,51 +105793,93 @@ "total_amount": 505, "history_id": 1679154208055, "id": 1679154208055, - "date_created": "2023-03-18T15:43:28.055Z", - "date_last_updated": "2023-03-18T15:43:28.055Z", - "date_of_expiration": "2023-04-17T15:43:28.055Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 505,00 para a carteira iVip 1251.9390.3817.0948-30" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2c349174c7f543be842d3efd", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 505,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "3f11674cf7d040488dee698e", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dcc8efbaf6df4bff838ab1a2", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d4ff77f547d74cd7a6b30b55", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383536, + "modified": 1701459383536 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "da902a99e52e4cc89024fb67", + "revision_nr": 1, + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -71858,37 +105888,45 @@ "total_amount": 1100, "history_id": 1679263150490, "id": 1679263150490, - "date_created": "2023-03-19T21:59:10.490Z", - "date_last_updated": "2023-03-19T21:59:10.490Z", - "date_of_expiration": "2023-04-18T21:59:10.490Z", + "date_created": { + "type": 6, + "value": 1701459383536 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383536 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383536 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "44f2a487317c404dbbe4f466", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383536, + "modified": 1701459383536 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679266956838/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "e259bf1dc0d34802a241eaf6", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383536, + "modified": 1701459383536 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679266956838/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679266956838, @@ -71899,18 +105937,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "83fb34b962aa45758aa8cde6", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679266956838", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -71920,9 +105971,18 @@ "original_amount": 11643076, "total_amount": 11643076, "id": 1679266956838, - "date_created": "2023-03-19T23:02:36.838Z", - "date_last_updated": "2023-03-19T23:02:36.838Z", - "date_of_expiration": "2023-03-19T23:02:36.838Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71931,86 +105991,163 @@ "history_id": 1679266956838, "description": "Compra de 11643076 IVIP por 2000 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "607878b3a05a4e079cd6bb09", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 1.00%", - "amount": 15 + "amount": 15, + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1c0b1a7d85d44ed48f826a2b", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7055bc2c0e0a4c54a498f775", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "zBCfpF dcGeyDOq lplNs" + "account_holder_name": "zBCfpF dcGeyDOq lplNs", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "920d4f83f8b34e8db1c3840d", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "176d43e87d8a442bafe30c9c", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 1515, "overpaid_amount": 0, "installment_amount": 0, - "qr_code": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654071515.005802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131358707763045A2A", - "ticket_url": "https://www.mercadopago.com.br/sandbox/payments/1313587077/ticket?caller_id=1310149122&hash=b6d8c471-76bc-44da-bf9f-76b5ae753314", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIxUlEQVR42u3dS24sKRAFUHbA/neZO6DVE7uSuJC29NTql5wcWLarCg41C8WHNv6i52q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9e2+an//u//vVCD+/7/t/t1X8Xbt+/3Xe8vXB9rXJ9bVkZtLS0tLS0tLS0tLS0h2j757Kfi7SvHa+y2Oe20+rjftzWWn5h0iYGLS0tLS0tLS0tLS3tKdopgCwxZi/H+P7YFAl+LjrFmCO8ZRG40tLS0tLS0tLS0tLS0s4LT3m5DF1Gm2PzFdDS0tLS0tLS0tLS0tLGaC7FfyX3l4omezlf+jHl/mhpaWlpaWlpaWlpac/WJnwqqSyUkbvmSiPcRNk11v26RpSWlpaWlpaWlpaWlvZv105PSrr9Fz8qg5aWlpaWlpaWlpaW9ghtftKUkp6njyyjyBJ83tKD3ys/W2hpaWlpaWlpaWlpad+tTS1sYzPjMeX+Svy36JqbTj812+VkHy0tLS0tLS0tLS0t7bu1U/vbZ8/a2M54bE+DI5/qOWvtZo4saWlpaWlpaWlpaWlp362dXky3rZUDlTCv5VvUUjpvbMjP3XC0tLS0tLS0tLS0tLSv1V5hGEldczKmUSXt+ZnGT+6PRktLS0tLS0tLS0tL+35tLb0s+DTIpLW4Sknn9fCW1F3X8zdHS0tLS0tLS0tLS0v7dm2J60a4O60VfIkdpwrL1BzXSspw+qoKlJaWlpaWlpaWlpaW9gBtqrWcMm/Lt5S9p+gwJQUXZykRbaelpaWlpaWlpaWlpT1Le9t7H1TmVGCtoSxHu5VyljxfW4WStLS0tLS0tLS0tLS0b9dO4/l7TvtNKb7SCFc3S1cApHGROcakpaWlpaWlpaWlpaU9Rbu562y6CntqZltUSeaYsAVtmur/XCNKS0tLS0tLS0tLS0v7Nm1pa2sh3zZRegg+02/1Hre0wNNXQEtLS0tLS0tLS0tL+25tKrgsP1Lp5dj2saUL1GoomUovaWlpaWlpaWlpaWlpz9T2kpfLJ6jFmvtXS3Hl4n62H1dd0tLS0tLS0tLS0tLSvk37WfOYoshbTi+dJX227DjC3QATvgcoLS0tLS0tLS0tLS3tAdrp858fWGbe2r3gcrltC4FmHReZj9tpaWlpaWlpaWlpaWlP0uY03dVidWa5T20U7eazLaQCR+69o6WlpaWlpaWlpaWlPUKbP5Xm+48QY44QXvYckOaPjXLwQqalpaWlpaWlpaWlpT1AmxQ/OEsJJcc9IJ0+ews5U1Iwb05LS0tLS0tLS0tLS3uOtowHaSmKLP1uV7n7Or9lcl8h2feb29ZoaWlpaWlpaWlpaWnfor3KtqV7rd1jvZFvUfv8s+UxJ+mqgNQDt54eSUtLS0tLS0tLS0tL+zbtBCjx5OJy6rZ9cjVlz8m+tC8tLS0tLS0tLS0tLe1J2kWIuOyBKym+Vo6Rkng/iBhzxSYtLS0tLS0tLS0tLe27tVO9ZJngvwwl64656jJNPembaZTbKJKWlpaWlpaWlpaWlvaN2rHZO//Zwsj+dLv1op1uWbGZ0oi0tLS0tLS0tLS0tLTv116ryslpUH/LCy8jxpKru0qHXP5so6WlpaWlpaWlpaWlPU5bqh/rVMhcp1mPtprM3z5PsIhek4WWlpaWlpaWlpaWlvb92nGXLeLJMpl/QZ7+l05QIsbabEdLS0tLS0tLS0tLS3uiNk8pSWHefox/OlrfjPZPCUBaWlpaWlpaWlpaWtpztBMqdb6V6SP9noibetvafap/zf0l9xRZ3r9IWlpaWlpaWlpaWlra12tzTDhWN6ZNb9ll91IomWo8N4WetLS0tLS0tLS0tLS079amqsuS9mu5YW5qk5uWSqWcm5EmKVKlpaWlpaWlpaWlpaU9QnuVhrT0v1/dojYVUqagspzvhzWitLS0tLS0tLS0tLS0b9OWHFwrfXHLGLMMI9nxylI9R68lNKWlpaWlpaWlpaWlpT1AWwofa4RXeuAWRZMb/CZ/V8ec0NLS0tLS0tLS0tLSnqKddpy63KZgMe/Tw1lavqktJwp7+dK2NaK0tLS0tLS0tLS0tLSv0paF04513Eiqklz2yk03qz1FqoOWlpaWlpaWlpaWlvZUbdtUP24630YIKlsYVdJztrA8nZaWlpaWlpaWlpaW9kBtSr+lt0zXprUyy3/Ep9ZVbsf4P90NR0tLS0tLS0tLS0tL+15tuk+tFGb2VQRar00royFTsm/ky7hpaWlpaWlpaWlpaWmP0Oaax5pqKz1rt7ekS9UKL838H+F8g5aWlpaWlpaWlpaW9izteOp8K1tcgdxCsNg2U0o2i3ZaWlpaWlpaWlpaWtqztI8j9qcOuRafdHfalfvsUnPc5qGlpaWlpaWlpaWlpX27dpnOSzumESRTmm7kWwLK0JLFbJISfNLS0tLS0tLS0tLS0r5bu+xjKyP26wT/ZYqvRJZjlQpMgesmiqSlpaWlpaWlpaWlpX2ttpVpISmxl96SKDkgnQLXNNX/R7dg09LS0tLS0tLS0tLSvkqbnkyukWWpuhyfsk9Pz9e1lUXbQxRJS0tLS0tLS0tLS0v7Pm0O/RY7bmLHGjE+RZEtJwqnmJWWlpaWlpaWlpaWlvb92l6SbulHiR1/VqI5nbQUV/46iqSlpaWlpaWlpaWlpX2lNod0uy1SnLitnGz5a1mEsNsokpaWlpaWlpaWlpaW9hTtbqXcHPcZ+rXtxdZtP2qSlpaWlpaWlpaWlpaWNib7SlLwyiP7px64Mv2/hVvZan6RlpaWlpaWlpaWlpb2HG3Cfy88FUPmLRZzTaZ84PKStvxl0NLS0tLS0tLS0tLSHqGtSbwy0L/lELHk6q486yTNoJwWSNdt09LS0tLS0tLS0tLSHqH9/z+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+w8PIVl9AL56yAAAAABJRU5ErkJggg==" + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b6cebd8e2dbe4fc38aad3e8d", + "revision_nr": 1, + "created": 1701459383537, + "modified": 1701459383537 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654071515.005802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131358707763045A2A", + "revision": "55a9d69646a147348f4e1a6f", + "revision_nr": 1, + "created": 1701459383537, + "modified": 1701459383537 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/sandbox/payments/1313587077/ticket?caller_id=1310149122&hash=b6d8c471-76bc-44da-bf9f-76b5ae753314", + "revision": "c4cad3262a4d4f1fb66b67a8", + "revision_nr": 1, + "created": 1701459383537, + "modified": 1701459383537 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIxUlEQVR42u3dS24sKRAFUHbA/neZO6DVE7uSuJC29NTql5wcWLarCg41C8WHNv6i52q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9e2+an//u//vVCD+/7/t/t1X8Xbt+/3Xe8vXB9rXJ9bVkZtLS0tLS0tLS0tLS0h2j757Kfi7SvHa+y2Oe20+rjftzWWn5h0iYGLS0tLS0tLS0tLS3tKdopgCwxZi/H+P7YFAl+LjrFmCO8ZRG40tLS0tLS0tLS0tLS0s4LT3m5DF1Gm2PzFdDS0tLS0tLS0tLS0tLGaC7FfyX3l4omezlf+jHl/mhpaWlpaWlpaWlpac/WJnwqqSyUkbvmSiPcRNk11v26RpSWlpaWlpaWlpaWlvZv105PSrr9Fz8qg5aWlpaWlpaWlpaW9ghtftKUkp6njyyjyBJ83tKD3ys/W2hpaWlpaWlpaWlpad+tTS1sYzPjMeX+Svy36JqbTj812+VkHy0tLS0tLS0tLS0t7bu1U/vbZ8/a2M54bE+DI5/qOWvtZo4saWlpaWlpaWlpaWlp362dXky3rZUDlTCv5VvUUjpvbMjP3XC0tLS0tLS0tLS0tLSv1V5hGEldczKmUSXt+ZnGT+6PRktLS0tLS0tLS0tL+35tLb0s+DTIpLW4Sknn9fCW1F3X8zdHS0tLS0tLS0tLS0v7dm2J60a4O60VfIkdpwrL1BzXSspw+qoKlJaWlpaWlpaWlpaW9gBtqrWcMm/Lt5S9p+gwJQUXZykRbaelpaWlpaWlpaWlpT1Le9t7H1TmVGCtoSxHu5VyljxfW4WStLS0tLS0tLS0tLS0b9dO4/l7TvtNKb7SCFc3S1cApHGROcakpaWlpaWlpaWlpaU9Rbu562y6CntqZltUSeaYsAVtmur/XCNKS0tLS0tLS0tLS0v7Nm1pa2sh3zZRegg+02/1Hre0wNNXQEtLS0tLS0tLS0tL+25tKrgsP1Lp5dj2saUL1GoomUovaWlpaWlpaWlpaWlpz9T2kpfLJ6jFmvtXS3Hl4n62H1dd0tLS0tLS0tLS0tLSvk37WfOYoshbTi+dJX227DjC3QATvgcoLS0tLS0tLS0tLS3tAdrp858fWGbe2r3gcrltC4FmHReZj9tpaWlpaWlpaWlpaWlP0uY03dVidWa5T20U7eazLaQCR+69o6WlpaWlpaWlpaWlPUKbP5Xm+48QY44QXvYckOaPjXLwQqalpaWlpaWlpaWlpT1AmxQ/OEsJJcc9IJ0+ews5U1Iwb05LS0tLS0tLS0tLS3uOtowHaSmKLP1uV7n7Or9lcl8h2feb29ZoaWlpaWlpaWlpaWnfor3KtqV7rd1jvZFvUfv8s+UxJ+mqgNQDt54eSUtLS0tLS0tLS0tL+zbtBCjx5OJy6rZ9cjVlz8m+tC8tLS0tLS0tLS0tLe1J2kWIuOyBKym+Vo6Rkng/iBhzxSYtLS0tLS0tLS0tLe27tVO9ZJngvwwl64656jJNPembaZTbKJKWlpaWlpaWlpaWlvaN2rHZO//Zwsj+dLv1op1uWbGZ0oi0tLS0tLS0tLS0tLTv116ryslpUH/LCy8jxpKru0qHXP5so6WlpaWlpaWlpaWlPU5bqh/rVMhcp1mPtprM3z5PsIhek4WWlpaWlpaWlpaWlvb92nGXLeLJMpl/QZ7+l05QIsbabEdLS0tLS0tLS0tLS3uiNk8pSWHefox/OlrfjPZPCUBaWlpaWlpaWlpaWtpztBMqdb6V6SP9noibetvafap/zf0l9xRZ3r9IWlpaWlpaWlpaWlra12tzTDhWN6ZNb9ll91IomWo8N4WetLS0tLS0tLS0tLS079amqsuS9mu5YW5qk5uWSqWcm5EmKVKlpaWlpaWlpaWlpaU9QnuVhrT0v1/dojYVUqagspzvhzWitLS0tLS0tLS0tLS0b9OWHFwrfXHLGLMMI9nxylI9R68lNKWlpaWlpaWlpaWlpT1AWwofa4RXeuAWRZMb/CZ/V8ec0NLS0tLS0tLS0tLSnqKddpy63KZgMe/Tw1lavqktJwp7+dK2NaK0tLS0tLS0tLS0tLSv0paF04513Eiqklz2yk03qz1FqoOWlpaWlpaWlpaWlvZUbdtUP24630YIKlsYVdJztrA8nZaWlpaWlpaWlpaW9kBtSr+lt0zXprUyy3/Ep9ZVbsf4P90NR0tLS0tLS0tLS0tL+15tuk+tFGb2VQRar00royFTsm/ky7hpaWlpaWlpaWlpaWmP0Oaax5pqKz1rt7ekS9UKL838H+F8g5aWlpaWlpaWlpaW9izteOp8K1tcgdxCsNg2U0o2i3ZaWlpaWlpaWlpaWtqztI8j9qcOuRafdHfalfvsUnPc5qGlpaWlpaWlpaWlpX27dpnOSzumESRTmm7kWwLK0JLFbJISfNLS0tLS0tLS0tLS0r5bu+xjKyP26wT/ZYqvRJZjlQpMgesmiqSlpaWlpaWlpaWlpX2ttpVpISmxl96SKDkgnQLXNNX/R7dg09LS0tLS0tLS0tLSvkqbnkyukWWpuhyfsk9Pz9e1lUXbQxRJS0tLS0tLS0tLS0v7Pm0O/RY7bmLHGjE+RZEtJwqnmJWWlpaWlpaWlpaWlvb92l6SbulHiR1/VqI5nbQUV/46iqSlpaWlpaWlpaWlpX2lNod0uy1SnLitnGz5a1mEsNsokpaWlpaWlpaWlpaW9hTtbqXcHPcZ+rXtxdZtP2qSlpaWlpaWlpaWlpaWNib7SlLwyiP7px64Mv2/hVvZan6RlpaWlpaWlpaWlpb2HG3Cfy88FUPmLRZzTaZ84PKStvxl0NLS0tLS0tLS0tLSHqGtSbwy0L/lELHk6q486yTNoJwWSNdt09LS0tLS0tLS0tLSHqH9/z+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+w8PIVl9AL56yAAAAABJRU5ErkJggg==", + "revision": "3a2eb683e0584aabbd3ee953", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "548da41bb7134638ade153ae", + "revision_nr": 1, + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -72019,48 +106156,70 @@ "total_amount": 1515, "history_id": 1679696530924, "id": 1313587077, - "date_created": "2023-03-24T18:22:11.656-04:00", - "date_last_updated": "2023-03-24T18:22:11.656-04:00", - "date_of_expiration": "2023-03-25T18:22:11.438-04:00", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1251.9390.3817.0948-30" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4e5af6463d194c1e91f95650", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "0ae052d905cf421b8c73d6e1", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } + }, + "revision": "f1a50b6935b04d288c827878", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -72069,9 +106228,18 @@ "total_amount": 1500, "history_id": 1679696876215, "id": 1679696876215, - "date_created": "2023-03-24T22:27:56.215Z", - "date_last_updated": "2023-03-24T22:37:00.511Z", - "date_of_expiration": "2023-04-23T22:27:56.215Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -72079,41 +106247,54 @@ "date_approved": "2023-03-24T22:37:00.511Z", "money_release_date": "2023-03-24T22:37:00.511Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1251.9390.3817.0948-30" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1b6212426eea48a4a9705985", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "62aa3d5d81534f2e9613724e", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } + }, + "revision": "93a736c1060249b2b56ddc7e", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -72122,9 +106303,18 @@ "total_amount": 500, "history_id": 1679698976004, "id": 1679698976004, - "date_created": "2023-03-24T23:02:56.004Z", - "date_last_updated": "2023-03-24T23:12:40.373Z", - "date_of_expiration": "2023-04-23T23:02:56.004Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -72132,30 +106322,29 @@ "date_approved": "2023-03-24T23:12:40.373Z", "money_release_date": "2023-03-24T23:12:40.373Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3da27f8b70fa42ca8196f684", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679872088470/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "7de7a403198341b48c83c2be", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679872088470/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679872088470, @@ -72166,18 +106355,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d5dfcefa5e364155812028be", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679872088470", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -72187,9 +106389,18 @@ "original_amount": 10651254, "total_amount": 10651254, "id": 1679872088470, - "date_created": "2023-03-26T23:08:08.470Z", - "date_last_updated": "2023-03-26T23:08:08.470Z", - "date_of_expiration": "2023-03-26T23:08:08.470Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -72198,38 +106409,41 @@ "history_id": 1679872088470, "description": "Compra de 10.651.254,00 IVIP por 2.000,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b0e4c62295e94cdc96da80bc", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } + }, + "revision": "c8e9f0485c614bfc93bde7ad", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -72238,9 +106452,18 @@ "total_amount": 500, "history_id": 1680996986540, "id": 1680996986540, - "date_created": "2023-04-08T23:36:26.540Z", - "date_last_updated": "2023-04-09T16:29:34.524Z", - "date_of_expiration": "2023-05-08T23:36:26.540Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -72248,30 +106471,29 @@ "date_approved": "2023-04-09T16:29:34.524Z", "money_release_date": "2023-04-09T16:29:34.524Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "faf2ca6d7cfe493aba260be3", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1682640956216/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "bd6985d8265c4a53912ad479", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1682640956216/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -72284,18 +106506,31 @@ "overpaid_amount": 0, "installment_amount": 220, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bd0d69ced90c4210b315e087", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1682640956216", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -72306,38 +106541,46 @@ "total_amount": 220, "id": 1682640956216, "contract_id": "1679263150490", - "date_created": "2023-04-28T00:15:56.216Z", - "date_last_updated": "2023-04-28T00:15:56.216Z", - "date_of_expiration": "2023-04-28T00:15:56.216Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1682640956216, - "description": "Pagamento de fatura 1 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490" + "history_id": 1682640956216 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "10ab8612ad6a4657b51c9d1a", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1683194553322/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1682640956216/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", + "revision": "f33c2497642549ddbcb6dcdc", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1683194553322/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 3, @@ -72350,18 +106593,31 @@ "overpaid_amount": 0, "installment_amount": 220, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "308b7a9d035449c895d99434", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1683194553322", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -72372,38 +106628,46 @@ "total_amount": 220, "id": 1683194553322, "contract_id": "1679263150490", - "date_created": "2023-05-04T10:02:33.322Z", - "date_last_updated": "2023-05-04T10:02:33.322Z", - "date_of_expiration": "2023-05-04T10:02:33.322Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1683194553322, - "description": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490" + "history_id": 1683194553322 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9366cde8005540cb9678f399", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684019013862/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1683194553322/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", + "revision": "7d2915029a7848718b1a971e", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684019013862/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684019013862, @@ -72414,18 +106678,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f6961ea58b1441d2aac6e2d8", "revision_nr": 1, - "created": 1700748395502, - "modified": 1700748395502 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684019013862", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -72435,38 +106712,46 @@ "original_amount": 1510, "total_amount": 1510, "id": 1684019013862, - "date_created": "2023-05-13T23:03:33.862Z", - "date_last_updated": "2023-05-13T23:03:33.862Z", - "date_of_expiration": "2023-05-13T23:03:33.862Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684019013862, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684019013862 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "50930d4d5abe44e3bef1b234", "revision_nr": 1, - "created": 1700748395514, - "modified": 1700748395514 + "created": 1701459383537, + "modified": 1701459383537 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684155209634/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684019013862/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "b26b5a1445ca49d6b436229f", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684155209634/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -72479,18 +106764,31 @@ "overpaid_amount": 0, "installment_amount": 220, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4fdfbcd7ecaa480881013eb7", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684155209634", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -72501,53 +106799,95 @@ "total_amount": 220, "id": 1684155209634, "contract_id": "1679263150490", - "date_created": "2023-05-15T12:53:29.634Z", - "date_last_updated": "2023-05-15T12:53:29.634Z", - "date_of_expiration": "2023-05-15T12:53:29.634Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1684155209634, - "description": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490" + "history_id": 1684155209634 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "87eff24bd94743e0815fca38", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684155209634/description", + "content": { + "type": "STRING", + "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", + "revision": "7eb1e475110e484faf7791bf", + "revision_nr": 1, + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 48 + "amount": 48, + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a346b82cd34a4b5c9a6b57af", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6d25b7bb4fe34af487b0078d", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "49844394bf5644b7ab487b82", + "revision_nr": 1, + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -72556,37 +106896,45 @@ "total_amount": 648, "history_id": 1684158510574, "id": 1684158510574, - "date_created": "2023-05-15T13:48:30.574Z", - "date_last_updated": "2023-05-15T13:48:30.574Z", - "date_of_expiration": "2023-06-14T13:48:30.574Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fc16eea7ae3a428b8fa439f4", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684348943785/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", + "revision": "e470bd356920454eaf9022f4", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684348943785/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684348943785, @@ -72597,18 +106945,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f9a945dc08264b7b9f9bd077", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684348943785", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -72618,38 +106979,46 @@ "original_amount": 5, "total_amount": 5, "id": 1684348943785, - "date_created": "2023-05-17T18:42:23.785Z", - "date_last_updated": "2023-05-17T18:42:23.785Z", - "date_of_expiration": "2023-05-17T18:42:23.785Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684348943785, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684348943785 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e57cf1162e344656aaeec164", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624245338/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684348943785/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "8c6e78107fd04dd4adcb43b3", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624245338/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624245338, @@ -72660,18 +107029,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "440fdf71dba64626912d19ee", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624245338", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -72681,38 +107063,46 @@ "original_amount": 416.90000000000003, "total_amount": 416.90000000000003, "id": 1684624245338, - "date_created": "2023-05-20T23:10:45.338Z", - "date_last_updated": "2023-05-20T23:10:45.338Z", - "date_of_expiration": "2023-05-20T23:10:45.338Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684624245338, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684624245338 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4e51e1f2e0674b67bdd102de", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624330381/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624245338/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "52a61727b6d844c3b04da814", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624330381/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624330381, @@ -72723,18 +107113,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "136d974326474b60a57e7824", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624330381", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -72744,9 +107147,18 @@ "original_amount": 11552888, "total_amount": 11552888, "id": 1684624330381, - "date_created": "2023-05-20T23:12:10.381Z", - "date_last_updated": "2023-05-20T23:12:10.381Z", - "date_of_expiration": "2023-05-20T23:12:10.381Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -72755,38 +107167,41 @@ "history_id": 1684624330381, "description": "Compra de 11.552.888,00 IVIP por 2.371,90 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "94a3d636862e48c1a37e650e", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } + }, + "revision": "ea8c5690e3e945f99dc95258", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -72795,47 +107210,69 @@ "total_amount": 100, "history_id": 1686781360635, "id": 1686781360635, - "date_created": "2023-06-14T22:22:40.635Z", - "date_last_updated": "2023-06-14T22:22:40.635Z", - "date_of_expiration": "2023-07-14T22:22:40.635Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1251.9390.3817.0948-30" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f33c2209595748f99aab361a", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "2b47142b827843ce8178333d", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } + }, + "revision": "276a55cfa80d481aad436ca0", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -72844,9 +107281,18 @@ "total_amount": 162, "history_id": 1686838534175, "id": 1686838534175, - "date_created": "2023-06-15T14:15:34.175Z", - "date_last_updated": "2023-06-15T14:25:35.258Z", - "date_of_expiration": "2023-07-15T14:15:34.175Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -72854,30 +107300,29 @@ "date_approved": "2023-06-15T14:25:35.258Z", "money_release_date": "2023-06-15T14:25:35.258Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 162,00 para a carteira iVip 1251.9390.3817.0948-30" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3803f0dc570b47e18575b4ef", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686839367288/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 162,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "cce25db28df248a393a90487", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686839367288/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -72890,18 +107335,31 @@ "overpaid_amount": 0, "installment_amount": 162, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2ceb9b0f14414928926934f8", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686839367288", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -72912,38 +107370,46 @@ "total_amount": 162, "id": 1686839367288, "contract_id": "1684158510574", - "date_created": "2023-06-15T14:29:27.288Z", - "date_last_updated": "2023-06-15T14:29:27.288Z", - "date_of_expiration": "2023-06-15T14:29:27.288Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1686839367288, - "description": "Pagamento de fatura 1 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574" + "history_id": 1686839367288 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d5a55a270f4a4b65af99026b", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1687526304583/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686839367288/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", + "revision": "b895691aecbf4c4c856213b6", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1687526304583/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687526304583, @@ -72954,18 +107420,31 @@ "overpaid_amount": 0, "installment_amount": 5132122, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1f15013ad4b441d7ae0530af", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1687526304583", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -72974,53 +107453,73 @@ "original_amount": 5132122, "total_amount": 5132122, "id": 1687526304583, - "date_created": "2023-06-23T13:18:24.583Z", - "date_last_updated": "2023-06-23T13:18:24.583Z", - "date_of_expiration": "2025-06-23T13:18:24.583Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1687526304583, - "wasDebited": true, - "description": "Investimento de 5.132.122,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "52da617bcc2d4780afe7b834", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1687526304583/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-02T09:29:25.462Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 5.132.122,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", + "revision": "cb7d80e4b00b4663b82bb860", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-02T09:29:25.462Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } + }, + "revision": "826a8c84798a4a219aff3d6e", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691054965462, "net_received_amount": 0, @@ -73030,18 +107529,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1691054965462" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9c7af820579048a5a50927bd", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1691054965462", + "revision": "151f2526e0984fad9c1b2610", + "revision_nr": 1, + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -73050,8 +107572,14 @@ "total_amount": 510, "id": 1691054965462, "history_id": 1691054965462, - "date_created": "2023-08-03T09:29:25.462Z", - "date_last_updated": "2023-08-03T19:07:16.675Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73062,43 +107590,58 @@ "money_release_date": "2023-08-03T19:07:16.675Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 510,00 para a carteira iVip 1251.9390.3817.0948-30" + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3ddd5505e2154949aa996826", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-06T23:50:11.694Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 510,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "55ea3d338a6c45cc9d479504", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-06T23:50:11.694Z", + "date_created": { + "type": 6, + "value": 1701459383537 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383537 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383537 + } + }, + "revision": "6ed0d6ade65447368208ee6d", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691452211694, "net_received_amount": 0, @@ -73108,18 +107651,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1691452211694" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "824c8e32935a421789fc15ee", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1691452211694", + "revision": "d8ced413f1a24b90927f5206", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -73128,8 +107694,14 @@ "total_amount": 300, "id": 1691452211694, "history_id": 1691452211694, - "date_created": "2023-08-07T23:50:11.694Z", - "date_last_updated": "2023-08-08T00:39:59.247Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73140,33 +107712,59 @@ "money_release_date": "2023-08-08T00:39:59.247Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 300,00 para a carteira iVip 1251.9390.3817.0948-30" + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "26432c4071bf44faa82309af", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor 300,00 para a carteira iVip 1251.9390.3817.0948-30", + "revision": "8335e63c5cb24a179d9ddb90", + "revision_nr": 1, + "created": 1701459383537, + "modified": 1701459383537 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 750698.52 + "amount": 750698.52, + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e9ea333432f74756bdacc225", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692030522501, "net_received_amount": 0, @@ -73176,18 +107774,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1692030522501" + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d88ef83377e140ccb6573f6b", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1692030522501", + "revision": "f69415177bd349ec869195a5", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "3a7069a747dd49b5b4da6b93", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -73196,9 +107827,18 @@ "total_amount": 24272585.48, "id": 1692030522501, "history_id": 1692030522501, - "date_created": "2023-08-14T16:28:42.501Z", - "date_last_updated": "2023-08-14T16:40:00.472Z", - "date_of_expiration": "2023-08-14T16:28:42.501Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -73208,44 +107848,55 @@ "date_approved": "2023-08-14T16:40:00.472Z", "money_release_date": "2023-08-14T16:40:00.472Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 24.272.585,48 IVIP para a carteira 0xC241a13f35a534f3ef174c5cF50Ea8653FfE62F1" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "72d857ff8f6f4bd5bd4105e4", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-19T21:27:27.215Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 24.272.585,48 IVIP para a carteira 0xC241a13f35a534f3ef174c5cF50Ea8653FfE62F1", + "revision": "8d7fd0463a2347f0aae07830", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-19T21:27:27.215Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } + }, + "revision": "42b796f59b2d41b7974c2428", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695158847215, "net_received_amount": 0, @@ -73255,18 +107906,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695158847215" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "646bdbf2dcb14e3b91c961d0", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695158847215", + "revision": "f174042b1c6843b8a2bb8bd7", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -73275,8 +107949,14 @@ "total_amount": 150, "id": "1695158847215", "history_id": "1695158847215", - "date_created": "2023-09-19T21:27:27.215Z", - "date_last_updated": "2023-09-19T21:40:25.727Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73287,29 +107967,32 @@ "money_release_date": "2023-09-19T21:40:25.727Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 150,00 BRL para a carteira iVip 1251.9390.3817.0948-30" + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5bc491fa862a49e6af26c1a5", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 150,00 BRL para a carteira iVip 1251.9390.3817.0948-30", + "revision": "8e227fdefa3a48ee9bf56ac9", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695159884735, "net_received_amount": 0, @@ -73319,20 +108002,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 4, "installments_payable": 1, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884735" + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c848d4fa53a343a78953e5d1", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884735", + "revision": "599d46caedee4680bc2b7b46", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -73341,38 +108047,46 @@ "total_amount": 220, "id": "1695159884735", "history_id": "1695159884735", - "date_created": "2023-09-19T21:44:44.735Z", - "date_last_updated": "2023-09-19T21:44:44.735Z", - "date_of_expiration": "2023-09-19T21:44:44.735Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d00fcc7b95a54206b27b6734", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", + "revision": "30244b717c994146ac15bd15", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695159884797, "net_received_amount": 0, @@ -73382,20 +108096,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 2, "installments_payable": 2, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884797" + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "12833145f2704d3b9f38befb", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884797", + "revision": "06a91d4232e7490891709417", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -73404,38 +108141,46 @@ "total_amount": 162, "id": "1695159884797", "history_id": "1695159884797", - "date_created": "2023-09-19T21:44:44.797Z", - "date_last_updated": "2023-09-19T21:44:44.797Z", - "date_of_expiration": "2023-09-19T21:44:44.797Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 2 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5b908fbe40834b7badba0cde", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", + "revision": "1aa2e9245eba4be988bbc19b", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695159884893, "net_received_amount": 0, @@ -73445,20 +108190,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 5, "installments_payable": 0, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884893" + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "44b9c81aa1f443448ac0c0db", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884893", + "revision": "fef4667145ad412db83ac50a", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -73467,38 +108235,46 @@ "total_amount": 220, "id": "1695159884893", "history_id": "1695159884893", - "date_created": "2023-09-19T21:44:44.893Z", - "date_last_updated": "2023-09-19T21:44:44.893Z", - "date_of_expiration": "2023-09-19T21:44:44.893Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e96443c64fc84feca7fccb7b", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", + "revision": "4c612819185f4b699aa951eb", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695159884951, "net_received_amount": 0, @@ -73508,20 +108284,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 3, "installments_payable": 1, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884951" + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f2360f8e1fab42728adfb15e", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884951", + "revision": "76d85c0e264d4668a27be124", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -73530,38 +108329,46 @@ "total_amount": 162, "id": "1695159884951", "history_id": "1695159884951", - "date_created": "2023-09-19T21:44:44.951Z", - "date_last_updated": "2023-09-19T21:44:44.951Z", - "date_of_expiration": "2023-09-19T21:44:44.951Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 3 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0ccbf0cc830f4607a6af5ed8", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 3 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", + "revision": "0fc0602278ad44318b2ed542", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695159885077, "net_received_amount": 0, @@ -73571,20 +108378,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 4, "installments_payable": 0, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159885077" + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b7aa28d9666e44c389c18b54", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159885077", + "revision": "2a7601e4f0c04ebb9e2e7a09", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -73593,52 +108423,72 @@ "total_amount": 162, "id": "1695159885077", "history_id": "1695159885077", - "date_created": "2023-09-19T21:44:45.077Z", - "date_last_updated": "2023-09-19T21:44:45.077Z", - "date_of_expiration": "2023-09-19T21:44:45.077Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 4 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "14ad9e2ebc974f1d9025b6bf", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-31T14:53:42.012Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 4 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", + "revision": "2babd0084ee94890b52fbb6f", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-31T14:53:42.012Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } + }, + "revision": "f8955b3f2ec043dca90e4945", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696172022012, "net_received_amount": 0, @@ -73648,18 +108498,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1696172022012" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8b68a147befd429784d81ed4", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1696172022012", + "revision": "b46165b8502f441ea4861d12", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -73669,51 +108542,72 @@ "total_amount": 100000, "id": "1696172022012", "history_id": "1696172022012", - "date_created": "2023-10-01T14:53:42.012Z", - "date_last_updated": "2023-10-01T14:53:42.012Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 100.000,00 IVIP para a carteira iVip 1251.9390.3817.0948-30" + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d81afd293feb42d7bd4edb58", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-11-11T12:17:09.373Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 100.000,00 IVIP para a carteira iVip 1251.9390.3817.0948-30", + "revision": "5474bb35cf2041d3b9ef6145", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-11-11T12:17:09.373Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } + }, + "revision": "414ed39babf64c6aa3c299e9", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1697113029373", "net_received_amount": 0, @@ -73723,18 +108617,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1697113029373" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "09a5f52a7a564eb38f46a538", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1697113029373", + "revision": "15f5cd8075f8427ba59e9ae5", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -73744,8 +108661,14 @@ "total_amount": 2500, "id": "1697113029373", "history_id": "1697113029373", - "date_created": "2023-10-12T12:17:09.373Z", - "date_last_updated": "2023-10-12T12:23:24.981Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73756,29 +108679,32 @@ "money_release_date": "2023-10-12T12:23:24.981Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 2.500,00 BRL para a carteira iVip 1251.9390.3817.0948-30" + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b0dd5149659c4b019faceb15", "revision_nr": 1, - "created": 1700748395515, - "modified": 1700748395515 + "created": 1701459383538, + "modified": 1701459383538 } }, { - "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697159292046/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 2.500,00 BRL para a carteira iVip 1251.9390.3817.0948-30", + "revision": "140149d31075450e975c17c1", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697159292046/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": "1697159292046", "net_received_amount": 0, @@ -73788,18 +108714,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1697159292046" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "93ff2b0284cf45e5b4adc4f5", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697159292046/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1697159292046", + "revision": "274a507b5c524f82aca0ede9", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697159292046", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -73809,9 +108758,18 @@ "total_amount": 3812023, "id": "1697159292046", "history_id": "1697159292046", - "date_created": "2023-10-13T01:08:12.046Z", - "date_last_updated": "2023-10-13T01:08:12.046Z", - "date_of_expiration": "2023-10-13T01:08:12.046Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -73820,42 +108778,54 @@ "description": "Compra de 3.812.023,00 IVIP por 2.034,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d8c06523c90f465db48518ff", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8b94de6bb15f4f84864d8413", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "367044cd1bfe4dedafcb79d6", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679263150490, "type": "emprestimo", @@ -73863,48 +108833,92 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-03-19T21:59:10.490Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6c790c06d8794a199408bba8", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "4263bab2ae004c72beacf9fd", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "72e982f315214ea4a4d88aff", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "62c23a8fbb9f4f80a6b18521", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3e40f6c319d146d191b12662", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679263150490, "type": "emprestimo", @@ -73912,48 +108926,92 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-03-19T21:59:10.490Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "62ca7f77ed8747deb843e56c", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "b1dbd8c9b428467695370db5", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "511586e2a9724f2e80363333", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "271ed9be2d714e009c1f9c3f", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7f144cb394174aabbd7384bd", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679263150490, "type": "emprestimo", @@ -73961,37 +109019,81 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-03-19T21:59:10.490Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "73b2f681d4d04e8383d70cda", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "87f5604ba1884b278292291e", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "abb32a58a4b94f3993e2aec2", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 48 + "amount": 48, + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9011d852da8442889990caf1", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684158510574, "type": "emprestimo", @@ -73999,48 +109101,92 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": "2023-05-15T13:48:30.574Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, "history_id": 1684158510574, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00" + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a711ec7092d446d9b594bf74", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", + "revision": "66c4c0df973040af8ef36c30", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "e0f964ad877a4381aecf5d81", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "44571ee1d624493f8beb9959", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4d8f33602bf34c0ebf70b444", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679263150490, "type": "emprestimo", @@ -74048,38 +109194,81 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-03-19T21:59:10.490Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-19T21:44:44.751Z", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9b694f217dd44cfc93b9b2e9", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "b2672eb9e8c34bd8bac7bc88", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "b039ea7a42b441129eb4076e", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 48 + "amount": 48, + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6d5cc79783cb44d3a7e29b71", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684158510574, "type": "emprestimo", @@ -74087,49 +109276,92 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": "2023-05-15T13:48:30.574Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, "history_id": 1684158510574, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-19T21:44:44.809Z", - "description": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00" + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1f39d1d11f7747b49d96d360", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", + "revision": "77cf427e44464597b1a96e7c", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "28c3657379a44d3a99b81b18", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "46e623bdfb3643fea9cf9b26", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100 + "amount": 100, + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "480a5d5bed5d495ab0316f62", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679263150490, "type": "emprestimo", @@ -74137,38 +109369,81 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-03-19T21:59:10.490Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-19T21:44:44.904Z", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00" + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bb55b0e1496a4557b00580e6", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", + "revision": "03e812aac48a4253b76460db", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "a92363473e3c4fd5a0f3f318", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 48 + "amount": 48, + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "352237cdb4a948198cc2fb72", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684158510574, "type": "emprestimo", @@ -74176,49 +109451,92 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": "2023-05-15T13:48:30.574Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, "history_id": 1684158510574, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-19T21:44:44.962Z", - "description": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00" + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "44e782da054f4228be31683b", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", + "revision": "f2377c44ebfa41a0a6405611", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "da1d80ea536e47858de7e783", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2a73767048f04ccdb51fb06f", "revision_nr": 1, - "created": 1700748395516, - "modified": 1700748395516 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 48 + "amount": 48, + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "753d98dbb6004d258cba604d", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684158510574, "type": "emprestimo", @@ -74226,100 +109544,158 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": "2023-05-15T13:48:30.574Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, "history_id": 1684158510574, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-19T21:44:45.096Z", - "description": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00" + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "230b951a59e249dba77f2831", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", + "revision": "303183ae7254477a9fd7378c", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383538, + "modified": 1701459383538 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "c11cea95fe7841548529286f", + "revision_nr": 1, + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3d01b73646ef4b79baab52bc", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "784d1b890ff24f6084521f89", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 1000, "limitUsed": 850, "analysisRequested": "2023-03-18T16:32:25.695Z", - "lastReview": "2023-03-19T21:27:43.210Z" + "lastReview": "2023-03-19T21:27:43.210Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9cedacfe9a224cc880c6b4eb", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1679152336550, "dateValidity": 1679152336550, "totalValue": 1379.3, "currencyType": "USD", - "balancesModificacao": "2023-10-14T03:00:00.000Z" + "balancesModificacao": "2023-10-14T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "46e83a25ecfe4a0983656420", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } + }, + "revision": "8e815a91efde482bb1bcfd9f", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -74328,9 +109704,18 @@ "total_amount": 1500, "history_id": 1677727950406, "id": 1677727950406, - "date_created": "2023-03-02T03:32:30.406Z", - "date_last_updated": "2023-03-02T03:38:03.262Z", - "date_of_expiration": "2023-04-01T03:32:30.406Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -74338,41 +109723,54 @@ "date_approved": "2023-03-02T03:38:03.262Z", "money_release_date": "2023-03-02T03:38:03.262Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1257.9763.0999.3744-60" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1930547e71764f44994987ba", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383538, + "modified": 1701459383538 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "8cc793dd939341c0bb996e7c", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } + }, + "revision": "dc60bebb2edf417da9c976eb", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -74381,9 +109779,18 @@ "total_amount": 100, "history_id": 1677797747321, "id": 1677797747321, - "date_created": "2023-03-02T22:55:47.321Z", - "date_last_updated": "2023-03-03T00:25:24.428Z", - "date_of_expiration": "2023-04-01T22:55:47.321Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -74391,41 +109798,54 @@ "date_approved": "2023-03-03T00:25:24.428Z", "money_release_date": "2023-03-03T00:25:24.428Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1257.9763.0999.3744-60" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6fda46fef573492eaf60b3c1", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383538, + "modified": 1701459383538 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "8d401b439bda470dbd003481", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + } + }, + "revision": "b0cec0a331914266bf637062", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -74434,38 +109854,46 @@ "total_amount": 1000, "history_id": 1678363438960, "id": 1678363438960, - "date_created": "2023-03-09T12:03:58.960Z", - "date_last_updated": "2023-03-13T12:44:21.621Z", - "date_of_expiration": "2023-04-08T12:03:58.960Z", + "date_created": { + "type": 6, + "value": 1701459383538 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383538 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383538 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-03-13T12:44:21.621Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1257.9763.0999.3744-60" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d87f149d9ffc4ebeb0f29703", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383538, + "modified": 1701459383538 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678155991324/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "a45a7af8fde54efbae0cbfa1", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383538, + "modified": 1701459383538 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678155991324/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678155991324, @@ -74476,18 +109904,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3e286660d3004cb7881b4500", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678155991324", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -74497,9 +109938,18 @@ "original_amount": 11439584, "total_amount": 11439584, "id": 1678155991324, - "date_created": "2023-03-07T02:26:31.324Z", - "date_last_updated": "2023-03-07T02:26:31.324Z", - "date_of_expiration": "2023-03-07T02:26:31.324Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74508,86 +109958,163 @@ "history_id": 1678155991324, "description": "Compra de 11439584 IVIP por 1600 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b23010ed18804544b8285a96", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 1.9800000000000002 + "amount": 1.9800000000000002, + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fdca6cfd8c9e41328085d599", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e0cf2d57f5514dd2b0c60a17", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "Paulo Fagner de Oliveira" + "account_holder_name": "Paulo Fagner de Oliveira", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "11a66c175b804a588f9093fb", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "528decd8b53149b699b102c7", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 201.98, "overpaid_amount": 0, "installment_amount": 0, - "ticket_url": "https://www.mercadopago.com.br/payments/55108764779/ticket?caller_id=1310149122&hash=bd26ec14-a4ce-4255-b152-2a7df041f5dd", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI5ElEQVR42u3dUa7jNgwFUO3A+9+ld+Bi0E6TkFdyBh0UrXz8Eby8xPZx/ghSV+P6Hx3noKWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaX9/dpRj+PH/46/P/j514+z/nx5Ha8L/PXBz3Nf33u/x88PXl9+P60zaGlpaWlpaWlpaWlpH6I93ku28jZd/fVBuWP7CcoZk0/fHzIxaGlpaWlpaWlpaWlpH6AtBWR+jPHpbj24sTj3o058PcGicKWlpaWlpaWlpaWlpX229vxs7K1kpe333gD8qCLLs+QXWlpaWlpaWlpaWlpa2jBm2UrJaf03Pmcoi7ZUkWUwk5aWlpaWlpaWlpaW9snaKb5971yugUsPNO3pjbt+IC0tLS0tLS0tLS0t7UO005SSf/fln2aq0NLS0tLS0tLS0tLS/k+1+eihji2WJH0wWTW3Xg13b6GlpaWlpaWlpaWlpd1be7YKbrrALXTeYsOu/JUDJkvy5DTmhJaWlpaWlpaWlpaWdnft67bnJ/S42yetJJKUL+eK8QzPXIrPUlnS0tLS0tLS0tLS0tLurj1zzn6jHOGO7cKrRXTTkrPvErCseWlpaWlpaWlpaWlpaTfT9tvmdXHTht1kHDNtEFAeN/9KdzOitLS0tLS0tLS0tLS0m2knFV7DT8rLEiH5Pp2ZAKvN13ItSktLS0tLS0tLS0tLu7f2XZa2V+t1YioMS2VZoHmxXa9j86e0tLS0tLS0tLS0tLR7a1sYSdpUbXW5El+SjGmkMq2zy2vlaGlpaWlpaWlpaWlp99Y2RW/dhfPjOrY0UpmOFodSmoeLqUtaWlpaWlpaWlpaWtr9tIuhyTQWOYn7b8vkyv+mdzvydOZNzUtLS0tLS0tLS0tLS7ubNhWBrWwcbdbyvQydrIZrW2b3ec6W5X/epvrT0tLS0tLS0tLS0tJupG0XGe3Utrbtbtfqui6ujXdOb3S3CzYtLS0tLS0tLS0tLe2O2mN2pf5BOS1tpdZKxKt18qbL39KNaGlpaWlpaWlpaWlpd9e2AjLtp3aFEnG0vlxu5022zG6jl4uQf1paWlpaWlpaWlpa2p21eUHaZIVcgeZEknTGdLFdKjSPm5qXlpaWlpaWlpaWlpZ2M+2Y3TG17qbRkJP9sAsq/UDrGU9aWlpaWlpaWlpaWtrdtS2j/2zL1RZBjyt8qhjzXOW12JqNlpaWlpaWlpaWlpb2IdqRUxxTQEl6m7IgcwTJGYY1++bZtLS0tLS0tLS0tLS0z9GmoP7yQcmCLLx222mdWLRpk+3zm0wVWlpaWlpaWlpaWlrarbQ5xTF5JvOXbf/qEarSSbbkdOkcLS0tLS0tLS0tLS3tk7TlIq2GG61rd+Twx1aQ9sj+Uq5Osyq/ybqkpaWlpaWlpaWlpaXdQ1tWr7VokduAkrYQbkKZ/jbt7IOWlpaWlpaWlpaWlvZJ2kLOb/v+1WkLgNe50ybeumLMUSW0tLS0tLS0tLS0tLSP0t4Fj0wmLKfDmnep/unc6+sqkpaWlpaWlpaWlpaWdgNt6+ldOd+/NPZSQEmrBPtKulYnTirQWRVJS0tLS0tLS0tLS0u7qfauJrwWS90W535UkdOfYH1fWlpaWlpaWlpaWlra3bWLOnHS9ksDkq2xV9JHxuf/fumgpaWlpaWlpaWlpaXdXTtt2PUeXKsOr7td2VrWyTULRhl5U2xaWlpaWlpaWlpaWtqHaNsOZxE6DepfPOn1i7mULWqSlpaWlpaWlpaWlpZ2b22p+krt2Da7Lgn+k7iRcka7wHF3PVpaWlpaWlpaWlpa2udo095p00ZcypEs+f65NP2oMVMBWW5+34ukpaWlpaWlpaWlpaXdRdvKweOrirGhWkuuL4SbXnT1Y9DS0tLS0tLS0tLS0u6uTVXfohF3hIc8QgE5QjTkt1OXjUZLS0tLS0tLS0tLS7uztlyklHStL9efr6WKXKHavPIGAbna/KrmpaWlpaWlpaWlpaWl3UX7PvPYm3NtMLN04/qRBjjTWrlcwt5nqtDS0tLS0tLS0tLS0u6nLYXcyCvapnGRrVgcn929Y1Z89u/l02hpaWlpaWlpaWlpaR+gLa221NjLk5ilDJ10/MrgZUpCKVOXtLS0tLS0tLS0tLS0T9SmjP53d1L0gJLWpuup/ouq9Ph6z25aWlpaWlpaWlpaWtp9tFeoCY9FX679NUIX8MjjmCllsm0LcD8jSktLS0tLS0tLS0tLu5G2VG7tZeSgx/x8Yza7OVo9macz73dbo6WlpaWlpaWlpaWl3U87WdGWvrJo7KWkkZRSsp66zJUlLS0tLS0tLS0tLS3tztppSknbGXuyZq005/Ls5pWX073fbbSESlpaWlpaWlpaWlpa2odoSw9u1cRr/cCyiK7PaS5yTfpKunzQ0tLS0tLS0tLS0tI+QJvmJct6t6YdIXTyav279JXyA6Ui9X4XbFpaWlpaWlpaWlpa2l20raO2umbbgW18oiaTky0V8sxL7L5eDUdLS0tLS0tLS0tLS7ufdizaebk6LKkipQw929s8rHl+nphTK2lpaWlpaWlpaWlpaXfWLmSr+cvppthpIdz6cVNVSktLS0tLS0tLS0tL+xztqMcRMvqPuzVw6SUZ36vIyZW/7O7R0tLS0tLS0tLS0tLuo51um5ZGJfskZq4iy/9KkMmZV759U0XS0tLS0tLS0tLS0tJuqV2Ug2OWUrKanGxJI6mDeMxK2LFKKaGlpaWlpaWlpaWlpX2GdrQYkfdVbqliHIt1cWXM8ousE1paWlpaWlpaWlpa2qdry4ULZRI1mbdmS1OXI1y5R03S0tLS0tLS0tLS0tI+R5tbdyPn+5fblnun3P7W8Ssx/mfLNaGlpaWlpaWlpaWlpX2SduShybToLZeSV1gSd7QNsHPe5Lm4JS0tLS0tLS0tLS0t7SO0//2DlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlva3af8AAVry9+WFQ1kAAAAASUVORK5CYII=", - "qr_code": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d127175204000053039865406201.985802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter551087647796304A631" + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ff0b4d4214754e779e689af8", + "revision_nr": 1, + "created": 1701459383539, + "modified": 1701459383539 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/payments/55108764779/ticket?caller_id=1310149122&hash=bd26ec14-a4ce-4255-b152-2a7df041f5dd", + "revision": "9dab94d1ef484a208e7ff58f", + "revision_nr": 1, + "created": 1701459383539, + "modified": 1701459383539 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI5ElEQVR42u3dUa7jNgwFUO3A+9+ld+Bi0E6TkFdyBh0UrXz8Eby8xPZx/ghSV+P6Hx3noKWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaX9/dpRj+PH/46/P/j514+z/nx5Ha8L/PXBz3Nf33u/x88PXl9+P60zaGlpaWlpaWlpaWlpH6I93ku28jZd/fVBuWP7CcoZk0/fHzIxaGlpaWlpaWlpaWlpH6AtBWR+jPHpbj24sTj3o058PcGicKWlpaWlpaWlpaWlpX229vxs7K1kpe333gD8qCLLs+QXWlpaWlpaWlpaWlpa2jBm2UrJaf03Pmcoi7ZUkWUwk5aWlpaWlpaWlpaW9snaKb5971yugUsPNO3pjbt+IC0tLS0tLS0tLS0t7UO005SSf/fln2aq0NLS0tLS0tLS0tLS/k+1+eihji2WJH0wWTW3Xg13b6GlpaWlpaWlpaWlpd1be7YKbrrALXTeYsOu/JUDJkvy5DTmhJaWlpaWlpaWlpaWdnft67bnJ/S42yetJJKUL+eK8QzPXIrPUlnS0tLS0tLS0tLS0tLurj1zzn6jHOGO7cKrRXTTkrPvErCseWlpaWlpaWlpaWlpaTfT9tvmdXHTht1kHDNtEFAeN/9KdzOitLS0tLS0tLS0tLS0m2knFV7DT8rLEiH5Pp2ZAKvN13ItSktLS0tLS0tLS0tLu7f2XZa2V+t1YioMS2VZoHmxXa9j86e0tLS0tLS0tLS0tLR7a1sYSdpUbXW5El+SjGmkMq2zy2vlaGlpaWlpaWlpaWlp99Y2RW/dhfPjOrY0UpmOFodSmoeLqUtaWlpaWlpaWlpaWtr9tIuhyTQWOYn7b8vkyv+mdzvydOZNzUtLS0tLS0tLS0tLS7ubNhWBrWwcbdbyvQydrIZrW2b3ec6W5X/epvrT0tLS0tLS0tLS0tJupG0XGe3Utrbtbtfqui6ujXdOb3S3CzYtLS0tLS0tLS0tLe2O2mN2pf5BOS1tpdZKxKt18qbL39KNaGlpaWlpaWlpaWlpd9e2AjLtp3aFEnG0vlxu5022zG6jl4uQf1paWlpaWlpaWlpa2p21eUHaZIVcgeZEknTGdLFdKjSPm5qXlpaWlpaWlpaWlpZ2M+2Y3TG17qbRkJP9sAsq/UDrGU9aWlpaWlpaWlpaWtrdtS2j/2zL1RZBjyt8qhjzXOW12JqNlpaWlpaWlpaWlpb2IdqRUxxTQEl6m7IgcwTJGYY1++bZtLS0tLS0tLS0tLS0z9GmoP7yQcmCLLx222mdWLRpk+3zm0wVWlpaWlpaWlpaWlrarbQ5xTF5JvOXbf/qEarSSbbkdOkcLS0tLS0tLS0tLS3tk7TlIq2GG61rd+Twx1aQ9sj+Uq5Osyq/ybqkpaWlpaWlpaWlpaXdQ1tWr7VokduAkrYQbkKZ/jbt7IOWlpaWlpaWlpaWlvZJ2kLOb/v+1WkLgNe50ybeumLMUSW0tLS0tLS0tLS0tLSP0t4Fj0wmLKfDmnep/unc6+sqkpaWlpaWlpaWlpaWdgNt6+ldOd+/NPZSQEmrBPtKulYnTirQWRVJS0tLS0tLS0tLS0u7qfauJrwWS90W535UkdOfYH1fWlpaWlpaWlpaWlra3bWLOnHS9ksDkq2xV9JHxuf/fumgpaWlpaWlpaWlpaXdXTtt2PUeXKsOr7td2VrWyTULRhl5U2xaWlpaWlpaWlpaWtqHaNsOZxE6DepfPOn1i7mULWqSlpaWlpaWlpaWlpZ2b22p+krt2Da7Lgn+k7iRcka7wHF3PVpaWlpaWlpaWlpa2udo095p00ZcypEs+f65NP2oMVMBWW5+34ukpaWlpaWlpaWlpaXdRdvKweOrirGhWkuuL4SbXnT1Y9DS0tLS0tLS0tLS0u6uTVXfohF3hIc8QgE5QjTkt1OXjUZLS0tLS0tLS0tLS7uztlyklHStL9efr6WKXKHavPIGAbna/KrmpaWlpaWlpaWlpaWl3UX7PvPYm3NtMLN04/qRBjjTWrlcwt5nqtDS0tLS0tLS0tLS0u6nLYXcyCvapnGRrVgcn929Y1Z89u/l02hpaWlpaWlpaWlpaR+gLa221NjLk5ilDJ10/MrgZUpCKVOXtLS0tLS0tLS0tLS0T9SmjP53d1L0gJLWpuup/ouq9Ph6z25aWlpaWlpaWlpaWtp9tFeoCY9FX679NUIX8MjjmCllsm0LcD8jSktLS0tLS0tLS0tLu5G2VG7tZeSgx/x8Yza7OVo9macz73dbo6WlpaWlpaWlpaWl3U87WdGWvrJo7KWkkZRSsp66zJUlLS0tLS0tLS0tLS3tztppSknbGXuyZq005/Ls5pWX073fbbSESlpaWlpaWlpaWlpa2odoSw9u1cRr/cCyiK7PaS5yTfpKunzQ0tLS0tLS0tLS0tI+QJvmJct6t6YdIXTyav279JXyA6Ui9X4XbFpaWlpaWlpaWlpa2l20raO2umbbgW18oiaTky0V8sxL7L5eDUdLS0tLS0tLS0tLS7ufdizaebk6LKkipQw929s8rHl+nphTK2lpaWlpaWlpaWlpaXfWLmSr+cvppthpIdz6cVNVSktLS0tLS0tLS0tL+xztqMcRMvqPuzVw6SUZ36vIyZW/7O7R0tLS0tLS0tLS0tLuo51um5ZGJfskZq4iy/9KkMmZV759U0XS0tLS0tLS0tLS0tJuqV2Ug2OWUrKanGxJI6mDeMxK2LFKKaGlpaWlpaWlpaWlpX2GdrQYkfdVbqliHIt1cWXM8ousE1paWlpaWlpaWlpa2qdry4ULZRI1mbdmS1OXI1y5R03S0tLS0tLS0tLS0tI+R5tbdyPn+5fblnun3P7W8Ssx/mfLNaGlpaWlpaWlpaWlpX2SduShybToLZeSV1gSd7QNsHPe5Lm4JS0tLS0tLS0tLS0t7SO0//2DlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlva3af8AAVry9+WFQ1kAAAAASUVORK5CYII=", + "revision": "9c2db483e6814defa4c24db2", + "revision_nr": 1, + "created": 1701459383539, + "modified": 1701459383539 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d127175204000053039865406201.985802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter551087647796304A631", + "revision": "b48e356226f740889a01e8f0", + "revision_nr": 1, + "created": 1701459383539, + "modified": 1701459383539 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "3c0fa6980c3f4d89aea67dfa", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -74596,52 +110123,94 @@ "total_amount": 201.98, "history_id": 1677377774383, "id": 55108764779, - "date_created": "2023-02-25T22:16:15.134-04:00", - "date_last_updated": "2023-02-25T22:16:15.134-04:00", - "date_of_expiration": "2023-02-26T22:16:14.923-04:00", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6be2dc2b388a4d78806f74d5", + "revision_nr": 1, + "created": 1701459383539, + "modified": 1701459383539 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "55dff9d6af3445f382b70be0", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600 + "amount": 600, + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8632473e851541339a438909", "revision_nr": 1, - "created": 1700748395517, - "modified": 1700748395517 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details", "content": { - "type": 1, + "type": "OBJECT", + "value": {}, + "revision": "a748b3cd2f36437dae2a1f13", + "revision_nr": 1, + "created": 1701459383539, + "modified": 1701459383539 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details/costs", + "content": { + "type": "ARRAY", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ec5d5c344b67466199e0a968", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -74650,37 +110219,45 @@ "total_amount": 3600, "history_id": 1679262602609, "id": 1679262602609, - "date_created": "2023-03-19T21:50:02.609Z", - "date_last_updated": "2023-03-19T21:50:02.609Z", - "date_of_expiration": "2023-04-18T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8b7df4d9b3be4ac38d187c57", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679266870095/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "f8fd2d8256a9423f9285255a", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679266870095/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679266870095, @@ -74691,18 +110268,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "391af18842b84699a8a2cdc1", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679266870095", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -74712,9 +110302,18 @@ "original_amount": 17473846, "total_amount": 17473846, "id": 1679266870095, - "date_created": "2023-03-19T23:01:10.095Z", - "date_last_updated": "2023-03-19T23:01:10.095Z", - "date_of_expiration": "2023-03-19T23:01:10.095Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74723,42 +110322,65 @@ "history_id": 1679266870095, "description": "Compra de 17473846 IVIP por 3000 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7df3076b79ad434aaf417039", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600 + "amount": 600, + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e498dcb9b088426495773371", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e70ad7672a9e4fed80bc801c", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "e7413835456143fa846d98f0", + "revision_nr": 1, + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -74767,9 +110389,18 @@ "total_amount": 3600, "history_id": 1678654062362, "id": 1678654062362, - "date_created": "2023-03-12T20:47:42.362Z", - "date_last_updated": "2023-03-21T13:30:48.783Z", - "date_of_expiration": "2023-04-11T20:47:42.362Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -74777,41 +110408,54 @@ "date_approved": "2023-03-21T13:30:48.783Z", "money_release_date": "2023-03-21T13:30:48.783Z", "money_release_status": "rejected", - "wasDebited": true, - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9b213ef7731b44ba8a6e653d", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "4259a46259214b32a957091a", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } + }, + "revision": "a6cfc56c556844b381aba6ee", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -74820,47 +110464,69 @@ "total_amount": 100, "history_id": 1679871546323, "id": 1679871546323, - "date_created": "2023-03-26T22:59:06.323Z", - "date_last_updated": "2023-03-26T22:59:06.323Z", - "date_of_expiration": "2023-04-25T22:59:06.323Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1257.9763.0999.3744-60" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fa9937ace7164a85963818f8", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "354dd6ac98034b58b4bd89f6", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } + }, + "revision": "cb11226bec9f403d8f44e1e3", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -74869,9 +110535,18 @@ "total_amount": 360, "history_id": 1682619072709, "id": 1682619072709, - "date_created": "2023-04-27T18:11:12.709Z", - "date_last_updated": "2023-04-27T18:30:34.522Z", - "date_of_expiration": "2023-05-27T18:11:12.709Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -74879,30 +110554,29 @@ "date_approved": "2023-04-27T18:30:34.522Z", "money_release_date": "2023-04-27T18:30:34.522Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 360,00 para a carteira iVip 1257.9763.0999.3744-60" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3020c9e84e1443c8aa050640", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682620551210/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 360,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "6be1e3082c9042d0b2c3bdf5", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682620551210/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -74915,18 +110589,31 @@ "overpaid_amount": 0, "installment_amount": 360, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "45d6c0fbea7c4707be66a031", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682620551210", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -74937,49 +110624,71 @@ "total_amount": 360, "id": 1682620551210, "contract_id": "1679262602609", - "date_created": "2023-04-27T18:35:51.210Z", - "date_last_updated": "2023-04-27T18:35:51.210Z", - "date_of_expiration": "2023-04-27T18:35:51.210Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1682620551210, - "description": "Pagamento de fatura 1 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609" + "history_id": 1682620551210 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "84656e65ce8c43228e6ec1ae", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682620551210/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", + "revision": "3067c01472d64f3faad9624a", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } + }, + "revision": "6d866ceb87ca4d2f99dc9a95", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -74988,9 +110697,18 @@ "total_amount": 200, "history_id": 1683422461919, "id": 1683422461919, - "date_created": "2023-05-07T01:21:01.919Z", - "date_last_updated": "2023-05-07T11:45:42.487Z", - "date_of_expiration": "2023-06-06T01:21:01.919Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -74998,41 +110716,54 @@ "date_approved": "2023-05-07T11:45:42.487Z", "money_release_date": "2023-05-07T11:45:42.487Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "09f382b1abe3410eb46d6362", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "e1df9f1bfb034e8494d8a57a", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } + }, + "revision": "5958d46e0d404bd2ade6cd18", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -75041,9 +110772,18 @@ "total_amount": 200, "history_id": 1683947136546, "id": 1683947136546, - "date_created": "2023-05-13T03:05:36.546Z", - "date_last_updated": "2023-05-13T03:09:15.818Z", - "date_of_expiration": "2023-06-12T03:05:36.546Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -75051,30 +110791,29 @@ "date_approved": "2023-05-13T03:09:15.818Z", "money_release_date": "2023-05-13T03:09:15.818Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "74cfa9d44af7433ebbe480c2", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947563493/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "2e7c9f7272f14dbbafa470b7", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947563493/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 3, @@ -75087,18 +110826,31 @@ "overpaid_amount": 0, "installment_amount": 360, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d370314d61c44ec1b5121845", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947563493", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -75109,49 +110861,71 @@ "total_amount": 360, "id": 1683947563493, "contract_id": "1679262602609", - "date_created": "2023-05-13T03:12:43.493Z", - "date_last_updated": "2023-05-13T03:12:43.493Z", - "date_of_expiration": "2023-05-13T03:12:43.493Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1683947563493, - "description": "Pagamento de fatura 3 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609" + "history_id": 1683947563493 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "12f99af48bb44be980c98451", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947563493/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 3 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", + "revision": "e85b073d43f04cf8b356a51c", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } + }, + "revision": "593d793f1e0e4bb6b06201b7", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -75160,9 +110934,18 @@ "total_amount": 66.32, "history_id": 1683948027523, "id": 1683948027523, - "date_created": "2023-05-13T03:20:27.523Z", - "date_last_updated": "2023-05-13T03:21:20.092Z", - "date_of_expiration": "2023-06-12T03:20:27.523Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -75170,30 +110953,29 @@ "date_approved": "2023-05-13T03:21:20.092Z", "money_release_date": "2023-05-13T03:21:20.092Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 66,32 para a carteira iVip 1257.9763.0999.3744-60" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "104a49c9fcaf4d79aca2f207", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684018958560/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 66,32 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "7663fed28f0940de87a52721", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684018958560/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684018958560, @@ -75204,18 +110986,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bb357cc1dae541cd822f7601", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684018958560", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -75225,9 +111020,18 @@ "original_amount": 574594, "total_amount": 574594, "id": 1684018958560, - "date_created": "2023-05-13T23:02:38.560Z", - "date_last_updated": "2023-05-13T23:02:38.560Z", - "date_of_expiration": "2023-05-13T23:02:38.560Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -75236,38 +111040,41 @@ "history_id": 1684018958560, "description": "Compra de 574.594,00 IVIP por 106,32 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "58163dfe0cc7432b9cf507b7", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } + }, + "revision": "86566b57075f4e48ac75c4d1", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -75276,9 +111083,18 @@ "total_amount": 130, "history_id": 1684158010439, "id": 1684158010439, - "date_created": "2023-05-15T13:40:10.439Z", - "date_last_updated": "2023-05-15T15:13:10.445Z", - "date_of_expiration": "2023-06-14T13:40:10.439Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -75286,41 +111102,54 @@ "date_approved": "2023-05-15T15:13:10.445Z", "money_release_date": "2023-05-15T15:13:10.445Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 130,00 para a carteira iVip 1257.9763.0999.3744-60" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4051c039a55c46af8f132aa4", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 130,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "f65695911bd145e2902f421c", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } + }, + "revision": "836e047b4c9d4478b7cd638b", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -75329,9 +111158,18 @@ "total_amount": 55, "history_id": 1684458859068, "id": 1684458859068, - "date_created": "2023-05-19T01:14:19.068Z", - "date_last_updated": "2023-05-19T01:25:57.882Z", - "date_of_expiration": "2023-06-18T01:14:19.068Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -75339,30 +111177,29 @@ "date_approved": "2023-05-19T01:25:57.882Z", "money_release_date": "2023-05-19T01:25:57.882Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 55,00 para a carteira iVip 1257.9763.0999.3744-60" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bd2525c3fcd14a31a3e7c58e", "revision_nr": 1, - "created": 1700748395518, - "modified": 1700748395518 + "created": 1701459383539, + "modified": 1701459383539 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684624396163/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 55,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "ffbf375154fd4913834f85ce", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684624396163/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624396163, @@ -75373,18 +111210,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2a71640bad834e988d602ce1", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684624396163", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -75394,9 +111244,18 @@ "original_amount": 901085, "total_amount": 901085, "id": 1684624396163, - "date_created": "2023-05-20T23:13:16.163Z", - "date_last_updated": "2023-05-20T23:13:16.163Z", - "date_of_expiration": "2023-05-20T23:13:16.163Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -75405,27 +111264,16 @@ "history_id": 1684624396163, "description": "Compra de 901.085,00 IVIP por 185,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6fedca4b303447a6b0a632f2", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685667418933/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685667418933/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685667418933, @@ -75436,18 +111284,31 @@ "overpaid_amount": 0, "installment_amount": 5000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ea67288e544141b38f984a8d", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685667418933", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -75456,39 +111317,47 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1685667418933, - "date_created": "2023-06-02T00:56:58.933Z", - "date_last_updated": "2023-06-02T00:56:58.933Z", - "date_of_expiration": "2025-06-02T00:56:58.933Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1685667418933, - "wasDebited": true, - "description": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "145f492c0ef34f60b53db80f", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668065254/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685667418933/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", + "revision": "6cfb1fb2fd3b4a9da89cedfd", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668065254/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685668065254, @@ -75499,18 +111368,31 @@ "overpaid_amount": 0, "installment_amount": 4000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a22bcba7798d4969bac62409", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668065254", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -75519,38 +111401,46 @@ "original_amount": 4000000, "total_amount": 4000000, "id": 1685668065254, - "date_created": "2023-06-02T01:07:45.254Z", - "date_last_updated": "2023-06-02T01:07:45.254Z", - "date_of_expiration": "2024-06-02T01:07:45.254Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685668065254, - "description": "Investimento de 4.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024" + "history_id": 1685668065254 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ac7c0f7b21e34a73b4e05e91", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668086801/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668065254/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 4.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", + "revision": "9426538859324ee9af04e8fa", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668086801/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685668086801, @@ -75561,18 +111451,31 @@ "overpaid_amount": 0, "installment_amount": 8000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ddb72c0d345c41249b4c367f", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668086801", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -75581,38 +111484,46 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685668086801, - "date_created": "2023-06-02T01:08:06.801Z", - "date_last_updated": "2023-06-02T01:08:06.801Z", - "date_of_expiration": "2023-07-02T01:08:06.801Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685668086801, - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023" + "history_id": 1685668086801 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "195d887b1cea4eaebcab55e5", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668239552/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668086801/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", + "revision": "04eb9972f3e94150a2ec7eba", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668239552/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685668239552, @@ -75623,18 +111534,31 @@ "overpaid_amount": 0, "installment_amount": 5000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cb1f5c1c30054ed189940dff", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668239552", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -75643,49 +111567,71 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1685668239552, - "date_created": "2023-06-02T01:10:39.552Z", - "date_last_updated": "2023-06-02T01:10:39.552Z", - "date_of_expiration": "2023-12-02T01:10:39.552Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1685668239552, - "description": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023" + "history_id": 1685668239552 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "907239936b1e409086505275", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668239552/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", + "revision": "6a043965bb9c4ca5b77890e8", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + } + }, + "revision": "1ba7197cbbd645f59c9022b7", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -75694,9 +111640,18 @@ "total_amount": 400, "history_id": 1686858477834, "id": 1686858477834, - "date_created": "2023-06-15T19:47:57.834Z", - "date_last_updated": "2023-06-15T20:00:25.618Z", - "date_of_expiration": "2023-07-15T19:47:57.834Z", + "date_created": { + "type": 6, + "value": 1701459383539 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383539 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383539 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -75704,30 +111659,29 @@ "date_approved": "2023-06-15T20:00:25.618Z", "money_release_date": "2023-06-15T20:00:25.618Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 400,00 para a carteira iVip 1257.9763.0999.3744-60" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2d7b7c85956f4804a5114465", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859298764/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 400,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "66203d41c87e47b89e3ec1c6", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859298764/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 2, @@ -75740,18 +111694,31 @@ "overpaid_amount": 0, "installment_amount": 360, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7f3f3372c8384f4f88f5c720", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859298764", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -75762,38 +111729,46 @@ "total_amount": 360, "id": 1686859298764, "contract_id": "1679262602609", - "date_created": "2023-06-15T20:01:38.764Z", - "date_last_updated": "2023-06-15T20:01:38.764Z", - "date_of_expiration": "2023-06-15T20:01:38.764Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1686859298764, - "description": "Pagamento de fatura 2 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609" + "history_id": 1686859298764 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d4492ab4269c4e32a2d0a93f", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859421606/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859298764/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 2 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", + "revision": "5c4c097147e14d36aaebde70", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383539, + "modified": 1701459383539 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859421606/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1686859421606, @@ -75804,18 +111779,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b664a2a5ec4d43b2b6880145", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859421606", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -75825,9 +111813,18 @@ "original_amount": 256510, "total_amount": 256510, "id": 1686859421606, - "date_created": "2023-06-15T20:03:41.606Z", - "date_last_updated": "2023-06-15T20:03:41.606Z", - "date_of_expiration": "2023-06-15T20:03:41.606Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -75836,27 +111833,16 @@ "history_id": 1686859421606, "description": "Compra de 256.510,00 IVIP por 40,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688400452024/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "512830e4be4c4274a21792d4", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688400452024/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688400452024, @@ -75867,18 +111853,31 @@ "overpaid_amount": 0, "installment_amount": 8000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "63481df5c99f4737a3c111d7", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688400452024", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -75887,39 +111886,47 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1688400452024, - "date_created": "2023-07-03T16:07:32.024Z", - "date_last_updated": "2023-07-03T16:07:32.024Z", - "date_of_expiration": "2023-07-03T16:07:32.024Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1688400452024, - "wasDebited": true, - "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6500f339bb9c46e893e9e50d", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688403103597/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688400452024/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", + "revision": "ac4b881e2f674304877c51de", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688403103597/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688403103597, @@ -75930,18 +111937,31 @@ "overpaid_amount": 0, "installment_amount": 8000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "893a74bbb3c54438929e4500", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688403103597", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -75950,49 +111970,71 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1688403103597, - "date_created": "2023-07-03T16:51:43.597Z", - "date_last_updated": "2023-07-03T16:51:43.597Z", - "date_of_expiration": "2023-08-03T16:51:43.597Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1688403103597, - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023" + "history_id": 1688403103597 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "213b71e707e34f82be5ebab1", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688403103597/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", + "revision": "0e6adecb347b49dc9c57b47b", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } + }, + "revision": "3293b6f975554c63822a31db", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -76001,47 +112043,69 @@ "total_amount": 8000000, "history_id": 1688735047266, "id": 1688735047266, - "date_created": "2023-07-07T13:04:07.266Z", - "date_last_updated": "2023-07-07T13:04:07.266Z", - "date_of_expiration": "2023-07-07T13:04:07.266Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 8.000.000,00 IVIP para a carteira 0x3e35E81481645fafD6C410b1833719A8E633ae35" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ec366650f7b943e5832d798e", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 8.000.000,00 IVIP para a carteira 0x3e35E81481645fafD6C410b1833719A8E633ae35", + "revision": "deac97d8f0b14d558678b97b", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } + }, + "revision": "d936a052a7014565bd25f37f", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -76050,36 +112114,44 @@ "total_amount": 11000000, "history_id": 1689292258052, "id": 1689292258052, - "date_created": "2023-07-13T23:50:58.052Z", - "date_last_updated": "2023-07-13T23:50:58.052Z", - "date_of_expiration": "2023-07-13T23:50:58.052Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 11.000.000,00 IVIP para a carteira 0x3e35E81481645fafD6C410b1833719A8E633ae35" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9ce8a5c5db584f65badbf088", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691081627683/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 11.000.000,00 IVIP para a carteira 0x3e35E81481645fafD6C410b1833719A8E633ae35", + "revision": "ec3f2d0fe9554b7bacbd4a06", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691081627683/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1691081627683, @@ -76090,18 +112162,31 @@ "overpaid_amount": 0, "installment_amount": 8000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ba0f7f77e4214b1882332571", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691081627683", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -76110,39 +112195,47 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1691081627683, - "date_created": "2023-08-03T16:53:47.683Z", - "date_last_updated": "2023-08-03T16:53:47.683Z", - "date_of_expiration": "2023-08-03T16:53:47.683Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1691081627683, - "wasDebited": true, - "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b9af3624b12444d5b82bb35d", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691081627683/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", + "revision": "c21cf0fca0c5402f9f317ea1", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691082859805, "net_received_amount": 0, @@ -76152,18 +112245,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1691082859805" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aa43fdbcfb234ff68333ec29", + "revision_nr": 1, + "created": 1701459383540, + "modified": 1701459383540 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1691082859805", + "revision": "a1605fe8c3ff4a54a445fbe7", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -76172,52 +112288,72 @@ "total_amount": 8000000, "id": 1691082859805, "history_id": 1691082859805, - "date_created": "2023-08-03T17:14:19.805Z", - "date_last_updated": "2023-08-03T17:14:19.805Z", - "date_of_expiration": "2023-09-03T17:14:19.804Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "216f4870c6ff4020a1559d18", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-07T22:34:09.576Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", + "revision": "2672ef0f788d429d8b155bd9", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-07T22:34:09.576Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } + }, + "revision": "c6a9f0b07311490382399d52", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691534049577, "net_received_amount": 0, @@ -76227,18 +112363,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1691534049577" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d1859f8c4c7f4e37bc34e694", + "revision_nr": 1, + "created": 1701459383540, + "modified": 1701459383540 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1691534049577", + "revision": "999c83f3ae5446b796bc9b74", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -76247,8 +112406,14 @@ "total_amount": 360, "id": 1691534049577, "history_id": 1691534049577, - "date_created": "2023-08-08T22:34:09.577Z", - "date_last_updated": "2023-08-08T23:21:48.177Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76259,29 +112424,32 @@ "money_release_date": "2023-08-08T23:21:48.177Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 360,00 para a carteira iVip 1257.9763.0999.3744-60" + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c45d27d2944f4663a21bb4a0", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 360,00 para a carteira iVip 1257.9763.0999.3744-60", + "revision": "8bc4853004d442758920da65", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693761380582, "net_received_amount": 0, @@ -76291,18 +112459,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1693761380582" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0a5939e5f09a4c098c292752", + "revision_nr": 1, + "created": 1701459383540, + "modified": 1701459383540 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1693761380582", + "revision": "0ff00c9d4a4645efbbf5207e", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -76311,38 +112502,46 @@ "total_amount": 8160000, "id": "1693761380582", "history_id": "1693761380582", - "date_created": "2023-09-03T17:16:20.582Z", - "date_last_updated": "2023-09-03T17:16:20.582Z", - "date_of_expiration": "2023-09-03T17:16:20.582Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4a1e9bce75e6426eb276b432", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "0bc8738794f847118813882b", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693780032051, "net_received_amount": 0, @@ -76352,18 +112551,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1693780032051" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ce8768b33c694a86981489b5", + "revision_nr": 1, + "created": 1701459383540, + "modified": 1701459383540 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1693780032051", + "revision": "d914b65f9cf04aa9974a81c4", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -76372,52 +112594,72 @@ "total_amount": 8000000, "id": "1693780032051", "history_id": "1693780032051", - "date_created": "2023-09-03T22:27:12.051Z", - "date_last_updated": "2023-09-03T22:27:12.051Z", - "date_of_expiration": "2023-10-03T22:27:12.050Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6a6450e8c73b4f6c85df375a", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395519 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-10-21T18:47:30.195Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", + "revision": "15ec1846839f4ec6bfacd01c", "revision_nr": 1, - "created": 1700748395519, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-10-21T18:47:30.195Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } + }, + "revision": "95807638e2f84e3c84c5ec45", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695322050196, "net_received_amount": 0, @@ -76427,18 +112669,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695322050196" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aec142ae513d44e0bea3be3b", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695322050196", + "revision": "bd210031cffc44f69214bc69", + "revision_nr": 1, + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -76447,8 +112712,14 @@ "total_amount": 720, "id": "1695322050196", "history_id": "1695322050196", - "date_created": "2023-09-21T18:47:30.196Z", - "date_last_updated": "2023-09-22T18:08:25.258Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76459,29 +112730,32 @@ "money_release_date": "2023-09-22T18:08:25.258Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 720,00 BRL para a carteira iVip 1257.9763.0999.3744-60" + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "87721dc600484d89985d970f", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 720,00 BRL para a carteira iVip 1257.9763.0999.3744-60", + "revision": "6b38193c7a9a4c96a902779a", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695423451385, "net_received_amount": 0, @@ -76491,20 +112765,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 4, "installments_payable": 6, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451385" + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fc725c5cb6a64a26b0165105", + "revision_nr": 1, + "created": 1701459383540, + "modified": 1701459383540 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451385", + "revision": "f3fc923641b04f45bd91d1a9", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -76513,38 +112810,46 @@ "total_amount": 360, "id": "1695423451385", "history_id": "1695423451385", - "date_created": "2023-09-22T22:57:31.385Z", - "date_last_updated": "2023-09-22T22:57:31.385Z", - "date_of_expiration": "2023-09-22T22:57:31.385Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 4 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "224811a43c0345aa810732de", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 4 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", + "revision": "e2f5ba9ac96448eeb5026c42", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695423451505, "net_received_amount": 0, @@ -76554,20 +112859,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 5, "installments_payable": 5, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451505" + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2f8a8056b82740d0bf140386", + "revision_nr": 1, + "created": 1701459383540, + "modified": 1701459383540 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451505", + "revision": "39ccb43eb29742868b10bccc", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -76576,38 +112904,46 @@ "total_amount": 360, "id": "1695423451505", "history_id": "1695423451505", - "date_created": "2023-09-22T22:57:31.505Z", - "date_last_updated": "2023-09-22T22:57:31.505Z", - "date_of_expiration": "2023-09-22T22:57:31.505Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 5 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "798126926be24089ba7cf7ea", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 5 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", + "revision": "9d4f38a704fd4ad284c3d8d3", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1695423451671, "net_received_amount": 0, @@ -76617,20 +112953,43 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", + "costs": [], "installment_paid": 6, "installments_payable": 4, - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451671" + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e39d737526ff4d5a907f807d", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451671", + "revision": "db25c802dc774ebab64f446b", + "revision_nr": 1, + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -76639,38 +112998,46 @@ "total_amount": 360, "id": "1695423451671", "history_id": "1695423451671", - "date_created": "2023-09-22T22:57:31.671Z", - "date_last_updated": "2023-09-22T22:57:31.671Z", - "date_of_expiration": "2023-09-22T22:57:31.671Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "base_currency_id": "BRL", - "description": "Pagamento de fatura 6 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609" + "base_currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b337827b1f65455c8e28e503", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 6 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", + "revision": "6fbfaa722468428d970e3267", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696380984974, "net_received_amount": 0, @@ -76680,18 +113047,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380984974" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ba3e39c6239b42fdbb87740c", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380984974", + "revision": "50c28122616a4d13b41d279e", + "revision_nr": 1, + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -76701,38 +113091,46 @@ "total_amount": 8160000, "id": "1696380984974", "history_id": "1696380984974", - "date_created": "2023-10-04T00:56:24.974Z", - "date_last_updated": "2023-10-04T00:56:24.974Z", - "date_of_expiration": "2023-10-04T00:56:24.974Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "61bebbdcdfa746b18178d6c6", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "08b9f32e076d4c85a0f7cf96", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696380984991, "net_received_amount": 0, @@ -76742,18 +113140,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380984991" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "16067bb8953243578b4a51b6", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380984991", + "revision": "95cb666d10ad42e6a4b6fa25", + "revision_nr": 1, + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -76763,38 +113184,46 @@ "total_amount": 8160000, "id": "1696380984991", "history_id": "1696380984991", - "date_created": "2023-10-04T00:56:24.991Z", - "date_last_updated": "2023-10-04T00:56:24.991Z", - "date_of_expiration": "2023-10-04T00:56:24.991Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "cc_rejected_duplicated_payment", - "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "755190a0a65b45878aa4f4a9", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "62ec55f4a2794dd996dd826a", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696380985024, "net_received_amount": 0, @@ -76804,18 +113233,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380985024" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bd956dc30ed040a6b6b57fa8", + "revision_nr": 1, + "created": 1701459383540, + "modified": 1701459383540 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380985024", + "revision": "cc51378dcd8640e282a8415b", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -76825,38 +113277,46 @@ "total_amount": 8160000, "id": "1696380985024", "history_id": "1696380985024", - "date_created": "2023-10-04T00:56:25.024Z", - "date_last_updated": "2023-10-04T00:56:25.024Z", - "date_of_expiration": "2023-10-04T00:56:25.024Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "cc_rejected_duplicated_payment", - "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "59c05495af1f41f791bf6ee6", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "49d11de4ed86460e99ed8070", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696380985244, "net_received_amount": 0, @@ -76866,18 +113326,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380985244" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "38c31ba883ba4708a8bdada3", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380985244", + "revision": "395b4dcb68fb4faa8581a939", + "revision_nr": 1, + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -76887,38 +113370,46 @@ "total_amount": 8160000, "id": "1696380985244", "history_id": "1696380985244", - "date_created": "2023-10-04T00:56:25.244Z", - "date_last_updated": "2023-10-04T00:56:25.244Z", - "date_of_expiration": "2023-10-04T00:56:25.244Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "cc_rejected_duplicated_payment", - "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "290acd984cab4e649aaa2687", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "8ab31bdc70a9456296e7c6c8", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696384232144, "net_received_amount": 0, @@ -76928,18 +113419,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384232144" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "92857bf74a3b4da8963d88c0", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384232144", + "revision": "079d21481c68476eb38ad05f", + "revision_nr": 1, + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -76949,38 +113463,46 @@ "total_amount": 8160000, "id": "1696384232144", "history_id": "1696384232144", - "date_created": "2023-10-04T01:50:32.144Z", - "date_last_updated": "2023-10-04T01:50:32.144Z", - "date_of_expiration": "2023-10-04T01:50:32.144Z", + "date_created": { + "type": 6, + "value": 1701459383540 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383540 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383540 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "cc_rejected_duplicated_payment", - "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f40665cf3cf44246ba4691d1", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "2c3fb822f31c4b46979de33a", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383540, + "modified": 1701459383540 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696384243583, "net_received_amount": 0, @@ -76990,18 +113512,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384243583" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1f41c337f55f40ceb31d00a2", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384243583", + "revision": "367a2b9b326f40c0b68bd2ad", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -77011,38 +113556,46 @@ "total_amount": 8160000, "id": "1696384243583", "history_id": "1696384243583", - "date_created": "2023-10-04T01:50:43.583Z", - "date_last_updated": "2023-10-04T01:50:43.583Z", - "date_of_expiration": "2023-10-04T01:50:43.583Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "cc_rejected_duplicated_payment", - "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a43287c1540b40d68028ea48", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "65e36a50f0ae450dbd6a61a3", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696384243588, "net_received_amount": 0, @@ -77052,18 +113605,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384243588" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "af5d4c6523ba4e7580f0f6d2", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384243588", + "revision": "695976fabb394c49b132b628", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -77073,38 +113649,46 @@ "total_amount": 8160000, "id": "1696384243588", "history_id": "1696384243588", - "date_created": "2023-10-04T01:50:43.588Z", - "date_last_updated": "2023-10-04T01:50:43.588Z", - "date_of_expiration": "2023-10-04T01:50:43.588Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "cc_rejected_duplicated_payment", - "description": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "276bc5d2e9534fcc96f73de2", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { - "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868/details/costs", + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", + "revision": "4909c8b2b8fd4e898e598f75", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696406601868, "net_received_amount": 0, @@ -77114,18 +113698,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696406601868" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6b4ba8ae4dd8462e8bf18965", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696406601868", + "revision": "5719c42ae0b3485a9c130e87", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -77135,53 +113742,84 @@ "total_amount": 8000000, "id": "1696406601868", "history_id": "1696406601868", - "date_created": "2023-10-04T08:03:21.868Z", - "date_last_updated": "2023-10-04T08:03:21.868Z", - "date_of_expiration": "2023-11-04T08:03:21.847Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dbde6c5eb5bb42a0b535683e", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868/description", + "content": { + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "e4c3ddd99700440d987bc292", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2f6d08c78187480897bebc3e", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600 + "amount": 600, + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a0fd77aecf254125bd4c4acd", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679262602609, "type": "emprestimo", @@ -77189,48 +113827,92 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3050078e4e564e61879b1c82", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "de916a861e4e4e5c911fd4a4", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "af384d3d02ee4a7ea2eb6c2e", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2e222bfe532744d3b5b73ab2", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600 + "amount": 600, + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c4e91aa7405a4ba995287b29", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679262602609, "type": "emprestimo", @@ -77238,48 +113920,92 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bd51992d087b46638c6f82e0", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "0f6e9bc3814f409fb81ee2f5", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "462a21438a9e4413b9cf633b", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9d0e80ea29504daea71367bb", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600 + "amount": 600, + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "be629b0e0b4d4e2298d3790d", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679262602609, "type": "emprestimo", @@ -77287,48 +114013,92 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6470cb3991684b2092c2e438", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "e50a3215e56d4ca8bfb080f9", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "86da90e5c58043928f9cc0da", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b63b96174a2640768fb8fa33", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600 + "amount": 600, + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1592c976cdc649bc893190f5", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679262602609, "type": "emprestimo", @@ -77336,49 +114106,92 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-22T22:57:31.406Z", - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "43654693ed5b484dab72c8c0", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "ee58252abce64722b2f7affd", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "aafdb41413284fd896d5c7cf", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "268803dbf7374c018b522a72", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600 + "amount": 600, + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "50906b16bc274dbc9aaa19f4", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679262602609, "type": "emprestimo", @@ -77386,49 +114199,92 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-22T22:57:31.526Z", - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e738763055264fe9822008e9", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "eb827652015b4ccea560d464", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "89bf0082b70c4bd7a5b2a0e7", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e689394161164515b395de73", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600 + "amount": 600, + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "88b47bdf0f994ac79f42cc17", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679262602609, "type": "emprestimo", @@ -77436,49 +114292,92 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-22T22:57:31.684Z", - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a3183c6432614d31a285237c", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "3b75241af9ad458195baa22a", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "05450301f1554179b4b9615f", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0d8e17ceb7124e2ea20b7711", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600 + "amount": 600, + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9986f066798b47d58af17919", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679262602609, "type": "emprestimo", @@ -77486,47 +114385,91 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, "history_id": 1679262602609, "currency_id": "BRL", - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "641a53db2bba41638212def2", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "03d0eda856b34689ab7c7806", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "60a133af130444628a36926c", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "59d384d3939b4a53888614e4", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600 + "amount": 600, + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5277a1dbdb0c4719af5bed0b", "revision_nr": 1, - "created": 1700748395520, - "modified": 1700748395520 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679262602609, "type": "emprestimo", @@ -77534,47 +114477,91 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, "history_id": 1679262602609, "currency_id": "BRL", - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2bb902cd73bc4c5d89393af9", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "ba66fee8f5a14ab885884ee6", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "01f839f235d445c1859485f3", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "da0c576c392b4529968b288c", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600 + "amount": 600, + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f1de2dc4458f4bac900cba31", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679262602609, "type": "emprestimo", @@ -77582,47 +114569,91 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, "history_id": 1679262602609, "currency_id": "BRL", - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c36d5b281df04bda87e79d75", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "3e17bfbbe9634db7940ee78e", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "fe22ac7fb5ed4d388fe05db9", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "666b7eba581f4be1a2f164fc", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600 + "amount": 600, + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "df55a08a7be244fda4a5a679", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679262602609, "type": "emprestimo", @@ -77630,139 +114661,208 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, "history_id": 1679262602609, "currency_id": "BRL", - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00" + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b894057fac684301840d4f38", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", + "revision": "f9fba92a089547e5837523ac", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "5da46d4dd11348c0bdc90367", + "revision_nr": 1, + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "278eeb8045034a4a9ccb7d98", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9567981bf96849a5aa80f2ad", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 3000, "limitUsed": 2100, "analysisRequested": "2023-03-19T00:10:39.579Z", - "lastReview": "2023-03-19T21:22:36.380Z" + "lastReview": "2023-03-19T21:22:36.380Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "80ef58f7ef664426b2a4be77", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "9285619.00000000", "symbol": "IVIP", - "value": 990 + "value": 990, + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ee6d11165b2c4eb1b3e7725a", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "330385536f594283aa35b39d", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677377704211, "dateValidity": 1679033074324, "totalValue": 3498.3833869132864, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z" + "balancesModificacao": "2023-10-16T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c2aec2f740a7464e88d5bb28", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "BRL", "available": "454.90000000", - "value": 90.844 + "value": 90.844, + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c9d6d31f7dbf404e8ce867ad", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aefe4bb67336465eba2588ee", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679266939492, @@ -77773,18 +114873,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bf0fac6bc6ee48de91057b60", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -77794,38 +114907,46 @@ "original_amount": 7, "total_amount": 7, "id": 1679266939492, - "date_created": "2023-03-19T23:02:19.492Z", - "date_last_updated": "2023-03-19T23:02:19.492Z", - "date_of_expiration": "2023-03-19T23:02:19.492Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1679266939492, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1679266939492 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "28c5fc57875647de96fef0f3", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { - "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266973884/details/costs", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "c5ed66a88d064f3885697792", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266973884/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679266973884, @@ -77836,18 +114957,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4215f3df996248ef84ce8b4f", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266973884", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -77857,38 +114991,46 @@ "original_amount": 50, "total_amount": 50, "id": 1679266973884, - "date_created": "2023-03-19T23:02:53.884Z", - "date_last_updated": "2023-03-19T23:02:53.884Z", - "date_of_expiration": "2023-03-19T23:02:53.884Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1679266973884, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1679266973884 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d4b5a541d6b143deb6381733", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { - "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679267111761/details/costs", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266973884/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "28db794776fd4de79bf233a4", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679267111761/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679267111761, @@ -77899,18 +115041,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4bb1091305ae49329909bc4e", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679267111761", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -77920,38 +115075,46 @@ "original_amount": 100, "total_amount": 100, "id": 1679267111761, - "date_created": "2023-03-19T23:05:11.761Z", - "date_last_updated": "2023-03-19T23:05:11.761Z", - "date_of_expiration": "2023-03-19T23:05:11.761Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1679267111761, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1679267111761 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0da8525e6f7140eeac48fe56", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { - "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679872001608/details/costs", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679267111761/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "989083c101974e2682bc92fb", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679872001608/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679872001608, @@ -77962,18 +115125,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fa5526ecbefc445589b2ec5f", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679872001608", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -77983,38 +115159,46 @@ "original_amount": 25, "total_amount": 25, "id": 1679872001608, - "date_created": "2023-03-26T23:06:41.608Z", - "date_last_updated": "2023-03-26T23:06:41.608Z", - "date_of_expiration": "2023-03-26T23:06:41.608Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1679872001608, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1679872001608 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a463eb0c070a4ef88b9dcc8a", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { - "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684018958586/details/costs", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679872001608/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "82bcd46f3fb047259354e928", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684018958586/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684018958586, @@ -78025,18 +115209,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5a0afaec0eec4698929d41a9", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684018958586", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -78046,38 +115243,46 @@ "original_amount": 120, "total_amount": 120, "id": 1684018958586, - "date_created": "2023-05-13T23:02:38.586Z", - "date_last_updated": "2023-05-13T23:02:38.586Z", - "date_of_expiration": "2023-05-13T23:02:38.586Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684018958586, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684018958586 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aa132f0587044ea593677aca", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { - "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684348450676/details/costs", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684018958586/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "865a00b8359546848afc0732", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684348450676/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684348450676, @@ -78088,18 +115293,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2eaaec200c0448f5ae6a6920", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684348450676", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -78109,38 +115327,46 @@ "original_amount": 13, "total_amount": 13, "id": 1684348450676, - "date_created": "2023-05-17T18:34:10.676Z", - "date_last_updated": "2023-05-17T18:34:10.676Z", - "date_of_expiration": "2023-05-17T18:34:10.676Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684348450676, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684348450676 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "99c6f067f60a4d71a6af29c1", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { - "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624165029/details/costs", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684348450676/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "d79fced42d2242e1aa6df43c", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624165029/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624165029, @@ -78151,18 +115377,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e9eab16f3fc34aeaadc47b2d", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624165029", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -78172,38 +115411,46 @@ "original_amount": 30, "total_amount": 30, "id": 1684624165029, - "date_created": "2023-05-20T23:09:25.029Z", - "date_last_updated": "2023-05-20T23:09:25.029Z", - "date_of_expiration": "2023-05-20T23:09:25.029Z", + "date_created": { + "type": 6, + "value": 1701459383541 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383541 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383541 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684624165029, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684624165029 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1060ecc303c94a78a0e66a1d", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { - "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624981228/details/costs", + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624165029/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "bb40ec5217c94858a60d1a87", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383541, + "modified": 1701459383541 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624981228/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624981228, @@ -78214,18 +115461,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c3c9539a1233493b9a7d9256", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624981228", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -78235,203 +115495,285 @@ "original_amount": 109.9, "total_amount": 109.9, "id": 1684624981228, - "date_created": "2023-05-20T23:23:01.228Z", - "date_last_updated": "2023-05-20T23:23:01.228Z", - "date_of_expiration": "2023-05-20T23:23:01.228Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684624981228, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684624981228 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dd917df957a44f239eee70f5", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624981228/description", + "content": { + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "bc3c9b5de42a4bd9b953985c", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "85fa93c0943742f080413927", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677885325302, "dateValidity": 1677929034802, "totalValue": 89.197, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d64a4ab7f1274a91ad93fc39", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/127785137141729800/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "582ea8cb653c42a1916697a6", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/127785137141729800/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bbb60aa0a41f44d0beb6009b", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/127785137141729800/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "94fde8fd0cba411780787926", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/127785137141729800/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3d8768652a324781a5c8dc6c", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/127785137141729800", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1695173270592, "dateValidity": 1695173270620, "currencyType": "USD", - "balancesModificacao": "2023-09-20T03:00:00.000Z" + "balancesModificacao": "2023-09-20T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a294d8e926134d8e841d59b6", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/127995869380983060/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dbcfdddea9604ea6920f63d6", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/127995869380983060/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a73932070ac44558ae105925", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/127995869380983060", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678268990831, "dateValidity": 1678279790864, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7d10502e5a814735a1230516", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "15415938.00000000", "symbol": "IVIP", - "value": 3434.39 + "value": 3434.39, + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "76301de0308e4891b9670458", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4c5c946169b9456d8e6e9c7c", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } + }, + "revision": "68bf51563aa7461fbb5eba1d", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -78440,9 +115782,18 @@ "total_amount": 2000, "history_id": 1677726769800, "id": 1677726769800, - "date_created": "2023-03-02T03:12:49.800Z", - "date_last_updated": "2023-03-02T11:00:57.517Z", - "date_of_expiration": "2023-04-01T03:12:49.800Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -78450,41 +115801,54 @@ "date_approved": "2023-03-02T11:00:57.517Z", "money_release_date": "2023-03-02T11:00:57.517Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "99bef6be62d04f00bd88c581", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { - "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996/details/costs", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80", + "revision": "d38285701896478abb8f5866", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } + }, + "revision": "1011b75078c048bdb32e0ec5", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -78493,9 +115857,18 @@ "total_amount": 3000, "history_id": 1678032850996, "id": 1678032850996, - "date_created": "2023-03-05T16:14:10.996Z", - "date_last_updated": "2023-03-05T18:41:48.688Z", - "date_of_expiration": "2023-04-04T16:14:10.996Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -78503,30 +115876,29 @@ "date_approved": "2023-03-05T18:41:48.688Z", "money_release_date": "2023-03-05T18:41:48.688Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1287.0114.4173.8232-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fe37b19eca044ae2a064a6b2", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { - "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678076967863/details/costs", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1287.0114.4173.8232-80", + "revision": "e1fedfbbf8cf4ae592edc214", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678076967863/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678076967863, @@ -78537,18 +115909,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b5f5e3e19e524146913f42aa", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678076967863", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -78558,9 +115943,18 @@ "original_amount": 35378057, "total_amount": 35378057, "id": 1678076967863, - "date_created": "2023-03-06T04:29:27.863Z", - "date_last_updated": "2023-03-06T04:29:27.863Z", - "date_of_expiration": "2023-03-06T04:29:27.863Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78569,42 +115963,65 @@ "history_id": 1678076967863, "description": "Compra de 35378057 IVIP por 5000 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "68282391c69844d9b7b7f656", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 240 + "amount": 240, + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2db03c60aaa3453886e989ed", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b66f8ece4f3f4e9da49b5146", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "5705826ae6b54310811b414f", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -78613,37 +116030,45 @@ "total_amount": 2240, "history_id": 1679268249425, "id": 1679268249425, - "date_created": "2023-03-19T23:24:09.425Z", - "date_last_updated": "2023-03-19T23:24:09.425Z", - "date_of_expiration": "2023-04-18T23:24:09.425Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0b5ebb0f89274f0da00f0942", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { - "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679871677212/details/costs", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", + "revision": "93bf360201a44de19663d41b", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679871677212/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679871677212, @@ -78654,18 +116079,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f055e9f58e1943cb94aee199", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679871677212", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -78675,9 +116113,18 @@ "original_amount": 10651254, "total_amount": 10651254, "id": 1679871677212, - "date_created": "2023-03-26T23:01:17.212Z", - "date_last_updated": "2023-03-26T23:01:17.212Z", - "date_of_expiration": "2023-03-26T23:01:17.212Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78686,42 +116133,65 @@ "history_id": 1679871677212, "description": "Compra de 10.651.254,00 IVIP por 2.000,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "05cbb65e13d3412b8b9c4ff8", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2ccfe44449d243929fa86859", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details", "content": { - "type": 1, + "type": "OBJECT", + "value": {}, + "revision": "65276a1b5a2e4f3d9099bb5a", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details/costs", + "content": { + "type": "ARRAY", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "02072f3faa8342a29e072509", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -78730,37 +116200,45 @@ "total_amount": 1120, "history_id": 1679872304314, "id": 1679872304314, - "date_created": "2023-03-26T23:11:44.314Z", - "date_last_updated": "2023-03-26T23:11:44.314Z", - "date_of_expiration": "2023-04-25T23:11:44.314Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "11f863566cf1493880a4a6e8", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { - "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872334513/details/costs", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", + "revision": "d3ef6a701e76426ba7c7a89b", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872334513/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679872334513, @@ -78771,18 +116249,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fdc9a38b5d404e7bb57c22f0", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872334513", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -78792,9 +116283,18 @@ "original_amount": 5325627, "total_amount": 5325627, "id": 1679872334513, - "date_created": "2023-03-26T23:12:14.513Z", - "date_last_updated": "2023-03-26T23:12:14.513Z", - "date_of_expiration": "2023-03-26T23:12:14.513Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78803,38 +116303,41 @@ "history_id": 1679872334513, "description": "Compra de 5.325.627,00 IVIP por 1.000,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cefeec51c66b493c98be62ab", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } + }, + "revision": "a7b8616a4bf44d398464d311", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -78843,9 +116346,18 @@ "total_amount": 840, "history_id": 1682619398300, "id": 1682619398300, - "date_created": "2023-04-27T18:16:38.300Z", - "date_last_updated": "2023-04-27T18:22:41.924Z", - "date_of_expiration": "2023-05-27T18:16:38.300Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -78853,30 +116365,29 @@ "date_approved": "2023-04-27T18:22:41.924Z", "money_release_date": "2023-04-27T18:22:41.924Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 840,00 para a carteira iVip 1287.0114.4173.8232-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3718b99c4fe0439cbead7926", "revision_nr": 1, - "created": 1700748395521, - "modified": 1700748395521 + "created": 1701459383542, + "modified": 1701459383542 } }, { - "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932343/details/costs", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 840,00 para a carteira iVip 1287.0114.4173.8232-80", + "revision": "5335b90db38541429f8b3b26", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932343/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -78889,18 +116400,31 @@ "overpaid_amount": 0, "installment_amount": 560, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "32bd9bfd20714a5dbee0589a", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932343", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -78911,38 +116435,46 @@ "total_amount": 560, "id": 1682619932343, "contract_id": "1679268249425", - "date_created": "2023-04-27T18:25:32.343Z", - "date_last_updated": "2023-04-27T18:25:32.343Z", - "date_of_expiration": "2023-04-27T18:25:32.343Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1682619932343, - "description": "Pagamento de fatura 1 de 4 no valor de 560,00 BRL referente ao contrato 1679268249425" + "history_id": 1682619932343 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b07f1ff92b3a44988e6b5ab4", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { - "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932484/details/costs", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932343/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 4 no valor de 560,00 BRL referente ao contrato 1679268249425", + "revision": "153592c48b48458590c83599", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932484/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "installment_paid": 1, @@ -78955,18 +116487,31 @@ "overpaid_amount": 0, "installment_amount": 280, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2f528baf189347d3afa4c5c4", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932484", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "transfer", @@ -78977,38 +116522,46 @@ "total_amount": 280, "id": 1682619932484, "contract_id": "1679872304314", - "date_created": "2023-04-27T18:25:32.484Z", - "date_last_updated": "2023-04-27T18:25:32.484Z", - "date_of_expiration": "2023-04-27T18:25:32.484Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", "status_detail": "discounted", "currency_id": "BRL", - "history_id": 1682619932484, - "description": "Pagamento de fatura 1 de 4 no valor de 280,00 BRL referente ao contrato 1679872304314" + "history_id": 1682619932484 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1a31a7d3987a441c95c0f387", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { - "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1685667547180/details/costs", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932484/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Pagamento de fatura 1 de 4 no valor de 280,00 BRL referente ao contrato 1679872304314", + "revision": "70db7eece0744d1aa9c22212", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1685667547180/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685667547180, @@ -79019,18 +116572,31 @@ "overpaid_amount": 0, "installment_amount": 8000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "28d637104f5e4f2f8e0d9f71", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1685667547180", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -79039,50 +116605,72 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667547180, - "date_created": "2023-06-02T00:59:07.180Z", - "date_last_updated": "2023-06-02T00:59:07.180Z", - "date_of_expiration": "2025-06-02T00:59:07.180Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1685667547180, - "wasDebited": true, - "description": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "91d73cc24c0f469cabb16ffa", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { - "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924/details/costs", + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1685667547180/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", + "revision": "265ae33af90d4c398a64328e", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } + }, + "revision": "a976e0320f9d492a8de9a6d5", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -79091,9 +116679,18 @@ "total_amount": 3000000, "history_id": 1688772261924, "id": 1688772261924, - "date_created": "2023-07-07T23:24:21.924Z", - "date_last_updated": "2023-07-10T17:24:09.267Z", - "date_of_expiration": "2023-07-07T23:24:21.924Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -79101,34 +116698,56 @@ "date_approved": "2023-07-10T17:24:09.267Z", "money_release_date": "2023-07-10T17:24:09.267Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 3.000.000,00 IVIP para a carteira 0xDB45185C1086eFFBAA2d0b64862c83Bd9D29DE62" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b137546a0aea4e288dc25b7c", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924/description", + "content": { + "type": "STRING", + "value": "Saque de 3.000.000,00 IVIP para a carteira 0xDB45185C1086eFFBAA2d0b64862c83Bd9D29DE62", + "revision": "4972e33520d84b288a436323", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 748170 + "amount": 748170, + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "614a5ca0777e41fb8e964660", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1692276235458, "net_received_amount": 0, @@ -79138,18 +116757,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/128701144173823280/history/1692276235458" + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dcf03ab3dfd44ada82b8461a", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/128701144173823280/history/1692276235458", + "revision": "40518159a8ca4659b4d46051", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "2e08a2482c084d0e97a848b2", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -79158,9 +116810,18 @@ "total_amount": 24190830, "id": 1692276235458, "history_id": 1692276235458, - "date_created": "2023-08-17T12:43:55.458Z", - "date_last_updated": "2023-08-18T13:47:15.287Z", - "date_of_expiration": "2023-08-17T12:43:55.458Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -79170,45 +116831,67 @@ "date_approved": "2023-08-18T13:47:15.287Z", "money_release_date": "2023-08-18T13:47:15.287Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 24.190.830,00 IVIP para a carteira 0xDB45185C1086eFFBAA2d0b64862c83Bd9D29DE62" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "17ee4bc971a147a1843c3b37", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/description", + "content": { + "type": "STRING", + "value": "Saque de 24.190.830,00 IVIP para a carteira 0xDB45185C1086eFFBAA2d0b64862c83Bd9D29DE62", + "revision": "301203b043e34451a0a812eb", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9254f703542a463191ba4ca6", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 240 + "amount": 240, + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "916bf181c8184dfca634534d", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679268249425, "type": "emprestimo", @@ -79216,37 +116899,81 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": "2023-03-19T23:24:09.425Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, "history_id": 1679268249425, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00" + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "87329205794845ac8cd7d3bc", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", + "revision": "bf6b29450b324448b53a8aba", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "0e12e6a5383045b3bb32cfff", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ce2a19294e6d4fc5b6c03913", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679872304314, "type": "emprestimo", @@ -79254,48 +116981,92 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": "2023-03-26T23:11:44.314Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, "history_id": 1679872304314, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00" + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "03088513dbe44cc6bc11a12b", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", + "revision": "871327a7bedb4b4cbe292472", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "ae64cdd38bde4d2fa561dde4", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4a862e6a7dd444588719d14b", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 240 + "amount": 240, + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "509c92e8ceae4b07bfbf20f8", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679268249425, "type": "emprestimo", @@ -79303,36 +117074,80 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": "2023-03-19T23:24:09.425Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, "history_id": 1679268249425, "currency_id": "BRL", - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00" + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5050bc318981427fbbdc45ff", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", + "revision": "9fe3581f6f5b4df483b8ec1f", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "26f9460723c14a57a5d83241", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bf3ebaf5f7d1476db110585f", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679872304314, "type": "emprestimo", @@ -79340,47 +117155,91 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": "2023-03-26T23:11:44.314Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, "history_id": 1679872304314, "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00" + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fea97b635b3e493293af1149", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", + "revision": "bba9057e2a9f4199b4aa06ff", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "9d28b58bd0234a6aaff85869", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "07ec72b779c945f78ac6097b", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 240 + "amount": 240, + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2fe1675716c947138a246d0d", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679268249425, "type": "emprestimo", @@ -79388,36 +117247,80 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": "2023-03-19T23:24:09.425Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, "history_id": 1679268249425, "currency_id": "BRL", - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00" + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4303437ba9de4b9a82a1e2bf", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", + "revision": "8dcd0423120448c6917338b8", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "403d5cc12e844b04ba32c924", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b7cef5ea7bab429680e1b119", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679872304314, "type": "emprestimo", @@ -79425,47 +117328,91 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": "2023-03-26T23:11:44.314Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, "history_id": 1679872304314, "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00" + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7f3ae895c35f4dc5ab52d084", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", + "revision": "22380b2de7f14946bd503342", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "2eeb7c2e4a2a40b8ac55a65b", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "864151c1a9e14451bb421385", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 240 + "amount": 240, + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "03f326e5d50846119996f3c3", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679268249425, "type": "emprestimo", @@ -79473,36 +117420,80 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": "2023-03-19T23:24:09.425Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, "history_id": 1679268249425, "currency_id": "BRL", - "description": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00" + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "922da28d19614cafa2f4da7d", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", + "revision": "dcdc6d5af5b043c6bda4062a", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "41d19f02851d477b9313de95", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 120 + "amount": 120, + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f9f20e38534b4dcc8fd4f28d", "revision_nr": 1, - "created": 1700748395522, - "modified": 1700748395522 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1679872304314, "type": "emprestimo", @@ -79510,109 +117501,168 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": "2023-03-26T23:11:44.314Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, "history_id": 1679872304314, "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00" + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3423affbf6e044bbb61ad6c4", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", + "revision": "d226d413031149c9b5fe59cf", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "e00e40e385584b22a6602cb9", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5e786fe248954481b7344e86", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8443e6172dac4ec6aaabfc4f", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 10000, "limitUsed": 2250, "analysisRequested": "2023-03-19T23:03:43.911Z", - "lastReview": "2023-03-19T23:09:16.871Z" + "lastReview": "2023-03-19T23:09:16.871Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f9f2e4680ca0421dbc2b2b9e", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677412042762, "dateValidity": 1678206220392, "totalValue": 6834.92, "currencyType": "USD", - "balancesModificacao": "2023-09-28T03:00:00.000Z" + "balancesModificacao": "2023-09-28T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cddad37a42aa4714b04d0b3c", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d599a1c3ebcb4855be7f115f", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } + }, + "revision": "e21358db79b447d2a6d121a8", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -79621,140 +117671,210 @@ "total_amount": 500, "history_id": 1684145604531, "id": 1684145604531, - "date_created": "2023-05-15T10:13:24.531Z", - "date_last_updated": "2023-05-15T10:13:24.531Z", - "date_of_expiration": "2023-06-14T10:13:24.531Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 1302.5146.4382.3786-70" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fe5973c06e76426ca2c49f84", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1302.5146.4382.3786-70", + "revision": "760459e99f624ca996bf5154", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "15034c3da89945f9a93a4c45", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4bf4cad50bcf409cbd975488", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e884e38adee04aeea7fc8d9f", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684145436275, "dateValidity": 1684145436275, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "02f206a032b9403daf281346", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "BRL", "value": 0, - "available": "0.00000000" + "available": "0.00000000", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "86a9ff97c44b41559504c8ac", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "symbol": "IVIP", "available": "1069072.00000000", - "value": 37.92 + "value": 37.92, + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b08a62d906d04a4a9bf08d11", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b484a649a4ad400d95239c60", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } + }, + "revision": "a1b68eba6e0f4afaaf239c31", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -79763,49 +117883,71 @@ "total_amount": 20, "history_id": 1677984009002, "id": 1677984009002, - "date_created": "2023-03-05T02:40:09.002Z", - "date_last_updated": "2023-03-10T12:42:28.101Z", - "date_of_expiration": "2023-04-04T02:40:09.002Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", "money_release_date": "2023-03-10T12:42:28.101Z", - "money_release_status": "rejected", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 1328.9266.1243.2543-80" + "money_release_status": "rejected" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "643a152a339b4f07a1a5037e", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { - "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082/details/costs", + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1328.9266.1243.2543-80", + "revision": "65f0f4dae91448c1ba109aff", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } + }, + "revision": "d5ee99b43f5d4047b757c1cd", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -79814,47 +117956,69 @@ "total_amount": 200, "history_id": 1678119185082, "id": 1678119185082, - "date_created": "2023-03-06T16:13:05.082Z", - "date_last_updated": "2023-03-06T16:13:05.082Z", - "date_of_expiration": "2023-04-05T16:13:05.082Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 1328.9266.1243.2543-80" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d8c9443bc99e4ed982240707", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { - "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612/details/costs", + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1328.9266.1243.2543-80", + "revision": "9521e13124e74807a1b42281", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } + }, + "revision": "28d8014681cb44b5a9be3535", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -79863,9 +118027,18 @@ "total_amount": 200, "history_id": 1678119441612, "id": 1678119441612, - "date_created": "2023-03-06T16:17:21.612Z", - "date_last_updated": "2023-03-09T14:31:06.897Z", - "date_of_expiration": "2023-04-05T16:17:21.612Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -79873,30 +118046,29 @@ "date_approved": "2023-03-09T14:31:06.897Z", "money_release_date": "2023-03-09T14:31:06.897Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 200,00 para a carteira iVip 1328.9266.1243.2543-80" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dfad3b9813f44ed7a03d0363", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { - "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1679940518294/details/costs", + "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1328.9266.1243.2543-80", + "revision": "e63ad69df51c42fbaae7e605", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1679940518294/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679940518294, @@ -79907,18 +118079,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f75cce2845bd42a4bc2338fc", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1679940518294", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -79928,9 +118113,18 @@ "original_amount": 1069072, "total_amount": 1069072, "id": 1679940518294, - "date_created": "2023-03-27T18:08:38.294Z", - "date_last_updated": "2023-03-27T18:08:38.294Z", - "date_of_expiration": "2023-03-27T18:08:38.294Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -79939,109 +118133,146 @@ "history_id": 1679940518294, "description": "Compra de 1.069.072,00 IVIP por 200,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a087f6304fd04570ba9359f1", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "13d3d594511a42c4a7faed53", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677983983862, "dateValidity": 1678983329949, "totalValue": 37.76, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "94dbe95469f64980bf1bb4ff", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "30608.00000000", "symbol": "IVIP", - "value": 3.42 + "value": 3.42, + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "48302f1e77554096bcc2988b", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances/BRL", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0 + "value": 0, + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d90828f7855c4ad280e42d1a", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2e748fca480140c3b5110165", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-06T21:00:23.188Z" + ".val": "2023-09-06T21:00:23.188Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cc1860fdbcb8491bbf84c113", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691442023188, "net_received_amount": 0, @@ -80051,18 +118282,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691442023188" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "757f0a4716f2466eb267e527", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691442023188", + "revision": "a076f04ab7f348c880b2a66f", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -80071,51 +118325,72 @@ "total_amount": 20, "id": 1691442023188, "history_id": 1691442023188, - "date_created": "2023-08-07T21:00:23.188Z", - "date_last_updated": "2023-08-07T21:00:23.188Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 20,00 para a carteira iVip 1336.7505.4149.0212-50" + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "02b0373901144d60bf089da4", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { - "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/date_of_expiration", + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/description", "content": { - "type": 1, - "value": { - ".type": "date", - ".val": "2023-09-07T22:30:56.606Z" - }, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 20,00 para a carteira iVip 1336.7505.4149.0212-50", + "revision": "febbce68dfcd493c8b2035fa", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { - "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/details/costs", + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/date_of_expiration", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + ".type": "date", + ".val": "2023-09-07T22:30:56.606Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } + }, + "revision": "42f84b4cb8b04d0a9a7dd5d5", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691533856606, "net_received_amount": 0, @@ -80125,18 +118400,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691533856606" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "71bcd2213eeb466382c0573c", + "revision_nr": 1, + "created": 1701459383542, + "modified": 1701459383542 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691533856606", + "revision": "633613ce81c14cf998f5a58b", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -80145,8 +118443,14 @@ "total_amount": 20, "id": 1691533856606, "history_id": 1691533856606, - "date_created": "2023-08-08T22:30:56.606Z", - "date_last_updated": "2023-08-08T23:24:11.872Z", + "date_created": { + "type": 6, + "value": 1701459383542 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383542 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -80157,29 +118461,32 @@ "money_release_date": "2023-08-08T23:24:11.872Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 20,00 para a carteira iVip 1336.7505.4149.0212-50" + "date_of_expiration": { + "type": 6, + "value": 1701459383542 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fe0d070376384d45a31dad1f", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { - "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691597759364/details/costs", + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 20,00 para a carteira iVip 1336.7505.4149.0212-50", + "revision": "84312cf97a8a410ab8339d9f", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383542, + "modified": 1701459383542 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691597759364/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691597759364, "net_received_amount": 0, @@ -80189,18 +118496,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691597759364" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b0dc68b602db466e89de2984", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691597759364/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691597759364", + "revision": "49987494df7f4740ae2b101b", + "revision_nr": 1, + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691597759364", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -80209,9 +118539,18 @@ "total_amount": 30608, "id": 1691597759364, "history_id": 1691597759364, - "date_created": "2023-08-09T16:15:59.364Z", - "date_last_updated": "2023-08-09T16:15:59.364Z", - "date_of_expiration": "2023-08-09T16:15:59.364Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -80220,101 +118559,128 @@ "description": "Compra de 30.608,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fcc588bab68149b58887e3ac", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "45d24a2220494b37af15b7e1", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "36f3fa6a795c4d11b40318a1", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "85afded077ad49f89c85c3b0", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1691441898494, "dateValidity": 1691441898538, "currencyType": "USD", - "balancesModificacao": "2023-08-11T03:00:00.000Z" + "balancesModificacao": "2023-08-11T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0e83bb2978354c5f8866b519", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e9d9442b4d3c490295ae0927", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } + }, + "revision": "f1800d6fd1d7451c9445464f", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -80323,47 +118689,69 @@ "total_amount": 20, "history_id": 1689202732019, "id": 1689202732019, - "date_created": "2023-07-12T22:58:52.019Z", - "date_last_updated": "2023-07-12T22:58:52.019Z", - "date_of_expiration": "2023-08-11T22:58:52.019Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8be3bace2db8436aa7b4a6cd", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { - "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552/details/costs", + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", + "revision": "372e37a96d1140d9a6465379", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } + }, + "revision": "c7925c19a5c741ee9a02ced9", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -80372,47 +118760,69 @@ "total_amount": 20, "history_id": 1689455294552, "id": 1689455294552, - "date_created": "2023-07-15T21:08:14.552Z", - "date_last_updated": "2023-07-15T21:08:14.552Z", - "date_of_expiration": "2023-08-14T21:08:14.552Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ada0120da94f408aaea8e3b6", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { - "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352/details/costs", + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", + "revision": "2574b4fe3f434bb99163a6be", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } + }, + "revision": "f73c794203a645feafb522d0", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -80421,110 +118831,156 @@ "total_amount": 20, "history_id": 1689455325352, "id": 1689455325352, - "date_created": "2023-07-15T21:08:45.352Z", - "date_last_updated": "2023-07-15T21:08:45.352Z", - "date_of_expiration": "2023-08-14T21:08:45.352Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8fb80a1cf2b14d9986fca2b6", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", + "revision": "2143c36fe5554b3aaa64d57d", + "revision_nr": 1, + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bcd6a1fece9d476e9f0d3637", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "68598ed5dae943c6ac4c29c1", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "efb3e7b9b52742a1885aed67", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1689199381511, "dateValidity": 1689199381511, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "06552389305747d996997529", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/balances", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876/details/costs", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "633abf9be6454208a9490c22", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } + }, + "revision": "ec6b4e856fce4d11b4838d0d", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -80533,148 +118989,206 @@ "total_amount": 1700, "history_id": 1684183743876, "id": 1684183743876, - "date_created": "2023-05-15T20:49:03.876Z", - "date_last_updated": "2023-05-15T20:49:03.876Z", - "date_of_expiration": "2023-06-14T20:49:03.876Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 1.700,00 para a carteira iVip 1346.8212.0797.4517-90" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1c0dad3771f74dc68d77e7b6", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 1.700,00 para a carteira iVip 1346.8212.0797.4517-90", + "revision": "e6e2709aa3944739a84abcee", + "revision_nr": 1, + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d11bc111434d4f8e8ec2c62a", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "55315b8c9d7f4ab88b200d57", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f1b302ca18374b28827ce6d1", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684171343507, "dateValidity": 1684171343507, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b7e4726f7e844c5388d24f1f", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/137445448878708240/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "758076082a214129a0cb1ca9", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/137445448878708240/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "aa01a9a10f7a46178f1290f1", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/137445448878708240", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678373632630, "dateValidity": 1678388032664, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c41476253fa74d299f2d3602", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5901e24b05c44711a743fb71", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } + }, + "revision": "ec51bd17472a44b3b9476281", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -80683,125 +119197,183 @@ "total_amount": 20, "history_id": 1689208709356, "id": 1689208709356, - "date_created": "2023-07-13T00:38:29.356Z", - "date_last_updated": "2023-07-13T00:38:29.356Z", - "date_of_expiration": "2023-08-12T00:38:29.356Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 1384.8850.0273.9255-70" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "18e8ae2d8ba344559e1c225e", + "revision_nr": 1, + "created": 1701459383543, + "modified": 1701459383543 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1384.8850.0273.9255-70", + "revision": "85390baee2744734b5613599", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "816b17e1e052419eb9cfffe0", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bdcc414fe49147528750544f", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a4549e5083644ab891823559", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1689183505496, "dateValidity": 1689183505496, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1c1113c33dc64f05914f0a1a", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "919038.84000000", "symbol": "IVIP", - "value": 654.99 + "value": 654.99, + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "41b6d1682fe0463db57c5cf2", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "45072d29df7b4974a9e9ee35", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } + }, + "revision": "934a55cbd78840d9b1bbb3ec", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -80810,9 +119382,18 @@ "total_amount": 1000, "history_id": 1677847333011, "id": 1677847333011, - "date_created": "2023-03-03T12:42:13.011Z", - "date_last_updated": "2023-03-03T16:22:44.643Z", - "date_of_expiration": "2023-04-02T12:42:13.011Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -80820,30 +119401,29 @@ "date_approved": "2023-03-03T16:22:44.643Z", "money_release_date": "2023-03-03T16:22:44.643Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1385.8527.3860.3328-20" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c5cf63b39d3c4aaeade86bf4", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678180078100/details/costs", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1385.8527.3860.3328-20", + "revision": "f65936af72c74c6da34e5f09", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678180078100/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678180078100, @@ -80854,18 +119434,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7e2084c7fa4b4f8a8500cf55", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678180078100", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -80875,9 +119468,18 @@ "original_amount": 7131208, "total_amount": 7131208, "id": 1678180078100, - "date_created": "2023-03-07T09:07:58.100Z", - "date_last_updated": "2023-03-07T09:07:58.100Z", - "date_of_expiration": "2023-03-07T09:07:58.100Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -80886,27 +119488,16 @@ "history_id": 1678180078100, "description": "Compra de 7131208 IVIP por 1000 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678198835623/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1631999fa7874148bdee77ac", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678198835623/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678198835623, @@ -80917,18 +119508,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1664d9b202524c1482eecc71", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678198835623", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -80938,38 +119542,46 @@ "original_amount": 2000, "total_amount": 2000, "id": 1678198835623, - "date_created": "2023-03-07T14:20:35.623Z", - "date_last_updated": "2023-03-07T14:20:35.623Z", - "date_of_expiration": "2023-03-07T14:20:35.623Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1678198835623, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1678198835623 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3f316e7edf2943b186b8f49e", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678228246387/details/costs", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678198835623/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "dbc0dd7309e04528b825a26b", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678228246387/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1678228246387, @@ -80980,18 +119592,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0510db99d30348f7926eb3b2", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678228246387", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -81001,38 +119626,46 @@ "original_amount": 1000, "total_amount": 1000, "id": 1678228246387, - "date_created": "2023-03-07T22:30:46.387Z", - "date_last_updated": "2023-03-07T22:30:46.387Z", - "date_of_expiration": "2023-03-07T22:30:46.387Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1678228246387, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1678228246387 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b715b3c7807c405db286a685", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679266874503/details/costs", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678228246387/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "601fcef662a445b0bded6d68", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679266874503/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679266874503, @@ -81043,18 +119676,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2fdc154d4bf54c998a2e2472", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679266874503", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -81064,38 +119710,46 @@ "original_amount": 1000, "total_amount": 1000, "id": 1679266874503, - "date_created": "2023-03-19T23:01:14.503Z", - "date_last_updated": "2023-03-19T23:01:14.503Z", - "date_of_expiration": "2023-03-19T23:01:14.503Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1679266874503, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1679266874503 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e94de3057e084879b54d3986", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679267008673/details/costs", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679266874503/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "1b3744569e5c45ee838538a5", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679267008673/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1679267008673, @@ -81106,18 +119760,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "33eceefa473449619e69863d", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679267008673", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -81127,9 +119794,18 @@ "original_amount": 23286153, "total_amount": 23286153, "id": 1679267008673, - "date_created": "2023-03-19T23:03:28.673Z", - "date_last_updated": "2023-03-19T23:03:28.673Z", - "date_of_expiration": "2023-03-19T23:03:28.673Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -81138,42 +119814,65 @@ "history_id": 1679267008673, "description": "Compra de 23286153 IVIP por 4000 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "353920d7ab2c4e8faa7b0343", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400 + "amount": 2400, + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "708b24d3432a45f19e63b01a", "revision_nr": 1, - "created": 1700748395523, - "modified": 1700748395523 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c668b51aceb042fc967bd57b", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "f284e398c68d453ebf221d47", + "revision_nr": 1, + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -81182,37 +119881,45 @@ "total_amount": 12400, "history_id": 1684019947547, "id": 1684019947547, - "date_created": "2023-05-13T23:19:07.547Z", - "date_last_updated": "2023-05-13T23:19:07.547Z", - "date_of_expiration": "2023-06-12T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "wasDebited": true, - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "37fdb70a4cbb4250ae9ae542", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684348689379/details/costs", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "c7ec762d8880426f966f6dc2", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684348689379/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684348689379, @@ -81223,18 +119930,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2663b9a4c326441c98067cd3", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684348689379", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -81244,38 +119964,46 @@ "original_amount": 1040, "total_amount": 1040, "id": 1684348689379, - "date_created": "2023-05-17T18:38:09.379Z", - "date_last_updated": "2023-05-17T18:38:09.379Z", - "date_of_expiration": "2023-05-17T18:38:09.379Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684348689379, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684348689379 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ef0d9800a89b45e3b7567da6", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624162871/details/costs", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684348689379/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "c6170542746e450d99d0b2f4", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624162871/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624162871, @@ -81286,18 +120014,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2272a2338645471c81b847b4", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624162871", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -81307,9 +120048,18 @@ "original_amount": 53772878, "total_amount": 53772878, "id": 1684624162871, - "date_created": "2023-05-20T23:09:22.871Z", - "date_last_updated": "2023-05-20T23:09:22.871Z", - "date_of_expiration": "2023-05-20T23:09:22.871Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -81318,27 +120068,16 @@ "history_id": 1684624162871, "description": "Compra de 53.772.878,00 IVIP por 11.040,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624267520/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e7d53f1f30a44960ac8b1c56", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624267520/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624267520, @@ -81349,18 +120088,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ae4cd906c906482c89aeddef", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624267520", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -81370,38 +120122,46 @@ "original_amount": 258.1, "total_amount": 258.1, "id": 1684624267520, - "date_created": "2023-05-20T23:11:07.520Z", - "date_last_updated": "2023-05-20T23:11:07.520Z", - "date_of_expiration": "2023-05-20T23:11:07.520Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684624267520, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684624267520 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a3ec72f25c594479ab93392d", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624311448/details/costs", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624267520/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "d046cc6c29974a55aaba0013", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624311448/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624311448, @@ -81412,18 +120172,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e29e0023397d4d0fa1284e41", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624311448", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -81433,9 +120206,18 @@ "original_amount": 1257135, "total_amount": 1257135, "id": 1684624311448, - "date_created": "2023-05-20T23:11:51.448Z", - "date_last_updated": "2023-05-20T23:11:51.448Z", - "date_of_expiration": "2023-05-20T23:11:51.448Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -81444,27 +120226,16 @@ "history_id": 1684624311448, "description": "Compra de 1.257.135,00 IVIP por 258,10 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1c9cdd216ae44ba789380619", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624493050/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624493050/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684624493050, @@ -81475,18 +120246,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d0f7e14f4e964cfdadcfc6c7", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624493050", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -81496,38 +120280,46 @@ "original_amount": 12.600000000000001, "total_amount": 12.600000000000001, "id": 1684624493050, - "date_created": "2023-05-20T23:14:53.050Z", - "date_last_updated": "2023-05-20T23:14:53.050Z", - "date_of_expiration": "2023-05-20T23:14:53.050Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684624493050, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684624493050 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3c676272796e49cbb0d5bbf1", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684627629023/details/costs", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624493050/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "c079d40a9eee4f95a6fbf3b0", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684627629023/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684627629023, @@ -81538,18 +120330,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c26cd9d48f5f474f9e728f0f", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684627629023", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -81559,38 +120364,46 @@ "original_amount": 13, "total_amount": 13, "id": 1684627629023, - "date_created": "2023-05-21T00:07:09.023Z", - "date_last_updated": "2023-05-21T00:07:09.023Z", - "date_of_expiration": "2023-05-21T00:07:09.023Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684627629023, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684627629023 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "23d73c99b53242a48b90855a", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684692136128/details/costs", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684627629023/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "3588f09822c3491193ead9bb", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684692136128/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684692136128, @@ -81601,18 +120414,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "08cd9b72a3ed4c26a0ea8ca9", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684692136128", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "deposit", @@ -81622,38 +120448,46 @@ "original_amount": 3.2, "total_amount": 3.2, "id": 1684692136128, - "date_created": "2023-05-21T18:02:16.128Z", - "date_last_updated": "2023-05-21T18:02:16.128Z", - "date_of_expiration": "2023-05-21T18:02:16.128Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "history_id": 1684692136128, - "description": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência" + "history_id": 1684692136128 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "b35a219630da42d08f6710c6", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684710449691/details/costs", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684692136128/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", + "revision": "562756b5c7164a469a98f675", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684710449691/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1684710449691, @@ -81664,18 +120498,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1624c02eb05042ff9b30e677", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684710449691", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -81685,9 +120532,18 @@ "original_amount": 139785, "total_amount": 139785, "id": 1684710449691, - "date_created": "2023-05-21T23:07:29.691Z", - "date_last_updated": "2023-05-21T23:07:29.691Z", - "date_of_expiration": "2023-05-21T23:07:29.691Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -81696,38 +120552,41 @@ "history_id": 1684710449691, "description": "Compra de 139.785,00 IVIP por 28,80 BRL" }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3780076754094088982366d6", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } + }, + "revision": "4885b901262c424bb3a7e25a", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -81736,47 +120595,69 @@ "total_amount": 30550000, "history_id": 1689025596946, "id": 1689025596946, - "date_created": "2023-07-10T21:46:36.946Z", - "date_last_updated": "2023-07-10T21:46:36.946Z", - "date_of_expiration": "2023-07-10T21:46:36.946Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", - "currency_id": "IVIP", - "description": "Saque de 30.550.000,00 IVIP para a carteira 0xe19A954Bb3bc15ff05fDD30BB22AE96bF4425Bf0" + "currency_id": "IVIP" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bdab69a2f83a46848d7ba9d6", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985/details/costs", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 30.550.000,00 IVIP para a carteira 0xe19A954Bb3bc15ff05fDD30BB22AE96bF4425Bf0", + "revision": "97cb17967ab74d1f81840720", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } + }, + "revision": "b032d2baee834902a63afe92", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -81785,9 +120666,18 @@ "total_amount": 48707317, "history_id": 1690515792985, "id": 1690515792985, - "date_created": "2023-07-28T03:43:12.985Z", - "date_last_updated": "2023-07-28T03:43:12.985Z", - "date_of_expiration": "2023-07-28T03:43:12.985Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "status": "refunded", "status_detail": "cc_discounted_due_default", @@ -81795,34 +120685,56 @@ "date_approved": "2023-07-28T03:43:12.985Z", "money_release_date": "2023-07-28T03:43:12.985Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Devolução de 48.707.317,00 IVIP da carteira 1385.8527.3860.3328-20" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f375d3d8de47481f99b6162f", + "revision_nr": 1, + "created": 1701459383543, + "modified": 1701459383543 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985/description", + "content": { + "type": "STRING", + "value": "Devolução de 48.707.317,00 IVIP da carteira 1385.8527.3860.3328-20", + "revision": "3af683e6de784b45a37508f3", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 1047600 + "amount": 1047600, + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "474cf1ba411d496b9eea6630", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1690812074851, "net_received_amount": 0, @@ -81832,18 +120744,51 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1690812074851" + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0b4ae75900d04bfd9d8c78e3", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1690812074851", + "revision": "ab3341af634a4d569c487bd2", + "revision_nr": 1, + "created": 1701459383543, + "modified": 1701459383543 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "37bedbcc44c74a45991fbd2c", + "revision_nr": 1, + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -81852,9 +120797,18 @@ "total_amount": 34920000, "id": 1690812074851, "history_id": 1690812074851, - "date_created": "2023-07-31T14:01:14.851Z", - "date_last_updated": "2023-08-04T21:27:13.764Z", - "date_of_expiration": "2023-07-31T14:01:14.851Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -81864,30 +120818,29 @@ "date_approved": "2023-08-04T21:27:13.764Z", "money_release_date": "2023-08-04T21:27:13.764Z", "money_release_status": "discounted", - "wasDebited": true, - "description": "Saque de 34.920.000,00 IVIP para a carteira 0xe19A954Bb3bc15ff05fDD30BB22AE96bF4425Bf0" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dedcb20b4d554c38a0836589", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464/details/costs", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Saque de 34.920.000,00 IVIP para a carteira 0xe19A954Bb3bc15ff05fDD30BB22AE96bF4425Bf0", + "revision": "cc6ec864561d4aeb9fb0fc12", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691235380464, "net_received_amount": 0, @@ -81897,18 +120850,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1691235380464" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3d711378dbc4438ea5169de9", + "revision_nr": 1, + "created": 1701459383543, + "modified": 1701459383543 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1691235380464", + "revision": "d42399f61d78440582fcf52b", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -81917,38 +120893,46 @@ "total_amount": 1959842, "id": 1691235380464, "history_id": 1691235380464, - "date_created": "2023-08-05T11:36:20.464Z", - "date_last_updated": "2023-08-05T11:36:20.464Z", - "date_of_expiration": "2023-09-05T11:36:20.463Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 1.959.842,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3ce871eeb09a4a9582c0aa0f", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { - "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943/details/costs", + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 1.959.842,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", + "revision": "fe115a264bec4f5baa23e597", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693914295943, "net_received_amount": 0, @@ -81958,18 +120942,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1693914295943" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a6aa85f3c03e46abb04edd2e", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1693914295943", + "revision": "513507f45f1342738379a8ba", + "revision_nr": 1, + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -81978,53 +120985,84 @@ "total_amount": 1999038.84, "id": "1693914295943", "history_id": "1693914295943", - "date_created": "2023-09-05T11:44:55.943Z", - "date_last_updated": "2023-09-05T11:44:55.943Z", - "date_of_expiration": "2023-09-05T11:44:55.943Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 1.959.842,00 IVIP com um rendimento de +39.196,84 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ac1d534850ef4ae78391f14a", + "revision_nr": 1, + "created": 1701459383543, + "modified": 1701459383543 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943/description", + "content": { + "type": "STRING", + "value": "Resgate do investimento staking de 1.959.842,00 IVIP com um rendimento de +39.196,84 IVIP (2,00%) - Y12XDT27", + "revision": "3a30ad6b8b9744c5a94f60c8", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7ba9fb0d89df469797d40a64", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400 + "amount": 2400, + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c7786e076e4f4c18937c470c", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684019947547, "type": "emprestimo", @@ -82032,48 +121070,92 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6263a2e550c74dd791ad83dc", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "386e6b34e68b4008a2477bab", + "revision_nr": 1, + "created": 1701459383543, + "modified": 1701459383543 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "10aa35f00f7e472c939923b7", + "revision_nr": 1, + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1a9f8bf794bc4d7b891abc0f", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400 + "amount": 2400, + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "746e1b0919bc41219ff5b41c", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684019947547, "type": "emprestimo", @@ -82081,48 +121163,92 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "781ce9f5e6334d2183a73ff6", + "revision_nr": 1, + "created": 1701459383543, + "modified": 1701459383543 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "f270022244ed461cb71a8987", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "158829292bbf4183b18feb04", + "revision_nr": 1, + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a4a279cd8d484885839eab87", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400 + "amount": 2400, + "date_created": { + "type": 6, + "value": 1701459383543 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fba2363dde6e4a22b2a4e51b", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684019947547, "type": "emprestimo", @@ -82130,48 +121256,92 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1701459383543 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + "date_last_updated": { + "type": 6, + "value": 1701459383543 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383543 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "220c445aa714479f9f33eff1", + "revision_nr": 1, + "created": 1701459383543, + "modified": 1701459383543 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "68fc1fc7a3f24812b49dde61", + "revision_nr": 1, + "created": 1701459383543, + "modified": 1701459383543 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "80ee8f03519845b4a5c2e3ed", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "881b40e95a284c5aa8fedd94", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383543, + "modified": 1701459383543 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400 + "amount": 2400, + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dab0ac0252644ea08581c9f7", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684019947547, "type": "emprestimo", @@ -82179,48 +121349,92 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "32f36d313c2e44c4bf695038", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "b0e9ab35dea04cc0b00d53f3", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "f759622a07414019b3518aed", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7741932027e94ae1918163cb", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400 + "amount": 2400, + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "65fd333f90d04bd6a0b7b8f7", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684019947547, "type": "emprestimo", @@ -82228,48 +121442,92 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6facab474ff94921a55ec915", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "781613cf58834bb386a95388", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "ed1f51951448404ab18c5004", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bdd3db2fc8244c67af8f4504", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400 + "amount": 2400, + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3bb1b7e549fb4a28999b98c1", "revision_nr": 1, - "created": 1700748395524, - "modified": 1700748395524 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684019947547, "type": "emprestimo", @@ -82277,48 +121535,92 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "08e86a65eb514639b40863b0", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "e26eb9fc78a042ac9431e139", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "f822ac2ec9024d5ebbfdbf44", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0709ec91140540dcb73cd258", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400 + "amount": 2400, + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "87aa1d31ca524a568cf4b5d3", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684019947547, "type": "emprestimo", @@ -82326,48 +121628,92 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0fb076e35aef4b11920667a6", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "a092322e287a43c38d28b28e", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "36942e5c179044d4958edd61", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ecd7508afc754d00a75e26f4", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400 + "amount": 2400, + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d9cbeda863bc427a99b09506", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684019947547, "type": "emprestimo", @@ -82375,48 +121721,92 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2c3a18b667f54e36a3d1cf70", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "ae806d9e5e734ea49cf38310", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "1cc3cbdbac3347d29a219133", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "00314bedd3254edcb6d46fde", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400 + "amount": 2400, + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c556992fd65f4149834153c1", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684019947547, "type": "emprestimo", @@ -82424,48 +121814,92 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e1f01192129449f3adee9df5", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "2314ef263b1f4e0286459927", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "debab021e04640dbbc90f51d", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9964d6be33a4461d9a76bcc2", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400 + "amount": 2400, + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0512af2defed47cd8da9bb26", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684019947547, "type": "emprestimo", @@ -82473,48 +121907,92 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "dc7517a1cbfa43fd8756cef0", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "331a67ee6b0647229170d5c9", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "b37cebafc7394affad279451", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "941bc1d03b204ef8a9d09c11", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400 + "amount": 2400, + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "72b296aba8114df0b5a89a90", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684019947547, "type": "emprestimo", @@ -82522,48 +122000,92 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e4b0a5baea854a18b94f2cb5", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "0f3e898a2951428d80c05797", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "0aa4942c333c4705bb107343", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "47d14825872046c9ae96ad6e", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400 + "amount": 2400, + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f9c3ae3ee1bc40e4a526fae5", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547", "content": { - "type": 1, + "type": "OBJECT", "value": { "id": 1684019947547, "type": "emprestimo", @@ -82571,163 +122093,246 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid", - "description": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00" + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ecc3c3859dd64823a33fcaaa", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", + "revision": "7c53b7aca2f74052a908d7c2", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "fc9dcd3d433e496d99a37c84", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "17540d897909476ea43226a0", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "762ffbba0f9f440bbf3fd107", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 10000, "limitUsed": 10000, "analysisRequested": "2023-05-13T11:07:07.691Z", - "lastReview": "2023-05-13T19:52:36.024Z" + "lastReview": "2023-05-13T19:52:36.024Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5d8bc489acbe43cfa86d463e", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677844580252, "dateValidity": 1678311387021, "totalValue": 3272.893, "currencyType": "USD", - "balancesModificacao": "2023-10-07T03:00:00.000Z" + "balancesModificacao": "2023-10-07T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e514a003afe14cc58e3ae92c", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/139283242086295280/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4f77ad12c7984f6eb0fc18aa", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/139283242086295280/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4f1f934991db404aa130c789", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/139283242086295280", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1696229796136, "dateValidity": 1696229796165, "currencyType": "USD", - "balancesModificacao": "2023-10-02T03:00:00.000Z" + "balancesModificacao": "2023-10-02T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "cefb53e139e041899057dc8e", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "220191.58000000", "symbol": "IVIP", - "value": 29.61 + "value": 29.61, + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "642b71238b8f495ba53ab859", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ade953b1ba004dcc92bb3844", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } + }, + "revision": "6bfa4b82475e4692bc347c09", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -82736,9 +122341,18 @@ "total_amount": 1600, "history_id": 1685110971189, "id": 1685110971189, - "date_created": "2023-05-26T14:22:51.189Z", - "date_last_updated": "2023-05-26T23:32:38.384Z", - "date_of_expiration": "2023-06-25T14:22:51.189Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -82746,30 +122360,29 @@ "date_approved": "2023-05-26T23:32:38.384Z", "money_release_date": "2023-05-26T23:32:38.384Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 1.600,00 para a carteira iVip 1404.9875.6876.3405-00" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "066ddfd74dcc4302bed95e50", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { - "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685727229028/details/costs", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 1404.9875.6876.3405-00", + "revision": "52c03199f968475a972b175f", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685727229028/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1685727229028, @@ -82780,18 +122393,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "481498b2583a4dc3a12df199", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685727229028", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -82801,9 +122427,18 @@ "original_amount": 5398200, "total_amount": 5398200, "id": 1685727229028, - "date_created": "2023-06-02T17:33:49.028Z", - "date_last_updated": "2023-06-02T17:33:49.028Z", - "date_of_expiration": "2023-06-02T17:33:49.028Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -82812,27 +122447,16 @@ "history_id": 1685727229028, "description": "Compra de 5.398.200,00 IVIP por 1.600,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "17b3d29d071741bfa39c9219", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1687318007517/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1687318007517/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1687318007517, @@ -82843,18 +122467,31 @@ "overpaid_amount": 0, "installment_amount": 5000000, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a4cb67d5c2f140e3b026a3a6", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1687318007517", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -82863,38 +122500,46 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1687318007517, - "date_created": "2023-06-21T03:26:47.517Z", - "date_last_updated": "2023-06-21T03:26:47.517Z", - "date_of_expiration": "2025-06-21T03:26:47.517Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1687318007517, - "description": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2025" + "history_id": 1687318007517 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "78ef7d6b61fd4a9c8a8d7952", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { - "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1688408922424/details/costs", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1687318007517/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2025", + "revision": "ae6d76f4d4e446a2ba443fba", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1688408922424/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1688408922424, @@ -82905,18 +122550,31 @@ "overpaid_amount": 0, "installment_amount": 320960, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "96128f9e9d8d476386e1062a", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1688408922424", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -82925,38 +122583,46 @@ "original_amount": 320960, "total_amount": 320960, "id": 1688408922424, - "date_created": "2023-07-03T18:28:42.424Z", - "date_last_updated": "2023-07-03T18:28:42.424Z", - "date_of_expiration": "2023-08-03T18:28:42.424Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", - "history_id": 1688408922424, - "description": "Investimento de 320.960,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023" + "history_id": 1688408922424 }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7cbf84a8f2784553912c2f4a", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { - "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691087650613/details/costs", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1688408922424/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 320.960,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", + "revision": "46451838774c4d6386dd71c8", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691087650613/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1691087650613, @@ -82967,18 +122633,31 @@ "overpaid_amount": 0, "installment_amount": 320960, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6c4c50e42db04e6a93b810b5", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691087650613", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -82987,39 +122666,47 @@ "original_amount": 327379.2, "total_amount": 327379.2, "id": 1691087650613, - "date_created": "2023-08-03T18:34:10.613Z", - "date_last_updated": "2023-08-03T18:34:10.613Z", - "date_of_expiration": "2023-08-03T18:34:10.613Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP", "history_id": 1691087650613, - "wasDebited": true, - "description": "Resgate do investimento staking de 320.960,00 IVIP com um rendimento de +6.419,2 IVIP (2,00%)" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d99b610bce324fb3b8b3b2f1", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { - "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429/details/costs", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691087650613/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 320.960,00 IVIP com um rendimento de +6.419,2 IVIP (2,00%)", + "revision": "825935c0a37444179960f504", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1691114916429, "net_received_amount": 0, @@ -83029,18 +122716,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1691114916429" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f72f04caede0483ebf752f16", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1691114916429", + "revision": "40d4909dcefa4809a7808775", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -83049,38 +122759,46 @@ "total_amount": 366669, "id": 1691114916429, "history_id": 1691114916429, - "date_created": "2023-08-04T02:08:36.429Z", - "date_last_updated": "2023-08-04T02:08:36.429Z", - "date_of_expiration": "2023-09-04T02:08:36.390Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 366.669,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "50e6eeed88cf40618fc73593", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { - "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003/details/costs", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 366.669,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", + "revision": "29dfd5bd0b024fda9afbbb88", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693793335003, "net_received_amount": 0, @@ -83090,18 +122808,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1693793335003" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "abd1b6f52cb54f2db83e4f68", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1693793335003", + "revision": "7b3f747ebc564a1fae198f91", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -83110,38 +122851,46 @@ "total_amount": 374002.38, "id": "1693793335003", "history_id": "1693793335003", - "date_created": "2023-09-04T02:08:55.003Z", - "date_last_updated": "2023-09-04T02:08:55.003Z", - "date_of_expiration": "2023-09-04T02:08:55.003Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 366.669,00 IVIP com um rendimento de +7.333,38 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8fcf6aad25d14902b8012331", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { - "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322/details/costs", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 366.669,00 IVIP com um rendimento de +7.333,38 IVIP (2,00%) - Y12XDT27", + "revision": "841d51ba770247f4a8b1a352", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693793542322, "net_received_amount": 0, @@ -83151,18 +122900,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1693793542322" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2b2c5d9f410d45ca99ece59c", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1693793542322", + "revision": "a68273ee28b745009c82c09d", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -83171,38 +122943,46 @@ "total_amount": 411950, "id": "1693793542322", "history_id": "1693793542322", - "date_created": "2023-09-04T02:12:22.322Z", - "date_last_updated": "2023-09-04T02:12:22.322Z", - "date_of_expiration": "2023-10-04T02:12:22.321Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 411.950,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "c945d22f931041dea9a5898d", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { - "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903/details/costs", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Investimento de 411.950,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", + "revision": "28f097f50bb4473c8991a210", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696395329903, "net_received_amount": 0, @@ -83212,18 +122992,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1696395329903" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4ab853bd867043fb94369fcd", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1696395329903", + "revision": "23bae78fe4024e5798d286fa", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -83233,38 +123036,46 @@ "total_amount": 420189, "id": "1696395329903", "history_id": "1696395329903", - "date_created": "2023-10-04T04:55:29.903Z", - "date_last_updated": "2023-10-04T04:55:29.903Z", - "date_of_expiration": "2023-10-04T04:55:29.903Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Resgate do investimento staking de 411.950,00 IVIP com um rendimento de +8.239,00 IVIP (2,00%) - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f32ba1e0d19a49848d898915", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { - "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028/details/costs", + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Resgate do investimento staking de 411.950,00 IVIP com um rendimento de +8.239,00 IVIP (2,00%) - Y12XDT27", + "revision": "37ec442b5d8541d1ad045f78", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1696472422028, "net_received_amount": 0, @@ -83274,18 +123085,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1696472422028" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2cf28b4e444349398da7252f", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1696472422028", + "revision": "f745af9f766c411899ab3585", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -83295,128 +123129,186 @@ "total_amount": 200000, "id": "1696472422028", "history_id": "1696472422028", - "date_created": "2023-10-05T02:20:22.028Z", - "date_last_updated": "2023-10-05T02:20:22.028Z", - "date_of_expiration": "2023-11-05T02:20:21.996Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 200.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "81870e10d0be416098cc86cd", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028/description", + "content": { + "type": "STRING", + "value": "Investimento de 200.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", + "revision": "756851b5642845e8a2821730", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "911f552953744f3fb32e9e9a", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2cb7e8db6a714389aa35ca78", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ca2cecce24a64ae99d4e0db5", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1684358980805, "dateValidity": 1684358980805, "totalValue": 82.79825942258582, "currencyType": "USD", - "balancesModificacao": "2023-10-07T03:00:00.000Z" + "balancesModificacao": "2023-10-07T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "1c22897041da46128ceb8fcd", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/balances/IVIP", "content": { - "type": 1, + "type": "OBJECT", "value": { "available": "2112486.00000000", "symbol": "IVIP", - "value": 239.28 + "value": 239.28, + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "48dc5abbaf7e4cb2b15acfdf", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d07f88947cba4da59882ce06", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825/details", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "OBJECT", + "value": { + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } + }, + "revision": "5820507bbbaf42088add2240", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -83425,9 +123317,18 @@ "total_amount": 5000, "history_id": 1689206251825, "id": 1689206251825, - "date_created": "2023-07-12T23:57:31.825Z", - "date_last_updated": "2023-07-13T00:14:19.742Z", - "date_of_expiration": "2023-08-11T23:57:31.825Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -83435,30 +123336,29 @@ "date_approved": "2023-07-13T00:14:19.742Z", "money_release_date": "2023-07-13T00:14:19.742Z", "money_release_status": "approved", - "wasDebited": true, - "description": "Deposito de um valor R$ 5.000,00 para a carteira iVip 1429.7769.3689.8883-40" + "wasDebited": true }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3b3eac34efd845caaa963a88", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { - "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689208259450/details/costs", + "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor R$ 5.000,00 para a carteira iVip 1429.7769.3689.8883-40", + "revision": "a63ecc8965064f7eb02d580c", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689208259450/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "payment_method_reference_id": 1689208259450, @@ -83469,18 +123369,31 @@ "overpaid_amount": 0, "installment_amount": 0, "financial_institution": "ivipcoin", - "external_resource_url": "" + "external_resource_url": "", + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "730ca85515ad400ba3a8031a", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689208259450", "content": { - "type": 1, + "type": "OBJECT", "value": { "wasDebited": true, "type": "swap", @@ -83490,9 +123403,18 @@ "original_amount": 2112486, "total_amount": 2112486, "id": 1689208259450, - "date_created": "2023-07-13T00:30:59.450Z", - "date_last_updated": "2023-07-13T00:30:59.450Z", - "date_of_expiration": "2023-07-13T00:30:59.450Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -83501,182 +123423,231 @@ "history_id": 1689208259450, "description": "Compra de 2.112.486,00 IVIP por 5.000,00 BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e1641a0710554cd48aa85bde", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e5c79851522748fd81c16af3", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "16cef4248a4d4e5b92e16d26", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "13c1bc7458f443d4953cfaf1", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1689206116426, "dateValidity": 1689206116426, "totalValue": 1030, "currencyType": "USD", - "balancesModificacao": "2023-10-12T03:00:00.000Z" + "balancesModificacao": "2023-10-12T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5aa07e57a6d44e73899d4186", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/145100373829536670/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7dd75cd73e244a41921ace2f", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/145100373829536670/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d4a27686478a490eb043de29", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/145100373829536670", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1679078857171, "dateValidity": 1679078857171, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": "2023-10-07T03:00:00.000Z" + "balancesModificacao": "2023-10-07T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d01ae268adf14a14bcd4c61c", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146025594361679260/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ea4e9284fddb41a4bf25e971", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146025594361679260/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "81671ed0aa204db28c2662f7", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146025594361679260", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1679356008303, "dateValidity": 1679356008303, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4538b3c02989462e9a633db7", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3fbfed37d81d441689d23539", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-17T18:47:13.538Z" + ".val": "2023-10-17T18:47:13.538Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "23025c5ff9104a64a3b8f70f", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694976433538, "net_received_amount": 0, @@ -83686,18 +123657,41 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/146193775313990370/history/1694976433538" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e09a0151b6cd409c8ebd990d", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/146193775313990370/history/1694976433538", + "revision": "58aa158cdc3a4c61b47b19f5", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -83706,260 +123700,417 @@ "total_amount": 20, "id": "1694976433538", "history_id": "1694976433538", - "date_created": "2023-09-17T18:47:13.538Z", - "date_last_updated": "2023-09-17T18:47:13.538Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "pending_waiting_payment", - "description": "Deposito de um valor 20,00 BRL para a carteira iVip 1461.9377.5313.9903-70" + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "e2fc06836bbd4146b543dc1a", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor 20,00 BRL para a carteira iVip 1461.9377.5313.9903-70", + "revision": "d3d7b2c812124e2d8d28851a", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "d8c27c2efa8b453aa489e6e7", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a7ad1ae7a888499ab8625995", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ab727bec5653498581970a42", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1694975442899, "dateValidity": 1694975443028, "currencyType": "USD", - "balancesModificacao": "2023-10-10T03:00:00.000Z" + "balancesModificacao": "2023-10-10T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "ddaf5f2337994264ac8e5597", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146193999422064450/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fa28e2976444458a80aadf47", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146193999422064450/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "189623d5284e43dca92203f2", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146193999422064450/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0639827b748b4673a8721c74", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146193999422064450/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a0652f789ad848f19f868a24", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146193999422064450", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677393088450, "dateValidity": 1677393088450, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "fc70784bf3024aa6a350779e", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146386157285818500/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4516ffe90460452fab0bd132", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146386157285818500/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "80d43a1a8da04212aab8d674", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/146386157285818500", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1677820583824, "dateValidity": 1677838584623, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "130d6c25a4ac44548d6fd3d3", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4fffc7cc125b49938a117d28", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/costs[0]", "content": { - "type": 1, + "type": "OBJECT", "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.9900000000000001 + "amount": 0.9900000000000001, + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3d443f743a354b90a5480f23", "revision_nr": 1, - "created": 1700748395525, - "modified": 1700748395525 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info/payer", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f8bda5865f1f459392d4ee0b", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info/collector", "content": { - "type": 1, + "type": "OBJECT", "value": { - "account_holder_name": "IVIPCOIN LTDA" + "account_holder_name": "IVIPCOIN LTDA", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a3599e254c6a431187e62a0c", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "2f02411b49904a96ae81be60", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "installments": 1, "net_received_amount": 0, "total_paid_amount": 100.99, "overpaid_amount": 0, "installment_amount": 0, - "qr_code": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter5566184887363046119", - "ticket_url": "https://www.mercadopago.com.br/payments/55661848873/ticket?caller_id=1310149122&hash=e13553d1-ab9f-45c3-ab92-c23df003b316", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIxklEQVR42u3dW27kNhAFUO5A+9+ldqAgwWDcYt2inGSAZMSjD8N2d0uH/Veo17h+o+sctLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/Xjvm6/jxv69Xp09Pb/nzdrePnT9+/PW/9KAfb6mfnRi0tLS0tLS0tLS0tLSbaI9C+fztvAO+7nT+PNBxf+zxeaDpBOW4t49lFS0tLS0tLS0tLS0t7QbazwCyGqdI8MudT3COmDyc8Om5hUFLS0tLS0tLS0tLS7ut9rrHiV/P+SyGrDm9+mr+87pHm7S0tLS0tLS0tLS0tLRzNFcVJQicqi5v13TclC2c3kxLS0tLS0tLS0tLS7u3Ngd36bFnaVeb7l5eGE+ydfEnLS0tLS0tLS0tLS3t+7VpSsl/8ONfzFShpaWlpaWlpaWlpaX9nbXrq40EP8PL8x4O1vfloSVNOWa5aGlpaWlpaWlpaWlp365NRZNnl787Fy1xKRYtB5qGTl5l/OQyu0dLS0tLS0tLS0tLS/s+bZqpX0aQXPdOtdQSd3WD+tMs/yusZhvdkH9aWlpaWlpaWlpaWtp3a9M+tTKeP0WCdTL/p+JaJAXLhMp6PlpaWlpaWlpaWlpa2n20JSZsRz5eJbtX7n6G7F5y1+8hP42WlpaWlpaWlpaWlnYD7Xqp2qRIh0xPbF9t84YJREtLS0tLS0tLS0tLu4W2tL+lBreauitpuqtPzo28JeDMtwp4WlpaWlpaWlpaWlra12tzSJfmhtQl1qnBbZHEm2o82y68g5aWlpaWlpaWlpaWdidt+i0PFLm6+SJX2KA9FWHeyjHLWJIR8LS0tLS0tLS0tLS0tFtop0RcKq6s5FIbeS22W6cCzul9Jaw9aGlpaWlpaWlpaWlpt9O226jTMJJ0vuJJceLolq+NUJ1JS0tLS0tLS0tLS0u7lTa1xKXgLg/gb5N9YzGSMoWmz7vhaGlpaWlpaWlpaWlpX6UtY0RS+m3cb3KWmsyQkusHRz5VbNLS0tLS0tLS0tLS0u6oTbm1Zgxkvh7Hl5ThlMcib0hLS0tLS0tLS0tLS7uT9pa/Sy1x7ZrqHGM2icI06ySlAsNESVpaWlpaWlpaWlpa2ndrz9yklu9UM3llT9qqwa3L343pLs8xLy0tLS0tLS0tLS0t7Xu0tzhx2oRWKjHHvYXtDJ5RutxKiFhnUE5B5UPMS0tLS0tLS0tLS0tL+yJt7k9r/ixjRL7XSdfypshyeoGWlpaWlpaWlpaWlnYL7VNe7gi3axJxeV7JVTrf2gLO6RuhpaWlpaWlpaWlpaXdQpsfNsLwxxT6pa65NhU44Ztk37IbjpaWlpaWlpaWlpaW9o3aEUbsj/znFOtN8V+JOx/zd0Vbv0NaWlpaWlpaWlpaWtottGkESUrnPc3tv40ladvk0uK29uG0tLS0tLS0tLS0tLTv1x6hfDL1sV0lEZdLL2sjXAovF+MnL1paWlpaWlpaWlpa2r20zT3TFuxSG3nmrrnS/nZ2GcTHjjtaWlpaWlpaWlpaWtq3a9NkkLJy7SypuzQpsm2Ty+1v6bnjcaYKLS0tLS0tLS0tLS3t27Sju6aKyDKC5OgmnNQzpwg0V11OBZe0tLS0tLS0tLS0tLQbaEs0dy4ptZnt6q5Uibmu4pyCT1paWlpaWlpaWlpa2p20V7nx1A2XR5Uc3XNSBDrl+VZfwUMukpaWlpaWlpaWlpaW9lXa6/6OM8wmuUJZ5AhxZ5MefKqwTL/R0tLS0tLS0tLS0tLuo20WrS0630anbZaqpVxiXpn9rapLWlpaWlpaWlpaWlral2mvboL/Y/lk6WhrtmBPKwByyecoAyZpaWlpaWlpaWlpaWm30JZd1bXwcepjSzm4Endez0vVpuBzlOJPWlpaWlpaWlpaWlranbQ16ktTStYJwLIj+wyfGN1q7ZOWlpaWlpaWlpaWlnZr7ehWrl0hxrzypJF2UXYbi6bvgZaWlpaWlpaWlpaWdjttEwSmELG0xNXutZSrS0NQ0vm6WZW0tLS0tLS0tLS0tLRv1n6+N5VKNh1tizLLUXrb8oGOru5z+gQtLS0tLS0tLS0tLe27tW3727I/beSM37FYmT1l8koAWb85WlpaWlpaWlpaWlraLbQpMGwjxkUR5hG65lI9Z1qPPb16PGT3aGlpaWlpaWlpaWlpX6VNe9LKp2rur0SHacxJwre72BZBJS0tLS0tLS0tLS0t7eu1i23UzWTHfMjmpK1sijG/OVOFlpaWlpaWlpaWlpb2Zdo2sVfzbe2Ukm/MHClB5QivHrHGk5aWlpaWlpaWlpaWdgPtFEo2JZCLR5y54HL6CtIMyvSl0dLS0tLS0tLS0tLS7qNNDWnT59NU/24Afwwln7ZlX4tcIi0tLS0tLS0tLS0t7fu1TQy3HkbS1mmWCLQa2xuUWlBaWlpaWlpaWlpaWtoNtG37W44YU21kXWxdijBTVFr75765s5uWlpaWlpaWlpaWlvaN2tHNh2xCyacwtNZVTrJ1KElLS0tLS0tLS0tLS7uPNl2L4Y9tiHiUz+aEXTME5TPtN120tLS0tLS0tLS0tLTv1o75Wg3qn4LAVHBZQslUdVnd/2CqPy0tLS0tLS0tLS0t7Vu0Rwggm/LJsii7ni8VV5bzTVHp34kiaWlpaWlpaWlpaWlpX6ld1FqO0Op2hM9WSj7p6gRp7xotLS0tLS0tLS0tLe3e2jTycQr42mUAeWdbM8a/nJSWlpaWlpaWlpaWlnZvbTti/7on4s4wXySFg7V1rg0bH3Z209LS0tLS0tLS0tLSvlK7xufosM39jfvu61VfXOmue551SUtLS0tLS0tLS0tL+z5tLXzMTWpnSAA+FmF+5u+a0LQ0xy2rLmlpaWlpaWlpaWlpad+m/f9ftLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/TPsHcCgepoe7LrMAAAAASUVORK5CYII=" + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "4f7cd31846194e8d861afbfa", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/qr_code", + "content": { + "type": "STRING", + "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter5566184887363046119", + "revision": "44c265386bf5423d8fe9f0e8", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/ticket_url", + "content": { + "type": "STRING", + "value": "https://www.mercadopago.com.br/payments/55661848873/ticket?caller_id=1310149122&hash=e13553d1-ab9f-45c3-ab92-c23df003b316", + "revision": "1e78962342524ec9bd0c5718", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/qr_code_base64", + "content": { + "type": "STRING", + "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIxklEQVR42u3dW27kNhAFUO5A+9+ldqAgwWDcYt2inGSAZMSjD8N2d0uH/Veo17h+o+sctLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/Xjvm6/jxv69Xp09Pb/nzdrePnT9+/PW/9KAfb6mfnRi0tLS0tLS0tLS0tLSbaI9C+fztvAO+7nT+PNBxf+zxeaDpBOW4t49lFS0tLS0tLS0tLS0t7QbazwCyGqdI8MudT3COmDyc8Om5hUFLS0tLS0tLS0tLS7ut9rrHiV/P+SyGrDm9+mr+87pHm7S0tLS0tLS0tLS0tLRzNFcVJQicqi5v13TclC2c3kxLS0tLS0tLS0tLS7u3Ngd36bFnaVeb7l5eGE+ydfEnLS0tLS0tLS0tLS3t+7VpSsl/8ONfzFShpaWlpaWlpaWlpaX9nbXrq40EP8PL8x4O1vfloSVNOWa5aGlpaWlpaWlpaWlp365NRZNnl787Fy1xKRYtB5qGTl5l/OQyu0dLS0tLS0tLS0tLS/s+bZqpX0aQXPdOtdQSd3WD+tMs/yusZhvdkH9aWlpaWlpaWlpaWtp3a9M+tTKeP0WCdTL/p+JaJAXLhMp6PlpaWlpaWlpaWlpa2n20JSZsRz5eJbtX7n6G7F5y1+8hP42WlpaWlpaWlpaWlnYD7Xqp2qRIh0xPbF9t84YJREtLS0tLS0tLS0tLu4W2tL+lBreauitpuqtPzo28JeDMtwp4WlpaWlpaWlpaWlra12tzSJfmhtQl1qnBbZHEm2o82y68g5aWlpaWlpaWlpaWdidt+i0PFLm6+SJX2KA9FWHeyjHLWJIR8LS0tLS0tLS0tLS0tFtop0RcKq6s5FIbeS22W6cCzul9Jaw9aGlpaWlpaWlpaWlpt9O226jTMJJ0vuJJceLolq+NUJ1JS0tLS0tLS0tLS0u7lTa1xKXgLg/gb5N9YzGSMoWmz7vhaGlpaWlpaWlpaWlpX6UtY0RS+m3cb3KWmsyQkusHRz5VbNLS0tLS0tLS0tLS0u6oTbm1Zgxkvh7Hl5ThlMcib0hLS0tLS0tLS0tLS7uT9pa/Sy1x7ZrqHGM2icI06ySlAsNESVpaWlpaWlpaWlpa2ndrz9yklu9UM3llT9qqwa3L343pLs8xLy0tLS0tLS0tLS0t7Xu0tzhx2oRWKjHHvYXtDJ5RutxKiFhnUE5B5UPMS0tLS0tLS0tLS0tL+yJt7k9r/ixjRL7XSdfypshyeoGWlpaWlpaWlpaWlnYL7VNe7gi3axJxeV7JVTrf2gLO6RuhpaWlpaWlpaWlpaXdQpsfNsLwxxT6pa65NhU44Ztk37IbjpaWlpaWlpaWlpaW9o3aEUbsj/znFOtN8V+JOx/zd0Vbv0NaWlpaWlpaWlpaWtottGkESUrnPc3tv40ladvk0uK29uG0tLS0tLS0tLS0tLTv1x6hfDL1sV0lEZdLL2sjXAovF+MnL1paWlpaWlpaWlpa2r20zT3TFuxSG3nmrrnS/nZ2GcTHjjtaWlpaWlpaWlpaWtq3a9NkkLJy7SypuzQpsm2Ty+1v6bnjcaYKLS0tLS0tLS0tLS3t27Sju6aKyDKC5OgmnNQzpwg0V11OBZe0tLS0tLS0tLS0tLQbaEs0dy4ptZnt6q5Uibmu4pyCT1paWlpaWlpaWlpa2p20V7nx1A2XR5Uc3XNSBDrl+VZfwUMukpaWlpaWlpaWlpaW9lXa6/6OM8wmuUJZ5AhxZ5MefKqwTL/R0tLS0tLS0tLS0tLuo20WrS0630anbZaqpVxiXpn9rapLWlpaWlpaWlpaWlral2mvboL/Y/lk6WhrtmBPKwByyecoAyZpaWlpaWlpaWlpaWm30JZd1bXwcepjSzm4Endez0vVpuBzlOJPWlpaWlpaWlpaWlranbQ16ktTStYJwLIj+wyfGN1q7ZOWlpaWlpaWlpaWlnZr7ehWrl0hxrzypJF2UXYbi6bvgZaWlpaWlpaWlpaWdjttEwSmELG0xNXutZSrS0NQ0vm6WZW0tLS0tLS0tLS0tLRv1n6+N5VKNh1tizLLUXrb8oGOru5z+gQtLS0tLS0tLS0tLe27tW3727I/beSM37FYmT1l8koAWb85WlpaWlpaWlpaWlraLbQpMGwjxkUR5hG65lI9Z1qPPb16PGT3aGlpaWlpaWlpaWlpX6VNe9LKp2rur0SHacxJwre72BZBJS0tLS0tLS0tLS0t7eu1i23UzWTHfMjmpK1sijG/OVOFlpaWlpaWlpaWlpb2Zdo2sVfzbe2Ukm/MHClB5QivHrHGk5aWlpaWlpaWlpaWdgPtFEo2JZCLR5y54HL6CtIMyvSl0dLS0tLS0tLS0tLS7qNNDWnT59NU/24Afwwln7ZlX4tcIi0tLS0tLS0tLS0t7fu1TQy3HkbS1mmWCLQa2xuUWlBaWlpaWlpaWlpaWtoNtG37W44YU21kXWxdijBTVFr75765s5uWlpaWlpaWlpaWlvaN2tHNh2xCyacwtNZVTrJ1KElLS0tLS0tLS0tLS7uPNl2L4Y9tiHiUz+aEXTME5TPtN120tLS0tLS0tLS0tLTv1o75Wg3qn4LAVHBZQslUdVnd/2CqPy0tLS0tLS0tLS0t7Vu0Rwggm/LJsii7ni8VV5bzTVHp34kiaWlpaWlpaWlpaWlpX6ld1FqO0Op2hM9WSj7p6gRp7xotLS0tLS0tLS0tLe3e2jTycQr42mUAeWdbM8a/nJSWlpaWlpaWlpaWlnZvbTti/7on4s4wXySFg7V1rg0bH3Z209LS0tLS0tLS0tLSvlK7xufosM39jfvu61VfXOmue551SUtLS0tLS0tLS0tL+z5tLXzMTWpnSAA+FmF+5u+a0LQ0xy2rLmlpaWlpaWlpaWlpad+m/f9ftLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/TPsHcCgepoe7LrMAAAAASUVORK5CYII=", + "revision": "75574ce6d20748dabc3c0c66", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/costs", + "content": { + "type": "ARRAY", + "value": {}, + "revision": "c086cae4e2a143b0bdaad19f", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -83968,228 +124119,308 @@ "total_amount": 100.99, "history_id": 1678652275580, "id": 55661848873, - "date_created": "2023-03-12T16:17:56.428-04:00", - "date_last_updated": "2023-03-13T16:21:02.000-04:00", - "date_of_expiration": "2023-03-13T16:17:56.084-04:00", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", "status_detail": "expired", - "currency_id": "BRL", - "description": "Deposito de um valor R$ 100,00 para a carteira iVip 1470.0699.3684.7822-00" + "currency_id": "BRL" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bd3dabff69f5401dad65ce51", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/description", + "content": { + "type": "STRING", + "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1470.0699.3684.7822-00", + "revision": "6c2de9afa762481586f78f71", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "733ea9518f794e9c8d8a1d86", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678651931786, "dateValidity": 1678669931823, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "bde0916fe7494e64a01e1d47", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/147062074886654460/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0c6ec732da524a6ca4c629ee", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/147062074886654460/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "a8afe19aa7164c039b23dcc2", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/147062074886654460/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "735fcca5f23f4bbea0862ea7", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/147062074886654460/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "490a0d114f4b496eba6090c4", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/147062074886654460", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1685823720836, "dateValidity": 1685823720836, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z" + "balancesModificacao": "2023-10-09T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "3903230eb15e496481c64c1f", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/149922673320977100/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "24578b6ab7ab4e989a4eee69", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/149922673320977100/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "40d5cca728224ef38d5e3c92", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/149922673320977100", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1678155962477, "dateValidity": 1678510544290, "totalValue": 0, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "971b63dd30c14615a56c32f5", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/151721738402511580/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "011258245d714241b6777ad1", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/151721738402511580/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "f146be9342c54ef49450e581", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/151721738402511580", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1696981676486, "dateValidity": 1696981676516, - "currencyType": "USD" + "currencyType": "USD", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0af41e29bde844e1ac6b75dd", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/balances", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "6a527785dbb74a62a1a589f3", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/date_of_expiration", "content": { - "type": 1, + "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-05T23:48:45.001Z" + ".val": "2023-10-05T23:48:45.001Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 - } - }, - { - "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/details/costs", - "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "7d346e6dcab24c39a7c53b7f", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1693957725002, "net_received_amount": 0, @@ -84199,18 +124430,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/152557644739400160/history/1693957725002" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "0005ac4874304d25a6b610b1", + "revision_nr": 1, + "created": 1701459383544, + "modified": 1701459383544 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/152557644739400160/history/1693957725002", + "revision": "bc16d7a1b1cc46ef9e076534", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -84219,8 +124473,14 @@ "total_amount": 1000, "id": "1693957725002", "history_id": "1693957725002", - "date_created": "2023-09-05T23:48:45.002Z", - "date_last_updated": "2023-09-06T00:56:31.127Z", + "date_created": { + "type": 6, + "value": 1701459383544 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383544 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84231,29 +124491,32 @@ "money_release_date": "2023-09-06T00:56:31.127Z", "money_release_status": "approved", "wasDebited": true, - "description": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 1525.5764.4739.4001-60" + "date_of_expiration": { + "type": 6, + "value": 1701459383544 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "8e404c332eb94794b6518051", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { - "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430/details/costs", + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/description", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "type": "STRING", + "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 1525.5764.4739.4001-60", + "revision": "1dc40266c303430bbadee4a0", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383544, + "modified": 1701459383544 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430/details", "content": { - "type": 1, + "type": "OBJECT", "value": { "payment_method_reference_id": 1694615393430, "net_received_amount": 0, @@ -84263,18 +124526,41 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/152557644739400160/history/1694615393430" + "costs": [], + "date_created": { + "type": 6, + "value": 1701459383545 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383545 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383545 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "abd6ab102afe4952853e7ba1", + "revision_nr": 1, + "created": 1701459383545, + "modified": 1701459383545 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430/details/external_resource_url", + "content": { + "type": "STRING", + "value": "https://ivipcoin-api.com/v1/finances/info_by/152557644739400160/history/1694615393430", + "revision": "70954db8e4cf44898496ebaf", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383545, + "modified": 1701459383545 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430", "content": { - "type": 1, + "type": "OBJECT", "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -84283,95 +124569,127 @@ "total_amount": 1000, "id": "1694615393430", "history_id": "1694615393430", - "date_created": "2023-09-13T14:29:53.430Z", - "date_last_updated": "2023-09-13T14:29:53.430Z", - "date_of_expiration": "2025-09-13T14:29:53.429Z", + "date_created": { + "type": 6, + "value": 1701459383545 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383545 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383545 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "accredited", - "description": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 13/09/2025 - P9A02KSL" + "status_detail": "accredited" }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "5fbb2f7c3db943ae84443f56", + "revision_nr": 1, + "created": 1701459383545, + "modified": 1701459383545 + } + }, + { + "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430/description", + "content": { + "type": "STRING", + "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 13/09/2025 - P9A02KSL", + "revision": "cefde908d2954ef1b399e338", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383545, + "modified": 1701459383545 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "9fa8de725961411db834e6b7", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383545, + "modified": 1701459383545 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/credit/invoices", "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "074957312b644224b8c5d132", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383545, + "modified": 1701459383545 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/credit", "content": { - "type": 1, + "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0 + "limitUsed": 0, + "date_created": { + "type": 6, + "value": 1701459383545 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383545 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383545 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "baab15a918a04c078b8a5774", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383545, + "modified": 1701459383545 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160", "content": { - "type": 1, + "type": "OBJECT", "value": { "dataModificacao": 1693436516681, "dateValidity": 1693436516720, "currencyType": "USD", - "balancesModificacao": "2023-09-19T03:00:00.000Z" + "balancesModificacao": "2023-09-19T03:00:00.000Z", + "date_created": { + "type": 6, + "value": 1701459383545 + }, + "date_last_updated": { + "type": 6, + "value": 1701459383545 + }, + "date_of_expiration": { + "type": 6, + "value": 1701459383545 + } }, - "revision": "lnt02q7v0007oohx37705737", + "revision": "eaf3a428c4af4a1f8a562b4f", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383545, + "modified": 1701459383545 } }, { "path": "ivipcoin-db::__movement_wallet__", "content": { - "type": 1, - "value": {}, - "revision": "lnt02q7v0007oohx37705737", - "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 - } - }, - { - "path": "", - "content": { - "type": 1, + "type": "OBJECT", "value": {}, - "revision": "lnt02q7v0007oohx37705737", + "revision": "533a7dba9bf4449d9b381117", "revision_nr": 1, - "created": 1700748395526, - "modified": 1700748395526 + "created": 1701459383545, + "modified": 1701459383545 } } ] \ No newline at end of file diff --git a/test/resultWithPath.ts b/test/resultWithPath.ts index 54c8ee30..de890fcd 100644 --- a/test/resultWithPath.ts +++ b/test/resultWithPath.ts @@ -8,7 +8,7 @@ type Result = { path: string; content: { type: NodeValueType; - value: Record | string | number; + value: Record | string | number | any; revision: string; revision_nr: number; created: number; @@ -78,6 +78,7 @@ function transform(json: Record, prefix: string = ""): Result[] modified: Date.now(), }, }); + // console.log(currentValue, "string"); } if (Array.isArray(currentValue) && currentValue.length > 0 && currentValue.length <= 49) { @@ -114,20 +115,53 @@ function transform(json: Record, prefix: string = ""): Result[] // Adiciona um único resultado para chaves não objeto if (Object.keys(nonObjectKeys).length > 0) { - const nonObjectResult: Result = { - path: `${prefix.replace(/^\//, "")}`, - content: { - type: getType(nonObjectKeys), - value: otherObject as any, - revision: generateShortUUID(), - revision_nr: 1, - created: Date.now(), - modified: Date.now(), - }, - }; - if (nonObjectResult.path) { - results.push(nonObjectResult); + if (typeof otherObject === "object" && otherObject !== null) { + const nonObjectResult: Result = { + path: `${prefix.replace(/^\//, "")}`, + content: { + type: getType(nonObjectKeys), + value: filterKeysFromObject(otherObject, ["date_created", "date_last_updated", "date_of_expiration"]), + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + + nonObjectResult.content.value.date_created = { + type: 6, + value: Date.now(), + }; + + nonObjectResult.content.value.date_last_updated = { + type: 6, + value: Date.now(), + }; + + nonObjectResult.content.value.date_of_expiration = { + type: 6, + value: Date.now(), + }; + + if (nonObjectResult.path) { + results.push(nonObjectResult); + } + } else { + console.error("otherObject is not an object"); + } + } + + function filterKeysFromObject(obj, keysToFilter) { + const filteredObject = {}; + for (const key in obj) { + if (obj.history_id !== undefined) { + if (!keysToFilter.includes(key)) { + filteredObject[key] = obj[key]; + } + } + return obj; } + return filteredObject; } // Se não há chaves não objeto, adiciona um resultado com objeto vazio From e190af1f6adb7229a79f0aaed30a853726552bea Mon Sep 17 00:00:00 2001 From: Pedro Henrique Feitosa <50965091+pedrofeitosa97@users.noreply.github.com> Date: Fri, 1 Dec 2023 18:01:26 -0300 Subject: [PATCH 20/36] Feat: Added CheckIsValidDate Logic --- test/exemple2.ts | 229 + test/outputResultWithPathJSON.json | 75658 ++++++++------------------- test/resultWithPath.ts | 44 +- 3 files changed, 21533 insertions(+), 54398 deletions(-) create mode 100644 test/exemple2.ts diff --git a/test/exemple2.ts b/test/exemple2.ts new file mode 100644 index 00000000..7d185bef --- /dev/null +++ b/test/exemple2.ts @@ -0,0 +1,229 @@ +import fs from "fs"; +import path from "path"; +import { randomUUID } from "crypto"; + +type NodeValueType = keyof typeof nodeValueTypes; + +type Result = { + path: string; + content: { + type: NodeValueType; + value: Record | string | number | any; + revision: string; + revision_nr: number; + created: number; + modified: number; + }; +}; + +const nodeValueTypes = { + EMPTY: 0, + OBJECT: 1, + ARRAY: 2, + NUMBER: 3, + BOOLEAN: 4, + STRING: 5, + DATETIME: 6, + BIGINT: 7, + BINARY: 8, + REFERENCE: 9, +} as const; + +function generateShortUUID(): string { + const fullUUID = randomUUID(); + const shortUUID = fullUUID.replace(/-/g, "").slice(0, 24); + return shortUUID; +} + +function getType(value: unknown): NodeValueType { + if (Array.isArray(value)) { + return "ARRAY"; + } else if (value && typeof value === "object") { + return "OBJECT"; + } else if (typeof value === "number") { + return "NUMBER"; + } else if (typeof value === "boolean") { + return "BOOLEAN"; + } else if (typeof value === "string") { + return "STRING"; + } else if (typeof value === "bigint") { + return "BIGINT"; + } else if (typeof value === "object" && (value as any).type === 6) { + return "DATETIME"; + } else { + return "EMPTY"; + } +} + +function transform(json: Record, prefix: string = ""): Result[] { + const results: Result[] = []; + const nonObjectKeys: Record = {}; + const arrayResults: Result[] = []; + let otherObject; + + for (const key in json) { + const currentPath = `${prefix.replace(/^\//, "")}/${key.replace(/\*\*/g, "")}`; + const currentValue = json[key]; + const valueType = getType(currentValue); + + if (typeof currentValue === "string" && currentValue.length >= 50) { + arrayResults.push({ + path: currentPath, + content: { + type: valueType, + value: currentValue, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }); + // console.log(currentValue, "string"); + } + + if (Array.isArray(currentValue) && currentValue.length > 0 && currentValue.length <= 49) { + // Se for um array com valores, itera por cada elemento + for (let i = 0; i < currentValue.length; i++) { + results.push(...transform(currentValue[i] as Record, `${currentPath}[${i}]`)); + } + // Adiciona um resultado para o array vazio + arrayResults.push({ + path: currentPath, + content: { + type: "ARRAY", + value: {}, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }); + } else if (valueType === "OBJECT") { + results.push(...transform(currentValue as unknown as Record, currentPath)); + } else { + nonObjectKeys[key] = currentValue; + let ob = nonObjectKeys; + otherObject = Object.entries(ob) + .filter(([key, value]) => typeof value !== "string" || value.length < 49) + .reduce((acc, [key, value]) => { + acc[key] = value; + return acc; + }, {} as Record); + } + } + + // Adiciona um único resultado para chaves não objeto + + if (Object.keys(nonObjectKeys).length > 0) { + if (typeof otherObject === "object" && otherObject !== null) { + const nonObjectResult: Result = { + path: `${prefix.replace(/^\//, "")}`, + content: { + type: getType(nonObjectKeys), + value: filterKeysFromObject(otherObject, ["date_created", "date_last_updated", "date_of_expiration"]), + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + + if (nonObjectResult.content.value.history_id !== undefined) { + nonObjectResult.content.value.date_created = { + type: 6, + value: Date.now(), + }; + + nonObjectResult.content.value.date_last_updated = { + type: 6, + value: Date.now(), + }; + + nonObjectResult.content.value.date_of_expiration = { + type: 6, + value: Date.now(), + }; + } + + if (nonObjectResult.path) { + results.push(nonObjectResult); + } + } else { + console.error("otherObject is not an object"); + } + } + + function filterKeysFromObject(obj, keysToFilter) { + const filteredObject = {}; + for (const key in obj) { + if (!keysToFilter.includes(key)) { + filteredObject[key] = obj[key]; + } + } + return filteredObject; + } + + // Se não há chaves não objeto, adiciona um resultado com objeto vazio + if (Object.keys(nonObjectKeys).length === 0) { + const nonObjectResult: Result = { + path: `${prefix.replace(/^\//, "")}`, + content: { + type: getType({}), + value: {} as any, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + if (nonObjectResult.path) { + results.push(nonObjectResult); + } + } + + // Adiciona resultados para arrays + results.push(...arrayResults); + + return results; +} + +function readPath() { + const fileName = "__movement_wallet__.json"; + + const filePath = path.join(__dirname, fileName); + + fs.readFile(filePath, "utf8", (err, data) => { + if (err) { + console.error("Error reading the file:", err); + return; + } + + try { + var dataToArray = JSON.parse(data); + + const result = transform(dataToArray); + + const dataJSONModel = JSON.stringify(result, null, 2); + + function afterRestructureSaveIntoJSONFile(dataWithOutPathFromMongodb) { + console.log(new Date().getSeconds(), "started"); + + const fileAddress: any = "./test/outputResultWithPathJSON.json"; + fs.writeFile(fileAddress, dataWithOutPathFromMongodb, (error) => { + if (error) { + console.error("Algum erro aconteceu", error); + } else { + console.log(fileAddress); + } + }); + + return dataWithOutPathFromMongodb; + } + afterRestructureSaveIntoJSONFile(dataJSONModel); + } catch (parseError) { + console.error("Error parsing JSON:", parseError); + } + }); + console.log(new Date().getSeconds(), "end"); +} +readPath(); diff --git a/test/outputResultWithPathJSON.json b/test/outputResultWithPathJSON.json index e14af2e9..648772c1 100644 --- a/test/outputResultWithPathJSON.json +++ b/test/outputResultWithPathJSON.json @@ -6,24 +6,12 @@ "value": { "available": "2528.00700001", "symbol": "BRL", - "value": 494.23, - "date_created": { - "type": 6, - "value": 1701459383461 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383461 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383461 - } + "value": 494.23 }, - "revision": "40f50f66270348caace78b58", + "revision": "73b1a09ebdc84a5b93134270", "revision_nr": 1, - "created": 1701459383461, - "modified": 1701459383461 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -33,24 +21,12 @@ "value": { "available": "1499269.00000000", "symbol": "IVIP", - "value": 158.48, - "date_created": { - "type": 6, - "value": 1701459383461 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383461 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383461 - } + "value": 158.48 }, - "revision": "ad67733086ef4d9d822b67fb", + "revision": "1eea2225ffa94663a77fd5a4", "revision_nr": 1, - "created": 1701459383461, - "modified": 1701459383461 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -58,10 +34,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d251c80dc2e74af89927bf53", + "revision": "04155bce69d9448bb8c7dd66", "revision_nr": 1, - "created": 1701459383461, - "modified": 1701459383461 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -69,24 +45,12 @@ "content": { "type": "OBJECT", "value": { - "content": "23796927400000606493380261019404283200633330", - "date_created": { - "type": 6, - "value": 1701459383461 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383461 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383461 - } + "content": "23796927400000606493380261019404283200633330" }, - "revision": "4bfd0085dc8f49b784f5aa44", + "revision": "8ed9d152867a4613b0c5f93b", "revision_nr": 1, - "created": 1701459383461, - "modified": 1701459383461 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -96,24 +60,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", - "amount": 3.49, - "date_created": { - "type": 6, - "value": 1701459383461 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383461 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383461 - } + "amount": 3.49 }, - "revision": "10a2897eecac419592d60220", + "revision": "e3c93784066d4828aeea2472", "revision_nr": 1, - "created": 1701459383461, - "modified": 1701459383461 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -129,24 +81,12 @@ "total_paid_amount": 606.49, "overpaid_amount": 0, "installment_amount": 0, - "financial_institution": "bradesco", - "date_created": { - "type": 6, - "value": 1701459383461 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383461 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383461 - } + "financial_institution": "bradesco" }, - "revision": "c22fcc86504e4a49be740f72", + "revision": "ea503885dc5f41a3b8aebb35", "revision_nr": 1, - "created": 1701459383461, - "modified": 1701459383461 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -154,10 +94,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1311772470/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772470&payment_method_reference_id=10194042832&hash=af674271-1e58-4fd7-be5a-99a2285e1e5a", - "revision": "59652040f1fe4c4fa7f573fb", + "revision": "9b4c3a61b71d4520a0240d70", "revision_nr": 1, - "created": 1701459383461, - "modified": 1701459383461 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -165,10 +105,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f577757977444982a4ca1b8d", + "revision": "cedbf51c205e4ae3a67db480", "revision_nr": 1, - "created": 1701459383461, - "modified": 1701459383461 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -182,18 +122,9 @@ "original_amount": 603, "total_amount": 606.49, "id": 1311772470, - "date_created": { - "type": 6, - "value": 1701459383461 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383461 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383461 - }, + "date_created": "2023-02-23T03:44:23.122-04:00", + "date_last_updated": "2023-02-23T03:44:23.122-04:00", + "date_of_expiration": "2023-02-27T22:59:59.000-04:00", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -201,10 +132,10 @@ "currency_id": "BRL", "history_id": "1677138262468" }, - "revision": "24be2f48036d4251b95f8767", + "revision": "baf913eab78d436ebf3049fa", "revision_nr": 1, - "created": 1701459383461, - "modified": 1701459383461 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -212,10 +143,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 603,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", - "revision": "4a67b3e01dc74552922b7154", + "revision": "d99e2526f6fa49b78219a360", "revision_nr": 1, - "created": 1701459383461, - "modified": 1701459383461 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -223,24 +154,12 @@ "content": { "type": "OBJECT", "value": { - "content": "23799927400000595493380261019404380900633330", - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "content": "23799927400000595493380261019404380900633330" }, - "revision": "9be4f262c9a9479ba7346149", + "revision": "ba1a7b0111044e5db35a24ab", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -250,24 +169,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", - "amount": 3.49, - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "amount": 3.49 }, - "revision": "1a3bd0f7e1b04b6a964d555d", + "revision": "4db84344d2f44001a8caaa4c", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -283,24 +190,12 @@ "total_paid_amount": 595.49, "overpaid_amount": 0, "installment_amount": 0, - "financial_institution": "bradesco", - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "financial_institution": "bradesco" }, - "revision": "993234371c43483dbdf335e6", + "revision": "d86a41cc47b24285a91c2656", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -308,10 +203,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1311772488/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772488&payment_method_reference_id=10194043809&hash=73ef0e48-e863-4567-bdcb-8711a40d76b2", - "revision": "715979efe78142099e02c550", + "revision": "40d0899be7254f189410b003", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -319,10 +214,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "811cc01a79bf44b5abeb1836", + "revision": "87e881e903824267a9f179cd", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -336,18 +231,9 @@ "original_amount": 592, "total_amount": 595.49, "id": 1311772488, - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - }, + "date_created": "2023-02-23T03:50:56.477-04:00", + "date_last_updated": "2023-02-23T03:50:56.477-04:00", + "date_of_expiration": "2023-02-27T22:59:59.000-04:00", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -355,10 +241,10 @@ "currency_id": "BRL", "history_id": "1677138655788" }, - "revision": "c6b9efa8c5c54fdbb68d081f", + "revision": "2d60769137fa4914875d110c", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -366,10 +252,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 592,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", - "revision": "273ed08210b8496e80f54d05", + "revision": "0b3a784db3254f8bbc07ff4c", "revision_nr": 1, - "created": 1701459383461, - "modified": 1701459383461 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -377,10 +263,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fabafd157b42434195c51e04", + "revision": "31d8c2c537124c1c86a36c97", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -388,24 +274,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "zBCfpF dcGeyDOq lplNs", - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "6a0386f1d76443478f4d3a73", + "revision": "ea99f94705d243dba0c002c9", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -413,10 +287,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ee201c5ca37243d089cc6918", + "revision": "2c0f3f0be9e54b84bb8f4ded", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -426,24 +300,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 4.95, - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "amount": 4.95 }, - "revision": "b267d4c4c1dd49b792bcbc77", + "revision": "fbece02870ae45f88d6fe3d1", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -455,24 +317,12 @@ "net_received_amount": 0, "total_paid_amount": 504.95, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "installment_amount": 0 }, - "revision": "50726919bdc54585ac3939f5", + "revision": "19ae04c039024409abb3b62f", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -480,10 +330,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406504.955802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter1312722165630407FD", - "revision": "a5b507b509004b7bb3772841", + "revision": "d8204627c68d475fac0a8b98", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -491,10 +341,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1312722165/ticket?caller_id=1310149122&hash=db7e8cb4-20ed-4664-aa3c-fa50b3f2d6e8", - "revision": "feb8c7febc9c4c7eb51a4be0", + "revision": "3d1c8a2a9f1748f9be01f2c0", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -502,10 +352,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dQY7kNgwFUN3A97+lb+Agi8zY4qeqkgyCjPxq0ehu29Jz7QhS5Lh+o885aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXbMn+PP/x0/Lhw/7vvrwp/P3y78XOX+2znGc8fxc9H7Ao8LE4OWlpaWlpaWlpaWlvYl2mnbn4s8ANN9d0V6q2nb826cLty/h6SipaWlpaWlpaWlpaV9gXYKIHN02ER9047liRqBtvtmBi0tLS0tLS0tLS0t7Uu1Ics25++mz6d0Xo1Kyw9aWlpaWlpaWlpaWlraEAlO/7vn6prPnXeWMHRa4FMwS0tLS0tLS0tLS0tL+wJtwi9qMq+QpjtK2WZ5qyMcwDuWxZ+0tLS0tLS0tLS0tLSv0LZdSv7bH/+2pwotLS0tLS0tLS0tLe1vqs2f81lIeZaeI/mo25UbTKbeJPcfnyy0tLS0tLS0tLS0tLR7a5tjbevDbDkCnV5oPFN8R/4y2vejpaWlpaWlpaWlpaV9hTb1F8ld+Ef5szQjaUoq7xulw3GpWPOipaWlpaWlpaWlpaV9ibYEhnWo2lQgOe29ePYM6bwrD9luT9fR0tLS0tLS0tLS0tLurk2bpXNx7adN8U15vil5OBlLAvCipaWlpaWlpaWlpaV9jbaumZJ9ZQp2msp2lsb/Ye+xrLD81FOFlpaWlpaWlpaWlpZ2P2065XaU5Fx7Gi49kfN8o0sFnuFbumhpaWlpaWlpaWlpaV+jPT6tubil7jM1N0lZu9RMsgSzBy0tLS0tLS0tLS0t7Wu0NZ3XduFPQWWeeD3Kn+U10m4jtpqkpaWlpaWlpaWlpaXdWZvSdCkwTJ3578+eZbM8FqDpNzlZaGlpaWlpaWlpaWlpX6bN09FS/u7MOb3y9ke5uf0KpndeVl3S0tLS0tLS0tLS0tJuqi1ptWaI9RQdLppEHiEgrWfq0hf0dcxLS0tLS0tLS0tLS0u7mzYHhmmlx3Ipp9fGiWWjM2T8TlpaWlpaWlpaWlpa2hdqp+aPI/+WaiMnQGo3kjpK5rEAX9aI0tLS0tLS0tLS0tLSbqQtgeGj50hJyR0hvJwyfmWzUbqepBizHbdNS0tLS0tLS0tLS0u7u/ZYpvhSV5EUcrah5JGPun0Rn9LS0tLS0tLS0tLS0r5Hm0+lHTlX1xZStqOw8xG7Ky/1OYqkpaWlpaWlpaWlpaXdSpvrL5uyyHSOLeXq8ty1qepy5MReiGNpaWlpaWlpaWlpaWm3164XTiFnexBukeKrlZiL16WlpaWlpaWlpaWlpX2fNrlbYyrHvC9Vo8gSqVZy/qpoaWlpaWlpaWlpaWl315Ym+nUK9tFVTp5d3Fl7nZSrV5iWXVOLtLS0tLS0tLS0tLS0u2vzEOsRyieP/GrpSFzp5d/MyJ4C13SVlpaWlpaWlpaWlpZ2f+0oLfsXFZFpYPUo8V9bZpneOQ3U7rJ7tLS0tLS0tLS0tLS0+2nzwOrpXNy5GHFdjE3VZTk6t4o7P+QiaWlpaWlpaWlpaWlpt9JeeUL1p6b8q+nW5Thd09ekxJPjb/RUoaWlpaWlpaWlpaWl3UWbKidHmLvW1GSmksopTkypu3U55jcxLy0tLS0tLS0tLS0t7Uba8ttVyixLsq/J33Wd+furqUXKMoqkpaWlpaWlpaWlpaXdStsOQbvHhFNHyatk8iZ3KrMsTxyh9HI8T83R0tLS0tLS0tLS0tK+QJsUOeo7+/RbvHkq6pxyeuXmdkoALS0tLS0tLS0tLS3tC7Rl4vVRXqPk4K5FW5JplfI9fNfun5aWlpaWlpaWlpaW9iXaqzu4dpVHU+VkygKW0PQMj6W+lDnnSEtLS0tLS0tLS0tLu7N2WjNHkRWQ84FpbNr5VYVlO4uNlpaWlpaWlpaWlpZ2d20bRZY2kM3s62mL+31Xzt/lqstHtElLS0tLS0tLS0tLS/sm7Zll6ZBaORw3wkG46eoR0nln19KkTm+jpaWlpaWlpaWlpaXdXVvuOEO3xyNUSY7liOv0Vov83Zji0+eL09LS0tLS0tLS0tLS7qxN7nSY7dM+TWQZeo6MnCMcoU8KLS0tLS0tLS0tLS3tC7S5IvIqW5Szclf5reQIR6nEzK/R9jChpaWlpaWlpaWlpaV9gTZPrT5LcLfoQ1ILOMu5uLOUcpZw9QwlmrS0tLS0tLS0tLS0tK/QXiH91tRftquHLebQdHq/dhZb+B8tLS0tLS0tLS0tLe322qnm8f7olRvwT6HkPQKt75fXezyRelDS0tLS0tLS0tLS0tK+QrvIra06O5aYMF04ywG3FEpOGcTPNaK0tLS0tLS0tLS0tLRbaVM4OG0xBZppslpeYHRdSo4wKLuJVGlpaWlpaWlpaWlpaV+ibeol2xHXKZ23OFiXcn9fFGHS0tLS0tLS0tLS0tK+RztCEm+UtiQ5/jvKzLaSzrsyJceOpbckLS0tLS0tLS0tLS3tztoUMaZh1xMvB5/JWDcqzUjOUqfZRZG0tLS0tLS0tLS0tLTbaseTlxqKtA39z9F8ju7mo3Sj/LLqkpaWlpaWlpaWlpaWdj9t+qTYcb1w7ihZe/6nTij5xN1FS0tLS0tLS0tLS0v7Em0O/Y6culs0k2zGXi+iyFWJ5ueYl5aWlpaWlpaWlpaWdh9tivVSQ5F6c+rCPzUomRZt8V9HkbS0tLS0tLS0tLS0tFtqPwWQj8LMdFaujUVzGNo0opwstLS0tLS0tLS0tLS0b9ee4SBc8y6pOnPqOZLx1z/I7tHS0tLS0tLS0tLS0r5AW/9Myb42z1dCydrSJM3c7r4RWlpaWlpaWlpaWlra7bUL/Hgea0s7HlmbajKnVyvNJHPISUtLS0tLS0tLS0tLu7e2Fj7mCC/Ff+f3wWeKNu//mzpU0tLS0tLS0tLS0tLSvkX7///Q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v4y7R8J/gb3YnjEPQAAAABJRU5ErkJggg==", - "revision": "c91e94f83e3145829a49878a", + "revision": "ef3292890f794c5ea05072ab", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -513,10 +363,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e13bf983642c4ab0ba966cb5", + "revision": "62fbb5d7c9ac4ac2a8245eab", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -530,18 +380,9 @@ "original_amount": 500, "total_amount": 504.95, "id": 1312722165, - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - }, + "date_created": "2023-02-23T04:06:05.681-04:00", + "date_last_updated": "2023-02-23T04:06:05.681-04:00", + "date_of_expiration": "2023-02-24T04:06:05.440-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -549,10 +390,10 @@ "currency_id": "BRL", "history_id": "1677139564865" }, - "revision": "53ccbb861eb14b638c42f19d", + "revision": "a5400310e0e64cf5b4961063", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -560,10 +401,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "9066dfce75f6466e9c5f54a3", + "revision": "767ea36974b840a193caa5d9", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509505, + "modified": 1701463509505 } }, { @@ -573,24 +414,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.198, - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "amount": 0.198 }, - "revision": "0ebaebf51ed54a24a1ae9774", + "revision": "d04cc4d27946437692353a3e", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -598,10 +427,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9c7ef9846e5b4adda309404d", + "revision": "aca56ae7a60b43398e6bf986", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -609,24 +438,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "zBCfpF dcGeyDOq lplNs", - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "b0422199ccc14fc296a96c1a", + "revision": "0f47390d26374e0ab3153088", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -634,10 +451,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b4afb98cd0ec4b6fb973d21c", + "revision": "fefa5960ec6745a78acda3a0", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -649,24 +466,12 @@ "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "installment_amount": 0 }, - "revision": "5fa2569d16bd42d5a8a13905", + "revision": "93340aaa9c7e45fa81a32cdb", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -674,10 +479,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dW27kNhAFUO5A+9+ldqAgQGZGYl1S7ckgiMmjD8NttcRD/xXqwXZ9o+tstLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLR/Xtv66/j7b8fPG8fP7/24cX/s8fHn29s/P67w5R93f328r/Zg0NLS0tLS0tLS0tLSbqI97iHb/SUPQLfYfdm0q7xsS/ju/1BUtLS0tLS0tLS0tLS0G2i7ALKL/7rny4bOZ/B5PIPKX295hJdp3cygpaWlpaWlpaWlpaXdVPsrDixB4HEHFEoXGJ7hBS3sj5aWlpaWlpaWlpaWlrYPAs9nJebjt1yx2UoNZcoHpn8GLS0tLS0tLS0tLS3t3tqELwWX6eOgTa7ri0vbTcWav1cjSktLS0tLS0tLS0tL+921wykl/+2PfztThZaWlpaWlpaWlpaW9ptq83XeH0zFlfMpk+m3bjZJmjI5stDS0tLS0tLS0tLS0q6tPUsEV3rW6o151WXe7lGWvO/qHCX7aGlpaWlpaWlpaWlp19Z2lDTjcRg25sBwWJ1Zw9A8TLK1NooiaWlpaWlpaWlpaWlp19PmlNyZZ/mXprc0UbILTRPqmJyMPZ1SQktLS0tLS0tLS0tLu542fSN9DEm3Nlx7fqVTtcsLaGlpaWlpaWlpaWlpd9S20vQ2nB45Kam88p675GFXdTmZUElLS0tLS0tLS0tLS7u2NiXnym/1nLS3pOCXmuNqtvC96pKWlpaWlpaWlpaWlnYdbRcxpla369kX192YFVcOz2dLLXHp9bS0tLS0tLS0tLS0tKtrS07v8VQJDI9yN405SXdLpHqMJlSetLS0tLS0tLS0tLS0O2k/emcNKifjImub3Hx/af4JLS0tLS0tLS0tLS3tZtpUV3nHH9NmtpoF7Io1S6BZt1vuXrS0tLS0tLS0tLS0tDtpu6s0uA2rKWeZwTzpf76rt+mRtLS0tLS0tLS0tLS0a2vToMcr83Jz3Bn6565R11ydUPm1qktaWlpaWlpaWlpaWtpVtFeZG5J627qALw+EHD6W1vhgV7S0tLS0tLS0tLS0tPtou2VTH9tVetaGtZspKk3VmTlvOK26pKWlpaWlpaWlpaWlXU1bjp9uZchIV1eZe+Vqh1yZQVkzefOKTVpaWlpaWlpaWlpa2n204Rv9kdRdg9t9Q0d4Vcudb4lX4ti3KJKWlpaWlpaWlpaWlnYpbZehK9HhIKdXUoHH6FUtjyDpUobTvCEtLS0tLS0tLS0tLe3y2hLDnaFoMgWQLYSDx+QF5fVnmFX5lRpRWlpaWlpaWlpaWlra1bSlSnIWReYmulrFOT8tO9+lpaWlpaWlpaWlpaXdR9s91VVEDgK+ble5L+4Mg0xqrWVZqISctLS0tLS0tLS0tLS0K2vzUWrtGeu1Fp9I8/2HvXLd/6YLTfPoE1paWlpaWlpaWlpa2i20Lcdw8863kufr1j7y/2EeMY6CT1paWlpaWlpaWlpa2pW1RXHkHZSQMw2OPEJM2N7GRZbFj09ykbS0tLS0tLS0tLS0tOtoaxtaTr8NjqnOUWQbnc82G4fSpRFpaWlpaWlpaWlpaWk30Q4qJ/Oh2IPjsXPlZP1KnjI5L9akpaWlpaWlpaWlpaXdQtv91m2jDoQcbu2KVz1jbb7kSxRJS0tLS0tLS0tLS0u7kLbLt5XgbliEeZZuuBxUHmXjKdBMh7nR0tLS0tLS0tLS0tJups3npF35ALVSOdnKMMlyDsAxChbPcsDbexRJS0tLS0tLS0tLS0u7inZY+JgW62K9roWtVE4OdlDWOHMoSUtLS0tLS0tLS0tLu4W2C/i6vxVZnR45aaJr4ZC2Wo7Zvfk95qWlpaWlpaWlpaWlpV1KmyonC6o9z10bJOzejseeHbed/kZLS0tLS0tLS0tLS7uJNlVJ1jxfurrosMyMHCQPJ7HjRzNVaGlpaWlpaWlpaWlpl9KmGsoUDnbZuKy4cjtdkdWQcxqf0tLS0tLS0tLS0tLSbqCtEV5O+6U8X03dDXeVizDPEne+RJG0tLS0tLS0tLS0tLQLaRMqhX4f1GSWDF06B+AMZZb17Ouv1IjS0tLS0tLS0tLS0tJ+b223dq6IPMuM/py/m62dyjG732hpaWlpaWlpaWlpaXfUlhRfC3Mk65Wm/3eyHE/Wj+XQgIOWlpaWlpaWlpaWlnYnbcnQnWEOSVdhWW/MtzachBIqLN+mlNDS0tLS0tLS0tLS0q6mHSbY8hKzrF1J3Q0mnJRA88rnuNHS0tLS0tLS0tLS0u6jLSMkj7e/TcZFDuo0U9ovhbAfV13S0tLS0tLS0tLS0tKuon2sU16XxkqeoentnI6V7FZL7kEnHS0tLS0tLS0tLS0t7era8s6zLFHe1M19rDm9e7KvfpxUXeaKTVpaWlpaWlpaWlpa2pW1d08CpPjvEQSmx8r3BlWXOXYshwHQ0tLS0tLS0tLS0tKurC2FlOeoLPLMvDTkf5j2++B8tg9jXlpaWlpaWlpaWlpa2sW0LRx41g0eSUWTVx5VkvKBJXBNj31YdUlLS0tLS0tLS0tLS7uQNl3DEDEflF03+ZYUvJ7pweGztLS0tLS0tLS0tLS0G2iHgVw6q3r49mHEmA9zS2cD1NCUlpaWlpaWlpaWlpZ2E+2RA8huQ8MQsexguJf2nFdyTXY/jiJpaWlpaWlpaWlpaWmX1KYqyRRA3uPOo8R/k8fSSMph1WWbTSmhpaWlpaWlpaWlpaXdSFujvtCpFmf0lwGT9bHSdvd5do+WlpaWlpaWlpaWlnYPbVo29cWlu3ny5FWeyC1xBy0tLS0tLS0tLS0t7XbaCb5m3roJ/rnqsg7qHxZXFt5FS0tLS0tLS0tLS0u7l7YWPqZmtnsA2XW0XWWuSZ5NMpiEUg54m1Zd0tLS0tLS0tLS0tLSrqb9/1+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+xf7jbt53CJCnQAAAABJRU5ErkJggg==", - "revision": "6a30854cdab24d188070ed9b", + "revision": "bbf7a31f4f4140928541292b", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -685,10 +490,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b61520400005303986540520.205802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131177255663042F4F", - "revision": "9aa0f15597c840fa876c3968", + "revision": "e1d0fd81bf144b2a9a37d540", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -696,10 +501,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1311772556/ticket?caller_id=1310149122&hash=317c7ec8-4131-44a3-a5d4-81d3bd707a5f", - "revision": "b4c263e7e98548c78cd59cc2", + "revision": "9a1212fbae7a44b1adc56b36", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -707,10 +512,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "147e954affc04a5e9cb97bf7", + "revision": "71909f6bb1fd487c96ce01c5", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -724,18 +529,9 @@ "original_amount": 20, "total_amount": 20.2, "id": 1311772556, - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - }, + "date_created": "2023-02-23T04:16:53.522-04:00", + "date_last_updated": "2023-02-23T04:16:53.522-04:00", + "date_of_expiration": "2023-02-24T04:16:53.246-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -743,10 +539,10 @@ "currency_id": "BRL", "history_id": "1677140212667" }, - "revision": "5138b36057b1404d84c659fa", + "revision": "61add99fe64044b1a88e3b90", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -754,10 +550,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "0b58cfed5328498fa944f952", + "revision": "b7d72fc8be984fe3859bf01b", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -765,24 +561,12 @@ "content": { "type": "OBJECT", "value": { - "content": "23791927400000051993380260600338163800633330", - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "content": "23791927400000051993380260600338163800633330" }, - "revision": "dea8702e1b604293a6bdb83e", + "revision": "26c87b54a5014710b1d86e66", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -792,24 +576,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3.99%", - "amount": 1.9949999999999999, - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "amount": 1.9949999999999999 }, - "revision": "9ce5ec96fdcf46a8a489357f", + "revision": "1170b292b1694803b6721458", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -825,24 +597,12 @@ "total_paid_amount": 51.99, "overpaid_amount": 0, "installment_amount": 0, - "financial_institution": "10850221", - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "financial_institution": "10850221" }, - "revision": "a4a15e2f2cc5491c86db3018", + "revision": "a3093ee0299a42f48435e579", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -850,10 +610,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1311772574/ticket?caller_id=1310149122&payment_method_id=pec&payment_id=1311772574&payment_method_reference_id=6003381638&hash=676a5569-4884-42d3-9e67-bfdb72450090", - "revision": "aecabebcdefb47e8b53b964a", + "revision": "705727a279604c35a942ee04", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -861,10 +621,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "74c54f1adf264e17b2be3a76", + "revision": "57fff1e9d0674ef682a9fd7f", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -878,18 +638,9 @@ "original_amount": 50, "total_amount": 51.99, "id": 1311772574, - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - }, + "date_created": "2023-02-23T04:31:15.312-04:00", + "date_last_updated": "2023-02-23T04:31:15.312-04:00", + "date_of_expiration": "2023-02-27T22:59:59.000-04:00", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -897,10 +648,10 @@ "currency_id": "BRL", "history_id": "1677141074675" }, - "revision": "1f07ee45c7e648e096aa39c1", + "revision": "0ea5542e83884503a6787e7f", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -908,10 +659,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "9ef0e7282c6144ba82f23925", + "revision": "28cfb19be26d4c89b5d5fd58", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -919,24 +670,12 @@ "content": { "type": "OBJECT", "value": { - "content": "23792927400000075493380261019405215900633330", - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "content": "23792927400000075493380261019405215900633330" }, - "revision": "8cffd3ad2750427ca098e250", + "revision": "40b6ce8d276442668fe61fc8", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -946,24 +685,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", - "amount": 3.49, - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "amount": 3.49 }, - "revision": "1ef721ea4169430fb3f2ff87", + "revision": "ef6dc9391839468eb1ec6542", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -979,24 +706,12 @@ "total_paid_amount": 75.49, "overpaid_amount": 0, "installment_amount": 0, - "financial_institution": "bradesco", - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "financial_institution": "bradesco" }, - "revision": "9ae28187110a432a8fb56a6d", + "revision": "f04dc2c8f28c484a96f3a75d", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1004,10 +719,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1312722387/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1312722387&payment_method_reference_id=10194052159&hash=0fea3a36-6354-4019-aec5-950b140fc21c", - "revision": "e528c80a124140f5998229d9", + "revision": "4617085ffa3b44229719f3e6", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1015,10 +730,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e00e4c2a5f6e48c4aa2b57a4", + "revision": "75fdce7d404d4daf8d9f6664", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1031,18 +746,9 @@ "payment_method": "bolbradesco", "total_amount": 75.49, "id": 1312722387, - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - }, + "date_created": "2023-02-23T05:08:54.435-04:00", + "date_last_updated": "2023-02-23T05:08:54.435-04:00", + "date_of_expiration": "2023-02-27T22:59:59.000-04:00", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -1051,10 +757,10 @@ "original_amount": 72, "history_id": "1677143332353" }, - "revision": "9493b8bf625d4d3e8139b3c4", + "revision": "288272b9d5544d3ba1588bc2", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1062,10 +768,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 72,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "760b523f7ba74a6fb463962c", + "revision": "13b5bab9da9f4fb8acbd649c", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1073,24 +779,12 @@ "content": { "type": "OBJECT", "value": { - "content": "23791927400000803493380261019405351400633330", - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "content": "23791927400000803493380261019405351400633330" }, - "revision": "31e62bd955574d0287f8c7e4", + "revision": "d8b8eaf01c59420bac2c406a", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1100,24 +794,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", - "amount": 3.49, - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "amount": 3.49 }, - "revision": "e1d81ddf109a4fdfb5924294", + "revision": "6a3cdff81064452db70d77ef", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1133,24 +815,12 @@ "total_paid_amount": 803.49, "overpaid_amount": 0, "installment_amount": 0, - "financial_institution": "bradesco", - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - } + "financial_institution": "bradesco" }, - "revision": "9bb9aee680b64cde90a64573", + "revision": "83b419370ed4453eb7e21049", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1158,10 +828,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1311772850/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772850&payment_method_reference_id=10194053514&hash=7f37a98d-46a5-4410-9837-bd450923e2de", - "revision": "9dbf260b754f4972b664ddaa", + "revision": "5e1a81f2687948c195c77d85", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1169,10 +839,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "c07345849506460193c7f421", + "revision": "af7fa6670afa40bf8bb1f185", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1186,18 +856,9 @@ "original_amount": 800, "total_amount": 803.49, "id": 1311772850, - "date_created": { - "type": 6, - "value": 1701459383462 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383462 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383462 - }, + "date_created": "2023-02-23T05:59:23.578-04:00", + "date_last_updated": "2023-02-23T05:59:23.578-04:00", + "date_of_expiration": "2023-02-27T22:59:59.000-04:00", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -1205,10 +866,10 @@ "currency_id": "BRL", "history_id": "1677146361537" }, - "revision": "bdd2a92eff5a48e185fba705", + "revision": "16a19da16b4f40bc9c1984da", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1216,10 +877,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "b30d8d9bef154b1aaa9c6b32", + "revision": "9cc114846c9547f3ba2ab5b2", "revision_nr": 1, - "created": 1701459383462, - "modified": 1701459383462 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1227,10 +888,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "29f6aa6f05d64b14a329100b", + "revision": "e0e5b531f3134239867ccf7f", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1238,24 +899,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "Paulo Fagner de Oliveira", - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "abfa8fa3c282445885a43c18", + "revision": "0363a3fae2bc4e00aa92ca14", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1263,10 +912,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "86fbd6cb71494fbb8987c2a3", + "revision": "c8a969eeacfe407da618a596", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1276,24 +925,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.198, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "amount": 0.198 }, - "revision": "7083bcb0f1ce4132afc91119", + "revision": "94b0d33d5fb044d9b686abe8", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1305,24 +942,12 @@ "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "installment_amount": 0 }, - "revision": "3fc1afd7a9c04c239cd0c7c8", + "revision": "6431bf8391454854b95cb48f", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1330,10 +955,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55087284163/ticket?caller_id=1310149122&hash=d505f218-1883-4e4e-8be7-431e65cdf030", - "revision": "d1a57dac72f84adda31815fa", + "revision": "deb7edb58d89405486c51c75", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1341,10 +966,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter55087284163630456C0", - "revision": "81bc9f024ad6415f854b8211", + "revision": "b01c5155cabd4fdea8b022c8", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1352,10 +977,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dW27kNhAFUO2A+98ld6BgkMlAzbpF2cggyEhHH4bt1uOo/wpVvDzOP+iYBy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS3t79ce6zF+/G/8+uCf335cVU9ZPh1/3/349ZxjecbP/32cfH3aB4OWlpaWlpaWlpaWlvYl2nEt2ZY/r8YKvZ4yPnkfpywvdPXM600zg5aWlpaWlpaWlpaW9gXahXK9YH6WkktNeG7IbaVaysuxYdDS0tLS0tLS0tLS0r5TO0OXrQKKp3ndpTAs7UFaWlpaWlpaWlpaWlraUM1tysGlqBybOvFu9DLdhZaWlpaWlpaWlpaW9n3ajN/NWrbV5rV2nJ9v0HxBd8OftLS0tLS0tLS0tLS0T9fuZP/hj3+bqUJLS0tLS0tLS0tLS/uHavMxSyMuhYws6SPLOGbrWW56b6GlpaWlpaWlpaWlpX22dpYKrtxp5v7dVdscJcZ/WU5X8/233T1aWlpaWlpaWlpaWtqHaq+/LSvVZhcSuVSbZ4klWd55uV877RkeSUtLS0tLS0tLS0tL+2RtucnxCTg+e3pHADTQJY2ydPxSj/AI70JLS0tLS0tLS0tLS/sCbYkROUL6yNGVg0eoLEferq3UiU22JC0tLS0tLS0tLS0t7cu0eV/qNFI58pxmqRjbVW4zr5UrXxUtLS0tLS0tLS0tLe1btIW8iyXJaf2z1H8Z0NaJZ1dj0tLS0tLS0tLS0tLSvkI7w01SEVgTJZdUkTRmmffSbr6CvFaOlpaWlpaWlpaWlpb22dpl4DJNYpbCcG7GMcsL1ePqmZvKkpaWlpaWlpaWlpaW9iXakYvAtEyuZEvW6vB67Qhfxixzmnnp3KClpaWlpaWlpaWlpX2N9sg5+0tzbgGkXJN2W4D84u3b36f609LS0tLS0tLS0tLSPkibhiH3lWAOLakpJeXa2hTcfDpoaWlpaWlpaWlpaWlfo505aSQFPS43Tp6lz5c6iPs4lO3UJS0tLS0tLS0tLS0t7WO1bZk3Sjcuhfen3t+SBdmuritF6ritImlpaWlpaWlpaWlpaR+kLVGOZ9fOG6XubBfHlfvVkvOu0DxpaWlpaWlpaWlpaWlfoz1KJZgS/EspeeQlbItsKSXLF3R0tx+0tLS0tLS0tLS0tLQv0YYPY4uvLQJzvkjaGXvXLdwGmdDS0tLS0tLS0tLS0r5AWxfClaMlN+OY+dlnecn9ECYtLS0tLS0tLS0tLe3TtUtmZLnTcs9js2F1WQ13my3Z5prQ0tLS0tLS0tLS0tK+R5sDHJt68voGcztNmWY3P85rZze3q+FoaWlpaWlpaWlpaWmfqD1LW61NJGnDSNpqs/Da2vHbe8PR0tLS0tLS0tLS0tI+Q7s8cTlyKH9tBd6NaM6u2XeG5w5aWlpaWlpaWlpaWto3ab+wIG3pt7W85eTvV4yl2UdLS0tLS0tLS0tLS/sW7UIuq9fO/L9rFZnKxmMzdZlLzu/0ImlpaWlpaWlpaWlpaZ+hTR21Am0rxjqnWYYw6zhmu/wth6DQ0tLS0tLS0tLS0tK+QFtQI3f8yrP3k5N16VyZ4pz5MlpaWlpaWlpaWlpa2vdo27nKtsbM6f/Lp81dSm5/jvGnpaWlpaWlpaWlpaV9kXbpqKW+XOrBlXbe0rqrm2LnhmLTMqSlpaWlpaWlpaWlpX2PdsntL8XdzO28zZbZM3QBF1TztK4qpaWlpaWlpaWlpaWlfbJ2mXQso5IjLHBb4vmbYc3rmGWb6r9swT3i10JLS0tLS0tLS0tLS/ts7VGqyLJr9VnuXk5O/cAj9/TS1GV+NVpaWlpaWlpaWlpa2ldpU0ZILhG/usptaQC2+2anzQBoaWlpaWlpaWlpaWlfpj1LvGOuE0dY0Za3SOtl7c7YX64iaWlpaWlpaWlpaWlpH6UdeZBynzRSZjLH198lT13WK2hpaWlpaWlpaWlpaV+hzZR5twPbUhNuFsKdYe/rWnJuvhZaWlpaWlpaWlpaWtoXaHMof02ALKvcaubIdllb7PilBXjbrEtaWlpaWlpaWlpaWtrnadto/9KSa7t2M6ypO8KfR958rR30pKWlpaWlpaWlpaWlfbo2FYupMCwF31mMeSbzCCvfmqd9OdWflpaWlpaWlpaWlpb2Udr0nKPbFPsMbzBD+shRYiCXtl+qVO+nLmlpaWlpaWlpaWlpaZ+oXarIXbRIKgJT2biZxFzOS6Xpd7p7tLS0tLS0tLS0tLS0f7y2DD6mxx6liZemKUsYySy7st1NXebKkpaWlpaWlpaWlpaW9vHa3LA7SuZIUdQaM62Gy6c0G2rfpJTQ0tLS0tLS0tLS0tI+Tbvwypjl7R5ry5hlvvPI7cH2e7iZuqSlpaWlpaWlpaWlpX2QdnlYmoNMvb99ZH/aULudukzn3fciaWlpaWlpaWlpaWlpn6JNq9dKx2+ELuDIOZKpb7gY2z23v5jqT0tLS0tLS0tLS0tL+0RtjSpJbbq2qCxl6PKms1sDt2yKPUKcJS0tLS0tLS0tLS0t7bO16UgjlblYnLkVuFyRCsjUIyx5JbS0tLS0tLS0tLS0tC/QluTHFB7S/jnK++XtrOdd+n/eMpuWlpaWlpaWlpaWlvYV2hEKyCZupHTjUkhkbdOV7dWaXbC/UkXS0tLS0tLS0tLS0tI+UltKuo96MidFtrutfVwWnl0ftL+WlpaWlpaWlpaWlpb2jdrRzVrOLkcyLadLxeIMG2ofZZ0dLS0tLS0tLS0tLS0tbb8NW0kfqfgUaVJ4MzT7zttdsGlpaWlpaWlpaWlpaR+pzfhaRS53b1+tnHfkD5YMk2VOk5aWlpaWlpaWlpaW9iXatKxtlmT+pWxMc5ppJjPtwFbuN8NiO1paWlpaWlpaWlpa2rdo//8HLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLe1v0/4FnajhovaFiOwAAAAASUVORK5CYII=", - "revision": "5a019fc485c545369d59a30f", + "revision": "e4847a85f60b4edf9273fd4e", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1363,10 +988,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "49bcaedfc5d446e4be0e7ad1", + "revision": "fe68a7739e914694907d3bd1", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1381,28 +1006,19 @@ "total_amount": 20.2, "history_id": 1677340892851, "id": 55087284163, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - }, + "date_created": "2023-02-25T12:01:36.928-04:00", + "date_last_updated": "2023-02-25T12:01:36.000-04:00", + "date_of_expiration": "2023-02-26T12:01:36.705-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "e588d0d3ad134830ac31c98d", + "revision": "f71e42c57a9e4beea8ed4747", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1410,10 +1026,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "ad84287a1ac349d88a124615", + "revision": "20a6e35ac76347b993077c8a", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1421,10 +1037,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "24ba812e42ce42009131f3c3", + "revision": "109d848b3cb34c9fb7e571af", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1432,24 +1048,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "Paulo Fagner de Oliveira", - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "b9029d59d530481f856c16ab", + "revision": "359338b1c3b14e7a92b13f5d", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1457,10 +1061,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "925eb1128abc4a77bdf28c60", + "revision": "88b688dd127f476fbd2bdcae", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1470,24 +1074,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.198, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "amount": 0.198 }, - "revision": "1bbfd2e9d5564b8cb40e4d41", + "revision": "ee548926fd5e48ca918a690f", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1499,24 +1091,12 @@ "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "installment_amount": 0 }, - "revision": "e4f8d901b1fc4a938e244899", + "revision": "fdceb42b024642e8842960d6", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1524,10 +1104,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55094059932/ticket?caller_id=1310149122&hash=bd1d3d80-d457-4eee-a797-cd6306ae8561", - "revision": "0b54aacb08fb48709dfe6f3f", + "revision": "69dc146d7a324bda94bff1cd", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1535,10 +1115,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter550940599326304816F", - "revision": "17809bf561bf4d4b90fe73bc", + "revision": "849693deae564e99a55cbac8", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1546,10 +1126,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI6UlEQVR42u3dWw7bNhAFUO5A+9+ldqAiRR8S5w7toEXRUEcfQRLL4pH/BvMa1y90nYOWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaW9t/Xjvk6fvzf8dcHf/7tx7dut/z+z78f8Menjw+mW/6+b7r5ftp4nkFLS0tLS0tLS0tLS/sK7XEP2aZ/3o3TuxzPW6Y3eNwyvdD0zuV51/x4WlpaWlpaWlpaWlra7bUT5f6F8xlKXvnmHEU2kWoJL48Fg5aWlpaWlpaWlpaW9p3aM2TZKqB4mtedAsMpFqWlpaWlpaWlpaWlpaWN0dwiHJyCymMRJ+bSy0fecB3M0tLS0tLS0tLS0tLSvkKb8bXWsnytRpv32PF8vkHzA30q/qSlpaWlpaWlpaWlpd1dOxb9bv/hH/90pgotLS0tLS0tLS0tLe0vqs3X+UzTnXnIyDR9ZCrHbD3TQz9baGlpaWlpaWlpaWlp99aeJYIrLWxnCS+nF2qvMsZ/aqer8/2X2T1aWlpaWlpaWlpaWtpNtfe/1YgxdcOtO9rK867SYtdWe5bIkpaWlpaWlpaWlpaWdm9tecgI0WFKzl05u3d/jSOPkFwv2f7cDUdLS0tLS0tLS0tLS7ufNgeLo6umTOQEHaFYc3yeLXl+07tHS0tLS0tLS0tLS0u7lTbvpU4llUeo0zzCo5okXo4nazkmLS0tLS0tLS0tLS3te7T5nGYsyWJa//SNBGjjxKuLMWlpaWlpaWlpaWlpaV+gzWMg01DHOlFymiqSyizzLu3mJ8jBJy0tLS0tLS0tLS0t7e7aMWJQWaaPHKWuMpVjlheq191zLiJLWlpaWlpaWlpaWlraV2jXI/tzeHmW/rkESOMny6fp3OPjDgJaWlpaWlpaWlpaWtrdtCWjdnVFk8dirkmp2BxdieZ0+BkKOC9aWlpaWlpaWlpaWtrXaNv6y/G5ty2Ffu26tpoUXHx60NLS0tLS0tLS0tLSvkabor5pRdoYq3zgCDP6py63K/fKTUd2gSYtLS0tLS0tLS0tLe0LtI+KyHuY12y3LpSa+8sJwKu85BSpfll1SUtLS0tLS0tLS0tLu4t2McpxSucdJe5sm+Pa3F+aUjIZww9ES0tLS0tLS0tLS0u7tzaFjXWCfwkl0xtMx46SKFz8QClSpaWlpaWlpaWlpaWlfYE2fFh71togsKYHS6Iw7dKu13KQCS0tLS0tLS0tLS0t7Qu0YzG8/1vyF4P/c3nnVHU5Psy6pKWlpaWlpaWlpaWl3Uo7zYxMLXHlmc2gx9IN93G2ZJ5rcq2qLmlpaWlpaWlpaWlpaXfT5in8Z6m/vH/QlGOmasr7zdfz/dIatjMORqGlpaWlpaWlpaWlpd1be5XyyXYiSTuMJI+GrCHiInb8yd1wtLS0tLS0tLS0tLS0u2inE6crrVxLqcByHWGrdkr2XeHcg5aWlpaWlpaWlpaW9k3aLxrSpnxby0tFmD8VMeZRJbS0tLS0tLS0tLS0tC/QTuTSvXZ13XDnMmwci6rLHHJ+n4ukpaWlpaWlpaWlpaXdRZsyagWa0n5XniNZijBrOWbb/lZSgbS0tLS0tLS0tLS0tG/RFtSRM35TweUi43eEHGGq4jzz12hpaWlpaWlpaWlpad+jbcPGNsZMa6/Tp+kpZW5/HuNPS0tLS0tLS0tLS0v7Iu0XqbuUgyslmnW4ydT+lhOKzbm0tLS0tLS0tLS0tLTv0eaR/U2cOAWLhVdzf20TXT5jxKiUlpaWlpaWlpaWlpZ2Z+1U6VhKJY/Q4DaN55+CwKMrs0xT/acV3Ef8WWhpaWlpaWlpaWlpaffWNqFfnr1/Lm+e8oEj5/QWAeT53ZQSWlpaWlpaWlpaWlraLbVpRkieXLLucqt5vkTJI00eWwJoaWlpaWlpaWlpaWnfpK3ZuE9B5Xim6a4wquQMnXarzdhfR5G0tLS0tLS0tLS0tLRbaY9cSJm61+4Pubq92R/fJVdd1m/Q0tLS0tLS0tLS0tK+QpvGO+YF2Efun8vNbKNsVkt9dvd84NFbaGlpaWlpaWlpaWlpt9eWcSMrQGl6O0JLXE7TxYxfyiAuZ13S0tLS0tLS0tLS0tLup03TR6arTJlsxpe0rW7Tj5HqPrut2rS0tLS0tLS0tLS0tDtrp0CueM4u4LsW5ZjT88pbNad9PdWflpaWlpaWlpaWlpZ2K206p5lXcs/ppZhwXaw5QqTaJAC7qktaWlpaWlpaWlpaWtr9tCXqO8Im61UQ+MWe63TfIjRd5iJpaWlpaWlpaWlpaWm31KYJItMckrQUe1FXmYLKI8Sn9fDlVH9aWlpaWlpaWlpaWtr9tNP0kfLPKfN2lVAy/a0dOlnmn4zwQp9rRGlpaWlpaWlpaWlpabfSTjm4WmaZY8xmvVr+HY6cHkxFmCXrSEtLS0tLS0tLS0tLu7f2flhTB5krIlcj+9NC7bbqMt33ORdJS0tLS0tLS0tLS0u7izaNi7xXP05puvN5xHq+SIo7m/65Nm9IS0tLS0tLS0tLS0v7Eu14RnhNmm6R7Btd2ebIe9zSfelwWlpaWlpaWlpaWlra3bXrqK/wzm6M/5HffvHONUeYvkZLS0tLS0tLS0tLS7u7dszXsTi7DTkXf6Rxke0C7PF1do+WlpaWlpaWlpaWlnYf7bEIIEv811ZiHl0V5xXWqzVbsL+JImlpaWlpaWlpaWlpabfUppCuPbvdcz3NHCnlk/W7OYQdqykltLS0tLS0tLS0tLS079COUFzZ7FhbtNOlYDEt1B6lz46WlpaWlpaWlpaWlvbt2qOMEbkfO55nT4nCM480KbwzJPuub7Zg09LS0tLS0tLS0tLS7qfN+DqbJG2yTq9WJpKM/EG5JS14o6WlpaWlpaWlpaWl3V07coNb3qxWn17mizzKJ9MGtvK8MzTb0dLS0tLS0tLS0tLSvkX7/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817W9Rdol/1PnhcgAAAABJRU5ErkJggg==", - "revision": "dffd4fb7d4e74e71801a40a6", + "revision": "a17a814065aa40419acdefc2", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1557,10 +1137,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "729544be7fdc4ce1b42dc1fa", + "revision": "7e2059de2a97448ba6dc46ed", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1575,18 +1155,9 @@ "total_amount": 20.2, "history_id": 1677340905412, "id": 55094059932, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - }, + "date_created": "2023-02-25T12:01:49.292-04:00", + "date_last_updated": "2023-02-25T12:04:00.000-04:00", + "date_of_expiration": "2023-02-26T12:01:49.106-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", @@ -1596,10 +1167,10 @@ "money_release_date": "2023-02-25T12:03:11.000-04:00", "wasDebited": true }, - "revision": "8b8b2d3535654ae1831805f6", + "revision": "fa871ff3af884e66b6dc2196", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1607,10 +1178,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "3f7beafc57ba4122960505ff", + "revision": "96786938127b4a3eb636dd61", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509506, + "modified": 1701463509506 } }, { @@ -1620,24 +1191,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.198, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "amount": 0.198 }, - "revision": "a050971fac7248a6b510d1a6", + "revision": "039db8c03d5045d9876104d2", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1645,10 +1204,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "dc54f923e2ff4599a8b1b038", + "revision": "7f80c716c0d64347b95db1bd", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1656,24 +1215,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "Paulo Fagner de Oliveira", - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "3a57c1d43c874aea8fdcc017", + "revision": "c22ba06fe42a466392aafda1", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1681,10 +1228,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4135aa959ddb4324898ebda1", + "revision": "b853719e9c8f4986a2ce1633", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1696,24 +1243,12 @@ "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "installment_amount": 0 }, - "revision": "33c9848c2f654b8abef28c35", + "revision": "c15197562ae6444dbf66bb49", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1721,10 +1256,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55095321700/ticket?caller_id=1310149122&hash=6c50eaaf-2a5f-4be4-a6b8-fd6340b379a5", - "revision": "d5cdf18f1b9c4e129ece8367", + "revision": "19e6699f4b124ec7b310d540", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1732,10 +1267,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dW47cNhAFUO5A+9+ldqDAiB8t1i12T2IEsXj0YXhGI+lIfxdVLI7rDzrOQUtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v7+7VjPo5vvzt+nvjxv29XzX/36wbfzx5/3338fM6YnvH9d7c/fn1avT0tLS0tLS0tLS0tLe3ztcdrZJt+TMbpXRL019+lF0rXLhi0tLS0tLS0tLS0tLQbaCfK6wXnPUpe94dNbzWlyCaplnh5LBi0tLS0tLS0tLS0tLR7as9QZauA4mledwqGr7zpH1paWlpaWlpaWlpaWtp7m2WOg1OoPBY58bXN8tfZqRPzoqWlpaWlpaWlpaWl3V2b8anXMtX+psVxRzAeIUWmy/5JjygtLS0tLS0tLS0tLe2frl3J/sN//u1MFVpaWlpaWlpaWlpa2j9Um4/zXqY7uw7LcZ8FeYWyX/W83rRWEIOFlpaWlpaWlpaWlpb22dqzJLhykzOU+G4v1B5ljP+0nK7O919W92hpaWlpaWlpaWlpaR+qnRaupZmRU4AsafMqY0mmnDh9h7bbM3wqWlpaWlpaWlpaWlraJ2vLTUZIh6k4d5V3maBT5CwVv1QjHOFdaGlpaWlpaWlpaWlpN9C+C4tX2W1tTS5VwOZ1F1+JlpaWlpaWlpaWlpZ2K23elzq1VB6hT7O2Y7a9ljlP1s9CS0tLS0tLS0tLS0u7j7aQm9bLPK2/JssFoM2JV5cxaWlpaWlpaWlpaWlpN9DmMZC1fTJNlCwbqB3dkrgrr3xLufNN1yUtLS0tLS0tLS0tLe3TtOnIK9+O0leZ2jHLC9Xj9X7nIlnS0tLS0tLS0tLS0tJuol2N7C9r5c4yUGRKh2m4SXlabdYsS+cOWlpaWlpaWlpaWlranbQlJ14xzdVxI6u2zbScLt20vP1HexDQ0tLS0tLS0tLS0tI+R9v2X6YRJNd9bVuKfu12bbUouDh70NLS0tLS0tLS0tLSbqNNqW/aIm2MVT1whBn97R5rzUbZuRRIS0tLS0tLS0tLS0u7j/bWEfka845c4itTRUap/ZXldOOObx70YdclLS0tLS0tLS0tLS3tU7RllGNtfMxnU4dlc0WKnO+C5kVLS0tLS0tLS0tLS7uNdiw2wJ7C4pQ2U8FukpVy3vSB0jK5c/42tLS0tLS0tLS0tLS0T9aGk6PU6toQeIUeyqlQmPbSrqXF5SATWlpaWlpaWlpaWlraDbRpIdw02j8lxjqqZD34P7d31iEotLS0tLS0tLS0tLS0+2hTOS9vcf31qt3b2ZLtXBNaWlpaWlpaWlpaWtp9tHmA43l/2LgHzZHbMdO7TKNKJlmp6Z2xAEhLS0tLS0tLS0tLS/tsbT3aiSR537WjGw1ZI+IiO35xbzhaWlpaWlpaWlpaWtqnaMvKt1FiY6nzjTI4shxH2FU7Ffuu8NyDlpaWlpaWlpaWlpZ2J+0HC9KmelvLm/7464kxjyqhpaWlpaWlpaWlpaXdQDuR19P605DIHBvHousyR87Pa5G0tLS0tLS0tLS0tLRP0aaKWh4SOcrqtanXsnRdXrkds13+VkqBtLS0tLS0tLS0tLS0+2jbpslUeUsDStINxqjbbZ+ldzNdRktLS0tLS0tLS0tLu4+2jY1txkzbXqez6S5lbn8e409LS0tLS0tLS0tLS7uRto1+6xpcSptT0JyWv+WCYlMypKWlpaWlpaWlpaWl3Ufb7XAWc2Ia9587LJtey/wG56KLk5aWlpaWlpaWlpaW9unaqdOxtEoeYYHbNJ4/5cm65dr0bdIwydTtSUtLS0tLS0tLS0tL+3xtXeBWdq2+yt1Tw+V0q1IeHN390rW0tLS0tLS0tLS0tLT7adOMkNxh+XaVW3p2ftAIZwctLS0tLS0tLS0tLe2G2itU49ahso4vaXsyc9dlG01PWlpaWlpaWlpaWlravbRHbqRMi+OmVXNtq+T6XXLXZb2ClpaWlpaWlpaWlpZ2C20a77gOgaUKeOY5kmkb7elNpxVynYWWlpaWlpaWlpaWlvbx2jyUP/VaplVuUwxdLGuLnyBVEN/PuqSlpaWlpaWlpaWlpX2UNk0fmY40KTJ1TrZL3aaPkfo+u121aWlpaWlpaWlpaWlpn6ydglzxnF3gayuD9f3KWzVP+3iqPy0tLS0tLS0tLS0t7aO0R3hOM6/ktaZXGylTm2U78780XF6fdF3S0tLS0tLS0tLS0tI+UTulyPW4kRoC2ymTuRNzCpBjMf+ElpaWlpaWlpaWlpZ2H22aIJJaJcsEyJFX0uVQeYR8euVZlbS0tLS0tLS0tLS0tPtoc8Eu1e8+2IZtXd1LoyZHeKHllBJaWlpaWlpaWlpaWtqHa5MsPTZXAUdIh+eiPJiaMAONlpaWlpaWlpaWlpb28dpSybvy/tU5O16vjy3GugauHTDZbQZAS0tLS0tLS0tLS0v7ZG273q0t8ZUrrhAHr/J+LX5RN6SlpaWlpaWlpaWlpd1HW0eVpDLd648TZSzbNs+8Bq4cRxhnSUtLS0tLS0tLS0tL+2ztOvUV3tnNIWn7L888oCTVCMu8ElpaWlpaWlpaWlpa2g20bZDLs/fTj80m1rlkeC03wB4fV/doaWlpaWlpaWlpaWmfoz1CgGzGjUxVuzYJlhi6Gvz/tRRJS0tLS0tLS0tLS0v7SG2JdLfhISUONvtcp8vCs0cKqYtraWlpaWlpaWlpaWlpd9Qei17LvIFaWk6XwuIZNtQeZZ0dLS0tLS0tLS0tLS0t7TWNG3l97Lg/+yr4NNKk8M5Q7Lve7IJNS0tLS0tLS0tLS0v7UG3G1xSZJo2kVyt/N/KJ9L3ep0haWlpaWlpaWlpaWtqHaUde4JZ3Vju7ASVpcsnIO7ClLs70SFpaWlpaWlpaWlpa2i20//+DlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlva3af8CP/KbUvmRbJkAAAAASUVORK5CYII=", - "revision": "e52cd60e09764c62b323f7ae", + "revision": "b4e00def1eb54b509a60f59f", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1743,10 +1278,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter550953217006304FF73", - "revision": "49327c71358542dd9ff2bdf1", + "revision": "3c1fc579890147989b1244d6", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1754,10 +1289,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "fb746313a086490cab6200d2", + "revision": "a722020e77b34afbb113f99d", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1772,18 +1307,9 @@ "total_amount": 20.2, "history_id": 1677342602434, "id": 55095321700, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - }, + "date_created": "2023-02-25T12:30:06.615-04:00", + "date_last_updated": "2023-02-25T12:32:35.000-04:00", + "date_of_expiration": "2023-02-26T12:30:06.238-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", @@ -1793,10 +1319,10 @@ "money_release_date": "2023-02-25T12:32:20.000-04:00", "wasDebited": true }, - "revision": "62056f8bc7ca4688a6a7f50f", + "revision": "8a3fb7aef4d64999882bb7c7", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1804,10 +1330,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "b6073326b4be403faf27ee92", + "revision": "ad8619e14a7e4ccf9e45575b", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1817,24 +1343,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 3.9600000000000004, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "amount": 3.9600000000000004 }, - "revision": "e506e4d274a94043af71587d", + "revision": "6f27896536264c8280814aff", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1842,10 +1356,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1b72f8dd0c75440e81eca79e", + "revision": "03c5c2c8f75541b79d601079", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1853,24 +1367,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "Paulo Fagner de Oliveira", - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "d384b36f5f90422baea511a5", + "revision": "a03a198e0eef4b7f81272758", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1878,10 +1380,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "28233480d1594901a230b849", + "revision": "f6e5cc68e839482980a475ce", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1893,24 +1395,12 @@ "net_received_amount": 0, "total_paid_amount": 403.96, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "installment_amount": 0 }, - "revision": "d45026dc2ed3432583b1dda0", + "revision": "b8208fe95be847db8ca11e2b", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1918,10 +1408,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55103336998/ticket?caller_id=1310149122&hash=9ef20da2-8e33-4bd3-baa0-734357868736", - "revision": "020c7a6497644aa8991216e9", + "revision": "2e255465a1474c698df63647", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1929,10 +1419,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2ElEQVR42u3dW47jNhAFUO6A+9+ldqBgkJnYZl1SBjIIMuTxR6PdtqTD/ivUq91/0OtqtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/X9vGV//xt/7PB79++3HV3z9eH7xu8PODX9e+vvf+jF8fvL78flll0NLS0tLS0tLS0tLSHqLt7yHb8DY/7H5/zvtv6ysmn74fMjFoaWlpaWlpaWlpaWkP0A4B5HDBEEpmxfUZWdZnvwLE17WLwJWWlpaWlpaWlpaWlvZs7fV5k/dLWwkbP9J+JQH4kg2nTz9oaWlpaWlpaWlpaWlpQ5llSrrl+K991lAO2hYO1N7PQktLS0tLS0tLS0tLe6x2ik8fvJ6diiZLD1zK6fWv8oG0tLS0tLS0tLS0tLSHaKdTSv7bH/92pgotLS0tLS0tLS0tLe0fqs2vOtSxjCVJH9yha27aDVeThzMLLS0tLS0tLS0tLS3t3tqrRHDlduvmuHtRdZnwOY04TfbR0tLS0tLS0tLS0tLurn09NvGGtrYrvM0tbLXWMpVeTpKMDzEvLS0tLS0tLS0tLS3tVtorzNmvwV0ZX3LPVrOltrbVM57uQktLS0tLS0tLS0tLu7v2fh8tMtwuJeLeE3YtTylJNZlpXknau/ZcI0pLS0tLS0tLS0tLS7uZ9grQaeatf6bu7hJormPM9fK14X60tLS0tLS0tLS0tLRHaHMP3HCTSa1lSQ+miPFezPdfMG5aWlpaWlpaWlpaWtpDtENtZIoEp8Mfywa2XqLDLJv02eUIlJaWlpaWlpaWlpaWdm/t8LChmjLtuU6zIN9vdX2m/eqrxJ1D8nBRdUlLS0tLS0tLS0tLS7ufNi9Lu/Pw/pLdG1ripn+rTyvxaRpuQktLS0tLS0tLS0tLe4o2vc0tcauSynLcVuLElFDMVZw3LS0tLS0tLS0tLS3tIdpSNNmWI0juvNi6TCm5QhR5LQ755RZsWlpaWlpaWlpaWlraHbXDQMi67Lpk6Ca8HCLeJZOXp/qnVCAtLS0tLS0tLS0tLe0B2pK/a8s914/1lyWdd5W0X8kW9och/7S0tLS0tLS0tLS0tDtrU0Naejtk6PJEkskVKU5cBJr9IealpaWlpaWlpaWlpaXdTJsok2H7aTRkDkj7YoHa8A9aCGhpaWlpaWlpaWlpaQ/Qln63K6yuXg96bGFmZF/sC0jZwjTIhJaWlpaWlpaWlpaW9iRtK1McB22unOwhsuzLESRXeFAagkJLS0tLS0tLS0tLS3uKdnr3EiL2vIutPHaV8UtDUPLBaWlpaWlpaWlpaWlpT9EOdZWlK22IMXvIy/Ulqi1mS+aqy05LS0tLS0tLS0tLS3uWdrhJieHiMMnhVKUws4V/QfuccHKXSf/P29ZoaWlpaWlpaWlpaWn30w7TQhZTSuoGttIIt6JMg89ydaelpaWlpaWlpaWlpT1JO5Dz2z4rmqwpuTybpIaXKWLMo0poaWlpaWlpaWlpaWmP0qaqy4JaD5gcAs3a5ZZi1rQKm5aWlpaWlpaWlpaW9ghtHhI52VC9GDWZIsGhG+4qCcDF8uyblpaWlpaWlpaWlpb2QO1jXDeUaE7PXFazTSLQp1iUlpaWlpaWlpaWlpb2AG1qXCt3mmT8Sudbmgo5rMdueeb/4kVLS0tLS0tLS0tLS7u3drGcuoXt1n3WK9cKqsw6STWerWT8HmJeWlpaWlpaWlpaWlra/bRDHeT9HifmU915gv9wvkVl55UnSqaj0dLS0tLS0tLS0tLS7q4t6bc0oGQSba4DyHS+ISAtGwFSApCWlpaWlpaWlpaWlnZ37b2cuF9vkrJ7QxA4fGWaLUwFnOGmtLS0tLS0tLS0tLS0O2un4WDebl3zcnn6f3seF1lLOWfL3GhpaWlpaWlpaWlpaXfWTm9SEnF3ifoWW9laGA35bdVlodHS0tLS0tLS0tLS0u6sLWFjzxP3Q5Nay1P479xil+aaLKo4Oy0tLS0tLS0tLS0t7SHaVPM4TeKVbFx9pfOVkHMVwj5MKaGlpaWlpaWlpaWlpd1Pe4UCySs0s/XcNVeCxfaZ3etZlr6XL6OlpaWlpaWlpaWlpT1AW1rdrtL5thj+OGy87uHZqacuhbAXLS0tLS0tLS0tLS3tmdoSJ/Ywxr9WWE6XYq+P+xSVdlpaWlpaWlpaWlpa2rO0H+T3O/VFbWTpaFtfe+cvh0mRX9SI0tLS0tLS0tLS0tLS7qi9P1vdegjzpum3aWFmSh5OvpdXZtPS0tLS0tLS0tLS0h6gnXa0DQ9bJ/FKSeU1m1KyrrrMkSUtLS0tLS0tLS0tLe3O2oQqabrJdrRy0iu0v9XzPTXMfVV1SUtLS0tLS0tLS0tLu6l2msQrPXC9RIepTjPv0r7D8uzpi5aWlpaWlpaWlpaW9gBtGe9Yo770nJLOu0v+Ln2lBK49JBQ7LS0tLS0tLS0tLS3tIdo8LrKWQA7GlJybVk6WqZCTbOE33XC0tLS0tLS0tLS0tLSbalv8Wu1Zq2fJYei0Q+7OQ1BywSUtLS0tLS0tLS0tLe0B2vQanrg4Ri2pLI1w07RfD9Fma+2bGlFaWlpaWlpaWlpaWtqNtDmQS7/12aLsO28ESEHq+5cnd/4yu0dLS0tLS0tLS0tLS7uPtra6Tfvi3mPHNBryzk8sg0yu3Pn2TRRJS0tLS0tLS0tLS0u7pTaFdDkITAP9rxKJpuEmJYPYn0JYWlpaWlpaWlpaWlra07U1bEwdcjkvV68oe7NT3PlVdo+WlpaWlpaWlpaWlvYobR3ePx01mf82OeS02W65BZuWlpaWlpaWlpaWlnZTbcH3PKg/xX8lxVfn9peJJCkWnVRx0tLS0tLS0tLS0tLS7q+thY9DAFnuNJlSkkLTcshpGHqFM9PS0tLS0tLS0tLS0h6g/f+/aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/m/Yv5+S5wPHlkOQAAAAASUVORK5CYII=", - "revision": "89d370a0ecf84f13ab605658", + "revision": "aaa6ba1997fa4cf4bbcfa409", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1940,10 +1430,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d127175204000053039865406403.965802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter551033369986304804E", - "revision": "c7518ce156954301aa125a31", + "revision": "1eb6363111ec42a2a197c934", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1951,10 +1441,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "2d547a6f18a84b0982f1376d", + "revision": "9e7a28ae4ca44689922bb260", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1969,28 +1459,19 @@ "total_amount": 403.96, "history_id": 1677356987387, "id": 55103336998, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - }, + "date_created": "2023-02-25T16:29:48.037-04:00", + "date_last_updated": "2023-02-25T16:29:48.037-04:00", + "date_of_expiration": "2023-02-26T16:29:47.844-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "8de34994b07745d08e752865", + "revision": "21eb980419e34b6e8c627c1d", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -1998,10 +1479,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "b4ebbc254f2f46858db696b7", + "revision": "88ccef205f3041e082eb904e", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2011,24 +1492,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 9.9, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "amount": 9.9 }, - "revision": "f3d30dea8300480c893caa2d", + "revision": "00362925597743068c8d4bd2", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2036,10 +1505,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "31f4e5db759341e687f6ee80", + "revision": "0984010637e84a6d80ed45ff", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2047,24 +1516,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "Paulo Fagner de Oliveira", - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "4c7e0677b86342569fd0288f", + "revision": "0f04a4ac5247480ba60e4cf1", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2072,10 +1529,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6c2230c9e6534961bba42e4a", + "revision": "161532e8eb54418888864320", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2087,24 +1544,12 @@ "net_received_amount": 0, "total_paid_amount": 1009.9, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "installment_amount": 0 }, - "revision": "9ce0d64779d54724a4f0e3d8", + "revision": "076b409a66db4eaca7e5861c", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2112,10 +1557,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55096573577/ticket?caller_id=1310149122&hash=90c37e8f-66e2-44f0-8c67-647e232f6bda", - "revision": "5a62d4cb5b954c9d841a7f58", + "revision": "40089ebab0b04f8fa8b1e1dd", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2123,10 +1568,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d1271752040000530398654071009.905802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter5509657357763045E7D", - "revision": "0e12bd28d61c4499bc106f35", + "revision": "41e4ccea5f4a4715857a845c", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2134,10 +1579,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIy0lEQVR42u3dW47jNhAFUO5A+9+ldqBgkMdYrFu0ggRBRjz+MNwtSzry30UVi+P6hV7noKWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaX997Vjfh0//nf8deDPTz/OGj8/TRf44+jxeZfpQLnU8TtlfN7txqClpaWlpaWlpaWlpd1EO93iKDFuhNcn+ZyvfrvjmZ+vaFsGLS0tLS0tLS0tLS3tBtopQE4npK/8Qb7uxp+86/PTlBM/D7TBlZaWlpaWlpaWlpaWdm/tVHS7RcTQFplKcnNlsNwyvdHS0tLS0tLS0tLS0tLGiHiFZJnyX1P7m5owP59vhKBJS0tLS0tLS0tLS0u7n3aBn5bETaedy6LgKKhy4Pje/ElLS0tLS0tLS0tLS/t2bTul5L99+6czVWhpaWlpaWlpaWlpaX9RbX6dechIeapbce6ziNcup6ur4b5baGlpaWlpaWlpaWlp3609u9GQ6cCtsLd+jHKp1cz/6St9iqSlpaWlpaWlpaWlpX2bdrpmu1wtxcv2MfIDPVtnVyah0NLS0tLS0tLS0tLSbqD9vOPIC9zKLMjbpth5oH86cHWbbN9+jO89orS0tLS0tLS0tLS0tO/RphEkqaaXPrVbZh+lfpe6LtO+a19SJC0tLS0tLS0tLS0t7cu1paaX2iKnrFf/nAp7U3mwjau5RZOWlpaWlpaWlpaWlvbd2nKlqUuylt/C5UY6d51Kv4XPi5aWlpaWlpaWlpaWdhPtVFabCmwlLI6QDpNxasycZEco56Vb0tLS0tLS0tLS0tLSbqDNFz5zw+V0NFUG21kni+GUR6gqXrS0tLS0tLS0tLS0tJto00bUZQlbbalMS+LKWMlcqxupnJcbOGlpaWlpaWlpaWlpabfQNtNHEjQHvpaXNgg4855tJYFetLS0tLS0tLS0tLS022iPsCBtGv44RtyfrcjSmrrRjew/l8W+g5aWlpaWlpaWlpaWdhtt0yo5DSNpJ/gvlrqNbhfsZq7Jk65LWlpaWlpaWlpaWlrat2nTfUrGTGNJmjmSZeVbKiMe4c+65zYtLS0tLS0tLS0tLe0m2tWMx6nsl0dIpqGT4/4YjTHvIXCsUiQtLS0tLS0tLS0tLe3btNNquPDdftRk6qFM6+emq0wFwJQ2H04poaWlpaWlpaWlpaWlfYF2mj4yVe0WK+S+7oJdfof0Y0zG712XtLS0tLS0tLS0tLS0L9WOMOOxBsM8VjKR0+5tzbjI0nU5+umRtLS0tLS0tLS0tLS079MuAuTRLWE7w9z+o8TB1FeZF9Fd3bI7WlpaWlpaWlpaWlraDbSpLjedP5Xp2iklKVmW57u6qf5T2qSlpaWlpaWlpaWlpd1He93LapPiDLHxKrzUmFmGljTJMrVyPpl1SUtLS0tLS0tLS0tL+w7tZw/luLdZtrc98qSRcoFUD7zCGP/mXFpaWlpaWlpaWlpa2i207fltWMxr2+q5i6n+TWLMo0poaWlpaWlpaWlpaWm30ibZt0VvdZDJYvTJFRJo+2PQ0tLS0tLS0tLS0tJuoF3kujpfJCS8kZLg8+3VUgKlpaWlpaWlpaWlpaXdT/stE14hVF6LzslUqys/wbjvHDA1f9LS0tLS0tLS0tLS0u6i/Uxz436lq6yVa8eXlH3XGk+e279+0dLS0tLS0tLS0tLSvl17ho7II5BH2Rk7nVGSYJ08mQej1B+IlpaWlpaWlpaWlpZ2C+1Uzitj/Nedk81ebFN3Zn6Cupd23iOblpaWlpaWlpaWlpb23dqyB/XtmikYFsqDPs2rjCBJ4yfTVWhpaWlpaWlpaWlpad+vXbQ7jgcZMzVcliR4dRW/K2+eTUtLS0tLS0tLS0tLu5N2de+2LTJFztTKWRbCnSGVHuG+tLS0tLS0tLS0tLS0u2gnSm6GrI+WNrGeLpqeOf1A6Za0tLS0tLS0tLS0tLQ7aWt8+0yMqxVy5Su1kle2UrvyJtvpDFpaWlpaWlpaWlpa2u20tThXHqNds3aVQSZ5XGRzt+VO27S0tLS0tLS0tLS0tG/WrmtwaTVcHvc/PWTahq0m1RJXc7alpaWlpaWlpaWlpaV9s7Ydtl+S4LGMg+3gkStvBjAJcsmQlpaWlpaWlpaWlpZ2A20pv4379JErZMc6LnIa2Z8y5nrIfzmXlpaWlpaWlpaWlpZ2F23Odc1ytdIleeU7truypQElbY6lpaWlpaWlpaWlpaXdRHssd7Ie93mOaYFbSqAjLHBLhcJ1xqSlpaWlpaWlpaWlpd1A2zZNpkyYym+fDzTKcJP0aE8XzNHS0tLS0tLS0tLS0m6mXUwpScNIUsHuXPRurguA7Y9BS0tLS0tLS0tLS0u7mTYly1Lxm27WNmbeKoNtn2aOkhctLS0tLS0tLS0tLe1O2hIWV/uk5S9PyfIqtb/pbQqay8V2tLS0tLS0tLS0tLS0b9YWzxnqbefzHdjaLs626zL3adLS0tLS0tLS0tLS0m6mHSUE5iVsqSh4hGQ5XfnMe6yluSZhcRwtLS0tLS0tLS0tLe2btelVxpJMc/unhWvNnymVPtif7UmPKC0tLS0tLS0tLS0t7Yu06yA3/a+81dPSWy72pdPG4+oeLS0tLS0tLS0tLS3te7THIkCWjdHOsGZtSoLtp3N5lYcpkpaWlpaWlpaWlpaW9pXaxCsZs50eeYU8OeZJIyONi8wRdqymlNDS0tLS0tLS0tLS0u6hPboxkNdiouSUGNuttVN2/DvVPVpaWlpaWlpaWlpa2q20Zxfurhwqy6iSYzHpf7rHdD1aWlpaWlpaWlpaWtp9tO29fxbn1rP3015suZJXF8fl0Se0tLS0tLS0tLS0tLT7aGvjY7lIPZBkJQmObqD/EaZHTttj09LS0tLS0tLS0tLS7qL9/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817W9ibLveeVntBwAAAABJRU5ErkJggg==", - "revision": "85b3de77b7b44d6e971ac935", + "revision": "09fee973d49b42f6b6334b50", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2145,10 +1590,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "6e764d158b5f4c97a12e8d4c", + "revision": "da1eb8a9d15f46ed96a1f1f7", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2163,28 +1608,19 @@ "total_amount": 1009.9, "history_id": 1677357024740, "id": 55096573577, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - }, + "date_created": "2023-02-25T16:30:25.343-04:00", + "date_last_updated": "2023-02-25T16:30:25.343-04:00", + "date_of_expiration": "2023-02-26T16:30:25.167-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "00b9c187dec7426fa7ab7477", + "revision": "444a5f0da747482ba0e73fd5", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2192,10 +1628,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "823fa0fb695c4b37ba321e25", + "revision": "c12c3df8c4244a1687e2f924", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2203,10 +1639,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "bf93d86e4cf849368e060db5", + "revision": "1114c71b388b42e188293eeb", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2214,24 +1650,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "Paulo Fagner de Oliveira", - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "7d9fe18fce2b4ac7b359443b", + "revision": "4f44bc02309140e8b29580c8", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2239,10 +1663,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "398440094e704ac891240ae4", + "revision": "0562d6ed74614a89b0d70dee", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2252,24 +1676,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.34650000000000003, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "amount": 0.34650000000000003 }, - "revision": "fc95f479f033447a90d30e2f", + "revision": "925d59567721461c91eeb0eb", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2281,24 +1693,12 @@ "net_received_amount": 0, "total_paid_amount": 35.35, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "installment_amount": 0 }, - "revision": "ee92908524754157bd00c89c", + "revision": "c3d724e99ace4acdb6640e2b", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2306,10 +1706,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55102778083/ticket?caller_id=1310149122&hash=732fd12f-b6ab-488b-bf46-c6e842577653", - "revision": "144a83de7f48460aa658b8e2", + "revision": "6788f412e53c42bc97fea699", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2317,10 +1717,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIyElEQVR42u3dW47jNhAFUO5A+9+ldqAgyMti3aKVTBBkxKOPRnfblg79V6jXuH6i6xy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tP++dszX8ev/jj9f+OO3Xz/1cU03+P3V47e7jz+fM6Zn/P6/25s/n3Zj0NLS0tLS0tLS0tLSbqI9PkO26c/PuzdnSdC/3pcOlD67YNDS0tLS0tLS0tLS0m6gnSjTBz5DySkmvJ2qRJFNpFrCy2PBoKWlpaWlpaWlpaWl3VPbZPJKTm/ypOPeIsspxiw/aGlpaWlpaWlpaWlpae9lluk5kzYVTT4vvUx3oaWlpaWlpaWlpaWl3U+b8bVDrpzgLN1rn+9r++em0svrh2pEaWlpaWlpaWlpaWlpf3ZtO6Xkv/3xozNVaGlpaWlpaWlpaWlpf1Jtvs6SiJsSdmWsZJv2q55804WFlpaWlpaWlpaWlpb23dqzRHA5iXfcp0LeDtReZYz/1E53hhmUi+weLS0tLS0tLS0tLS3tS7Wfv02damc3JHKKNq8wVvIskyJTi91UiRkeSUtLS0tLS0tLS0tL+2ZtuUltf8vJuZZ3lbgzrWH7fNDIQ0toaWlpaWlpaWlpaWn30ZYxIhP5KtvWplhvel+qyUzHbWdL0tLS0tLS0tLS0tLSbqbN+DOUVKYCydF5UqvbmXvl0ldFS0tLS0tLS0tLS0u7hfYzCFwNIynT+o/uaC2gjROvLsakpaWlpaWlpaWlpaXdQJtniaTU3bkIEdMMk1KJOb25fgW5V46WlpaWlpaWlpaWlvbd2nTlzrdpNklTjrnIDI7Q73YuIktaWlpaWlpaWlpaWtottFPn23ST3L12lv65BPhsibvuJ62PTOsDaGlpaWlpaWlpaWlpt9C2c/ZTArDUWrZxZ7OLLYSI9fSPdhDQ0tLS0tLS0tLS0tK+R9vKUnh5lYAvT/A/QxSZhpu0rx60tLS0tLS0tLS0tLTbaFPU16xIS3HndL7pQPku02bs6VbLGlFaWlpaWlpaWlpaWtqXaq8SDrbZuMk4UVLnW5aliDF/N7S0tLS0tLS0tLS0tG/Wrkc5lldrFjA1x5X71TixjVRL8SctLS0tLS0tLS0tLe3btWn44/Vl/1kdCJmG/FdyejUPMjloaWlpaWlpaWlpaWk30YYX458PgsB0lnUsWuLOR1WXtLS0tLS0tLS0tLS0b9SOsvCsRIptM1uaD3l2z66vliLM8WXWJS0tLS0tLS0tLS0t7au0pbftLCm+9L40OLJ0w32dLVnC0PNLFElLS0tLS0tLS0tLS/s+bZ7CP3lGSPGdXa3lkePT6X2L4POgpaWlpaWlpaWlpaXdS5tKII9yllRhmTra2tmS32LHf7IbjpaWlpaWlpaWlpaW9gXa6Yl5+kgTaKZ5JW3ImZN96/JOWlpaWlpaWlpaWlraDbQPGtK+3X3k+O/vR4x5VAktLS0tLS0tLS0tLe0G2gnVdq+FishV2DgWVZc55Hyei6SlpaWlpaWlpaWlpX2LNmXUvg2JbIf8X+GFWo7Ztr+VVCAtLS0tLS0tLS0tLe0u2pK1OxY5vZwATJWT9S3rjQB5KxstLS0tLS0tLS0tLe27tVOaLp/gyJNLUhRZPNcdcI46ujJZaGlpaWlpaWlpaWlpt9KW2SRNTu9btJkWaqfp/2kwSh1JSUtLS0tLS0tLS0tLu4W2PGcK7s6c7GuXpaXwsqCmE9TfaGlpaWlpaWlpaWlp99GmJF472TGP52+KJj/LLJvT5xa7g5aWlpaWlpaWlpaWdidtieueBZDtUuwcXtasXTpzmvlPS0tLS0tLS0tLS0v7fu0oK67bzWqpa650ud1KL/OfKYBMN6WlpaWlpaWlpaWlpd1H2+TvUqBZknh5RVodDTm+3flxFElLS0tLS0tLS0tLS/sq7dGl2q77s+vVlkquz5KXbNdP0NLS0tLS0tLS0tLSbqFN4x1LSJfa1Uboi5vWY59lj1up9ryVd3YWWlpaWlpaWlpaWlra12uncSMpEkxVlylNt2xrixm/3Bx30NLS0tLS0tLS0tLS7qTNhY816is5uBr/LSZKjvtZat3nk6n+tLS0tLS0tLS0tLS0b9Oup5SkWZBTWWT5RD3fFCe2p38y1Z+WlpaWlpaWlpaWlvZ92qP0u6WBkCUfWJ+TyizTzP88avJ6UnVJS0tLS0tLS0tLS0v7Pm0pvTzCArUmCExpupwAHGU/W6rxLN8XLS0tLS0tLS0tLS3tFto6GrItlWyXWOfd12dorGurLuv2bVpaWlpaWlpaWlpa2i20+WFpQ/W5nE3yILuXRk22M1FoaWlpaWlpaWlpaWn30Y7FVMg0N+T5erWpz269ALuJaGlpaWlpaWlpaWlpad+uLVHfCLymra0d2V8Wap+LqsuyeHuZi6SlpaWlpaWlpaWlpX2bNnWvfX5qFFSKGPN8kRqGpqrLdcxKS0tLS0tLS0tLS0u7iXbc71lrKMtjp2TfWJRtprOkas/yFdDS0tLS0tLS0tLS0m6gTVdZfTbK2P1cQ1lPn/N8V+iku8oISVpaWlpaWlpaWlpa2i20Y76OLjC8FqP4203WeVxkuwB7PM7u0dLS0tLS0tLS0tLSvkd7hAAyoc571m6UzrdcxZlu2kzwfxJF0tLS0tLS0tLS0tLSvlKbQ7pjMRUyBZopIA3P7iPV6ZG0tLS0tLS0tLS0tLR7a8vwkDOvwn7QTlfqNJvY8WF2j5aWlpaWlpaWlpaWdg/tZ+pu5JH9efDIdW+TG7lhbrpfasWjpaWlpaWlpaWlpaXdR7uuuiy3G2FtWjNCMnXcrZvjfrQbjpaWlpaWlpaWlpaW9qfTplLJpvNtSsTl+SI3fNrAttjUlhe80dLS0tLS0tLS0tLSvln7/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817S/WesxQ9BOm/QAAAABJRU5ErkJggg==", - "revision": "5300dcdf85b846c48599d74b", + "revision": "ff651f4eed9f4eb9948f3dd5", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2328,10 +1728,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540535.355802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter55102778083630472DE", - "revision": "58d6b393053a451eba37599e", + "revision": "ad60ff63c1944b15af9e1d6a", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2339,10 +1739,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "fbc5bd61889e4b36acb6d47b", + "revision": "93f7a6532b42481fa2a80408", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2357,28 +1757,19 @@ "total_amount": 35.35, "history_id": 1677366880189, "id": 55102778083, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - }, + "date_created": "2023-02-25T19:14:40.808-04:00", + "date_last_updated": "2023-02-25T19:14:40.808-04:00", + "date_of_expiration": "2023-02-26T19:14:40.616-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "55dbc5b6e7ab49ca9427d661", + "revision": "0a5db03aef5d473ea4e33be4", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2386,10 +1777,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 35,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "54837e02c952492f87bb422d", + "revision": "6c01104fe3ba4c93a8625560", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509507, + "modified": 1701463509507 } }, { @@ -2397,24 +1788,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "costs": [] }, - "revision": "748fef3545e2455197e88e44", + "revision": "433402a261864fca9e261665", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509508, + "modified": 1701463509508 } }, { @@ -2428,28 +1807,19 @@ "total_amount": 234.59, "history_id": 1677710195891, "id": 1677710195891, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - }, + "date_created": "2023-03-01T22:36:35.891Z", + "date_last_updated": "2023-03-01T22:36:35.891Z", + "date_of_expiration": "2023-03-31T22:36:35.891Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL", "payment_method": "whatsapp" }, - "revision": "a4ed94dbc1a0424ca5f166b7", + "revision": "1f8e597c8faf4289bfed15db", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509508, + "modified": 1701463509508 } }, { @@ -2457,10 +1827,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 234,59 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "a7242fb72d6f450c86f9136d", + "revision": "dd9670d77b47401b94128426", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509508, + "modified": 1701463509508 } }, { @@ -2468,24 +1838,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - } + "costs": [] }, - "revision": "3fbd94e6fc024816a0862091", + "revision": "bfed3737ce064139bf0e5b4f", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509508, + "modified": 1701463509508 } }, { @@ -2499,18 +1857,9 @@ "total_amount": 35.99, "history_id": 1677710725908, "id": 1677710725908, - "date_created": { - "type": 6, - "value": 1701459383463 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383463 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383463 - }, + "date_created": "2023-03-01T22:45:25.908Z", + "date_last_updated": "2023-03-01T22:59:31.236Z", + "date_of_expiration": "2023-03-31T22:45:25.908Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -2522,10 +1871,10 @@ "payment_method_id": "whatsapp", "payment_method": "whatsapp" }, - "revision": "62f9ca7a929949a4ac37d79f", + "revision": "20ac7a3392f94bfcbd8001a6", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509508, + "modified": 1701463509508 } }, { @@ -2533,10 +1882,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 35,99 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "541ca9f50c6f4ae89644fcaf", + "revision": "7688fdbbbe7b4b389d2f8fda", "revision_nr": 1, - "created": 1701459383463, - "modified": 1701459383463 + "created": 1701463509508, + "modified": 1701463509508 } }, { @@ -2544,24 +1893,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383464 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383464 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383464 - } + "costs": [] }, - "revision": "bb29d837449e4497aa47297e", + "revision": "65a0b7e2738f4434b2ce0ac1", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509508, + "modified": 1701463509508 } }, { @@ -2575,18 +1912,9 @@ "total_amount": 450.32, "history_id": 1677711669840, "id": 1677711669840, - "date_created": { - "type": 6, - "value": 1701459383464 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383464 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383464 - }, + "date_created": "2023-03-01T23:01:09.840Z", + "date_last_updated": "2023-03-01T23:09:24.561Z", + "date_of_expiration": "2023-03-31T23:01:09.840Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -2598,10 +1926,10 @@ "payment_method_id": "whatsapp", "payment_method": "whatsapp" }, - "revision": "007aa6a337c94b01b24f10cc", + "revision": "31d8e6609b2449509676a771", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509508, + "modified": 1701463509508 } }, { @@ -2609,10 +1937,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 450,32 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "7ade30f495cf4f58a3be0233", + "revision": "6cbea7ef9ebc4129b7ca6894", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509508, + "modified": 1701463509508 } }, { @@ -2620,24 +1948,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383464 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383464 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383464 - } + "costs": [] }, - "revision": "d14ff71dc07c469fba8a16b5", + "revision": "6509bc31bd4a4a938bd2fb9d", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509509, + "modified": 1701463509509 } }, { @@ -2652,18 +1968,9 @@ "total_amount": 600.2, "history_id": 1677716372778, "id": 1677716372778, - "date_created": { - "type": 6, - "value": 1701459383464 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383464 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383464 - }, + "date_created": "2023-03-02T00:19:32.778Z", + "date_last_updated": "2023-03-02T00:20:44.134Z", + "date_of_expiration": "2023-04-01T00:19:32.778Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -2671,10 +1978,10 @@ "money_release_date": "2023-03-02T00:20:44.134Z", "money_release_status": "rejected" }, - "revision": "3b4ec0110e674a8bac9f66cc", + "revision": "d46a0764457547ceaa2a994a", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509509, + "modified": 1701463509509 } }, { @@ -2682,10 +1989,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 600,20 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "2b86b4f323634573a4b3978d", + "revision": "61bc525c94fa4803a0a7f9a4", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509509, + "modified": 1701463509509 } }, { @@ -2693,24 +2000,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383464 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383464 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383464 - } + "costs": [] }, - "revision": "4a291b437257476ab04975a9", + "revision": "e925da0abf974c6fa8a54665", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509509, + "modified": 1701463509509 } }, { @@ -2725,18 +2020,9 @@ "total_amount": 602.99, "history_id": 1677721233156, "id": 1677721233156, - "date_created": { - "type": 6, - "value": 1701459383464 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383464 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383464 - }, + "date_created": "2023-03-02T01:40:33.156Z", + "date_last_updated": "2023-03-02T02:17:46.177Z", + "date_of_expiration": "2023-04-01T01:40:33.156Z", "operation_type": "regular_payment", "status": "in_process", "status_detail": "pending_review_manual", @@ -2744,10 +2030,10 @@ "money_release_date": "2023-03-02T02:17:46.177Z", "money_release_status": "in_process" }, - "revision": "0dab1d25dafc4dd0b1edc5d0", + "revision": "ef3a1d8a0f9d44448350654f", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509509, + "modified": 1701463509509 } }, { @@ -2755,10 +2041,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 602,99 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "965190165a8548c294201812", + "revision": "eb978f9fb83c45679b8c8afd", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509509, + "modified": 1701463509509 } }, { @@ -2766,24 +2052,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383464 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383464 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383464 - } + "costs": [] }, - "revision": "c80de7fa58044a51bed78cd4", + "revision": "3f282c370a174a54a3a21afa", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509510, + "modified": 1701463509510 } }, { @@ -2798,18 +2072,9 @@ "total_amount": 34.89, "history_id": 1677761687105, "id": 1677761687105, - "date_created": { - "type": 6, - "value": 1701459383464 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383464 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383464 - }, + "date_created": "2023-03-02T12:54:47.105Z", + "date_last_updated": "2023-03-02T12:58:14.846Z", + "date_of_expiration": "2023-04-01T12:54:47.105Z", "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", @@ -2817,10 +2082,10 @@ "money_release_date": "2023-03-02T12:58:14.846Z", "money_release_status": "cancelled" }, - "revision": "7852f6a6eb2343f1a559cfa9", + "revision": "b8bd90703c524cc6a47d969e", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509510, + "modified": 1701463509510 } }, { @@ -2828,10 +2093,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 34,89 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "e40fc0f09d3b49899f5efd83", + "revision": "b9cfadb199cb4f76817b7028", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509510, + "modified": 1701463509510 } }, { @@ -2839,24 +2104,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383464 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383464 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383464 - } + "costs": [] }, - "revision": "9a62e94338614fc4af1fed50", + "revision": "830bb6d4f2274d599fa85919", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509510, + "modified": 1701463509510 } }, { @@ -2871,18 +2124,9 @@ "total_amount": 43.78, "history_id": 1677762883870, "id": 1677762883870, - "date_created": { - "type": 6, - "value": 1701459383464 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383464 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383464 - }, + "date_created": "2023-03-02T13:14:43.870Z", + "date_last_updated": "2023-03-02T13:17:43.393Z", + "date_of_expiration": "2023-04-01T13:14:43.870Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -2892,10 +2136,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "bb107a2c23cc4b15887e8242", + "revision": "f952b4cdcd784787980a9418", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509510, + "modified": 1701463509510 } }, { @@ -2903,10 +2147,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 43,78 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "dfa1d143ab174e6ebe06b232", + "revision": "bcb8b78f47f24d6983e64b32", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509510, + "modified": 1701463509510 } }, { @@ -2914,24 +2158,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383464 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383464 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383464 - } + "costs": [] }, - "revision": "2573a7df0b09419198be5b5e", + "revision": "4fc769f89e5b479291ceb1fa", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509510, + "modified": 1701463509510 } }, { @@ -2946,18 +2178,9 @@ "total_amount": 29.91, "history_id": 1677822431645, "id": 1677822431645, - "date_created": { - "type": 6, - "value": 1701459383464 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383464 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383464 - }, + "date_created": "2023-03-03T05:47:11.645Z", + "date_last_updated": "2023-03-03T05:48:12.770Z", + "date_of_expiration": "2023-04-02T05:47:11.645Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -2967,10 +2190,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "278c7e296b1a473fac298356", + "revision": "54e9db468208403c94779f57", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509510, + "modified": 1701463509510 } }, { @@ -2978,10 +2201,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 29,91 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "ed1b94f88e6d4bf6b069120e", + "revision": "df1eb4dc598c4d27a2d7bef4", "revision_nr": 1, - "created": 1701459383464, - "modified": 1701459383464 + "created": 1701463509510, + "modified": 1701463509510 } }, { @@ -2989,24 +2212,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - } + "costs": [] }, - "revision": "5cc6da4a2847422ab86e7f4d", + "revision": "7047cd0086ec4b3ebf97f584", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509510, + "modified": 1701463509510 } }, { @@ -3021,18 +2232,9 @@ "total_amount": 50, "history_id": 1677831643976, "id": 1677831643976, - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - }, + "date_created": "2023-03-03T08:20:43.976Z", + "date_last_updated": "2023-03-03T08:23:18.262Z", + "date_of_expiration": "2023-04-02T08:20:43.976Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -3042,10 +2244,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "1299748133c94af19a5a1841", + "revision": "478097a75c564372b721a209", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509510, + "modified": 1701463509510 } }, { @@ -3053,10 +2255,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "7c2247385d0545d190677331", + "revision": "3b666101e7d44d598a8faa20", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509510, + "modified": 1701463509510 } }, { @@ -3064,24 +2266,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - } + "costs": [] }, - "revision": "bd7f488f7e4d465c9b415c8a", + "revision": "32f5aff4e4e04627ba7ccbe8", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509510, + "modified": 1701463509510 } }, { @@ -3096,18 +2286,9 @@ "total_amount": 100, "history_id": 1677952604160, "id": 1677952604160, - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - }, + "date_created": "2023-03-04T17:56:44.160Z", + "date_last_updated": "2023-03-13T13:32:24.731Z", + "date_of_expiration": "2023-04-03T17:56:44.160Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -3115,10 +2296,10 @@ "money_release_date": "2023-03-13T13:32:24.731Z", "money_release_status": "rejected" }, - "revision": "d907f7a4f30e4aa19f297d0c", + "revision": "8521b70760794758930c026e", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509510, + "modified": 1701463509510 } }, { @@ -3126,10 +2307,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "88e9692ac3be47a79f4f4e1a", + "revision": "7090d3ebf3e74874b1b7eb94", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509510, + "modified": 1701463509510 } }, { @@ -3147,24 +2328,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - } + "costs": [] }, - "revision": "2318d02a42b547d3af171966", + "revision": "13c993bd1c0b4a2da19eddee", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509510, + "modified": 1701463509510 } }, { @@ -3180,18 +2349,9 @@ "original_amount": 141586, "total_amount": 141586, "id": 1678033196645, - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - }, + "date_created": "2023-03-05T16:19:56.645Z", + "date_last_updated": "2023-03-05T16:19:56.645Z", + "date_of_expiration": "2023-03-05T16:19:56.645Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3200,10 +2360,10 @@ "history_id": 1678033196645, "description": "Compra de 141586 IVIP por 20 BRL" }, - "revision": "791f092ad19c4fff80f48fd2", + "revision": "d348a57a35cd4f54b9fbf691", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509510, + "modified": 1701463509510 } }, { @@ -3221,24 +2381,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - } + "costs": [] }, - "revision": "108946646a454a93a16ec16a", + "revision": "9329f1dfda0b436fa425f1df", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3254,18 +2402,9 @@ "original_amount": 269014, "total_amount": 269014, "id": 1678033334564, - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - }, + "date_created": "2023-03-05T16:22:14.564Z", + "date_last_updated": "2023-03-05T16:22:14.564Z", + "date_of_expiration": "2023-03-05T16:22:14.564Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3274,10 +2413,10 @@ "history_id": 1678033334564, "description": "Compra de 269014 IVIP por 38 BRL" }, - "revision": "81f484b8ba484a6f9d2c4b9f", + "revision": "267c5f92275d4c1d81eef0dc", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3295,24 +2434,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - } + "costs": [] }, - "revision": "7779848f38ed4105911c180c", + "revision": "aae83ebe1b704a32a3744611", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3328,18 +2455,9 @@ "original_amount": 297331, "total_amount": 297331, "id": 1678033849155, - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - }, + "date_created": "2023-03-05T16:30:49.155Z", + "date_last_updated": "2023-03-05T16:30:49.155Z", + "date_of_expiration": "2023-03-05T16:30:49.155Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3348,10 +2466,10 @@ "history_id": 1678033849155, "description": "Compra de 297331 IVIP por 42 BRL" }, - "revision": "18a8a45fe3ce4304838ee2d2", + "revision": "1fd72ff9774d4f1ea4a02ccd", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3369,24 +2487,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - } + "costs": [] }, - "revision": "cc38468c71db4746ad1bbbfd", + "revision": "dac8823b6078421195aec385", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3402,18 +2508,9 @@ "original_amount": 141660, "total_amount": 141660, "id": 1678034274118, - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - }, + "date_created": "2023-03-05T16:37:54.118Z", + "date_last_updated": "2023-03-05T16:37:54.118Z", + "date_of_expiration": "2023-03-05T16:37:54.118Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3422,10 +2519,10 @@ "history_id": 1678034274118, "description": "Compra de 141660 IVIP por 20 BRL" }, - "revision": "2d9cbc69871540a4ba7380b8", + "revision": "8fa38d13224342f28aa299f6", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3443,24 +2540,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - } + "costs": [] }, - "revision": "3fb836f858524fe8ad00488d", + "revision": "b399390f7a14411aa0a0d290", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3476,18 +2561,9 @@ "original_amount": 141586, "total_amount": 141586, "id": 1678034346295, - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - }, + "date_created": "2023-03-05T16:39:06.295Z", + "date_last_updated": "2023-03-05T16:39:06.295Z", + "date_of_expiration": "2023-03-05T16:39:06.295Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3496,10 +2572,10 @@ "history_id": 1678034346295, "description": "Compra de 141586 IVIP por 20 BRL" }, - "revision": "968f157bdf3c4580a06a4ca2", + "revision": "319669a80f63485e826eb2ae", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3517,24 +2593,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - } + "costs": [] }, - "revision": "4733d233abb542519ff5d1a0", + "revision": "4472e7f4bff842da99f872ad", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3550,18 +2614,9 @@ "original_amount": 424981, "total_amount": 424981, "id": 1678034463284, - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - }, + "date_created": "2023-03-05T16:41:03.284Z", + "date_last_updated": "2023-03-05T16:41:03.284Z", + "date_of_expiration": "2023-03-05T16:41:03.284Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3570,10 +2625,10 @@ "history_id": 1678034463284, "description": "Compra de 424981 IVIP por 60 BRL" }, - "revision": "c4c2a1ac0c7543e3b1266e9f", + "revision": "bc07cb5a130142b9a40f5cb5", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3591,24 +2646,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - } + "costs": [] }, - "revision": "7c494957eb8e4172a9548ce4", + "revision": "5c52140794864a528e97969f", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3624,18 +2667,9 @@ "original_amount": 141586, "total_amount": 141586, "id": 1678034665927, - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - }, + "date_created": "2023-03-05T16:44:25.927Z", + "date_last_updated": "2023-03-05T16:44:25.927Z", + "date_of_expiration": "2023-03-05T16:44:25.927Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3644,10 +2678,10 @@ "history_id": 1678034665927, "description": "Compra de 141586 IVIP por 20 BRL" }, - "revision": "498a7f2361794bb6bba606d1", + "revision": "6582a9ee9c0b412f9bda8297", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3665,24 +2699,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - } + "costs": [] }, - "revision": "4f748ced26dd47d398dd5f67", + "revision": "66b0587608a94de4b34f8b07", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3698,18 +2720,9 @@ "original_amount": 2000, "total_amount": 2000, "id": 1678041814665, - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - }, + "date_created": "2023-03-05T18:43:34.665Z", + "date_last_updated": "2023-03-05T18:43:34.665Z", + "date_of_expiration": "2023-03-05T18:43:34.665Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3717,10 +2730,10 @@ "currency_id": "BRL", "history_id": 1678041814665 }, - "revision": "019a9774a5264f7c89677179", + "revision": "8f0f412bf3374c57906adf4f", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3728,10 +2741,10 @@ "content": { "type": "STRING", "value": "Ganho 10% na pré-venda ao indicar o nosso aplicativo", - "revision": "970010cd7e144f8e96748525", + "revision": "5a963c37ad9b4bab9a654e01", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3739,24 +2752,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - } + "costs": [] }, - "revision": "ea98c3299bec4414a6dc202c", + "revision": "c2ff9ec3be0443c9934cd2ff", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3771,18 +2772,9 @@ "total_amount": 60, "history_id": 1678047987815, "id": 1678047987815, - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - }, + "date_created": "2023-03-05T20:26:27.815Z", + "date_last_updated": "2023-03-13T13:43:04.618Z", + "date_of_expiration": "2023-04-04T20:26:27.815Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -3790,10 +2782,10 @@ "money_release_date": "2023-03-13T13:43:04.618Z", "money_release_status": "rejected" }, - "revision": "d74d32a8ab3044099e9d0e11", + "revision": "c908686b14c6434d9e93e23b", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3801,10 +2793,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 60,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "14dd8550cb1c4a9a9443c074", + "revision": "26abeaaf0f25495bbf83ca83", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3822,24 +2814,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - } + "costs": [] }, - "revision": "8ae52924e15b46b9abb722a2", + "revision": "16f0f86ffacb45c5b747bb07", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3855,18 +2835,9 @@ "original_amount": 14306893, "total_amount": 14306893, "id": 1678160538199, - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - }, + "date_created": "2023-03-07T03:42:18.199Z", + "date_last_updated": "2023-03-07T03:42:18.199Z", + "date_of_expiration": "2023-03-07T03:42:18.199Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3875,10 +2846,10 @@ "history_id": 1678160538199, "description": "Compra de 14306893 IVIP por 2000 BRL" }, - "revision": "f28e9aa8121f4b018e097fce", + "revision": "8ad143c3cde647568b76b5f2", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3896,24 +2867,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - } + "costs": [] }, - "revision": "88fddc192e764aaaa0f3a3cc", + "revision": "40a834cd1c8543ea931e177f", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3929,18 +2888,9 @@ "original_amount": 142846, "total_amount": 142846, "id": 1678284807612, - "date_created": { - "type": 6, - "value": 1701459383465 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383465 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383465 - }, + "date_created": "2023-03-08T14:13:27.612Z", + "date_last_updated": "2023-03-08T14:13:27.612Z", + "date_of_expiration": "2023-03-08T14:13:27.612Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -3949,10 +2899,10 @@ "history_id": 1678284807612, "description": "Compra de 142846 IVIP por 20 BRL" }, - "revision": "b6883fb43d7b4e19b3f66eec", + "revision": "22817128251e4570b94a254e", "revision_nr": 1, - "created": 1701459383465, - "modified": 1701459383465 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3962,24 +2912,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 32, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "amount": 32 }, - "revision": "59164f044cba487cabd54757", + "revision": "20a5fc343de2403c8a47c759", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3987,10 +2925,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5bff836170004ca6910044f3", + "revision": "3c082d968e4145f0b6b7f03f", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -3998,10 +2936,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "ce8dcfe82d3c4215a86d22bb", + "revision": "c2454c62cec54255a6b9d52f", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4016,28 +2954,19 @@ "total_amount": 432, "history_id": 1678325359354, "id": 1678325359354, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-09T01:29:19.354Z", + "date_last_updated": "2023-03-09T01:29:19.354Z", + "date_of_expiration": "2023-04-08T01:29:19.354Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "3d295ecaaa68463d897b6c8d", + "revision": "db9f4044c24c497b8e35f91d", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4045,10 +2974,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês e liberação final", - "revision": "4169a9cce4224b7888125a99", + "revision": "a33a9ae40a694ea4b219c1f8", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4058,24 +2987,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "amount": 120 }, - "revision": "9c80f8b651b148beb3f4da28", + "revision": "2198f920f0d44b52beb0bbe9", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4083,10 +3000,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7a1e5084d77a469bb570b066", + "revision": "44fca3302a574b8cbc1a6d64", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4094,10 +3011,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "7f4bc2b744d840fa9419ca2e", + "revision": "bf1a0355c1e549b5be7917ec", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4112,18 +3029,9 @@ "total_amount": 3120, "history_id": 1678400755247, "id": 1678400755247, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-09T22:25:55.247Z", + "date_last_updated": "2023-03-09T22:27:52.142Z", + "date_of_expiration": "2023-04-08T22:25:55.247Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -4132,10 +3040,10 @@ "money_release_date": "2023-03-09T22:27:52.142Z", "money_release_status": "approved" }, - "revision": "6088113ac6a5467e9c74988c", + "revision": "a86e8c628ab64edebce1eb87", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4143,10 +3051,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 3.120,00", - "revision": "ded28b009558430c8ced3a17", + "revision": "2d590a4063be43fca8d25be0", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4156,24 +3064,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 16, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "amount": 16 }, - "revision": "b60f9f0a2e604721a41163ba", + "revision": "24630b2d7e9f4bc1abf1cc6e", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4181,10 +3077,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4d8701c809b945279e4899ef", + "revision": "fc186a6be3c7417eba5be2ef", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4192,10 +3088,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "00d1975be2e643a2ba8f2303", + "revision": "00d8af20a1da4b2b8fc02cb5", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4210,18 +3106,9 @@ "total_amount": 416, "history_id": 1678401099895, "id": 1678401099895, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-09T22:31:39.895Z", + "date_last_updated": "2023-03-09T22:32:36.010Z", + "date_of_expiration": "2023-04-08T22:31:39.895Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -4231,10 +3118,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "fbedd7f9776748299a4c640c", + "revision": "16448329fd1648088bf7ba6e", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4242,10 +3129,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 416,00", - "revision": "8d299e14105f4fd390cba705", + "revision": "88dbb4e5869e441f93a08fd7", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4255,24 +3142,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 9 parcela(s) 18.00%", - "amount": 108, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "amount": 108 }, - "revision": "0fcee11bbfc341c1ad29a356", + "revision": "0f7de24bdb2b4e59a260bbb4", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4280,10 +3155,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "aaae07c5c1c4469cb1acf0ca", + "revision": "5b3d365974e845ce9dc4dca2", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4291,10 +3166,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "d3b9ff19b38f48d6bfc8a37d", + "revision": "af55780937094c1fb49faff8", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4309,18 +3184,9 @@ "total_amount": 708, "history_id": 1678401292954, "id": 1678401292954, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-09T22:34:52.954Z", + "date_last_updated": "2023-03-09T22:35:45.264Z", + "date_of_expiration": "2023-04-08T22:34:52.954Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -4328,10 +3194,10 @@ "money_release_date": "2023-03-09T22:35:45.264Z", "money_release_status": "rejected" }, - "revision": "aed5ec8676c14e2f98a9bd59", + "revision": "75b26afd0d824b69993e4854", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4339,10 +3205,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 600,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 9 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 708,00", - "revision": "00f609f0618948d8a1f6f845", + "revision": "2d0490bc2bd04ff894c860a3", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4352,24 +3218,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 12, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "amount": 12 }, - "revision": "61d35964947b4cdcb3249775", + "revision": "2d69762f15ce4737832bf0ed", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4377,10 +3231,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e4447345ac3444b7877d1678", + "revision": "6b7fad4fa24643aea231b582", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4388,10 +3242,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "04852a11beec42c9bd06cb70", + "revision": "9497edcb1069429895539b13", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4406,18 +3260,9 @@ "total_amount": 312, "history_id": 1678401795273, "id": 1678401795273, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-09T22:43:15.273Z", + "date_last_updated": "2023-03-21T13:21:47.084Z", + "date_of_expiration": "2023-04-08T22:43:15.273Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -4427,10 +3272,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "484c707286294dd3b5e14af6", + "revision": "34e6c76a497d46289a91e22f", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4438,10 +3283,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 312,00", - "revision": "61fd62e0603d4dbabdb39663", + "revision": "ffca6fdfd5a347dba2d6f14a", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4449,24 +3294,12 @@ "content": { "type": "OBJECT", "value": { - "content": "23796929000000023493380261020453727300633330", - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "content": "23796929000000023493380261020453727300633330" }, - "revision": "92a69942c14345fa8a12b095", + "revision": "33e6da92e7dc4d88b7ad2e46", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4476,24 +3309,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", - "amount": 3.49, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "amount": 3.49 }, - "revision": "5a680a94fc614455b6db4d89", + "revision": "42a48a8119244245bd561880", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4509,24 +3330,12 @@ "total_paid_amount": 23.49, "overpaid_amount": 0, "installment_amount": 0, - "financial_institution": "bradesco", - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "financial_institution": "bradesco" }, - "revision": "b42226aec4174048b2f4609c", + "revision": "2fec71f5ec4048a6b11efd9b", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4534,10 +3343,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55645430279/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55645430279&payment_method_reference_id=10204537273&hash=557e269b-6b88-40a8-b95a-ce41d6734e10", - "revision": "b19d2da1bd3f4af1a770218f", + "revision": "1b86021785f94bf5b75e34da", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4545,10 +3354,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "0d3289d17e024607a8e27b36", + "revision": "3091e1a35a014450a157ee27", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4563,28 +3372,19 @@ "total_amount": 23.490000000000002, "history_id": 1678595791470, "id": 55645430279, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-12T00:36:32.384-04:00", + "date_last_updated": "2023-03-12T00:36:32.384-04:00", + "date_of_expiration": "2023-03-15T22:59:59.000-04:00", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "f7ff018bafaa4bbb8811f780", + "revision": "bdb1130afbcc43b49add8455", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4592,10 +3392,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "b3b5b27b656244ceb3a65112", + "revision": "68e22cf9affd48fc9b87bd3c", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4603,24 +3403,12 @@ "content": { "type": "OBJECT", "value": { - "content": "23791929000000023493380261020453555300633330", - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "content": "23791929000000023493380261020453555300633330" }, - "revision": "6d66c854a4b54af0b9fb05e7", + "revision": "f44a53410f46461daceec1c7", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4630,24 +3418,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", - "amount": 3.49, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "amount": 3.49 }, - "revision": "47ecbff6f45742f8bb24f543", + "revision": "db008d3265f9461facdfbf19", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4663,24 +3439,12 @@ "total_paid_amount": 23.49, "overpaid_amount": 0, "installment_amount": 0, - "financial_institution": "bradesco", - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "financial_institution": "bradesco" }, - "revision": "4937d3aad429424eb7cd7e1b", + "revision": "5f9e70a1590f42a6a55fa462", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4688,10 +3452,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55645448309/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55645448309&payment_method_reference_id=10204535553&hash=3a19b388-0268-4177-bbf8-d1aeb0efa481", - "revision": "14b8391711b64c15aa2f72c2", + "revision": "3f63173828c24590a7279a8b", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4699,10 +3463,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "53455147ddbc42ec90cf5983", + "revision": "b224b5a3b1b84aacb5a328b9", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4717,28 +3481,19 @@ "total_amount": 23.490000000000002, "history_id": 1678595892940, "id": 55645448309, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-12T00:38:13.379-04:00", + "date_last_updated": "2023-03-12T00:38:13.379-04:00", + "date_of_expiration": "2023-03-15T22:59:59.000-04:00", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "1af24c2f88234c5681f0b1c2", + "revision": "70d4be22ce624fe49cef6ff2", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4746,10 +3501,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "ad9e6032e1774371a8b323c7", + "revision": "c22ecec259bf4644addca3cd", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4757,10 +3512,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "982cfe68d7a84152a2c64d2f", + "revision": "af5b9e017ae54d588f72182c", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4768,24 +3523,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "IVIPCOIN LTDA", - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "4872ebed860941eb8c0c2cac", + "revision": "0607db063c684165a52d2c98", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4793,10 +3536,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "02f2cd2dcbb64317905c60be", + "revision": "9f1838b6cc33491798610e77", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4806,24 +3549,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.198, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "amount": 0.198 }, - "revision": "c0191907de674ad7b710f725", + "revision": "a4cb6e9b44584dbfb70f6f96", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -4835,24 +3566,12 @@ "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "installment_amount": 0 }, - "revision": "e60a95881b314cfab95c1807", + "revision": "c94f8250ec034df5ba621462", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -4860,10 +3579,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55645618353/ticket?caller_id=1310149122&hash=8fcfd6de-ecd4-4d03-89e3-76d87270fb3b", - "revision": "da488d79a49441b7906e9ba1", + "revision": "9bb3718e955d4a5e857ffe74", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4871,10 +3590,10 @@ "content": { "type": "STRING", "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540520.205802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter556456183536304B75F", - "revision": "fd5a73c4c0c04ee7af21d303", + "revision": "496d544175734b38992ab110", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4882,10 +3601,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJgElEQVR42u3dQZLiyA4G4PSKY3BUc1QfYZasyImKnoaUlC6oefEieuyPTRMNtj/XyhJ/Klv/419/NUZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGxj/beG/xdf31P+vvj369WXq//f7o12v5Onj79eb2+z/X13m3dvn6Z/jon/+pRw0nZGRkZGRkZGRkZDyLcfzwC1LfROP6usjXdx7hzrbXRS9fH63jmWeHTxmMjIyMjIyMjIyMZzDefj+tPy/769H+n+v31zP+syB4pKLh8rqzRzAOR9Vr3V8FCiMjIyMjIyMjI+PJjWPTfaBlderHP4YG/DrJwwz3cWdkZGRkZGRkZGRkzM/v3zTUn3XAyG+vwwd1LCzWcjgjIyMjIyMjIyPjyY09JlyWvRLh/srF5MPvqZ1fMzitlBr/Pt/DyMjIyMjIyMjI+F831rWkS+ms/3/e/C/rXRkZGRkZGRkZGRn/y8adV0ijx3Z+L7H0cK/PJaT30sW/9E9fjIyMjIyMjIyMjEc3PlK1cEllxHXsxz/T6I9h/mItNXoMvMcvh3tdPujZMzIyMjIyMjIyMh7UeE3/kyIzS6BtJfCe72ydzjjfCeOsjIyMjIyMjIyMjKc0rmPRkBd6tjKvZXutHM1zX/qkr1/T8ZdXqr0PK1kZGRkZGRkZGRkZz2K8p2DLNjX2WXamxUGMj9K8b+nOLq8qJNI2RkZGRkZGRkZGxnMZc4lQ5yZex3qil907W0ishy7+I015uZcvz34xYGRkZGRkZGRkZDy+cZaLGRvzvfcSkNn2cu6tjGkJsZo+US/phIyMjIyMjIyMjIwnMj7rgCEpcwklQtoFtG5MFC87iOLK0TQt5pMMOyMjIyMjIyMjI+PxjDl7filXG77TAj8/499i0VBnK47lSPtpvoeRkZGRkZGRkZHxMMYe4uRDrXDdG1J+i0GbOtF8Cd+ZlRH3kMpp79e7MjIyMjIyMjIyMh7LmNPoW8G2cVp5D+rZXkP1PHG4S5+OXXyTnWFkZGRkZGRkZGQ8oDE8ttd+fNwjKMTS393i+lEq55PsDCMjIyMjIyMjI+OBjMPz+yMkXIYQek/d99qqv47nyrQ2j+esk+QOIyMjIyMjIyMj41mMO7PJr5Pv7KwunU1b3NIol/ZNh56RkZGRkZGRkZHxbMZ7CrbkNHqA9JJY3yksemnVr9OLzv4ejIyMjIyMjIyMjMc3xtWct8nOQq1Ezp9HzbYPynNf8kfrzpDFhZGRkZGRkZGRkfFMxrH7HsIv9yRqKV+TXjUXM64lbTH5vrPMlJGRkZGRkZGRkfEcxtlGQDkOc3mjTnMTp7MV194nhUUsRxgZGRkZGRkZGRnPYswJl1AHTLfoDK36nrYPuo4LRqeJm9lHW/tsDjsjIyMjIyMjIyPjQYxxEWfAtsncxJYqg/66Wt/LztSPagbnk549IyMjIyMjIyMj44GMsTG/vVIwOdW+pRTMbawe+neRmUfYMnQ44WX+p2JkZGRkZGRkZGQ8g3GWRu8lRFN3+AyP/887260DdjYIrcUHIyMjIyMjIyMj4+GNz4ErS0q15zTN82o5X7N3VP0RYJlh1/e1AiMjIyMjIyMjI+OxjH0yAXHasw+t+ppzj2PL096hvVQY+Vpv1pIyMjIyMjIyMjIyHsuYdxbKU15mj//X3uejXHqMw+yMXQxFw8ezFRkZGRkZGRkZGRkPZawpmJbC7LMpLzuQUCuM5Ui6oRZO+Hb+IyMjIyMjIyMjI+OxjHkfoSG6HmeTt7gd6OPtsPOesjN9jN7EXww2RkZGRkZGRkZGxnMZ89ZA4fl9jK4PwxFDvqalePvuKJc85aWVDA4jIyMjIyMjIyPjWYz5iT5kz7/fq3PIue92329x3Ms4djHVHJ2RkZGRkZGRkZHxZMZeGvNDidBaHXZ+CZVBvY8QmZnt+fn4WXaGkZGRkZGRkZGR8YDG2/erQuN3bmWieZvMdKkZnBqKv5Z6gpGRkZGRkZGRkfF0xpbS6H2SNM8595ymmW1edCmXiBMZGyMjIyMjIyMjI+MpjX0aY8lDFuui0qF5fymrQuuQmEvp4scMDiMjIyMjIyMjI+NZjDXPEs/UJstMr2WAYkjTxMWpITszrR7W+udiZGRkZGRkZGRkPLYxz1YMCZc+e5MWg+ZYzWy0eVw5Wmcr9jSRkZGRkZGRkZGRkfHgxphYv8Uh5d8PMp8VBNveuMS94S7Lz3r2jIyMjIyMjIyMjIcw9kK7h7HlqQ6ou3e+/2g3O1PrEkZGRkZGRkZGRsYTGdOuQdMBim2MzLT5qtA1htkfaVjjffJrwBjPYWRkZGRkZGRkZDyLcbhsbNXXLv42GXbe0u5Dw00/gzY7uxgNtI2RkZGRkZGRkZHxXMaITZmXR+LfS2WQh52HLHwL99qSOpQI94/mzjAyMjIyMjIyMjIexDhcdtl7xm8pBRPGLrb5kMWanelpP6I22eCIkZGRkZGRkZGR8SzGlpaHtnSm2TN+VNcQTRpkvlM9XMtfiJGRkZGRkZGRkfEcxhqiiQMUW6GFO4sR+JBhb2GZaV05enstV20/yc4wMjIyMjIyMjIyHsQ4iPL+P2GA4n2/RBiwS4mu9yH53sZr9TIJhpGRkZGRkZGRkfEMxhxj2UqHPtDqKMRHmQRTh523MuUl/oUYGRkZGRkZGRkZz2kMBUF8kG/jkMU8weXe6muZn2dearSP9vxkZGRkZGRkZGRkPJZxJ0TTxmBL2pBzurHn7pSXIcxex8bE3wcYGRkZGRkZGRkZz2LMD/vX7/LpdZJi3mtotjj1Uhrz98lRCyMjIyMjIyMjI+OZjEuJsbQwiyWE2R8Fm2uF3dmKW+r9/6RWYGRkZGRkZGRkZDyg8Raf+pehMb+OQfVcB1z32/Dh8P5mKWr5WYCRkZGRkZGRkZHxfMadgHmY19JL973G25dhlEtqzD9+lrNnZGRkZGRkZGRkPL5xKY/2O8YtzWtZx1jNrFYYPxpi8ldGRkZGRkZGRkbGExr7zpnia0uP9rfxYb9OK4/Vw62c8BY7/YyMjIyMjIyMjIynMua1pE/s8CZmZ1qacR52+Mxz0LdxlepOKudtdoaRkZGRkZGRkZHxWMY/88XIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyPgHGv8Gg3eEIKcvUa8AAAAASUVORK5CYII=", - "revision": "424f0b3f6e7a4013b95734c6", + "revision": "75068c73ff02400da9ea61ad", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4893,10 +3612,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "66ef5b490c2a4c6d818364a9", + "revision": "1b8ce49071004dbb8092c1bb", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -4911,18 +3630,9 @@ "total_amount": 20.2, "history_id": 1678596937174, "id": 55645618353, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-12T00:55:37.889-04:00", + "date_last_updated": "2023-03-12T00:56:04.000-04:00", + "date_of_expiration": "2023-03-13T00:55:37.650-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", @@ -4932,10 +3642,10 @@ "money_release_date": "2023-03-12T00:56:04.000-04:00", "wasDebited": true }, - "revision": "2c0c059784004c2bba9fda80", + "revision": "9b7d72857b8f48f5b84b4f66", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -4943,10 +3653,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "5d622252574f424d90bc89fa", + "revision": "95c9b1e5a77d47e99a8e06ee", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509511, + "modified": 1701463509511 } }, { @@ -4956,24 +3666,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.20790000000000003, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "amount": 0.20790000000000003 }, - "revision": "946f241e777249bdad2d84f8", + "revision": "5513345e592e4c3e8d07c654", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -4981,10 +3679,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4f3073d5eb6542bc9e90985f", + "revision": "e1222a6c469a444d8e47cf9b", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -4992,24 +3690,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "IVIPCOIN LTDA", - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "abed85db1d60449d82090bf2", + "revision": "6dfb9d6720b84c6ca91ef68d", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5017,10 +3703,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e5ea9b2698fd404c8056ed5d", + "revision": "a86bb4616cb8446b864f4227", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5032,24 +3718,12 @@ "net_received_amount": 0, "total_paid_amount": 21.21, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "installment_amount": 0 }, - "revision": "ab96fe2382a84dfca8129465", + "revision": "84fef2629336417098f7376b", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5057,10 +3731,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55660781347/ticket?caller_id=1310149122&hash=d81b289f-e1b7-45ae-9f11-f314a4fdb9e1", - "revision": "49fbe9ee4b6a4170b8084af2", + "revision": "bb300702f6ad4ad4b290c30a", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5068,10 +3742,10 @@ "content": { "type": "STRING", "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540521.215802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter5566078134763047D77", - "revision": "9c0dbadf2bae4d13bbe095d6", + "revision": "a0429e1d4e524de692b7111c", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5079,10 +3753,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJfklEQVR42u3dQXLbOhIGYGilY+io0lF5hFlyJUxeHFPobtBW5tVUJeTHlUoUiY9eEe0fjdb/+OM/jZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGR8c82ri0et49v7j9PXT5/8+PD4/PUx/Hz1PLx4fH55f3HN9ePa359mJ+KVw03ZGRkZGRkZGRkZDyLcTz5DyR/aD/u/Qz8bZB/flNP/Tp+XnV/YeeXTxmMjIyMjIyMjIyMZzA+Pt/Wt2E/7v1r/O2b9jmN+EUbJg3X15M9k7GFyUcYa31NUBgZGRkZGRkZGRlPbhyL7luJvUd1rcc/hwL8fZKHCZMGRkZGRkZGRkZGRsb0/j4tqKcK/ZadGcMvQR0nFmGGEav4jIyMjIyMjIyMjOc0huzMmgZZUnZmqMeHnHss53+ZwYmn/od8DyMjIyMjIyMjI+PfbqxrSS+lsv7/+fBv1rsyMjIyMjIyMjIy/s3G2TFG11sp5w9PVr/J04hZT5c3DkZGRkZGRkZGRsajG59ptjAM0matXPq0it+Sui5FrU+2vKYI69dzBUZGRkZGRkZGRsZDGm/pZT21VBwT6/dy78dnLH0YrfY4769nzc0aGRkZGRkZGRkZGU9mXEu7xNqSfNZkMdKWBKnNXWq3mMdrrHfyPYyMjIyMjIyMjIwHMsbragfE+TdbhX64/FmK9xG7lN2HWmuleM/IyMjIyMjIyMh4GuNQoW+ltXnvQ3PEPu/70ifrRK+ppWKu0Idmjd/n7BkZGRkZGRkZGRkPZIyR83sJyKRh48SitoTJbVpCrKZP1Jd0Q0ZGRkZGRkZGRsYTGXNTlhp+qbuAhqJ7DrwPorhy9BG7xbyXYWdkZGRkZGRkZGQ8mrGlO9XR1vli0BRvz7X/NumtOE5H2tvZGUZGRkZGRkZGRsajGXt5/Y/G2SAhRLO7j9CWfO/phrdXk8XYRp2RkZGRkZGRkZHxLMadRuYp1R53H7qVenzda2gpc4Vc+09P3xkZGRkZGRkZGRlPZryPTVli55X0HJe9tuVt/oj3neWqz6B+LzvDyMjIyMjIyMjIeBhjTws9l1RrDxX6PmmgeAn9y3u5qgbVl7St6J2RkZGRkZGRkZHxfMbvhl2m7/j5gWYdzadDTCr0jIyMjIyMjIyMjGczrinY0lOIpvZiuU+SMrvHY6dC38J9bvkyRkZGRkZGRkZGxmMbe2rBMivVx60+76+rbpPRKj8uIb3vNFm8MDIyMjIyMjIyMp7J2FOepZdgSw+dFEPgvXZJzLRZqX7dW2bKyMjIyMjIyMjIeA5j3QhoTYtBZ5HzXtq9DM1dam/FWqof4znbjxkZGRkZGRkZGRnPYtx+1UJhflbFX8ace8bGCHyfrkndPbW8UbNnZGRkZGRkZGRkPJAxNym/TdsltnSnmqbJ+wi16cZEcb3pkMF5p2bPyMjIyMjIyMjIeCBjS7mY+No+myu012ZB13CqRmZay03Tww2v5U/FyMjIyMjIyMjIeBrjLI2e3/G/eOtvpeQ/nwfUDUJzpZ+RkZGRkZGRkZHxLMZLaNxSdwRaSlB92Yuup6vqfOIyw96/nyswMjIyMjIyMjIyHsvYJx0Qp63Nh1R7G3u6XNJ8Iv8ToM5LbpOxvllLysjIyMjIyMjIyHgs41pK9dm4G35Jc4XaQHGn7WKYNLzXW5GRkZGRkZGRkZHxWMa4a9Cw0HNJ905dXqbRm/sUu/NAafLByMjIyMjIyMjIeCJj7mg+BNVr38Re9iPqISBT0+h1E9Fe+Pfva/aMjIyMjIyMjIyMhzX2odl5GHYn/NLHruf9dflOK5d8qpUMDiMjIyMjIyMjI+NZjPFlP2XPn6k7y5pq9kO+Zqf6/ojtXsa2i3XOwcjIyMjIyMjIyHgqY5gHxJ6IjxiZybt35shM6M7yTJX+dS+M822+h5GRkZGRkZGRkfGAxsd0LelOCD3NFdoQgQ/YnJ2pofjbZHRGRkZGRkZGRkbGkxljsOU2/uBZ9gUdRXvrRLcb9rJD0WX2DSMjIyMjIyMjI+PJjLde14nGJou91yblW619mURvapOYa6nixwwOIyMjIyMjIyMj41mM614dfQvR1GWmwzv+YIxV/JYaoid13qHoyww7IyMjIyMjIyMj49GMPbRXuccthvL4uTvL8ECzHo3PEKtZUpeXPpmXMDIyMjIyMjIyMp7DGLcGmizrHJ+jzWv2Iah+nZfh95q7XN6q2TMyMjIyMjIyMjIeyxhf9mvb8q2u/2izDYXeObWbnQmrSzsjIyMjIyMjIyPjeYzbXKGF3orhBrlxyzJOHGIKJofZQ7PG3C1mGTcdYmRkZGRkZGRkZDyn8RLyLMP7+5pq7fk5HrEBTA7a7OxiNIvAMzIyMjIyMjIyMp7DGLEt5lkyf51MGuJ8opX+izmVMxT4W/kzMDIyMjIyMjIyMp7DuL6K7pfwjp8hj5Jh7wXSY2/FmJ3ppQ96DtowMjIyMjIyMjIynseYl4cOt2ypt+KwcrSnHYpy28Wtrt/3EuuPcRNRRkZGRkZGRkZGxlMZ42j3SQPFocSejzpp6JMZxnXf2MPTMzIyMjIyMjIyMp7T2Mb3916mCLmlYj7Vp7TYf7FNnv635gqMjIyMjIyMjIyMf79xLW/9ueFKKOdfygrUnezMkmYY97Kt6PAXYmRkZGRkZGRkZDynsZXoeu+1J2Ir04h4hC4vMURT4zltGm9nZGRkZGRkZGRkPIOxHrlmfyu/WEocZrclTAiz59/08e/RGRkZGRkZGRkZGc9jXCex9JYq6190UmxlMWhdnHothfk17VD07nyGkZGRkZGRkZGR8TDGS4mxtNSL5Vo+tFDFD8+x21txyNf89lyBkZGRkZGRkZGR8YDGx+StP2zR2VMcZk0BmfYVNgbVU3Ymp+MZGRkZGRkZGRkZz2r8OvOyleHnl88yOM9SmH/+Xs6ekZGRkZGRkZGR8fjGS3m1z5GZWH1/xLWk2292photNXd5o6cLIyMjIyMjIyMj4wGNfXqnVEePGwrlDUJ76Va+0yt9GCtU+hkZGRkZGRkZGRlPZcxrSTfs8CH2Jl/G0Z5ph89WeqW3kLhJqZzn9O/ByMjIyMjIyMjIeGzjn3kwMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL+gcb/Am9FACpuHEp1AAAAAElFTkSuQmCC", - "revision": "29ad479c8ac64e5da99d6b94", + "revision": "35583eee6d234e278be66da7", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5090,10 +3764,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "1b0bfbccda0b4f84a0742921", + "revision": "e900d04c0d15465987bb26c1", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5108,28 +3782,19 @@ "total_amount": 21.21, "history_id": 1678649850085, "id": 55660781347, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-12T15:37:30.913-04:00", + "date_last_updated": "2023-03-13T15:40:52.000-04:00", + "date_of_expiration": "2023-03-13T15:37:30.656-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", "status_detail": "expired", "currency_id": "BRL" }, - "revision": "e554059593e74f3889596548", + "revision": "852d046560d244afb5ff520b", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5137,10 +3802,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 21,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "118519d4c52f47b49577b9eb", + "revision": "9ef35032654f493589a32a70", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5148,24 +3813,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "costs": [] }, - "revision": "0b36260c888346bbb7161cbd", + "revision": "ec74807a385548be96251b33", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5180,27 +3833,18 @@ "total_amount": 70, "history_id": 1679007163675, "id": 1679007163675, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-16T22:52:43.675Z", + "date_last_updated": "2023-03-16T22:52:43.675Z", + "date_of_expiration": "2023-04-15T22:52:43.675Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "85947cca71b04601a3ad7bb6", + "revision": "68cf04dcaa3c4d41aca86ab6", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5208,10 +3852,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 70,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "73595f73274b4e2da191b00b", + "revision": "d4be0b75644042cebc141b22", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5219,24 +3863,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "costs": [] }, - "revision": "c557ff35f9094e30b61d0372", + "revision": "7d0e97274b0d47dd8c256860", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5251,27 +3883,18 @@ "total_amount": 22, "history_id": 1679010027708, "id": 1679010027708, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-16T23:40:27.708Z", + "date_last_updated": "2023-03-16T23:40:27.708Z", + "date_of_expiration": "2023-04-15T23:40:27.708Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "3dab4c675c9e4b2f97fb42da", + "revision": "9da74c873f87481ba80de851", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5279,10 +3902,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 22,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "3e92133728a64ee792033469", + "revision": "f3b821ff33bc4743b0fccca0", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5290,24 +3913,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "costs": [] }, - "revision": "646b005af16f4a798c1f1d26", + "revision": "96e1101ce88f4c8495e5b7ec", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5322,27 +3933,18 @@ "total_amount": 34.53, "history_id": 1679010677912, "id": 1679010677912, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-16T23:51:17.912Z", + "date_last_updated": "2023-03-16T23:51:17.912Z", + "date_of_expiration": "2023-04-15T23:51:17.912Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "0578ee90b52948d191a2400b", + "revision": "768613a8f81a49a4a504aa4d", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5350,10 +3952,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 34,53 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "133be6a467594014b2858a63", + "revision": "2979f92d63f04159b1031a75", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5361,24 +3963,12 @@ "content": { "type": "OBJECT", "value": { - "content": "23797929500000053493380261020810012400633330", - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "content": "23797929500000053493380261020810012400633330" }, - "revision": "034217282095489294f44838", + "revision": "27453b21e7994065b055567e", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5388,24 +3978,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", - "amount": 3.49, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "amount": 3.49 }, - "revision": "b983f3c59896431c8282af67", + "revision": "f72766953bfb487092acb8a7", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5421,24 +3999,12 @@ "total_paid_amount": 53.49, "overpaid_amount": 0, "installment_amount": 0, - "financial_institution": "bradesco", - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "financial_institution": "bradesco" }, - "revision": "3f9cb47f1ce4446c9a39f2dd", + "revision": "c0afb1fa39f24702a7f136ed", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5446,10 +4012,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55844330172/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55844330172&payment_method_reference_id=10208100124&hash=b65fca1f-6eb0-406a-adf2-94d1c5555b8a", - "revision": "1e99e9d800f6450f8feccea2", + "revision": "67257e6c0b5b4455895ff5c6", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5457,10 +4023,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b75d5bd280674f2881818cb6", + "revision": "062ae44eed7f4dae874111e3", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5475,28 +4041,19 @@ "total_amount": 53.49, "history_id": 1679012344229, "id": 55844330172, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-16T20:19:04.871-04:00", + "date_last_updated": "2023-03-16T20:19:04.871-04:00", + "date_of_expiration": "2023-03-20T22:59:59.000-04:00", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "6dfab8ca3e2440829506abed", + "revision": "4231152947bc46f3a3f98a2f", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5504,10 +4061,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "0fc1ff3698a142558cee7fa9", + "revision": "87ff2e52581e43e4b76d2519", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5515,24 +4072,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "costs": [] }, - "revision": "d85dff7720194495b952beac", + "revision": "f9382e0c90c3413b85c150f5", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5547,27 +4092,18 @@ "total_amount": 23.54, "history_id": 1679012395493, "id": 1679012395493, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-17T00:19:55.493Z", + "date_last_updated": "2023-03-17T00:19:55.493Z", + "date_of_expiration": "2023-04-16T00:19:55.493Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "e77fbc986fb643cf8c58ea38", + "revision": "206a22afa05e48829ea45f82", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5575,10 +4111,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 23,54 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "93119ff7c31d474c85994af6", + "revision": "a7c4c95045424ebca35b6cdf", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5588,24 +4124,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", - "amount": 24, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "amount": 24 }, - "revision": "d72308a02d49430c85111181", + "revision": "99f024a978f84d5185a3a216", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5613,10 +4137,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "849fc58f14d94505ac56d519", + "revision": "41befc2dfe844217b5c02251", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5624,10 +4148,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "14c457a1bb824ae3b20a627f", + "revision": "15098cf0934d4c04b3cd9843", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5642,28 +4166,19 @@ "total_amount": 224, "history_id": 1679181025084, "id": 1679181025084, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-18T23:10:25.084Z", + "date_last_updated": "2023-03-18T23:10:25.084Z", + "date_of_expiration": "2023-04-17T23:10:25.084Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "df1fe46b354e4ea8998d7d5f", + "revision": "336acf1869fd4161bcb72725", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5671,10 +4186,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "744d588047ec44a7962372ee", + "revision": "cfa5ad2ce29b4f6fa21cb125", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5684,24 +4199,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 51, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "amount": 51 }, - "revision": "568653d439254503969ebd64", + "revision": "a421bfa2f3864172a60d805a", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5709,10 +4212,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0115f4b678864acdb05a2198", + "revision": "8093040c66b34862bf9f6ee5", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5720,10 +4223,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "0c7bc0e1124d440caf06da26", + "revision": "2604820db79a4e50acea26da", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5738,28 +4241,19 @@ "total_amount": 459, "history_id": 1679181157805, "id": 1679181157805, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-18T23:12:37.805Z", + "date_last_updated": "2023-03-18T23:12:37.805Z", + "date_of_expiration": "2023-04-17T23:12:37.805Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "dc871b14ce8245d49f9fe297", + "revision": "db04aa5216794fbd8c6aac77", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5767,10 +4261,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "ad0226bc33b941b3b262f9a9", + "revision": "201fd3a60d9f4697b4bd0d7f", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5780,24 +4274,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 9.200000000000001, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "amount": 9.200000000000001 }, - "revision": "6405259cd4e744e3b6840cdc", + "revision": "0cb34a1842d34f4f92a712a5", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5805,10 +4287,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "de94910ca5f34464b67baa3d", + "revision": "d7460e957fde44859c9945be", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5816,10 +4298,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "ecaae95d08af4aed8c0861cc", + "revision": "cefe24878b03450e950ddb1c", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5834,28 +4316,19 @@ "total_amount": 239.2, "history_id": 1679183534080, "id": 1679183534080, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-18T23:52:14.080Z", + "date_last_updated": "2023-03-18T23:52:14.080Z", + "date_of_expiration": "2023-04-17T23:52:14.080Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "0a2158e30a3c44b293ffe17b", + "revision": "b9b3f4ec325545fead9c2eee", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5863,10 +4336,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", - "revision": "4bedd8561cda473faec0b022", + "revision": "54ed570d2387438786259e48", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5876,24 +4349,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 8, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "amount": 8 }, - "revision": "1c4002838ac14cc7b63c77f4", + "revision": "2512dfb257ef4a8cbabfa65b", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5901,10 +4362,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "21ec5815459044fdbe4a0e5e", + "revision": "c0cc0bc8cd474b328b5a37dc", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5912,10 +4373,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "0a09913d139543ab90bff1fa", + "revision": "7b2b0b51f3c8430cbf0f6988", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5930,28 +4391,19 @@ "total_amount": 208, "history_id": 1679184046128, "id": 1679184046128, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-19T00:00:46.128Z", + "date_last_updated": "2023-03-19T00:00:46.128Z", + "date_of_expiration": "2023-04-18T00:00:46.128Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "599768a99d7741cd8eff6f32", + "revision": "7f596b2aeb884cecb5e30a9d", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5959,10 +4411,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", - "revision": "28ae6077f1cf4ddea984bef8", + "revision": "d9905e8470fa4956892b3728", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5972,24 +4424,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 8.4, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - } + "amount": 8.4 }, - "revision": "ab2d2cdd89264434ae17c726", + "revision": "2b723390c8f1408a8fb7b596", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -5997,10 +4437,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a132798f237849e790bf6cbe", + "revision": "643a5f5597e444c0a5092a6e", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6008,10 +4448,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "881171c775c14c3881ad9c4c", + "revision": "8f0f12fc08304e3786d95949", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6026,28 +4466,19 @@ "total_amount": 218.4, "history_id": 1679184832424, "id": 1679184832424, - "date_created": { - "type": 6, - "value": 1701459383466 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383466 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383466 - }, + "date_created": "2023-03-19T00:13:52.424Z", + "date_last_updated": "2023-03-19T00:13:52.424Z", + "date_of_expiration": "2023-04-18T00:13:52.424Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "647f8607f5904d62a3555644", + "revision": "1693e01c46d2406593b4391f", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6055,10 +4486,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", - "revision": "84d8276492ee49a988b57240", + "revision": "55c67624674b40aca0cda18c", "revision_nr": 1, - "created": 1701459383466, - "modified": 1701459383466 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6076,24 +4507,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383467 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383467 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383467 - } + "costs": [] }, - "revision": "ca678db7258e40eb8838f5be", + "revision": "58e6991c004743f386134216", "revision_nr": 1, - "created": 1701459383467, - "modified": 1701459383467 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6109,18 +4528,9 @@ "original_amount": 50, "total_amount": 50, "id": 1679780561471, - "date_created": { - "type": 6, - "value": 1701459383467 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383467 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383467 - }, + "date_created": "2023-03-25T21:42:41.471Z", + "date_last_updated": "2023-03-25T21:42:41.471Z", + "date_of_expiration": "2023-03-25T21:42:41.471Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6128,10 +4538,10 @@ "currency_id": "IVIPAY", "history_id": 1679780561471 }, - "revision": "f7d8ad26218946b5bb413b1f", + "revision": "952f5f52c5fa4caf8b3a96e0", "revision_nr": 1, - "created": 1701459383467, - "modified": 1701459383467 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6139,10 +4549,10 @@ "content": { "type": "STRING", "value": "Compra de 50,00 IVIPAY por 5,00 IVIP estabilizando US$ 0,00", - "revision": "e70045afee214226bf20e47a", + "revision": "c9d6ed8c1d804525be2178a3", "revision_nr": 1, - "created": 1701459383467, - "modified": 1701459383467 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6160,24 +4570,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383467 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383467 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383467 - } + "costs": [] }, - "revision": "f76b68743ba24cc38a2df6ba", + "revision": "3f9db4f2d5ad4d1480d1593e", "revision_nr": 1, - "created": 1701459383467, - "modified": 1701459383467 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6193,18 +4591,9 @@ "original_amount": 50000, "total_amount": 50000, "id": 1679780730626, - "date_created": { - "type": 6, - "value": 1701459383467 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383467 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383467 - }, + "date_created": "2023-03-25T21:45:30.626Z", + "date_last_updated": "2023-03-25T21:45:30.626Z", + "date_of_expiration": "2023-03-25T21:45:30.626Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6212,10 +4601,10 @@ "currency_id": "IVIPAY", "history_id": 1679780730626 }, - "revision": "95fbfc32cf224215b4f79351", + "revision": "dd662efcc3f4437cba6b91ef", "revision_nr": 1, - "created": 1701459383467, - "modified": 1701459383467 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6223,10 +4612,10 @@ "content": { "type": "STRING", "value": "Compra de 50.000,00 IVIPAY por 5.000,00 IVIP estabilizando US$ 0,18", - "revision": "5b2eacc2bc064126a6c005c4", + "revision": "054ac2fb5e2942d2be22f1c8", "revision_nr": 1, - "created": 1701459383467, - "modified": 1701459383467 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6244,24 +4633,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383467 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383467 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383467 - } + "costs": [] }, - "revision": "41ad6f75c0524226b7e91ee3", + "revision": "52f1947908f64a0b82398a98", "revision_nr": 1, - "created": 1701459383467, - "modified": 1701459383467 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6277,18 +4654,9 @@ "original_amount": 100000, "total_amount": 100000, "id": 1679798199684, - "date_created": { - "type": 6, - "value": 1701459383467 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383467 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383467 - }, + "date_created": "2023-03-26T02:36:39.684Z", + "date_last_updated": "2023-03-26T02:36:39.684Z", + "date_of_expiration": "2023-03-26T02:36:39.684Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6296,10 +4664,10 @@ "currency_id": "IVIPAY", "history_id": 1679798199684 }, - "revision": "d7c131150f5e4b4383d152d4", + "revision": "24d2de553b8e4b1eb73375c5", "revision_nr": 1, - "created": 1701459383467, - "modified": 1701459383467 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6307,10 +4675,10 @@ "content": { "type": "STRING", "value": "Compra de 100.000,00 IVIPAY por 10.000,00 IVIP estabilizando US$ 0,32", - "revision": "40054380759d4fc7ab36ee24", + "revision": "ecdff076964f48e1afe58ab8", "revision_nr": 1, - "created": 1701459383467, - "modified": 1701459383467 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6328,24 +4696,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383467 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383467 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383467 - } + "costs": [] }, - "revision": "450adcec0fc44c8e80c400ec", + "revision": "14a9d426362c4931903076df", "revision_nr": 1, - "created": 1701459383467, - "modified": 1701459383467 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6361,18 +4717,9 @@ "original_amount": 3964758, "total_amount": 3964758, "id": 1681764788277, - "date_created": { - "type": 6, - "value": 1701459383467 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383467 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383467 - }, + "date_created": "2023-04-17T20:53:08.277Z", + "date_last_updated": "2023-04-17T20:53:08.277Z", + "date_of_expiration": "2023-04-17T20:53:08.277Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6381,10 +4728,10 @@ "history_id": 1681764788277, "description": "Compra de 3.964.758,00 IVIP por 700,00 BRL" }, - "revision": "eedbc47bcb0d4939a3bd2b62", + "revision": "a0e3d762df7a45d0babd2ad7", "revision_nr": 1, - "created": 1701459383467, - "modified": 1701459383467 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6402,24 +4749,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383467 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383467 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383467 - } + "costs": [] }, - "revision": "22bcff327eef4a979c58216f", + "revision": "1c69b8e703664c87a0b6668e", "revision_nr": 1, - "created": 1701459383467, - "modified": 1701459383467 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6435,18 +4770,9 @@ "original_amount": 175.094, "total_amount": 175.094, "id": 1682323304615, - "date_created": { - "type": 6, - "value": 1701459383467 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383467 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383467 - }, + "date_created": "2023-04-24T08:01:44.615Z", + "date_last_updated": "2023-04-24T08:01:44.615Z", + "date_of_expiration": "2023-04-24T08:01:44.615Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -6454,10 +4780,10 @@ "currency_id": "BRL", "history_id": 1682323304615 }, - "revision": "db1d396ef54d4072aa201817", + "revision": "eb087295388b46a787c900b3", "revision_nr": 1, - "created": 1701459383467, - "modified": 1701459383467 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6475,24 +4801,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383467 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383467 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383467 - } + "costs": [] }, - "revision": "53d51b6185d9400cad8f59eb", + "revision": "e9a246b3f1314052b37712d6", "revision_nr": 1, - "created": 1701459383467, - "modified": 1701459383467 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6508,18 +4822,9 @@ "original_amount": 119.6, "total_amount": 119.6, "id": 1682323486538, - "date_created": { - "type": 6, - "value": 1701459383467 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383467 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383467 - }, + "date_created": "2023-04-24T08:04:46.538Z", + "date_last_updated": "2023-04-24T08:04:46.538Z", + "date_of_expiration": "2023-04-24T08:04:46.538Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -6527,10 +4832,10 @@ "currency_id": "BRL", "history_id": 1682323486538 }, - "revision": "779a102224454b4e82ebfd8a", + "revision": "018c97d522864b70a8a24a62", "revision_nr": 1, - "created": 1701459383467, - "modified": 1701459383467 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6548,24 +4853,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - } + "costs": [] }, - "revision": "43058fe311b54026a8717c15", + "revision": "066a6344bc8c4f1eba83fce7", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6581,18 +4874,9 @@ "original_amount": 104, "total_amount": 104, "id": 1682324590308, - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - }, + "date_created": "2023-04-24T08:23:10.308Z", + "date_last_updated": "2023-04-24T08:23:10.308Z", + "date_of_expiration": "2023-04-24T08:23:10.308Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -6600,10 +4884,10 @@ "currency_id": "BRL", "history_id": 1682324590308 }, - "revision": "28b21ceb8eb249b08f8ea691", + "revision": "530eeb09b036444491cb15dc", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6621,24 +4905,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - } + "costs": [] }, - "revision": "cc938a3c3b4440b18b16c27d", + "revision": "a90e515e3dd74246bce9780d", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6654,18 +4926,9 @@ "original_amount": 109.2, "total_amount": 109.2, "id": 1682324593569, - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - }, + "date_created": "2023-04-24T08:23:13.569Z", + "date_last_updated": "2023-04-24T08:23:13.569Z", + "date_of_expiration": "2023-04-24T08:23:13.569Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -6673,10 +4936,10 @@ "currency_id": "BRL", "history_id": 1682324593569 }, - "revision": "7ab524c2b34f48f5aa4a06a7", + "revision": "f762dc806624419aa6960f51", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509512, + "modified": 1701463509512 } }, { @@ -6694,24 +4957,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - } + "costs": [] }, - "revision": "451d3e7805c2438b9c4dcba0", + "revision": "4628e318127c411cae079061", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509513, + "modified": 1701463509513 } }, { @@ -6727,18 +4978,9 @@ "original_amount": 104, "total_amount": 104, "id": 1682325423689, - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - }, + "date_created": "2023-04-24T08:37:03.689Z", + "date_last_updated": "2023-04-24T08:37:03.689Z", + "date_of_expiration": "2023-04-24T08:37:03.689Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -6746,10 +4988,10 @@ "currency_id": "BRL", "history_id": 1682325423689 }, - "revision": "d055d14908f1430e8d50a9d9", + "revision": "a44961927bfb4e47a97a89e5", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509513, + "modified": 1701463509513 } }, { @@ -6767,24 +5009,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - } + "costs": [] }, - "revision": "ab4ad3bbfabd46e7b57b42a4", + "revision": "3e94fc1cf8314788b0a5f3fd", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -6800,18 +5030,9 @@ "original_amount": 109.2, "total_amount": 109.2, "id": 1682325428664, - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - }, + "date_created": "2023-04-24T08:37:08.664Z", + "date_last_updated": "2023-04-24T08:37:08.664Z", + "date_of_expiration": "2023-04-24T08:37:08.664Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -6819,10 +5040,10 @@ "currency_id": "BRL", "history_id": 1682325428664 }, - "revision": "a2c357f3f5c54ee78183ce24", + "revision": "6a40397e93a34f5c87122a0e", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -6842,24 +5063,12 @@ "installment_amount": 37.333, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - } + "costs": [] }, - "revision": "001d2bed90944b0188d49c63", + "revision": "aaef5f5b45f74d01b7f7423e", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -6876,18 +5085,9 @@ "total_amount": 37.333, "id": 1682578544384, "contract_id": "1679181025084", - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - }, + "date_created": "2023-04-27T06:55:44.384Z", + "date_last_updated": "2023-04-27T06:55:44.384Z", + "date_of_expiration": "2023-04-27T06:55:44.384Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -6895,10 +5095,10 @@ "currency_id": "BRL", "history_id": 1682578544384 }, - "revision": "a4306f4dfe5c4a949b606d5c", + "revision": "18404b061bcd47c780542982", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -6906,10 +5106,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "b1dea7d6a9e24b15a20b9d71", + "revision": "17cd9854857f4de8a45c1b72", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -6929,24 +5129,12 @@ "installment_amount": 114.75, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - } + "costs": [] }, - "revision": "095704bd9b1d41ca88fbe1c9", + "revision": "2b33a258bdd74beaa4a3a685", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -6963,18 +5151,9 @@ "total_amount": 114.75, "id": 1682578544557, "contract_id": "1679181157805", - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - }, + "date_created": "2023-04-27T06:55:44.557Z", + "date_last_updated": "2023-04-27T06:55:44.557Z", + "date_of_expiration": "2023-04-27T06:55:44.557Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -6982,10 +5161,10 @@ "currency_id": "BRL", "history_id": 1682578544557 }, - "revision": "3a21a665c8b84afc8dc1ab58", + "revision": "449c73ae447f4adfaf4635ed", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -6993,10 +5172,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", - "revision": "4dd93a75997e4af8a0f58232", + "revision": "863a8c3b04434f2489178955", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7016,24 +5195,12 @@ "installment_amount": 119.6, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - } + "costs": [] }, - "revision": "4aeb2619e95d411787446aec", + "revision": "64f182b66e1149a6ab40d502", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7050,18 +5217,9 @@ "total_amount": 119.6, "id": 1682578984558, "contract_id": "1679183534080", - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - }, + "date_created": "2023-04-27T07:03:04.558Z", + "date_last_updated": "2023-04-27T07:03:04.558Z", + "date_of_expiration": "2023-04-27T07:03:04.558Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -7069,10 +5227,10 @@ "currency_id": "BRL", "history_id": 1682578984558 }, - "revision": "d28474aa312d448ca63712eb", + "revision": "5e0ec363280141c0b3f9a4a2", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7080,10 +5238,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 2 no valor de 119,60 BRL referente ao contrato 1679183534080", - "revision": "22955115adca4ae1bb246066", + "revision": "ab57bd1751614488bd60682b", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7103,24 +5261,12 @@ "installment_amount": 104, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - } + "costs": [] }, - "revision": "87ff8d0f55484989bcb1be46", + "revision": "d007fdda34664201a298fb29", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7137,18 +5283,9 @@ "total_amount": 104, "id": 1682578984726, "contract_id": "1679184046128", - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - }, + "date_created": "2023-04-27T07:03:04.726Z", + "date_last_updated": "2023-04-27T07:03:04.726Z", + "date_of_expiration": "2023-04-27T07:03:04.726Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -7156,10 +5293,10 @@ "currency_id": "BRL", "history_id": 1682578984726 }, - "revision": "52847e612d03445b85ae721c", + "revision": "43e8a763a9de430c88988ca5", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7167,10 +5304,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 2 no valor de 104,00 BRL referente ao contrato 1679184046128", - "revision": "20971592a45c43c69d97e844", + "revision": "82072ba760b748a5a9204bbf", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7190,24 +5327,12 @@ "installment_amount": 109.2, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - } + "costs": [] }, - "revision": "b40058122e3a4a5fb16948a3", + "revision": "3170a631f24b4e4a8911a98e", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7224,18 +5349,9 @@ "total_amount": 109.2, "id": 1682578984913, "contract_id": "1679184832424", - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - }, + "date_created": "2023-04-27T07:03:04.913Z", + "date_last_updated": "2023-04-27T07:03:04.913Z", + "date_of_expiration": "2023-04-27T07:03:04.913Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -7243,10 +5359,10 @@ "currency_id": "BRL", "history_id": 1682578984913 }, - "revision": "2625550e20714a1388bae369", + "revision": "21f710a69e014f6d9704d69b", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7254,10 +5370,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 2 no valor de 109,20 BRL referente ao contrato 1679184832424", - "revision": "7d77750bb8bd4ef590fba0cd", + "revision": "9aa07e6de7e4421cba2f936d", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7267,24 +5383,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 4, - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - } + "amount": 4 }, - "revision": "8fd5bc09d06d43089d9e1355", + "revision": "bcc3a26a53f44d018a2f9176", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7292,10 +5396,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "37851f8300994e43b4627078", + "revision": "d067574ac4134e11a83adad5", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7303,10 +5407,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "4353aef97e924e20ad4a4a3c", + "revision": "349bab5ccf6a4bd9acbea671", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7321,28 +5425,19 @@ "total_amount": 204, "history_id": 1683665355468, "id": 1683665355468, - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - }, + "date_created": "2023-05-09T20:49:15.468Z", + "date_last_updated": "2023-05-09T20:49:15.468Z", + "date_of_expiration": "2023-06-08T20:49:15.468Z", "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", "wasDebited": true }, - "revision": "751768583dd944eca6ff5e6a", + "revision": "c58fd370098448b48bf200e9", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7350,10 +5445,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 204,00", - "revision": "39909db3aec54c0d944a76ac", + "revision": "6f36347ad954467db71532b9", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7363,24 +5458,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", - "amount": 12, - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - } + "amount": 12 }, - "revision": "f7838d4de1ed469aac3e9a95", + "revision": "27ece2a576cf427cb8ecf848", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7388,10 +5471,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d4f7ccf430b843c2baff7b55", + "revision": "b25c27ed66284c7e9973497f", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7399,10 +5482,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b564176e54b54dc99344dc98", + "revision": "9031de3528fe4c9d982acf5e", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7417,28 +5500,19 @@ "total_amount": 212, "history_id": 1683667472591, "id": 1683667472591, - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - }, + "date_created": "2023-05-09T21:24:32.591Z", + "date_last_updated": "2023-05-09T21:24:32.591Z", + "date_of_expiration": "2023-06-08T21:24:32.591Z", "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", "wasDebited": true }, - "revision": "b82c56ee51b54a6fb0035bdc", + "revision": "a10ddb863cdd4cc6bd7f27f9", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7446,10 +5520,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", - "revision": "fc3161e590d642e68e35f230", + "revision": "f1b573eb34654227b8474492", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7457,24 +5531,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - } + "costs": [] }, - "revision": "34445792a7064e289baf4321", + "revision": "74b3414062e748628171216e", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7489,18 +5551,9 @@ "total_amount": 250, "history_id": 1684303097186, "id": 1684303097186, - "date_created": { - "type": 6, - "value": 1701459383469 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383469 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383469 - }, + "date_created": "2023-05-17T05:58:17.186Z", + "date_last_updated": "2023-05-17T05:59:31.953Z", + "date_of_expiration": "2023-06-16T05:58:17.186Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -7510,10 +5563,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "8e42a5e4a0ac4655a8b177be", + "revision": "707fb7b238344034a31ef47a", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7521,10 +5574,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "fdfed1ce03cd426ca27770ac", + "revision": "c0ddd4690f774f6f935f7ecb", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509515, + "modified": 1701463509515 } }, { @@ -7542,24 +5595,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "1e981210e3414d5e9c23f279", + "revision": "9580e56d7ac44e65a0509661", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -7575,18 +5616,9 @@ "original_amount": 630, "total_amount": 630, "id": 1684348051817, - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-17T18:27:31.817Z", + "date_last_updated": "2023-05-17T18:27:31.817Z", + "date_of_expiration": "2023-05-17T18:27:31.817Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -7594,10 +5626,10 @@ "currency_id": "BRL", "history_id": 1684348051817 }, - "revision": "625b366a6987466ea4092cf6", + "revision": "2a30766f0641477b93e0e034", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -7605,10 +5637,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "8892097e94b646cc8d12d8e2", + "revision": "5ac97e64d31645f68afa5a0e", "revision_nr": 1, - "created": 1701459383469, - "modified": 1701459383469 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -7628,24 +5660,12 @@ "installment_amount": 37.333, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "79623b2ab5f349e2ace44e3a", + "revision": "a60c4e26299440e4931cdc4d", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -7662,18 +5682,9 @@ "total_amount": 37.333, "id": 1684436739701, "contract_id": "1679181025084", - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-18T19:05:39.701Z", + "date_last_updated": "2023-05-18T19:05:39.701Z", + "date_of_expiration": "2023-05-18T19:05:39.701Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -7681,10 +5692,10 @@ "currency_id": "BRL", "history_id": 1684436739701 }, - "revision": "7fc2d753411c46fab76efad5", + "revision": "1c50b55c2c614e5da0b69287", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -7692,10 +5703,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "03df5934ef234873a5f19c56", + "revision": "d398325c009e4748a96e8fe8", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -7715,24 +5726,12 @@ "installment_amount": 114.75, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "5ea9a48959144631b366b6fa", + "revision": "6333af662aae45ecbbbdf81e", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -7749,18 +5748,9 @@ "total_amount": 114.75, "id": 1684436739822, "contract_id": "1679181157805", - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-18T19:05:39.822Z", + "date_last_updated": "2023-05-18T19:05:39.822Z", + "date_of_expiration": "2023-05-18T19:05:39.822Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -7768,10 +5758,10 @@ "currency_id": "BRL", "history_id": 1684436739822 }, - "revision": "60e6215273084d11bf150784", + "revision": "9b5899d3a7924ffa94b5f2d3", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -7779,10 +5769,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", - "revision": "19dd7cf701bc441ba7832965", + "revision": "08cb20da23ae4847895ff2e3", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -7802,24 +5792,12 @@ "installment_amount": 119.6, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "d52543a0dce1453d8f2af0a1", + "revision": "d631786785534705bd5a55d6", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -7836,18 +5814,9 @@ "total_amount": 119.6, "id": 1684436739934, "contract_id": "1679183534080", - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-18T19:05:39.934Z", + "date_last_updated": "2023-05-18T19:05:39.934Z", + "date_of_expiration": "2023-05-18T19:05:39.934Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -7855,10 +5824,10 @@ "currency_id": "BRL", "history_id": 1684436739934 }, - "revision": "858939bfffc740ed825cd174", + "revision": "2a7bd6bf0f77409f89952705", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -7866,10 +5835,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 2 no valor de 119,60 BRL referente ao contrato 1679183534080", - "revision": "702366f8ef424113b603f2a7", + "revision": "11da1cd2c88343089ee6622c", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -7889,24 +5858,12 @@ "installment_amount": 104, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "fcac6285c9a74f329be8b62f", + "revision": "5e4831179bd9491dac46e7be", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -7923,18 +5880,9 @@ "total_amount": 104, "id": 1684436740031, "contract_id": "1679184046128", - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-18T19:05:40.031Z", + "date_last_updated": "2023-05-18T19:05:40.031Z", + "date_of_expiration": "2023-05-18T19:05:40.031Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -7942,10 +5890,10 @@ "currency_id": "BRL", "history_id": 1684436740031 }, - "revision": "b15912c8fc7f4d5d9d3a5ff9", + "revision": "eb09581ded7e40d6b5a2cb0d", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -7953,10 +5901,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 2 no valor de 104,00 BRL referente ao contrato 1679184046128", - "revision": "7f4c2271e08d40158d955bcd", + "revision": "a43490979ddf4e2896e6f844", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -7976,24 +5924,12 @@ "installment_amount": 109.2, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "47b7921ddb3942cf968fa91d", + "revision": "386176e0c5614f90afe694e4", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -8010,18 +5946,9 @@ "total_amount": 109.2, "id": 1684436740155, "contract_id": "1679184832424", - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-18T19:05:40.155Z", + "date_last_updated": "2023-05-18T19:05:40.155Z", + "date_of_expiration": "2023-05-18T19:05:40.155Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -8029,10 +5956,10 @@ "currency_id": "BRL", "history_id": 1684436740155 }, - "revision": "a26020392f1040cbb9c879d7", + "revision": "23daab1e78384b93b1a213a3", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -8040,10 +5967,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 2 no valor de 109,20 BRL referente ao contrato 1679184832424", - "revision": "4402e65efd444479bd41e3bb", + "revision": "747a3285472344f9bffd1097", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -8061,24 +5988,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "86f4120dcfec4648bfff2244", + "revision": "4dd56e05a47b4ae7a0711374", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -8094,18 +6009,9 @@ "original_amount": 5850731, "total_amount": 5850731, "id": 1684790150988, - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-22T21:15:50.988Z", + "date_last_updated": "2023-05-22T21:15:50.988Z", + "date_of_expiration": "2023-05-22T21:15:50.988Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8114,10 +6020,10 @@ "history_id": 1684790150988, "description": "Compra de 5.850.731,00 IVIP por 1.200,00 BRL" }, - "revision": "2b1d9edaba414b5ba2b8d2c9", + "revision": "9c000298f7d44a33bc95e915", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -8135,24 +6041,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "22fbe84989654543b1be6580", + "revision": "f1a8b5a3b26042c89ace068e", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -8168,18 +6062,9 @@ "original_amount": 1065.7, "total_amount": 1065.7, "id": 1684790990972, - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-22T21:29:50.972Z", + "date_last_updated": "2023-05-22T21:29:50.972Z", + "date_of_expiration": "2023-05-22T21:29:50.972Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8187,10 +6072,10 @@ "currency_id": "BRL", "history_id": 1684790990972 }, - "revision": "cca710c22db44d8f95066f8b", + "revision": "82f1de2d68f4481084b71e9d", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -8198,10 +6083,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "89f35903502c4a23a5bb1b4c", + "revision": "9dfb78ae1a944a729260f686", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509516, + "modified": 1701463509516 } }, { @@ -8209,24 +6094,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "e4e67476f1984ae0b92767ed", + "revision": "2408adda92434f46a6e81e80", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8241,27 +6114,18 @@ "total_amount": 2337199, "history_id": 1685376471814, "id": 1685376471814, - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-29T16:07:51.814Z", + "date_last_updated": "2023-05-29T16:07:51.814Z", + "date_of_expiration": "2023-05-29T16:07:51.814Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "00b9ea068fc548b3b1d10648", + "revision": "fda02c2ca1f245dbb31761b9", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8269,10 +6133,10 @@ "content": { "type": "STRING", "value": "Saque de 2.337.199,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "bf2092209e0c4286b7c5a6c8", + "revision": "dd169e387c944ecba94b4741", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8280,24 +6144,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "e968abb791524bdabd56197e", + "revision": "75449345f48c4c47b968ffc2", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8312,27 +6164,18 @@ "total_amount": 1357502, "history_id": 1685376968807, "id": 1685376968807, - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-29T16:16:08.807Z", + "date_last_updated": "2023-05-29T16:16:08.807Z", + "date_of_expiration": "2023-05-29T16:16:08.807Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "62e327741f8b4b1d8917dc89", + "revision": "127bfa6481b14dea98141cde", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8340,10 +6183,10 @@ "content": { "type": "STRING", "value": "Saque de 1.357.502,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "2888640833f248c9bdd493ba", + "revision": "afdcc907d1704727938179d1", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8351,24 +6194,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "14b425397f384670873fa002", + "revision": "76007a8c66af488d8d12cf89", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8383,18 +6214,9 @@ "total_amount": 754612, "history_id": 1685379763814, "id": 1685379763814, - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-29T17:02:43.814Z", + "date_last_updated": "2023-05-29T21:52:34.691Z", + "date_of_expiration": "2023-05-29T17:02:43.814Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -8404,10 +6226,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "021d42e05741476ea63d24ef", + "revision": "368d36dea3174d72abacaa9b", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8415,10 +6237,10 @@ "content": { "type": "STRING", "value": "Saque de 754.612,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "0566b58c3c0b427fa072c437", + "revision": "6b75558ae6be4b0a83c59941", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8426,24 +6248,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "1bea1695da9c49c6bc3ec375", + "revision": "24837431832942af84388adf", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8458,27 +6268,18 @@ "total_amount": 1432864, "history_id": 1685379960399, "id": 1685379960399, - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-29T17:06:00.399Z", + "date_last_updated": "2023-05-29T17:06:00.399Z", + "date_of_expiration": "2023-05-29T17:06:00.399Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "cd2f8d7ca751437c907f23de", + "revision": "6bf20ebf42c643b1baeb2d63", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8486,10 +6287,10 @@ "content": { "type": "STRING", "value": "Saque de 1.432.864,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "202bb23c5aba49c283b0a8bf", + "revision": "6afe5355430f4c38a3d12dcd", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8497,24 +6298,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "fd2aee48fd624271b6461cfe", + "revision": "771278842a3041a5bf626bbf", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8529,18 +6318,9 @@ "total_amount": 2248, "history_id": 1685382789817, "id": 1685382789817, - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-29T17:53:09.817Z", + "date_last_updated": "2023-05-29T17:53:41.235Z", + "date_of_expiration": "2023-06-28T17:53:09.817Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -8548,10 +6328,10 @@ "money_release_date": "2023-05-29T17:53:41.235Z", "money_release_status": "rejected" }, - "revision": "0098bfaab1c842b4b9f95165", + "revision": "e856bb5850f74a1ca4d4d19e", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8559,10 +6339,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.248,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "4102dc11e3ad4840a3dd7ff9", + "revision": "62cd90e9a48d40f0a8aa24e2", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8580,24 +6360,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "b60ed7128e684e0bba00c79b", + "revision": "aeef19d619384ddfad820448", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8613,18 +6381,9 @@ "original_amount": 15, "total_amount": 15, "id": 1685391703693, - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-29T20:21:43.693Z", + "date_last_updated": "2023-05-29T20:21:43.693Z", + "date_of_expiration": "2023-05-29T20:21:43.693Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8633,10 +6392,10 @@ "history_id": 1685391703693, "description": "Compra de 15,00 IVIP por 150,00 IVIPAY" }, - "revision": "04b98fae37d94016b47dc790", + "revision": "84eb63d5001445599243b98b", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8654,24 +6413,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "1f88d9d041b74ffc94666011", + "revision": "a06aa4f217fb464c9c1b4a02", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8687,18 +6434,9 @@ "original_amount": 5000, "total_amount": 5000, "id": 1685392276817, - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-29T20:31:16.817Z", + "date_last_updated": "2023-05-29T20:31:16.817Z", + "date_of_expiration": "2023-05-29T20:31:16.817Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8707,10 +6445,10 @@ "history_id": 1685392276817, "description": "Compra de 5.000,00 IVIP por 50.000,00 IVIPAY" }, - "revision": "8f8fe1ab4448483d80e1d223", + "revision": "c95d3b4385974f68b7447cdc", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8728,24 +6466,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "713fc32d024441e89c27fd99", + "revision": "173c8aa1ff90402ea91609a9", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8761,18 +6487,9 @@ "original_amount": 500, "total_amount": 500, "id": 1685393515405, - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-29T20:51:55.405Z", + "date_last_updated": "2023-05-29T20:51:55.405Z", + "date_of_expiration": "2023-05-29T20:51:55.405Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8781,10 +6498,10 @@ "history_id": 1685393515405, "description": "Compra de 500,00 IVIP por 5.000,00 IVIPAY" }, - "revision": "e41b21aedbc84575a21f700c", + "revision": "c0f7cda53d294f14aa6c3a7c", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8802,24 +6519,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "93b9acc10b524066b63ed02e", + "revision": "1ea59c40ac144857b099a06e", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8835,18 +6540,9 @@ "original_amount": 5200, "total_amount": 5200, "id": 1685393559293, - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-29T20:52:39.293Z", + "date_last_updated": "2023-05-29T20:52:39.293Z", + "date_of_expiration": "2023-05-29T20:52:39.293Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8855,10 +6551,10 @@ "history_id": 1685393559293, "description": "Compra de 5.200,00 IVIP por 52.000,00 IVIPAY" }, - "revision": "0ed19bd0f3014b409faaf168", + "revision": "54c755f6f7fe458fb9368bb7", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8876,24 +6572,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "8a304bf304284531b5dd4c92", + "revision": "82dabea780e04351a7acdf80", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8909,18 +6593,9 @@ "original_amount": 4200, "total_amount": 4200, "id": 1685394959774, - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-29T21:15:59.774Z", + "date_last_updated": "2023-05-29T21:15:59.774Z", + "date_of_expiration": "2023-05-29T21:15:59.774Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8929,10 +6604,10 @@ "history_id": 1685394959774, "description": "Compra de 4.200,00 IVIP por 42.000,00 IVIPAY" }, - "revision": "4dcccbb0fe8b47de98ffead8", + "revision": "c51f170abcfa454b9c9b3bad", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8950,24 +6625,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - } + "costs": [] }, - "revision": "4ad678ae196548be902134a6", + "revision": "dc5d6360b4464193af9181d9", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -8983,18 +6646,9 @@ "original_amount": 9, "total_amount": 9, "id": 1685395256711, - "date_created": { - "type": 6, - "value": 1701459383470 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383470 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383470 - }, + "date_created": "2023-05-29T21:20:56.711Z", + "date_last_updated": "2023-05-29T21:20:56.711Z", + "date_of_expiration": "2023-05-29T21:20:56.711Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9003,10 +6657,10 @@ "history_id": 1685395256711, "description": "Compra de 9,00 IVIP por 95,00 IVIPAY" }, - "revision": "abf75ce45b3a45bb9861c9de", + "revision": "36ea9c36cab64fb2b8632680", "revision_nr": 1, - "created": 1701459383470, - "modified": 1701459383470 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -9024,24 +6678,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + "costs": [] }, - "revision": "7ad4c7ae57c340409842c697", + "revision": "e4348af132464065aa422dea", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -9057,18 +6699,9 @@ "original_amount": 10000, "total_amount": 10000, "id": 1685395602952, - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - }, + "date_created": "2023-05-29T21:26:42.952Z", + "date_last_updated": "2023-05-29T21:26:42.952Z", + "date_of_expiration": "2023-05-29T21:26:42.952Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9076,10 +6709,10 @@ "currency_id": "IVIPAY", "history_id": 1685395602952 }, - "revision": "0b8d4245c20740afa58c4f83", + "revision": "916652675eb64e4ca8e13837", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -9087,10 +6720,10 @@ "content": { "type": "STRING", "value": "Compra de 10.000,00 IVIPAY por 1.000,00 IVIP estabilizando US$ 0,09", - "revision": "0da4c1d4731c4d4fba2734e1", + "revision": "eb32f54e4044468581b81aff", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -9108,24 +6741,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + "costs": [] }, - "revision": "4efa194c5e4e4930b655ad92", + "revision": "7df79a5a6b254a5bb5e85b35", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -9141,18 +6762,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685395698830, - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - }, + "date_created": "2023-05-29T21:28:18.830Z", + "date_last_updated": "2023-05-29T21:28:18.830Z", + "date_of_expiration": "2023-05-29T21:28:18.830Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9161,10 +6773,10 @@ "history_id": 1685395698830, "description": "Compra de 1.000,00 IVIP por 10.000,00 IVIPAY" }, - "revision": "e6de06ec08b8411190a784f7", + "revision": "71733752f8e74d56b3782b1d", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -9182,24 +6794,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + "costs": [] }, - "revision": "62972517d3054013b0508e09", + "revision": "77166aba67df469b82afcdd9", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -9215,18 +6815,9 @@ "original_amount": 30000, "total_amount": 30000, "id": 1685457147497, - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - }, + "date_created": "2023-05-30T14:32:27.497Z", + "date_last_updated": "2023-05-30T14:32:27.497Z", + "date_of_expiration": "2023-05-30T14:32:27.497Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9234,10 +6825,10 @@ "currency_id": "IVIPAY", "history_id": 1685457147497 }, - "revision": "7205ede6a8654d1497fa2bed", + "revision": "181f6b98b0464d05973d16ab", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -9245,10 +6836,10 @@ "content": { "type": "STRING", "value": "Compra de 30.000,00 IVIPAY por 3.000,00 IVIP estabilizando US$ 0,22", - "revision": "0d1fc9b8d4ab41da800c6550", + "revision": "5fc3667bdd1d4bda8bd65d1f", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -9266,24 +6857,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + "costs": [] }, - "revision": "55aec11e680a478cac3deee7", + "revision": "c32f11ca3f014602923dcc8d", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509517, + "modified": 1701463509517 } }, { @@ -9299,18 +6878,9 @@ "original_amount": 3000, "total_amount": 3000, "id": 1685457225462, - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - }, + "date_created": "2023-05-30T14:33:45.462Z", + "date_last_updated": "2023-05-30T14:33:45.462Z", + "date_of_expiration": "2023-05-30T14:33:45.462Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9319,10 +6889,10 @@ "history_id": 1685457225462, "description": "Compra de 3.000,00 IVIP por 30.000,00 IVIPAY" }, - "revision": "aaddda51c38f440683a76cb2", + "revision": "8f3891f1c0d3447ba6705e4d", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9340,24 +6910,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + "costs": [] }, - "revision": "d6229da3293a4a8cb230e747", + "revision": "ef40cc723a0f47109f22e7a6", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9373,18 +6931,9 @@ "original_amount": 70000, "total_amount": 70000, "id": 1685458042396, - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - }, + "date_created": "2023-05-30T14:47:22.396Z", + "date_last_updated": "2023-05-30T14:47:22.396Z", + "date_of_expiration": "2023-05-30T14:47:22.396Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9392,10 +6941,10 @@ "currency_id": "IVIPAY", "history_id": 1685458042396 }, - "revision": "009d0fb8663c4d5d99ba20e2", + "revision": "b7a63bc3aafb454b83a38023", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9403,10 +6952,10 @@ "content": { "type": "STRING", "value": "Compra de 70.000,00 IVIPAY por 7.000,00 IVIP estabilizando US$ 0,46", - "revision": "9285022569cc417792043505", + "revision": "c624c524e4e84b49bd5d524f", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9424,24 +6973,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + "costs": [] }, - "revision": "fc4ea63d09c54d9184935f3d", + "revision": "136352f4a5974c089102f20f", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9457,18 +6994,9 @@ "original_amount": 7000, "total_amount": 7000, "id": 1685458118470, - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - }, + "date_created": "2023-05-30T14:48:38.470Z", + "date_last_updated": "2023-05-30T14:48:38.470Z", + "date_of_expiration": "2023-05-30T14:48:38.470Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9477,10 +7005,10 @@ "history_id": 1685458118470, "description": "Compra de 7.000,00 IVIP por 70.000,00 IVIPAY" }, - "revision": "357067ff884541f5a26d6a97", + "revision": "48e2208408a34ecd8db83028", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9498,24 +7026,12 @@ "installment_amount": 100000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + "costs": [] }, - "revision": "fc3a2d74224647fd9838ac64", + "revision": "98c3553f3b344bee87a6764b", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9530,18 +7046,9 @@ "original_amount": 100000, "total_amount": 100000, "id": 1685663081137, - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - }, + "date_created": "2023-06-01T23:44:41.137Z", + "date_last_updated": "2023-06-01T23:44:41.137Z", + "date_of_expiration": "2023-07-01T23:44:41.137Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9551,10 +7058,10 @@ "description": "", "wasDebited": true }, - "revision": "47b4a790440b4ba9ae62a7ec", + "revision": "1499ca6ad8744463a914ac11", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9572,24 +7079,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + "costs": [] }, - "revision": "25e3bbe7d7ee4aa4825e402e", + "revision": "1b78acd510a249d1877c4319", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9605,18 +7100,9 @@ "original_amount": 0, "total_amount": 0, "id": 1685732640623, - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - }, + "date_created": "2023-06-02T19:04:00.623Z", + "date_last_updated": "2023-06-02T19:04:00.623Z", + "date_of_expiration": "2023-06-02T19:04:00.623Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9625,10 +7111,10 @@ "history_id": 1685732640623, "description": "Compra de 0,00 IVIP por 75,00 BRL" }, - "revision": "d281954a65464a98be0bfdfe", + "revision": "89d7f7453aee4e42893187f7", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9636,24 +7122,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + "costs": [] }, - "revision": "2853c73fbe914f1ea3008a83", + "revision": "3d8e5db906b6423e9685eca7", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9668,27 +7142,18 @@ "total_amount": 220, "history_id": 1686686158496, "id": 1686686158496, - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - }, + "date_created": "2023-06-13T19:55:58.496Z", + "date_last_updated": "2023-06-13T19:55:58.496Z", + "date_of_expiration": "2023-07-13T19:55:58.496Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "dd356da4cda648bfa26a09c2", + "revision": "70460a41a1b84566866807af", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9696,10 +7161,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 220,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "d1f45292627648a3a653a654", + "revision": "be0fe713d8a546c5904c5d71", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9719,24 +7184,12 @@ "installment_amount": 37.333, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + "costs": [] }, - "revision": "6e4469e4b94446fb885a119c", + "revision": "bf010986653b4cdeba3d3c29", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9753,18 +7206,9 @@ "total_amount": 37.333, "id": 1687279230710, "contract_id": "1679181025084", - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - }, + "date_created": "2023-06-20T16:40:30.710Z", + "date_last_updated": "2023-06-20T16:40:30.710Z", + "date_of_expiration": "2023-06-20T16:40:30.710Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -9772,10 +7216,10 @@ "currency_id": "BRL", "history_id": 1687279230710 }, - "revision": "ec6a117ad5ee4f78a0f4350f", + "revision": "532fc7a8025d4369b9c509b7", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9783,10 +7227,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "f67c7989dc1b4b19979da5c2", + "revision": "d59f1e287ee940e4a6df6460", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9794,24 +7238,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + "costs": [] }, - "revision": "5a6868e999fa44fcb47a677c", + "revision": "43f8ddd43c1c44f886648bce", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9826,27 +7258,18 @@ "total_amount": 865324, "history_id": 1687291349985, "id": 1687291349985, - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - }, + "date_created": "2023-06-20T20:02:29.985Z", + "date_last_updated": "2023-06-20T20:02:29.985Z", + "date_of_expiration": "2023-06-20T20:02:29.985Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "4aa0abb228f849f195d30a2f", + "revision": "49da637b29bb4c2e9d7764b2", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9854,10 +7277,10 @@ "content": { "type": "STRING", "value": "Saque de 865.324,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "14629d8189394c3d954fbd8c", + "revision": "89b4f8a420ee4dc8ad62cca0", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9875,24 +7298,12 @@ "installment_amount": 100000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + "costs": [] }, - "revision": "167d82be8e204f63afb02554", + "revision": "3f40124a17c846d3b1957aea", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9907,18 +7318,9 @@ "original_amount": 102000, "total_amount": 102000, "id": 1688400997533, - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - }, + "date_created": "2023-07-03T16:16:37.533Z", + "date_last_updated": "2023-07-03T16:16:37.533Z", + "date_of_expiration": "2023-07-03T16:16:37.533Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9927,10 +7329,10 @@ "history_id": 1688400997533, "wasDebited": true }, - "revision": "c29164a6de624e92ac05014d", + "revision": "11fb9658b673416ba80c5800", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9938,10 +7340,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 100.000,00 IVIP com um rendimento de +2.000,00 IVIP (2,00%)", - "revision": "8cf47ddc55ec43f4b05461fd", + "revision": "67e01e657c8e477fa4ade008", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9959,24 +7361,12 @@ "installment_amount": 960, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + "costs": [] }, - "revision": "4cf5f4f71da64bb79de69b86", + "revision": "1d5e42432cba41b4bc4f165b", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -9991,18 +7381,9 @@ "original_amount": 960, "total_amount": 960, "id": 1689203359364, - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - }, + "date_created": "2023-07-12T23:09:19.364Z", + "date_last_updated": "2023-07-12T23:09:19.364Z", + "date_of_expiration": "2024-05-12T23:09:19.364Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -10010,10 +7391,10 @@ "currency_id": "BRL", "history_id": 1689203359364 }, - "revision": "75ff83742dc34173ad51a2d5", + "revision": "1d5a466967da4b62a4f6b0f8", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10021,10 +7402,10 @@ "content": { "type": "STRING", "value": "Investimento de 960,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/12/2024", - "revision": "adb0a933c94343b2a10c25b7", + "revision": "98267343ccb64841a5a601f1", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10033,24 +7414,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-19T18:23:22.188Z", - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + ".val": "2023-08-19T18:23:22.188Z" }, - "revision": "11dd07a3b379474da053748f", + "revision": "581481391ff64bb2bf410000", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10066,24 +7435,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + "costs": [] }, - "revision": "178cdf2386bf41de8aee0db3", + "revision": "554acb74c23d4295966e7b98", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10091,10 +7448,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/extract/000523147298669313/order/1689877402188", - "revision": "39e8da02f2f94a1e8ccab4a0", + "revision": "a5de809d69ee4d6c86d3cd43", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10109,29 +7466,19 @@ "total_amount": 7104, "id": 1689877402192, "history_id": 1689877402192, - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, + "date_created": "2023-07-20T18:23:22.192Z", + "date_last_updated": "2023-07-20T18:23:22.192Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + "status_detail": "pending_waiting_payment" }, - "revision": "3edd40f6026947ac8f03cbcb", + "revision": "2468d851b8dc43a6ac482220", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10139,10 +7486,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 7.104,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "7258bbd56ce043a1973f5758", + "revision": "a29f344e29fc4e75bd60ca6d", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10151,24 +7498,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-19T20:01:24.161Z", - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + ".val": "2023-08-19T20:01:24.161Z" }, - "revision": "b518ca639cc64d39a9a6b13f", + "revision": "71ad3fa87d1c4be68fa69ed3", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10184,24 +7519,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + "costs": [] }, - "revision": "aa26f0f81e9146af944afbb8", + "revision": "3cf7639ef7c14220b23e4122", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10209,10 +7532,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1689883284161", - "revision": "d4befe1a48a94951a1004693", + "revision": "fdc8fef8d6114642896af7f1", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10227,14 +7550,8 @@ "total_amount": 1391, "id": 1689883284161, "history_id": 1689883284161, - "date_created": { - "type": 6, - "value": 1701459383471 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383471 - }, + "date_created": "2023-07-20T20:01:24.161Z", + "date_last_updated": "2023-07-20T20:02:07.692Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -10243,16 +7560,12 @@ "status_detail": "rejected", "money_release_date": "2023-07-20T20:02:07.692Z", "money_release_status": "rejected", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383471 - } + "wasDebited": true }, - "revision": "2b2bd97257174abaad50383a", + "revision": "a41bdde08d114d0f8c36e1c7", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10260,10 +7573,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.391,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "4f6da5bf679746c49670174a", + "revision": "cb949dddf3c844d1a5321f51", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10273,24 +7586,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3%", - "amount": 145.5, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "amount": 145.5 }, - "revision": "92106f8f2b8141e88284ebb6", + "revision": "245e5f26cf354b7d9ecc04ee", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10305,24 +7606,12 @@ "installment_amount": 5000, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "financial_institution": "ivipcoin" }, - "revision": "34e186c642754dd58f998390", + "revision": "4ec42503efe54a8d8d7a1811", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10330,10 +7619,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566158772", - "revision": "12ba82346ca842eb84235297", + "revision": "6f4b986223414ea48c9f3267", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10341,10 +7630,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f290c87e6a7c4593808e1acb", + "revision": "8a1143e20def411da8316a7a", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10359,18 +7648,9 @@ "total_amount": 4850, "id": 1690566158772, "history_id": 1690566158772, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - }, + "date_created": "2023-07-28T17:42:38.772Z", + "date_last_updated": "2023-07-28T18:25:14.945Z", + "date_of_expiration": "2023-07-28T17:42:38.772Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -10381,10 +7661,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "9db02bdd8714423b9e05d369", + "revision": "1b5c861ddb094b479986bd54", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10392,10 +7672,10 @@ "content": { "type": "STRING", "value": "Saque de 50,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "2bad43aad74c44509935248d", + "revision": "2a250b46c99641c3bc13da2f", "revision_nr": 1, - "created": 1701459383471, - "modified": 1701459383471 + "created": 1701463509518, + "modified": 1701463509518 } }, { @@ -10405,24 +7685,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3%", - "amount": 29.099999999999998, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "amount": 29.099999999999998 }, - "revision": "4726453ed9384e6e83d78bce", + "revision": "8c81b74155564f7dbed8bb81", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10437,24 +7705,12 @@ "installment_amount": 1000, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "financial_institution": "ivipcoin" }, - "revision": "c85be72836c54e80a3625f70", + "revision": "8c0095985eb641089ab80d8b", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10462,10 +7718,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566489489", - "revision": "a14884ef1f694382b29ddfeb", + "revision": "a8873f06f9ea4f509a11c5f0", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10473,10 +7729,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "16f5c0815be74e3f9e1da522", + "revision": "f8264caa14c44dacb566a27e", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10491,18 +7747,9 @@ "total_amount": 970, "id": 1690566489489, "history_id": 1690566489489, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - }, + "date_created": "2023-07-28T17:48:09.489Z", + "date_last_updated": "2023-07-28T18:25:45.368Z", + "date_of_expiration": "2023-07-28T17:48:09.489Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -10514,10 +7761,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "2516006e14b94a67aba19261", + "revision": "a5edb5963598493692b5969f", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10525,10 +7772,10 @@ "content": { "type": "STRING", "value": "Saque de 10,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "4c90d26a0b524640984256df", + "revision": "4bbea124d22c46f18bca07a2", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10538,24 +7785,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3%", - "amount": 34.92, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "amount": 34.92 }, - "revision": "6d223196ad414056b519eb34", + "revision": "1fe95731d46449f3a8fcaddb", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10570,24 +7805,12 @@ "installment_amount": 1200, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "financial_institution": "ivipcoin" }, - "revision": "f7e4981a31b742959ad0e5d5", + "revision": "88b118ae5fc347578ae342e6", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10595,10 +7818,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566618435", - "revision": "062b0c1f879d4f18bdb91326", + "revision": "beed5457d13f47aab1e038af", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10606,10 +7829,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "db255c7666f74c9d9b493053", + "revision": "ca687228c45f4c5db01f591c", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10624,18 +7847,9 @@ "total_amount": 1164, "id": 1690566618435, "history_id": 1690566618435, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - }, + "date_created": "2023-07-28T17:50:18.435Z", + "date_last_updated": "2023-07-28T18:26:54.405Z", + "date_of_expiration": "2023-07-28T17:50:18.435Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -10646,10 +7860,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "ef1420a541614c9d9263ed2d", + "revision": "051d0526710b452aa85bbe77", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10657,10 +7871,10 @@ "content": { "type": "STRING", "value": "Saque de 1164 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "eba75dbb9d48495bada97f15", + "revision": "a1c1d7fed21e46ec8238a1d9", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10670,24 +7884,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 392.84999999999997, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "amount": 392.84999999999997 }, - "revision": "7604a0cd323e4403ba189c85", + "revision": "fae4a85bf4994067a5077570", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10702,24 +7904,12 @@ "installment_amount": 13500, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "financial_institution": "ivipcoin" }, - "revision": "14fd3324d4bc4f8ba5fd8f8b", + "revision": "60d7cb37d34b429bb601e8c5", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10727,10 +7917,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690568586623", - "revision": "a365ff71c1a44c6b88895be4", + "revision": "ae6a2e9e6d8f47a39e958c92", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10738,10 +7928,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "7ee618e4e0a7484283df12ba", + "revision": "e29b9292476e455e91b44003", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10756,18 +7946,9 @@ "total_amount": 13095, "id": 1690568586623, "history_id": 1690568586623, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - }, + "date_created": "2023-07-28T18:23:06.623Z", + "date_last_updated": "2023-07-28T18:27:14.472Z", + "date_of_expiration": "2023-07-28T18:23:06.623Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -10778,10 +7959,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "b2c00da6bd95479da815f43e", + "revision": "938d870b85af4e52b448cd89", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10789,10 +7970,10 @@ "content": { "type": "STRING", "value": "Saque de 13.095,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "43f0bfdbb9974df59c238fc0", + "revision": "bed997ce982943f9954b901d", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10808,24 +7989,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "costs": [] }, - "revision": "0da2d8b7bb064ef0ae5e29c5", + "revision": "e52d73c106b24aa18ffe8af7", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10833,10 +8002,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1691685725174", - "revision": "77cf5edd9f5c46ccb354ab26", + "revision": "d81e56a3bf444c4cb66e190a", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10851,18 +8020,9 @@ "total_amount": 155950, "id": 1691685725174, "history_id": 1691685725174, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - }, + "date_created": "2023-08-10T16:42:05.174Z", + "date_last_updated": "2023-08-10T16:42:05.174Z", + "date_of_expiration": "2023-08-10T16:42:05.174Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -10871,10 +8031,10 @@ "description": "Compra de 155.950,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "8e8c9c46f086448898bb4324", + "revision": "45f35651c928404da70ac074", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10883,24 +8043,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-16T18:40:23.442Z", - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + ".val": "2023-09-16T18:40:23.442Z" }, - "revision": "10e7d61e277d431796712343", + "revision": "9903170f7fb947569bd012d4", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10916,24 +8064,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "costs": [] }, - "revision": "b2df944d5a9348a1b2e6abb5", + "revision": "82e39471934e4dd1bcabfe5b", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10941,10 +8077,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692297623443", - "revision": "e4f4a104121d4024861cd832", + "revision": "9db515a1439d42dbab33db98", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10959,29 +8095,19 @@ "total_amount": 50, "id": 1692297623443, "history_id": 1692297623443, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, + "date_created": "2023-08-17T18:40:23.443Z", + "date_last_updated": "2023-08-17T18:40:23.443Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "status_detail": "pending_waiting_payment" }, - "revision": "93b24e0b1a8041afa657d07c", + "revision": "a76463ebe6d54ca481793548", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -10989,10 +8115,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 50,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "47cdd4c7f0dd40a1b5fb48ca", + "revision": "333ccca900f44ee6a5d91053", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11001,24 +8127,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-16T18:42:48.550Z", - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + ".val": "2023-09-16T18:42:48.550Z" }, - "revision": "a1dfada8d6554d3199c12e5e", + "revision": "32a988ed6969417db74abe80", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11034,24 +8148,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "costs": [] }, - "revision": "73e1241ac8064032a122b2d3", + "revision": "63ed8e872ebe4ed8b0e4b4a3", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11059,10 +8161,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692297768550", - "revision": "15cf421786ec46f49fda0e4e", + "revision": "677dbf591327433bac4b0d52", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11077,14 +8179,8 @@ "total_amount": 25, "id": 1692297768550, "history_id": 1692297768550, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, + "date_created": "2023-08-17T18:42:48.550Z", + "date_last_updated": "2023-08-17T18:43:22.788Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -11093,16 +8189,12 @@ "status_detail": "rejected", "money_release_date": "2023-08-17T18:43:22.788Z", "money_release_status": "rejected", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "wasDebited": true }, - "revision": "28a199687a934efa95c66003", + "revision": "10a8ab97d2b1494a8a8148e1", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11110,10 +8202,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 25,00 BRL para a carteira iVip 0005.2314.7298.6693-13", - "revision": "fab5ee39917e407baa5c9893", + "revision": "788ed54f311045de865a25c7", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11122,24 +8214,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-16T20:37:26.621Z", - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + ".val": "2023-09-16T20:37:26.621Z" }, - "revision": "4920bafb3b41420d84ba8a66", + "revision": "e127fb37e7cd4638b8103cdc", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11155,24 +8235,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "costs": [] }, - "revision": "57414929b9bc431abe5265d4", + "revision": "fef0d7ce06a340b29f32f573", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11180,10 +8248,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692304646621", - "revision": "d25494c181584e698573e9c9", + "revision": "0dc03039bc144548bba44227", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11198,14 +8266,8 @@ "total_amount": 1200, "id": 1692304646621, "history_id": 1692304646621, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, + "date_created": "2023-08-17T20:37:26.621Z", + "date_last_updated": "2023-08-17T20:40:02.388Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -11214,16 +8276,12 @@ "status_detail": "rejected", "money_release_date": "2023-08-17T20:40:02.388Z", "money_release_status": "rejected", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "wasDebited": true }, - "revision": "5ead2e545119400bb46bad9a", + "revision": "24bf9cb20ca7481fb05e7bfd", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11231,10 +8289,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.200,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", - "revision": "a2ac2ca7581a45b3b379f258", + "revision": "53c3013f6964492d934bd187", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11243,24 +8301,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-16T20:41:33.953Z", - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + ".val": "2023-09-16T20:41:33.953Z" }, - "revision": "fe0ea35268f34951ba115593", + "revision": "e80ec4df544247bdbc3ba1e7", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11276,24 +8322,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "costs": [] }, - "revision": "88664fcbc80c43ae881ab930", + "revision": "a582d1f286fc4aa7bc450e2d", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11301,10 +8335,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692304893954", - "revision": "3c8044e374e648599d61ad25", + "revision": "102bf249f09944c0a3aed1de", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11319,14 +8353,8 @@ "total_amount": 23000, "id": 1692304893954, "history_id": 1692304893954, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, + "date_created": "2023-08-17T20:41:33.954Z", + "date_last_updated": "2023-08-17T20:41:56.494Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11336,16 +8364,12 @@ "date_approved": "2023-08-17T20:41:56.494Z", "money_release_date": "2023-08-17T20:41:56.494Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "wasDebited": true }, - "revision": "b41f73294dfc44d583ca79ef", + "revision": "e135ceb4b2b248cdb748c4d1", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11353,10 +8377,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 23.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", - "revision": "a7be1db1092e4b82808783df", + "revision": "f52015c677fb4383a93f22de", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11365,24 +8389,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-16T23:06:58.376Z", - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + ".val": "2023-09-16T23:06:58.376Z" }, - "revision": "c246f7a2946445f8a69089b5", + "revision": "29ada87786404bb8a3d6e06a", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11398,24 +8410,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "costs": [] }, - "revision": "b5eb117bc23542018b25a09c", + "revision": "791c698b91de46b79ee53f55", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11423,10 +8423,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692313618376", - "revision": "a420090f7c8f49ce98982711", + "revision": "7cedd7e0139349d99c118c92", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11441,29 +8441,19 @@ "total_amount": 10000000, "id": 1692313618376, "history_id": 1692313618376, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, + "date_created": "2023-08-17T23:06:58.376Z", + "date_last_updated": "2023-08-17T23:06:58.376Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "status_detail": "pending_waiting_payment" }, - "revision": "d74d01016e8a43de87b9df9d", + "revision": "de9219a508f24b579a5345da", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11471,10 +8461,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 10.000.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", - "revision": "7f0208ea021d44ea9b3cef7c", + "revision": "8f7ca8fa6b3b4b4483ac04f5", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11483,24 +8473,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-17T14:16:26.664Z", - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + ".val": "2023-09-17T14:16:26.664Z" }, - "revision": "f1a09e22a18745e1b634b94c", + "revision": "e6e2b4c0ef6941bf8cec4ed3", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11516,24 +8494,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "costs": [] }, - "revision": "dff4b12de03f4e9aaa0d4248", + "revision": "67087e6a1ec443b08baa7677", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11541,10 +8507,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692368186664", - "revision": "3a123ad0f5764b46bbd64779", + "revision": "a34e04f141334a5dbe390ce1", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11559,29 +8525,19 @@ "total_amount": 125000000, "id": 1692368186664, "history_id": 1692368186664, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, + "date_created": "2023-08-18T14:16:26.664Z", + "date_last_updated": "2023-08-18T14:16:26.664Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "status_detail": "pending_waiting_payment" }, - "revision": "afd8c9289abe40338466ebaf", + "revision": "f9933c1031514597bacdd859", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11589,10 +8545,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 125.000.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", - "revision": "2a44e5852c18418393fb70b0", + "revision": "b041396cffaf4a7c851ecc9d", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11610,24 +8566,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 3, - "installments_payable": 1, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "installments_payable": 1 }, - "revision": "1e4c623162634477b5eb833e", + "revision": "c29e138268304d058dc6e1cf", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11635,10 +8579,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651485901", - "revision": "4a05be0a594b4d25ba89c669", + "revision": "d5e14c52c809400abc67c51b", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11653,18 +8597,9 @@ "total_amount": 114.75, "id": "1692651485901", "history_id": "1692651485901", - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - }, + "date_created": "2023-08-21T20:58:05.901Z", + "date_last_updated": "2023-08-21T20:58:05.901Z", + "date_of_expiration": "2023-08-21T20:58:05.901Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -11672,10 +8607,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "b92ce30f76b54bd7841df4af", + "revision": "24c9b859cda1485a86c59d17", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11683,10 +8618,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", - "revision": "a8cb721a74ac4d6c9a1ac878", + "revision": "e2dc4ebc32364a169b0fe8a9", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11704,24 +8639,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 4, - "installments_payable": 2, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "installments_payable": 2 }, - "revision": "d0529e8471044e44aac20d37", + "revision": "a6aabfb4634e47b68af642f8", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11729,10 +8652,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651487214", - "revision": "5d1b511c2d104e6fa55ba893", + "revision": "946b126c47004e5296d53cac", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11747,18 +8670,9 @@ "total_amount": 37.333333333333336, "id": "1692651487214", "history_id": "1692651487214", - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - }, + "date_created": "2023-08-21T20:58:07.214Z", + "date_last_updated": "2023-08-21T20:58:07.214Z", + "date_of_expiration": "2023-08-21T20:58:07.214Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -11766,10 +8680,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "b32e42e9c26947adb39b47db", + "revision": "83211f3f38864d1eb7eba5ff", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11777,10 +8691,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "6aa95a3643d24c87a5360027", + "revision": "2422ba8a779d49e1a25f9e1b", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11798,24 +8712,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 5, - "installments_payable": 1, - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - } + "installments_payable": 1 }, - "revision": "90b7cb3a119143ca8045d23f", + "revision": "b90a8cab42b7486bbfec87a0", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11823,10 +8725,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651816060", - "revision": "af63b0e0e2f24c8d999cddb2", + "revision": "f418a56bcfdf435bbd299d63", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11841,18 +8743,9 @@ "total_amount": 37.333333333333336, "id": "1692651816060", "history_id": "1692651816060", - "date_created": { - "type": 6, - "value": 1701459383472 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383472 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383472 - }, + "date_created": "2023-08-21T21:03:36.060Z", + "date_last_updated": "2023-08-21T21:03:36.060Z", + "date_of_expiration": "2023-08-21T21:03:36.060Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -11860,10 +8753,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "3809e7f63cf94716abec4cf4", + "revision": "dd495c02232a4ff98c5a09f6", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11871,10 +8764,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 5 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "38932e15e9ce4705bb6608bd", + "revision": "46117802a1e4487e87282149", "revision_nr": 1, - "created": 1701459383472, - "modified": 1701459383472 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11892,24 +8785,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 4, - "installments_payable": 0, - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "installments_payable": 0 }, - "revision": "2e5e3c59a0284c66aac078f7", + "revision": "d12d9f53ecfe46ffb08b907b", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11917,10 +8798,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692658113429", - "revision": "cd019fb545274e35a3809de8", + "revision": "5221d4a6f5ce4a8589746acc", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11935,18 +8816,9 @@ "total_amount": 114.75, "id": "1692658113429", "history_id": "1692658113429", - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-08-21T22:48:33.429Z", + "date_last_updated": "2023-08-21T22:48:33.429Z", + "date_of_expiration": "2023-08-21T22:48:33.429Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -11954,10 +8826,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "5788556da6b94df6aa3b3be5", + "revision": "a88d3821394b4dde8d2d86ff", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11965,10 +8837,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", - "revision": "661c78ef9b824362ae912987", + "revision": "3725631fc3d94afb9f8c37bf", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509519, + "modified": 1701463509519 } }, { @@ -11978,24 +8850,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 660000, - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "amount": 660000 }, - "revision": "1f69d9c20a5e49f1be39cb87", + "revision": "2746fca37bdf4ea48771e67f", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12010,24 +8870,12 @@ "installment_amount": 22000000, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "financial_institution": "ivipcoin" }, - "revision": "9ea3d13646804176a718787c", + "revision": "cb84d171997841219aaa8aee", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12035,10 +8883,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692976623136", - "revision": "1b9416d715704b6c90efbd28", + "revision": "571502eced5a40a28c4232a0", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12046,10 +8894,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "9e27c3e18e4f4b20978c3cf2", + "revision": "cf7284df9feb4cf892344e64", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12064,18 +8912,9 @@ "total_amount": 21340000, "id": "1692976623136", "history_id": "1692976623136", - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-08-25T15:17:03.136Z", + "date_last_updated": "2023-08-25T15:18:37.836Z", + "date_of_expiration": "2023-08-25T15:17:03.136Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -12087,10 +8926,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "06a2e8051bc449408d34eeb1", + "revision": "bb25a29b3c0c4327a90e21e5", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12098,10 +8937,10 @@ "content": { "type": "STRING", "value": "Saque de 21.340.000,00 IVIP para a carteira 0x15a315a0f6917CA88693fDCCD4B753E051c2d173", - "revision": "edfc3d24d83b4b82a226b790", + "revision": "5557e0edf9504dba8211f9e8", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12117,24 +8956,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "costs": [] }, - "revision": "b9186e34972e4523bbe79fd6", + "revision": "7156c423a56743d090d0cdc8", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12142,10 +8969,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1693346357974", - "revision": "84b03eb3e85c4da48d2c4dd8", + "revision": "579ae90d3025444dabe46cd3", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12160,18 +8987,9 @@ "total_amount": 2000000, "id": "1693346357974", "history_id": "1693346357974", - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-08-29T21:59:17.974Z", + "date_last_updated": "2023-08-29T21:59:17.974Z", + "date_of_expiration": "2025-08-29T21:59:17.968Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12179,10 +8997,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "95be0addceb94845bac632cd", + "revision": "ee8cdeca72b94af3ba28a184", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12190,10 +9008,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 29/08/2025 - P9A02KSL", - "revision": "71f46c4669b0491099aa65b2", + "revision": "7bd541b3b04c4de2ab6a178c", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12209,24 +9027,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "costs": [] }, - "revision": "cde0774826dd48c2b895f514", + "revision": "0a9c1e2f9735453ab644c81b", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12234,10 +9040,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1693765839188", - "revision": "cb6151dbe6444c3e8744dde2", + "revision": "541c6ff444a04b4ca6baafbb", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12252,18 +9058,9 @@ "total_amount": 1000, "id": "1693765839188", "history_id": "1693765839188", - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-09-03T18:30:39.188Z", + "date_last_updated": "2023-09-03T18:30:39.188Z", + "date_of_expiration": "2023-10-03T18:30:39.188Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12271,10 +9068,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "dd19d4139ed749aaa575848a", + "revision": "7635089d70194950b88384da", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12282,10 +9079,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "65c99914529c49b1b9b9c932", + "revision": "37d789df18264eaf995371d9", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12303,24 +9100,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 5, - "installments_payable": 1, - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "installments_payable": 1 }, - "revision": "523d0a2ad33846269b601e0c", + "revision": "7e217ed28e6b4c6db3444f5e", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12328,10 +9113,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554040120", - "revision": "631a993817ff4b3288832070", + "revision": "1b234b0e8fd24d06b03b5c9d", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12346,18 +9131,9 @@ "total_amount": 37.333333333333336, "id": "1694554040120", "history_id": "1694554040120", - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-09-12T21:27:20.120Z", + "date_last_updated": "2023-09-12T21:27:20.120Z", + "date_of_expiration": "2023-09-12T21:27:20.120Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -12365,10 +9141,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "1ffa897417724c6aacbe4b43", + "revision": "f9b816f0942749789a414258", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12376,10 +9152,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 5 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "9c6a8c0670404ae180d44f42", + "revision": "3076a8a412144f5fbbc54f92", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12397,24 +9173,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 3, - "installments_payable": 0, - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "installments_payable": 0 }, - "revision": "e9bf4b0731064cf58e43bd48", + "revision": "7f5d83f27b1a4bd7abf449e9", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12422,10 +9186,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554040222", - "revision": "04f2e2cd233a46a2a0a557bb", + "revision": "8c18f03c6d3d4449a3b23c0b", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12440,18 +9204,9 @@ "total_amount": 70.66666666666667, "id": "1694554040222", "history_id": "1694554040222", - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-09-12T21:27:20.222Z", + "date_last_updated": "2023-09-12T21:27:20.222Z", + "date_of_expiration": "2023-09-12T21:27:20.222Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -12459,10 +9214,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "c87af2051a844f9380ee0581", + "revision": "04bfe9a1de00480ca1cb00b4", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12470,10 +9225,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 3 no valor de 70,67 BRL referente ao contrato 1683667472591", - "revision": "47b898f233ba4d1fb8689e8a", + "revision": "eedf6d54e7bd42d880138857", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12491,24 +9246,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 6, - "installments_payable": 0, - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "installments_payable": 0 }, - "revision": "37375b73f5c74b4f8178c599", + "revision": "98abc86274c540a39737773d", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12516,10 +9259,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554084107", - "revision": "7160e1a91207449692d6570d", + "revision": "ec0635e79c9948668eea05a0", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12534,18 +9277,9 @@ "total_amount": 37.333333333333336, "id": "1694554084107", "history_id": "1694554084107", - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-09-12T21:28:04.107Z", + "date_last_updated": "2023-09-12T21:28:04.107Z", + "date_of_expiration": "2023-09-12T21:28:04.107Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -12553,10 +9287,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "252b827d368940beaabcfc01", + "revision": "838b2fc31cf34815ad24ce43", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12564,10 +9298,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 6 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "e820cdc7c31c48998ee2d431", + "revision": "d0f679be0b5740869f5e11aa", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12583,24 +9317,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "costs": [] }, - "revision": "cd6b472f000644e3a74261d6", + "revision": "eb690540420848b7a3e27a08", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12608,10 +9330,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696114300558", - "revision": "97526b6d12864753b70e880e", + "revision": "38fcc5bbeaef465985054879", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12627,18 +9349,9 @@ "total_amount": 100000, "id": "1696114300558", "history_id": "1696114300558", - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-09-30T22:51:40.558Z", + "date_last_updated": "2023-09-30T22:51:40.558Z", + "date_of_expiration": "2023-09-30T22:51:40.558Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12647,10 +9360,10 @@ "description": "Ganho de 100.000,00 IVIP pelo VOUCHER", "status_detail": "accredited" }, - "revision": "031732dad816426d834f2f34", + "revision": "9a37b17f1a04461a82389ae1", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12666,24 +9379,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "costs": [] }, - "revision": "719f5c639bda44d080f28dea", + "revision": "53356225b90d45249420f5a6", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12691,10 +9392,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696118036096", - "revision": "5913e02e41474c7a90c8ce2e", + "revision": "2e19510e25e341c78964e9f2", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12710,18 +9411,9 @@ "total_amount": 100000, "id": "1696118036096", "history_id": "1696118036096", - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-09-30T23:53:56.096Z", + "date_last_updated": "2023-09-30T23:53:56.096Z", + "date_of_expiration": "2023-09-30T23:53:56.096Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12729,10 +9421,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "cfd1c4e27fc242bfba5b5d37", + "revision": "6623ebda0ca44ffb8c93e5c0", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12740,10 +9432,10 @@ "content": { "type": "STRING", "value": "Ganho de 100.000,00 IVIP pelo VOUCHER com o número 1037", - "revision": "b2386a084b9e465190fdf236", + "revision": "ed95434fc30c48c08279af4f", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12759,24 +9451,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "costs": [] }, - "revision": "a48685615f534e7f8181e8cd", + "revision": "13da6bc781054e37a3dcd405", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12784,10 +9464,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696118157622", - "revision": "fd396dc199a041f78fa4e1c2", + "revision": "e8c3d8e50e96485eb0a42af4", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12803,18 +9483,9 @@ "total_amount": 50000, "id": "1696118157622", "history_id": "1696118157622", - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-09-30T23:55:57.622Z", + "date_last_updated": "2023-09-30T23:55:57.622Z", + "date_of_expiration": "2023-09-30T23:55:57.622Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12822,10 +9493,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "8ffa22aeff574925a8632230", + "revision": "b063617d195a4730a586c4fe", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12833,10 +9504,10 @@ "content": { "type": "STRING", "value": "Ganho de 50.000,00 IVIP pelo VOUCHER com o número 0023", - "revision": "02cf5bd15dd24f4daaad0e79", + "revision": "2ed51d0fd09c40e79e495019", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12852,24 +9523,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "costs": [] }, - "revision": "03006a2e3b9b4e06b2822a3e", + "revision": "6df0043c2d1d4d6ca6d688b2", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12877,10 +9536,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696360843684", - "revision": "0fd1083434fb4375b23f7b25", + "revision": "c190332a4f1a4561984d7627", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12896,18 +9555,9 @@ "total_amount": 1020, "id": "1696360843684", "history_id": "1696360843684", - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-10-03T19:20:43.684Z", + "date_last_updated": "2023-10-03T19:20:43.684Z", + "date_of_expiration": "2023-10-03T19:20:43.684Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12915,10 +9565,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "eec49fe54e1e4415a5f603b0", + "revision": "1f72b8fd0c874936b3dd05ac", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12926,10 +9576,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%) - Y12XDT27", - "revision": "cae325bd9a9c4cd59322a1b3", + "revision": "22d9de47a4d340d5b9f2af40", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12945,24 +9595,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "costs": [] }, - "revision": "02dcf0ef34604a2cad8dbe81", + "revision": "f2c94418556f48ddbc0ec5f6", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12970,10 +9608,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696362317186", - "revision": "bf289ff9ec9543dd99b9aecb", + "revision": "3e778139371c464b959b0e33", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -12989,18 +9627,9 @@ "total_amount": 1020, "id": "1696362317186", "history_id": "1696362317186", - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-10-03T19:45:17.186Z", + "date_last_updated": "2023-10-03T19:45:17.186Z", + "date_of_expiration": "2023-10-03T19:45:17.186Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13008,10 +9637,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "5bd972bbe49c4858930e0f8e", + "revision": "3520f09dd4c14fe9812170d7", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -13019,10 +9648,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%) - Y12XDT27", - "revision": "493f442ef278412abb3c9ba3", + "revision": "309c9050578e4be7a866ae13", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -13030,10 +9659,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "cc2a1cd7ebb34d008b301ef5", + "revision": "a9be43b67e0f4070b2c3bf5e", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509520, + "modified": 1701463509520 } }, { @@ -13043,24 +9672,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", - "amount": 24, - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "amount": 24 }, - "revision": "fb82f95986f84c35a289939a", + "revision": "a27aaba7458b4069b0184121", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13074,26 +9691,15 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-03-18T23:10:25.084Z", "history_id": 1679181025084, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "status": "paid" }, - "revision": "b92530aaf3e64adf988f985e", + "revision": "19700cb408cb494297ae332d", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13101,10 +9707,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "6dd5f436538140f4b2a33189", + "revision": "3502db40c77e4b38b602f466", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13112,10 +9718,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "d0d9f39ec6844e44b4b6e52c", + "revision": "4e30ae0fe5fd4b82a47bc596", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13125,24 +9731,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 51, - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "amount": 51 }, - "revision": "36a21272c471494896efed63", + "revision": "e8f1a66d82ec4334b17e19e8", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13156,26 +9750,15 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-03-18T23:12:37.805Z", "history_id": 1679181157805, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "status": "paid" }, - "revision": "652375cc92b346c0b073a5c4", + "revision": "7d65d732200343059bc9a89b", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13183,10 +9766,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "37ae8db452304974aa147a66", + "revision": "fc72c1844f0648439331d0f9", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13194,10 +9777,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f550fd874a684742b8dba9c6", + "revision": "2bc8d962191149d9a996566d", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13207,24 +9790,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 9.200000000000001, - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "amount": 9.200000000000001 }, - "revision": "c2f8f899d9ee454b945c4e84", + "revision": "9ca50b803dc749dcb8635225", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13238,26 +9809,15 @@ "total_amount": 239.2, "installments": 2, "installment_amount": 119.6, - "date_created": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-03-18T23:52:14.080Z", "history_id": 1679183534080, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "status": "paid" }, - "revision": "41531350b2a844ddbe3be9c0", + "revision": "b8978c4656a849a5a55560ad", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13265,10 +9825,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", - "revision": "aeaa8ed8dbf441759e2f2536", + "revision": "612332a2c28e44dd8ee119de", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13276,10 +9836,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "a520708fb2f040829d9153d4", + "revision": "de371accb1964fbea235ba15", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13289,24 +9849,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 8, - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "amount": 8 }, - "revision": "d24a29dbb7a44dcab9fe9054", + "revision": "4e8ab081c3cb4728929502c4", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13320,26 +9868,15 @@ "total_amount": 208, "installments": 2, "installment_amount": 104, - "date_created": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-03-19T00:00:46.128Z", "history_id": 1679184046128, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "status": "paid" }, - "revision": "6aea714deea548408ce0af8b", + "revision": "be22f7412b694387ad0bca21", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13347,10 +9884,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", - "revision": "9ef5a088893b47e9a67ef4fb", + "revision": "a31d26a8edca4f47a31bce3b", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13358,10 +9895,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "4aa1c93aea4a43b2b3e07c33", + "revision": "38658dd2ad7846baa49f8672", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13371,24 +9908,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 8.4, - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "amount": 8.4 }, - "revision": "704e5587b5914b08b6846069", + "revision": "b5164ff66e7b44638831ed55", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13402,26 +9927,15 @@ "total_amount": 218.4, "installments": 2, "installment_amount": 109.2, - "date_created": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-03-19T00:13:52.424Z", "history_id": 1679184832424, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "status": "paid" }, - "revision": "9c0ca528acb54d3a813823a6", + "revision": "e18ad65a49dd40ee834fa435", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13429,10 +9943,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", - "revision": "678e45cd08024b16ada9c672", + "revision": "2bfd61cf0a3044938d45fb39", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13440,10 +9954,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "409420be653d4abaa4729cfb", + "revision": "09947e36eb464f1889fcea04", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13451,10 +9965,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e7e8c1d18ee94eea92f7ed93", + "revision": "d647df3603684ab390663d2d", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13464,24 +9978,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", - "amount": 24, - "date_created": { - "type": 6, - "value": 1701459383473 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "amount": 24 }, - "revision": "6ad802f32eb8437a83d324c0", + "revision": "391bb97ce8464fb0a7107fa0", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13495,26 +9997,15 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { - "type": 6, - "value": 1701459383473 - }, + "date_created": "2023-03-18T23:10:25.084Z", "history_id": 1679181025084, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383473 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383473 - } + "status": "paid" }, - "revision": "e730edf476e54010ae8af37b", + "revision": "6068a5e61fef4238a97448bf", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13522,10 +10013,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "a21f6c00e1ab4a8fbe1f7505", + "revision": "706d9fb7ea8a4e768499db39", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13533,10 +10024,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "13e65dd35df946319f480b46", + "revision": "3b5f508b76e743b2970a3a97", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13546,24 +10037,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 51, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "amount": 51 }, - "revision": "ec57d450a5b840cfbb9a1558", + "revision": "4d422f9e707d488b9569ad97", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13577,26 +10056,15 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-03-18T23:12:37.805Z", "history_id": 1679181157805, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "status": "paid" }, - "revision": "9f4f38fd837d4903834a096a", + "revision": "1ff9443f3e694b5cb3be4cb3", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13604,10 +10072,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "8b8448e6a2e64ff99c4970cd", + "revision": "0a03cf49c97b4a5bbbc16b0f", "revision_nr": 1, - "created": 1701459383473, - "modified": 1701459383473 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13615,10 +10083,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "4b34c0350fc04164bee2c87b", + "revision": "cec211af47af4095bc53a533", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13628,24 +10096,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 9.200000000000001, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "amount": 9.200000000000001 }, - "revision": "cbf9a776d86a4231905900d6", + "revision": "57d79b3218ba4597b2df362d", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13659,26 +10115,15 @@ "total_amount": 239.2, "installments": 2, "installment_amount": 119.6, - "date_created": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-03-18T23:52:14.080Z", "history_id": 1679183534080, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "status": "paid" }, - "revision": "7ee73079e48848f798517c91", + "revision": "c731b35e2ed445b989133375", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13686,10 +10131,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", - "revision": "0f7af38fa2d34a139510af1e", + "revision": "120b3bef68cb4f22947be549", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13697,10 +10142,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "c188e2bc29de4ee3a41dbb5a", + "revision": "44fc7e0ae07f45b3a4589d0c", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13710,24 +10155,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 8, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "amount": 8 }, - "revision": "159c4295bc904f5c945a9c56", + "revision": "b94274f3241743079c7b97ee", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13741,26 +10174,15 @@ "total_amount": 208, "installments": 2, "installment_amount": 104, - "date_created": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-03-19T00:00:46.128Z", "history_id": 1679184046128, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "status": "paid" }, - "revision": "13eb4ba629424c9baf220822", + "revision": "fc2c63c8c75e4ce3b09efe80", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13768,10 +10190,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", - "revision": "d9a77ca6ec9b4e29a761cce0", + "revision": "6c4dd70d8359487bb3b6e96b", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13779,10 +10201,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "020739c7c91941858433c80d", + "revision": "8e9f21acb4d44f2494b26194", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13792,24 +10214,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", - "amount": 8.4, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "amount": 8.4 }, - "revision": "7e73712b8d9f44df8d2ece57", + "revision": "9783c23c789641679a04ad19", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13823,26 +10233,15 @@ "total_amount": 218.4, "installments": 2, "installment_amount": 109.2, - "date_created": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-03-19T00:13:52.424Z", "history_id": 1679184832424, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "status": "paid" }, - "revision": "3692b9c6d5544dcc8468f64c", + "revision": "439dcbb9a1834aef88d8cc01", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13850,10 +10249,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", - "revision": "e2c8bc93e0c74f65ab57714d", + "revision": "421ee93277de47c1aceb3cfc", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13861,10 +10260,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "6e92d1cc39794a3eb3f04c52", + "revision": "725ae3559e2f4b55bf935ea9", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13872,10 +10271,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c289d933c27d4095bf3c6205", + "revision": "d72de019840741b2baf982b9", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13885,24 +10284,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", - "amount": 24, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "amount": 24 }, - "revision": "64d5a9df13554dd3a4a60111", + "revision": "50eec9f228004efc96fed53e", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13916,26 +10303,15 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-03-18T23:10:25.084Z", "history_id": 1679181025084, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "status": "paid" }, - "revision": "55f01f9bbfc24114827d698d", + "revision": "2af57b71303c43bfbd8d5e0b", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13943,10 +10319,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "12ed88a40d6a4f05920e5ba8", + "revision": "348992fea34644fa9a575a97", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13954,10 +10330,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "a53c2833500b4e54aaa3448e", + "revision": "35b461075c6f45e0b818c916", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13967,24 +10343,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 51, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "amount": 51 }, - "revision": "8234f38b72b142d28156f209", + "revision": "ea2a7863224b468b846eb84f", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -13998,26 +10362,15 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-03-18T23:12:37.805Z", "history_id": 1679181157805, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "status": "paid" }, - "revision": "62da8ebd7a834534979129c6", + "revision": "b73bfc718bea4213a63222f9", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14025,10 +10378,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "f144bdf2e2284c7885c0a5bf", + "revision": "67b51eeb23124925a7949881", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14036,10 +10389,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "0422d87af0ee434594998fa9", + "revision": "4fe9b61ef59e472d8befa253", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14049,24 +10402,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 4, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "amount": 4 }, - "revision": "78af0262cb574f1096438ff1", + "revision": "972fdb74500a4f7cb8da44e8", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14080,26 +10421,15 @@ "total_amount": 204, "installments": 1, "installment_amount": 204, - "date_created": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-05-09T20:49:15.468Z", "history_id": 1683665355468, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "status": "paid" }, - "revision": "2dd33418eec44da59d259ccb", + "revision": "9d9f24c376b24f0ab18519dd", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14107,10 +10437,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 204,00", - "revision": "49247abc694048a7ad922150", + "revision": "c7e79ce826884500bef1104c", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14118,10 +10448,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "c2503467808c47938526b824", + "revision": "2ca024068b50457d8170856c", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14131,24 +10461,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", - "amount": 12, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "amount": 12 }, - "revision": "a1018f5aa35a42fc95f1c3d2", + "revision": "aec0ac4054ea47fa8b9ccc96", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14162,26 +10480,15 @@ "total_amount": 212, "installments": 3, "installment_amount": 70.66666666666667, - "date_created": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-05-09T21:24:32.591Z", "history_id": 1683667472591, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "status": "paid" }, - "revision": "4411f51085dc4bd3a7c95fc0", + "revision": "9b3b558dceef4c4fb3bed4cc", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14189,10 +10496,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", - "revision": "fc6e39a6f31b4aca836d3bde", + "revision": "6e09d78f34a5455bbf5b4bb1", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14200,10 +10507,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e08b53ea575e47ae96b2b5bd", + "revision": "142fd736cc9b49c29066c591", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14211,10 +10518,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4985e8ac1dcb485b9f4cb3f0", + "revision": "489679b40b0844ab85c802fb", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14224,24 +10531,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", - "amount": 24, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "amount": 24 }, - "revision": "e64c11340a664a6da37d599b", + "revision": "16e92851ee7d4de49aadd9dd", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14255,26 +10550,15 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-03-18T23:10:25.084Z", "history_id": 1679181025084, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "status": "paid" }, - "revision": "15b3d03ce0a54617bda67bc2", + "revision": "6006ed223e7c47d4a06ad558", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14282,10 +10566,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "88fdc58302784863a63def2b", + "revision": "2d87e05c95dd414b8ad39837", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14293,10 +10577,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "52089e1f27e341d8a1e2460b", + "revision": "de59d60fb49146fcbf9bcc7c", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14306,24 +10590,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 51, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "amount": 51 }, - "revision": "3e3fae999e2440999939b54c", + "revision": "5ee47ce483354ac9822f4192", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14337,26 +10609,15 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-03-18T23:12:37.805Z", "history_id": 1679181157805, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "status": "paid" }, - "revision": "1e84fb3f7094466ab9d90eca", + "revision": "2de14e238b1544a0b77432a1", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14364,10 +10625,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "c13b8d2799ac40a0be93afb7", + "revision": "8f4105fd03104af88eab7132", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14375,10 +10636,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "9f2247fdb679430b875d5842", + "revision": "79bf40bcb0fa4eeca13174a5", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14388,24 +10649,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", - "amount": 12, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "amount": 12 }, - "revision": "d6ea5e3974b941feb2d33f30", + "revision": "f3fbcaac6a2541b696202b39", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14419,26 +10668,15 @@ "total_amount": 212, "installments": 3, "installment_amount": 70.66666666666667, - "date_created": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-05-09T21:24:32.591Z", "history_id": 1683667472591, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "status": "paid" }, - "revision": "077744d8c4f7416a887a5eac", + "revision": "974962330eaf4231844d0b26", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14446,10 +10684,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", - "revision": "e199734f1145458f8dae7850", + "revision": "c02773276e5a488eae471348", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14457,10 +10695,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "c327bd5eb12946aaa918bcd1", + "revision": "22eb6397d9274754a3fab023", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14468,10 +10706,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7f7715fe04fe47bc8f612492", + "revision": "418e1861838546cc872e998e", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14481,24 +10719,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", - "amount": 24, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "amount": 24 }, - "revision": "370d304ab8f44452b7c7187c", + "revision": "4e377a6fef6e480bb19b1908", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14512,26 +10738,16 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-03-18T23:10:25.084Z", "history_id": 1679181025084, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "date_last_updated": "2023-09-12T21:27:20.136Z" }, - "revision": "7a4b6e65d9ba412e9c410848", + "revision": "96322b6ab2914418b1f9a1b7", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14539,10 +10755,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "b069481e80f74fd1a2f61152", + "revision": "0dcb26b36f5e43c0aad28134", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14550,10 +10766,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "9778d64a5c104eb0a0f00ce3", + "revision": "80066928d64a46cdbc7273ed", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14563,24 +10779,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", - "amount": 12, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "amount": 12 }, - "revision": "33779edc85f345379607dc0a", + "revision": "d1a45c60c21d4346970c25c9", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14594,26 +10798,16 @@ "total_amount": 212, "installments": 3, "installment_amount": 70.66666666666667, - "date_created": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-05-09T21:24:32.591Z", "history_id": 1683667472591, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "date_last_updated": "2023-09-12T21:27:20.249Z" }, - "revision": "b07e845b68764ad698af1c5f", + "revision": "11055df4e7e5479fa4f2e95f", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14621,10 +10815,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", - "revision": "df30d3c1cfdc4ae092f7ccb0", + "revision": "5e749776c7784812b202900a", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14632,10 +10826,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "dc3cf373ccea481790f2b202", + "revision": "9b2ef3130cd44872aa2611a3", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14643,10 +10837,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b5f801defe8e4c1681df0e87", + "revision": "44a342596119446cac26e9d9", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14656,24 +10850,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", - "amount": 24, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "amount": 24 }, - "revision": "0e6671f3685c4a18a2b5d9f7", + "revision": "5efc81a1bbb944f9b28030f1", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14687,26 +10869,16 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-03-18T23:10:25.084Z", "history_id": 1679181025084, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "date_last_updated": "2023-09-12T21:28:04.147Z" }, - "revision": "1dcdba015697458cb8c2ee3c", + "revision": "01e3b3066aa54f2fb0152f38", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14714,10 +10886,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "9288b5c924964b45bb4569c5", + "revision": "fbb2a1a41a35482ab5bc6f3a", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14725,10 +10897,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "35a2ab9132d842d68b4524e1", + "revision": "ce41628dd3ba4d8b95cf2b97", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14736,10 +10908,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ce80003a6c2a46fe9f67beee", + "revision": "837a931510fd4eef8e44acb9", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14747,10 +10919,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "be7f52a99df64ab6867a8dd6", + "revision": "d900c8fba8bf4ece9d0a2927", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14761,24 +10933,12 @@ "approvedLimit": 1500, "limitUsed": 312.50000000000006, "analysisRequested": "2023-03-17T05:24:01.192Z", - "lastReview": "2023-03-17T05:27:11.310Z", - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "lastReview": "2023-03-17T05:27:11.310Z" }, - "revision": "f105c847f3594f83951ed177", + "revision": "34f354b3c7d14fdc880cc49c", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14790,24 +10950,12 @@ "dateValidity": 1679011956662, "totalValue": 12518.651018650135, "currencyType": "USD", - "balancesModificacao": "2023-10-13T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "balancesModificacao": "2023-10-13T03:00:00.000Z" }, - "revision": "c432e0fc6d39407392b03004", + "revision": "7d9a862d799e4c8180cddce9", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14815,10 +10963,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c397e79e87374e28bc0b7589", + "revision": "384313b3f1034727bd41b417", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14826,10 +10974,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "eeb92c36bd424538a979e8b7", + "revision": "febf5437e43b4c81a202cef4", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14837,10 +10985,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c447da3d1ae54104bc867ae1", + "revision": "f110057aed8e424687efc0c6", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14849,24 +10997,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "limitUsed": 0 }, - "revision": "4952d1be43d74fc79f80b4f5", + "revision": "9d7b70d727c04fee95477350", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14877,24 +11013,12 @@ "dataModificacao": 1695928321328, "dateValidity": 1695928321874, "currencyType": "USD", - "balancesModificacao": "2023-10-11T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "balancesModificacao": "2023-10-11T03:00:00.000Z" }, - "revision": "a4628759ceaa4f94bacb98ba", + "revision": "9eb615632d654d4e8ace450f", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14904,24 +11028,12 @@ "value": { "available": "-3396779.42000000", "symbol": "IVIP", - "value": -452.027, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "value": -452.027 }, - "revision": "05a4d684353444d48156d4dc", + "revision": "b9455d2d426e432886106070", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14929,10 +11041,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7ca90c89e2844b27907164b6", + "revision": "bfda6f196cb149be8607a129", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14940,24 +11052,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "costs": [] }, - "revision": "11de25abed3a4a088c82d42b", + "revision": "698bafc846fe45809346876c", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -14972,18 +11072,9 @@ "total_amount": 500, "history_id": 1684093592429, "id": 1684093592429, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-05-14T19:46:32.429Z", + "date_last_updated": "2023-05-14T20:29:22.499Z", + "date_of_expiration": "2023-06-13T19:46:32.429Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -14993,10 +11084,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d9be4083aa774eae8216e143", + "revision": "79677e41734e444a87b4b904", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -15004,10 +11095,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "66e37492e06c46bbabbaa6d3", + "revision": "64a1ae61390f49958368435a", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -15017,24 +11108,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 10.02, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "amount": 10.02 }, - "revision": "7344785068c24c0090d91a64", + "revision": "b7539b70c16f4e349645be09", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -15042,10 +11121,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2e0214ab380547ae98c375d7", + "revision": "836fc011d4674cec87e7c949", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -15053,10 +11132,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "6de2d47e682e4237bc412c82", + "revision": "13dd85834b304a19975dec3b", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -15071,28 +11150,19 @@ "total_amount": 511.02, "history_id": 1684399661939, "id": 1684399661939, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-05-18T08:47:41.939Z", + "date_last_updated": "2023-05-18T08:47:41.939Z", + "date_of_expiration": "2023-06-17T08:47:41.939Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "7526e0c3344142a282c4bea5", + "revision": "718ff4addbec4ac68d2db5ef", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -15100,10 +11170,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 501,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 511,02", - "revision": "03164f0d4e584a0db98c1b33", + "revision": "f7cdbcc613ce449b8737ac75", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -15113,24 +11183,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 9.98, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "amount": 9.98 }, - "revision": "51e4603270d44309b6d2b75f", + "revision": "168b911dfa3343888be620f3", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -15138,10 +11196,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "02741e86b8334e099ff0c1fb", + "revision": "f09173f585db464bbd1d348c", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -15149,10 +11207,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "5135d37e31134e4fa66317e8", + "revision": "beb9cf4c46bd4d9e9cbb19ed", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -15167,28 +11225,19 @@ "total_amount": 508.98, "history_id": 1684612673872, "id": 1684612673872, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-05-20T19:57:53.872Z", + "date_last_updated": "2023-05-20T19:57:53.872Z", + "date_of_expiration": "2023-06-19T19:57:53.872Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "332781c87a104241a6416d6e", + "revision": "164d1be5d3374e0b84d40df9", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -15196,10 +11245,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 499,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 508,98", - "revision": "eea2c1f0c8964eb0a2df7976", + "revision": "c1326a28ddd44af6ac3e4b5c", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509521, + "modified": 1701463509521 } }, { @@ -15217,24 +11266,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "costs": [] }, - "revision": "bf78f389e69b4e3b9d03aff8", + "revision": "e53b7982edb64b998fc03a70", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15250,18 +11287,9 @@ "original_amount": 7306097, "total_amount": 7306097, "id": 1684624250482, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-05-20T23:10:50.482Z", + "date_last_updated": "2023-05-20T23:10:50.482Z", + "date_of_expiration": "2023-05-20T23:10:50.482Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15270,10 +11298,10 @@ "history_id": 1684624250482, "description": "Compra de 7.306.097,00 IVIP por 1.500,00 BRL" }, - "revision": "89fa95c8d831416f8d728e2b", + "revision": "e9ff9cac8b464c93b7de8e36", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15281,24 +11309,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "costs": [] }, - "revision": "d0bc0a2092054bfb9986c09a", + "revision": "633c5de53671485ea1a82e96", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15313,27 +11329,18 @@ "total_amount": 562, "history_id": 1684792076230, "id": 1684792076230, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-05-22T21:47:56.230Z", + "date_last_updated": "2023-05-22T21:47:56.230Z", + "date_of_expiration": "2023-06-21T21:47:56.230Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "d260a8b681cd4191b532dfd8", + "revision": "6be4427521cf48f0a521f39a", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15341,10 +11348,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "1c43710f7eae47b98dbff586", + "revision": "50902c5b254f4f10a938d17a", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15352,24 +11359,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "costs": [] }, - "revision": "1c63e7c10e974efda0cf4a42", + "revision": "1c1e5736fe894c619b9106a5", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15384,27 +11379,18 @@ "total_amount": 562, "history_id": 1684942997083, "id": 1684942997083, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-05-24T15:43:17.083Z", + "date_last_updated": "2023-05-24T15:43:17.083Z", + "date_of_expiration": "2023-06-23T15:43:17.083Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "dd3b6ab210a94edf991e53b0", + "revision": "30cd9cc38c4345c1b675de95", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15412,10 +11398,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "0dd00c0bc2cf40aab639f4ee", + "revision": "e1334e07327947bbabb8b92c", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15423,24 +11409,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "costs": [] }, - "revision": "7b6834a8dfc54c1a97364930", + "revision": "f25bd9cca8e24defb29b1226", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15455,18 +11429,9 @@ "total_amount": 562, "history_id": 1684973822893, "id": 1684973822893, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-05-25T00:17:02.893Z", + "date_last_updated": "2023-05-25T11:43:28.165Z", + "date_of_expiration": "2023-06-24T00:17:02.893Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -15476,10 +11441,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "7669d5d669fb4db4bd7b2fc7", + "revision": "ea9cfa4d1e6d48e984602ede", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15487,10 +11452,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "9401b809445146b1a9eef670", + "revision": "fd7e3982ccb64773ae268b86", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15498,24 +11463,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "costs": [] }, - "revision": "cbd35a4f26844786a65428ae", + "revision": "263b8738d2624c01b58ad23a", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15530,18 +11483,9 @@ "total_amount": 517, "history_id": 1685116940519, "id": 1685116940519, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-05-26T16:02:20.519Z", + "date_last_updated": "2023-05-29T14:07:27.276Z", + "date_of_expiration": "2023-06-25T16:02:20.519Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -15551,10 +11495,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9fa4e024f1d94a9092064a25", + "revision": "8a72723745fa4fd2afcc3651", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15562,10 +11506,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 517,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "631dc7ce31fc4d5ea4baddb6", + "revision": "8a7501db4ec34254bc5aa377", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15573,24 +11517,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "costs": [] }, - "revision": "4233eaec005b4842b9152d08", + "revision": "3319ed374efd468085d71e80", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15605,18 +11537,9 @@ "total_amount": 329, "history_id": 1685202990180, "id": 1685202990180, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-05-27T15:56:30.180Z", + "date_last_updated": "2023-05-29T12:48:37.239Z", + "date_of_expiration": "2023-06-26T15:56:30.180Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -15626,10 +11549,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "bde891ec8f6f44aa84fbd693", + "revision": "d567e8786ea8464fb1760a2f", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15637,10 +11560,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 329,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "1f25773342324f4f973842c1", + "revision": "ce66a8b2877c421ba55bba99", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15658,24 +11581,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "costs": [] }, - "revision": "4350587340644b17b72c801e", + "revision": "90523eacc16b46b28b57cd25", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15691,18 +11602,9 @@ "original_amount": 45000, "total_amount": 45000, "id": 1685384470907, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-05-29T18:21:10.907Z", + "date_last_updated": "2023-05-29T18:21:10.907Z", + "date_of_expiration": "2023-05-29T18:21:10.907Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -15710,10 +11612,10 @@ "currency_id": "IVIPAY", "history_id": 1685384470907 }, - "revision": "9256d53f193046d39859b96f", + "revision": "ce603bb4130f4828b6c7fc4c", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15721,10 +11623,10 @@ "content": { "type": "STRING", "value": "Compra de 45.000,00 IVIPAY por 4.500,00 IVIP estabilizando US$ 0,42", - "revision": "5475f77e4a864616ae1c7082", + "revision": "7e0fa1b1b11d44ee8014dacd", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15732,24 +11634,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - } + "costs": [] }, - "revision": "37d6fe4bfa514632a2de83fd", + "revision": "173f2d612b79404ba88f88af", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15764,18 +11654,9 @@ "total_amount": 96, "history_id": 1685389853107, "id": 1685389853107, - "date_created": { - "type": 6, - "value": 1701459383474 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383474 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383474 - }, + "date_created": "2023-05-29T19:50:53.107Z", + "date_last_updated": "2023-06-22T12:16:16.583Z", + "date_of_expiration": "2023-06-28T19:50:53.107Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -15785,10 +11666,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "952c0a793ac746c184f890c0", + "revision": "bb442f8c6e1a4ddda8912b02", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15796,10 +11677,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 96,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "e5e8cc01645c4b03857592cd", + "revision": "b530f2ad4e1e474cad984948", "revision_nr": 1, - "created": 1701459383474, - "modified": 1701459383474 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15817,24 +11698,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - } + "costs": [] }, - "revision": "5318a233d23f42dc9becb71b", + "revision": "af23b1b27b5341458970a414", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15850,18 +11719,9 @@ "original_amount": 3000000, "total_amount": 3000000, "id": 1685392262218, - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - }, + "date_created": "2023-05-29T20:31:02.218Z", + "date_last_updated": "2023-05-29T20:31:02.218Z", + "date_of_expiration": "2023-05-29T20:31:02.218Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -15869,10 +11729,10 @@ "currency_id": "IVIPAY", "history_id": 1685392262218 }, - "revision": "456c3bfc427d4bbeb26602f8", + "revision": "e1d2da4761af4611aec2ad68", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15880,10 +11740,10 @@ "content": { "type": "STRING", "value": "Compra de 3.000.000,00 IVIPAY por 300.000,00 IVIP estabilizando US$ 26,95", - "revision": "2898e7f989c04d28a933c548", + "revision": "27194db89bda43ccbe612c73", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15901,24 +11761,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - } + "costs": [] }, - "revision": "3616e8769aaa4afaa6b915d0", + "revision": "3f7d8224453042b6922b8efe", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15934,18 +11782,9 @@ "original_amount": 30000000, "total_amount": 30000000, "id": 1685392563175, - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - }, + "date_created": "2023-05-29T20:36:03.175Z", + "date_last_updated": "2023-05-29T20:36:03.175Z", + "date_of_expiration": "2023-05-29T20:36:03.175Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -15953,10 +11792,10 @@ "currency_id": "IVIPAY", "history_id": 1685392563175 }, - "revision": "bad547fd62a64abfbd85b7f3", + "revision": "4cd295dd707045d8bf7e6669", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15964,10 +11803,10 @@ "content": { "type": "STRING", "value": "Compra de 30.000.000,00 IVIPAY por 3.000.000,00 IVIP estabilizando US$ 269,53", - "revision": "9a7c60afcbaa4ae7ad4850b3", + "revision": "c71a11965322447086b7521e", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -15985,24 +11824,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - } + "costs": [] }, - "revision": "827b40a5324f4902a68f2772", + "revision": "77ddf62b27804f6db263063c", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16018,18 +11845,9 @@ "original_amount": 3300000, "total_amount": 3300000, "id": 1685394042885, - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - }, + "date_created": "2023-05-29T21:00:42.885Z", + "date_last_updated": "2023-05-29T21:00:42.885Z", + "date_of_expiration": "2023-05-29T21:00:42.885Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -16037,10 +11855,10 @@ "currency_id": "IVIP", "history_id": 1685394042885 }, - "revision": "5797a08ff7104a82b99785ba", + "revision": "cb6d82292074458783b4d374", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16048,10 +11866,10 @@ "content": { "type": "STRING", "value": "Compra de 3.300.000,00 IVIP por 33.000.000,00 IVIPAY", - "revision": "71fce28e8deb41ecb478103e", + "revision": "5d08767546944d898845f925", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16069,24 +11887,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - } + "costs": [] }, - "revision": "65bb40d993a6427ab7291d21", + "revision": "8aacc3e8705748dc962ffb97", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16102,18 +11908,9 @@ "original_amount": 50000000, "total_amount": 50000000, "id": 1685450530237, - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - }, + "date_created": "2023-05-30T12:42:10.237Z", + "date_last_updated": "2023-05-30T12:42:10.237Z", + "date_of_expiration": "2023-05-30T12:42:10.237Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -16121,10 +11918,10 @@ "currency_id": "IVIPAY", "history_id": 1685450530237 }, - "revision": "0fb65ecbe5b34979971d36de", + "revision": "5d340427011848c2b6dae009", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16132,10 +11929,10 @@ "content": { "type": "STRING", "value": "Compra de 50.000.000,00 IVIPAY por 5.000.000,00 IVIP estabilizando US$ 456,73", - "revision": "ae606a9690e1435cb690fe1c", + "revision": "b91c4bbfe2f74c3985e971c7", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16153,24 +11950,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - } + "costs": [] }, - "revision": "8edd240edcd14f4585f12509", + "revision": "27c6e80b95a546c287e04074", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16186,18 +11971,9 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1685455769977, - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - }, + "date_created": "2023-05-30T14:09:29.977Z", + "date_last_updated": "2023-05-30T14:09:29.977Z", + "date_of_expiration": "2023-05-30T14:09:29.977Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -16205,10 +11981,10 @@ "currency_id": "IVIP", "history_id": 1685455769977 }, - "revision": "a63503edc7104c7cb611a694", + "revision": "c5823157115e472fb382f0a3", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16216,10 +11992,10 @@ "content": { "type": "STRING", "value": "Compra de 5.000.000,00 IVIP por 50.000.000,00 IVIPAY", - "revision": "5c1fe07af5524edfb4cb4aac", + "revision": "78933427a2ce40e898b3aaf5", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16237,24 +12013,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - } + "costs": [] }, - "revision": "4635712b81854cc3a53587d5", + "revision": "49bef71138854de480481ef4", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16270,18 +12034,9 @@ "original_amount": 4940350, "total_amount": 4940350, "id": 1685743296302, - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - }, + "date_created": "2023-06-02T22:01:36.302Z", + "date_last_updated": "2023-06-02T22:01:36.302Z", + "date_of_expiration": "2023-06-02T22:01:36.302Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16290,10 +12045,10 @@ "history_id": 1685743296302, "description": "Compra de 4.940.350,00 IVIP por 1.408,00 BRL" }, - "revision": "7adc6d3e5c0a47edb850c88e", + "revision": "247467f800774ccea09e317e", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16311,24 +12066,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - } + "costs": [] }, - "revision": "345b71e2b0554533bf668234", + "revision": "c145077a140c45a8a1b476c4", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16344,18 +12087,9 @@ "original_amount": 41.900000000000006, "total_amount": 41.900000000000006, "id": 1685744480429, - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - }, + "date_created": "2023-06-02T22:21:20.429Z", + "date_last_updated": "2023-06-02T22:21:20.429Z", + "date_of_expiration": "2023-06-02T22:21:20.429Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16363,10 +12097,10 @@ "currency_id": "BRL", "history_id": 1685744480429 }, - "revision": "997aa2cd07d74e8fb7eebc02", + "revision": "700fa96870d842e892c06537", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16374,10 +12108,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "2c9d67eaa5c04fd4953df52a", + "revision": "8c6c6d7f13ab4fa689bb6805", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16395,24 +12129,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - } + "costs": [] }, - "revision": "d143f4dc4d4c4ed0825e4477", + "revision": "4cd9c4976ded4ec5a2f93089", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16428,18 +12150,9 @@ "original_amount": 147164, "total_amount": 147164, "id": 1685745152104, - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - }, + "date_created": "2023-06-02T22:32:32.104Z", + "date_last_updated": "2023-06-02T22:32:32.104Z", + "date_of_expiration": "2023-06-02T22:32:32.104Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16448,10 +12161,10 @@ "history_id": 1685745152104, "description": "Compra de 147.164,00 IVIP por 41,90 BRL" }, - "revision": "005fd646084c45f89f8d2bf9", + "revision": "fc4dc3b2caec4c5ab6dc9462", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16459,24 +12172,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - } + "costs": [] }, - "revision": "69c52aa00d79433386b6ac57", + "revision": "40aed81e73904f489fc3b939", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16491,18 +12192,9 @@ "total_amount": 1191, "history_id": 1686664360099, "id": 1686664360099, - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - }, + "date_created": "2023-06-13T13:52:40.099Z", + "date_last_updated": "2023-06-13T14:00:09.214Z", + "date_of_expiration": "2023-07-13T13:52:40.099Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -16512,10 +12204,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "56f08d31aee04e62ad47be63", + "revision": "46d7d91dace146a694697a70", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16523,10 +12215,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.191,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "933a29a9b7a248b7bd1dd5f2", + "revision": "1eb3e4a8afc2444280fce527", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16546,24 +12238,12 @@ "installment_amount": 511.02, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - } + "costs": [] }, - "revision": "38ae6a2fd67d4f388f8117c8", + "revision": "deb07194a6e84c37914fd0be", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16580,18 +12260,9 @@ "total_amount": 511.02, "id": 1686844436781, "contract_id": "1684399661939", - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - }, + "date_created": "2023-06-15T15:53:56.781Z", + "date_last_updated": "2023-06-15T15:53:56.781Z", + "date_of_expiration": "2023-06-15T15:53:56.781Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -16599,10 +12270,10 @@ "currency_id": "BRL", "history_id": 1686844436781 }, - "revision": "fb08a332779e4f5bad7a714b", + "revision": "b65b7fece8614b9985c9ad9f", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16610,10 +12281,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 1 no valor de 511,02 BRL referente ao contrato 1684399661939", - "revision": "6078746287b146619a2deb41", + "revision": "79ff29760b5141ec89ed2cc6", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16633,24 +12304,12 @@ "installment_amount": 508.98, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - } + "costs": [] }, - "revision": "d9fcadef7893418e80ef946b", + "revision": "03efa9fe6dad4f64a50addf9", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16667,18 +12326,9 @@ "total_amount": 508.98, "id": 1686844436954, "contract_id": "1684612673872", - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - }, + "date_created": "2023-06-15T15:53:56.954Z", + "date_last_updated": "2023-06-15T15:53:56.954Z", + "date_of_expiration": "2023-06-15T15:53:56.954Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -16686,10 +12336,10 @@ "currency_id": "BRL", "history_id": 1686844436954 }, - "revision": "850e6a1ffd904543ada05b92", + "revision": "2702e964e89d4ffc824ee7e8", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16697,10 +12347,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 1 no valor de 508,98 BRL referente ao contrato 1684612673872", - "revision": "cf44b7b4a35a440fbae864d3", + "revision": "7433822ffa4149baa472617b", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16718,24 +12368,12 @@ "installment_amount": 11152973, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - } + "costs": [] }, - "revision": "9ecfa9947b1f491181a013df", + "revision": "301ba6d37b3a42e98bc0c270", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -16750,18 +12388,9 @@ "original_amount": 11152973, "total_amount": 11152973, "id": 1687345768938, - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - }, + "date_created": "2023-06-21T11:09:28.938Z", + "date_last_updated": "2023-06-21T11:09:28.938Z", + "date_of_expiration": "2024-06-21T11:09:28.938Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16770,10 +12399,10 @@ "history_id": 1687345768938, "wasDebited": true }, - "revision": "4d6d70367a774dacb2263ba3", + "revision": "3767dc254b3d47b2a1beb8b4", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -16781,10 +12410,10 @@ "content": { "type": "STRING", "value": "Investimento de 11.152.973,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2024", - "revision": "7ff9e438628348b0bea960e4", + "revision": "fdae2d0ecc9b4f0e8c87f4d3", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509522, + "modified": 1701463509522 } }, { @@ -16802,24 +12431,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - } + "costs": [] }, - "revision": "340064f8714d4d3282b7e181", + "revision": "eaa2f41330914ca88017baf8", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -16835,18 +12452,9 @@ "original_amount": 818586, "total_amount": 818586, "id": 1687393215194, - "date_created": { - "type": 6, - "value": 1701459383475 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383475 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383475 - }, + "date_created": "2023-06-22T00:20:15.194Z", + "date_last_updated": "2023-06-22T00:20:15.194Z", + "date_of_expiration": "2023-06-22T00:20:15.194Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16855,10 +12463,10 @@ "history_id": 1687393215194, "description": "Compra de 818.586,00 IVIP por 171,00 BRL" }, - "revision": "7be3c5399c4b4a26856c8f17", + "revision": "2a9f9196e64d4f619d509ecd", "revision_nr": 1, - "created": 1701459383475, - "modified": 1701459383475 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -16876,24 +12484,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - } + "costs": [] }, - "revision": "7512e784f1b6457cb7166e17", + "revision": "b913da2483444ea6960eab8c", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -16909,18 +12505,9 @@ "original_amount": 496157, "total_amount": 496157, "id": 1687495116294, - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - }, + "date_created": "2023-06-23T04:38:36.294Z", + "date_last_updated": "2023-06-23T04:38:36.294Z", + "date_of_expiration": "2023-06-23T04:38:36.294Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16929,10 +12516,10 @@ "history_id": 1687495116294, "description": "Compra de 496.157,00 IVIP por 96,00 BRL" }, - "revision": "1247c054e85346a0adf1a022", + "revision": "f7d1eead54154b98a0cdd874", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -16950,24 +12537,12 @@ "installment_amount": 12152954, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - } + "costs": [] }, - "revision": "e2ba167d7e1f449393486a6f", + "revision": "36e557b2b7364686a2dd0f4b", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -16982,18 +12557,9 @@ "original_amount": 12152954, "total_amount": 12152954, "id": 1687547056698, - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - }, + "date_created": "2023-06-23T19:04:16.698Z", + "date_last_updated": "2023-06-23T19:04:16.698Z", + "date_of_expiration": "2025-06-23T19:04:16.698Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -17002,10 +12568,10 @@ "history_id": 1687547056698, "wasDebited": true }, - "revision": "80b8b822cd2043f0b295e700", + "revision": "13f23b8a118646c5be030e87", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17013,10 +12579,10 @@ "content": { "type": "STRING", "value": "Investimento de 12.152.954,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", - "revision": "56f26fbae1944f209fdd8215", + "revision": "d280491b6a3f44a7b74548e3", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17024,24 +12590,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - } + "costs": [] }, - "revision": "782141b5ace342d9a365d182", + "revision": "68e4e1c9a7be47728d5bdfd7", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17056,27 +12610,18 @@ "total_amount": 526, "history_id": 1688994491622, "id": 1688994491622, - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - }, + "date_created": "2023-07-10T13:08:11.622Z", + "date_last_updated": "2023-07-10T13:08:11.622Z", + "date_of_expiration": "2023-08-09T13:08:11.622Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "480e212664a54e5a8fd9b0f5", + "revision": "963d452fa67040b3b5a77c8d", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17084,10 +12629,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 526,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "bd0ce934cb864191a2027448", + "revision": "7f774cbab12940bab1d4bee5", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17095,24 +12640,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - } + "costs": [] }, - "revision": "a6b09b292863440db5c4b33d", + "revision": "d4b79b3c42694d55874aab62", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17127,18 +12660,9 @@ "total_amount": 2224, "history_id": 1689000633630, "id": 1689000633630, - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - }, + "date_created": "2023-07-10T14:50:33.630Z", + "date_last_updated": "2023-07-10T15:21:46.324Z", + "date_of_expiration": "2023-08-09T14:50:33.630Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -17148,10 +12672,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "cbd28e35f53f4cdbb8d0bead", + "revision": "38e059369fb24354bd1912d7", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17159,10 +12683,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.224,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "8d6cdc1237e3421d9da8985d", + "revision": "4831dcc70ccf4ca2802da3cd", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17180,24 +12704,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - } + "costs": [] }, - "revision": "7ce9ea1301ed45948358752a", + "revision": "dba08bf2a82741978c4f1b2c", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17213,18 +12725,9 @@ "original_amount": 180125, "total_amount": 180125, "id": 1689082225194, - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - }, + "date_created": "2023-07-11T13:30:25.194Z", + "date_last_updated": "2023-07-11T13:30:25.194Z", + "date_of_expiration": "2023-07-11T13:30:25.194Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17233,10 +12736,10 @@ "history_id": 1689082225194, "description": "Compra de 180.125,00 IVIP por 224,00 BRL" }, - "revision": "e2e398f32f3b45ac90baaf35", + "revision": "8f5d3c5f6a59416bb2472652", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17254,24 +12757,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - } + "costs": [] }, - "revision": "0d5f7ebccc8342e08bb0b949", + "revision": "61d1782f5f5741b6bd67b7ad", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17287,18 +12778,9 @@ "original_amount": 305476, "total_amount": 305476, "id": 1689114929852, - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - }, + "date_created": "2023-07-11T22:35:29.852Z", + "date_last_updated": "2023-07-11T22:35:29.852Z", + "date_of_expiration": "2023-07-11T22:35:29.852Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17307,10 +12789,10 @@ "history_id": 1689114929852, "description": "Compra de 305.476,00 IVIP por 500,00 BRL" }, - "revision": "40eeb9cadbfc4a27a3ff8b79", + "revision": "7983b9bd2bbc4bd8b0b74d91", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17318,24 +12800,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - } + "costs": [] }, - "revision": "4dd533bea90e4af08d55b318", + "revision": "62ad365a372c4b81a6dbbba1", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17350,18 +12820,9 @@ "total_amount": 726, "history_id": 1689115029893, "id": 1689115029893, - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - }, + "date_created": "2023-07-11T22:37:09.893Z", + "date_last_updated": "2023-07-12T08:23:29.959Z", + "date_of_expiration": "2023-08-10T22:37:09.893Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -17371,10 +12832,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "2d058c03d7eb497494252cd1", + "revision": "471971d49cea42ffa913ad7b", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17382,10 +12843,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 726,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "9c9cd3b4fe9e4b8f90125424", + "revision": "6f819bb7ff8b449cb786c569", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17403,24 +12864,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - } + "costs": [] }, - "revision": "3b1b26dd2ddf48029e3a614e", + "revision": "0f9d3c2d22cd4803979c541d", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17436,18 +12885,9 @@ "original_amount": 93754, "total_amount": 93754, "id": 1689195736692, - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - }, + "date_created": "2023-07-12T21:02:16.692Z", + "date_last_updated": "2023-07-12T21:02:16.692Z", + "date_of_expiration": "2023-07-12T21:02:16.692Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17456,10 +12896,10 @@ "history_id": 1689195736692, "description": "Compra de 93.754,00 IVIP por 226,00 BRL" }, - "revision": "e4164f31e5fb40c89ef6f82e", + "revision": "f6725b43579c469ba681d005", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17477,24 +12917,12 @@ "installment_amount": 1904, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - } + "costs": [] }, - "revision": "2d38d7c1557a46baacdeb52b", + "revision": "f0a6a0cdf22643369ebd910d", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17509,18 +12937,9 @@ "original_amount": 1904, "total_amount": 1904, "id": 1689204261841, - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - }, + "date_created": "2023-07-12T23:24:21.841Z", + "date_last_updated": "2023-07-12T23:24:21.841Z", + "date_of_expiration": "2024-05-12T23:24:21.841Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17529,10 +12948,10 @@ "history_id": 1689204261841, "wasDebited": true }, - "revision": "ffb3b73d4834444396d250f8", + "revision": "55e1b609eabf43f78ae2c3da", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17540,10 +12959,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.904,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/12/2024", - "revision": "e540691afbf3451e9690c61a", + "revision": "5bc392cc93b141b59f8a6f03", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17561,24 +12980,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - } + "costs": [] }, - "revision": "e50b240fa5694e92920cccc0", + "revision": "3fa10114c42d4d1482431cca", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17594,18 +13001,9 @@ "original_amount": 40949, "total_amount": 40949, "id": 1689204343069, - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - }, + "date_created": "2023-07-12T23:25:43.069Z", + "date_last_updated": "2023-07-12T23:25:43.069Z", + "date_of_expiration": "2023-07-12T23:25:43.069Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17614,10 +13012,10 @@ "history_id": 1689204343069, "description": "Compra de 40.949,00 IVIP por 96,00 BRL" }, - "revision": "0e4dee4d9b3441e9a7bb9cad", + "revision": "ac6f43318c1747e182829add", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17625,24 +13023,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - } + "costs": [] }, - "revision": "72623d465432465bb4d9dd01", + "revision": "51164048efba4d63bf5072b2", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17657,27 +13043,18 @@ "total_amount": 1423, "history_id": 1689347614368, "id": 1689347614368, - "date_created": { - "type": 6, - "value": 1701459383476 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383476 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383476 - }, + "date_created": "2023-07-14T15:13:34.368Z", + "date_last_updated": "2023-07-14T15:13:34.368Z", + "date_of_expiration": "2023-08-13T15:13:34.368Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "8cd2dc9a660b4a66a63df75e", + "revision": "2e4821538c3d4c578bfa65c5", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17685,10 +13062,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.423,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "f2696b4287834eb1aa3d2abb", + "revision": "7f48c94fe20249169a34132c", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17696,24 +13073,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "costs": [] }, - "revision": "1a2a5ac803e34885b3655207", + "revision": "fb2b52e5070e4d0785b20849", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17728,18 +13093,9 @@ "total_amount": 1379, "history_id": 1689618134136, "id": 1689618134136, - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-07-17T18:22:14.136Z", + "date_last_updated": "2023-07-17T18:39:06.304Z", + "date_of_expiration": "2023-08-16T18:22:14.136Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -17749,10 +13105,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d7f9b0447a1647e18214f675", + "revision": "6496f340e5d94bec9cb6eb0e", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17760,10 +13116,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.379,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "5050e3e8077a43c89b97b11f", + "revision": "f27255ba4c8a48bfbf4c11aa", "revision_nr": 1, - "created": 1701459383476, - "modified": 1701459383476 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17781,24 +13137,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "costs": [] }, - "revision": "8ad1b7c80e754680aa488587", + "revision": "8387b4906e4a4620bbe8d9e8", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17814,18 +13158,9 @@ "original_amount": 326875, "total_amount": 326875, "id": 1689619360780, - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-07-17T18:42:40.780Z", + "date_last_updated": "2023-07-17T18:42:40.780Z", + "date_of_expiration": "2023-07-17T18:42:40.780Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17834,10 +13169,10 @@ "history_id": 1689619360780, "description": "Compra de 326.875,00 IVIP por 500,00 BRL" }, - "revision": "3f9d1a1d18fd485eba1be5da", + "revision": "fb95d66568ec4e048e525fc4", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17855,24 +13190,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "costs": [] }, - "revision": "0cb68304508b44dd936ced41", + "revision": "ef118aa85a2545729005d77e", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17888,18 +13211,9 @@ "original_amount": 318321, "total_amount": 318321, "id": 1690237331737, - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-07-24T22:22:11.737Z", + "date_last_updated": "2023-07-24T22:22:11.737Z", + "date_of_expiration": "2023-07-24T22:22:11.737Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17908,10 +13222,10 @@ "history_id": 1690237331737, "description": "Compra de 318.321,00 IVIP por 450,00 BRL" }, - "revision": "da9cff2478f84555abe1c10b", + "revision": "2865540551d54d0dbd795259", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17929,24 +13243,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "costs": [] }, - "revision": "930b22ddf37c420c8f24e320", + "revision": "a18e4896a9c54e21b0758c75", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17962,18 +13264,9 @@ "original_amount": 338652, "total_amount": 338652, "id": 1690273510959, - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-07-25T08:25:10.959Z", + "date_last_updated": "2023-07-25T08:25:10.959Z", + "date_of_expiration": "2023-07-25T08:25:10.959Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17982,10 +13275,10 @@ "history_id": 1690273510959, "description": "Compra de 338.652,00 IVIP por 429,00 BRL" }, - "revision": "c5288b45c88840e5a0b0bc8d", + "revision": "fee559e10fc345f79cbd5b13", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -17994,24 +13287,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-20T11:04:14.014Z", - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + ".val": "2023-09-20T11:04:14.014Z" }, - "revision": "2649f882ac42439d9444b2f4", + "revision": "b164605d63574a7e961eccd9", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -18027,24 +13308,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "costs": [] }, - "revision": "b36f72cd7d0c446fab046fd1", + "revision": "9683e70433f44ef2ab26caf9", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -18052,10 +13321,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1692615854014", - "revision": "d7f0d9dca65b47648c67fbb8", + "revision": "1d344beef1904a8aa8ddaf5b", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -18070,29 +13339,19 @@ "total_amount": 450, "id": 1692615854014, "history_id": 1692615854014, - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-08-21T11:04:14.014Z", + "date_last_updated": "2023-08-21T11:04:14.014Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "status_detail": "pending_waiting_payment" }, - "revision": "4c10c3b7c2dc4eaea09f13b2", + "revision": "0f6de3b335474191b89db0f9", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -18100,10 +13359,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 450,00 BRL para a carteira iVip 0013.4542.5233.2609-77", - "revision": "008700e64041467ebaa33d55", + "revision": "f0d698c38cc14ebd8729b63d", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -18119,24 +13378,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "costs": [] }, - "revision": "ddb15f8949e346a9bacee941", + "revision": "8b720b52b0de4c87b24eac2a", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18144,10 +13391,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1693771767267", - "revision": "539c90ad50824ce7b91097d6", + "revision": "c08d041fea684320a59bed82", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18162,18 +13409,9 @@ "total_amount": 3384929, "id": "1693771767267", "history_id": "1693771767267", - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-09-03T20:09:27.267Z", + "date_last_updated": "2023-09-03T20:09:27.267Z", + "date_of_expiration": "2023-10-03T20:09:27.265Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18181,10 +13419,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "50e7ac7521ec486db4b48440", + "revision": "c8fe5ad454ad416b943412c3", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18192,10 +13430,10 @@ "content": { "type": "STRING", "value": "Investimento de 3.384.929,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "71163185afcb46c8a40161c2", + "revision": "3411b9dac07c447eabbee537", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509523, + "modified": 1701463509523 } }, { @@ -18211,24 +13449,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "costs": [] }, - "revision": "85de447ac7ef430a83c18864", + "revision": "dead83e951454d43af0f5f9d", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18236,10 +13462,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696371493428", - "revision": "15f93090941043e496916fbf", + "revision": "6330028ed8c348528e7a0c2f", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18255,18 +13481,9 @@ "total_amount": 3452627.58, "id": "1696371493428", "history_id": "1696371493428", - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-10-03T22:18:13.428Z", + "date_last_updated": "2023-10-03T22:18:13.428Z", + "date_of_expiration": "2023-10-03T22:18:13.428Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -18274,10 +13491,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "f61f1a47597442cdae34c1d8", + "revision": "b1fb956f766e44e884f0dc6f", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18285,10 +13502,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 3.384.929,00 IVIP com um rendimento de +67.698,58 IVIP (2,00%) - Y12XDT27", - "revision": "a632dbd204da46739b859d42", + "revision": "f608b84c5f8041c1a895f916", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18304,24 +13521,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "costs": [] }, - "revision": "69be5e5f66804691af1056cf", + "revision": "80fb7a0bc48545b795cde7f4", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18329,10 +13534,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696371493371", - "revision": "46bff8790098467cb0021d02", + "revision": "3ed299989a5943da9e0b7111", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18348,18 +13553,9 @@ "total_amount": 3452627.58, "id": "1696371493371", "history_id": "1696371493371", - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-10-03T22:18:13.371Z", + "date_last_updated": "2023-10-03T22:18:13.371Z", + "date_of_expiration": "2023-10-03T22:18:13.371Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18367,10 +13563,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "b06c1f227f324be995af5aee", + "revision": "c66bff8bef994c9b94eecd23", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18378,10 +13574,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 3.384.929,00 IVIP com um rendimento de +67.698,58 IVIP (2,00%) - Y12XDT27", - "revision": "954d2a745f184c7583dd4b82", + "revision": "2853136f723f4cadb5d48f5d", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18397,24 +13593,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "costs": [] }, - "revision": "e018522dff414d82b594f5d1", + "revision": "2b1288c4a9c9429b9797779b", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18422,10 +13606,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696459483900", - "revision": "5e54d2cb3ce540f9a2027a3d", + "revision": "1b613ceb253049aea4f6530f", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18441,18 +13625,9 @@ "total_amount": 7624011, "id": "1696459483900", "history_id": "1696459483900", - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-10-04T22:44:43.900Z", + "date_last_updated": "2023-10-04T22:44:43.900Z", + "date_of_expiration": "2023-11-04T22:44:43.861Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18460,10 +13635,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "9f71d5e60cac4ac09a12dbcb", + "revision": "b87411c9175345189f26600a", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18471,10 +13646,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.624.011,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "692a8440cce24a49941e6fc9", + "revision": "9efc28bb7cc64a7f929ed97e", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18483,24 +13658,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-05T22:09:19.538Z", - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + ".val": "2023-11-05T22:09:19.538Z" }, - "revision": "d9bc0441d60f47568fff77c0", + "revision": "b3ea5087659244829c4d283f", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18516,24 +13679,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "costs": [] }, - "revision": "26822a63285049d8ab7ed01b", + "revision": "f35c7c7865854efa9466be52", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18541,10 +13692,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696630159545", - "revision": "0d3a6b8e6345425dae6d4951", + "revision": "6ec86845d0af45c9831c1ac5", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18560,29 +13711,19 @@ "total_amount": 1000, "id": "1696630159545", "history_id": "1696630159545", - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-10-06T22:09:19.545Z", + "date_last_updated": "2023-10-06T22:09:19.545Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "status_detail": "pending_waiting_payment" }, - "revision": "098462e1d31742e6a306c764", + "revision": "d9469b90383641f59f0e34e6", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18590,10 +13731,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0013.4542.5233.2609-77", - "revision": "f35d3ebc6920492b95f8f00d", + "revision": "a08df761e4e2436596076bc8", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18601,10 +13742,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a9479b70129149af806dbfdc", + "revision": "8d704a87a8794d8793e3c407", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18614,24 +13755,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 10.02, - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "amount": 10.02 }, - "revision": "526dcfcf8587473a8084b803", + "revision": "66daceb0061445dcb0476936", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18645,26 +13774,15 @@ "total_amount": 511.02, "installments": 1, "installment_amount": 511.02, - "date_created": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-05-18T08:47:41.939Z", "history_id": 1684399661939, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "status": "paid" }, - "revision": "d569354a33fe4c44a73ac423", + "revision": "386766a52d7b4ba89b6ddc1a", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18672,10 +13790,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 501,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 511,02", - "revision": "9e4061c1aedd447cbfde0770", + "revision": "6e1506ae56274a5db9ae5f44", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18683,10 +13801,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "3721c06ad3fb41f383bec7ab", + "revision": "0480bbc900d541d6b8002c08", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18696,24 +13814,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 9.98, - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "amount": 9.98 }, - "revision": "dd4f209fb38f4548bdfa99a4", + "revision": "4d9e6e49e74e4572907d102a", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18727,26 +13833,15 @@ "total_amount": 508.98, "installments": 1, "installment_amount": 508.98, - "date_created": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-05-20T19:57:53.872Z", "history_id": 1684612673872, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "status": "paid" }, - "revision": "120b8eaa46eb448fb2b7ac1a", + "revision": "95779265e0534679aae7732a", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18754,10 +13849,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 499,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 508,98", - "revision": "14298d4d9101477a83bc8d9a", + "revision": "b6ec896509c147c685b9f7a6", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18765,10 +13860,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "22e2a0ba493b4d1995659dc5", + "revision": "e82958199ddb4a5e97e8c38b", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18776,10 +13871,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "bb8b146e2ed94db980bf93bb", + "revision": "510a389766164218ab2002f1", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18787,10 +13882,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7771a9ce104d4877b76b76ee", + "revision": "6a65989b33c54c8ead162735", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18801,24 +13896,12 @@ "approvedLimit": 1000, "limitUsed": 0, "analysisRequested": "2023-05-17T11:09:17.322Z", - "lastReview": "2023-05-17T13:23:34.101Z", - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "lastReview": "2023-05-17T13:23:34.101Z" }, - "revision": "a4f2f9730cbb453db6274446", + "revision": "3f508a041e13478f87e9d0e9", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18830,24 +13913,12 @@ "dateValidity": 1684091909123, "totalValue": 5846.89, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "balancesModificacao": "2023-10-09T03:00:00.000Z" }, - "revision": "a30f6b18080945d9a5c72e4b", + "revision": "b96d615a21a04e1d840b5c3a", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18857,24 +13928,12 @@ "value": { "symbol": "BRL", "available": "100.00000000", - "value": 20.09, - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "value": 20.09 }, - "revision": "e9c5b10968324f338467bd5a", + "revision": "9074ddbc3ae84aaf81680f40", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18882,10 +13941,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b23e0391753c4ed0ae7cb04f", + "revision": "faa9cd09d1a04b09b0bdabd7", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18893,24 +13952,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "costs": [] }, - "revision": "406d98af79ab41b391e3d41a", + "revision": "2baee921349b4120b9c7e2f4", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18925,18 +13972,9 @@ "total_amount": 100, "history_id": 1684119457629, "id": 1684119457629, - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-05-15T02:57:37.629Z", + "date_last_updated": "2023-05-15T03:02:14.913Z", + "date_of_expiration": "2023-06-14T02:57:37.629Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -18946,10 +13984,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d87f6b305cdf4bfc9254558e", + "revision": "a5cdf629d1f646e5b10a84ae", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18957,10 +13995,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0024.4576.8964.9692-86", - "revision": "fc1d9cd3c02241628bc73c45", + "revision": "b07e998796b6465d90430b2b", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18968,10 +14006,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "90b6e58ed3e74175926dfb7c", + "revision": "3172379f1b1f4a049d9ef0ae", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18979,10 +14017,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5556b63ca81d4c75b061d2b9", + "revision": "b86cd408529f44f78d460944", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -18991,24 +14029,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "limitUsed": 0 }, - "revision": "21779fd2fa584029871bb3ae", + "revision": "56e5a3f8ee314f2198482c18", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19019,24 +14045,12 @@ "dataModificacao": 1684119427446, "dateValidity": 1684119427446, "totalValue": 20.09, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "currencyType": "USD" }, - "revision": "2dc7b58d3ecf466a90af3441", + "revision": "4a41a533581449c7a29d06ff", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19046,24 +14060,12 @@ "value": { "available": "5324627.00000000", "symbol": "IVIP", - "value": 1075.36, - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "value": 1075.36 }, - "revision": "e5da3ad3bd1346a08cd52020", + "revision": "4e2c01261e824a40991d8a4f", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19071,10 +14073,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3241001f34e049a498f18348", + "revision": "e97905869dc54298bc440022", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19082,24 +14084,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "costs": [] }, - "revision": "4e58033e6bf74cf7a151a5c9", + "revision": "df3dd10fe9a146cf81c81c88", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19114,18 +14104,9 @@ "total_amount": 2000, "history_id": 1677798769726, "id": 1677798769726, - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-03-02T23:12:49.726Z", + "date_last_updated": "2023-03-13T13:16:05.659Z", + "date_of_expiration": "2023-04-01T23:12:49.726Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -19133,10 +14114,10 @@ "money_release_date": "2023-03-13T13:16:05.659Z", "money_release_status": "rejected" }, - "revision": "87852642966642f98abd8c23", + "revision": "06773a55ed324a379353d1bb", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19144,10 +14125,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0037.5729.7582.0925-33", - "revision": "80a83a91ce824689b99e7cf8", + "revision": "ec4444829fad45b695f7a8af", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19155,24 +14136,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "costs": [] }, - "revision": "af66b01242674a1b84c73867", + "revision": "1d03a5e94c4944c9af2db673", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19187,18 +14156,9 @@ "total_amount": 1000, "history_id": 1678058459792, "id": 1678058459792, - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-03-05T23:20:59.792Z", + "date_last_updated": "2023-03-13T13:41:25.155Z", + "date_of_expiration": "2023-04-04T23:20:59.792Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -19206,10 +14166,10 @@ "money_release_date": "2023-03-13T13:41:25.155Z", "money_release_status": "rejected" }, - "revision": "e7b5b60747c2441e9b7459ac", + "revision": "87a9ec647c9e40bc96bedae4", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19217,10 +14177,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0037.5729.7582.0925-33", - "revision": "e134f236afa64b60831aaa78", + "revision": "be97609924124242a5bfca47", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19228,24 +14188,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "costs": [] }, - "revision": "9fc317b1e589450987ef4bf7", + "revision": "2124df2bc29e4f4c9f9cf4d2", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19260,18 +14208,9 @@ "total_amount": 1000, "history_id": 1678527306058, "id": 1678527306058, - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-03-11T09:35:06.058Z", + "date_last_updated": "2023-03-11T14:22:04.146Z", + "date_of_expiration": "2023-04-10T09:35:06.058Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -19281,10 +14220,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "1da7ef02c61445a3872e654b", + "revision": "547976b72bc6422c80ef30ad", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19292,10 +14231,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0037.5729.7582.0925-33", - "revision": "9781dbb9bbbd44ee8f676aa9", + "revision": "b4f0bdf2a53b44ee94c1626d", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19313,24 +14252,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "costs": [] }, - "revision": "062c727d9c8947ecbd062509", + "revision": "58d681a9f6bd43bdbed3373a", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19346,18 +14273,9 @@ "original_amount": 5325627, "total_amount": 5325627, "id": 1679908062539, - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-03-27T09:07:42.539Z", + "date_last_updated": "2023-03-27T09:07:42.539Z", + "date_of_expiration": "2023-03-27T09:07:42.539Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19366,10 +14284,10 @@ "history_id": 1679908062539, "description": "Compra de 5.325.627,00 IVIP por 1.000,00 BRL" }, - "revision": "e9035bcceee34f919f6acca7", + "revision": "573e48df3cfd451dbd2198f2", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19387,24 +14305,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "costs": [] }, - "revision": "cc64b97cddd448269b33342e", + "revision": "de7e9d27a541418994b22417", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19419,18 +14325,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687109837625, - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - }, + "date_created": "2023-06-18T17:37:17.625Z", + "date_last_updated": "2023-06-18T17:37:17.625Z", + "date_of_expiration": "2023-12-18T17:37:17.625Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19438,10 +14335,10 @@ "currency_id": "IVIP", "history_id": 1687109837625 }, - "revision": "6d2023b5705b47b68e312e0b", + "revision": "3070a7f73e1e44799dbdf4f3", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19449,10 +14346,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/18/2023", - "revision": "e9449d2cd3a744be95a0c24f", + "revision": "4550908df4e8435dbeed593e", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19460,10 +14357,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c7eb5f0673a349c58ea84ed0", + "revision": "dbfa26b22da74080827000ab", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19471,10 +14368,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0c7463c2cb1c4728b1aa5cff", + "revision": "1e159d008a334ea8915ec44a", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19483,24 +14380,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "limitUsed": 0 }, - "revision": "9af0c4c70e4b4fe39b783ade", + "revision": "69dfa5968fd64704801ad73b", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19512,24 +14397,12 @@ "dateValidity": 1678995120507, "totalValue": 249.76613748285868, "currencyType": "USD", - "balancesModificacao": "2023-10-01T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383477 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383477 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383477 - } + "balancesModificacao": "2023-10-01T03:00:00.000Z" }, - "revision": "079fd3e0ef1743b4b9b03a11", + "revision": "94b7fe362ae2436abae1f532", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19537,10 +14410,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d1e57b87c289448da93764c6", + "revision": "e56b26afb27a4cf8be209628", "revision_nr": 1, - "created": 1701459383477, - "modified": 1701459383477 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19548,10 +14421,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7b25931030ca42259be0445f", + "revision": "987301d360d14ac0a7857009", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19562,24 +14435,12 @@ "dataModificacao": 1678127212147, "dateValidity": 1678325697693, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383478 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383478 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383478 - } + "currencyType": "USD" }, - "revision": "a348d2a1c56448f88765bc86", + "revision": "60da4c4599fc43998102e19a", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19589,24 +14450,12 @@ "value": { "available": "150.00000000", "symbol": "BRL", - "value": 29.27, - "date_created": { - "type": 6, - "value": 1701459383478 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383478 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383478 - } + "value": 29.27 }, - "revision": "628261411f9145c898ca878c", + "revision": "d5f0fa911ae3480e9478d174", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19614,10 +14463,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "dd64b2ba7f6040a696f695f1", + "revision": "4a68509995f84e89b4db28ee", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19625,24 +14474,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383478 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383478 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383478 - } + "costs": [] }, - "revision": "5fdf8002da074abbab0ce178", + "revision": "e84c07bbbcf74546a38011ac", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19657,18 +14494,9 @@ "total_amount": 100, "history_id": 1689373938365, "id": 1689373938365, - "date_created": { - "type": 6, - "value": 1701459383478 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383478 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383478 - }, + "date_created": "2023-07-14T22:32:18.365Z", + "date_last_updated": "2023-07-26T21:41:01.153Z", + "date_of_expiration": "2023-08-13T22:32:18.365Z", "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", @@ -19677,10 +14505,10 @@ "money_release_status": "cancelled", "wasDebited": true }, - "revision": "58952fd6fc994013b4c0ead8", + "revision": "8c9fe6ec9bb94270a9ba0e83", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19688,10 +14516,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0072.1969.3774.2530-22", - "revision": "b8875e05da824f24bee99e15", + "revision": "ffe95894f725467ca7f02113", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19699,24 +14527,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383478 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383478 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383478 - } + "costs": [] }, - "revision": "aac2428272da4082b318ad14", + "revision": "5534e13c0298415ba40a58a8", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19731,18 +14547,9 @@ "total_amount": 130, "history_id": 1689719003118, "id": 1689719003118, - "date_created": { - "type": 6, - "value": 1701459383478 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383478 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383478 - }, + "date_created": "2023-07-18T22:23:23.118Z", + "date_last_updated": "2023-07-26T21:40:36.264Z", + "date_of_expiration": "2023-08-17T22:23:23.118Z", "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", @@ -19751,10 +14558,10 @@ "money_release_status": "cancelled", "wasDebited": true }, - "revision": "047d5b489f6740499286672d", + "revision": "6ac9cf65197f483aba287d4e", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19762,10 +14569,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0072.1969.3774.2530-22", - "revision": "0c4d6e81dafc45a583268e9d", + "revision": "86755ce8609446d186d562bd", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19774,24 +14581,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-23T16:27:21.978Z", - "date_created": { - "type": 6, - "value": 1701459383478 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383478 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383478 - } + ".val": "2023-08-23T16:27:21.978Z" }, - "revision": "0f487d39f6954b13bf8fe6d4", + "revision": "8d96f4eeee634bf78efbbae0", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19807,24 +14602,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383478 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383478 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383478 - } + "costs": [] }, - "revision": "e510e52b36494629acc92825", + "revision": "debe89fb876f4cff90ac93ae", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -19832,10 +14615,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/007219693774253022/history/1690216041978", - "revision": "fd031ead2d544522bab30edc", + "revision": "ab421d1d38cf45558f6a88d4", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19850,14 +14633,8 @@ "total_amount": 150, "id": 1690216041978, "history_id": 1690216041978, - "date_created": { - "type": 6, - "value": 1701459383478 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383478 - }, + "date_created": "2023-07-24T16:27:21.978Z", + "date_last_updated": "2023-07-24T17:23:10.794Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19867,16 +14644,12 @@ "date_approved": "2023-07-24T17:23:10.794Z", "money_release_date": "2023-07-24T17:23:10.794Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383478 - } + "wasDebited": true }, - "revision": "7690a606911e40f0a707fa4f", + "revision": "556d309412184f61a361a4a4", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -19884,10 +14657,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0072.1969.3774.2530-22", - "revision": "b4d3f3acfa2d4742b8e42bbf", + "revision": "04bc07c5159144599f82548b", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509524, + "modified": 1701463509524 } }, { @@ -19895,10 +14668,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "aea9c285cd7a4a83b0c60ca1", + "revision": "222d77105ee44ce8b1b55620", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -19906,10 +14679,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "68543ca2ecfd4676acce5b07", + "revision": "e4783f8d46bb422d9c34d6e6", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -19918,24 +14691,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383478 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383478 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383478 - } + "limitUsed": 0 }, - "revision": "4d0f93d37c56455ebb5ae00a", + "revision": "7cbf8bb627c44162bc204b2a", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -19947,24 +14708,12 @@ "dateValidity": 1689373828234, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": "2023-10-14T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383478 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383478 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383478 - } + "balancesModificacao": "2023-10-14T03:00:00.000Z" }, - "revision": "a6c6da2f98384c65ba6728e5", + "revision": "566563cd8ae14d16a16ddd8c", "revision_nr": 1, - "created": 1701459383478, - "modified": 1701459383478 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -19972,10 +14721,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "315197fd37e944baaa4b84bb", + "revision": "3dcd10ef339f42fd8156ee5e", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -19983,10 +14732,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "599e1c0cba5d48efb423a577", + "revision": "765dfa3e57d842d383963546", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -19997,24 +14746,12 @@ "dataModificacao": 1678227735051, "dateValidity": 1678242135085, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - } + "currencyType": "USD" }, - "revision": "8bfe599627f14faf90aeae63", + "revision": "c117190948a84c3cb4753bf5", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -20022,10 +14759,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "226e04c757164f14a95f2d8c", + "revision": "d2595aed10304c69b17f2487", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -20033,10 +14770,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3b2f2281cff64b7f9e8945a7", + "revision": "11581ee5aae849eb8d167dce", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -20047,24 +14784,12 @@ "dataModificacao": 1677760347570, "dateValidity": 1677760347570, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - } + "currencyType": "USD" }, - "revision": "df52b05cd53c41f2979dad38", + "revision": "9fa7bc5d361c46acbccc5754", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -20072,10 +14797,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2e00bee21ca04a7dabb94461", + "revision": "25e2aa13a7f248c4940b9690", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -20083,24 +14808,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - } + "costs": [] }, - "revision": "14083e802a4b418c988b088c", + "revision": "1822aedc7780403494aa9115", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -20115,18 +14828,9 @@ "total_amount": 507, "history_id": 1684424340055, "id": 1684424340055, - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - }, + "date_created": "2023-05-18T15:39:00.055Z", + "date_last_updated": "2023-05-18T17:02:50.415Z", + "date_of_expiration": "2023-06-17T15:39:00.055Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -20136,10 +14840,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c0b02f2f60d84148863cbd98", + "revision": "3b9cdad90d7e4129a7c95f15", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -20147,10 +14851,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 507,00 para a carteira iVip 0117.2048.7643.9274-14", - "revision": "121fec163139457bb2627e35", + "revision": "870dffb83a4f410d862819ba", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -20158,24 +14862,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - } + "costs": [] }, - "revision": "1512c1f6871f4143a545645c", + "revision": "dd5e8b68de604e81a8d74982", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -20190,18 +14882,9 @@ "total_amount": 1093, "history_id": 1684539875683, "id": 1684539875683, - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - }, + "date_created": "2023-05-19T23:44:35.683Z", + "date_last_updated": "2023-05-19T23:57:17.031Z", + "date_of_expiration": "2023-06-18T23:44:35.683Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -20211,10 +14894,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ecb3a7a819b442c0a327acc1", + "revision": "57d742ff2ceb443bb303a142", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20222,10 +14905,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.093,00 para a carteira iVip 0117.2048.7643.9274-14", - "revision": "32788a642a864d5dbf393427", + "revision": "1353fd519a9b4261acb49020", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509527, + "modified": 1701463509527 } }, { @@ -20243,24 +14926,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - } + "costs": [] }, - "revision": "79168cd57c5845e0983df903", + "revision": "d8fe5ebd66d0438aa4a2cf79", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20276,18 +14947,9 @@ "original_amount": 7793170, "total_amount": 7793170, "id": 1684625025298, - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - }, + "date_created": "2023-05-20T23:23:45.298Z", + "date_last_updated": "2023-05-20T23:23:45.298Z", + "date_of_expiration": "2023-05-20T23:23:45.298Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20296,10 +14958,10 @@ "history_id": 1684625025298, "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" }, - "revision": "d97febb02f2a4a7db271149d", + "revision": "a1f83ac38c814b8c898bb15c", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20307,24 +14969,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - } + "costs": [] }, - "revision": "e654fa1dab444cabb277b912", + "revision": "9d680292073b43e4b7caa2a4", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20339,18 +14989,9 @@ "total_amount": 5588008, "history_id": 1685465338404, "id": 1685465338404, - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - }, + "date_created": "2023-05-30T16:48:58.404Z", + "date_last_updated": "2023-05-30T18:43:23.347Z", + "date_of_expiration": "2023-05-30T16:48:58.404Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -20360,10 +15001,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "a6cb39f54a8b403a80bcfbe4", + "revision": "7713881ff2574537aa596dfd", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20371,10 +15012,10 @@ "content": { "type": "STRING", "value": "Saque de 5.588.008,00 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", - "revision": "16f28ed3df7b4cddbda2ddee", + "revision": "6cb9e32a75a44c01828cf3fc", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20392,24 +15033,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - } + "costs": [] }, - "revision": "3c663af3395e43158013121e", + "revision": "60947c7204184653b3206a85", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20424,18 +15053,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685720288992, - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - }, + "date_created": "2023-06-02T15:38:08.992Z", + "date_last_updated": "2023-06-02T15:38:08.992Z", + "date_of_expiration": "2023-12-02T15:38:08.992Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20443,10 +15063,10 @@ "currency_id": "IVIP", "history_id": 1685720288992 }, - "revision": "d3c6d1ff2ce64412b24f8fba", + "revision": "a3a5f11b17474e15b7fed641", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20454,10 +15074,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/2/2023", - "revision": "e796e3d8a5a644c69d2b6217", + "revision": "dde66fa8d5624734bdadb11f", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20475,24 +15095,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - } + "costs": [] }, - "revision": "438ab2e89e844ac6919e826e", + "revision": "99f367a2268245cfb62fc168", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20507,18 +15115,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685720363618, - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - }, + "date_created": "2023-06-02T15:39:23.618Z", + "date_last_updated": "2023-06-02T15:39:23.618Z", + "date_of_expiration": "2023-07-02T15:39:23.618Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20526,10 +15125,10 @@ "currency_id": "IVIP", "history_id": 1685720363618 }, - "revision": "9118c38904a24ce2a1b215ff", + "revision": "9200772446914ccfb917cf7e", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20537,10 +15136,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/2/2023", - "revision": "00174410b6c0471e92494f19", + "revision": "afcfb12437eb43bcacdbb7c6", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20558,24 +15157,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - } + "costs": [] }, - "revision": "dbb9260562af44d19d1b2948", + "revision": "37db1f3ef2e34c30a3a4a936", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20590,18 +15177,9 @@ "original_amount": 1020, "total_amount": 1020, "id": 1688400602023, - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - }, + "date_created": "2023-07-03T16:10:02.023Z", + "date_last_updated": "2023-07-03T16:10:02.023Z", + "date_of_expiration": "2023-07-03T16:10:02.023Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20610,10 +15188,10 @@ "history_id": 1688400602023, "wasDebited": true }, - "revision": "8293edf447ae49368d9dc1e3", + "revision": "af7d8455385644779b26eaeb", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20621,10 +15199,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%)", - "revision": "953343a007324bac90a178cc", + "revision": "33935e57e6e8430c9e32bf40", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20642,24 +15220,12 @@ "installment_amount": 2154096, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - } + "costs": [] }, - "revision": "f86eb4c017a3419399919896", + "revision": "d55afe3b76f049deadf812b0", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20674,18 +15240,9 @@ "original_amount": 2154096, "total_amount": 2154096, "id": 1688595538475, - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - }, + "date_created": "2023-07-05T22:18:58.475Z", + "date_last_updated": "2023-07-05T22:18:58.475Z", + "date_of_expiration": "2023-08-05T22:18:58.475Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20693,10 +15250,10 @@ "currency_id": "IVIP", "history_id": 1688595538475 }, - "revision": "41157a59962d4573ab6d0b11", + "revision": "f0b95831c65a42178b3a6522", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20704,10 +15261,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.154.096,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", - "revision": "9b22689103204edabe9b7a98", + "revision": "260e506e2b5145d386eef294", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20723,24 +15280,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - } + "costs": [] }, - "revision": "18a6735ab2b848c59c68b5eb", + "revision": "c41e28238c7442288133180e", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20748,10 +15293,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691274110792", - "revision": "4b89141582b6440785efb45f", + "revision": "2aea9f50c5f848ff901ea941", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20766,18 +15311,9 @@ "total_amount": 2197177.92, "id": 1691274110792, "history_id": 1691274110792, - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - }, + "date_created": "2023-08-05T22:21:50.792Z", + "date_last_updated": "2023-08-05T22:21:50.792Z", + "date_of_expiration": "2023-08-05T22:21:50.792Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20785,10 +15321,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "9936104628c64096a3d46407", + "revision": "82a19dedd3c94c23be5d2bc3", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20796,10 +15332,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.154.096,00 IVIP com um rendimento de +43.081,92 IVIP (2,00%)", - "revision": "e761c94c69044fc79a67a92c", + "revision": "bfe40a262a204a82b6e39920", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20809,24 +15345,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 36290.1735, - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - } + "amount": 36290.1735 }, - "revision": "049d91577d8e4604830801bf", + "revision": "4f394f2355d54d829f7d20d8", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20841,24 +15365,12 @@ "installment_amount": 1247085, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - } + "financial_institution": "ivipcoin" }, - "revision": "e40ce902a5a44a80a38ae30f", + "revision": "57c583b7e260498d9b5cce36", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20866,10 +15378,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691439593377", - "revision": "5f560ca9a2e44b77900fff86", + "revision": "8471e6dc290a4ce58cba3885", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20877,10 +15389,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "aa45e1db0d0443dfa1b1851d", + "revision": "0fed2c5cfe1e48648e52627f", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20895,18 +15407,9 @@ "total_amount": 1209672.45, "id": 1691439593377, "history_id": 1691439593377, - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - }, + "date_created": "2023-08-07T20:19:53.377Z", + "date_last_updated": "2023-08-16T13:13:21.115Z", + "date_of_expiration": "2023-08-07T20:19:53.377Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -20917,10 +15420,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "a3d31986bbf841e0b932b7eb", + "revision": "cdc66b063aec40c7a9143a4e", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20928,10 +15431,10 @@ "content": { "type": "STRING", "value": "Saque de 1.209.672,45 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", - "revision": "71d07eb78f164220979e65db", + "revision": "c05ad4e7e5594d699896b714", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -20941,24 +15444,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 36184.977, - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - } + "amount": 36184.977 }, - "revision": "183fe6def3024b1594f8f99a", + "revision": "5c33d827277841bbb4afa395", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -20973,24 +15464,12 @@ "installment_amount": 1243470, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - } + "financial_institution": "ivipcoin" }, - "revision": "ece6a4de83644545ac50e937", + "revision": "06ae48d46dd3432eb9af94da", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -20998,10 +15477,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691439992266", - "revision": "361194b193464c97bef69329", + "revision": "9b79975148d849e4920ea0a2", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21009,10 +15488,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "cf9d74d1df0b4cee97c60d33", + "revision": "0541eb0c6a5841f1a367d583", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21027,18 +15506,9 @@ "total_amount": 1206165.9, "id": 1691439992266, "history_id": 1691439992266, - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - }, + "date_created": "2023-08-07T20:26:32.266Z", + "date_last_updated": "2023-08-16T13:12:57.715Z", + "date_of_expiration": "2023-08-07T20:26:32.266Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -21049,10 +15519,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "0a50182a37d4489b8487c3b8", + "revision": "94443a6b0070459d85f21fa5", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21060,10 +15530,10 @@ "content": { "type": "STRING", "value": "Saque de 1.206.165,9 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", - "revision": "dfdd1d0dabe14478813171c1", + "revision": "4173e439c2c646bfb690f6da", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509528, + "modified": 1701463509528 } }, { @@ -21073,24 +15543,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 65395.38, - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - } + "amount": 65395.38 }, - "revision": "a3255d15e138420b88b9688a", + "revision": "1b282edee8824998a81a3b41", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21105,24 +15563,12 @@ "installment_amount": 2247263.92, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - } + "financial_institution": "ivipcoin" }, - "revision": "4118374225d34c398479c084", + "revision": "a7412a89aabd49f4822d9642", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21130,10 +15576,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691447884361", - "revision": "c59ac7ec227648569ba94ffe", + "revision": "e689e42d3b424a759234743d", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21141,10 +15587,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "3580ec171e924d35ac77a539", + "revision": "25ceed2dda5c46bb8be59cfc", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21159,18 +15605,9 @@ "total_amount": 2179846, "id": 1691447884361, "history_id": 1691447884361, - "date_created": { - "type": 6, - "value": 1701459383481 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383481 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383481 - }, + "date_created": "2023-08-07T22:38:04.361Z", + "date_last_updated": "2023-08-08T13:28:08.315Z", + "date_of_expiration": "2023-08-07T22:38:04.361Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -21182,10 +15619,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "335a07e4e1174411ae34def7", + "revision": "254b5ebd518c4b92b5fd22e6", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21193,10 +15630,10 @@ "content": { "type": "STRING", "value": "Saque de 2.179.846,00 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", - "revision": "008bfd301bd94001a0c4eb77", + "revision": "61466500143048ca8f768249", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21204,10 +15641,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "92a11ee5b1a74c5f961f6b58", + "revision": "f903ce914c0f4ba683193f18", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21215,10 +15652,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ef4ceb43a3a44bc292eb58ca", + "revision": "2d11650e961f4724a75acb90", "revision_nr": 1, - "created": 1701459383481, - "modified": 1701459383481 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21227,24 +15664,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "limitUsed": 0 }, - "revision": "97108c857cdb46119ce1a823", + "revision": "477b9264e66748be9c38878c", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21256,24 +15681,12 @@ "dateValidity": 1684369387404, "totalValue": 4.914821489351172, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "balancesModificacao": "2023-10-06T03:00:00.000Z" }, - "revision": "90a41553cb50423894fa7fd4", + "revision": "bff2e27b186148939ce32038", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21281,10 +15694,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "26a4c04c4c8b46f4a4da48f7", + "revision": "7236271737b949d7924f1369", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21292,10 +15705,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3bb6ce13388b41c69f0c089b", + "revision": "d2b8c12f465d41cc8bd0ef29", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21306,24 +15719,12 @@ "dataModificacao": 1696522229806, "dateValidity": 1696522229867, "currencyType": "USD", - "balancesModificacao": "2023-10-05T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "balancesModificacao": "2023-10-05T03:00:00.000Z" }, - "revision": "0fbc11c100f343db8c9cf99a", + "revision": "42dadf6b529448d9ab99d610", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21331,10 +15732,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1a05f70869654c0399aec2eb", + "revision": "18107f764de44b939859b407", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21342,24 +15743,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "costs": [] }, - "revision": "d4e8b793a53b404ba7e41d43", + "revision": "34c44e834e8b41d6a0c3d1d8", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21374,18 +15763,9 @@ "total_amount": 50, "history_id": 1678555308384, "id": 1678555308384, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - }, + "date_created": "2023-03-11T17:21:48.384Z", + "date_last_updated": "2023-03-12T14:35:22.207Z", + "date_of_expiration": "2023-04-10T17:21:48.384Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -21395,10 +15775,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "10270f516ec74c899b9b61f3", + "revision": "9fb95166a6aa4a5480ff3324", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21406,10 +15786,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0128.8622.7244.5948-72", - "revision": "e9e587e2e9e949629738e145", + "revision": "e43556b054204c94aa54d8c1", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21427,24 +15807,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "costs": [] }, - "revision": "4c809b30c5dd48839ecb5097", + "revision": "7cdde43c689749d4b5c352f8", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21460,18 +15828,9 @@ "original_amount": 291076, "total_amount": 291076, "id": 1679266899414, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - }, + "date_created": "2023-03-19T23:01:39.414Z", + "date_last_updated": "2023-03-19T23:01:39.414Z", + "date_of_expiration": "2023-03-19T23:01:39.414Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21480,10 +15839,10 @@ "history_id": 1679266899414, "description": "Compra de 291076 IVIP por 50 BRL" }, - "revision": "cada2fa88f6342d488cc9fcf", + "revision": "02ef5c1642e8475a99b7e215", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21501,24 +15860,12 @@ "installment_amount": 291076, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "costs": [] }, - "revision": "ac8f22fb62994b0db1d37e04", + "revision": "1c74fdec10de46e182711959", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21533,18 +15880,9 @@ "original_amount": 291076, "total_amount": 291076, "id": 1685668294321, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - }, + "date_created": "2023-06-02T01:11:34.321Z", + "date_last_updated": "2023-06-02T01:11:34.321Z", + "date_of_expiration": "2025-06-02T01:11:34.321Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21553,10 +15891,10 @@ "history_id": 1685668294321, "wasDebited": true }, - "revision": "cbdf5736f5094a67a9651665", + "revision": "7edd71108243472187b665c4", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21564,10 +15902,10 @@ "content": { "type": "STRING", "value": "Investimento de 291.076,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "3865d8ddb80d4bcda9320aca", + "revision": "de719f2f7f24476795aa3d85", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21575,10 +15913,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "02a8f9b7d9f24a028f8279e1", + "revision": "bdda88095ca14aba8ec19878", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21586,10 +15924,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "86c75278a2ed4d34b1005a00", + "revision": "f054d44aefeb4137a93b3314", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21598,24 +15936,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "limitUsed": 0 }, - "revision": "65e531d1f4a54a99928ce567", + "revision": "367cf99d9594437b9d8b473e", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21627,24 +15953,12 @@ "dateValidity": 1678668725687, "totalValue": 16.26, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "balancesModificacao": "2023-10-06T03:00:00.000Z" }, - "revision": "6e7f9641aef947308495bf59", + "revision": "f8725bf7aa0241eba2ab8331", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21654,24 +15968,12 @@ "value": { "available": "739882.02000000", "symbol": "IVIP", - "value": 77.94, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "value": 77.94 }, - "revision": "017efc7dd45942b893a25cd9", + "revision": "fad1c5c000b9409486e90ef8", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21679,10 +15981,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "51cdacea8afe40bd8a79e9a8", + "revision": "f37af56c2edf4ccf8ad16e78", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21690,24 +15992,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "costs": [] }, - "revision": "bf7d0b117e67407dbb79a1b9", + "revision": "41f31733b0344708a2178c6c", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21722,18 +16012,9 @@ "total_amount": 150, "history_id": 1684102091531, "id": 1684102091531, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - }, + "date_created": "2023-05-14T22:08:11.531Z", + "date_last_updated": "2023-05-14T22:23:10.115Z", + "date_of_expiration": "2023-06-13T22:08:11.531Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -21743,10 +16024,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e57eaa1a79e8423b80374c29", + "revision": "3c60f6bbe5ab466880b177d5", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21754,10 +16035,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0150.9473.3487.9762-98", - "revision": "6134df82682f472ba9520870", + "revision": "ea4768219a5745bb84d152da", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21775,24 +16056,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "costs": [] }, - "revision": "0df4e0767ecc4e70ac766ebc", + "revision": "1daf48e8271d4597b2c17ad4", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21808,18 +16077,9 @@ "original_amount": 730609, "total_amount": 730609, "id": 1684624257232, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - }, + "date_created": "2023-05-20T23:10:57.232Z", + "date_last_updated": "2023-05-20T23:10:57.232Z", + "date_of_expiration": "2023-05-20T23:10:57.232Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21828,10 +16088,10 @@ "history_id": 1684624257232, "description": "Compra de 730.609,00 IVIP por 150,00 BRL" }, - "revision": "4ff3448ba58a4eb49d4322ec", + "revision": "dbcf67c8cec64442be7905a4", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21849,24 +16109,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "costs": [] }, - "revision": "ae9926f2489c421ea0fc1a0c", + "revision": "7606c68c33404e0085af3571", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21881,18 +16129,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687113576960, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - }, + "date_created": "2023-06-18T18:39:36.960Z", + "date_last_updated": "2023-06-18T18:39:36.960Z", + "date_of_expiration": "2023-12-18T18:39:36.960Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21901,10 +16140,10 @@ "history_id": 1687113576960, "wasDebited": true }, - "revision": "3ea8cab59bda485c97581bef", + "revision": "f4faffcfb36244f9b07dfbe3", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21912,10 +16151,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/18/2023", - "revision": "33bca34b265c47238766ee4a", + "revision": "5d12cd62cf6a40dc927a4692", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509529, + "modified": 1701463509529 } }, { @@ -21933,24 +16172,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "costs": [] }, - "revision": "a31eeb8ca2894457b6eff3b8", + "revision": "9b0b28e48fe541a08415493c", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -21965,18 +16192,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687113714689, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - }, + "date_created": "2023-06-18T18:41:54.689Z", + "date_last_updated": "2023-06-18T18:41:54.689Z", + "date_of_expiration": "2024-06-18T18:41:54.689Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21984,10 +16202,10 @@ "currency_id": "IVIP", "history_id": 1687113714689 }, - "revision": "5806b19230b247d88ec242ff", + "revision": "535cf78c630d4dd5b0a1b407", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -21995,10 +16213,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/18/2024", - "revision": "84331dc3020d4e17ad5f5826", + "revision": "2a4af757ec1a4f06bbbf389b", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22016,24 +16234,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "costs": [] }, - "revision": "b13536d8b74e4e95a2f2fae8", + "revision": "da72fe8fe3a14a2dbde30b28", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22048,18 +16254,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687113759469, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - }, + "date_created": "2023-06-18T18:42:39.469Z", + "date_last_updated": "2023-06-18T18:42:39.469Z", + "date_of_expiration": "2025-06-18T18:42:39.469Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -22067,10 +16264,10 @@ "currency_id": "IVIP", "history_id": 1687113759469 }, - "revision": "0dcba30fc14f4941a87b45e6", + "revision": "ad8188202a184a16903f62ec", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22078,10 +16275,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/18/2025", - "revision": "3aa0e83c70c344fb9c778edc", + "revision": "d4756f786950429cbfecb9a4", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22099,24 +16296,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "costs": [] }, - "revision": "9457223229df466197f66821", + "revision": "5f6c63d0a59147c297373d49", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22131,18 +16316,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687313544564, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - }, + "date_created": "2023-06-21T02:12:24.564Z", + "date_last_updated": "2023-06-21T02:12:24.564Z", + "date_of_expiration": "2025-06-21T02:12:24.564Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -22150,10 +16326,10 @@ "currency_id": "IVIP", "history_id": 1687313544564 }, - "revision": "f7bb185e1ac34e99afea1436", + "revision": "7c242cf7cc074e2a80e563d0", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22161,10 +16337,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2025", - "revision": "9618e8c92da6485e95e9a79d", + "revision": "5a08146a39284ca7a79a5e8f", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22182,24 +16358,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "costs": [] }, - "revision": "d84cc2f422e24e4dbd7692e7", + "revision": "e7916efb9d554451953cdc8f", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22214,18 +16378,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687313588225, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - }, + "date_created": "2023-06-21T02:13:08.225Z", + "date_last_updated": "2023-06-21T02:13:08.225Z", + "date_of_expiration": "2024-06-21T02:13:08.225Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -22233,10 +16388,10 @@ "currency_id": "IVIP", "history_id": 1687313588225 }, - "revision": "bcd2b9cfa698448590503445", + "revision": "dc222ab0bd4e4903b8a98c60", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22244,10 +16399,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", - "revision": "643ee629853a413cb0e1971f", + "revision": "e43546ea598a4c68a0ae8057", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22265,24 +16420,12 @@ "installment_amount": 713651, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "costs": [] }, - "revision": "b004cab07323423ca35257a5", + "revision": "4730ac8a13de4cf5a8c4344c", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22297,18 +16440,9 @@ "original_amount": 713651, "total_amount": 713651, "id": 1688595606369, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - }, + "date_created": "2023-07-05T22:20:06.369Z", + "date_last_updated": "2023-07-05T22:20:06.369Z", + "date_of_expiration": "2023-08-05T22:20:06.369Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -22316,10 +16450,10 @@ "currency_id": "IVIP", "history_id": 1688595606369 }, - "revision": "d1d0cb9adb954cfd83b4af1e", + "revision": "f7b49a52524d4325ba88fc19", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22327,10 +16461,10 @@ "content": { "type": "STRING", "value": "Investimento de 713.651,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", - "revision": "52a316fe68c14592bb82dda7", + "revision": "3d92b30f3b7041b6b0fe0910", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22346,24 +16480,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "costs": [] }, - "revision": "ef00668901874aa2bfb1baf5", + "revision": "2bc8e30cb9854de19f38522c", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22371,10 +16493,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/015094733487976298/history/1691274110709", - "revision": "88fa97e197e14594b5e969fa", + "revision": "5fc090510a404eebaf48d8e3", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22389,18 +16511,9 @@ "total_amount": 727924.02, "id": 1691274110709, "history_id": 1691274110709, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - }, + "date_created": "2023-08-05T22:21:50.709Z", + "date_last_updated": "2023-08-05T22:21:50.709Z", + "date_of_expiration": "2023-08-05T22:21:50.709Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -22408,10 +16521,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "78187c4aeb494b12a59427e9", + "revision": "48fe71f4b993467c9a416fa8", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22419,10 +16532,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 713.651,00 IVIP com um rendimento de +14.273,02 IVIP (2,00%)", - "revision": "8a5dcbcec492459cb1792063", + "revision": "aa005b1263a54262bc7baf90", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22430,10 +16543,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ee64ddf1aeab440995bd782c", + "revision": "011a34b6b52b4661817af528", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22441,10 +16554,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "789d364ec4a94122b29e6142", + "revision": "2017cf4e25ac48fe9dabca03", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22453,24 +16566,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "limitUsed": 0 }, - "revision": "4fe01276420e407da61a28ae", + "revision": "df1e788e5eb74a518173dfda", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22482,24 +16583,12 @@ "dateValidity": 1684102027322, "totalValue": 1.39, "currencyType": "USD", - "balancesModificacao": "2023-10-14T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "balancesModificacao": "2023-10-14T03:00:00.000Z" }, - "revision": "62a341dcd7754a6dbc03c369", + "revision": "687ff6ce4127460abe7ede8b", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22507,10 +16596,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "28f035124d2246ec9edf4c78", + "revision": "12b8d54431b74086a8b5d749", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22518,10 +16607,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d181985eb1b64821a00868dc", + "revision": "d6f40e05965343e8b9f76d56", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22529,10 +16618,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8edd9c85dfca43dfb33db44b", + "revision": "6e0d6299789241c3a54b6c74", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22541,24 +16630,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "limitUsed": 0 }, - "revision": "e29b4da19c504fff91cf4608", + "revision": "a4533bf629fe476ea135fb0b", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22569,24 +16646,12 @@ "dataModificacao": 1688737390323, "dateValidity": 1688737390323, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "currencyType": "USD" }, - "revision": "0ab7c4b48c114c40a9eb24e5", + "revision": "fbc2718e5d4745d581e0c465", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22596,24 +16661,12 @@ "value": { "symbol": "BRL", "available": "0.00000000", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "value": 0 }, - "revision": "48856e87ce5b4ed880b6c4ce", + "revision": "d567fab8f75644f1922f2185", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22623,24 +16676,12 @@ "value": { "symbol": "IVIP", "available": "0.00000000", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "value": 0 }, - "revision": "b85b075aff3a4e0aaf89ce65", + "revision": "ddc72a75ac484849906a65ed", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22648,10 +16689,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f0f8038336bd41d19a266dc6", + "revision": "c22daa0a3eec4bf1925d2e5d", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22659,24 +16700,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "costs": [] }, - "revision": "b42f1f9f54614d59b2770489", + "revision": "527ee6081c8a475cbe38de9b", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22691,18 +16720,9 @@ "total_amount": 1000, "history_id": 1684198299992, "id": 1684198299992, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - }, + "date_created": "2023-05-16T00:51:39.992Z", + "date_last_updated": "2023-05-20T04:50:35.747Z", + "date_of_expiration": "2023-06-15T00:51:39.992Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -22710,10 +16730,10 @@ "money_release_date": "2023-05-20T04:50:35.747Z", "money_release_status": "rejected" }, - "revision": "649cbac6b6a8485985bf23fb", + "revision": "003bea610a1e402dab192052", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22721,10 +16741,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0164.7568.6934.0474-40", - "revision": "ce5409876cea4ce8bc8e7417", + "revision": "a24266e106e14a06a7d4dd7d", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22732,24 +16752,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "costs": [] }, - "revision": "13310a167a7e4a35a6156cdc", + "revision": "45f4831f386a41a5a2c16f3b", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22764,18 +16772,9 @@ "total_amount": 1000, "history_id": 1684201414429, "id": 1684201414429, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - }, + "date_created": "2023-05-16T01:43:34.429Z", + "date_last_updated": "2023-05-16T14:08:50.715Z", + "date_of_expiration": "2023-06-15T01:43:34.429Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -22785,10 +16784,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b2380095bd21472b8770b1a2", + "revision": "32a9a1fd88e74c0aac315e2d", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22796,10 +16795,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0164.7568.6934.0474-40", - "revision": "4015e37283714c2d88467d8e", + "revision": "d1aadc5bb3d64bff86ff6884", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22807,24 +16806,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - } + "costs": [] }, - "revision": "b5b7db876d67469e84767cac", + "revision": "b5375e42e4ee431a85fa8517", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22839,18 +16826,9 @@ "total_amount": 600, "history_id": 1684440954255, "id": 1684440954255, - "date_created": { - "type": 6, - "value": 1701459383482 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383482 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383482 - }, + "date_created": "2023-05-18T20:15:54.255Z", + "date_last_updated": "2023-05-18T21:09:15.806Z", + "date_of_expiration": "2023-06-17T20:15:54.255Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -22860,10 +16838,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f67ef641878b4e568a1ab81a", + "revision": "8090edd645d042878f1bad08", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22871,10 +16849,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 600,00 para a carteira iVip 0164.7568.6934.0474-40", - "revision": "6c2c42ecdd394abaa3e438d2", + "revision": "2635051cd563434196dfb9e0", "revision_nr": 1, - "created": 1701459383482, - "modified": 1701459383482 + "created": 1701463509530, + "modified": 1701463509530 } }, { @@ -22892,24 +16870,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "e65a37fd6a554588872d5c89", + "revision": "b8586c94bf2249adb61cd5c5", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -22925,18 +16891,9 @@ "original_amount": 7793170, "total_amount": 7793170, "id": 1684626826140, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-05-20T23:53:46.140Z", + "date_last_updated": "2023-05-20T23:53:46.140Z", + "date_of_expiration": "2023-05-20T23:53:46.140Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -22945,10 +16902,10 @@ "history_id": 1684626826140, "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" }, - "revision": "f4ce89265d6042f8a1249fc3", + "revision": "89d8dfb3170c48d5af385208", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -22956,24 +16913,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "c70a7cb20bc14434969d2515", + "revision": "42cc7844b9fc49079cbcf796", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -22988,27 +16933,18 @@ "total_amount": 788564, "history_id": 1685396913259, "id": 1685396913259, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-05-29T21:48:33.259Z", + "date_last_updated": "2023-05-29T21:48:33.259Z", + "date_of_expiration": "2023-05-29T21:48:33.259Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "4b468d16b3ef4ee0a8b74be8", + "revision": "955ce1698645462496102e0f", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23016,10 +16952,10 @@ "content": { "type": "STRING", "value": "Saque de 788.564,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", - "revision": "9031508eeb514d40bb90eb08", + "revision": "fc3396e466b243b9b092c9b8", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23027,24 +16963,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "fbad2ebed8394d27bb45d37d", + "revision": "a838e9b1278f4326a017bc40", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23059,18 +16983,9 @@ "total_amount": 788564, "history_id": 1685470076106, "id": 1685470076106, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-05-30T18:07:56.106Z", + "date_last_updated": "2023-05-31T12:12:11.930Z", + "date_of_expiration": "2023-05-30T18:07:56.106Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -23078,10 +16993,10 @@ "money_release_date": "2023-05-31T12:12:11.930Z", "money_release_status": "rejected" }, - "revision": "0e0204f7c7ee4ad38ad699b7", + "revision": "d8b78186076949fb9eb53908", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23089,10 +17004,10 @@ "content": { "type": "STRING", "value": "Saque de 788.564,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", - "revision": "07887e277d3a451aaeec3e91", + "revision": "f3023326777e469d8be82889", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23100,24 +17015,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "950bf3f3ef48469b89a815d1", + "revision": "d301d606b0904f51beb67fee", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23132,18 +17035,9 @@ "total_amount": 7793170, "history_id": 1685470615415, "id": 1685470615415, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-05-30T18:16:55.415Z", + "date_last_updated": "2023-05-31T12:45:25.835Z", + "date_of_expiration": "2023-05-30T18:16:55.415Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -23153,10 +17047,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "a7b87961912145179ed7636f", + "revision": "ffae6053e7a74d9ea42f453a", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23164,10 +17058,10 @@ "content": { "type": "STRING", "value": "Saque de 7.793.170,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", - "revision": "fe793ac6887e4d7690173885", + "revision": "8790059bb3e14585bc5757f0", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23175,24 +17069,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "4ac6ce5c55a24e56ad42cd52", + "revision": "1263b62a2cbb42e6972f0cda", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23207,18 +17089,9 @@ "total_amount": 7793170, "history_id": 1685537035322, "id": 1685537035322, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-05-31T12:43:55.322Z", + "date_last_updated": "2023-05-31T12:44:28.819Z", + "date_of_expiration": "2023-05-31T12:43:55.322Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -23226,10 +17099,10 @@ "money_release_date": "2023-05-31T12:44:28.819Z", "money_release_status": "rejected" }, - "revision": "2c5d4ce6795b4004b4f3637b", + "revision": "5eb30ad126f448d18cfa3ac3", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23237,10 +17110,10 @@ "content": { "type": "STRING", "value": "Saque de 7.793.170,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", - "revision": "70371b97b5e740e1a2aad68d", + "revision": "0ea33f2f26e548e894ec5c77", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23248,10 +17121,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "21aca5954b7446d499f007fd", + "revision": "295d734de87740d3bcc92f96", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23259,10 +17132,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5dc41fd50de444259476b6a1", + "revision": "5c3b307f360649aa9cbb7dfb", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23271,24 +17144,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "limitUsed": 0 }, - "revision": "b887d1da23c44eda8fc48251", + "revision": "7cc41fa7c3e945cda5bf84e4", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23299,24 +17160,12 @@ "dataModificacao": 1684198152404, "dateValidity": 1684198152404, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "currencyType": "USD" }, - "revision": "49f1984a14114f0abf4d6ad7", + "revision": "d417b6ea62a8455d82213e34", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23324,10 +17173,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "50db65cbecf14ae0b0b13652", + "revision": "d6850f801b534cb78298fb31", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23335,10 +17184,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1cc3fa5f31d249bcafbca503", + "revision": "b0a4b86f24e548769861eec5", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23346,10 +17195,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "147ec2ef09074364ae5230b1", + "revision": "ad68acae2751415995193854", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23358,24 +17207,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "limitUsed": 0 }, - "revision": "02f200c0a4b4427dab6189c4", + "revision": "68940e2aceca4e6dbcddf9aa", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23386,24 +17223,12 @@ "dataModificacao": 1685395419731, "dateValidity": 1685395419731, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "currencyType": "USD" }, - "revision": "cea2212e7a434d1788167720", + "revision": "91d3b01a1e1240de9281cc54", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23413,24 +17238,12 @@ "value": { "available": "0.74000000", "symbol": "IVIP", - "value": 0.000077, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "value": 0.000077 }, - "revision": "ee6c79f05e9044c093024d3a", + "revision": "2fe73fe291b842a49a7d8412", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23438,10 +17251,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2c103037163346a0bef0d3b4", + "revision": "6170d598eeb74fe4af5114a4", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23449,24 +17262,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "a71c4b2400d148bfaa402541", + "revision": "fe9c04120e574fa8b7e870e1", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23481,18 +17282,9 @@ "total_amount": 500, "history_id": 1683998693589, "id": 1683998693589, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-05-13T17:24:53.589Z", + "date_last_updated": "2023-05-13T17:52:34.399Z", + "date_of_expiration": "2023-06-12T17:24:53.589Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -23502,10 +17294,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "4fbf322a4484431b9454be5d", + "revision": "f657a87d808d49a2a52b1db5", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23513,10 +17305,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "6f4bfe07976b4239b51635ba", + "revision": "3c614c93cefc48bd9f604a1e", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23526,24 +17318,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "amount": 100 }, - "revision": "5ec894d59ef9462f96d06fcf", + "revision": "9318f76a4c4f4065bc3fcb44", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23551,10 +17331,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ccf123e137d04ffcb488cf6a", + "revision": "2d38188cd1fc45fca4b130f0", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23562,10 +17342,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "687b790b1fa24c7397051641", + "revision": "c9f939c9387b45798902b52a", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23580,28 +17360,19 @@ "total_amount": 1100, "history_id": 1684003059388, "id": 1684003059388, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-05-13T18:37:39.388Z", + "date_last_updated": "2023-05-13T18:37:39.388Z", + "date_of_expiration": "2023-06-12T18:37:39.388Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "7a40f9839f674838a2fdcb8f", + "revision": "9ec7f4afaba14ce28539b2a2", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23609,10 +17380,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "7a465f8fe226475ba2b9b656", + "revision": "e25e985bd9a84031bf63e399", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23630,24 +17401,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "e438b61459dc4bcdaa0a4451", + "revision": "b53a5d6a6bb041ddb59c6bb0", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23663,18 +17422,9 @@ "original_amount": 8106588, "total_amount": 8106588, "id": 1684018960001, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-05-13T23:02:40.001Z", + "date_last_updated": "2023-05-13T23:02:40.001Z", + "date_of_expiration": "2023-05-13T23:02:40.001Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -23683,10 +17433,10 @@ "history_id": 1684018960001, "description": "Compra de 8.106.588,00 IVIP por 1.500,00 BRL" }, - "revision": "9f36cde638ae424382f1a9ae", + "revision": "6c5fba46e5104c1b98288942", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23694,24 +17444,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "b0a06d7d61024382851696e1", + "revision": "dae6e339ca394ca4b5607a63", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23726,18 +17464,9 @@ "total_amount": 100, "history_id": 1684106238297, "id": 1684106238297, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-05-14T23:17:18.297Z", + "date_last_updated": "2023-05-16T12:14:40.222Z", + "date_of_expiration": "2023-06-13T23:17:18.297Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -23747,10 +17476,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "758bc71ed3a743daa7c5d9ed", + "revision": "873db6724a5b4be6bf8d312f", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23758,10 +17487,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "f5a1b40ab16f4d2b932133c6", + "revision": "9de52e6ad2a442928d173eeb", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23779,24 +17508,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "5e86c0d8a9e049ea8ee8e1ec", + "revision": "d7c45cb508fd4b1181797fff", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23812,18 +17529,9 @@ "original_amount": 487804, "total_amount": 487804, "id": 1684631103258, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-05-21T01:05:03.258Z", + "date_last_updated": "2023-05-21T01:05:03.258Z", + "date_of_expiration": "2023-05-21T01:05:03.258Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -23832,10 +17540,10 @@ "history_id": 1684631103258, "description": "Compra de 487.804,00 IVIP por 100,00 BRL" }, - "revision": "c312a2699bfd4eebba6170c1", + "revision": "47a680b99c934e6e83a31d82", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23843,24 +17551,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "dc7b56cf89034e579f149145", + "revision": "38a05e74274d4d1db0a49fe8", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -23875,27 +17571,18 @@ "total_amount": 4297196, "history_id": 1685388293760, "id": 1685388293760, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-05-29T19:24:53.760Z", + "date_last_updated": "2023-05-29T19:24:53.760Z", + "date_of_expiration": "2023-05-29T19:24:53.760Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "5876d290ebac4c4ba0596723", + "revision": "70485247ba774f1e842d416c", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -23903,10 +17590,10 @@ "content": { "type": "STRING", "value": "Saque de 4.297.196,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "53df2ddc22e84f228c37f04e", + "revision": "517dbfba22f742cdb5e8d687", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509531, + "modified": 1701463509531 } }, { @@ -23914,24 +17601,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "9219fb12690f4cbb83d5bf56", + "revision": "bcf1de8ec7a54e25bf69ed55", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -23946,18 +17621,9 @@ "total_amount": 250, "history_id": 1686323712726, "id": 1686323712726, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-06-09T15:15:12.726Z", + "date_last_updated": "2023-06-12T17:38:39.918Z", + "date_of_expiration": "2023-07-09T15:15:12.726Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -23967,10 +17633,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "31ddb74713824384902f8a44", + "revision": "768b3571d8cb4ae1be7324e8", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -23978,10 +17644,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "1f88e82706074cf4b9e95cdb", + "revision": "001935c1bb3342f5a739f7f5", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24001,24 +17667,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "9f2f36d4232641f59e21c6ef", + "revision": "d9294690cb9d437cbed7948b", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24035,18 +17689,9 @@ "total_amount": 220, "id": 1686591730981, "contract_id": "1684003059388", - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-06-12T17:42:10.981Z", + "date_last_updated": "2023-06-12T17:42:10.981Z", + "date_of_expiration": "2023-06-12T17:42:10.981Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -24054,10 +17699,10 @@ "currency_id": "BRL", "history_id": 1686591730981 }, - "revision": "1c7b370ff874486780a197f1", + "revision": "f746f72f6ee64b3b9b68dc7a", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24065,10 +17710,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "d834731e4a7c43639549d66a", + "revision": "61a57d3724fe436bbc2f7acf", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24076,24 +17721,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "a7b91acd97f34c1e9dc3ee9e", + "revision": "e64b1fd6d1a440d48915dfb2", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24108,18 +17741,9 @@ "total_amount": 200, "history_id": 1688314787645, "id": 1688314787645, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-07-02T16:19:47.645Z", + "date_last_updated": "2023-07-02T16:23:34.952Z", + "date_of_expiration": "2023-08-01T16:19:47.645Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -24129,10 +17753,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b94da0d396e848fd865f733e", + "revision": "344a652522af4f96812662d5", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24140,10 +17764,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "7a281f8992f640da9a1d7d1e", + "revision": "c03d4c9556e04742941dd529", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24163,24 +17787,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "81b68877ff154dc4b9a8d860", + "revision": "c41e6756babc47689738f0ce", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24197,18 +17809,9 @@ "total_amount": 220, "id": 1688315152944, "contract_id": "1684003059388", - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-07-02T16:25:52.944Z", + "date_last_updated": "2023-07-02T16:25:52.944Z", + "date_of_expiration": "2023-07-02T16:25:52.944Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -24216,10 +17819,10 @@ "currency_id": "BRL", "history_id": 1688315152944 }, - "revision": "d085b1a722e94728aa9207e9", + "revision": "5f7ecdcbe4e94e2e813d4c49", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24227,10 +17830,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "a572a2c0797f464580ab4dc8", + "revision": "45152eb73d7d40948f196996", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24248,24 +17851,12 @@ "installment_amount": 344736, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "29e6b31c5b8f453cac901a64", + "revision": "c5de2c343fa14371b5d95502", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24280,18 +17871,9 @@ "original_amount": 344736, "total_amount": 344736, "id": 1688426195717, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-07-03T23:16:35.717Z", + "date_last_updated": "2023-07-03T23:16:35.717Z", + "date_of_expiration": "2023-08-03T23:16:35.717Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24300,10 +17882,10 @@ "history_id": 1688426195717, "wasDebited": true }, - "revision": "6b2e24e2e5674aeb9418a5e5", + "revision": "e9e3072e95c74c3bbcc7270b", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24311,10 +17893,10 @@ "content": { "type": "STRING", "value": "Investimento de 344.736,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "3a232c694ae540dea8aa5b09", + "revision": "94003390697b47f093d544c8", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24322,24 +17904,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "dc3d3e45553a4edc87df282e", + "revision": "265afeaf04c94d779adcaebd", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24354,18 +17924,9 @@ "total_amount": 430, "history_id": 1689095226322, "id": 1689095226322, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-07-11T17:07:06.322Z", + "date_last_updated": "2023-07-11T18:16:10.658Z", + "date_of_expiration": "2023-08-10T17:07:06.322Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -24375,10 +17936,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3a103d782d9d4130b43b6da3", + "revision": "e2c34097cfe842fa9d574fcd", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24386,10 +17947,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 430,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "43a92b33a8744111b50430bf", + "revision": "b6d1336868bc4a64a416ddf7", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24407,24 +17968,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "9e112c6d75db4ca8b017eb94", + "revision": "0cbef56a43fa489eb63bd7ff", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24440,18 +17989,9 @@ "original_amount": 284782, "total_amount": 284782, "id": 1689349679189, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-07-14T15:47:59.189Z", + "date_last_updated": "2023-07-14T15:47:59.189Z", + "date_of_expiration": "2023-07-14T15:47:59.189Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24460,10 +18000,10 @@ "history_id": 1689349679189, "description": "Compra de 284.782,00 IVIP por 440,00 BRL" }, - "revision": "ef095a63774f466d907623e0", + "revision": "a5b2e48fcb204f9baf7ffb8c", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24471,24 +18011,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - } + "costs": [] }, - "revision": "b95a59812d424c2fbc5875be", + "revision": "f368131466ff430cabcd666a", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24503,18 +18031,9 @@ "total_amount": 284782, "history_id": 1689349971065, "id": 1689349971065, - "date_created": { - "type": 6, - "value": 1701459383483 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383483 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383483 - }, + "date_created": "2023-07-14T15:52:51.065Z", + "date_last_updated": "2023-07-14T15:54:58.919Z", + "date_of_expiration": "2023-07-14T15:52:51.065Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -24524,10 +18043,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "864b84319a194bff83a0ede4", + "revision": "41a0f9cb341540cd9e052fcf", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24535,10 +18054,10 @@ "content": { "type": "STRING", "value": "Saque de 284.782,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "80a6e9c249724cde96c278a7", + "revision": "7b1e38b39e51406081267b07", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509532, + "modified": 1701463509532 } }, { @@ -24556,24 +18075,12 @@ "installment_amount": 500000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "costs": [] }, - "revision": "a66067edc87c456fa85ff598", + "revision": "1faeb6a5dd4e486da690a607", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24588,18 +18095,9 @@ "original_amount": 500000, "total_amount": 500000, "id": 1689794977578, - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - }, + "date_created": "2023-07-19T19:29:37.578Z", + "date_last_updated": "2023-07-19T19:29:37.578Z", + "date_of_expiration": "2025-07-19T19:29:37.578Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24607,10 +18105,10 @@ "currency_id": "IVIP", "history_id": 1689794977578 }, - "revision": "665c82d872fa4eeab5cbb463", + "revision": "b5ee42c9b599409a8b8dc854", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24618,10 +18116,10 @@ "content": { "type": "STRING", "value": "Investimento de 500.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/19/2025", - "revision": "53af1b2a6c8f479cbea9008f", + "revision": "337cc507fc5a43b99e33c0bc", "revision_nr": 1, - "created": 1701459383483, - "modified": 1701459383483 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24629,24 +18127,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "costs": [] }, - "revision": "6c78b21cbaa947c5a311e64a", + "revision": "32ea1a3d54cd4cdb9706212c", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24661,27 +18147,18 @@ "total_amount": 345419, "history_id": 1689796488476, "id": 1689796488476, - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - }, + "date_created": "2023-07-19T19:54:48.476Z", + "date_last_updated": "2023-07-19T19:54:48.476Z", + "date_of_expiration": "2023-07-19T19:54:48.476Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "857eaa4558ed49a183ee0031", + "revision": "ce594d36a0314a3fb604066f", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24689,10 +18166,10 @@ "content": { "type": "STRING", "value": "Saque de 345.419,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "ff6ad711e8d14809ac25d9c1", + "revision": "7b678187a6264d718b51503a", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24708,24 +18185,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "costs": [] }, - "revision": "7a467a933331461dbc0e84a5", + "revision": "f75ef736b9c3466698ff4967", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24733,10 +18198,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1690130150231", - "revision": "543f5a3171f14e519b557ee1", + "revision": "d3796a52deeb457899e7d13a", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24751,18 +18216,9 @@ "total_amount": 1908099, "id": 1690130150231, "history_id": 1690130150231, - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - }, + "date_created": "2023-07-23T16:35:50.231Z", + "date_last_updated": "2023-07-23T16:35:50.231Z", + "date_of_expiration": "2023-07-23T16:35:50.231Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -24770,10 +18226,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "6f0533ecf6be4845aa4ee28c", + "revision": "b093b268793a4378ad617ea7", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24781,10 +18237,10 @@ "content": { "type": "STRING", "value": "Saque de 1.908.099,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "41a10e2a2f904eee97af6193", + "revision": "3e0cd52a95694619abf5d34a", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24800,24 +18256,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "costs": [] }, - "revision": "28bcbf71c1144352a7e2bc73", + "revision": "fc2e19469ea24a29bde3ab06", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24825,10 +18269,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1690225429559", - "revision": "e2710fa9e264423bbb27c3de", + "revision": "96400fc0ac794c5394eb2d09", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24843,18 +18287,9 @@ "total_amount": 1829159, "id": 1690225429559, "history_id": 1690225429559, - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - }, + "date_created": "2023-07-24T19:03:49.559Z", + "date_last_updated": "2023-07-24T19:03:49.559Z", + "date_of_expiration": "2023-07-24T19:03:49.559Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -24862,10 +18297,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "c29772595ab2455b8522d8ed", + "revision": "0266529cb11740d5a1f086e6", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24873,10 +18308,10 @@ "content": { "type": "STRING", "value": "Saque de 1.829.159,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "8d1653d4362c4e2bb196ee6e", + "revision": "072d3550ae794c5d994d15ca", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24892,24 +18327,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "costs": [] }, - "revision": "5edffa1508a54a188408e70e", + "revision": "c55f098720064ef1872650ad", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24917,10 +18340,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1691104619419", - "revision": "d3acb9deba6c430bade00499", + "revision": "7a0660a1b4aa4dfa9995f750", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24935,18 +18358,9 @@ "total_amount": 351630.72000000003, "id": 1691104619419, "history_id": 1691104619419, - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - }, + "date_created": "2023-08-03T23:16:59.419Z", + "date_last_updated": "2023-08-03T23:16:59.419Z", + "date_of_expiration": "2023-08-03T23:16:59.419Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24954,10 +18368,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "1f73087eabf5451da31afd5e", + "revision": "a8eb46ce9b46411492bb2045", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24965,10 +18379,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 344.736,00 IVIP com um rendimento de +6.894,72 IVIP (2,00%)", - "revision": "37326a6821dd47ba878108bf", + "revision": "f50f041102eb43fa9b09f904", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -24984,24 +18398,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "costs": [] }, - "revision": "00860eadfdbe4a5987934a29", + "revision": "24a57c7c009d4e4fb78ff11d", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25009,10 +18411,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1691246155706", - "revision": "7ac1cc4e4202432b9ac90cc7", + "revision": "cea0ed176987466bafdcc758", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25027,18 +18429,9 @@ "total_amount": 4123251, "id": 1691246155706, "history_id": 1691246155706, - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - }, + "date_created": "2023-08-05T14:35:55.706Z", + "date_last_updated": "2023-08-05T14:35:55.706Z", + "date_of_expiration": "2023-09-05T14:35:55.705Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -25046,10 +18439,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "70173ec5bae548aa9cfe9504", + "revision": "c800e81cfcd8439ca5ef552e", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25057,10 +18450,10 @@ "content": { "type": "STRING", "value": "Investimento de 4.123.251,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", - "revision": "4631c05180354361bafbe75c", + "revision": "954c1bcb03fe4cb486a76a05", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25069,24 +18462,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-14T17:56:58.629Z", - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + ".val": "2023-09-14T17:56:58.629Z" }, - "revision": "d970a6d19b41467cbbe781b6", + "revision": "0bc3f0d58cce44a6a3d2671a", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25102,24 +18483,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "costs": [] }, - "revision": "d54bb6df50764f84bbce32b0", + "revision": "8e760af176a14147bcf5cd8b", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25127,10 +18496,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1692122218629", - "revision": "d219eccf895e433fa6563964", + "revision": "375909bc7fbb49208ccc85a9", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25145,14 +18514,8 @@ "total_amount": 220, "id": 1692122218629, "history_id": 1692122218629, - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, + "date_created": "2023-08-15T17:56:58.629Z", + "date_last_updated": "2023-08-15T18:13:29.335Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -25162,16 +18525,12 @@ "date_approved": "2023-08-15T18:13:29.335Z", "money_release_date": "2023-08-15T18:13:29.335Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "wasDebited": true }, - "revision": "4b14304c0dbc4f589e570439", + "revision": "2b1bbad6aaee4a359958aef5", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25179,10 +18538,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 220,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "f6777f3db8b142609d0f74cb", + "revision": "6d8ed7f0c3864279bab2ab92", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25202,24 +18561,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "costs": [] }, - "revision": "f866ab8c076a48a4b88eecdc", + "revision": "470cecb6586f42d39e19468c", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25236,18 +18583,9 @@ "total_amount": 220, "id": 1692210661601, "contract_id": "1684003059388", - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - }, + "date_created": "2023-08-16T18:31:01.601Z", + "date_last_updated": "2023-08-16T18:31:01.601Z", + "date_of_expiration": "2023-08-16T18:31:01.601Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -25255,10 +18593,10 @@ "currency_id": "BRL", "history_id": 1692210661601 }, - "revision": "e2ba9b395807438680a82543", + "revision": "1e3d14af27c8453eb8a4cbe7", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25266,10 +18604,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "db18a4e67fb14c1db981ecbe", + "revision": "b6b681849bd449399afabd36", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25285,24 +18623,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "costs": [] }, - "revision": "c531c7268e924bb89440efb0", + "revision": "ca8d2bd4cd9e4708882aff70", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25310,10 +18636,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1693924607794", - "revision": "57c80e3d275148358b301d91", + "revision": "d8910e782d8c43b7887dcfde", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25328,18 +18654,9 @@ "total_amount": 4205716.02, "id": "1693924607794", "history_id": "1693924607794", - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - }, + "date_created": "2023-09-05T14:36:47.794Z", + "date_last_updated": "2023-09-05T14:36:47.794Z", + "date_of_expiration": "2023-09-05T14:36:47.794Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -25347,10 +18664,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "fd78ef69a8b748c799a9404b", + "revision": "55b917b266164f4dbba3c208", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25358,10 +18675,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 4.123.251,00 IVIP com um rendimento de +82.465,02 IVIP (2,00%) - Y12XDT27", - "revision": "0c814fc6adb14fd482a15001", + "revision": "dfeeeca8b71c46e79634bdfa", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25371,24 +18688,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 107596.65, - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "amount": 107596.65 }, - "revision": "b004985fce9b49f9aac75868", + "revision": "0a9d24438c2e474586dbc30a", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25403,24 +18708,12 @@ "installment_amount": 3586555, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "financial_institution": "ivipcoin" }, - "revision": "c4dcad1cd39245d48f9924bb", + "revision": "f9ecd8a6e1fd4e8590e436e7", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25428,10 +18721,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694019139358", - "revision": "e0a571a1464b4d569996ac9d", + "revision": "61c8ac20bde1411ba72e40c6", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25439,10 +18732,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "58c7af0ab21d440bb763ef54", + "revision": "b1c334e0def045708879d625", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25457,18 +18750,9 @@ "total_amount": 3478958.35, "id": "1694019139358", "history_id": "1694019139358", - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - }, + "date_created": "2023-09-06T16:52:19.358Z", + "date_last_updated": "2023-09-11T22:23:22.474Z", + "date_of_expiration": "2023-09-06T16:52:19.358Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -25480,10 +18764,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "4512a837bba747099846e83d", + "revision": "3bb0f81d0449498895c7e948", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25491,10 +18775,10 @@ "content": { "type": "STRING", "value": "Saque de 3.478.958,35 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "976c9b2b90434984a03c1d39", + "revision": "11ebe32121ea421ab0f148f2", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25510,24 +18794,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "costs": [] }, - "revision": "c102a29b65cc462390096193", + "revision": "91d3ae821d674358a3f62246", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25535,10 +18807,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694530925477", - "revision": "533693698d5847c8a3f85d78", + "revision": "29d3988b713b43eca4715a85", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25553,18 +18825,9 @@ "total_amount": 13248, "id": "1694530925477", "history_id": "1694530925477", - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - }, + "date_created": "2023-09-12T15:02:05.477Z", + "date_last_updated": "2023-10-04T23:31:59.830Z", + "date_of_expiration": "2023-10-12T15:02:05.475Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -25575,10 +18838,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "8f2733216f484439a8a5d2a7", + "revision": "1c81c831d3c24e2fb58c21fb", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25586,10 +18849,10 @@ "content": { "type": "STRING", "value": "Investimento de 13.248,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 12/10/2023 - Y12XDT27", - "revision": "f21b0a659dab4e0c897399d2", + "revision": "643753f326974ea489e11ac9", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25598,24 +18861,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-12T22:54:09.010Z", - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + ".val": "2023-10-12T22:54:09.010Z" }, - "revision": "003da558d98247c9b353be2e", + "revision": "2223932851594c7690cb0443", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25631,24 +18882,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "costs": [] }, - "revision": "0da83409cc1646b2af2a6a96", + "revision": "b6f0f014486e4dcf9d8e66c2", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25656,10 +18895,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694559249011", - "revision": "ca90834b7da3407495749dd3", + "revision": "c87a7a696a174ccd92bbfcf5", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25674,14 +18913,8 @@ "total_amount": 220, "id": "1694559249011", "history_id": "1694559249011", - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, + "date_created": "2023-09-12T22:54:09.011Z", + "date_last_updated": "2023-09-12T23:10:55.083Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -25691,16 +18924,12 @@ "date_approved": "2023-09-12T23:10:55.083Z", "money_release_date": "2023-09-12T23:10:55.083Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "wasDebited": true }, - "revision": "f6335c68199d42fe9c497195", + "revision": "866e942aa524414a8cb656c4", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25708,10 +18937,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 220,00 BRL para a carteira iVip 0176.0919.3050.0250-62", - "revision": "5a9c6260e7fc42b1920b0331", + "revision": "be5509aa565b419d811eb720", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25729,24 +18958,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 4, - "installments_payable": 1, - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "installments_payable": 1 }, - "revision": "c46fd538c2f1484b995b3832", + "revision": "e22d3f00fecd4cf8ac751259", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25754,10 +18971,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694560328887", - "revision": "310d39765d9440f9a9cf7fb7", + "revision": "0e05784b7f524aef8efbee8c", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25772,18 +18989,9 @@ "total_amount": 220, "id": "1694560328887", "history_id": "1694560328887", - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - }, + "date_created": "2023-09-12T23:12:08.887Z", + "date_last_updated": "2023-09-12T23:12:08.887Z", + "date_of_expiration": "2023-09-12T23:12:08.887Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -25791,10 +18999,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "9afe6d4e7ef1415dbb624cc7", + "revision": "8b5de6d1602a445a9ec18247", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25802,10 +19010,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "0a1cce8e92414737b296609f", + "revision": "320dd5d558ee45269d2679d6", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25821,24 +19029,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "costs": [] }, - "revision": "11029bb69be44059990bdde5", + "revision": "1af96e161baf467eac230abf", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25846,10 +19042,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1695164776163", - "revision": "e5e9956fc1c645c987a09460", + "revision": "3036ec7e0b66461fbe816578", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25864,18 +19060,9 @@ "total_amount": 4583948, "id": "1695164776163", "history_id": "1695164776163", - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - }, + "date_created": "2023-09-19T23:06:16.163Z", + "date_last_updated": "2023-09-25T21:44:45.837Z", + "date_of_expiration": "2024-03-19T23:06:16.135Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -25886,10 +19073,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "797598e4639549b2a031583a", + "revision": "a7a76cf08e11460a86f2431c", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25897,10 +19084,10 @@ "content": { "type": "STRING", "value": "Investimento de 4.583.948,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", - "revision": "5e6724b8e86d44258d8fdba2", + "revision": "84c4406417bf4caf822ed28a", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25916,24 +19103,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "costs": [] }, - "revision": "5f2dfc32fef14d5bb4621c9c", + "revision": "dfcbceaeef8249debf5e92f7", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25941,10 +19116,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1696551378554", - "revision": "622219a38e6a44f3b22c8e50", + "revision": "a2da2f17a94b450685f2fa26", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25960,18 +19135,9 @@ "total_amount": 4597196, "id": "1696551378554", "history_id": "1696551378554", - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - }, + "date_created": "2023-10-06T00:16:18.554Z", + "date_last_updated": "2023-10-06T00:16:18.554Z", + "date_of_expiration": "2023-11-06T00:16:18.481Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -25979,10 +19145,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "56c4b2c06b5a41eab5af78ef", + "revision": "3aa30bd4861b4ba084109c70", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -25990,10 +19156,10 @@ "content": { "type": "STRING", "value": "Investimento de 4.597.196,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", - "revision": "a3d744732e944d3c991cb5a2", + "revision": "e4428b373f0942c387ec6e4d", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -26002,24 +19168,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-12T12:26:40.740Z", - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + ".val": "2023-11-12T12:26:40.740Z" }, - "revision": "e8b2aa8e8e7944b69fcd8764", + "revision": "bf7b2a2777fb47d69571d265", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509533, + "modified": 1701463509533 } }, { @@ -26035,24 +19189,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "costs": [] }, - "revision": "441b8b0ddf89496a889ef2ff", + "revision": "e01fb3ded5bc483fb3469c88", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26060,10 +19202,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1697200000740", - "revision": "d51504cfc7a942df85e542bb", + "revision": "32f76cfe79284ab4a2ec9bd0", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26079,14 +19221,8 @@ "total_amount": 220, "id": "1697200000740", "history_id": "1697200000740", - "date_created": { - "type": 6, - "value": 1701459383484 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383484 - }, + "date_created": "2023-10-13T12:26:40.740Z", + "date_last_updated": "2023-10-13T13:19:44.767Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -26096,16 +19232,12 @@ "date_approved": "2023-10-13T13:19:44.767Z", "money_release_date": "2023-10-13T13:19:44.767Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383484 - } + "wasDebited": true }, - "revision": "8e40a3d2acb74b0bba94d8e6", + "revision": "a541fcbbbe9e4fbeae307a12", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26113,10 +19245,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 220,00 BRL para a carteira iVip 0176.0919.3050.0250-62", - "revision": "e33609c540794aaa91998a86", + "revision": "ecff14a3550549609e6b6a76", "revision_nr": 1, - "created": 1701459383484, - "modified": 1701459383484 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26134,24 +19266,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 5, - "installments_payable": 0, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "installments_payable": 0 }, - "revision": "832aebd33d714bb5888a26b2", + "revision": "85c91286bb8a4547ac28f4f6", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26159,10 +19279,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1697203305717", - "revision": "2d877392d0254edba83b9cf2", + "revision": "3c24754ee2494fe4b59dde9b", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26178,18 +19298,9 @@ "total_amount": 220, "id": "1697203305717", "history_id": "1697203305717", - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-10-13T13:21:45.717Z", + "date_last_updated": "2023-10-13T13:21:45.717Z", + "date_of_expiration": "2023-10-13T13:21:45.717Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -26197,10 +19308,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "9ab57c3f90214e75bd52b686", + "revision": "df3662401f064981b43614cc", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26208,10 +19319,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "ed33134d556247ccbeef8246", + "revision": "1094d7cf1d6c452a808c6eb5", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26219,10 +19330,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3c10dc519b0d462fa28b642a", + "revision": "46170bf1d841442ba6b64e76", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26232,24 +19343,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "amount": 100 }, - "revision": "b6eb704e59d4496c83622c61", + "revision": "b7bbc8ba46664d318bdbb0ba", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26263,26 +19362,15 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-05-13T18:37:39.388Z", "history_id": 1684003059388, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "status": "paid" }, - "revision": "c820f9077cdb4481adfa8141", + "revision": "eac4c63b336f476c9e7b183b", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26290,10 +19378,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "be6696bb938b4ad9b78f849a", + "revision": "4da381f4310345d2bf60f9f6", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26301,10 +19389,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "4e22062dff0b4f0a9c2185a0", + "revision": "47523ff53f3f438789f7881e", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26312,10 +19400,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a2a7c219a98a4797bcae1fcb", + "revision": "eaaab73429ea4bff902c9ac0", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26325,24 +19413,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "amount": 100 }, - "revision": "aac4209219144eee93f12304", + "revision": "6399505e5bc34dbb993edf46", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26356,26 +19432,15 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-05-13T18:37:39.388Z", "history_id": 1684003059388, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "status": "paid" }, - "revision": "4e9c538c514e44c79e12e28e", + "revision": "a4f1e0658ba44e18aab56365", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26383,10 +19448,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "36b725266bae44aa9d2122c9", + "revision": "257060ec65d547e594df938f", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26394,10 +19459,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "ac57fc0cc9464ef0b660ed58", + "revision": "2ec92fd7db5e4123971df1be", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26405,10 +19470,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7ee2a106df7d483b95d37067", + "revision": "b2f0f7c2f6fb4c5a9ae33c0c", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26418,24 +19483,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "amount": 100 }, - "revision": "39bc7bfa94bb4cf091e26056", + "revision": "95ba1c68bea747cda17f044a", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26449,26 +19502,15 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-05-13T18:37:39.388Z", "history_id": 1684003059388, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "status": "paid" }, - "revision": "ea6999747e8e4223bf3b8b0d", + "revision": "f354d55b3f8c4756ad42e814", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26476,10 +19518,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "bafd26fc4e814078a784ab26", + "revision": "54eee370f3fc4bae8e3ceb0e", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26487,10 +19529,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "0e877d3547d7451fbadcc015", + "revision": "a6b3482d6d9b4e8f82ba0dfa", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26498,10 +19540,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "25811bde1dfd453da9164299", + "revision": "c6c8301f46bc4232bdf03475", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26511,24 +19553,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "amount": 100 }, - "revision": "0381d2aa4951470b9cae2941", + "revision": "297b786f0ce44ca8a50b265c", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26542,26 +19572,16 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-05-13T18:37:39.388Z", "history_id": 1684003059388, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "date_last_updated": "2023-09-12T23:12:08.902Z" }, - "revision": "308e74ca42dd47fa92c4f80c", + "revision": "010df45a243640afb8272009", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26569,10 +19589,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "79a2a48d7a4d4b54b6162756", + "revision": "9d4ad6e8cfa14d1b8c6929a4", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26580,10 +19600,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "99aaeb8355584f1192994020", + "revision": "a98240cacb89437e88354d4c", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26591,10 +19611,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7df631a54a4640cea1dc6a88", + "revision": "6ca37eb562fb470aae83843d", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26604,24 +19624,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "amount": 100 }, - "revision": "9097dc9e7ba247e79ac43a3a", + "revision": "d17f96f45fc04f3086e85af8", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26635,26 +19643,16 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-05-13T18:37:39.388Z", "history_id": 1684003059388, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "date_last_updated": "2023-10-13T13:21:45.729Z" }, - "revision": "b24c0dc7ccf44c599bb6dcf3", + "revision": "c157b0fff88946e1bfb2f310", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26662,10 +19660,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "590d2c7a9be8439595bd57e1", + "revision": "79a43b50b8ec47518a8d274e", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26673,10 +19671,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "df4f51a0884948ceaaf50ae2", + "revision": "2f88f5be4b57426a9e450325", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26684,10 +19682,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b37671d95d554104ad7c16d2", + "revision": "8e96bf4cc52142cfa1d0396c", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26695,10 +19693,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "50da7070e559464690afe6aa", + "revision": "efe7d75c16e84f06af3178ca", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26709,24 +19707,12 @@ "approvedLimit": 1000, "limitUsed": 400, "analysisRequested": "2023-05-13T18:00:13.915Z", - "lastReview": "2023-05-13T18:03:09.928Z", - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "lastReview": "2023-05-13T18:03:09.928Z" }, - "revision": "619430f744224ae0819674d2", + "revision": "3403206a07b94a7184f2283c", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26738,24 +19724,12 @@ "dateValidity": 1682097646342, "totalValue": 2544.535, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "balancesModificacao": "2023-10-15T03:00:00.000Z" }, - "revision": "865c2ca57606485ca664c00c", + "revision": "f6820a222c164eb0b04461fa", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26763,24 +19737,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "costs": [] }, - "revision": "84a9c780a22c4e018aaa745b", + "revision": "27f976a49e8f44c19ad3c4b3", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26795,18 +19757,9 @@ "total_amount": 15000, "history_id": 1684943727392, "id": 1684943727392, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-05-24T15:55:27.392Z", + "date_last_updated": "2023-05-24T15:55:53.725Z", + "date_of_expiration": "2023-06-23T15:55:27.392Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -26816,10 +19769,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "8780ad911ec04c2d823852f5", + "revision": "55cf919dbc87473584c21989", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26827,10 +19780,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 15.000,00 para a carteira iVip 0176.2260.5984.9780-02", - "revision": "0a0e9cf8e01e4e4eb2dccc30", + "revision": "efdcc7704a064db291caa0b8", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26848,24 +19801,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "costs": [] }, - "revision": "317f655ee0cb4d5aa4658759", + "revision": "fe19976c85ad40a8bdb6d22f", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26881,18 +19822,9 @@ "original_amount": 200000000, "total_amount": 200000000, "id": 1685471938618, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-05-30T18:38:58.618Z", + "date_last_updated": "2023-05-30T18:38:58.618Z", + "date_of_expiration": "2023-05-30T18:38:58.618Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -26901,10 +19833,10 @@ "history_id": 1685471938618, "description": "Compra de 200.000.000,00 IVIP por 15.000,00 BRL" }, - "revision": "0aa46a2cc5d34b48a1da7a23", + "revision": "f0c3a3f2097948c8b5eb03b5", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26912,10 +19844,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "07e72e4206c84e958aa54606", + "revision": "abb944c4b66d496d93d33b11", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26923,10 +19855,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ffa8b69e1c4945d8adc513e7", + "revision": "1943d0667c8d40208e691431", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26935,24 +19867,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "limitUsed": 0 }, - "revision": "56ed01ce68e545cebd16c598", + "revision": "43fa8344d0494ba28c2703cb", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26962,24 +19882,12 @@ "value": { "available": "200000000.00000000", "symbol": "IVIP", - "value": 20332.55, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "value": 20332.55 }, - "revision": "33673510cc9e4da583a74b54", + "revision": "835156b387cf4954b4310939", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -26987,10 +19895,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7c70194780304dacb709f982", + "revision": "a6b8260f8fae4f76b1463bfc", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -27002,24 +19910,12 @@ "dateValidity": 1683153627758, "totalValue": 13477.18, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "balancesModificacao": "2023-10-16T03:00:00.000Z" }, - "revision": "cfe17ed6e4e74810bbacd5b8", + "revision": "d526884ca705418d920ba884", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -27027,10 +19923,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e71b2c97e2bf419bae5aedf7", + "revision": "7636521c11244edea025bcf4", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -27038,10 +19934,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f8da0a42e4cc4e03b02140d2", + "revision": "6dc7faeb79a04f36aea35ace", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -27052,24 +19948,12 @@ "dataModificacao": 1678058024401, "dateValidity": 1678162416437, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "currencyType": "USD" }, - "revision": "9f2e30b39a3640e09a7c105a", + "revision": "c5ec32a6d8dc42b9a99d2e55", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -27079,24 +19963,12 @@ "value": { "available": "0.60000000", "symbol": "IVIP", - "value": 0.000081, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "value": 0.000081 }, - "revision": "29bb795e096741ab878c6756", + "revision": "ac1024634ad04619813e4669", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -27104,10 +19976,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "aabb015156944cd0aae516ad", + "revision": "6134468b4c324f49a315af40", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -27115,24 +19987,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "costs": [] }, - "revision": "e408820021354b1094d8d299", + "revision": "635d51f4d8534f459685dc35", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -27147,18 +20007,9 @@ "total_amount": 100, "history_id": 1678138020034, "id": 1678138020034, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-03-06T21:27:00.034Z", + "date_last_updated": "2023-03-06T21:31:53.569Z", + "date_of_expiration": "2023-04-05T21:27:00.034Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -27166,10 +20017,10 @@ "money_release_date": "2023-03-06T21:31:53.569Z", "money_release_status": "rejected" }, - "revision": "57043922014740298f0d7785", + "revision": "aa7703bea8904dc5892cb06c", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -27177,10 +20028,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0192.1172.1108.0322-64", - "revision": "11604e25ff4e442499e4aba2", + "revision": "eb76a015322f4046909e74e4", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -27188,24 +20039,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "costs": [] }, - "revision": "f1620cf7692342ad933a3af2", + "revision": "b81ea812ac764312ba0b382b", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -27220,18 +20059,9 @@ "total_amount": 2000, "history_id": 1677965965594, "id": 1677965965594, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-03-04T21:39:25.594Z", + "date_last_updated": "2023-03-05T00:07:26.209Z", + "date_of_expiration": "2023-04-03T21:39:25.594Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -27241,10 +20071,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b4e63f9b431a451b8516b924", + "revision": "94eb2ae3e9f24dc6ab988748", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -27252,10 +20082,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0192.1172.1108.0322-64", - "revision": "f7c56d77cac24a6ea7b24d4a", + "revision": "2a1c42eae7d549ce8adbe1f3", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -27263,24 +20093,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "costs": [] }, - "revision": "32c8835b275d4d1f824288cf", + "revision": "9f16f3d1e4614d1196262d07", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -27295,18 +20113,9 @@ "total_amount": 1000, "history_id": 1678138148348, "id": 1678138148348, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-03-06T21:29:08.348Z", + "date_last_updated": "2023-03-07T15:01:46.976Z", + "date_of_expiration": "2023-04-05T21:29:08.348Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -27315,10 +20124,10 @@ "money_release_date": "2023-03-07T15:01:46.976Z", "money_release_status": "approved" }, - "revision": "348d4d50ad1c496cab65ade8", + "revision": "7a82e6dc79df4f15b1709759", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -27326,10 +20135,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0192.1172.1108.0322-64", - "revision": "5f89c7b284a64c1ebffc63f2", + "revision": "1dbf50d82ef34bda8b6a9d6e", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509534, + "modified": 1701463509534 } }, { @@ -27347,24 +20156,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "costs": [] }, - "revision": "0e04b2af841a4592b01d70d9", + "revision": "856ad43908e04dad9a88af4c", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27380,18 +20177,9 @@ "original_amount": 14292068, "total_amount": 14292068, "id": 1678162119494, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-03-07T04:08:39.494Z", + "date_last_updated": "2023-03-07T04:08:39.494Z", + "date_of_expiration": "2023-03-07T04:08:39.494Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27400,10 +20188,10 @@ "history_id": 1678162119494, "description": "Compra de 14292068 IVIP por 2000 BRL" }, - "revision": "9ca9c5eee3cc436e89771958", + "revision": "e77d8c3f5871406e9162dec2", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27421,24 +20209,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "costs": [] }, - "revision": "399adb240e26444e82b7c896", + "revision": "94bcc3b865104b958f000fc4", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27454,18 +20230,9 @@ "original_amount": 7083024, "total_amount": 7083024, "id": 1678201718893, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-03-07T15:08:38.893Z", + "date_last_updated": "2023-03-07T15:08:38.893Z", + "date_of_expiration": "2023-03-07T15:08:38.893Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27474,10 +20241,10 @@ "history_id": 1678201718893, "description": "Compra de 7083024 IVIP por 1000 BRL" }, - "revision": "704c0713232e4c1c87586440", + "revision": "062df4ca71bf434aa20cbd56", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27485,24 +20252,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "costs": [] }, - "revision": "17c32c27c316447b9bec8786", + "revision": "3317d7b0dd5743fbb55e5aab", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27517,18 +20272,9 @@ "total_amount": 15000000, "history_id": 1687306180932, "id": 1687306180932, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-06-21T00:09:40.932Z", + "date_last_updated": "2023-06-22T13:14:46.349Z", + "date_of_expiration": "2023-06-21T00:09:40.932Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -27536,10 +20282,10 @@ "money_release_date": "2023-06-22T13:14:46.349Z", "money_release_status": "rejected" }, - "revision": "bb113fbf4527450fb2694f3e", + "revision": "4855976712064709a1f8116d", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27547,10 +20293,10 @@ "content": { "type": "STRING", "value": "Saque de 15.000.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", - "revision": "f4fdc7ed45c548c3b57898ed", + "revision": "aeb01b6dcdb2435f9d2c3dc2", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27558,24 +20304,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "costs": [] }, - "revision": "4c1a2b0e09f74b41b9c7e06c", + "revision": "755087bc3bbd42229a1375ea", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27590,18 +20324,9 @@ "total_amount": 15000000, "history_id": 1687306331776, "id": 1687306331776, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-06-21T00:12:11.776Z", + "date_last_updated": "2023-06-22T13:15:07.717Z", + "date_of_expiration": "2023-06-21T00:12:11.776Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -27611,10 +20336,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "7d6823b74e6040dcadfd9836", + "revision": "18be4b6ccec54526a7c75f69", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27622,10 +20347,10 @@ "content": { "type": "STRING", "value": "Saque de 15.000.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", - "revision": "2d208f70a6264ca6b8e3276c", + "revision": "b604f9a1cee6450bb17653c6", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27643,24 +20368,12 @@ "installment_amount": 6375092, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "costs": [] }, - "revision": "12cbe6221e6d40848d02c16a", + "revision": "4b6080e36e344e29a38c8638", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27675,18 +20388,9 @@ "original_amount": 6375092, "total_amount": 6375092, "id": 1687525932247, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-06-23T13:12:12.247Z", + "date_last_updated": "2023-06-23T13:12:12.247Z", + "date_of_expiration": "2025-06-23T13:12:12.247Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27695,10 +20399,10 @@ "history_id": 1687525932247, "wasDebited": true }, - "revision": "963eed019f4042b7b7f06ad5", + "revision": "7705dc44760d4172a9090627", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27706,10 +20410,10 @@ "content": { "type": "STRING", "value": "Investimento de 6.375.092,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", - "revision": "886d681dc3404ab9b9bc9968", + "revision": "e918815976a14af0a68ea11c", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27727,24 +20431,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "costs": [] }, - "revision": "0fdad2af42f44087ae6bff94", + "revision": "7ee66a4c4abb4f5e8cb8a29c", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27759,18 +20451,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1688054453004, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-06-29T16:00:53.004Z", + "date_last_updated": "2023-06-29T16:00:53.004Z", + "date_of_expiration": "2024-06-29T16:00:53.004Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27779,10 +20462,10 @@ "history_id": 1688054453004, "wasDebited": true }, - "revision": "4bf06dc15332420a9dccc862", + "revision": "730554e98f9f4e34b5d12a58", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27790,10 +20473,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/29/2024", - "revision": "255814cd60eb49da9ff9735e", + "revision": "39c713c73dc54e179f799709", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27801,24 +20484,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "costs": [] }, - "revision": "a30d0e5846764e999e9a8a3c", + "revision": "4c11e2324dc94c5ca5f423b6", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27833,27 +20504,18 @@ "total_amount": 1375000, "history_id": 1688055217395, "id": 1688055217395, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-06-29T16:13:37.395Z", + "date_last_updated": "2023-06-29T16:13:37.395Z", + "date_of_expiration": "2023-06-29T16:13:37.395Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "1c16d8797daf44b19b52e5b4", + "revision": "3341548a63444e4a98eb3056", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27861,10 +20523,10 @@ "content": { "type": "STRING", "value": "Saque de 1.375.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", - "revision": "f4d1a0184e9342b895765461", + "revision": "ef4e35e69ab9493fbeba1c65", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27882,24 +20544,12 @@ "installment_amount": 5000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "costs": [] }, - "revision": "46507596e6a64ccdb0fa8145", + "revision": "0d5ce6edc727499cabcbc3b7", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27914,18 +20564,9 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1688400574946, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-07-03T16:09:34.946Z", + "date_last_updated": "2023-07-03T16:09:34.946Z", + "date_of_expiration": "2023-08-03T16:09:34.946Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27933,10 +20574,10 @@ "currency_id": "IVIP", "history_id": 1688400574946 }, - "revision": "e198e04941014f969d255f20", + "revision": "1827e6c16c2a4c229677fbe3", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27944,10 +20585,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "e2db871ef7c14cd89c88d509", + "revision": "73da39ecb0944556a4b6c122", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27965,24 +20606,12 @@ "installment_amount": 5000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - } + "costs": [] }, - "revision": "0d9efb4689334116abe59ec1", + "revision": "7ea5aa7cba0c4e5593881366", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -27997,18 +20626,9 @@ "original_amount": 5100000, "total_amount": 5100000, "id": 1691079119787, - "date_created": { - "type": 6, - "value": 1701459383485 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383485 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383485 - }, + "date_created": "2023-08-03T16:11:59.787Z", + "date_last_updated": "2023-08-03T16:11:59.787Z", + "date_of_expiration": "2023-08-03T16:11:59.787Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28017,10 +20637,10 @@ "history_id": 1691079119787, "wasDebited": true }, - "revision": "e98d5afb7e7d4457ac7fc814", + "revision": "deb81104728142bd8da7b8f8", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -28028,10 +20648,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 5.000.000,00 IVIP com um rendimento de +100.000,00 IVIP (2,00%)", - "revision": "a0f849776764476490bc1b7a", + "revision": "dbbaee63b0324ece8dbe07d8", "revision_nr": 1, - "created": 1701459383485, - "modified": 1701459383485 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -28049,24 +20669,12 @@ "installment_amount": 5000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "costs": [] }, - "revision": "6dbe3a52c7dc4ac797357158", + "revision": "956a69983d914e0db688b4e6", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -28081,18 +20689,9 @@ "original_amount": 5100000, "total_amount": 5100000, "id": 1691079120545, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - }, + "date_created": "2023-08-03T16:12:00.545Z", + "date_last_updated": "2023-08-03T16:12:00.545Z", + "date_of_expiration": "2023-08-03T16:12:00.545Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28101,10 +20700,10 @@ "history_id": 1691079120545, "wasDebited": true }, - "revision": "a867a3260ac14924b539dad4", + "revision": "0316e0873d094f348ddba2d3", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -28112,10 +20711,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 5.000.000,00 IVIP com um rendimento de +100.000,00 IVIP (2,00%)", - "revision": "364e20ce37304182bc0ae487", + "revision": "fe2174a83f2b4ec5bafd573f", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -28131,24 +20730,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "costs": [] }, - "revision": "b53b6ea53ff24ac88d46804f", + "revision": "57321edb0d914b458e8e5858", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28156,10 +20743,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1691085199409", - "revision": "16ab4207f21d4873925d2028", + "revision": "5d5d60a0e93c4f4db3ce0fb8", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28174,18 +20761,9 @@ "total_amount": 5199000, "id": 1691085199409, "history_id": 1691085199409, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - }, + "date_created": "2023-08-03T17:53:19.409Z", + "date_last_updated": "2023-08-03T17:53:19.409Z", + "date_of_expiration": "2023-09-03T17:53:19.408Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28193,10 +20771,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "11ad3787aa1a459385098be4", + "revision": "e7e78b419f2b4b19a1602772", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28204,10 +20782,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.199.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "597020ff06b441c59f6eb919", + "revision": "0e2ff3d7c254467e9e3420fd", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509535, + "modified": 1701463509535 } }, { @@ -28223,24 +20801,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "costs": [] }, - "revision": "11fb3946de324488936f4410", + "revision": "0f577676b2084567a0591340", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28248,10 +20814,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1693763776046", - "revision": "3c9f3280721c4f358652dfa8", + "revision": "34780fa965b047b8bc995c51", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28266,18 +20832,9 @@ "total_amount": 5302980, "id": "1693763776046", "history_id": "1693763776046", - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - }, + "date_created": "2023-09-03T17:56:16.046Z", + "date_last_updated": "2023-09-03T17:56:16.046Z", + "date_of_expiration": "2023-09-03T17:56:16.046Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28285,10 +20842,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "4b06b2b16ea24aa4a49772d1", + "revision": "3395c3299fab43218541cf38", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28296,10 +20853,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 5.199.000,00 IVIP com um rendimento de +103.980,00 IVIP (2,00%) - Y12XDT27", - "revision": "dca912551f8a4d56a6e216f4", + "revision": "08ca418555d1450d8f437b0d", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28315,24 +20872,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "costs": [] }, - "revision": "c2551b3adb6545c6b76fb86c", + "revision": "fad6151c04154f80bd021f3f", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28340,10 +20885,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1693924633176", - "revision": "bd80a36d3237471ea0f16578", + "revision": "c3e0d6c5e6084b89b0a99981", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28358,18 +20903,9 @@ "total_amount": 5302980, "id": "1693924633176", "history_id": "1693924633176", - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - }, + "date_created": "2023-09-05T14:37:13.176Z", + "date_last_updated": "2023-09-05T14:37:13.176Z", + "date_of_expiration": "2023-10-05T14:37:13.174Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28377,10 +20913,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "2a42628d9411465883b6075d", + "revision": "abb85102b8da4a6686d7df1b", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28388,10 +20924,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.302.980,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", - "revision": "59994eb2c81f4e09b4d1ba48", + "revision": "078607124865427088c9f7d1", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28407,24 +20943,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "costs": [] }, - "revision": "b80b76bca45d44379ca9b5e1", + "revision": "1ccbc3a484174d0290dd917e", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28432,10 +20956,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1696516664226", - "revision": "2343c53b70a24c8e9d86b13f", + "revision": "badd6aa8097d4e8bb75b65b6", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28451,18 +20975,9 @@ "total_amount": 5409039.6, "id": "1696516664226", "history_id": "1696516664226", - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - }, + "date_created": "2023-10-05T14:37:44.226Z", + "date_last_updated": "2023-10-05T14:37:44.226Z", + "date_of_expiration": "2023-10-05T14:37:44.226Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28470,10 +20985,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "527537329a854e459cbabfc8", + "revision": "4c9676b5102f4b73ac6b49f4", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28481,10 +20996,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 5.302.980,00 IVIP com um rendimento de +106.059,6 IVIP (2,00%) - Y12XDT27", - "revision": "f5fb6318ebf3451db395cfbd", + "revision": "ef227160a91a43c3aeefd98d", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28500,24 +21015,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "costs": [] }, - "revision": "00fce9a8bacd4254b1e84889", + "revision": "f4203aabd1314ddabf280059", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28525,10 +21028,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1696621887766", - "revision": "97836022369d4a9d9925ab65", + "revision": "b28f7340dc1c40f3b7ab620d", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28544,18 +21047,9 @@ "total_amount": 5409039, "id": "1696621887766", "history_id": "1696621887766", - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - }, + "date_created": "2023-10-06T19:51:27.766Z", + "date_last_updated": "2023-10-06T19:51:27.766Z", + "date_of_expiration": "2023-11-06T19:51:27.733Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28563,10 +21057,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "3c5fa935a7ae4a59a9c81690", + "revision": "6d1042ea0a7d43c693bed83d", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28574,10 +21068,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.409.039,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", - "revision": "4de268cfa34c4e958339a5a2", + "revision": "0e5e5313b3694451a244bbed", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28585,10 +21079,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "24475e6eeb40422793009b35", + "revision": "afdf748d01ce4b37b5510d5c", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28596,10 +21090,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b1b95db532ef4aed9a65b7a1", + "revision": "e395cd226a034f589aa60ca0", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28609,24 +21103,12 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-07-19T15:26:56.218Z", - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "analysisRequested": "2023-07-19T15:26:56.218Z" }, - "revision": "de00c089cfff4183bec71dd4", + "revision": "27f85d76a32a48c39f1b2d51", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28638,24 +21120,12 @@ "dateValidity": 1678664927087, "totalValue": 1001.4056590358118, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "balancesModificacao": "2023-10-09T03:00:00.000Z" }, - "revision": "92546193953644dc811b9e88", + "revision": "cee9760f3be6472a8ebbf6d3", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28665,24 +21135,12 @@ "value": { "available": "80.00000000", "symbol": "BRL", - "value": 16.58, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "value": 16.58 }, - "revision": "a1a863bec29246d88ce2053f", + "revision": "9212838d0ffa4c20a96682e0", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28690,10 +21148,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "706bace7ff2c41a3864719f2", + "revision": "2af31361b9004c0093eed06f", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28701,24 +21159,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "costs": [] }, - "revision": "239b7814f6a142afb55f3d1c", + "revision": "71a4beca9e694aec931fa229", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28733,18 +21179,9 @@ "total_amount": 100, "history_id": 1679011728068, "id": 1679011728068, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - }, + "date_created": "2023-03-17T00:08:48.068Z", + "date_last_updated": "2023-03-17T12:47:59.547Z", + "date_of_expiration": "2023-04-16T00:08:48.068Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -28753,10 +21190,10 @@ "money_release_date": "2023-03-17T12:47:59.547Z", "money_release_status": "approved" }, - "revision": "e000f75f2e3c4d50b859570e", + "revision": "e55c8f0f06df483d9b4773e1", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28764,10 +21201,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0199.6555.6064.9756-30", - "revision": "4c75fc40f4cf4a78b5d0853d", + "revision": "2049123350954d2d892b7bf4", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28783,24 +21220,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "costs": [] }, - "revision": "3b7a5b8c6da4446fb2bcee91", + "revision": "3ff0a5d11f8c40c4aeff7890", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28808,10 +21233,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/019965556064975630/history/1689901373588", - "revision": "5a73dda84dd7447bb44a06ae", + "revision": "569efd68683b44afa6fb2504", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28826,18 +21251,9 @@ "total_amount": 20, "id": 1689901373588, "history_id": 1689901373588, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - }, + "date_created": "2023-07-21T01:02:53.588Z", + "date_last_updated": "2023-07-21T01:02:53.588Z", + "date_of_expiration": "2024-05-21T01:02:53.584Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28845,10 +21261,10 @@ "base_currency_id": "BRL", "status_detail": "accredited" }, - "revision": "53301dfb970e42de9ece6baf", + "revision": "6932eb7a9b9a4886a13ad5b0", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28856,10 +21272,10 @@ "content": { "type": "STRING", "value": "Investimento de 20,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/20/2024", - "revision": "c146c342944045d88c040d7d", + "revision": "2a08ed8c96de45f38a706fcc", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28867,10 +21283,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5710b0b4786e44c1a242427b", + "revision": "dbcc20ccfd7645e589368fbd", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28878,10 +21294,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "890853510d3d4fc6b8169125", + "revision": "d1b21ffc601247a2b44fb1d4", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28890,24 +21306,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "limitUsed": 0 }, - "revision": "552f919ffcda4b1bbbe23c27", + "revision": "ac9134d398f842d8beff765f", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28919,24 +21323,12 @@ "dateValidity": 1679026042762, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": 1689822000000, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "balancesModificacao": 1689822000000 }, - "revision": "6731955b2e484d4ea13748dd", + "revision": "1c8f8f75b1604306bd853efd", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28946,24 +21338,12 @@ "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "value": 0 }, - "revision": "0c629b80285348b3b6a1b758", + "revision": "fb24433938534f97ac8acc84", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28973,24 +21353,12 @@ "value": { "available": "72120104.00000000", "symbol": "IVIP", - "value": 10477.68, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "value": 10477.68 }, - "revision": "74dde6b6c8eb4c05871ebc1b", + "revision": "14a7daf48ac5461c9e6830e8", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -28998,10 +21366,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b9f4fd17d54a45a588a6e991", + "revision": "18fb2c4ece624ba2a41fdd16", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29009,24 +21377,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "costs": [] }, - "revision": "0c8b2119e6604d9394834bb0", + "revision": "74449b16a95546bb8fb5d355", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29041,18 +21397,9 @@ "total_amount": 10000, "history_id": 1677725964136, "id": 1677725964136, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - }, + "date_created": "2023-03-02T02:59:24.136Z", + "date_last_updated": "2023-03-02T11:03:26.417Z", + "date_of_expiration": "2023-04-01T02:59:24.136Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -29062,10 +21409,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "707b505cb8f5465dadda1940", + "revision": "e04a7da5650a460382c1b0f9", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29073,10 +21420,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0219.7710.1011.6756-04", - "revision": "7d74620972a44059ae3b9193", + "revision": "dbd6d27d59b04afea3c3d3d7", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29094,24 +21441,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "costs": [] }, - "revision": "c004d0b30ccc4488bd223175", + "revision": "9e6ed427c75a4bbda9395919", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29127,18 +21462,9 @@ "original_amount": 71386212, "total_amount": 71386212, "id": 1678147737654, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - }, + "date_created": "2023-03-07T00:08:57.654Z", + "date_last_updated": "2023-03-07T00:08:57.654Z", + "date_of_expiration": "2023-03-07T00:08:57.654Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29147,10 +21473,10 @@ "history_id": 1678147737654, "description": "Compra de 71386212 IVIP por 10000 BRL" }, - "revision": "c8b5d4b0e8774aaaab2d3a5a", + "revision": "367b3d7934764cb69aaa6893", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29168,24 +21494,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "costs": [] }, - "revision": "bb2a915290bd4656a65196ce", + "revision": "6fef6802a4344efeb5cd4c34", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29201,18 +21515,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1678160584706, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - }, + "date_created": "2023-03-07T03:43:04.706Z", + "date_last_updated": "2023-03-07T03:43:04.706Z", + "date_of_expiration": "2023-03-07T03:43:04.706Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29220,10 +21525,10 @@ "currency_id": "BRL", "history_id": 1678160584706 }, - "revision": "667953fed64b493abdd9f619", + "revision": "1bfa83c36b1f4c50beb984b3", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29231,10 +21536,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "96e94829d19a466299eb16cf", + "revision": "14438326cb36482fafa78444", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29252,24 +21557,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "costs": [] }, - "revision": "57f7df79fad5449d8e02ff64", + "revision": "d8446c1fb1cb46d788fd39f8", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29285,18 +21578,9 @@ "original_amount": 7146034, "total_amount": 7146034, "id": 1678162248934, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - }, + "date_created": "2023-03-07T04:10:48.934Z", + "date_last_updated": "2023-03-07T04:10:48.934Z", + "date_of_expiration": "2023-03-07T04:10:48.934Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29305,10 +21589,10 @@ "history_id": 1678162248934, "description": "Compra de 7146034 IVIP por 1000 BRL" }, - "revision": "a2cb7ac3f04344b8a32cf5e0", + "revision": "3e4bb938159e4762ace797c4", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29316,24 +21600,12 @@ "content": { "type": "OBJECT", "value": { - "content": "23797927500010103493380261019562276900633330", - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "content": "23797927500010103493380261019562276900633330" }, - "revision": "8aedc64123b04504b694a9bc", + "revision": "2624bd3fc47f4c7d88f4e442", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29343,24 +21615,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", - "amount": 3.49, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "amount": 3.49 }, - "revision": "a21feb5590bf4ced9763b7c9", + "revision": "6f9a6734b66f40989766756c", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29376,24 +21636,12 @@ "total_paid_amount": 10103.49, "overpaid_amount": 0, "installment_amount": 0, - "financial_institution": "bradesco", - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "financial_institution": "bradesco" }, - "revision": "a89fe2c28ebe4653a2c70bbb", + "revision": "3090fdc62d984e0dbb3d6bd0", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29401,10 +21649,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1311811220/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311811220&payment_method_reference_id=10195622769&hash=8d50adc1-12db-410d-a168-79594db6001b", - "revision": "f903923a7f96405fbcd42322", + "revision": "21e4bacd7af84239aa6a0fc3", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29412,10 +21660,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "ec92a83c62cb45348d6b0faf", + "revision": "b0bb72e2cd594b7495605acc", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29430,28 +21678,19 @@ "total_amount": 10103.49, "history_id": 1677379209968, "id": 1311811220, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - }, + "date_created": "2023-02-25T22:40:10.662-04:00", + "date_last_updated": "2023-02-25T22:40:10.662-04:00", + "date_of_expiration": "2023-02-28T22:59:59.000-04:00", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "8980422866d641a9a52722b1", + "revision": "f3ce0e717bdd4bb4a2d7c7e3", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29459,10 +21698,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.100,00 para a carteira iVip 0219.7710.1011.6756-04", - "revision": "e19142c967444703969a56d0", + "revision": "67cbde2816354f7d90a770c6", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29480,24 +21719,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "costs": [] }, - "revision": "2b7d7a85221d409d8d9840bb", + "revision": "28ade285fb2b4b899fe47ef7", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29513,18 +21740,9 @@ "original_amount": 326, "total_amount": 326, "id": 1684348383580, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - }, + "date_created": "2023-05-17T18:33:03.580Z", + "date_last_updated": "2023-05-17T18:33:03.580Z", + "date_of_expiration": "2023-05-17T18:33:03.580Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29532,10 +21750,10 @@ "currency_id": "BRL", "history_id": 1684348383580 }, - "revision": "1e4ede9ed4904bb990e67444", + "revision": "f7aa01b7aacf4eadaa5c92cf", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29543,10 +21761,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "3d100f928d284a62af290538", + "revision": "1264b55f91f84164b3821dc5", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29564,24 +21782,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "costs": [] }, - "revision": "64e4602035744e4481c13f18", + "revision": "d9fcaf97422e46d08f7f0814", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29597,18 +21803,9 @@ "original_amount": 1587858, "total_amount": 1587858, "id": 1684624810300, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - }, + "date_created": "2023-05-20T23:20:10.300Z", + "date_last_updated": "2023-05-20T23:20:10.300Z", + "date_of_expiration": "2023-05-20T23:20:10.300Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29617,10 +21814,10 @@ "history_id": 1684624810300, "description": "Compra de 1.587.858,00 IVIP por 326,00 BRL" }, - "revision": "9c1e0dd13dbc4caea2d19992", + "revision": "96ae7e658c9b4590aacf4910", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29638,24 +21835,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "costs": [] }, - "revision": "1c6b51d4e7ed4d3ca2d30756", + "revision": "5b47c5660937463983f094ef", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29670,18 +21855,9 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685668591211, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - }, + "date_created": "2023-06-02T01:16:31.211Z", + "date_last_updated": "2023-06-02T01:16:31.211Z", + "date_of_expiration": "2024-06-02T01:16:31.211Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29689,10 +21865,10 @@ "currency_id": "IVIP", "history_id": 1685668591211 }, - "revision": "509942ac910047c98f32ce4e", + "revision": "c5a302b304b34757a995e699", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29700,10 +21876,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "741d8739bc364375af6f2225", + "revision": "2458e42de865425cb1b25c03", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29711,24 +21887,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - } + "costs": [] }, - "revision": "78716383747f4d7d9a5d6cbf", + "revision": "16a85581330843028f252600", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29743,27 +21907,18 @@ "total_amount": 72120104, "history_id": 1689198160853, "id": 1689198160853, - "date_created": { - "type": 6, - "value": 1701459383486 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383486 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383486 - }, + "date_created": "2023-07-12T21:42:40.853Z", + "date_last_updated": "2023-07-12T21:42:40.853Z", + "date_of_expiration": "2023-07-12T21:42:40.853Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "23d9c4f856944c23b86b3c17", + "revision": "7766e2485c5341379ecfb1e7", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29771,10 +21926,10 @@ "content": { "type": "STRING", "value": "Saque de 72.120.104,00 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", - "revision": "9f5954e0e4dd48b8bb0728c8", + "revision": "97fed85a1b794cf8ba859394", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29784,24 +21939,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 2098695.0264, - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - } + "amount": 2098695.0264 }, - "revision": "20803d8751fa4a6f9809123e", + "revision": "1c2e964641494164a1031e44", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29816,24 +21959,12 @@ "installment_amount": 72120104, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - } + "financial_institution": "ivipcoin" }, - "revision": "29ddc3da5f354b7788062fda", + "revision": "acb26230111e4d03b015c5e6", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29841,10 +21972,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/021977101011675604/history/1690914468659", - "revision": "471592f68d51427ba86be8e6", + "revision": "419be0fdb1c846a0ac9a9f55", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29852,10 +21983,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "3da3b591e03b400a8c837490", + "revision": "335bda25970c4c44a6266eb0", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29870,18 +22001,9 @@ "total_amount": 69956500.88, "id": 1690914468659, "history_id": 1690914468659, - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - }, + "date_created": "2023-08-01T18:27:48.659Z", + "date_last_updated": "2023-08-07T14:42:48.367Z", + "date_of_expiration": "2023-08-01T18:27:48.659Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -29893,10 +22015,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "991b86366fe04acfad55093c", + "revision": "6c0557a39c8944acb7c4fef6", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29904,10 +22026,10 @@ "content": { "type": "STRING", "value": "Saque de 69.956.500,88 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", - "revision": "c479998cac0c4c8f8c1bd294", + "revision": "85fba415ef784e7ca7a4a379", "revision_nr": 1, - "created": 1701459383486, - "modified": 1701459383486 + "created": 1701463509536, + "modified": 1701463509536 } }, { @@ -29917,24 +22039,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 1026103.0443000001, - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - } + "amount": 1026103.0443000001 }, - "revision": "33fffd4cff274456a441bf4d", + "revision": "fe5d1499d490474c8235c9a4", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -29949,24 +22059,12 @@ "installment_amount": 35261273, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - } + "financial_institution": "ivipcoin" }, - "revision": "aebd35fbde434697856a240e", + "revision": "25e9c10cbabf41eeac42e6d4", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -29974,10 +22072,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/021977101011675604/history/1690914748870", - "revision": "d11be9640db24c03a188a04b", + "revision": "23540c24f4064cc1a3236246", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -29985,10 +22083,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "13b2438063cc470a998ae967", + "revision": "fcebb42cff69489d839ab73b", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30003,18 +22101,9 @@ "total_amount": 34203434.81, "id": 1690914748870, "history_id": 1690914748870, - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - }, + "date_created": "2023-08-01T18:32:28.870Z", + "date_last_updated": "2023-08-16T14:21:59.152Z", + "date_of_expiration": "2023-08-01T18:32:28.870Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -30025,10 +22114,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "9174c1dcb41849a5b0b60d55", + "revision": "74dd45cca2124459a8781ade", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30036,10 +22125,10 @@ "content": { "type": "STRING", "value": "Saque de 34.203.434,81 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", - "revision": "1499e48e180e4c538960a1ed", + "revision": "cd177c67066e4e54858d2d09", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30047,10 +22136,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0f7458174deb438db5ac804c", + "revision": "8bd33cf0385247739d10b3dc", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30058,10 +22147,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f5d93f3e26514705b3afba77", + "revision": "667e22ab0000415a9ad4cf16", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30070,24 +22159,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - } + "limitUsed": 0 }, - "revision": "1af83dc38747427e8d5daca3", + "revision": "cc95b610e5e442aabbd3be2f", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30099,24 +22176,12 @@ "dateValidity": 1678341464139, "totalValue": 3999.180462637249, "currencyType": "USD", - "balancesModificacao": 1691419368675, - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - } + "balancesModificacao": 1691419368675 }, - "revision": "c54b7b76dd7c4b6097fd541c", + "revision": "8b5e987313f646e487ef117f", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30126,24 +22191,12 @@ "value": { "available": "62553.00000000", "symbol": "IVIP", - "value": 6.93, - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - } + "value": 6.93 }, - "revision": "2189c3ca05a34f79994d6f9b", + "revision": "42f841d736df46efbbb4575d", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30151,10 +22204,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "bdb0914783124ebf90373f25", + "revision": "e2aefa767e644f038dfa95ca", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30162,24 +22215,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - } + "costs": [] }, - "revision": "e79c68fab76d4b3883b614cd", + "revision": "4c2c7fcd17214be6a3bc492a", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30194,18 +22235,9 @@ "total_amount": 100, "history_id": 1689290027436, "id": 1689290027436, - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - }, + "date_created": "2023-07-13T23:13:47.436Z", + "date_last_updated": "2023-07-14T17:32:15.839Z", + "date_of_expiration": "2023-08-12T23:13:47.436Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -30215,10 +22247,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d88a0c9338644c57bdbf7a06", + "revision": "c5e86f90578047c098b1fb1c", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30226,10 +22258,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", - "revision": "25f2674208654ff7bb621c57", + "revision": "b81fb479187c439382954db0", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30237,24 +22269,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - } + "costs": [] }, - "revision": "9d7f92d0f6234a36880f2b9b", + "revision": "2afa95764ce944949e4b014c", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30269,27 +22289,18 @@ "total_amount": 100, "history_id": 1689338968555, "id": 1689338968555, - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - }, + "date_created": "2023-07-14T12:49:28.555Z", + "date_last_updated": "2023-07-14T12:49:28.555Z", + "date_of_expiration": "2023-08-13T12:49:28.555Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "1caa0c3a0baa4014aeaccc65", + "revision": "66110f83f77f44dd94137a32", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30297,10 +22308,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", - "revision": "4866e7714e584ab7b75719af", + "revision": "d0e85bf57a734ab3881405b8", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30308,24 +22319,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - } + "costs": [] }, - "revision": "ee6c5963e203406ea1784c36", + "revision": "06cc3960857f4766a05af5e3", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30340,27 +22339,18 @@ "total_amount": 100, "history_id": 1689345853748, "id": 1689345853748, - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - }, + "date_created": "2023-07-14T14:44:13.748Z", + "date_last_updated": "2023-07-14T14:44:13.748Z", + "date_of_expiration": "2023-08-13T14:44:13.748Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "f5ad19dbc081492d81ad8d9a", + "revision": "af73dc87217745588180911a", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30368,10 +22358,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", - "revision": "4caa4f933d5941148a70634e", + "revision": "7e1132d758754d85bbcf63e9", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30389,24 +22379,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - } + "costs": [] }, - "revision": "a93c42c3067c48c99b4e721f", + "revision": "dfd782af5c034af9b0f716b3", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30422,18 +22400,9 @@ "original_amount": 62553, "total_amount": 62553, "id": 1689357674118, - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - }, + "date_created": "2023-07-14T18:01:14.118Z", + "date_last_updated": "2023-07-14T18:01:14.118Z", + "date_of_expiration": "2023-07-14T18:01:14.118Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30442,10 +22411,10 @@ "history_id": 1689357674118, "description": "Compra de 62.553,00 IVIP por 100,00 BRL" }, - "revision": "df84df32fb2c4c74abc58733", + "revision": "11405f98257e47a796a5dcad", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30461,24 +22430,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - } + "costs": [] }, - "revision": "f34dc08f9e44441481ad3077", + "revision": "98ca532f5c0a422688e81c0c", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30486,10 +22443,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/023129781601157750/history/1690557889809", - "revision": "a568948cc79b4469960d8511", + "revision": "68cc3c5cd97f4717996382c2", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30504,18 +22461,9 @@ "total_amount": 62553, "id": 1690557889809, "history_id": 1690557889809, - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - }, + "date_created": "2023-07-28T15:24:49.809Z", + "date_last_updated": "2023-07-28T15:24:49.809Z", + "date_of_expiration": "2023-07-28T15:24:49.809Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -30523,10 +22471,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "5b0271e17ca942f989f13d57", + "revision": "18a18defd2ca43068065b1ad", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30534,10 +22482,10 @@ "content": { "type": "STRING", "value": "Saque de 62.553,00 IVIP para a carteira 0x0f58150836c0785C212ea8Eb4eC1Cce6E595CE4a", - "revision": "e22afbbb38954e659415fee2", + "revision": "6f3f7ee135954c1abe1f0a1d", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30545,10 +22493,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9d42b453ae614f23af08a317", + "revision": "7dd9da45c1034279a9a46682", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30556,10 +22504,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "63f65cd02ae64a8d8b731d67", + "revision": "5758b470528549be8a2fc07d", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30568,24 +22516,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - } + "limitUsed": 0 }, - "revision": "468aab9bd006494490aa0397", + "revision": "d9ccc81232ef42e49344e04f", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30597,24 +22533,12 @@ "dateValidity": 1689289832519, "totalValue": 20.68, "currencyType": "USD", - "balancesModificacao": "2023-10-12T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - } + "balancesModificacao": "2023-10-12T03:00:00.000Z" }, - "revision": "2d3ad8eab1f3496da779900d", + "revision": "0eb72245b77e4b33a03052c6", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30622,24 +22546,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - } + "costs": [] }, - "revision": "537c54f518234e1c930fd3b0", + "revision": "901d19d17eb44034b7d8e4a5", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30654,18 +22566,9 @@ "total_amount": 62000, "history_id": 1688838966144, "id": 1688838966144, - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - }, + "date_created": "2023-07-08T17:56:06.144Z", + "date_last_updated": "2023-07-08T17:56:06.144Z", + "date_of_expiration": "2023-07-08T17:56:06.144Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -30675,10 +22578,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5a4fa0c4897d4c33a7bd7cd7", + "revision": "dcfc1107b6914900946b5c28", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30686,10 +22589,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 62.000,00 para a carteira iVip 0255.1405.5020.5792-40", - "revision": "179ab89f752b473297416602", + "revision": "576ea50ee8184c1f93321506", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30707,24 +22610,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - } + "costs": [] }, - "revision": "c0f767b4b7cf4fcabcd75bbb", + "revision": "6a6186f4c9f54ccd8268f10e", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30740,18 +22631,9 @@ "original_amount": 100000000, "total_amount": 100000000, "id": 1688839141121, - "date_created": { - "type": 6, - "value": 1701459383487 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383487 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383487 - }, + "date_created": "2023-07-08T17:59:01.121Z", + "date_last_updated": "2023-07-08T17:59:01.121Z", + "date_of_expiration": "2023-07-08T17:59:01.121Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30760,10 +22642,10 @@ "history_id": 1688839141121, "description": "Compra de 100.000.000,00 IVIP por 62.000,00 BRL" }, - "revision": "f8619fe0e5a04411a85d147f", + "revision": "bdec8ecb450c48bd827f00e7", "revision_nr": 1, - "created": 1701459383487, - "modified": 1701459383487 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30771,24 +22653,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "costs": [] }, - "revision": "4925e94c428c4b63a10bc804", + "revision": "3c4d77402dc74901b7ac05ca", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30803,18 +22673,9 @@ "total_amount": 50000000, "history_id": 1689276795860, "id": 1689276795860, - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - }, + "date_created": "2023-07-13T19:33:15.860Z", + "date_last_updated": "2023-07-13T19:33:15.860Z", + "date_of_expiration": "2023-07-13T19:33:15.860Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -30824,10 +22685,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a160b27c088048a18b7ee38a", + "revision": "40f4a09f7aa542bfba23f312", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30835,10 +22696,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 50.000.000,00 IVIP para a carteira iVip 0255.1405.5020.5792-40", - "revision": "1022105b721546f8beeac31b", + "revision": "32439cb61c7645d881f38ded", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30856,24 +22717,12 @@ "installment_amount": 149517672, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "costs": [] }, - "revision": "732b0ae78f4b46b0afa8466d", + "revision": "63a778820ba4494d965063a6", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30888,18 +22737,9 @@ "original_amount": 149517672, "total_amount": 149517672, "id": 1689278842357, - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - }, + "date_created": "2023-07-13T20:07:22.357Z", + "date_last_updated": "2023-07-13T20:07:22.357Z", + "date_of_expiration": "2024-01-13T20:07:22.357Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30907,10 +22747,10 @@ "currency_id": "IVIP", "history_id": 1689278842357 }, - "revision": "c34a8006eb2b44a09bee07a3", + "revision": "fe6ac04b9c3341cc84a702f1", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30918,10 +22758,10 @@ "content": { "type": "STRING", "value": "Investimento de 149.517.672,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 1/13/2024", - "revision": "5dc9b3eecab64b02ba7a896f", + "revision": "4770b454c8754fad8cf327d6", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30939,24 +22779,12 @@ "installment_amount": 450820, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "costs": [] }, - "revision": "a4bf43fabc484623934f2797", + "revision": "959475f5111c48468a54edc5", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -30971,18 +22799,9 @@ "original_amount": 450820, "total_amount": 450820, "id": 1689295244660, - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - }, + "date_created": "2023-07-14T00:40:44.660Z", + "date_last_updated": "2023-07-14T00:40:44.660Z", + "date_of_expiration": "2025-07-14T00:40:44.660Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30990,10 +22809,10 @@ "currency_id": "IVIP", "history_id": 1689295244660 }, - "revision": "3317d068b6d54ec39f33d4d9", + "revision": "9ef74e65c15343e79a530d52", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31001,10 +22820,10 @@ "content": { "type": "STRING", "value": "Investimento de 450.820,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/13/2025", - "revision": "d617bcb7eea7462fbce5c8b0", + "revision": "418f668ceeff4940a07847ca", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31012,24 +22831,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "costs": [] }, - "revision": "07b735e0d4dc4992952495e1", + "revision": "e7db6a1b95204972af344fc1", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31044,27 +22851,18 @@ "total_amount": 9396, "history_id": 1689350577243, "id": 1689350577243, - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - }, + "date_created": "2023-07-14T16:02:57.243Z", + "date_last_updated": "2023-07-14T16:02:57.243Z", + "date_of_expiration": "2023-08-13T16:02:57.243Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "5875821c3f01415194f5a3b6", + "revision": "8aaa15e7be46490e871ce9ae", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31072,10 +22870,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 9.396,00 para a carteira iVip 0255.1405.5020.5792-40", - "revision": "a920c9190d1b430fabd75f34", + "revision": "a83fbf29592f4184b190de67", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31083,24 +22881,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "costs": [] }, - "revision": "8fc4d7fd5e41402a90a97794", + "revision": "fd862d6039c04ac79f1df649", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31115,27 +22901,18 @@ "total_amount": 30010000, "history_id": 1690472510945, "id": 1690472510945, - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - }, + "date_created": "2023-07-27T15:41:50.945Z", + "date_last_updated": "2023-07-27T15:41:50.945Z", + "date_of_expiration": "2023-07-27T15:41:50.945Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP" }, - "revision": "20003f2d8ed9465f81825dc8", + "revision": "25880d68b76c46f4a52cd185", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31143,10 +22920,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 30.010.000,00 IVIP para a carteira iVip 0255.1405.5020.5792-40", - "revision": "8caa3467e1974a7e9dbc74e5", + "revision": "cc4b9eb945ce4d25a8f48438", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31162,24 +22939,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "costs": [] }, - "revision": "7813a2d7e0114cd78ff64fd3", + "revision": "1b8d3a45ed604a8fb3a3bf05", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31187,10 +22952,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1691081114647", - "revision": "78d08023dda84d6c9b3571a3", + "revision": "cc50da8c0e6f42e8ba6ed681", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31205,18 +22970,9 @@ "total_amount": 6001475, "id": 1691081114647, "history_id": 1691081114647, - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - }, + "date_created": "2023-08-03T16:45:14.647Z", + "date_last_updated": "2023-08-03T16:45:14.647Z", + "date_of_expiration": "2023-09-03T16:45:14.646Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31224,10 +22980,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "8e50a3c777a642cab1cf8952", + "revision": "6b224b7952944149a13720f0", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31235,10 +22991,10 @@ "content": { "type": "STRING", "value": "Investimento de 6.001.475,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "c00df56d87b8401fad271d53", + "revision": "c3e859df853c41c4ab7f8ee5", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31248,24 +23004,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 721200.99, - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "amount": 721200.99 }, - "revision": "792c5dd367164015a394b723", + "revision": "62286cb4cb7143268c76a45a", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31280,24 +23024,12 @@ "installment_amount": 24040033, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "financial_institution": "ivipcoin" }, - "revision": "1cee37fb382e4890a9096876", + "revision": "e991079a766d4f6ca54bb0d3", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31305,10 +23037,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1692462419697", - "revision": "5ac17c5517664b19acfa9a14", + "revision": "9996bcd1c1924e48a70ae87a", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31316,10 +23048,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "836e4f72eda940209a304658", + "revision": "287c79d23827490f940c391d", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31334,18 +23066,9 @@ "total_amount": 23318832.01, "id": 1692462419697, "history_id": 1692462419697, - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - }, + "date_created": "2023-08-19T16:26:59.697Z", + "date_last_updated": "2023-08-21T10:14:55.779Z", + "date_of_expiration": "2023-08-19T16:26:59.697Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -31356,10 +23079,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "14bec7050c55482d830db705", + "revision": "8c83bcb05b484bc5b6ce84b8", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31367,10 +23090,10 @@ "content": { "type": "STRING", "value": "Saque de 23.318.832,01 IVIP para a carteira 0x4BA972D54bb60Db93749D2cf5c4e160a3dd735c8", - "revision": "3d4297130cce432e9e4bd7d5", + "revision": "f84f67f43b3f4212a9bba710", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31386,24 +23109,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "costs": [] }, - "revision": "ee6b32040dd6449abf5f844b", + "revision": "4e563203383349e7bf529864", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31411,10 +23122,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1693759701053", - "revision": "7cfdd1a7ef25494f824768d9", + "revision": "9ea2cc8b074d46b2839bf676", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31429,18 +23140,9 @@ "total_amount": 6121504.5, "id": "1693759701053", "history_id": "1693759701053", - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - }, + "date_created": "2023-09-03T16:48:21.053Z", + "date_last_updated": "2023-09-03T16:48:21.053Z", + "date_of_expiration": "2023-09-03T16:48:21.053Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31448,10 +23150,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c0a28187dc73488789687a53", + "revision": "42c9639f2ece4d289d28866d", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31459,10 +23161,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 6.001.475,00 IVIP com um rendimento de +120.029,5 IVIP (2,00%) - Y12XDT27", - "revision": "b2c5af534428473288796329", + "revision": "d6cef46546fb4643945581b0", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31478,24 +23180,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "costs": [] }, - "revision": "8e6e46c713414e29af81e2cb", + "revision": "70a786ed9db94fb09bd64ce6", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31503,10 +23193,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1693861899974", - "revision": "ddfc1ab32aec4da490423997", + "revision": "8a97123bb1c04a15bc0ad062", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31521,18 +23211,9 @@ "total_amount": 7836614, "id": "1693861899974", "history_id": "1693861899974", - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - }, + "date_created": "2023-09-04T21:11:39.974Z", + "date_last_updated": "2023-10-04T13:04:00.162Z", + "date_of_expiration": "2023-10-04T21:11:39.973Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -31543,10 +23224,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "8e251ec291a54b7b88708a10", + "revision": "73924d238f3f40fda4d0948d", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31554,10 +23235,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.836.614,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/10/2023 - Y12XDT27", - "revision": "e42232928ffc41f680f37120", + "revision": "ffb6283a67e6479aacdca559", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509537, + "modified": 1701463509537 } }, { @@ -31566,24 +23247,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-13T13:17:39.628Z", - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + ".val": "2023-10-13T13:17:39.628Z" }, - "revision": "41ccc27e5d0140aa84efa2c0", + "revision": "e0abb3457f474c1289ae88e7", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31599,24 +23268,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "costs": [] }, - "revision": "933986f80b404cbb8225d4e3", + "revision": "8e522d8a2d584537bdfd7f17", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31624,10 +23281,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694611059637", - "revision": "770b701ab99f45868af7e8dc", + "revision": "e5c3edc8205d4b1080faea40", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31642,14 +23299,8 @@ "total_amount": 24582, "id": "1694611059637", "history_id": "1694611059637", - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, + "date_created": "2023-09-13T13:17:39.637Z", + "date_last_updated": "2023-09-13T13:18:06.754Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31659,16 +23310,12 @@ "date_approved": "2023-09-13T13:18:06.754Z", "money_release_date": "2023-09-13T13:18:06.754Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "wasDebited": true }, - "revision": "5df9751fc99b44b0be1e8203", + "revision": "aa37a125bdbf4228acd4c495", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31676,10 +23323,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 24.582,00 BRL para a carteira iVip 0255.1405.5020.5792-40", - "revision": "898444944a5b4c8da96e5d41", + "revision": "57ae8997d46e4d52be21f6c7", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31695,24 +23342,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "costs": [] }, - "revision": "01c992283aec49cc93b6feeb", + "revision": "348d8b88ad4540a4805a7710", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31720,10 +23355,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694612208335", - "revision": "a3f058346670483c9676c4f9", + "revision": "c4713fec33f346b1824a0f54", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31738,18 +23373,9 @@ "total_amount": 39021269, "id": "1694612208335", "history_id": "1694612208335", - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - }, + "date_created": "2023-09-13T13:36:48.335Z", + "date_last_updated": "2023-09-13T13:36:48.335Z", + "date_of_expiration": "2023-09-13T13:36:48.335Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -31758,10 +23384,10 @@ "description": "Compra de 39.021.269,00 IVIP por 24.582,00 BRL", "status_detail": "accredited" }, - "revision": "b70b6bbd34274cb6891a9807", + "revision": "4412c1d4edc94411a926d93b", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31770,24 +23396,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-13T15:48:27.989Z", - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + ".val": "2023-10-13T15:48:27.989Z" }, - "revision": "0ccaa53f66f84431a871a112", + "revision": "7d0b09299d984869847a71de", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31803,24 +23417,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "costs": [] }, - "revision": "06c8c620e3a4412cb9a637fb", + "revision": "7d0dc3c7caeb4cb6a589f5a1", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31828,10 +23430,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694620107990", - "revision": "c92a33296d6d42d580cba1c9", + "revision": "189f80fd469b43e4958157e7", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31846,14 +23448,8 @@ "total_amount": 168, "id": "1694620107990", "history_id": "1694620107990", - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, + "date_created": "2023-09-13T15:48:27.990Z", + "date_last_updated": "2023-09-13T17:11:03.588Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31863,16 +23459,12 @@ "date_approved": "2023-09-13T17:11:03.588Z", "money_release_date": "2023-09-13T17:11:03.588Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "wasDebited": true }, - "revision": "946fb360b42f4e23b69b440b", + "revision": "3d07ce06babf40669ddca33c", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31880,10 +23472,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 168,00 BRL para a carteira iVip 0255.1405.5020.5792-40", - "revision": "6bff2e3a0f7a4a0c87d1c122", + "revision": "37225216f10143b1b6ca917e", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31899,24 +23491,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "costs": [] }, - "revision": "8afd95f84cea4997b96b8e8d", + "revision": "0c21bd8455cf4302ac038dea", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31924,10 +23504,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694641684988", - "revision": "22e31cf79e174287b432e665", + "revision": "2ac0e147f72649b0b94327a5", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31942,18 +23522,9 @@ "total_amount": 258446, "id": "1694641684988", "history_id": "1694641684988", - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - }, + "date_created": "2023-09-13T21:48:04.988Z", + "date_last_updated": "2023-09-13T21:48:04.988Z", + "date_of_expiration": "2023-09-13T21:48:04.988Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -31962,10 +23533,10 @@ "description": "Compra de 258.446,00 IVIP por 168,00 BRL", "status_detail": "accredited" }, - "revision": "4105eded98bb469c80354cae", + "revision": "5cf70922522a499086238b8b", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -31975,24 +23546,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 750000, - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "amount": 750000 }, - "revision": "9198b5dd33b148b7b63957ff", + "revision": "a2bb5125757b4334bb3b2cf4", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32007,24 +23566,12 @@ "installment_amount": 25000000, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "financial_institution": "ivipcoin" }, - "revision": "38da82ca3fb34872908d9b75", + "revision": "c3064074b7af477da6d92999", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32032,10 +23579,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694692198880", - "revision": "8a1cc781255e485c9f1efebe", + "revision": "9f0cc8b6043f4b4b9b77ce27", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32043,10 +23590,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "28920c0d3552400487a24d96", + "revision": "52b1c26f9a6846a99f57b5c0", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32061,18 +23608,9 @@ "total_amount": 24250000, "id": "1694692198880", "history_id": "1694692198880", - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - }, + "date_created": "2023-09-14T11:49:58.880Z", + "date_last_updated": "2023-09-18T13:02:22.983Z", + "date_of_expiration": "2023-09-14T11:49:58.880Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -32084,10 +23622,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "7646ec0bc3284340b6036b95", + "revision": "00654ef41a234aa488857cf5", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32095,10 +23633,10 @@ "content": { "type": "STRING", "value": "Saque de 24.250.000,00 IVIP para a carteira 0xd3CF5Ea2Dcfb3c96d31AE10BA19cc4c7218b45b1", - "revision": "6fae6263700c4957a106d622", + "revision": "b6036dd6e2464c18a7542ce3", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32114,24 +23652,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - } + "costs": [] }, - "revision": "7ecbecfd5d32441bbbb5bffe", + "revision": "67a32b859bfb4d5fb94a07b2", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32139,10 +23665,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1696451540047", - "revision": "7b939d6f6a71493ba9bcca76", + "revision": "8a7aafac1ec0479ea356b420", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32158,18 +23684,9 @@ "total_amount": 8000000, "id": "1696451540047", "history_id": "1696451540047", - "date_created": { - "type": 6, - "value": 1701459383488 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383488 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383488 - }, + "date_created": "2023-10-04T20:32:20.047Z", + "date_last_updated": "2023-10-04T20:32:20.047Z", + "date_of_expiration": "2023-11-04T20:32:19.879Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32177,10 +23694,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ba1b9e74c4ba4625acfd4ad8", + "revision": "da12314ab40d4431b1e39be3", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32188,10 +23705,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "62cf39255d70495f9ada0f70", + "revision": "32366937d66b4c2eae65bde4", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32199,10 +23716,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8d54000d6a0840468345a567", + "revision": "1ef669a01df343bd802f1605", "revision_nr": 1, - "created": 1701459383488, - "modified": 1701459383488 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32210,10 +23727,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f1be0cdceb3047f8a632efe7", + "revision": "fef2660f9a574fed8187beb2", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32223,24 +23740,12 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-09-18T16:29:37.899Z", - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "analysisRequested": "2023-09-18T16:29:37.899Z" }, - "revision": "2d12be8bf8b6427696c47737", + "revision": "7685a5b6df5d48ea8ef47a40", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32250,24 +23755,12 @@ "value": { "available": "36441252.50000000", "symbol": "IVIP", - "value": 4538.39, - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "value": 4538.39 }, - "revision": "089b5a3765944e82b2cab6b8", + "revision": "8626026b0b0a46eea12d1acf", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32275,10 +23768,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8a07f318943646f2a8ae84b3", + "revision": "e102b7aee03040bba4b920ac", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32290,24 +23783,12 @@ "dateValidity": 1688773726146, "totalValue": 15.572371266885096, "currencyType": "USD", - "balancesModificacao": "2023-10-11T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "balancesModificacao": "2023-10-11T03:00:00.000Z" }, - "revision": "387119512a3249e8b386ba77", + "revision": "391b0ee975b4427a9f6ca56d", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32317,24 +23798,12 @@ "value": { "available": "8958033.00000000", "symbol": "IVIP", - "value": 9273.73, - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "value": 9273.73 }, - "revision": "446f8b5eb11b428abec36850", + "revision": "8409a47168d846d0bc82ee5b", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32342,10 +23811,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5b568d12d9c24b7c9eef512d", + "revision": "b8af45146a63454cad5993a7", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32353,24 +23822,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "costs": [] }, - "revision": "69f98a4675964c15a1a95c23", + "revision": "2988b8e9d68c46e2be655715", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32385,18 +23842,9 @@ "total_amount": 50, "history_id": 1681332472707, "id": 1681332472707, - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - }, + "date_created": "2023-04-12T20:47:52.707Z", + "date_last_updated": "2023-04-12T21:15:14.528Z", + "date_of_expiration": "2023-05-12T20:47:52.707Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -32406,10 +23854,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "27fc8236e1194b4aad674ab3", + "revision": "c4bbc44e77294641b1768e81", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32417,10 +23865,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "d90c42d3b32948af871861a3", + "revision": "be9fe1101181419b9fd95379", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32428,24 +23876,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "costs": [] }, - "revision": "1749ee870d8349d3b81b092e", + "revision": "1ef243684b5e40cf9aac62a2", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32460,18 +23896,9 @@ "total_amount": 350, "history_id": 1681334377618, "id": 1681334377618, - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - }, + "date_created": "2023-04-12T21:19:37.618Z", + "date_last_updated": "2023-04-12T21:22:27.169Z", + "date_of_expiration": "2023-05-12T21:19:37.618Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -32481,10 +23908,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "97e4cec5d85f44cc92033c7c", + "revision": "ff24ded8bbf34d3e8d08581f", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32492,10 +23919,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 350,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "f5e77f8c1fcc4582b3e1f5b8", + "revision": "b5c669a2166a4af38fa11b40", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32503,24 +23930,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "costs": [] }, - "revision": "b8df98c5932a43ef8e9a98f5", + "revision": "955d09b27c504be9b5501bc5", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32535,18 +23950,9 @@ "total_amount": 200, "history_id": 1682092492202, "id": 1682092492202, - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - }, + "date_created": "2023-04-21T15:54:52.202Z", + "date_last_updated": "2023-04-24T17:30:53.305Z", + "date_of_expiration": "2023-05-21T15:54:52.202Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -32556,10 +23962,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "92803d57cc7b470ea5371b3e", + "revision": "3423db4e1d0c47d8b2490b86", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32567,10 +23973,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "d125523ecb654d6da6f768a4", + "revision": "8000b5772c75490e8a528b78", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32578,24 +23984,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "costs": [] }, - "revision": "23242f291bd34008933718fa", + "revision": "535b79872b934911b9de4c73", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32610,27 +24004,18 @@ "total_amount": 200, "history_id": 1682353441521, "id": 1682353441521, - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - }, + "date_created": "2023-04-24T16:24:01.521Z", + "date_last_updated": "2023-04-24T16:24:01.521Z", + "date_of_expiration": "2023-05-24T16:24:01.521Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "e7e042be34224af3abd8eabc", + "revision": "22b8368120254143a3a99d4c", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32638,10 +24023,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "a5dddbdf9c984e8698e7934e", + "revision": "eed9dd860d1a4fb194de2fb5", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509538, + "modified": 1701463509538 } }, { @@ -32651,24 +24036,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 20, - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "amount": 20 }, - "revision": "3c84119369da4f3591a57640", + "revision": "c70ffacb87014023bb993406", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -32676,10 +24049,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "150613367bff4f4abe1f7d1f", + "revision": "ad62ef685f9d431a9b761e4d", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -32687,10 +24060,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "21d2a10b062f4c249292fbe5", + "revision": "963753ae554a40978d64920b", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -32705,28 +24078,19 @@ "total_amount": 1020, "history_id": 1682354342344, "id": 1682354342344, - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - }, + "date_created": "2023-04-24T16:39:02.344Z", + "date_last_updated": "2023-04-24T16:39:02.344Z", + "date_of_expiration": "2023-05-24T16:39:02.344Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "fa677a7217aa4518ab5bed50", + "revision": "a72eab253d7b4f2c87397d30", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -32734,10 +24098,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0266.8515.5320.8373-72 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.020,00", - "revision": "d320df1925ed4f759a7b3a15", + "revision": "ef9dd5693f614bac9f80f57b", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -32755,24 +24119,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "costs": [] }, - "revision": "c01396d157084bd5937a474b", + "revision": "7f91ac623c784364a7b1c36a", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -32788,18 +24140,9 @@ "original_amount": 8647027, "total_amount": 8647027, "id": 1684018921033, - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - }, + "date_created": "2023-05-13T23:02:01.033Z", + "date_last_updated": "2023-05-13T23:02:01.033Z", + "date_of_expiration": "2023-05-13T23:02:01.033Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32808,10 +24151,10 @@ "history_id": 1684018921033, "description": "Compra de 8.647.027,00 IVIP por 1.600,00 BRL" }, - "revision": "10d9314977ee49bc8fecbe53", + "revision": "8dab2b38c02240c0903c9650", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -32819,24 +24162,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "costs": [] }, - "revision": "919c5922dac045b88e984f69", + "revision": "775ce78680084bc589e114d2", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -32851,18 +24182,9 @@ "total_amount": 400, "history_id": 1689084265995, "id": 1689084265995, - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - }, + "date_created": "2023-07-11T14:04:25.995Z", + "date_last_updated": "2023-07-13T19:05:38.556Z", + "date_of_expiration": "2023-08-10T14:04:25.995Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -32872,10 +24194,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d60a7b5b816f4d169272faf8", + "revision": "e7435d5620dc479b9f817f69", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -32883,10 +24205,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "c177be851e3a4663aee4de8b", + "revision": "fabc344e7dc64434aa353c16", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -32894,24 +24216,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "costs": [] }, - "revision": "24f8ab5de1cd4f1488d35752", + "revision": "bd76d69eb9d8480989e740ff", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -32926,27 +24236,18 @@ "total_amount": 401.02, "history_id": 1689095021542, "id": 1689095021542, - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - }, + "date_created": "2023-07-11T17:03:41.542Z", + "date_last_updated": "2023-07-11T17:03:41.542Z", + "date_of_expiration": "2023-08-10T17:03:41.542Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "9d6f4b901fb04fa389211ce5", + "revision": "0e0a36d92b65441791c06d22", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -32954,10 +24255,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 401,02 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "5685f71f48b747b187de358d", + "revision": "088c75c750da440199ff7438", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -32975,24 +24276,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "costs": [] }, - "revision": "ad4e6fc7718b4c339db5cd9f", + "revision": "744375fe49ac41c7a6d25721", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33008,18 +24297,9 @@ "original_amount": 168630, "total_amount": 168630, "id": 1689275206669, - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - }, + "date_created": "2023-07-13T19:06:46.669Z", + "date_last_updated": "2023-07-13T19:06:46.669Z", + "date_of_expiration": "2023-07-13T19:06:46.669Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33028,10 +24308,10 @@ "history_id": 1689275206669, "description": "Compra de 168.630,00 IVIP por 400,00 BRL" }, - "revision": "f6976fa16d1e418b8ad57f59", + "revision": "3c7226f831a8423e93eeb623", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33040,24 +24320,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-28T03:07:50.124Z", - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + ".val": "2023-08-28T03:07:50.124Z" }, - "revision": "0f7f8946bbd74f48b645f3df", + "revision": "3273fa93333c474a8a8a1cec", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33073,24 +24341,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "costs": [] }, - "revision": "4a65cd7aeab744bb8535a220", + "revision": "c53c1df4399a424990f98660", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33098,10 +24354,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690600070124", - "revision": "2ae6d35173d247bb849471d9", + "revision": "25b7f2a806ac4b18a665c4d2", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33116,14 +24372,8 @@ "total_amount": 30, "id": 1690600070124, "history_id": 1690600070124, - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, + "date_created": "2023-07-29T03:07:50.124Z", + "date_last_updated": "2023-07-31T13:14:27.089Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33133,16 +24383,12 @@ "date_approved": "2023-07-31T13:14:27.089Z", "money_release_date": "2023-07-31T13:14:27.089Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "wasDebited": true }, - "revision": "49907f3c4eb64727b658a972", + "revision": "9596148e479045cf800ea913", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33150,10 +24396,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 30,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "20bdd1db1fcc4c8aacda7067", + "revision": "3f58bc00f000459e97ba0465", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33169,24 +24415,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "costs": [] }, - "revision": "f32e75beea3d410e89fdc93e", + "revision": "46977588e270423aaa8d9d81", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33194,10 +24428,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690822928470", - "revision": "d113dac2c0c74c27864d954e", + "revision": "3598f5e6f01c4c3fa1b9d5c3", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33212,18 +24446,9 @@ "total_amount": 26363, "id": 1690822928470, "history_id": 1690822928470, - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - }, + "date_created": "2023-07-31T17:02:08.470Z", + "date_last_updated": "2023-07-31T17:02:08.470Z", + "date_of_expiration": "2023-07-31T17:02:08.470Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -33232,10 +24457,10 @@ "description": "Compra de 26.363,00 IVIP por 30,00 BRL", "status_detail": "accredited" }, - "revision": "50add6cd8f054a4987f13288", + "revision": "b9237c5a62dc4faab1d7cdba", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33244,24 +24469,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-31T17:04:16.427Z", - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + ".val": "2023-08-31T17:04:16.427Z" }, - "revision": "d7c8a1169cc040a587926eb1", + "revision": "aa285fce54eb4a18b987af51", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33277,24 +24490,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "costs": [] }, - "revision": "6870259b8ba4429d9e326757", + "revision": "fb8bfea8d0074edab2a071dd", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33302,10 +24503,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690909456427", - "revision": "16a6a4f55d5b47b78d390329", + "revision": "59c2fc4f8d3b416c98ed0dd4", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33320,14 +24521,8 @@ "total_amount": 100, "id": 1690909456427, "history_id": 1690909456427, - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, + "date_created": "2023-08-01T17:04:16.427Z", + "date_last_updated": "2023-08-02T11:58:05.678Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33337,16 +24532,12 @@ "date_approved": "2023-08-02T11:58:05.678Z", "money_release_date": "2023-08-02T11:58:05.678Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "wasDebited": true }, - "revision": "6ad9b6f46f5545a4bb0f78bb", + "revision": "937b9a55e6d74d5cbaa0cb87", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33354,10 +24545,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "4db2e8f9da80411e8d5814d3", + "revision": "724e631259bb409d8072e59d", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33373,24 +24564,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - } + "costs": [] }, - "revision": "199a735850a0469a88b02b62", + "revision": "09caa57b9bec4a8899524d9d", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33398,10 +24577,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690977815869", - "revision": "50ef11bb17ba48a8877011a6", + "revision": "09b582e11fd84bff86090b94", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33416,18 +24595,9 @@ "total_amount": 116013, "id": 1690977815869, "history_id": 1690977815869, - "date_created": { - "type": 6, - "value": 1701459383489 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383489 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383489 - }, + "date_created": "2023-08-02T12:03:35.869Z", + "date_last_updated": "2023-08-02T12:03:35.869Z", + "date_of_expiration": "2023-08-02T12:03:35.869Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -33436,10 +24606,10 @@ "description": "Compra de 116.013,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "0f534f3262b64ec2a7b07045", + "revision": "09f511a8e97042b587b7bbdc", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33447,10 +24617,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4cca7721a2e1455cbfa4d787", + "revision": "6ce4de5895ca4800bf07dccd", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33460,24 +24630,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 20, - "date_created": { - "type": 6, - "value": 1701459383490 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383490 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383490 - } + "amount": 20 }, - "revision": "79bffba63f3e4d9481855294", + "revision": "8a186a79e0694910b42faeb8", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33491,25 +24649,14 @@ "total_amount": 1020, "installments": 1, "installment_amount": 1020, - "date_created": { - "type": 6, - "value": 1701459383490 - }, + "date_created": "2023-04-24T16:39:02.344Z", "history_id": 1682354342344, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383490 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383490 - } + "currency_id": "BRL" }, - "revision": "1aedc456610843409ee255b4", + "revision": "2acaa30574e74fa3ac25daa2", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33517,10 +24664,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0266.8515.5320.8373-72 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.020,00", - "revision": "eaf61527e78c474a8fc8968a", + "revision": "1820b2cab8324a32bc456fbf", "revision_nr": 1, - "created": 1701459383489, - "modified": 1701459383489 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33528,10 +24675,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "2e56a2f26ab64b98acd34b16", + "revision": "315b2708aafc4720809b17a0", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33539,10 +24686,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "cf54aa1ab693485bb0f09244", + "revision": "d33fd92a33a2482c96e5761a", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33550,10 +24697,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b6addf2f2bf64b908806b814", + "revision": "2f3e7a6884e64134b081b4d2", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33564,24 +24711,12 @@ "approvedLimit": 1000, "limitUsed": 1000, "analysisRequested": "2023-04-21T15:53:57.620Z", - "lastReview": "2023-04-21T15:54:24.302Z", - "date_created": { - "type": 6, - "value": 1701459383490 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383490 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383490 - } + "lastReview": "2023-04-21T15:54:24.302Z" }, - "revision": "8bb58d8460ed48fb9ebc60a1", + "revision": "71e450b9127b4989a7724cb2", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509539, + "modified": 1701463509539 } }, { @@ -33593,24 +24728,12 @@ "dateValidity": 1681239500343, "totalValue": 405.92, "currencyType": "USD", - "balancesModificacao": "2023-10-02T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383490 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383490 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383490 - } + "balancesModificacao": "2023-10-02T03:00:00.000Z" }, - "revision": "b3a6293c9ca3491fa42622cc", + "revision": "80871211cdbf415e8d9f166c", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -33618,10 +24741,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8c9ea1b6f3304035a1ba85b9", + "revision": "577c171293dc44d7a1927462", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -33629,10 +24752,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3ca69f32b7794383a6f2c907", + "revision": "c0f704a0805a41418a642a94", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -33643,24 +24766,12 @@ "dataModificacao": 1678237675259, "dateValidity": 1678252075296, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383490 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383490 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383490 - } + "currencyType": "USD" }, - "revision": "d1c2f66ac8bf401e9f207eba", + "revision": "90a3bccdc6fe4b54898bb6af", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -33670,24 +24781,12 @@ "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383490 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383490 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383490 - } + "value": 0 }, - "revision": "58301971222c44a285ebba58", + "revision": "269048f6e8c44bfe837b4d31", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -33697,24 +24796,12 @@ "value": { "available": "7306097.00000000", "symbol": "IVIP", - "value": 2344.22, - "date_created": { - "type": 6, - "value": 1701459383490 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383490 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383490 - } + "value": 2344.22 }, - "revision": "876fe46ddc6c48e68a5b9559", + "revision": "05c7bab15a264d6c90181f37", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -33722,10 +24809,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "62820b90c6324c79a3b50828", + "revision": "b18caf3b8e164d75a537501a", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -33733,24 +24820,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383490 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383490 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383490 - } + "costs": [] }, - "revision": "9bca23ed205a407a920dc075", + "revision": "91ce9b8741c84376b37eff99", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -33765,18 +24840,9 @@ "total_amount": 1000, "history_id": 1684115687035, "id": 1684115687035, - "date_created": { - "type": 6, - "value": 1701459383490 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383490 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383490 - }, + "date_created": "2023-05-15T01:54:47.035Z", + "date_last_updated": "2023-05-15T02:11:26.172Z", + "date_of_expiration": "2023-06-14T01:54:47.035Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -33786,10 +24852,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a5ec34bb775d4402b7623980", + "revision": "9bf2e79878174cff86a62626", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -33797,10 +24863,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0275.3660.7098.8736-24", - "revision": "abbb1f056bd54093a5d63a2f", + "revision": "857227b03cb1411f85740f4f", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -33808,24 +24874,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383490 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383490 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383490 - } + "costs": [] }, - "revision": "175141f8c3594ff9979dcb6a", + "revision": "0db095f88d3b430892dae059", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -33840,18 +24894,9 @@ "total_amount": 500, "history_id": 1684116712162, "id": 1684116712162, - "date_created": { - "type": 6, - "value": 1701459383490 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383490 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383490 - }, + "date_created": "2023-05-15T02:11:52.162Z", + "date_last_updated": "2023-05-15T02:12:17.988Z", + "date_of_expiration": "2023-06-14T02:11:52.162Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -33861,10 +24906,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d690924280f043c0ad2cd45e", + "revision": "6a007d75820f4ebe8b257b0a", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -33872,10 +24917,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0275.3660.7098.8736-24", - "revision": "0f82c5001cda4b61b59685ef", + "revision": "38c01ff59eb74e0fbcfc51c4", "revision_nr": 1, - "created": 1701459383490, - "modified": 1701459383490 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -33893,24 +24938,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + "costs": [] }, - "revision": "0c1b6c79869f453a9e1c63d1", + "revision": "167c940837c24e1ab85dfa5d", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -33926,18 +24959,9 @@ "original_amount": 7306097, "total_amount": 7306097, "id": 1684625508072, - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - }, + "date_created": "2023-05-20T23:31:48.072Z", + "date_last_updated": "2023-05-20T23:31:48.072Z", + "date_of_expiration": "2023-05-20T23:31:48.072Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33946,10 +24970,10 @@ "history_id": 1684625508072, "description": "Compra de 7.306.097,00 IVIP por 1.500,00 BRL" }, - "revision": "2866812ac4a34b33854ffadc", + "revision": "5e710a4b4f9d436bb4150988", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -33957,24 +24981,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + "costs": [] }, - "revision": "0738ada601dc46329a74abe6", + "revision": "7157f5396d3c464289618e8a", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -33989,27 +25001,18 @@ "total_amount": 7306097, "history_id": 1685398096730, "id": 1685398096730, - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - }, + "date_created": "2023-05-29T22:08:16.730Z", + "date_last_updated": "2023-05-29T22:08:16.730Z", + "date_of_expiration": "2023-05-29T22:08:16.730Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "24a46b82d7c34caf833843a3", + "revision": "d7f9280c3cb046d5bd666bb7", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34017,10 +25020,10 @@ "content": { "type": "STRING", "value": "Saque de 7.306.097,00 IVIP para a carteira 0x5127C3d0B17433E2f03F2bdC96157ca9B00eeD8e", - "revision": "b3069686b21c4343a3ed45b1", + "revision": "8c69a490bd484c9ab6e35661", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34028,24 +25031,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + "costs": [] }, - "revision": "aae8d11279b348a1b46a27f5", + "revision": "161b4c62166e43f6a80ade09", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34060,27 +25051,18 @@ "total_amount": 7306097, "history_id": 1685398151765, "id": 1685398151765, - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - }, + "date_created": "2023-05-29T22:09:11.765Z", + "date_last_updated": "2023-05-29T22:09:11.765Z", + "date_of_expiration": "2023-05-29T22:09:11.765Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "ef1dec94a56e4fb68f3ada6d", + "revision": "005355df99c0476aa58a67ab", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34088,10 +25070,10 @@ "content": { "type": "STRING", "value": "Saque de 7.306.097,00 IVIP para a carteira 0x5127C3d0B17433E2f03F2bdC96157ca9B00eeD8e", - "revision": "8aeb45ba859c4396a083bd35", + "revision": "32f20e25e6814a9f84b2c1ac", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34099,10 +25081,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0a2392593c904a039dfc2ae0", + "revision": "d14ca887cd824118b7e942ff", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34110,10 +25092,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "cd598504d9834c0187205d76", + "revision": "d94e1e0e558d4b50bff26374", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34122,24 +25104,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + "limitUsed": 0 }, - "revision": "9d370098567e452b8afbc161", + "revision": "6d775ced5cc246148347a813", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34151,24 +25121,12 @@ "dateValidity": 1684115568267, "totalValue": 301.2, "currencyType": "USD", - "balancesModificacao": 1689822000000, - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + "balancesModificacao": 1689822000000 }, - "revision": "6ed5bb01170948548244cd20", + "revision": "d4d7e97a47f64022a8e6c8f9", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34176,10 +25134,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e1e830018f264c10b97fdb67", + "revision": "3a001745ee41466dad822f74", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34187,10 +25145,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ae9a55f87ff3431d820e5d32", + "revision": "172241444c2c4ff7858e9223", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34201,24 +25159,12 @@ "dataModificacao": 1678161645477, "dateValidity": 1678176045916, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + "currencyType": "USD" }, - "revision": "e0879a9aed6e4e1f9d849f42", + "revision": "5d74f2dc61bb4d1bb6eccbb4", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34226,10 +25172,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ed1babefc64a44c29c484bd4", + "revision": "3983e681b63845b683cb991a", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34237,10 +25183,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9145f024c53a47c480143722", + "revision": "e017fc7742a14728a9732cce", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34251,24 +25197,12 @@ "dataModificacao": 1678243619498, "dateValidity": 1678254419535, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + "currencyType": "USD" }, - "revision": "8ec55e6962f9488fbd3d2dbd", + "revision": "9921fc0752254d07a432939c", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34276,10 +25210,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "19cb7c865d5b4f228dc83463", + "revision": "4460c0e43b82491b8627443f", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34287,10 +25221,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0f4e597fc58049a4b7f24bf2", + "revision": "f97918d3e02b4b1db0eea953", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34299,24 +25233,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + "limitUsed": 0 }, - "revision": "3ce6df49826644038351b912", + "revision": "33a092be18aa4202bd133d42", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34325,24 +25247,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-25T23:10:05.269Z", - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + ".val": "2023-08-25T23:10:05.269Z" }, - "revision": "21be9efaa1f645e5bd884086", + "revision": "eb09ea9fb8b247079227a578", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34358,24 +25268,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + "costs": [] }, - "revision": "569b2f8cca9a4e57829968d5", + "revision": "f7b95cce8cbd455f978240d5", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34383,10 +25281,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1690413005269", - "revision": "12e3b1d683c84c8484ba86c9", + "revision": "338b6c9ab5b74b8b8c1c4e3a", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34401,29 +25299,19 @@ "total_amount": 20, "id": 1690413005269, "history_id": 1690413005269, - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, + "date_created": "2023-07-26T23:10:05.269Z", + "date_last_updated": "2023-07-26T23:10:05.269Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + "status_detail": "pending_waiting_payment" }, - "revision": "433e6afb854543fd9668950b", + "revision": "725be1f943ed430198bbeccf", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34431,10 +25319,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0292.8722.8206.6813-90", - "revision": "de2cc53391f04b4e9070bb9d", + "revision": "2edf027bf4754770aeee8f42", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34443,24 +25331,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-02T00:11:10.147Z", - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + ".val": "2023-09-02T00:11:10.147Z" }, - "revision": "17fe3a79a87a492fabc399be", + "revision": "337f704ce1dd4a8784ff50a5", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34476,24 +25352,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + "costs": [] }, - "revision": "dd87ccd0d4654cacb71ec667", + "revision": "3c85306b23f643cb9027852d", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34501,10 +25365,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691021470147", - "revision": "24e8d754dfac47d9beefc5a2", + "revision": "98cb8337a416432d85bbac61", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34519,29 +25383,19 @@ "total_amount": 20, "id": 1691021470147, "history_id": 1691021470147, - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, + "date_created": "2023-08-03T00:11:10.147Z", + "date_last_updated": "2023-08-03T00:11:10.147Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + "status_detail": "pending_waiting_payment" }, - "revision": "8366a20d423f4956a795f327", + "revision": "d3f91d2779d645eb8b270624", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34549,10 +25403,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 para a carteira iVip 0292.8722.8206.6813-90", - "revision": "df9309edd09c4b90a8c282db", + "revision": "d67d46cc3ed44e9e8536152c", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34561,24 +25415,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-06T13:35:18.336Z", - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + ".val": "2023-09-06T13:35:18.336Z" }, - "revision": "b9edd91628274567a86670ab", + "revision": "0d661ee90c5b4f8ca34a1d3d", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34594,24 +25436,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + "costs": [] }, - "revision": "1105eb39a8324d6d81679bbc", + "revision": "fdf00133511a42feb608a9df", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34619,10 +25449,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691415318336", - "revision": "cc6156de7ff54f328471f876", + "revision": "d57fe0e63007480bb265ced4", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34637,14 +25467,8 @@ "total_amount": 30, "id": 1691415318336, "history_id": 1691415318336, - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, + "date_created": "2023-08-07T13:35:18.336Z", + "date_last_updated": "2023-08-07T13:37:52.035Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34654,16 +25478,12 @@ "date_approved": "2023-08-07T13:37:52.035Z", "money_release_date": "2023-08-07T13:37:52.035Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + "wasDebited": true }, - "revision": "822ec8c57a08469585384be9", + "revision": "f615a561590b4578acda22d6", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34671,10 +25491,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 30,00 para a carteira iVip 0292.8722.8206.6813-90", - "revision": "2031f60a41334ad3b4540492", + "revision": "3663a7c8567b41999c9da3e6", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34690,24 +25510,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + "costs": [] }, - "revision": "2a0f0130c0094c01acc75e5f", + "revision": "bbe49d3fc86d4cccb5c172a3", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34715,10 +25523,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691415588273", - "revision": "e557b6944536448aa766c5f5", + "revision": "9869d77c6ca84ed0bd014063", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34733,18 +25541,9 @@ "total_amount": 41845, "id": 1691415588273, "history_id": 1691415588273, - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - }, + "date_created": "2023-08-07T13:39:48.273Z", + "date_last_updated": "2023-08-07T13:39:48.273Z", + "date_of_expiration": "2023-08-07T13:39:48.273Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -34753,10 +25552,10 @@ "description": "Compra de 41.845,00 IVIP por 30,00 BRL", "status_detail": "accredited" }, - "revision": "19937903a9e44eabb9d1b370", + "revision": "9271664a18da44fc92fb98c3", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34766,24 +25565,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 1255.35, - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + "amount": 1255.35 }, - "revision": "a9e5b52510964f71b258b119", + "revision": "d67bf17f959541399c62bd1c", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34798,24 +25585,12 @@ "installment_amount": 41845, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - } + "financial_institution": "ivipcoin" }, - "revision": "067cf9b94fc44489968b6501", + "revision": "3ac3d92fefe24fe0b0a96ca8", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34823,10 +25598,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1696141267349", - "revision": "73c868e5130549c3b870b8f2", + "revision": "5225da0e82d9447091e24a12", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34834,10 +25609,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "744bf9030fcc456b84844b48", + "revision": "f9c1e08915a442dbbaddfa81", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34853,18 +25628,9 @@ "total_amount": 40589.65, "id": "1696141267349", "history_id": "1696141267349", - "date_created": { - "type": 6, - "value": 1701459383491 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383491 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383491 - }, + "date_created": "2023-10-01T06:21:07.349Z", + "date_last_updated": "2023-10-03T00:32:36.722Z", + "date_of_expiration": "2023-10-01T06:21:07.349Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -34876,10 +25642,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "1303bb458c12436c963f1bb6", + "revision": "cd6fe54721714b06a3d6b7c8", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34887,10 +25653,10 @@ "content": { "type": "STRING", "value": "Saque de 40.589,65 IVIP para a carteira 0x8A01aF53Ea3A83B5f89C029a625Bc2B840aa0B17", - "revision": "674920ee53f54d6096fb8aa9", + "revision": "4a47f8f1ed3e4a70af6e824c", "revision_nr": 1, - "created": 1701459383491, - "modified": 1701459383491 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34900,24 +25666,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 1255.35, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "amount": 1255.35 }, - "revision": "62b56228491c44849247a058", + "revision": "e08eb125e4414b2ba5329123", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34932,24 +25686,12 @@ "installment_amount": 41845, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "financial_institution": "ivipcoin" }, - "revision": "6464181c80784c3789816018", + "revision": "4e47debe23a8420ca426868f", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34957,10 +25699,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1696142296852", - "revision": "d9dce92435084c25bde40c02", + "revision": "fcaf1279e4a84a9f8673c8c6", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34968,10 +25710,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "4a90e398ed35480c90e177e3", + "revision": "ee2be7f86779410abd577257", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -34987,18 +25729,9 @@ "total_amount": 40589.65, "id": "1696142296852", "history_id": "1696142296852", - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - }, + "date_created": "2023-10-01T06:38:16.852Z", + "date_last_updated": "2023-10-03T00:46:17.233Z", + "date_of_expiration": "2023-10-01T06:38:16.852Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -35009,10 +25742,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "bfed252a9dfc439aa5acfb89", + "revision": "8d2a7ebdeb3848c9bfef8ec1", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35020,10 +25753,10 @@ "content": { "type": "STRING", "value": "Saque de 40.589,65 IVIP para a carteira 0x8A01aF53Ea3A83B5f89C029a625Bc2B840aa0B17", - "revision": "d1b2dfe8dddf4d0ab85e31f9", + "revision": "e5f46784589140219cd34f11", "revision_nr": 1, - "created": 1701459383494, - "modified": 1701459383494 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35031,10 +25764,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "16c4460cc3b04e3eb83d1e24", + "revision": "c8a6a8a387e74a21b12ffd9d", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35043,24 +25776,12 @@ "type": "OBJECT", "value": { "dateValidity": 1690386695913, - "balancesModificacao": "2023-10-14T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "balancesModificacao": "2023-10-14T03:00:00.000Z" }, - "revision": "f3b57554cd7b40998c27e882", + "revision": "8046cd2e8d7c490880cda9ce", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35068,10 +25789,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d2b626391fb04cd2b375fd92", + "revision": "948ab279ad7642a3a576378c", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35079,10 +25800,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9fddc3857952473794a4f0a7", + "revision": "d894cde42f5848b3beaa03aa", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35093,24 +25814,12 @@ "dataModificacao": 1678135581348, "dateValidity": 1678166670994, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "currencyType": "USD" }, - "revision": "c6685f8558cb4418ba03edce", + "revision": "192aa1010d0d4dcda9b88ee6", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35118,10 +25827,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1f5984638b2b4f7091ed655a", + "revision": "e1d700e7f4a84115934e3802", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35129,10 +25838,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f538f5dfb003453eb99d94eb", + "revision": "c1077660eafe4d75a44c1fd4", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35143,24 +25852,12 @@ "dataModificacao": 1684104956115, "dateValidity": 1684104956115, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "currencyType": "USD" }, - "revision": "d1d0f6a998b54f2da1f725de", + "revision": "ad92964cf48f40d6bece0a13", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35168,10 +25865,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7a65d2510d3044e992f3117d", + "revision": "15aa849f45e344bf88637d5b", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35179,10 +25876,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a4a1747558df42d2bdce2e7e", + "revision": "117f27633b76452f9a4c26b6", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35192,24 +25889,12 @@ "value": { "dataModificacao": 1696478671880, "dateValidity": 1696478671929, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "currencyType": "USD" }, - "revision": "e11bf83c3d194304b3448f9e", + "revision": "0cac0cdb61c1449da32a17d3", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35219,24 +25904,12 @@ "value": { "available": "5000843.00000000", "symbol": "IVIP", - "value": 622.94, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "value": 622.94 }, - "revision": "3aaf1e35ffa04be385af8ec4", + "revision": "5eb458eaa8de4d6b872266a7", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35244,10 +25917,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e4742f9c6a2d4587ad00217e", + "revision": "875aea5a67fa44ebac2cf1a1", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35255,24 +25928,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "costs": [] }, - "revision": "f0549b2f44834573b192dd9c", + "revision": "3a786e0f68da4dd6a73bb35c", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35287,18 +25948,9 @@ "total_amount": 100, "history_id": 1688955478238, "id": 1688955478238, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - }, + "date_created": "2023-07-10T02:17:58.238Z", + "date_last_updated": "2023-07-10T15:24:43.693Z", + "date_of_expiration": "2023-08-09T02:17:58.238Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -35308,10 +25960,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b35a3464c21246f398ea9c48", + "revision": "6bff6d6c61d7495aafed2c8c", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35319,10 +25971,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0329.8017.0462.5356-52", - "revision": "37894ced86b54bae81fa196b", + "revision": "eeaa5eeaca294cecacf66c5a", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509540, + "modified": 1701463509540 } }, { @@ -35340,24 +25992,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "costs": [] }, - "revision": "f659a99dbf3b4de0a2a9382e", + "revision": "def0f10372b248d4a82fdff0", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35373,18 +26013,9 @@ "original_amount": 145670, "total_amount": 145670, "id": 1689002980878, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - }, + "date_created": "2023-07-10T15:29:40.878Z", + "date_last_updated": "2023-07-10T15:29:40.878Z", + "date_of_expiration": "2023-07-10T15:29:40.878Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35393,10 +26024,10 @@ "history_id": 1689002980878, "description": "Compra de 145.670,00 IVIP por 100,00 BRL" }, - "revision": "8b97676b717e422f9e8cf3a4", + "revision": "e84af064e08d403eb23eda91", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35405,24 +26036,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-03T23:36:57.742Z", - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + ".val": "2023-09-03T23:36:57.742Z" }, - "revision": "5403fe9bba5a4e5587f1a655", + "revision": "f3ea67a98a10488085993547", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35438,24 +26057,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "costs": [] }, - "revision": "735e5a2652334f87abf18b2e", + "revision": "c66255cd2b3c47b6881885e6", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35463,10 +26070,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691192217742", - "revision": "f9091750198b4e3599690e4a", + "revision": "98fe0a64a6714bf3879e6f16", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35481,14 +26088,8 @@ "total_amount": 356, "id": 1691192217742, "history_id": 1691192217742, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, + "date_created": "2023-08-04T23:36:57.742Z", + "date_last_updated": "2023-08-05T15:26:29.728Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35498,16 +26099,12 @@ "date_approved": "2023-08-05T15:26:29.728Z", "money_release_date": "2023-08-05T15:26:29.728Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "wasDebited": true }, - "revision": "a7be605ee436438aab8c8c30", + "revision": "9e1caae5f14541cabe4241f9", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35515,10 +26112,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 356,00 para a carteira iVip 0329.8017.0462.5356-52", - "revision": "5a7a7d2bedd94595b898aad5", + "revision": "f02f0dbe847d4c9aa616de13", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35534,24 +26131,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "costs": [] }, - "revision": "181334f967b641fd929978de", + "revision": "b8a535a0e6a74c11aa9b6e89", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35559,10 +26144,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691277371847", - "revision": "b1524cefd7774d69ad4efaca", + "revision": "58a715e92c8a429195612599", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35577,18 +26162,9 @@ "total_amount": 505200, "id": 1691277371847, "history_id": 1691277371847, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - }, + "date_created": "2023-08-05T23:16:11.847Z", + "date_last_updated": "2023-08-05T23:16:11.847Z", + "date_of_expiration": "2023-08-05T23:16:11.847Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -35597,10 +26173,10 @@ "description": "Compra de 505.200,00 IVIP por 356,00 BRL", "status_detail": "accredited" }, - "revision": "23227479468a45ffa32da85d", + "revision": "6f15bca0e2c345b1b07c7612", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35609,24 +26185,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-10T00:55:06.900Z", - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + ".val": "2023-09-10T00:55:06.900Z" }, - "revision": "ec27faa8bf934f538f8901aa", + "revision": "9fed4c880c364baf89e7d8b8", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35642,24 +26206,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "costs": [] }, - "revision": "958f119411c4494e91b5b3e2", + "revision": "8491b9f5cc08455fbc8cb70b", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35667,10 +26219,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691715306900", - "revision": "87bb57de588b4c76a1fc961d", + "revision": "a65ff947b0b747609a88f89b", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35685,14 +26237,8 @@ "total_amount": 1800, "id": 1691715306900, "history_id": 1691715306900, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, + "date_created": "2023-08-11T00:55:06.900Z", + "date_last_updated": "2023-08-12T02:30:44.902Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35702,16 +26248,12 @@ "date_approved": "2023-08-12T02:30:44.902Z", "money_release_date": "2023-08-12T02:30:44.902Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "wasDebited": true }, - "revision": "6b16a670136b4451b62f1d7b", + "revision": "8f61e061daf84f56a0766a87", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35719,10 +26261,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.800,00 para a carteira iVip 0329.8017.0462.5356-52", - "revision": "5a4c8c7adf4f41e699c78d7d", + "revision": "1f222b931cc744cf8c2385eb", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35738,24 +26280,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "costs": [] }, - "revision": "8540971e50584654807475b2", + "revision": "a536f6c49a5b4596b7050539", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35763,10 +26293,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691847078457", - "revision": "6c07ca1b9ec44cb886a5aa22", + "revision": "cbbc0b89c1484e0580419469", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35781,18 +26311,9 @@ "total_amount": 3402797, "id": 1691847078457, "history_id": 1691847078457, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - }, + "date_created": "2023-08-12T13:31:18.457Z", + "date_last_updated": "2023-08-12T13:31:18.457Z", + "date_of_expiration": "2023-08-12T13:31:18.457Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -35801,10 +26322,10 @@ "description": "Compra de 3.402.797,00 IVIP por 1.800,00 BRL", "status_detail": "accredited" }, - "revision": "67010ba1141f405593245ab4", + "revision": "1e3cffacde074ffb94d4b054", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35813,24 +26334,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-26T00:10:05.865Z", - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + ".val": "2023-10-26T00:10:05.865Z" }, - "revision": "0fca0ce59fdb472faf53abb0", + "revision": "45cd03e7083a401091b36738", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35846,24 +26355,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "costs": [] }, - "revision": "eb81e7f7d08e40f2892e78f8", + "revision": "1fc8f766740c45eba983f464", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35871,10 +26368,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1695687005865", - "revision": "f6248952f572443f8566b23e", + "revision": "fc5edb0b59014d4891de900c", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35890,14 +26387,8 @@ "total_amount": 647176, "id": "1695687005865", "history_id": "1695687005865", - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, + "date_created": "2023-09-26T00:10:05.865Z", + "date_last_updated": "2023-09-26T00:24:38.463Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35907,16 +26398,12 @@ "date_approved": "2023-09-26T00:24:38.463Z", "money_release_date": "2023-09-26T00:24:38.463Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "wasDebited": true }, - "revision": "0bb0e1376294417dbc17d233", + "revision": "f833024e78ec4136856e1b16", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35924,10 +26411,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 647.176,00 IVIP para a carteira iVip 0329.8017.0462.5356-52", - "revision": "becb4294ded746dd9f83c185", + "revision": "843655ef005a443db6804984", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35936,24 +26423,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-27T21:50:32.960Z", - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + ".val": "2023-10-27T21:50:32.960Z" }, - "revision": "3be4df4af38b4058b9034abc", + "revision": "3e16583636b1454caf032bc6", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35969,24 +26444,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "costs": [] }, - "revision": "d90e2eca40644b858c747ddc", + "revision": "dd0f870f58ab4947ac64af72", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -35994,10 +26457,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1695851432961", - "revision": "fb3db1b64469400f89875813", + "revision": "8f3101fcdb15409f98477d25", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -36013,14 +26476,8 @@ "total_amount": 300000, "id": "1695851432961", "history_id": "1695851432961", - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, + "date_created": "2023-09-27T21:50:32.961Z", + "date_last_updated": "2023-09-28T20:48:07.672Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -36030,16 +26487,12 @@ "date_approved": "2023-09-28T20:48:07.672Z", "money_release_date": "2023-09-28T20:48:07.672Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "wasDebited": true }, - "revision": "5a1e2260406f4c158a943f39", + "revision": "3af2107808a542e4a16febda", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -36047,10 +26500,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 300.000,00 IVIP para a carteira iVip 0329.8017.0462.5356-52", - "revision": "e02a962adef941159aa65fd9", + "revision": "15388076aa794732b6919dc4", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -36058,10 +26511,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "320843df5e254fea8cec6611", + "revision": "83d2fa61b5054908abd9a92a", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -36069,10 +26522,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c343bd78b33d4819ac026f30", + "revision": "600920cd78fc4122baafc960", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -36081,24 +26534,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "limitUsed": 0 }, - "revision": "f5c4649d137e446fb70db065", + "revision": "beb394b0a4314a5bb3cb805e", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -36110,24 +26551,12 @@ "dateValidity": 1688955354063, "totalValue": 20.42, "currencyType": "USD", - "balancesModificacao": "2023-10-10T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "balancesModificacao": "2023-10-10T03:00:00.000Z" }, - "revision": "3a1c0a4d820a431bb4f0e823", + "revision": "2d8e10d18f46467380e14526", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -36137,24 +26566,12 @@ "value": { "available": "62.42718182", "symbol": "BRL", - "value": 12.2, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "value": 12.2 }, - "revision": "0f7cfd1c176c48bc871562d4", + "revision": "0dbf2c10a3ce4c8594ed7f62", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -36164,24 +26581,12 @@ "value": { "available": "302069023.00000000", "symbol": "IVIP", - "value": 32205.5, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "value": 32205.5 }, - "revision": "44b32eff1d0d461aa9f72cc9", + "revision": "e2c625ae067c41748a6d0b6d", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -36189,10 +26594,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d5610451a3f84e11b30c7303", + "revision": "6a49df19224a4173a997ff6b", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -36200,24 +26605,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "costs": [] }, - "revision": "9d5b4d862480459f822f2f0e", + "revision": "136c7bb45380471c88b79926", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -36232,18 +26625,9 @@ "total_amount": 5510, "history_id": 1677785461525, "id": 1677785461525, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - }, + "date_created": "2023-03-02T19:31:01.525Z", + "date_last_updated": "2023-03-02T21:53:04.457Z", + "date_of_expiration": "2023-04-01T19:31:01.525Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -36253,10 +26637,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3ccc74f83c154e40a094339c", + "revision": "a996bc60d15e42bfb4490aae", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -36264,10 +26648,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 5.510,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "f255cfd2e7104fe984bea8ab", + "revision": "07482cbd944c43ef8bc90030", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -36275,24 +26659,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "costs": [] }, - "revision": "ede63b40dc8b410abc9eafc8", + "revision": "55d5cb44a6e44c27af392f2e", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -36307,18 +26679,9 @@ "total_amount": 6500, "history_id": 1677785378675, "id": 1677785378675, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - }, + "date_created": "2023-03-02T19:29:38.675Z", + "date_last_updated": "2023-03-02T21:54:03.971Z", + "date_of_expiration": "2023-04-01T19:29:38.675Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -36328,10 +26691,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "420fdfd9954c46dc9a4ecf2e", + "revision": "689d02f15ca84c889612a60e", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -36339,10 +26702,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 6.500,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "94bb7e264fb84c1bb6bfd210", + "revision": "a660057997424d0c968c3d18", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509541, + "modified": 1701463509541 } }, { @@ -36350,24 +26713,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "costs": [] }, - "revision": "2c8ae93cb7f844899daa0754", + "revision": "17a298a6697044c892325a19", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509542, + "modified": 1701463509542 } }, { @@ -36382,18 +26733,9 @@ "total_amount": 7700, "history_id": 1677785194938, "id": 1677785194938, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - }, + "date_created": "2023-03-02T19:26:34.938Z", + "date_last_updated": "2023-03-02T21:54:58.990Z", + "date_of_expiration": "2023-04-01T19:26:34.938Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -36403,10 +26745,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "8a3b082f4d804140a1ad1860", + "revision": "1f2694b549d7487ab224cc36", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509542, + "modified": 1701463509542 } }, { @@ -36414,10 +26756,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 7.700,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "8a5825aeeceb4aaf911a2486", + "revision": "1135661b6de144908dcb5361", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509542, + "modified": 1701463509542 } }, { @@ -36425,24 +26767,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "costs": [] }, - "revision": "995c095f025c43ed9c6449cc", + "revision": "9727ba151e3e489fb6470666", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509542, + "modified": 1701463509542 } }, { @@ -36457,18 +26787,9 @@ "total_amount": 9900, "history_id": 1677748547608, "id": 1677748547608, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - }, + "date_created": "2023-03-02T09:15:47.608Z", + "date_last_updated": "2023-03-02T12:35:22.227Z", + "date_of_expiration": "2023-04-01T09:15:47.608Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -36478,10 +26799,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "65ca657b47bf4f7dba643bf2", + "revision": "f97071913e114d3aaa25590f", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509542, + "modified": 1701463509542 } }, { @@ -36489,10 +26810,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 9.900,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "3f2e075a42764b8e998d20a1", + "revision": "435d6fdfc5084a5cafda7736", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509542, + "modified": 1701463509542 } }, { @@ -36500,24 +26821,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "costs": [] }, - "revision": "055fefedb95949a9ac349cf4", + "revision": "10e0fe366fda4f798eb32079", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509542, + "modified": 1701463509542 } }, { @@ -36532,18 +26841,9 @@ "total_amount": 100, "history_id": 1677748489604, "id": 1677748489604, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - }, + "date_created": "2023-03-02T09:14:49.604Z", + "date_last_updated": "2023-03-02T11:11:15.426Z", + "date_of_expiration": "2023-04-01T09:14:49.604Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -36553,10 +26853,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "515d79951f574806992e856e", + "revision": "cdf765a774bb483d910ae2c1", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509542, + "modified": 1701463509542 } }, { @@ -36564,10 +26864,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "7aa21c5390514060aa35805b", + "revision": "2c3118d05ac0488287c7f83e", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509542, + "modified": 1701463509542 } }, { @@ -36575,24 +26875,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "costs": [] }, - "revision": "5233ddefb6724828b1ea8fd0", + "revision": "5f6b8d991d314c2b9e47ca79", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509542, + "modified": 1701463509542 } }, { @@ -36607,18 +26895,9 @@ "total_amount": 12000, "history_id": 1678472649293, "id": 1678472649293, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - }, + "date_created": "2023-03-10T18:24:09.293Z", + "date_last_updated": "2023-03-11T12:56:55.180Z", + "date_of_expiration": "2023-04-09T18:24:09.293Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -36628,10 +26907,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ce27dd39ac634081933bec89", + "revision": "61dd1a0107344eb19e740281", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509542, + "modified": 1701463509542 } }, { @@ -36639,10 +26918,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 12.000,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "f773faed9cb245659ef6d276", + "revision": "18c22f6777d8409692c3e28a", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509542, + "modified": 1701463509542 } }, { @@ -36660,24 +26939,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - } + "costs": [] }, - "revision": "78328de7d26647b0a5fbdc68", + "revision": "b982dcaabb0046aab2f06851", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -36693,18 +26960,9 @@ "original_amount": 71460340, "total_amount": 71460340, "id": 1678153842542, - "date_created": { - "type": 6, - "value": 1701459383495 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383495 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383495 - }, + "date_created": "2023-03-07T01:50:42.542Z", + "date_last_updated": "2023-03-07T01:50:42.542Z", + "date_of_expiration": "2023-03-07T01:50:42.542Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -36713,10 +26971,10 @@ "history_id": 1678153842542, "description": "Compra de 71460340 IVIP por 10000 BRL" }, - "revision": "773118887b6245ae8fdd71ec", + "revision": "ee03f4cd89a9431da5f9c619", "revision_nr": 1, - "created": 1701459383495, - "modified": 1701459383495 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -36734,24 +26992,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "costs": [] }, - "revision": "4e5dfc52e7e94804bedbe854", + "revision": "294009d1eae64e1389b4a495", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -36767,18 +27013,9 @@ "original_amount": 71460340, "total_amount": 71460340, "id": 1678153902578, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-03-07T01:51:42.578Z", + "date_last_updated": "2023-03-07T01:51:42.578Z", + "date_of_expiration": "2023-03-07T01:51:42.578Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -36787,10 +27024,10 @@ "history_id": 1678153902578, "description": "Compra de 71460340 IVIP por 10000 BRL" }, - "revision": "5e74e1f70e534e3a86741a89", + "revision": "a96822722c0647c0a21fe96a", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -36800,24 +27037,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 19.8, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "amount": 19.8 }, - "revision": "37461b47f9ee425eb111171f", + "revision": "28d876733a0f44db9c416ea7", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -36825,10 +27050,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f790605154e948b5aa944fbd", + "revision": "67c3cadf12d44902ad0c689a", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -36836,24 +27061,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "zBCfpF dcGeyDOq lplNs", - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "7febfeb73a0d4899ba400669", + "revision": "4691aa9fefed4542ae6f19ea", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -36861,10 +27074,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6e79b2080cb540e6b58821c5", + "revision": "3e8e0027a7374a39b1a42852", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -36876,24 +27089,12 @@ "net_received_amount": 0, "total_paid_amount": 2019.8, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "installment_amount": 0 }, - "revision": "c0a84c3b4d584928b46f3414", + "revision": "bfbb548988c24017824d1585", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -36901,10 +27102,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dXYrlNhAGUO1A+9+lduAQCBlb9UnugUAS6/hhmO7rto/uW1F/7fofXaPR0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v7z2jZf/c/f9b8/6Pm+v373+PTPB98+fb6x/brlrx/73x/0zKClpaWlpaWlpaWlpT1E2++PvT/kF6o9n/6Qladfz+M+8OV7GPcvKKtoaWlpaWlpaWlpaWkP0E4BZPm0l2P8+nGKBKc/u8eYV7hlEbjS0tLS0tLS0tLS0tLSXiVNN9oiKdhLdu8eQI6S7CtGWlpaWlpaWlpaWlpa2hDNpfivZO1S0eQj5Fz+kwo4aWlpaWlpaWlpaWlpj9UmfMnk1chy2TVXGuF2mbxN8SctLS0tLS0tLS0tLe0R2lba2v6Vf9qqu46WlpaWlpaWlpaWlvbb2nxNYyDH/PeLGSa13y1Hm6MkD7cWWlpaWlpaWlpaWlrab2tTC9v0pLHtfKtVl2VySTrulNgbq2QfLS0tLS0tLS0tLS3tt7VT+9u9Z21KANa9a2lw5P2h+3rOZTw55rJNWlpaWlpaWlpaWlraL2una3pFPtD1nEOSTpWm/1/PBODIn77EvLS0tLS0tLS0tLS0tN/TjpJ+S6uwU4ZuemOBLq5pl/b+aLS0tLS0tLS0tLS0tF/XpldsSiqn371WTpaodNqbndrkxm6mCi0tLS0tLS0tLS0t7de09xCxlfkiOcas8d9UL5mb49rmHblrjpaWlpaWlpaWlpaW9gBtCd/aCrCINpdFkymyXJ6lfHOdlpaWlpaWlpaWlpb2JO2Uq/vpaMi7dpRRk6X+spcItOzIbj/JRdLS0tLS0tLS0tLS0n5W2zZJvNwNV2PC+//qCoA0LjLHmLS0tLS0tLS0tLS0tEdpy3jHviqGHOXdZb1aiglb0Kap/qOlglBaWlpaWlpaWlpaWtova6d7U05vSZkiwU0UeZUD5RGS/aXqkpaWlpaWlpaWlpaW9nva0v6WEntXHiGZai03C9RqKPm2ho2WlpaWlpaWlpaWlvYcbc/LrsuTrpziy5NGaqBZTt/L9P+XqktaWlpaWlpaWlpaWtqvaROl9MUtE3ujRKDpAUlR8GlYCi0tLS0tLS0tLS0t7QHagppCv0cRZh4IWfdXp1O93XKVp9DS0tLS0tLS0tLS0p6jDRm1lpNuNSW31KaCy1J1uSv+pKWlpaWlpaWlpaWlPUJb/qrnOftTyLlcXZ3mlZTxk/WhZZsALS0tLS0tLS0tLS3tUdo8lqTns2wqMXc9dSlIXQ75p6WlpaWlpaWlpaWlPVN7ldAvxXUTr3S0PUb2/3SZWzkGLS0tLS0tLS0tLS3tOdpR+t1K91oLG9Pa6hVVkaozU/RaZpjQ0tLS0tLS0tLS0tIeoM39blO95DT3Mc0rqTNHSjVlz5Wd6b20tLS0tLS0tLS0tLQnaWurW3ltK0FlPlp6XsrzLSLGPMOElpaWlpaWlpaWlpb229rlfJGUtSvk1Bw3GVvJB26a6HqYk0JLS0tLS0tLS0tLS/t1ba2cXObl7u6pOS5FgmlSZMtVnMuIlpaWlpaWlpaWlpaW9vvaRdZuChYnVA4ql0nB6S+ubbT5NqWElpaWlpaWlpaWlpb2e9rUx5YKJDcx4Xj+r+cg9R5A1igyrxSgpaWlpaWlpaWlpaX9traUWS6u6SGJvOyaW+YDN++jpaWlpaWlpaWlpaU9RZvLLBfvyd1wo0DTerX0jlLFOWIXHi0tLS0tLS0tLS0t7ee1U/ptOX2kLFVLEWjfxKebYZJtnQCkpaWlpaWlpaWlpaU9QFvjxFD9WB/c37J7m0g1zUT5YRRJS0tLS0tLS0tLS0v7Ne1bH1vLYyCXJ97XX07FlfngtLS0tLS0tLS0tLS052jHZgt2nvFYX5bSedNxN+f7napLWlpaWlpaWlpaWlrar2lLDq5WRG4Sdi1QFrwSWdaqy5JQpKWlpaWlpaWlpaWlPUVbCh/rWaZPl0WTG/x0Xw8ZxBEHo9DS0tLS0tLS0tLS0h6kTbFeKZqclq/1cJb2tndtuWQ7jEOhpaWlpaWlpaWlpaX9vHafb0sz+jdh6JUnkkxnfqv7pKWlpaWlpaWlpaWlPUWbSyUXxZClYa6H7F6NRcuXcYU838gtdrS0tLS0tLS0tLS0tF/X3tvfphLIGuaVAsnJvZtD8tYN18PbaGlpaWlpaWlpaWlpz9PmcZFpFfbIQyLvb6y35GTfFcLQTktLS0tLS0tLS0tLe5J2CuRSgWTuWUvNbHXcSG62u2KFZfu9GlFaWlpaWlpaWlpaWtr/vbaQW3hSihh7WAEwvbFtppQU9/jJlBJaWlpaWlpaWlpaWtrPapcj9q9V7Nie/XPXKgJdTvrvscIyNerR0tLS0tLS0tLS0tIeoJ0qLFtegJ0H/9fRIiWdVysxy1VThrS0tLS0tLS0tLS0tEdoy8vGWxHmstby3ttW037LuDMFrqsokpaWlpaWlpaWlpaW9rPaVvZX50kj16qjrb0FhjmhuBuHQktLS0tLS0tLS0tLe4Q2XVMSLy1Gm+6bQs7i6XkzdgpX36suaWlpaWlpaWlpaWlpP6XNoV/tXiuVk6lYsxftJoqsYWM5KS0tLS0tLS0tLS0t7RHangPItGMtzYxMUWRpmOur4srfjiJpaWlpaWlpaWlpaWk/qU2RYH5F3aKW4skQCbbN19Jyix0tLS0tLS0tLS0tLe3B2mWn2uO+zVl2Ryux429m92hpaWlpaWlpaWlpaU/Rpictt6ON5xrtUU41FVwuZ0a+zFShpaWlpaWlpaWlpaX9pDbhSw1lQtUGt2Vx5XL3deFdtLS0tLS0tLS0tLS0Z2lr4ePkya1u1zNX11bbsqd03iizJZfrtmlpaWlpaWlpaWlpaY/Q/vcvWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWtp/TPsHWTbkPnmLk88AAAAASUVORK5CYII=", - "revision": "58011245f54b412e9d1afa36", + "revision": "48c5dc946ede4aa1a9aa9511", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -36912,10 +27113,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654072019.805802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13128133836304AC44", - "revision": "4e063e0eb80d43ca8bfb53a1", + "revision": "23a9656d02044cbf89701830", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -36923,10 +27124,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1312813383/ticket?caller_id=1310149122&hash=8e6c1cd1-3025-43b0-8279-4a0f2e9a7e7b", - "revision": "027d4cbff45042d9b2c5e66a", + "revision": "12c9379963394e14a7a7201e", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -36934,10 +27135,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "2c4d27b9fc29439584516835", + "revision": "201b7dc7d791468f8a320a54", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -36952,28 +27153,19 @@ "total_amount": 2019.8, "history_id": 1677379374499, "id": 1312813383, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-02-25T22:42:55.196-04:00", + "date_last_updated": "2023-02-25T22:42:55.196-04:00", + "date_of_expiration": "2023-02-26T22:42:54.972-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "d4eedb6cbf064c6d8ef988b0", + "revision": "7ddc885316f44e5bad78c994", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -36981,10 +27173,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "6242c2006b584292a52942bf", + "revision": "8ecffc100c094068b9a6878e", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -36994,24 +27186,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 19.8, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "amount": 19.8 }, - "revision": "a2ece0f91ccc4568891d5e5f", + "revision": "0019e9b9ca15466cae56cf47", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37019,10 +27199,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8f0d3ade1522401f9568798e", + "revision": "6fed2a044722493e9627135a", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37030,24 +27210,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "zBCfpF dcGeyDOq lplNs", - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "1a80d3b734474d53a8c0b1e4", + "revision": "217e1eb45d7346d7944dad19", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37055,10 +27223,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "01f0453eb9e44c3ea8ec3f75", + "revision": "983c002e829c42b38e901abb", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37070,24 +27238,12 @@ "net_received_amount": 0, "total_paid_amount": 2019.8, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "installment_amount": 0 }, - "revision": "d76172e068c74f00890a44f2", + "revision": "5a4d55049ab946f78c6633cd", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37095,10 +27251,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654072019.805802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13128133936304E9E4", - "revision": "941575f65a0e41a88b694466", + "revision": "b20f66565c6244f2be25a459", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37106,10 +27262,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1312813393/ticket?caller_id=1310149122&hash=ba695c70-a0ed-49a1-b87f-05224cd38f84", - "revision": "8e5e520575c640439b5a592d", + "revision": "23bb1b35afa242a89d16cbf8", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37117,10 +27273,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2UlEQVR42u3dQY7kNgwFUN3A97+lb6BggmRSFj/l7mCAZOznRaHRLstPtSNIkWP+Rtc5aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXas1/Hjf8fPG0f+3o9F1lX+/N9ff5U3Xh47f658/nxlZdDS0tLS0tLS0tLS0r5Ee3wu+7nI36/9fH7xnGH1ed3uGCPfWLSJQUtLS0tLS0tLS0tL+xbtEkCWu0fZxj+PLZHg8thnjHmJNpffYcOgpaWlpaWlpaWlpaV9qbak6Wo6L7t3WcD0E9DS0tLS0tLS0tLS0tLGaC7FfyVrl4omLyFn+7Hk/mhpaWlpaWlpaWlpad+tTfhUUnlXQ9kEn4Uywsr/ukaUlpaWlpaWlpaWlpb2d9fW9iD/yccXu5TQ0tLS0tLS0tLS0tI+TZuv1IzkyHfbKHIJEZfeJDnkzBZaWlpaWlpaWlpaWtpna9MRtmWlM9Rk1n4liyc1Mkm7X57YZvdoaWlpaWlpaWlpaWmfp12Ov32eWZt3c9da1KYR5SjT1tJv00WRtLS0tLS0tLS0tLS0z9Mu1/KKvKF57UMyY+g3UjrvU3bmuzcxLy0tLS0tLS0tLS0t7fO0Z0m/bSZeH+Gxkf9qr+XL+63R0tLS0tLS0tLS0tI+XVumW+9LKpf/LSHnGXpLpq/UKs5lDsBNr0taWlpaWlpaWlpaWtoHaZdsXErTlRjzNv7Lh+PG5h351BwtLS0tLS0tLS0tLe0LtCV8Gzmn10abbdFk6j7S7qX8cgctLS0tLS0tLS0tLe1LtGnY9T7ZV86xLeS2/vIoEWiZkT1us3u0tLS0tLS0tLS0tLTP06a4bpbm/fk0XH32868jr/K5/AxdJgctLS0tLS0tLS0tLe27tDVDt5l/dnY7SAfcRkgZnlfjgj9HKgilpaWlpaWlpaWlpaV9tnbeDbZeCimvKbvm7pHnuKUCznLi7kvZPVpaWlpaWlpaWlpa2qdo0/G3VE051ms5x7bvzD9LZLnkCMuPRktLS0tLS0tLS0tL+zLtcY0E0yjsuqFytm12x+madF4aELCtuqSlpaWlpaWlpaWlpX2etlBmeL5N7C2DslM8uVt0KcJMj9HS0tLS0tLS0tLS0j5dW1AjlF4eoTCzxHqxF2QJNNuv1FVoaWlpaWlpaWlpaWnfo81R33Hdy7KNowxVWyip4LJUXbbFn5OWlpaWlpaWlpaWlvYl2vJUUwdZdtCMrk79Ssp8tnbRmmmkpaWlpaWlpaWlpaV9hTYda8tH4moqsDSdPMIbl/USvmluQktLS0tLS0tLS0tL+ybtLKFfiutK1eWZY8z0lUVWkn3n987u0dLS0tLS0tLS0tLSPkJbh6CV02sjTEwb3SuqIs9Yq9Fr6WFCS0tLS0tLS0tLS0v7Am0+77bUS6YizHP0V66mPLpEYX0vLS0tLS0tLS0tLS3tm7SjlFmW144SVOatpfVSk/8mYsw9TGhpaWlpaWlpaWlpaZ+tbfuLpKxdGmK9RIzFOK75wGWBEV5+fDkXSUtLS0tLS0tLS0tL+whtE9e1ebny5Sb3lztFjlzF2Ua0tLS0tLS0tLS0tLS0z9emuG6ErpBLJeaxqb/MubrUnPLcFlzS0tLS0tLS0tLS0tK+R9u0d0z9HNuOJDkpOMP+moA0jxSgpaWlpaWlpaWlpaV9trZQbhuPlDLLVFd5loC0vOPYvI2WlpaWlpaWlpaWlvY92px5a96zRJZ5bNoyB2DmU25L6WVanpaWlpaWlpaWlpaW9mXaUlw5b5qHNKWXy7Mp93cp4EzlnX3VJS0tLS0tLS0tLS0t7UO1bTx5hADycnAth5y7ULJNFH45iqSlpaWlpaWlpaWlpX2a9u4c29g0hEzXvv4ytSUpRZi0tLS0tLS0tLS0tLTv0Z6bKdipXWR6WUrnLdvd7O87VZe0tLS0tLS0tLS0tLRP05YcXK2ILMvNsKtxxyuRZa26LAlFWlpaWlpaWlpaWlrat2hL4WNbf3lu+khm6BlCztrLP2UQaWlpaWlpaWlpaWlp36hNsV4pmqzD18pext3ctXbIdmiHQktLS0tLS0tLS0tL+3htzrelyHJ289mOLrKc224mcxOa0tLS0tLS0tLS0tLSvkKbSyWbYshyYO62038us5whz3fmI3a0tLS0tLS0tLS0tLRP134ef1tKIGuYVwokZzfYuvkxNqfhjvA2WlpaWlpaWlpaWlraV2jTELQ0VO3Ig9HSAOx9h5OS7KtBZR9F0tLS0tLS0tLS0tLSPk275OU+I8ua2EtH51KaLnU4yT3/Z5i0PWlpaWlpaWlpaWlpad+lPa8tSEbu219SfOmA21KnOTZdSjaLHrS0tLS0tLS0tLS0tO/SznCibamrTLHjuJ6fm9cayhFyf6PI2n4lXdUlLS0tLS0tLS0tLS3tY7XjWmaZmow0d/fdI9Nelh1sUoa0tLS0tLS0tLS0tLQv0JaX1b4hSxJvceezbaPEiTnubALXLoqkpaWlpaWlpaWlpaV9rHaU+dW508jsTrSNu8AwJxTP7omDlpaWlpaWlpaWlpb2Jdp0LUm83Idk5mzc58aPzSm3sujsxgLQ0tLS0tLS0tLS0tI+W5tDv3TKbamcnGVDS8R4F0XWsLHslJaWlpaWlpaWlpaW9hXaIwSQ+4+lpHJXolnC0JF7Rn45iqSlpaWlpaWlpaWlpX2kdlMlWXtB5raSlzA0RIIj/yxtCHvQ0tLS0tLS0tLS0tK+XduulCh3Hzv8t7N7tLS0tLS0tLS0tLS0L9C2K51rhNcPWistKec1idf0jLzpqUJLS0tLS0tLS0tLS/tIbcKXGsqEqgfc2uLKdvZ14U1aWlpaWlpaWlpaWtp3aWsSb/Hko27zmqsb3bTsXdVlSgXeVF3S0tLS0tLS0tLS0tI+Tfv/v2hpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpf5n2D0v667pa5ajGAAAAAElFTkSuQmCC", - "revision": "90290caa72a54af3ad2d53cc", + "revision": "2ae4aadaa8bc434f9e427597", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37128,10 +27284,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "4829ed193881426c9c8c07a4", + "revision": "bdd19f99ce454cb08dc7e4e3", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37146,28 +27302,19 @@ "total_amount": 2019.8, "history_id": 1677379588878, "id": 1312813393, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-02-25T22:46:29.568-04:00", + "date_last_updated": "2023-02-25T22:46:29.568-04:00", + "date_of_expiration": "2023-02-26T22:46:29.346-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "7f568a2c70d64123984cb9dc", + "revision": "faf44c30a47b4c08ab4dbd11", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37175,10 +27322,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "e2d9cb2da0074d00a802da68", + "revision": "3f97aaed4fee47589a657bc9", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37196,24 +27343,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "costs": [] }, - "revision": "4896c826a35a4b378ab80837", + "revision": "1efa82df63764ef0835f04a7", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37229,18 +27364,9 @@ "original_amount": 126385600, "total_amount": 126385600, "id": 1679266944717, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-03-19T23:02:24.717Z", + "date_last_updated": "2023-03-19T23:02:24.717Z", + "date_of_expiration": "2023-03-19T23:02:24.717Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37249,10 +27375,10 @@ "history_id": 1679266944717, "description": "Compra de 126385600 IVIP por 21710 BRL" }, - "revision": "777a60b38b014f54ba8bda44", + "revision": "32c82bb2cc984e7eb84bdc65", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37262,24 +27388,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 51.1, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "amount": 51.1 }, - "revision": "fae47540b2f34cc2b9c4befe", + "revision": "48d1c83d7c69422b9d9d4409", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37287,10 +27401,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "75c028da218449cb8bdc76cf", + "revision": "a40dd46b316f4929ae2247d8", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37298,10 +27412,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e3cfcb291b764d8f982cfab2", + "revision": "72bf1069aad7408cb98635dd", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37316,28 +27430,19 @@ "total_amount": 2606.1, "history_id": 1679852406395, "id": 1679852406395, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-03-26T17:40:06.395Z", + "date_last_updated": "2023-03-26T17:40:06.395Z", + "date_of_expiration": "2023-04-25T17:40:06.395Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "9e0ca3c18bec4fc691db3476", + "revision": "880e96e41e1345b89ffd7474", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37345,10 +27450,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.555,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.606,10", - "revision": "05b55ec3ade44217aaa609c2", + "revision": "e36a46e2b211464099146c32", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37366,24 +27471,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "costs": [] }, - "revision": "9c542c5e8ebe44a0ad29076d", + "revision": "dacd037c58474e3a87814118", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37399,18 +27492,9 @@ "original_amount": 13606977, "total_amount": 13606977, "id": 1679872071598, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-03-26T23:07:51.598Z", + "date_last_updated": "2023-03-26T23:07:51.598Z", + "date_of_expiration": "2023-03-26T23:07:51.598Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37419,10 +27503,10 @@ "history_id": 1679872071598, "description": "Compra de 13.606.977,00 IVIP por 2.555,00 BRL" }, - "revision": "888ffc20dd214fedb92147b5", + "revision": "e869b0d5e2724e98a847344c", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37432,24 +27516,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 52.2, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "amount": 52.2 }, - "revision": "8be06822ee214860a1fd96e7", + "revision": "6c0c403849814c8297793945", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37457,10 +27529,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "844b6b9374c445c1b7d9c624", + "revision": "b9d14edb64204578b8ae3ff3", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37468,10 +27540,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "69ea0ea082d34d1b8089313d", + "revision": "33bf0faf2114458d9fe45c97", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37486,28 +27558,19 @@ "total_amount": 2662.2, "history_id": 1682964262250, "id": 1682964262250, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-05-01T18:04:22.250Z", + "date_last_updated": "2023-05-01T18:04:22.250Z", + "date_of_expiration": "2023-05-31T18:04:22.250Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "adc484fe9cf14ae3b0a14b42", + "revision": "37a26a82159344b3b51009e9", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37515,10 +27578,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.662,20", - "revision": "70082ebadc244a148f7f2674", + "revision": "d4ce5843bc024021941ba44b", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37526,24 +27589,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "costs": [] }, - "revision": "ccc93fa7b8034dfb8f27dc62", + "revision": "02318535d59c48bb8be06c63", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37558,18 +27609,9 @@ "total_amount": 2610, "history_id": 1682964678725, "id": 1682964678725, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-05-01T18:11:18.725Z", + "date_last_updated": "2023-05-01T18:19:36.565Z", + "date_of_expiration": "2023-05-31T18:11:18.725Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -37579,10 +27621,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "bf3acd08f7d04257815eaa8e", + "revision": "8330f145023d47ffa1ad27ce", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37590,10 +27632,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "5bd4b59b782a462380b16b70", + "revision": "25563e6d48c54fc38fb330b6", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37613,24 +27655,12 @@ "installment_amount": 2606.1, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "costs": [] }, - "revision": "ce08aa84a7644dd1a1ca214c", + "revision": "d61bf219666b48f3b8d08892", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37647,18 +27677,9 @@ "total_amount": 2606.1, "id": 1682965648718, "contract_id": "1679852406395", - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-05-01T18:27:28.718Z", + "date_last_updated": "2023-05-01T18:27:28.718Z", + "date_of_expiration": "2023-05-01T18:27:28.718Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -37666,10 +27687,10 @@ "currency_id": "BRL", "history_id": 1682965648718 }, - "revision": "2748035b126e43e88c11cbce", + "revision": "61ffcf0e27a14c77909d9949", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37677,10 +27698,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 1 no valor de 2.606,10 BRL referente ao contrato 1679852406395", - "revision": "5852d51e2f724bbf9988321e", + "revision": "312186f2871c4b95955f22b7", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509544, + "modified": 1701463509544 } }, { @@ -37688,24 +27709,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "costs": [] }, - "revision": "29e0eb3b5e3a4faf9fc02624", + "revision": "75760db9f9e94d74915349af", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -37720,18 +27729,9 @@ "total_amount": 50, "history_id": 1683077498849, "id": 1683077498849, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-05-03T01:31:38.849Z", + "date_last_updated": "2023-05-03T01:44:35.310Z", + "date_of_expiration": "2023-06-02T01:31:38.849Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -37741,10 +27741,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b7bda1f564324905acfe8029", + "revision": "780e04109f3d4356829c0493", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -37752,10 +27752,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "00723265b543403db4ea652c", + "revision": "67f4994b76834f85855279d5", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -37775,24 +27775,12 @@ "installment_amount": 2662.2, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "costs": [] }, - "revision": "d81b3dbdc831446a9ca55444", + "revision": "290697242aa74398b2b00952", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -37809,18 +27797,9 @@ "total_amount": 2662.2, "id": 1683078471570, "contract_id": "1682964262250", - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-05-03T01:47:51.570Z", + "date_last_updated": "2023-05-03T01:47:51.570Z", + "date_of_expiration": "2023-05-03T01:47:51.570Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -37828,10 +27807,10 @@ "currency_id": "BRL", "history_id": 1683078471570 }, - "revision": "6ebc77c4502a4c54a86e21b0", + "revision": "cefe2c5b591b431e921b2feb", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -37839,10 +27818,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 1 no valor de 2.662,20 BRL referente ao contrato 1682964262250", - "revision": "d58f4b79cc2043a781466bd0", + "revision": "4ea28aeb7055421d9d630669", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -37852,24 +27831,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "amount": 3300 }, - "revision": "69cf5083a2894895b311b83f", + "revision": "e40be3d3edcb482d85348002", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -37877,10 +27844,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1d24218de0424e18954c77c9", + "revision": "3a5653663afa42e9a19639eb", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -37888,10 +27855,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "aa5cc52ed37644f3927fef5a", + "revision": "7752eb5d54c34d72890e3b37", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -37906,28 +27873,19 @@ "total_amount": 13300, "history_id": 1683078539834, "id": 1683078539834, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-05-03T01:48:59.834Z", + "date_last_updated": "2023-05-03T01:48:59.834Z", + "date_of_expiration": "2023-06-02T01:48:59.834Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "3656fea1b9d94b47a91bf03d", + "revision": "ebdc4a075032416f8f5dca5f", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -37935,10 +27893,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "3b29db8a6d5a4af382962a19", + "revision": "85e2ede8cdd04cd099ead6bf", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -37956,24 +27914,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "costs": [] }, - "revision": "d8a63a2998a641908f71e85f", + "revision": "beb43c27aafb4e66addec1e1", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -37989,18 +27935,9 @@ "original_amount": 54049325, "total_amount": 54049325, "id": 1684018958577, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-05-13T23:02:38.577Z", + "date_last_updated": "2023-05-13T23:02:38.577Z", + "date_of_expiration": "2023-05-13T23:02:38.577Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38009,10 +27946,10 @@ "history_id": 1684018958577, "description": "Compra de 54.049.325,00 IVIP por 10.001,00 BRL" }, - "revision": "1f74b8f5bdb64d5c97240bb7", + "revision": "fe441dedf73344eebdf68866", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38030,24 +27967,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "costs": [] }, - "revision": "1b6274586e7a4e409651543c", + "revision": "ca32b00eb72f4284b88dc17f", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38063,18 +27988,9 @@ "original_amount": 369625820, "total_amount": 369625820, "id": 1684158157715, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-05-15T13:42:37.715Z", + "date_last_updated": "2023-05-15T13:42:37.715Z", + "date_of_expiration": "2023-05-15T13:42:37.715Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38082,10 +27998,10 @@ "currency_id": "IVIPAY", "history_id": 1684158157715 }, - "revision": "8335dba7469a4240a8a4f942", + "revision": "0d8367ac15694760bf997146", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38093,10 +28009,10 @@ "content": { "type": "STRING", "value": "Compra de 369.625.820,00 IVIPAY por 36.962.582,00 IVIP estabilizando US$ 1.380,18", - "revision": "b881a771658248759133c8c3", + "revision": "c061a7d53a814b86a4121dc5", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38114,24 +28030,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "costs": [] }, - "revision": "ed9cb8ff0ff24263a6f1ee5f", + "revision": "9e594ec4ee744df7804e9580", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38147,18 +28051,9 @@ "original_amount": 3989184, "total_amount": 3989184, "id": 1686924794730, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-06-16T14:13:14.730Z", + "date_last_updated": "2023-06-16T14:13:14.730Z", + "date_of_expiration": "2023-06-16T14:13:14.730Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38166,10 +28061,10 @@ "currency_id": "IVIP", "history_id": 1686924794730 }, - "revision": "a221ffa08d224819bc8183a9", + "revision": "43ec7ea16b9248f5b8ef12db", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38177,10 +28072,10 @@ "content": { "type": "STRING", "value": "Compra de 3.989.184,00 IVIP por 39.891.848,00 IVIPAY", - "revision": "7daa4d979fc644d3a9cbdecd", + "revision": "80d79149b995423b9e8a0942", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38198,24 +28093,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "costs": [] }, - "revision": "fb686c3352d74a599acb92b1", + "revision": "1ff76a61b5f14a1088c8e248", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38231,18 +28114,9 @@ "original_amount": 35902602, "total_amount": 35902602, "id": 1686924859436, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-06-16T14:14:19.436Z", + "date_last_updated": "2023-06-16T14:14:19.436Z", + "date_of_expiration": "2023-06-16T14:14:19.436Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38250,10 +28124,10 @@ "currency_id": "IVIP", "history_id": 1686924859436 }, - "revision": "fbbb7742846d421b8d09f76c", + "revision": "c0ff646d45ab404186e6a39e", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38261,10 +28135,10 @@ "content": { "type": "STRING", "value": "Compra de 35.902.602,00 IVIP por 359.026.026,00 IVIPAY", - "revision": "5178789c04344720aaed0b81", + "revision": "979474e86dfa4a87a4cf7b62", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38272,24 +28146,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "costs": [] }, - "revision": "9c4c0be09506429f9b674a1b", + "revision": "191771e5ef01421296f76af0", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38304,18 +28166,9 @@ "total_amount": 1735, "history_id": 1688993449178, "id": 1688993449178, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-07-10T12:50:49.178Z", + "date_last_updated": "2023-07-10T20:43:20.593Z", + "date_of_expiration": "2023-08-09T12:50:49.178Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -38325,10 +28178,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c6775b949a7846cab48fbdf8", + "revision": "3a25b4a4f24a4a1c82f7d7a7", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38336,10 +28189,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.735,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "4388cc914bf14523b2d01914", + "revision": "ea09f36c2f2f4b7eb0459b65", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38359,24 +28212,12 @@ "installment_amount": 1209.091, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "costs": [] }, - "revision": "7bbe49671e1745e5989e8fdd", + "revision": "229243bcf29449399ad21f91", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38393,18 +28234,9 @@ "total_amount": 1209.091, "id": 1689023462249, "contract_id": "1683078539834", - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-07-10T21:11:02.249Z", + "date_last_updated": "2023-07-10T21:11:02.249Z", + "date_of_expiration": "2023-07-10T21:11:02.249Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -38412,10 +28244,10 @@ "currency_id": "BRL", "history_id": 1689023462249 }, - "revision": "f46646837cc0458bb7d79450", + "revision": "6ba0fc4f77b44d71a0f9aaec", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38423,10 +28255,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 11 no valor de 1.209,09 BRL referente ao contrato 1683078539834", - "revision": "809a25eea4b448008b961051", + "revision": "9ba3197c24274938850cb6c6", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38444,24 +28276,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - } + "costs": [] }, - "revision": "e70ee6bef6af42759d816246", + "revision": "b7fb6ccc8af449a886dce5d4", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38477,18 +28297,9 @@ "original_amount": 23038, "total_amount": 23038, "id": 1689027294801, - "date_created": { - "type": 6, - "value": 1701459383496 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383496 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383496 - }, + "date_created": "2023-07-10T22:14:54.801Z", + "date_last_updated": "2023-07-10T22:14:54.801Z", + "date_of_expiration": "2023-07-10T22:14:54.801Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38497,10 +28308,10 @@ "history_id": 1689027294801, "description": "Compra de 23.038,00 IVIP por 26,00 BRL" }, - "revision": "1c2682cffe7e4cccb259bfaa", + "revision": "213030cc6d574af5b161ecaa", "revision_nr": 1, - "created": 1701459383496, - "modified": 1701459383496 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38518,24 +28329,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "costs": [] }, - "revision": "0196f3cd899e47b897b8dc3b", + "revision": "2e42827c3ea5435fa3dab7aa", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38551,18 +28350,9 @@ "original_amount": 10892, "total_amount": 10892, "id": 1689119838635, - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-07-11T23:57:18.635Z", + "date_last_updated": "2023-07-11T23:57:18.635Z", + "date_of_expiration": "2023-07-11T23:57:18.635Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38571,10 +28361,10 @@ "history_id": 1689119838635, "description": "Compra de 10.892,00 IVIP por 20,00 BRL" }, - "revision": "faa30a77d5354e8c9a54e98a", + "revision": "f75d6798293845afbe93bb44", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38592,24 +28382,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "costs": [] }, - "revision": "67841a2f1fe0465985131a2e", + "revision": "27e59ff2b95d40e6bc420674", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38625,18 +28403,9 @@ "original_amount": 44060, "total_amount": 44060, "id": 1689121233961, - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-07-12T00:20:33.961Z", + "date_last_updated": "2023-07-12T00:20:33.961Z", + "date_of_expiration": "2023-07-12T00:20:33.961Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38645,10 +28414,10 @@ "history_id": 1689121233961, "description": "Compra de 44.060,00 IVIP por 80,00 BRL" }, - "revision": "f93cf41c086a472899ef9e45", + "revision": "183cd3b9eb4c4960bb41c374", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38666,24 +28435,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "costs": [] }, - "revision": "2cbb6452364b448ca1b5fe4b", + "revision": "5af756c7b6f944c49e02f9f0", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38699,18 +28456,9 @@ "original_amount": 9455, "total_amount": 9455, "id": 1689164526021, - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-07-12T12:22:06.021Z", + "date_last_updated": "2023-07-12T12:22:06.021Z", + "date_of_expiration": "2023-07-12T12:22:06.021Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38719,10 +28467,10 @@ "history_id": 1689164526021, "description": "Compra de 9.455,00 IVIP por 20,00 BRL" }, - "revision": "1fb1ee6c10424e4ea016e423", + "revision": "8659f5a9889448cdabd76ea6", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38740,24 +28488,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "costs": [] }, - "revision": "97cdb8dcec964736afefbc31", + "revision": "0076531b3d0243bb889a9fd8", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38773,18 +28509,9 @@ "original_amount": 12818, "total_amount": 12818, "id": 1689704009270, - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-07-18T18:13:29.270Z", + "date_last_updated": "2023-07-18T18:13:29.270Z", + "date_of_expiration": "2023-07-18T18:13:29.270Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38793,10 +28520,10 @@ "history_id": 1689704009270, "description": "Compra de 12.818,00 IVIP por 20,00 BRL" }, - "revision": "bc7df93b302748cc80cf0ad6", + "revision": "33d47aad24274fcf919df76f", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38814,24 +28541,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "costs": [] }, - "revision": "6884ca916a3c4d7ab86f00c5", + "revision": "80b4942ccd314e04ab64ec2e", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38847,18 +28562,9 @@ "original_amount": 82033, "total_amount": 82033, "id": 1690245422296, - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-07-25T00:37:02.296Z", + "date_last_updated": "2023-07-25T00:37:02.296Z", + "date_of_expiration": "2023-07-25T00:37:02.296Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38867,10 +28573,10 @@ "history_id": 1690245422296, "description": "Compra de 82.033,00 IVIP por 100,00 BRL" }, - "revision": "5561619d28814580a73c5253", + "revision": "f64b3d3404e642aead3c75b4", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38888,24 +28594,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "costs": [] }, - "revision": "eac332d8bc294d699814b0a8", + "revision": "044fe59e8f674e2ca2474e62", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38921,18 +28615,9 @@ "original_amount": 16360, "total_amount": 16360, "id": 1690245659912, - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-07-25T00:40:59.912Z", + "date_last_updated": "2023-07-25T00:40:59.912Z", + "date_of_expiration": "2023-07-25T00:40:59.912Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38941,10 +28626,10 @@ "history_id": 1690245659912, "description": "Compra de 16.360,00 IVIP por 20,00 BRL" }, - "revision": "f2d4f472d191463891de3f4e", + "revision": "a230d9b2e63343c3ba8cc4b0", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38960,24 +28645,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "costs": [] }, - "revision": "f47b25cc97674cdaa70bb7e3", + "revision": "318ff31cc20346f99dd27de8", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -38985,10 +28658,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690477890638", - "revision": "1bddb5bda45e474299784f87", + "revision": "6fccb58f16154d05bd5e67cc", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -39003,18 +28676,9 @@ "total_amount": 23044, "id": 1690477890638, "history_id": 1690477890638, - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-07-27T17:11:30.638Z", + "date_last_updated": "2023-07-27T17:11:30.638Z", + "date_of_expiration": "2023-07-27T17:11:30.638Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39023,10 +28687,10 @@ "description": "Compra de 23.044,00 IVIP por 30,00 BRL", "status_detail": "accredited" }, - "revision": "4457b293ae2a4c0f88dd0371", + "revision": "95f6cfe6dbab418ba774172b", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -39042,24 +28706,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "costs": [] }, - "revision": "8c493d72524641f2b631ee52", + "revision": "d805456d595642dbaa18fa01", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -39067,10 +28719,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690581074985", - "revision": "52f8185825284da691b276d5", + "revision": "2661723643b1483ea0eedc99", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -39085,18 +28737,9 @@ "total_amount": 103259, "id": 1690581074985, "history_id": 1690581074985, - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-07-28T21:51:14.985Z", + "date_last_updated": "2023-07-28T21:51:14.985Z", + "date_of_expiration": "2023-07-28T21:51:14.985Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39105,10 +28748,10 @@ "description": "Compra de 103.259,00 IVIP por 110,00 BRL", "status_detail": "accredited" }, - "revision": "57bc106fd8b54d06a4f08e70", + "revision": "e197cde141dd40cf8cdbffdf", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -39124,24 +28767,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "costs": [] }, - "revision": "5fc6bd27f4ee4eccba3b15e2", + "revision": "85589aa525c34eacbcb16d25", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -39149,10 +28780,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690912306732", - "revision": "fb22f5aa3a8546f09ad7ac13", + "revision": "4def7aa6ded14bcbb814d8a0", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -39167,18 +28798,9 @@ "total_amount": 55731, "id": 1690912306732, "history_id": 1690912306732, - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-08-01T17:51:46.732Z", + "date_last_updated": "2023-08-01T17:51:46.732Z", + "date_of_expiration": "2023-08-01T17:51:46.732Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39187,10 +28809,10 @@ "description": "Compra de 55.731,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "791324de0d864485a11ae84e", + "revision": "cf0e6fe5762d4ec581b69c74", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -39206,24 +28828,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "costs": [] }, - "revision": "5b2f32e2bc104ddcba6b5225", + "revision": "0b85ec47d4114fb7aaac0e4e", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -39231,10 +28841,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1691091813497", - "revision": "dc40f82d2d4246a8aaa25c1a", + "revision": "abc2f2ac46f94f26af279a2e", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -39249,18 +28859,9 @@ "total_amount": 7000000, "id": 1691091813497, "history_id": 1691091813497, - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-08-03T19:43:33.497Z", + "date_last_updated": "2023-08-03T19:43:33.497Z", + "date_of_expiration": "2023-09-03T19:43:33.496Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -39268,10 +28869,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "0fd1c6c682ac4449bb88408a", + "revision": "31965ef7542d4b208e065160", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -39279,10 +28880,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "07cd2fe42a9f48d7a30028f3", + "revision": "03b441455e43437892d4b842", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509545, + "modified": 1701463509545 } }, { @@ -39298,24 +28899,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "costs": [] }, - "revision": "d50897a2533049a5b4193b8c", + "revision": "3a7f4c56fa1d470798ca72db", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39323,10 +28912,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1691190824646", - "revision": "82bf2f4f149e437099dd13ad", + "revision": "4cdacfd4aced4dc1bbf1de61", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39341,18 +28930,9 @@ "total_amount": 61311, "id": 1691190824646, "history_id": 1691190824646, - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-08-04T23:13:44.646Z", + "date_last_updated": "2023-08-04T23:13:44.646Z", + "date_of_expiration": "2023-08-04T23:13:44.646Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -39361,10 +28941,10 @@ "description": "Compra de 61.311,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "ea31cc4fa5914d939659979b", + "revision": "5eb6d52a40b8463ab6705303", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39373,24 +28953,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-24T19:13:12.970Z", - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + ".val": "2023-09-24T19:13:12.970Z" }, - "revision": "80bbda42d7df45cd83f769f0", + "revision": "388b46b15e734c30a2507784", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39406,24 +28974,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "costs": [] }, - "revision": "30ee5f97ef4247d48ab0deea", + "revision": "8524cd9ff2e34bc69baa3652", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39431,10 +28987,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1692990792970", - "revision": "a8ea675d9f39459f9f97680f", + "revision": "1b85f18d240647d5ac575c04", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39449,29 +29005,19 @@ "total_amount": 2000, "id": "1692990792970", "history_id": "1692990792970", - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-08-25T19:13:12.970Z", + "date_last_updated": "2023-08-25T19:13:12.970Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "status_detail": "pending_waiting_payment" }, - "revision": "81907d3653784387a1aa9515", + "revision": "a7fdefcb1df142dcb32e90c5", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39479,10 +29025,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0331.9555.3972.0461-00", - "revision": "d6369c6d5294419d964938c2", + "revision": "a3a7043d8c0a4dd6ab1b0c9e", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39498,24 +29044,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "costs": [] }, - "revision": "1c9b53cb03294ecda417ea20", + "revision": "daf89a32b4284a54b7d1887e", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39523,10 +29057,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1693770411115", - "revision": "123c7d58414f411fa7460ad0", + "revision": "0e1552407e884b92bb23e6d3", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39541,18 +29075,9 @@ "total_amount": 7140000, "id": "1693770411115", "history_id": "1693770411115", - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-09-03T19:46:51.115Z", + "date_last_updated": "2023-09-03T19:46:51.115Z", + "date_of_expiration": "2023-09-03T19:46:51.115Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -39560,10 +29085,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "33acc46491dc49dc88fd7ce8", + "revision": "a6a2ec8caeb94736836d3727", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39571,10 +29096,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 7.000.000,00 IVIP com um rendimento de +140.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "6f08c18438aa4962b250dea3", + "revision": "622e856fa3cb43ce9bb62f41", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39583,24 +29108,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-12T10:36:53.081Z", - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + ".val": "2023-10-12T10:36:53.081Z" }, - "revision": "8eb150dc0dd24598a78ec65f", + "revision": "849071ef84214f7080a8e6f6", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39616,24 +29129,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "costs": [] }, - "revision": "8034cadeeef1487fac4851cf", + "revision": "1de44b6f108b4ae5a3bbeacf", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39641,10 +29142,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694515013082", - "revision": "dd14713211e64775a4b55b9b", + "revision": "9f88dfedfbb9405998db2878", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39659,29 +29160,19 @@ "total_amount": 2000, "id": "1694515013082", "history_id": "1694515013082", - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-09-12T10:36:53.082Z", + "date_last_updated": "2023-09-12T10:36:53.082Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "status_detail": "pending_waiting_payment" }, - "revision": "fdda8671f97248068fd22f87", + "revision": "eee0031985b14f53819b5f12", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39689,10 +29180,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0331.9555.3972.0461-00", - "revision": "bb39c73788fe40be83bfa5f7", + "revision": "5de5765632bb4bed9fb426c7", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39702,24 +29193,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 30, - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "amount": 30 }, - "revision": "69a4c399a4d742be87d47b3f", + "revision": "e03ffa345ecf4d4eb52949ec", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39734,24 +29213,12 @@ "installment_amount": 1000, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "financial_institution": "ivipcoin" }, - "revision": "fdfa6571c2834a938360d101", + "revision": "fff8c3575d884985851d639d", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39759,10 +29226,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694563336129", - "revision": "6f4db08e441c444e93a5d2fc", + "revision": "70507ea1a1844517bb238e97", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39770,10 +29237,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f09ad9b85f5544689903e92a", + "revision": "35a1cf517f81491e9cdb92ff", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39788,18 +29255,9 @@ "total_amount": 970, "id": "1694563336129", "history_id": "1694563336129", - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-09-13T00:02:16.129Z", + "date_last_updated": "2023-09-19T13:03:18.738Z", + "date_of_expiration": "2023-09-13T00:02:16.129Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -39811,10 +29269,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "0c6b5e35dd124ee6b74c0d11", + "revision": "9a64da9bf2e74b1cba5dc4e1", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39822,10 +29280,10 @@ "content": { "type": "STRING", "value": "Saque de 970,00 IVIP para a carteira 0x1250E6646AB77FF3f9708D761091ef1aD60bc9ec", - "revision": "2907bcdfc4df427c8c30b3ea", + "revision": "9cc6c349378d4b6b9ed80c1b", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39834,24 +29292,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-13T10:54:06.900Z", - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + ".val": "2023-10-13T10:54:06.900Z" }, - "revision": "21c542c4bc96437ca15c3178", + "revision": "4a2dfc2501b845d18b23cbe8", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39867,24 +29313,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "costs": [] }, - "revision": "d7c6976aee424a92a4ae5eee", + "revision": "996d3d2630c2412b9a76dc9f", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39892,10 +29326,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694602446900", - "revision": "ec6158bc5f034db1b5bb21f9", + "revision": "495fd63ca4074a52a7470aad", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39910,14 +29344,8 @@ "total_amount": 2500, "id": "1694602446900", "history_id": "1694602446900", - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-09-13T10:54:06.900Z", + "date_last_updated": "2023-09-13T14:14:25.688Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -39927,16 +29355,12 @@ "date_approved": "2023-09-13T14:14:25.688Z", "money_release_date": "2023-09-13T14:14:25.688Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "wasDebited": true }, - "revision": "cc86b84105254d1cb8c3b86c", + "revision": "47030745c2624f18aa980c96", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39944,10 +29368,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 2.500,00 BRL para a carteira iVip 0331.9555.3972.0461-00", - "revision": "c8ed2d8520e742f7b58998bc", + "revision": "49b9f4704b04479480ca7af5", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39965,24 +29389,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 2, - "installments_payable": 9, - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "installments_payable": 9 }, - "revision": "567b568d7bc448c59e88bb13", + "revision": "8ed1dad6e7894d8f89cc8250", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -39990,10 +29402,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694614621977", - "revision": "48efdcc6803d4425b6ec2275", + "revision": "0fff5994d8a8424b84bbb73f", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40008,18 +29420,9 @@ "total_amount": 1209.090909090909, "id": "1694614621977", "history_id": "1694614621977", - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-09-13T14:17:01.977Z", + "date_last_updated": "2023-09-13T14:17:01.977Z", + "date_of_expiration": "2023-09-13T14:17:01.977Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -40027,10 +29430,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "f6983b40b07242d9812b4145", + "revision": "f466df1529f349fd8f53b11b", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40038,10 +29441,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 11 no valor de 1.209,0909 BRL referente ao contrato 1683078539834", - "revision": "d2d716e9cf0f461596ac789d", + "revision": "d736ca6c41344d3685c3bb8d", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40059,24 +29462,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 3, - "installments_payable": 8, - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - } + "installments_payable": 8 }, - "revision": "a9862ec4d41a42b08c156c94", + "revision": "895a2cd7ed3644fdac1782d6", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40084,10 +29475,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694614622168", - "revision": "59bdf2f6c1c34d44846593f3", + "revision": "8b38e28646f04ad28a140d66", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40102,18 +29493,9 @@ "total_amount": 1209.090909090909, "id": "1694614622168", "history_id": "1694614622168", - "date_created": { - "type": 6, - "value": 1701459383497 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383497 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383497 - }, + "date_created": "2023-09-13T14:17:02.168Z", + "date_last_updated": "2023-09-13T14:17:02.168Z", + "date_of_expiration": "2023-09-13T14:17:02.168Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -40121,10 +29503,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "8000ab18629d4c9abc2e5509", + "revision": "fa238b22c86e45d2ab0f8e48", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40132,10 +29514,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 11 no valor de 1.209,0909 BRL referente ao contrato 1683078539834", - "revision": "d321099e0ef94c08a3bf70b8", + "revision": "a6f944cc01684214acd5b98b", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40145,24 +29527,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 942112.9199999999, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "amount": 942112.9199999999 }, - "revision": "a648ad5c07da49b5bc8d1094", + "revision": "b8025779e0e642d29011bf2a", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40177,24 +29547,12 @@ "installment_amount": 31403764, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "financial_institution": "ivipcoin" }, - "revision": "585ec0fa5c01471dbb92743a", + "revision": "edc9c9ce6b4149f49347e996", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40202,10 +29560,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694707376145", - "revision": "d9dacb3ee5c54eac8e8dd609", + "revision": "5bcdf156820c45639b322544", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40213,10 +29571,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "99cfbcf7c41845b6a819d6e4", + "revision": "d959a813994c4c08937100da", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40231,18 +29589,9 @@ "total_amount": 30461651.08, "id": "1694707376145", "history_id": "1694707376145", - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-09-14T16:02:56.145Z", + "date_last_updated": "2023-09-21T23:31:12.164Z", + "date_of_expiration": "2023-09-14T16:02:56.145Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -40254,10 +29603,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "bdcda676689b43239db3bb81", + "revision": "8abce9e7055e48bb82539f19", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40265,10 +29614,10 @@ "content": { "type": "STRING", "value": "Saque de 30.461.651,08 IVIP para a carteira 0x1250E6646AB77FF3f9708D761091ef1aD60bc9ec", - "revision": "c142c1d784d1477a976771a1", + "revision": "4556a86798e647079bc6e4fb", "revision_nr": 1, - "created": 1701459383497, - "modified": 1701459383497 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40284,24 +29633,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "costs": [] }, - "revision": "11b783ad54c941319ddbd9d1", + "revision": "c5384be2378e448d9430cec5", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40309,10 +29646,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1696309633832", - "revision": "c1aaee11c61f4156bb254ea1", + "revision": "88f18e00cb66418cb7102ede", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40328,18 +29665,9 @@ "total_amount": 20, "id": "1696309633832", "history_id": "1696309633832", - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-10-03T05:07:13.832Z", + "date_last_updated": "2023-10-03T05:07:13.832Z", + "date_of_expiration": "2024-08-03T05:07:13.831Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -40347,10 +29675,10 @@ "base_currency_id": "BRL", "status_detail": "accredited" }, - "revision": "deaa6acee1f246daaa153168", + "revision": "c62e2a9e6f3042989316522d", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40358,10 +29686,10 @@ "content": { "type": "STRING", "value": "Investimento de 20,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 03/08/2024 - D03OS92M", - "revision": "e399b99bccc54799a8085a39", + "revision": "a959dc44375f4d78b2fffa02", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40377,24 +29705,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "costs": [] }, - "revision": "94dd954a77924748af457eed", + "revision": "e66cba9bad484f198f1e72ec", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40402,10 +29718,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1696433201105", - "revision": "7ed89d1dd5b24271a144a8f0", + "revision": "44406131899e49298278630d", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40421,18 +29737,9 @@ "total_amount": 7000000, "id": "1696433201105", "history_id": "1696433201105", - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-10-04T15:26:41.105Z", + "date_last_updated": "2023-10-04T15:26:41.105Z", + "date_of_expiration": "2023-11-04T15:26:41.054Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -40440,10 +29747,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "1daad7849b444dffab88e285", + "revision": "bf7845bc413944b594b44380", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40451,10 +29758,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "016808d4cdba4a20b04734fb", + "revision": "0a9e7f9a0282424d920767e3", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40462,10 +29769,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a83721d4419f4e4e9c73527a", + "revision": "35b0a4dfe9874df28edda328", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40475,24 +29782,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 51.1, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "amount": 51.1 }, - "revision": "56c657cb175f48a29b3b6b04", + "revision": "ea967ed6f37441078d5af6a9", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40506,26 +29801,15 @@ "total_amount": 2606.1, "installments": 1, "installment_amount": 2606.1, - "date_created": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-03-26T17:40:06.395Z", "history_id": 1679852406395, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "status": "paid" }, - "revision": "abe103f9ad7d4bff9ad3d09e", + "revision": "f134d4877ad847c8ae9194a0", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40533,10 +29817,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.555,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.606,10", - "revision": "7e8375b3ae114a57850d0e71", + "revision": "65743aefb19643098d119137", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40544,10 +29828,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "0ed8921d05b44f98b571afee", + "revision": "7eeda010e9254e8ea2dfc98e", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40555,10 +29839,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "379d6336b33544b1ad0a4865", + "revision": "c2d1aa98d89045008a81b96b", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40568,24 +29852,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 52.2, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "amount": 52.2 }, - "revision": "533771ea0f1a424c9910a84f", + "revision": "9526294e5eb749f5b7c7cd7f", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40599,26 +29871,15 @@ "total_amount": 2662.2, "installments": 1, "installment_amount": 2662.2, - "date_created": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-05-01T18:04:22.250Z", "history_id": 1682964262250, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "status": "paid" }, - "revision": "398e9e175cb740c4b18d5415", + "revision": "4e58a1865ccb48249f1e8622", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40626,10 +29887,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.662,20", - "revision": "18f047b8948b433db38d717e", + "revision": "622f130345fc47529fb448e2", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40637,10 +29898,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "bdef353ac7114f9d9deab538", + "revision": "93122f7d99364079ac3054d6", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40650,24 +29911,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "amount": 3300 }, - "revision": "5acea83538d54480accb7581", + "revision": "0c685c8c0a3f41fc96950dde", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40681,26 +29930,15 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-05-03T01:48:59.834Z", "history_id": 1683078539834, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "status": "paid" }, - "revision": "cf7de98125f649089d71a94c", + "revision": "2b5a4338e5d249d38ce000eb", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40708,10 +29946,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "a7c7ce6435fa4fd289adf6d2", + "revision": "4be9522f0b6749cbac6eabe3", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40719,10 +29957,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "ba604d194d8d44a59a8823ce", + "revision": "41a983079de8403facb1dc44", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40730,10 +29968,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "854d496720f84d069f7c7106", + "revision": "598a29f1672543e6896c4de0", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40743,24 +29981,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "amount": 3300 }, - "revision": "36021650c20842d1b6284d44", + "revision": "ae98dfa79a774cd39460def8", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40774,26 +30000,16 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-05-03T01:48:59.834Z", "history_id": 1683078539834, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "date_last_updated": "2023-09-13T14:17:02.016Z" }, - "revision": "f8dfed62ddea417bb4e1cb6f", + "revision": "a91bfe256cce40608a694ca8", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40801,10 +30017,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "0219fda4017c4ac4a51e6e46", + "revision": "6a69c6d7a0f54b92b6d613fb", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40812,10 +30028,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "fb8b9f2d8c1f45569c98dcac", + "revision": "8ee83964c0874d219e2e719e", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40823,10 +30039,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2018da5cf36047ca930d058e", + "revision": "cfd1618a5b74497096d7621c", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40836,24 +30052,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "amount": 3300 }, - "revision": "e0fb7a81384149949e7fcb15", + "revision": "a56afd29444d4cb2a9b9b59c", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40867,26 +30071,16 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-05-03T01:48:59.834Z", "history_id": 1683078539834, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "date_last_updated": "2023-09-13T14:17:02.191Z" }, - "revision": "179cb18268fe4a11a59aacd2", + "revision": "0966a7a4b42744538fcb9f90", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40894,10 +30088,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "d333bcd4c4fe4b98a66e25d3", + "revision": "8a95f73693b4413a91cad6e2", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40905,10 +30099,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "952275bdfd834a858da7c310", + "revision": "6d502d7afa534552855b80a1", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40916,10 +30110,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "207ce05d258a4e0fa89e1096", + "revision": "f59728a6833a453095236289", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40929,24 +30123,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "amount": 3300 }, - "revision": "00320050b3ef48b7a49f1e4c", + "revision": "00611fbbb9f14ffb89d949f8", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40960,25 +30142,14 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-05-03T01:48:59.834Z", "history_id": 1683078539834, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "currency_id": "BRL" }, - "revision": "47a038dff17c459ab228348b", + "revision": "9999681d8a3a43c795376a37", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40986,10 +30157,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "1646676fabbe44d6bdb2a31e", + "revision": "8f1b7b7c111946cbaa1a5063", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -40997,10 +30168,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "901ca5cc486f48e297c154cb", + "revision": "21da41de60c74f7797a42349", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41008,10 +30179,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "596dba32327343c493a305ad", + "revision": "dbe94354f257444da6621b70", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41021,24 +30192,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "amount": 3300 }, - "revision": "7d1d6816cf20433e8d0b1f81", + "revision": "352aee4edd6e4ee8be0a98ef", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41052,25 +30211,14 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-05-03T01:48:59.834Z", "history_id": 1683078539834, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "currency_id": "BRL" }, - "revision": "e4c1951da5484782b9e01549", + "revision": "efe7f730fa874c548928e73c", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41078,10 +30226,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "4e411ceac4634fb68b0e2e71", + "revision": "c37946b9b6be4a49a5f472b7", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41089,10 +30237,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "a77df37a8c1846f19fa43767", + "revision": "84b9175cfd9a4257a5e2ed18", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41100,10 +30248,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "77970ccd73e84e338395cb5b", + "revision": "403861cac1b84c218bd51fbf", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41113,24 +30261,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "amount": 3300 }, - "revision": "4365f2a129544069bec999c6", + "revision": "d66dfbdbd151481593d64c96", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41144,25 +30280,14 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-05-03T01:48:59.834Z", "history_id": 1683078539834, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "currency_id": "BRL" }, - "revision": "d43114dd37b94422b0410c39", + "revision": "b56c2dafdfe8417e954ddc6b", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41170,10 +30295,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "8904fcfe87914b868867c1d5", + "revision": "7f21cc8434d34e8aa9f0f01b", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41181,10 +30306,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "9881d3f125fd4d4c8c8aa26b", + "revision": "e7f890117ebc406da8b6f2d7", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41192,10 +30317,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "602a1c14d1e44011963ba50c", + "revision": "39f1d31db73e4b039d06762e", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41205,24 +30330,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "amount": 3300 }, - "revision": "30efda8ac70b4397b0cf8349", + "revision": "a883253b21824dc0b576adc6", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41236,25 +30349,14 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-05-03T01:48:59.834Z", "history_id": 1683078539834, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "currency_id": "BRL" }, - "revision": "61f5294df9f64397a5b15ecd", + "revision": "beabf2559fc9473e82462a1c", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41262,10 +30364,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "eaef24dfed544931bc2f2cd5", + "revision": "7dc9b1e6318b4c599668de1b", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41273,10 +30375,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "989f9f92d8d14ce0982a7dea", + "revision": "ab1f5523c685427d84b71ebe", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41284,10 +30386,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "05bd7009ada44e8db8fc7650", + "revision": "06fee3b0d2764e2698343d2f", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41297,24 +30399,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "amount": 3300 }, - "revision": "5419c297cfa1443ea97570d3", + "revision": "699d93b2d54e4ad5adaea672", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41328,25 +30418,14 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-05-03T01:48:59.834Z", "history_id": 1683078539834, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "currency_id": "BRL" }, - "revision": "48ce8005df4c4836b6ceddff", + "revision": "8e9b1c80df4b4aaa80893e42", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41354,10 +30433,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "c92a2c1252fc4a6ea8275bdf", + "revision": "dfdbc7c42259471396cdff9c", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41365,10 +30444,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "5fa98e12fbdf4e50801743ad", + "revision": "99b5b92ab0374b518189d8a9", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41376,10 +30455,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c8a602d00025400998ce9f62", + "revision": "c03ed946d36a4f15977c6cf2", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41389,24 +30468,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "amount": 3300 }, - "revision": "58dfcf9f9b7a4ced975e4e79", + "revision": "dc88408e54de4b5f92e3c063", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41420,25 +30487,14 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-05-03T01:48:59.834Z", "history_id": 1683078539834, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "currency_id": "BRL" }, - "revision": "15a067aefeb44685a2f26647", + "revision": "f9880f0052d146598b6a034e", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41446,10 +30502,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "ea1df0b5273841979b38d5ad", + "revision": "8d4d3f739c38434386d0e2aa", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41457,10 +30513,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "6819e54860de4535bad6410a", + "revision": "fa86c695e81d419691944426", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509546, + "modified": 1701463509546 } }, { @@ -41468,10 +30524,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4a25abd66848481984c53cb7", + "revision": "b0625297af9b45cab49d1977", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41481,24 +30537,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "amount": 3300 }, - "revision": "e28ef6f792cc489fa5985d4a", + "revision": "2bf9c03b2563462591509753", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41512,25 +30556,14 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-05-03T01:48:59.834Z", "history_id": 1683078539834, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "currency_id": "BRL" }, - "revision": "08193bebe3da4224815a2064", + "revision": "c3c1402c23bb4721afc40e26", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41538,10 +30571,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "365e3bde61e3469ba74650a5", + "revision": "d093e0c08c2542fe9bb16067", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41549,10 +30582,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "9edea98fdaf44cd7ab5f7374", + "revision": "7e7dc4114fd5409fbc28c031", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41560,10 +30593,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "78a911e49df745fa8e08cba0", + "revision": "cccc7498c6174da29f0630d8", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41573,24 +30606,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", - "amount": 3300, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "amount": 3300 }, - "revision": "99bbaa96b9d84029b512b240", + "revision": "26462879375d4b50b3ad3cb3", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41604,25 +30625,14 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-05-03T01:48:59.834Z", "history_id": 1683078539834, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "currency_id": "BRL" }, - "revision": "375b48ac7af240529623de26", + "revision": "3b95a87504ba4588a6da2d08", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41630,10 +30640,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "176bf58c050042c49c4a1774", + "revision": "3928a3eb47e446ab8808b9f6", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41641,10 +30651,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "bae803c2df8b47bf9c0062ab", + "revision": "de7bbdc8807e4820829d1ff8", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41652,10 +30662,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3108b9b8f0704c39a5398070", + "revision": "1ce2cd9b774542a693f62bca", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41663,10 +30673,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1a16bc82e9b24dcfa6565502", + "revision": "ea8dcf4834014ad7903e7cd2", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41677,24 +30687,12 @@ "approvedLimit": 10000, "limitUsed": 9090.90909090909, "analysisRequested": "2023-03-26T01:06:09.965Z", - "lastReview": "2023-03-26T01:17:09.922Z", - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "lastReview": "2023-03-26T01:17:09.922Z" }, - "revision": "16cbce9e44ee44f6a4d9a961", + "revision": "8a613af80d4441b1848b39ff", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41706,24 +30704,12 @@ "dateValidity": 1678943777415, "totalValue": 13247.575, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "balancesModificacao": "2023-10-15T03:00:00.000Z" }, - "revision": "eff60448100c40c3b0ab5d08", + "revision": "50f04e8ba4cf4e6ea04de313", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41733,24 +30719,12 @@ "value": { "available": "38137.00000000", "symbol": "IVIP", - "value": 3.88, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "value": 3.88 }, - "revision": "54b138daa4d64e3190ffde2a", + "revision": "d1ee1e81ab7f4134bfa5be1a", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41758,10 +30732,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a18c25e7648c492b917edab6", + "revision": "089c23dc1a1c4ec092c14a06", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41769,24 +30743,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "costs": [] }, - "revision": "c25c926ebd9944be93af43cf", + "revision": "03e78e5aef9f4504b52f3d65", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41801,18 +30763,9 @@ "total_amount": 20, "history_id": 1689115233061, "id": 1689115233061, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-07-11T22:40:33.061Z", + "date_last_updated": "2023-07-12T08:25:46.943Z", + "date_of_expiration": "2023-08-10T22:40:33.061Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -41822,10 +30775,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "4f5d3b6d0ae54a1b9551035f", + "revision": "25b2653677a74c82bf4528c8", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41833,10 +30786,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", - "revision": "ae899b5a1a25498eacd6b317", + "revision": "31d1bede32924a309c489034", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41844,24 +30797,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "costs": [] }, - "revision": "7ad5e35ea27f44f6b4ef08eb", + "revision": "166fa9424b1942fb84ccef1c", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41876,18 +30817,9 @@ "total_amount": 20, "history_id": 1689278707835, "id": 1689278707835, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-07-13T20:05:07.835Z", + "date_last_updated": "2023-07-13T20:07:08.225Z", + "date_of_expiration": "2023-08-12T20:05:07.835Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -41897,10 +30829,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "721a4650ddf34fd8be495c46", + "revision": "4369da111329472bbc98c3ca", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41908,10 +30840,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", - "revision": "ce99e297c2cc4840b217a320", + "revision": "2cc20ed58f334a5baa93b215", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41929,24 +30861,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "costs": [] }, - "revision": "12afce37ea5e47e88902dcd1", + "revision": "76fb2f269a5a405592fd7a1f", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41962,18 +30882,9 @@ "original_amount": 25268, "total_amount": 25268, "id": 1689683815156, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-07-18T12:36:55.156Z", + "date_last_updated": "2023-07-18T12:36:55.156Z", + "date_of_expiration": "2023-07-18T12:36:55.156Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -41982,10 +30893,10 @@ "history_id": 1689683815156, "description": "Compra de 25.268,00 IVIP por 40,00 BRL" }, - "revision": "4a58a86d577c43808c528d86", + "revision": "d048436e8e424a3fbf4f34ef", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -41993,24 +30904,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "costs": [] }, - "revision": "b0519dea58644d9f885c79a8", + "revision": "8b80ef8f3b8b413cbc8a0ffe", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42025,18 +30924,9 @@ "total_amount": 20, "history_id": 1689684340625, "id": 1689684340625, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-07-18T12:45:40.625Z", + "date_last_updated": "2023-07-18T14:46:07.863Z", + "date_of_expiration": "2023-08-17T12:45:40.625Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -42046,10 +30936,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "0238db408e7e4e78bbe72362", + "revision": "c54697da89ba4131a11b22a5", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42057,10 +30947,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", - "revision": "b95d1d97b1d84f8da8de6855", + "revision": "2c6ff9ae09474de4a6a71291", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42078,24 +30968,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "costs": [] }, - "revision": "3bd32e7eb8f346cca76f1e4c", + "revision": "50e8ba8fe6c1450680ce465e", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42111,18 +30989,9 @@ "original_amount": 12869, "total_amount": 12869, "id": 1689695209900, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-07-18T15:46:49.900Z", + "date_last_updated": "2023-07-18T15:46:49.900Z", + "date_of_expiration": "2023-07-18T15:46:49.900Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -42131,10 +31000,10 @@ "history_id": 1689695209900, "description": "Compra de 12.869,00 IVIP por 20,00 BRL" }, - "revision": "df3799ac75084b0c93198d75", + "revision": "6ea0bbed58974d8e8eb75a70", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42142,10 +31011,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e0ccdad52a1d4d079e708ea7", + "revision": "b56d31077e7a4413b0847426", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42153,10 +31022,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "995a520e63ae4175ac481ac2", + "revision": "3e64158687e34fe1b6b2b75b", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42165,24 +31034,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "limitUsed": 0 }, - "revision": "c9a1a5a3abc94813bbee5f2b", + "revision": "e1af6421909047bdbd213427", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42194,24 +31051,12 @@ "dateValidity": 1681695529045, "totalValue": 12.39, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "balancesModificacao": "2023-10-16T03:00:00.000Z" }, - "revision": "18b68dcc702d4bd5acdbf2ea", + "revision": "f5635942fc6544e2a08b96c3", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42219,10 +31064,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d554b40f8a65479197fa8295", + "revision": "133c438fa3a94d5dbadb9b17", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42230,10 +31075,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b687ffc11c53457da1e92e59", + "revision": "9f58d76a39bf4effbf912735", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42241,10 +31086,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e093cc1720054bb383161773", + "revision": "4b3d7294645d499bbe3510d7", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42253,24 +31098,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "limitUsed": 0 }, - "revision": "7b39483f443b4c1c8d13880c", + "revision": "b118c56d833d46fba929ec7c", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42281,24 +31114,12 @@ "dataModificacao": 1689337184637, "dateValidity": 1689337184638, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "currencyType": "USD" }, - "revision": "11a74d6410de40ed8a91320f", + "revision": "a8cb288abea7465381d88952", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42308,24 +31129,12 @@ "value": { "available": "31783.20000000", "symbol": "IVIP", - "value": 6.74, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "value": 6.74 }, - "revision": "020e8e828480454eadd95825", + "revision": "b7e5785b0ccb48bab6a4c687", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42333,10 +31142,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f727975a0f294412bf7a9abc", + "revision": "cc2af5a32c0444b4ac69c2ca", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42344,24 +31153,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "costs": [] }, - "revision": "83e325bc6a5447058c846638", + "revision": "c60c20df90864a739f659299", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42376,27 +31173,18 @@ "total_amount": 20, "history_id": 1689220381451, "id": 1689220381451, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-07-13T03:53:01.451Z", + "date_last_updated": "2023-07-13T03:53:01.451Z", + "date_of_expiration": "2023-08-12T03:53:01.451Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "93f013a25d9c4b76bbfe6055", + "revision": "06b4672d54ac4c86baec05a0", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42404,10 +31192,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "5ec961694292415c83c5cfb5", + "revision": "247245fc5a1649efb2a47f7c", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42415,24 +31203,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "costs": [] }, - "revision": "4eb714603e3547f1bafbec5c", + "revision": "d3601b6e1bb840afa7c4f364", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42447,18 +31223,9 @@ "total_amount": 50, "history_id": 1689220411584, "id": 1689220411584, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-07-13T03:53:31.584Z", + "date_last_updated": "2023-07-13T14:14:45.911Z", + "date_of_expiration": "2023-08-12T03:53:31.584Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -42468,10 +31235,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "89b1c7684a2e4ede8debcd9a", + "revision": "67ee33b4dc5143f99e7b4f5a", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42479,10 +31246,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "39bc703c78284a06826c7cc9", + "revision": "67eb916f39c44aa389bf10dd", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509547, + "modified": 1701463509547 } }, { @@ -42500,24 +31267,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "costs": [] }, - "revision": "5ac284b1fe4f4614add36d8a", + "revision": "a9ad4057589f434089514502", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509548, + "modified": 1701463509548 } }, { @@ -42533,18 +31288,9 @@ "original_amount": 18682, "total_amount": 18682, "id": 1689258185846, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-07-13T14:23:05.846Z", + "date_last_updated": "2023-07-13T14:23:05.846Z", + "date_of_expiration": "2023-07-13T14:23:05.846Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -42553,10 +31299,10 @@ "history_id": 1689258185846, "description": "Compra de 18.682,00 IVIP por 50,00 BRL" }, - "revision": "4b2fa214981b41d6ab415576", + "revision": "fe4497a02fb740bcaba92bb4", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509548, + "modified": 1701463509548 } }, { @@ -42564,24 +31310,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "costs": [] }, - "revision": "8ff591743b9445f6a6f170b8", + "revision": "cf3d3755ae4d4dd386be7fd2", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509548, + "modified": 1701463509548 } }, { @@ -42596,27 +31330,18 @@ "total_amount": 20, "history_id": 1689488308744, "id": 1689488308744, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-07-16T06:18:28.744Z", + "date_last_updated": "2023-07-16T06:18:28.744Z", + "date_of_expiration": "2023-08-15T06:18:28.744Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "b4d54d4cc77b45f8b9b68319", + "revision": "86e0ce93a1de44d2a72a134e", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509548, + "modified": 1701463509548 } }, { @@ -42624,10 +31349,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "0ec1853834dd4e6cbac4b324", + "revision": "f24bde9839fb4af0a6ae6340", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509548, + "modified": 1701463509548 } }, { @@ -42635,24 +31360,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - } + "costs": [] }, - "revision": "5e2fd6be9ddf4f16b2b15709", + "revision": "947607a156924013ab261c27", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509548, + "modified": 1701463509548 } }, { @@ -42667,18 +31380,9 @@ "total_amount": 20, "history_id": 1689488325765, "id": 1689488325765, - "date_created": { - "type": 6, - "value": 1701459383498 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383498 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383498 - }, + "date_created": "2023-07-16T06:18:45.765Z", + "date_last_updated": "2023-07-17T17:15:08.067Z", + "date_of_expiration": "2023-08-15T06:18:45.765Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -42688,10 +31392,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ea82b18ac9824a5a988704db", + "revision": "2b0e359c14284a1cab5358bb", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509548, + "modified": 1701463509548 } }, { @@ -42699,10 +31403,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "c85fa03842254e15af8072df", + "revision": "a7ff2f54ec7e4b768fb72396", "revision_nr": 1, - "created": 1701459383498, - "modified": 1701459383498 + "created": 1701463509548, + "modified": 1701463509548 } }, { @@ -42710,24 +31414,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "costs": [] }, - "revision": "1fc8abf746474bf1b3f434be", + "revision": "8038839cfca9496d965bbe45", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509548, + "modified": 1701463509548 } }, { @@ -42742,27 +31434,18 @@ "total_amount": 20, "history_id": 1689606916771, "id": 1689606916771, - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - }, + "date_created": "2023-07-17T15:15:16.771Z", + "date_last_updated": "2023-07-17T15:15:16.771Z", + "date_of_expiration": "2023-08-16T15:15:16.771Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "2368e3e766e543249b656019", + "revision": "2e386b15ff184cc6bb08e4eb", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509548, + "modified": 1701463509548 } }, { @@ -42770,10 +31453,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "28db1925065242d9b9db5316", + "revision": "fbee20cb9b8d4662b56671c0", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509548, + "modified": 1701463509548 } }, { @@ -42791,24 +31474,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "costs": [] }, - "revision": "5ac373f1dc474cafba055b2d", + "revision": "1733074211d74c77991cf5c0", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -42824,18 +31495,9 @@ "original_amount": 12478, "total_amount": 12478, "id": 1689614163424, - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - }, + "date_created": "2023-07-17T17:16:03.424Z", + "date_last_updated": "2023-07-17T17:16:03.424Z", + "date_of_expiration": "2023-07-17T17:16:03.424Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -42844,10 +31506,10 @@ "history_id": 1689614163424, "description": "Compra de 12.478,00 IVIP por 20,00 BRL" }, - "revision": "717be71384864a2fbb3b8680", + "revision": "e3fcd35f145b40d38318f6f3", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -42863,24 +31525,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "costs": [] }, - "revision": "858111f0bfd347be9b9c4d1e", + "revision": "506c8efcdacf4070bf7af402", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -42888,10 +31538,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1690673977679", - "revision": "6a6428fc34674c6f9a796f81", + "revision": "6b6d72b08fc7403eacff82e7", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -42906,18 +31556,9 @@ "total_amount": 31160, "id": 1690673977679, "history_id": 1690673977679, - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - }, + "date_created": "2023-07-29T23:39:37.679Z", + "date_last_updated": "2023-07-29T23:39:37.679Z", + "date_of_expiration": "2023-08-29T23:39:37.677Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -42925,10 +31566,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c6a99320f1b545ed8f689c5c", + "revision": "00d14bb71dfa48c28865a83a", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -42936,10 +31577,10 @@ "content": { "type": "STRING", "value": "Investimento de 31.160,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/29/2023", - "revision": "817e42f89b0a4a2395787570", + "revision": "f476abe9dd2e4f6b99a38954", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -42948,24 +31589,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-28T23:41:03.331Z", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + ".val": "2023-08-28T23:41:03.331Z" }, - "revision": "a0aba0151b3e4c4fa5d8ff0b", + "revision": "14bc4bd38176494aa03913e0", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -42981,24 +31610,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "costs": [] }, - "revision": "a6e7c107f4d14c3783f6c528", + "revision": "81c4e996edf74e1a95513fc2", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43006,10 +31623,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1690674063331", - "revision": "9cc8b557108e4f3c9acb454c", + "revision": "79498c75345a4284a92de349", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43024,29 +31641,19 @@ "total_amount": 50, "id": 1690674063331, "history_id": 1690674063331, - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, + "date_created": "2023-07-29T23:41:03.331Z", + "date_last_updated": "2023-07-29T23:41:03.331Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "status_detail": "pending_waiting_payment" }, - "revision": "245e6536801a40149947a590", + "revision": "eafce8d37c134a108e8682dc", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43054,10 +31661,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 50,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "6481d89a729b4b4090ea7fb7", + "revision": "d8ce34c3e0fb4b4abc75f6ac", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43066,24 +31673,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-11T22:49:28.160Z", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + ".val": "2023-09-11T22:49:28.160Z" }, - "revision": "857558ef79744a349367dc1b", + "revision": "e1a79767ede249f58cf56552", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43099,24 +31694,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "costs": [] }, - "revision": "56fa8245d1e84ce0a82d8c1a", + "revision": "b82cb4aa4b614ee2b8b5f82e", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43124,10 +31707,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1691880568161", - "revision": "f42833bbedf249a5b7d2bcca", + "revision": "4e155497db2045e19fe55334", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43142,29 +31725,19 @@ "total_amount": 20, "id": 1691880568161, "history_id": 1691880568161, - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, + "date_created": "2023-08-12T22:49:28.161Z", + "date_last_updated": "2023-08-12T22:49:28.161Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "status_detail": "pending_waiting_payment" }, - "revision": "cffae36242ff4902ab4fe135", + "revision": "8f14bf08d5ba4016831d0ea1", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43172,10 +31745,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "23211ace3c744301bc54b625", + "revision": "f4fc66a293d34fa0ad4395bc", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43191,24 +31764,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "costs": [] }, - "revision": "2488d85da0a64ec6b85fae9c", + "revision": "fa3c63dfa0234b2494619097", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43216,10 +31777,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1693353168151", - "revision": "c3baf1a5b9414266b9bc42b7", + "revision": "bbd63544037c4abbba543b7f", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43234,18 +31795,9 @@ "total_amount": 31783.2, "id": "1693353168151", "history_id": "1693353168151", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - }, + "date_created": "2023-08-29T23:52:48.151Z", + "date_last_updated": "2023-08-29T23:52:48.151Z", + "date_of_expiration": "2023-08-29T23:52:48.151Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -43253,10 +31805,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "0c785f1cccba461f84de03cb", + "revision": "092f8ed59c49468cbc0ecb55", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43264,10 +31816,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 31.160,00 IVIP com um rendimento de +623,2 IVIP (2,00%) - Y12XDT27", - "revision": "5d616318cedb4edfbd11c212", + "revision": "54f5c30a2a3447f49807abf5", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43275,10 +31827,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "07705ab4d9a74c5e83bc8c6b", + "revision": "4d07ce3fd5574436954bf9b4", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43286,10 +31838,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "72907e35656e4be0834bd8e7", + "revision": "ff4a93106fd14b64901e727c", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43298,24 +31850,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "limitUsed": 0 }, - "revision": "7a883984cd394b00aaf0725c", + "revision": "fe6497ec74ee4cc5bf7e80d2", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43327,24 +31867,12 @@ "dateValidity": 1689220270724, "totalValue": 14.47, "currencyType": "USD", - "balancesModificacao": "2023-10-02T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "balancesModificacao": "2023-10-02T03:00:00.000Z" }, - "revision": "661e7175093540eebb743658", + "revision": "2d549dde9a9e437e89868043", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43352,10 +31880,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "66634c89cf5e41e6b039e9bb", + "revision": "a5007d1374264d91a2dfa7d8", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43363,10 +31891,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "71338c19be7e4c0fb6c8b4c7", + "revision": "eeba121b0e294f82985b094d", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43377,24 +31905,12 @@ "dataModificacao": 1677455523126, "dateValidity": 1677455523127, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "currencyType": "USD" }, - "revision": "e4dd3922fa9e4f9c8263ee50", + "revision": "d36aba79b58f4f0f85216ce0", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43404,24 +31920,12 @@ "value": { "available": "150481.00000000", "symbol": "IVIP", - "value": 16.044, - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "value": 16.044 }, - "revision": "c9f9e861a91b40bc8fa094d9", + "revision": "9da2bf60af4b49b2ada3b491", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43429,10 +31933,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5a9c4fd9b8ec403aacf4a70d", + "revision": "2f411b5eaf5c402ab1abb5e4", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43441,24 +31945,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-04T15:32:38.190Z", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + ".val": "2023-11-04T15:32:38.190Z" }, - "revision": "068ebc4fba044161afb8ec7d", + "revision": "12ed8334c52942759df0c57b", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43474,24 +31966,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "costs": [] }, - "revision": "1b491e5ec9de4247a4d07a55", + "revision": "37dd9361e70a48629e1bbfa9", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43499,10 +31979,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696519958190", - "revision": "687f3e6bfdb34f3896bb857f", + "revision": "959cb70a42ee4e7eb0fab8b4", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43518,29 +31998,19 @@ "total_amount": 100, "id": "1696519958190", "history_id": "1696519958190", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, + "date_created": "2023-10-05T15:32:38.190Z", + "date_last_updated": "2023-10-05T15:32:38.190Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "status_detail": "pending_waiting_payment" }, - "revision": "9deadf74a4b04372bd3ef7c0", + "revision": "88049215b6af4d7094915b43", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43548,10 +32018,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0397.3472.1775.6545-10", - "revision": "4b57473e2e6d487dbe7d91f5", + "revision": "f6bc9e992d2445d4b562ba4a", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43560,24 +32030,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-04T21:32:52.533Z", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + ".val": "2023-11-04T21:32:52.533Z" }, - "revision": "0ab95c67cd7c4d22a400b55b", + "revision": "67d754c12c924dce9780b6c3", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43593,24 +32051,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "costs": [] }, - "revision": "38bc5448ed304abbb11bbda3", + "revision": "743c7b611d7143549774d306", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43618,10 +32064,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696541572533", - "revision": "a0819e4a8da642148002cd19", + "revision": "d3f7b6aaabd04aefa17253f9", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43637,29 +32083,19 @@ "total_amount": 50, "id": "1696541572533", "history_id": "1696541572533", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, + "date_created": "2023-10-05T21:32:52.533Z", + "date_last_updated": "2023-10-05T21:32:52.533Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "status_detail": "pending_waiting_payment" }, - "revision": "64e7875b24534df7bf567f70", + "revision": "1cb8222a25994a798a5e0490", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43667,10 +32103,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", - "revision": "69a8737381c44cb6ac346868", + "revision": "1aa186009a2b4d95b529d285", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43679,24 +32115,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-05T09:46:24.658Z", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + ".val": "2023-11-05T09:46:24.658Z" }, - "revision": "5d8f3d6ab8ec4e8792113ea6", + "revision": "9ac7689017dd4b3b980d38d2", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43712,24 +32136,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "costs": [] }, - "revision": "44b39a2402ce4c81a0ff158b", + "revision": "27b1091c0d13461a830d6dc4", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43737,10 +32149,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696585584658", - "revision": "97bcbe62b7b64c53aed186fd", + "revision": "bc8d64b7283147588a39ae86", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43756,14 +32168,8 @@ "total_amount": 50, "id": "1696585584658", "history_id": "1696585584658", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, + "date_created": "2023-10-06T09:46:24.658Z", + "date_last_updated": "2023-10-07T14:19:56.574Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -43773,16 +32179,12 @@ "date_approved": "2023-10-07T14:19:56.574Z", "money_release_date": "2023-10-07T14:19:56.574Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "wasDebited": true }, - "revision": "bf17ffa66d8d43238a6447e8", + "revision": "db1431e547ab4997946baa4c", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43790,10 +32192,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", - "revision": "e6a19e9d9b0c49e292c358dc", + "revision": "f4b232a869fc48a5872f0496", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509549, + "modified": 1701463509549 } }, { @@ -43809,24 +32211,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "costs": [] }, - "revision": "2aca127bc2b143d2a6152099", + "revision": "457b67ffe0624f9d90da0c1d", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -43834,10 +32224,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696706580251", - "revision": "daa4e7596b5a44d49f14f6e6", + "revision": "4c81348bc4a147ab9386b67a", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -43853,18 +32243,9 @@ "total_amount": 70156, "id": "1696706580251", "history_id": "1696706580251", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - }, + "date_created": "2023-10-07T19:23:00.251Z", + "date_last_updated": "2023-10-07T19:23:00.251Z", + "date_of_expiration": "2023-10-07T19:23:00.251Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -43873,10 +32254,10 @@ "description": "Compra de 70.156,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "85306c71b0424bf397abd2f9", + "revision": "037bb4e9de6648e383277abe", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -43885,24 +32266,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-08T23:46:10.002Z", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + ".val": "2023-11-08T23:46:10.002Z" }, - "revision": "8c8b8671be394b83974a95a1", + "revision": "801eaf46a0db4904865ef18d", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -43918,24 +32287,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "costs": [] }, - "revision": "07b016a7bba844dbbb32d5bc", + "revision": "1e57321b3b014ebea32ac89e", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -43943,10 +32300,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696895170006", - "revision": "c2b691c6993245cfb31db362", + "revision": "babb3d659ebb47f0a0a35a54", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -43962,14 +32319,8 @@ "total_amount": 50, "id": "1696895170006", "history_id": "1696895170006", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, + "date_created": "2023-10-09T23:46:10.006Z", + "date_last_updated": "2023-10-10T12:08:30.416Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -43979,16 +32330,12 @@ "date_approved": "2023-10-10T12:08:30.416Z", "money_release_date": "2023-10-10T12:08:30.416Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "wasDebited": true }, - "revision": "8bb25ebcdd6142d09509cff2", + "revision": "c88c8f334528452eb55e43ad", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -43996,10 +32343,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", - "revision": "8c3be3887cd143e58a9b9c6f", + "revision": "44fc278159b64b7c9925108a", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44015,24 +32362,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "costs": [] }, - "revision": "e002c50364ae45208b0a6d77", + "revision": "ef099317d8154a62acadf989", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44040,10 +32375,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696951453164", - "revision": "90033b6867a441238d2387a6", + "revision": "c6481b1b8b6e41f9bb9326f4", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44059,18 +32394,9 @@ "total_amount": 80325, "id": "1696951453164", "history_id": "1696951453164", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - }, + "date_created": "2023-10-10T15:24:13.164Z", + "date_last_updated": "2023-10-10T15:24:13.164Z", + "date_of_expiration": "2023-10-10T15:24:13.164Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -44079,10 +32405,10 @@ "description": "Compra de 80.325,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "80f4a63ef7b4417b81328046", + "revision": "d1a9ec5080424770b569cec1", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44090,10 +32416,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "47dfc76b63ca427aad3bd981", + "revision": "3aecca731544476b9c667bec", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44101,10 +32427,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ad49fa61a73a42dfbc31b85f", + "revision": "4fe5c09097c440538f6fd1ff", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44113,24 +32439,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "limitUsed": 0 }, - "revision": "a8d3d4bf423c46bb8b30bb07", + "revision": "0c1a07440fc64bc7b20a543e", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44141,24 +32455,12 @@ "dataModificacao": 1696456086300, "dateValidity": 1696456087509, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "balancesModificacao": "2023-10-16T03:00:00.000Z" }, - "revision": "68c726fb5e124152ac1ef2aa", + "revision": "d9461483cf984dc78fa3d34d", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44166,10 +32468,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4f149fe04f3a4cb5b5dc80ed", + "revision": "626b0150ff56497bb8373b49", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44177,10 +32479,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2a0ff0ca1d7a44f4a5b7707a", + "revision": "ea3e269dd7fb458597d37e96", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44191,24 +32493,12 @@ "dataModificacao": 1677897482019, "dateValidity": 1678002144888, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "currencyType": "USD" }, - "revision": "f93a359c7e504f06858fb669", + "revision": "8145f0f974dd4452b91ee07d", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44218,24 +32508,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.9900000000000001, - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "amount": 0.9900000000000001 }, - "revision": "4b890923b2954a6ab06afc21", + "revision": "19d58ea2d7424d378f5abdf4", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44243,10 +32521,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e084ed2f621942fb98d0a808", + "revision": "47fae3ab256b4f7d9319005d", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44254,24 +32532,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "IVIPCOIN LTDA", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "3d7b2f855ee341cd9b431a41", + "revision": "c1509cb5a39448869d22bb4b", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44279,10 +32545,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "92c44d7aaa1049f8b0716daa", + "revision": "71a677332c954c8c88786527", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44294,24 +32560,12 @@ "net_received_amount": 0, "total_paid_amount": 100.99, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "installment_amount": 0 }, - "revision": "78861812fd354ac3bb984514", + "revision": "8d59757c5b6d4811bc817cf6", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44319,10 +32573,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55838306631/ticket?caller_id=1310149122&hash=c84a0406-1525-4894-8c96-d700cf2da43d", - "revision": "a452cd95216f4c7e8aa494a5", + "revision": "96990ea6e99e4783a843b3e1", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44330,10 +32584,10 @@ "content": { "type": "STRING", "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558383066316304189E", - "revision": "35bc061209924d15aa5fc491", + "revision": "f52062d01e4b4731a3b75410", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44341,10 +32595,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIwElEQVR42u3dW67rNgwFUM3A85+lZ+CiRYsTi5ty+gDaWisfBzfXr+X8EaS2xvU/+pyDlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlvaf1475c/z+fz9Hp6t/O+XXm4zpX58n/xytD/rt6HReYtDS0tLS0tLS0tLS0m6iPQLlhvq5+3Sn35+zJk+8n8v+OPB5l6SipaWlpaWlpaWlpaXdQPtZQE7G815FnvdHTFVfuqKpItNzC4OWlpaWlpaWlpaWlnZb7Y9ses6Vj6a3mm6V6sTyh5aWlpaWlpaWlpaWlvZ+6SeqbcmdZWRyeqHULZxOpqWlpaWlpaWlpaWl3Vubi7vpsdNzahGYxjbTa0yy9fAnLS0tLS0tLS0tLS3t+7UppeRf+PM3MlVoaWlpaWlpaWlpaWn/z9r1pxR8q8Vx7Yjm5EnpkYsPLS0tLS0tLS0tLS3t27VpaPLs+nfNore2Fi0vdJvinMYxc7OPlpaWlpaWlpaWlpb23dqUqZ/y+NMyuUWxWN+vLLGro5w55J+WlpaWlpaWlpaWlnYDbboq5UOmwvCL0Mn8Vs2tQvIkLS0tLS0tLS0tLS3tm7Vt2fh598dAyMWzk/sM+SdX30GkpaWlpaWlpaWlpaV9s/Yz1LGG8k+5/eWyM/xpj9Y5zfJjXLS0tLS0tLS0tLS0tNtp03K1ttWW2nQF0GyAXWrRVJBmPC0tLS0tLS0tLS0t7Zu1U+2YSro8JVlHKr9q4k1r4NIqvOOb3dZoaWlpaWlpaWlpaWnfoi0tuSvsUD0Wrbt02RRkkuJLyv+NgKelpaWlpaWlpaWlpd1CO9Vwj4EiZTbyDNopanJqBU4/xs1Y3LS0tLS0tLS0tLS0tO/WlttdXb9t3MNIajduPYQ5tf1K5v8I05m0tLS0tLS0tLS0tLRbaOvCtfRJJWLpEa7TTKZHnnk685vd1mhpaWlpaWlpaWlpaV+kzVXfKFtXlzqxjl6WLdea4Mg8sXmUP7S0tLS0tLS0tLS0tDtppxJx3AHJk0Yv1/Elx1M/sOy7RktLS0tLS0tLS0tLu4W2NuJSi6+si7vCXGVqFNYi9fMNmnK1m7qkpaWlpaWlpaWlpaV9o/Ysi9RyETh92r3YVgvcuv7dfJfnmpeWlpaWlpaWlpaWlvY92rbqq1tXT0kjix0BJveRD7RF5UPNS0tLS0tLS0tLS0tL+yJtTnEcnewsGf2lzzfC6za80je8vkuPpKWlpaWlpaWlpaWlfZE2l351zVrbzitf6+Rknthsv54P3T1aWlpaWlpaWlpaWtpXaafdqNuycTq5FHxnCJNM7by08i0FTF60tLS0tLS0tLS0tLTbaJsZyvVquBT0WOrOx/5d0aafhZaWlpaWlpaWlpaWdgNtiiCZFKXMO7sXOrqAknT78+nhtLS0tLS0tLS0tLS079ceYXwyrWO75qbbyKOXdSFcKi/Tj1HKS1paWlpaWlpaWlpa2i20zT3DqrRR9sNuVs2V5W+3a6eXTEn/tLS0tLS0tLS0tLS0+2hTMkjp3zUL3HIr8DaxuVj+lp47HjNVaGlpaWlpaWlpaWlp36b9yjNCJTgFj4x7eXl1gZDncuryeNgFm5aWlpaWlpaWlpaW9n3aqelWbnc978B2hfHJo4svGWOk2c3CuGhpaWlpaWlpaWlpaXfSJuhULJaoklHySkrZ2LzaUzDKcy+SlpaWlpaWlpaWlpb2VdpKbrNJ0tK5z6/rVmA7YZn+RUtLS0tLS0tLS0tLu4+23mQagWxPWdwgdfKushAuT10ej71IWlpaWlpaWlpaWlraV2lTKTnVjkf+miMkx2cTb7pznrpMpSQtLS0tLS0tLS0tLe0u2kw5u7iRK2/DlkJGcmjJ1W0kMEajoqWlpaWlpaWlpaWl3UJ7ftmwO/LXMqy5Wv5WytVV4AktLS0tLS0tLS0tLe0W2sVwZTM+mXJGUuBJiTlp3+C6dwZpaWlpaWlpaWlpaWn30TZFYNmwum3i1fZgGq586hGefVYlLS0tLS0tLS0tLS3tm7WtJ6f1X12QSdPEm0Yv20HPchdaWlpaWlpaWlpaWtr9tOtdq9Nua9OBKdo/D2vW5JI8hHnR0tLS0tLS0tLS0tLupJ3unkYlS8jICrqY52y2x05BlLS0tLS0tLS0tLS0tJtob2XjNCWZlqt9FoarGP+Mr+/8XFTS0tLS0tLS0tLS0tK+W9vuRp3SR6be37GY08y5lFcZ4Jx+m9BLpKWlpaWlpaWlpaWlfbP2qbF3ZVl+q+seEnmWPt9TZ7BuzUZLS0tLS0tLS0tLS/t2bRmuHGUEcnq1DDhz22/6CUq5OrroE1paWlpaWlpaWlpa2n20dUFamrBchEke91e/dQtL6y7tlt0Un7S0tLS0tLS0tLS0tJto2xru7NbAjedokaucnGctp9bi9V13j5aWlpaWlpaWlpaW9kXabKz7pLWzkYshzGkRXXMgl7C0tLS0tLS0tLS0tLSbacfTFte5wrvCHmsVn2TrUpKWlpaWlpaWlpaWlnYfbfp8PuLMo5clgiRVlqlh990+bsupS1paWlpaWlpaWlpa2ldpS2jI48P+cp8vrXy7uo3bDlpaWlpaWlpaWlpa2m20617dGM3JaWe1ZrjyKUzyz1SRtLS0tLS0tLS0tLS0r9SmAjLNRuYu4Cqov23npZ8l1ae0tLS0tLS0tLS0tLR7akfIDRkhAfIKefzNnm3t1OX0us/dPVpaWlpaWlpaWlpa2g20i4j9Jpn/CB2/1M67uunMOsBJS0tLS0tLS0tLS0u7j3aN/5ymXPf+0t7Xq3Vx69V1tLS0tLS0tLS0tLS0m2jr4GNepHbOw5CjnJdW0p3h2qv8DmmJHS0tLS0tLS0tLS0t7Rba//6HlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlvYf0/4CTrnpnMA9aVMAAAAASUVORK5CYII=", - "revision": "caf151b5b25144c4bfbc7d50", + "revision": "cfdc4b7cb1cd40d3ab3d2828", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44352,10 +32606,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "6b02bd52bc3e494aa2d43715", + "revision": "bea388272e0f4587b89e2ced", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44370,28 +32624,19 @@ "total_amount": 100.99, "history_id": 1679068099316, "id": 55838306631, - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - }, + "date_created": "2023-03-17T11:48:19.967-04:00", + "date_last_updated": "2023-03-18T11:50:47.000-04:00", + "date_of_expiration": "2023-03-18T11:48:19.697-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", "status_detail": "expired", "currency_id": "BRL" }, - "revision": "45f87ef0423c440980cfa332", + "revision": "7fe6aaee53c64f96807aa6b4", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44399,10 +32644,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0413.9580.8163.2810-30", - "revision": "080424a9dfeb45c2aa950c15", + "revision": "322da02fffbd471a9851c526", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44412,24 +32657,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.9900000000000001, - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "amount": 0.9900000000000001 }, - "revision": "4b1f7cb87bc84d7789997928", + "revision": "06706a6dd32a4165b66fd8fb", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44437,10 +32670,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3c8bdfd186cb42b0a7eddab3", + "revision": "1258e5fa98284e52a106c45a", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44448,24 +32681,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "IVIPCOIN LTDA", - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "a2a79e74dfb045ba9d766c03", + "revision": "1898097aa59d410eb1a87d16", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44473,10 +32694,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8ccc88586f9e442380985623", + "revision": "82f7a39a9e1f4ed79baf3fff", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44488,24 +32709,12 @@ "net_received_amount": 0, "total_paid_amount": 100.99, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "installment_amount": 0 }, - "revision": "569b1f3ddc7d46b7af964e53", + "revision": "000d6d3109984b7ca1719bbd", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44513,10 +32722,10 @@ "content": { "type": "STRING", "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558382392976304091C", - "revision": "7471b9d9854e477f93ccdbd1", + "revision": "6f2b451c2d2a4370b7b53df2", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44524,10 +32733,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55838239297/ticket?caller_id=1310149122&hash=39da82e9-af89-4bbc-a0a8-066f192eab65", - "revision": "a4edb2e8550d42c4b7fa0a8a", + "revision": "bfe6e8dce0a5464c89e71d38", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44535,10 +32744,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIu0lEQVR42u3dTW7jOBAGUN5A97+lbqDZDDoW6ysqQTcG0+LzIkgcS3r0rlB/4/qLXuegpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpf3z2jG/jn/f+/rvdHV57yyXfb1XLjt//ajXTgxaWlpaWlpaWlpaWtpNtNM9j/tv5+cjPu90/jrQkclfT54+/Pm5r8saBi0tLS0tLS0tLS0t7RbazwCyGqeI8dM9wgnOEZOHEz49tzBoaWlpaWlpaWlpaWm31V73OHGUXF0JG8+c8Vsk+47wg5aWlpaWlpaWlpaWljak33IQOFVY3l7TcVO2cPowLS0tLS0tLS0tLS3t3toc3E2PbXJ6092n39IxJtm6+JOWlpaWlpaWlpaWlvb92hXgP/zxGzNVaGlpaWlpaWlpaWlp/2bt+tVGgmV8yRGa3pq7pOmRixctLS0tLS0tLS0tLe3btalo8szZuLbprY1Fy4GmoZNXGT+5zO7R0tLS0tLS0tLS0tK+T5tm6j/dPbXEXd2g/jOcOYWhoxvyT0tLS0tLS0tLS0tLu4E2XTUNKCknaPekjTLXJCf72ludqxpRWlpaWlpaWlpaWlrat2kztIZ5n+9dIQd33asujxJ3tlWXaaH2suqSlpaWlpaWlpaWlpb2VdoU9bUllSmT91Sieeb2t+m55eujpaWlpaWlpaWlpaXdTHtL3U1PLAWXTRSZrki8coJU1ElLS0tLS0tLS0tLS7uVNod0aW5Is3ft+0m8ZuhkOdpBS0tLS0tLS0tLS0u7ibY0vTV5vtQcN929nPm8D5Mc9w9P742Ap6WlpaWlpaWlpaWl3UqbB0IeIQistZFFe+T3phO0OcLnKJKWlpaWlpaWlpaWlvY92qaGcjrB501Sb9sRPOMeaNb3ptC0VGfS0tLS0tLS0tLS0tJuoE2Na/ksI8iubi3A7bLc+dYMrPzOtjVaWlpaWlpaWlpaWtoXadNYkrS6OsWJJdA87inDZnDkYujkEdZy09LS0tLS0tLS0tLSbqFNPWu3dN6iXe0qgDy+5FjmA6dkHy0tLS0tLS0tLS0t7T7amogrhY9XuXtJ0x1dojAFqVeYWtmOKqGlpaWlpaWlpaWlpX279rw3qbVB4Mh9cWVP2qrBrcvfzXd5jnlpaWlpaWlpaWlpaWnfo03kafhjTd2lwswSHabazZFnUE5f0EPMS0tLS0tLS0tLS0tL+yLtoq5yGiNylkiwzQzm406JwpHvV8i0tLS0tLS0tLS0tLTv1qa8XOpZKwP9cyIuds2tKzbLn+dDdo+WlpaWlpaWlpaWlvZV2mk8fwkbU/y3CPia2s0mimy3tz3EvLS0tLS0tLS0tLS0tK/Sptu13XBHni+S487H/F0KTafvkJaWlpaWlpaWlpaWdgttGkFS9lw3dZqLAzVtcmlxW/twWlpaWlpaWlpaWlra92vrOP22jy3XS6Zrj3uHXA0v05dRwktaWlpaWlpaWlpaWtottM09Q1faKLWWTddcaX87yx63Ms2kDVxpaWlpaWlpaWlpaWnfrU2TQUr+Lg30PxepwKlNbkrdlRMciwpQWlpaWlpaWlpaWlrat2uT57vGhecKUWSNO8tz845sWlpaWlpaWlpaWlraN2vLSuozBIaju+co66yn0stcidk8vPyXlpaWlpaWlpaWlpZ2P227vzqvx75CdeZVosN2OOVicslBS0tLS0tLS0tLS0u7jbbWX6bZJCUVOOHTArUzZAaPnFUsv9HS0tLS0tLS0tLS0u6jPe/B4hTXjfycFEW229YW38jZhZIXLS0tLS0tLS0tLS3tNtqU55tix7rn+vMEdcJJW5OZqy5TKElLS0tLS0tLS0tLS7uLdrHi+ui0o1RipiAwDy25ukUCYzQqWlpaWlpaWlpaWlraDbQp6stTSo6S3ZvqKp9ShiPO7R9pzAktLS0tLS0tLS0tLe1O2tGtXLty+WSaM5IGnpQxJ+0Jrhyf0tLS0tLS0tLS0tLSvl/bBIFPy9Ka7rV2eH/SLuJOWlpaWlpaWlpaWlraHbVXmAC5jv+mIswaVE6ll22hZ7kLLS0tLS0tLS0tLS3tLto8cf8H29bSZWkgZBo6WX7Lf9LS0tLS0tLS0tLS0r5ZWx7RLEtLRZgtdFHPmdZj10GUzzWitLS0tLS0tLS0tLS0b9F+3jgttk6JvbRZLY05Sfi2xW4RVNLS0tLS0tLS0tLS0r5ZWwokx73fbUrJXRk63a9sZWtkU4z5kykltLS0tLS0tLS0tLS079EeXQ9cihhHmFKSqjPrzJEUVGYBLS0tLS0tLS0tLS3tjtqpIrJZhZ1KKqcwdP0VlHB1dKNPaGlpaWlpaWlpaWlpd9FOZZZpSGS6XcnQXaFXLqXu0rbsJvikpaWlpaWlpaWlpaXdR5sKLtPgyDR4JGUB04dzreX0FVwP2T1aWlpaWlpaWlpaWtr3aVP3Woosn2sja9buHCN9I2mMf17wRktLS0tLS0tLS0tLu492PK247iK8+kq9clW2DiVpaWlpaWlpaWlpaWn30abXer7/lLDLOb00VvLIZZaLSf+0tLS0tLS0tLS0tLQbaNdBYHrYYuN1GjCZqi6r+yc7CGhpaWlpaWlpaWlpaV+mrag8GvLIib3pLqm4crG97cdRJC0tLS0tLS0tLS0t7Su1ZdLIyLWRadL/elB/bnBrTpBDWFpaWlpaWlpaWlpa2h21t2AxRXipy61kC49ctllSfGc4KS0tLS0tLS0tLS0tLe2yOa48Z3qv3YJ9ddWZtZ2OlpaWlpaWlpaWlpZ2H+0a/xkdpgXYU+6v1mm2fXHf3BdAS0tLS0tLS0tLS0v7bm0tfMxNaquIcdH0Vj+X+uemFjtaWlpaWlpaWlpaWtp9tP//Fy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS3tH9P+A9AQYpnhsXB9AAAAAElFTkSuQmCC", - "revision": "563d16d2c0284d9c89aa2039", + "revision": "0d0c115ba4ef4d75bfd75eca", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44546,10 +32755,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "69a64a247cda42fe96c4d9e7", + "revision": "af32fd57f76547e4b687d519", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44564,18 +32773,9 @@ "total_amount": 100.99, "history_id": 1679068275059, "id": 55838239297, - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - }, + "date_created": "2023-03-17T11:51:15.826-04:00", + "date_last_updated": "2023-03-17T11:52:17.000-04:00", + "date_of_expiration": "2023-03-18T11:51:15.577-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", @@ -44585,10 +32785,10 @@ "money_release_date": "2023-03-17T11:52:17.000-04:00", "wasDebited": true }, - "revision": "131e0b0117e14c3eaaa0a4c0", + "revision": "cd30982204ca4d7b9ea92a51", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44596,10 +32796,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0413.9580.8163.2810-30", - "revision": "bc3a4438b0e2449f8a4b28d3", + "revision": "3cffa602dc274a6089ee6aba", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44617,24 +32817,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "costs": [] }, - "revision": "7be7ece83d0b4d03b9bc7476", + "revision": "7553fd27dba4462fad444e2d", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44650,18 +32838,9 @@ "original_amount": 581846, "total_amount": 581846, "id": 1679267870429, - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - }, + "date_created": "2023-03-19T23:17:50.429Z", + "date_last_updated": "2023-03-19T23:17:50.429Z", + "date_of_expiration": "2023-03-19T23:17:50.429Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -44670,10 +32849,10 @@ "history_id": 1679267870429, "description": "Compra de 581846 IVIP por 100 BRL" }, - "revision": "9cafa97f3aed4105bea76d9b", + "revision": "cd6aaeb513334325ae038836", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44681,24 +32860,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "costs": [] }, - "revision": "be24931964494932b9e23eff", + "revision": "ca024e6e0a984d85829ec8fe", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44713,27 +32880,18 @@ "total_amount": 581846, "history_id": 1686586586983, "id": 1686586586983, - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - }, + "date_created": "2023-06-12T16:16:26.983Z", + "date_last_updated": "2023-06-12T16:16:26.983Z", + "date_of_expiration": "2023-06-12T16:16:26.983Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "35bbcec66246415c97751773", + "revision": "246419bc3f6d41b4865d4f66", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44741,10 +32899,10 @@ "content": { "type": "STRING", "value": "Saque de 581.846,00 IVIP para a carteira 0x37E0fCB4d560966a0564DA6CD53002e1ec1eb98B", - "revision": "3fb9f8760a3a4e1b933a6094", + "revision": "f020e158e84743d98264a459", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44752,24 +32910,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - } + "costs": [] }, - "revision": "64bd091c47f64d73a69dde97", + "revision": "1aec1207f5e547bc82ca48d9", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44784,27 +32930,18 @@ "total_amount": 581846, "history_id": 1686586986320, "id": 1686586986320, - "date_created": { - "type": 6, - "value": 1701459383499 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383499 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383499 - }, + "date_created": "2023-06-12T16:23:06.320Z", + "date_last_updated": "2023-06-12T16:23:06.320Z", + "date_of_expiration": "2023-06-12T16:23:06.320Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "2dcda7f083654174ae85e672", + "revision": "a53b0a1a4be9401dbfb66e44", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44812,10 +32949,10 @@ "content": { "type": "STRING", "value": "Saque de 581.846,00 IVIP para a carteira 0x37E0fCB4d560966a0564DA6CD53002e1ec1eb98B", - "revision": "5b70aa2b8f7e4581a512aa20", + "revision": "2b8709e653cc4cef94954a54", "revision_nr": 1, - "created": 1701459383499, - "modified": 1701459383499 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44831,24 +32968,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "costs": [] }, - "revision": "3435fb85875d4394bf5a7eb2", + "revision": "e53b9a98f689431a81a15861", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44856,10 +32981,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/041395808163281030/history/1690134068779", - "revision": "6eaa09e2d223499b8bc80564", + "revision": "4ed940941860472aacc979f0", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44874,18 +32999,9 @@ "total_amount": 400954, "id": 1690134068779, "history_id": 1690134068779, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - }, + "date_created": "2023-07-23T17:41:08.779Z", + "date_last_updated": "2023-07-23T17:41:08.779Z", + "date_of_expiration": "2023-07-23T17:41:08.779Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -44893,10 +33009,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "f89ca6df30dd4208a5d93e26", + "revision": "f4c0385555944f83bc0b8c98", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44904,10 +33020,10 @@ "content": { "type": "STRING", "value": "Saque de 400.954,00 IVIP para a carteira 0x8B2f02C31F9ab77685A7c7546e3768e290DD6394", - "revision": "81d0d862f96248a6a9f66e04", + "revision": "00adcf4933ee492ebf230380", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44915,10 +33031,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "76f33f9826a246a28a9bf399", + "revision": "c721e69d26194a60b61bcdc7", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44928,24 +33044,12 @@ "value": { "available": "581846.00000000", "symbol": "IVIP", - "value": 73.41, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "value": 73.41 }, - "revision": "1151b1b88fcd4ce5971774be", + "revision": "2eb6cafecbf34bf1b5160804", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44953,10 +33057,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "80b972bba9384f8fa5e0bd08", + "revision": "715f09537e7b4e8db1f8a6e7", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44964,10 +33068,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a9b3658a5f2e414c8dfe8a44", + "revision": "2e748015c8264da6898677f7", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -44976,24 +33080,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "limitUsed": 0 }, - "revision": "74db222d787b4bd588924f29", + "revision": "0d251877fecf4d89b92c0fcf", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45005,24 +33097,12 @@ "dateValidity": 1679068061044, "currencyType": "USD", "totalValue": 18.88, - "balancesModificacao": "2023-10-11T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "balancesModificacao": "2023-10-11T03:00:00.000Z" }, - "revision": "ab41d2de00a247ed8630c4c4", + "revision": "6697ee2f561341ecbb35ac66", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45030,10 +33110,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "80d1174b108c468d84c98813", + "revision": "2603de45e58b4b5abd12ff75", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45041,24 +33121,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "costs": [] }, - "revision": "2bd1def6a12f46b394a67289", + "revision": "40634633ac954c7992339092", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45073,27 +33141,18 @@ "total_amount": 100, "history_id": 1689548630515, "id": 1689548630515, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - }, + "date_created": "2023-07-16T23:03:50.515Z", + "date_last_updated": "2023-07-16T23:03:50.515Z", + "date_of_expiration": "2023-08-15T23:03:50.515Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "e9c9d27ed1dd46a7949171d7", + "revision": "b246d399dac1448f8cf845d1", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45101,10 +33160,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0429.6416.2467.3393-60", - "revision": "4986b63413204ddca0fd7ce6", + "revision": "050eab20b3d141cdb2ff3d87", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45112,10 +33171,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "64c0e79cd9b34811a91726e9", + "revision": "1626ecea25654a32a62ddfbc", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45123,10 +33182,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d756ef4e73184d2ea515d66f", + "revision": "56ac5a39a55e4ddb893dc9ae", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45135,24 +33194,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "limitUsed": 0 }, - "revision": "6c595365d8b44907a5088ac4", + "revision": "846c2160060f4154a29b7e24", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45163,24 +33210,12 @@ "dataModificacao": 1689548492145, "dateValidity": 1689548492145, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "currencyType": "USD" }, - "revision": "a02da9e3fe5045a4b438862a", + "revision": "371a020b2f1f41c8bc8c457c", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45190,24 +33225,12 @@ "value": { "available": "127146.00000000", "symbol": "IVIP", - "value": 13.81, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "value": 13.81 }, - "revision": "8828b3a8fe184ecca2ca68c7", + "revision": "ad3d1467f9d0449f97c4b1db", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45215,10 +33238,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f4f96164fe8c4f8697b56d91", + "revision": "cc8e766c5de24c6ca3a4838e", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45227,24 +33250,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-01T03:44:50.801Z", - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + ".val": "2023-11-01T03:44:50.801Z" }, - "revision": "b39e623f45c84387bb776768", + "revision": "d52a950a27394f05ad7364d7", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45260,24 +33271,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "costs": [] }, - "revision": "37c33ac0390a445ab6bbb724", + "revision": "0e9f0031513249679008aab1", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45285,10 +33284,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696218290801", - "revision": "3fb68aad318d4102965cb130", + "revision": "aa5230f2694849f1ad7dbd39", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45304,29 +33303,19 @@ "total_amount": 150, "id": "1696218290801", "history_id": "1696218290801", - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, + "date_created": "2023-10-02T03:44:50.801Z", + "date_last_updated": "2023-10-02T03:44:50.801Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "status_detail": "pending_waiting_payment" }, - "revision": "61d28caf354a40bab83a2495", + "revision": "453fa56598d84dee924981cd", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45334,10 +33323,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 150,00 BRL para a carteira iVip 0441.0726.0739.8660-40", - "revision": "5fb7b025cc9a4c438b866cb8", + "revision": "194de415f27a4a679853546f", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45346,24 +33335,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-04T13:24:49.783Z", - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + ".val": "2023-11-04T13:24:49.783Z" }, - "revision": "b8eba2b55483496e9c610b77", + "revision": "16255a9440374a2caa333c3e", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45379,24 +33356,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "costs": [] }, - "revision": "d9d1361bef034047bed8722b", + "revision": "9511f5d23ce842bbbca83fea", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45404,10 +33369,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696512289784", - "revision": "fa5eeada30d246d9bea8a28f", + "revision": "2c9a9de1e7bd4a0ab8dce8b7", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45423,29 +33388,19 @@ "total_amount": 100, "id": "1696512289784", "history_id": "1696512289784", - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, + "date_created": "2023-10-05T13:24:49.784Z", + "date_last_updated": "2023-10-05T13:24:49.784Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "status_detail": "pending_waiting_payment" }, - "revision": "b1f24fa6042140a0b160ae2d", + "revision": "ed30db1ee1ee4260bf3bc3af", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45453,10 +33408,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0441.0726.0739.8660-40", - "revision": "ab67f2a329494eb184353140", + "revision": "6b36abf7eb3d4fc6aca3500c", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45465,24 +33420,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-06T13:24:29.126Z", - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + ".val": "2023-11-06T13:24:29.126Z" }, - "revision": "4c9cd60fc01e4a188acea1fb", + "revision": "1e9d1b00777e4c259461b2a5", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45498,24 +33441,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "costs": [] }, - "revision": "19d603269dc045a9913ab5ed", + "revision": "03aa7454f15f4232b700f8fc", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45523,10 +33454,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696685069127", - "revision": "3a52e7744f414daab86cecf0", + "revision": "7c238a8fdcf94e9dbc53b9df", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45542,14 +33473,8 @@ "total_amount": 100, "id": "1696685069127", "history_id": "1696685069127", - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, + "date_created": "2023-10-07T13:24:29.127Z", + "date_last_updated": "2023-10-07T14:40:38.574Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -45559,16 +33484,12 @@ "date_approved": "2023-10-07T14:40:38.574Z", "money_release_date": "2023-10-07T14:40:38.574Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "wasDebited": true }, - "revision": "058efb83df5646bca8bdadc2", + "revision": "eb4b6fd6b0f74fdf9c7a7aa5", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45576,10 +33497,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0441.0726.0739.8660-40", - "revision": "a6b50d825481490691106536", + "revision": "07f57ef44a9b42b9bcdba0a0", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509550, + "modified": 1701463509550 } }, { @@ -45595,24 +33516,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "costs": [] }, - "revision": "8f136f2db7ad43ffb9be638e", + "revision": "ba408a2af1a8466092e10423", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45620,10 +33529,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696690479419", - "revision": "55f6c1d57bb347ada2152932", + "revision": "79ed46096a1c42888d8c5486", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45639,18 +33548,9 @@ "total_amount": 127146, "id": "1696690479419", "history_id": "1696690479419", - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - }, + "date_created": "2023-10-07T14:54:39.419Z", + "date_last_updated": "2023-10-07T14:54:39.419Z", + "date_of_expiration": "2023-10-07T14:54:39.419Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -45659,10 +33559,10 @@ "description": "Compra de 127.146,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "215f4a039f864bc583004afb", + "revision": "109a7435f22e4f1c9945c6a4", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45670,10 +33570,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "58eccb4f9db149dc8964fee4", + "revision": "96fdd29c66204645a87de200", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45681,10 +33581,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a73b80b013b0441fb5ee6b34", + "revision": "2d96ec354d8d44f7958029b6", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45693,24 +33593,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "limitUsed": 0 }, - "revision": "d07235e4f63f46029bfe8277", + "revision": "011f1f0ae6204f2d943e3564", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45721,24 +33609,12 @@ "dataModificacao": 1696161500774, "dateValidity": 1696161500803, "currencyType": "USD", - "balancesModificacao": "2023-10-11T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "balancesModificacao": "2023-10-11T03:00:00.000Z" }, - "revision": "444d5d2deaa947f6bca005fa", + "revision": "692931c2bc46476fba07b6be", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45746,10 +33622,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "87b912ce7ac34009b7365b07", + "revision": "4f9160f53c1f4290ad075e26", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45757,24 +33633,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "costs": [] }, - "revision": "7b9d38cef49e4b62bdafc1be", + "revision": "5c67326b294a4b6fbe594975", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45789,27 +33653,18 @@ "total_amount": 20, "history_id": 1678092684774, "id": 1678092684774, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - }, + "date_created": "2023-03-06T08:51:24.774Z", + "date_last_updated": "2023-03-06T08:51:24.774Z", + "date_of_expiration": "2023-04-05T08:51:24.774Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "7d68d4ef9ab948c49feafd5e", + "revision": "5485f42d23414c69ba476fdf", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45817,10 +33672,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0443.9842.9081.9756-60", - "revision": "aecda63aa36140febcba2b8e", + "revision": "e68601956c2d4de6bdd4b64b", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45828,10 +33683,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "13f3e08cc11242d2a43509c1", + "revision": "c8a8b7a3c5464ae28bcd0432", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45842,24 +33697,12 @@ "dataModificacao": 1678092570010, "dateValidity": 1678110570040, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "currencyType": "USD" }, - "revision": "5c8d39addeb44b269bcc4f41", + "revision": "1fc32c3d4cb94ed7b6ac5eaa", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45869,24 +33712,12 @@ "value": { "available": "615.00000000", "symbol": "IVIP", - "value": 0.094, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "value": 0.094 }, - "revision": "38d655e0b8f7454d9510b921", + "revision": "bd314487ec2040fd84055f91", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45894,10 +33725,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3a8d12897b0b48478dc513ec", + "revision": "c0f1493a8b5e413cb88ddb47", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45905,24 +33736,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "costs": [] }, - "revision": "0f7b2085b3a2481fb0363727", + "revision": "7f648b54ff524fbd9c6c6cc0", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45937,18 +33756,9 @@ "total_amount": 1500, "history_id": 1678363004367, "id": 1678363004367, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - }, + "date_created": "2023-03-09T11:56:44.367Z", + "date_last_updated": "2023-03-09T11:57:54.662Z", + "date_of_expiration": "2023-04-08T11:56:44.367Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -45958,10 +33768,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "8a90c49d0973456e8a495408", + "revision": "b75f7b8cd5a040e18a212ca4", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45969,10 +33779,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0451.2281.2371.7113-40", - "revision": "552e32ef46af41bda0d67301", + "revision": "1b5eb310aed3441b92e1bca7", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -45980,24 +33790,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "costs": [] }, - "revision": "9e962ad4c5b245298ec92e1c", + "revision": "ac95cf4201dd489c9cf8189c", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46012,18 +33810,9 @@ "total_amount": 150, "history_id": 1678578646817, "id": 1678578646817, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - }, + "date_created": "2023-03-11T23:50:46.817Z", + "date_last_updated": "2023-03-11T23:52:26.705Z", + "date_of_expiration": "2023-04-10T23:50:46.817Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -46033,10 +33822,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "80ebf03e11b1436ca26b53d6", + "revision": "fefc5354bb23424d89989b59", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46044,10 +33833,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0451.2281.2371.7113-40", - "revision": "b315c74173944351b2ba0d3a", + "revision": "ab1b7504ac024db7b4932305", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46065,24 +33854,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "costs": [] }, - "revision": "625e6d78be554518bcb60269", + "revision": "9a8c79ad279a4feca5d46b76", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46098,18 +33875,9 @@ "original_amount": 9610615, "total_amount": 9610615, "id": 1679266969508, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - }, + "date_created": "2023-03-19T23:02:49.508Z", + "date_last_updated": "2023-03-19T23:02:49.508Z", + "date_of_expiration": "2023-03-19T23:02:49.508Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46118,10 +33886,10 @@ "history_id": 1679266969508, "description": "Compra de 9610615 IVIP por 1650 BRL" }, - "revision": "63ffd650c1694dda88a374b8", + "revision": "43cd9c2b384f4d6dac0baa03", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46139,24 +33907,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "costs": [] }, - "revision": "e895092009f64f11b6e64d36", + "revision": "0e92c60054514c8db2a0938c", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46172,18 +33928,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1681517575873, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - }, + "date_created": "2023-04-15T00:12:55.873Z", + "date_last_updated": "2023-04-15T00:12:55.873Z", + "date_of_expiration": "2023-04-15T00:12:55.873Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46191,10 +33938,10 @@ "currency_id": "IVIPAY", "history_id": 1681517575873 }, - "revision": "b2d1873138094ce8b1f84f23", + "revision": "4fe79aefdd1d4fea886881d1", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46202,10 +33949,10 @@ "content": { "type": "STRING", "value": "Compra de 1.000,00 IVIPAY por 100,00 IVIP estabilizando US$ 0,00", - "revision": "8d5007cc66b24373a292ea22", + "revision": "011dc11565ed4a41b67fc7e2", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46223,24 +33970,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "costs": [] }, - "revision": "9b0ef2cc79b4472d8d60cb5f", + "revision": "1448a6ace95b400cb3ea9d88", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46256,18 +33991,9 @@ "original_amount": 100, "total_amount": 100, "id": 1685393623279, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - }, + "date_created": "2023-05-29T20:53:43.279Z", + "date_last_updated": "2023-05-29T20:53:43.279Z", + "date_of_expiration": "2023-05-29T20:53:43.279Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46276,10 +34002,10 @@ "history_id": 1685393623279, "description": "Compra de 100,00 IVIP por 1.000,00 IVIPAY" }, - "revision": "97fae32d015245b2a3ba1cda", + "revision": "6ec6c87bdaa94b3eb874e20a", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46297,24 +34023,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "costs": [] }, - "revision": "edbb434f9fa2439cbec1be3b", + "revision": "5cfd2e33a6444536b370d384", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46329,18 +34043,9 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685666780649, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - }, + "date_created": "2023-06-02T00:46:20.649Z", + "date_last_updated": "2023-06-02T00:46:20.649Z", + "date_of_expiration": "2023-07-02T00:46:20.649Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46348,10 +34053,10 @@ "currency_id": "IVIP", "history_id": 1685666780649 }, - "revision": "73ecb1623992457388d29f1b", + "revision": "9bca46a4f3ca4a2c90d2c73e", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46359,10 +34064,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "fab2cafac21040bfb810a16d", + "revision": "84a1ed4951eb4cc1ad8f10ef", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46380,24 +34085,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "costs": [] }, - "revision": "893c8acfe00a459397cbfbf4", + "revision": "fb0a543294a54f3ea9e98802", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46412,18 +34105,9 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1688400356570, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - }, + "date_created": "2023-07-03T16:05:56.570Z", + "date_last_updated": "2023-07-03T16:05:56.570Z", + "date_of_expiration": "2023-07-03T16:05:56.570Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46432,10 +34116,10 @@ "history_id": 1688400356570, "wasDebited": true }, - "revision": "14b7c23890384572a424d62b", + "revision": "69b57f7e351f43e689962b18", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46443,10 +34127,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "8d10832539924513be5ca5f1", + "revision": "79771aec157c4ebd9b0039dd", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46454,24 +34138,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "costs": [] }, - "revision": "d0d4ce99fd044a94844c9c7d", + "revision": "56768263a65342039de3f77f", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46486,18 +34158,9 @@ "total_amount": 9770000, "history_id": 1688402757097, "id": 1688402757097, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - }, + "date_created": "2023-07-03T16:45:57.097Z", + "date_last_updated": "2023-07-04T20:33:31.967Z", + "date_of_expiration": "2023-07-03T16:45:57.097Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -46507,10 +34170,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "d6008462acec47a0829a6594", + "revision": "ea1a58542aa74d47a5dc2667", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46518,10 +34181,10 @@ "content": { "type": "STRING", "value": "Saque de 9.770.000,00 IVIP para a carteira 0xB33c611edEE4ac91638b50464CB3bfd488551499", - "revision": "ce0f6cd1be394d499901ebd0", + "revision": "9d87675b811f4493983708f8", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46529,10 +34192,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6c54f28439f4475bac46de46", + "revision": "16b11a39a47046eb9f7f35dc", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46540,10 +34203,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "dc2024ea77a346e5b2d3cf6c", + "revision": "917eb939fb994a19bc678816", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46554,24 +34217,12 @@ "approvedLimit": 3000, "limitUsed": 0, "analysisRequested": "2023-04-04T17:16:15.345Z", - "lastReview": "2023-04-08T18:26:11.033Z", - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "lastReview": "2023-04-08T18:26:11.033Z" }, - "revision": "55f925a322fc4de8b2fd751e", + "revision": "75105fa24d124beb95bc61a3", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46583,24 +34234,12 @@ "dateValidity": 1678662517584, "totalValue": 0.17, "currencyType": "BRL", - "balancesModificacao": "2023-10-06T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "balancesModificacao": "2023-10-06T03:00:00.000Z" }, - "revision": "a04e979b1a5147d68c2f96de", + "revision": "f1d1703bcad14f9c845e9fa5", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46610,24 +34249,12 @@ "value": { "available": "32771309.00000000", "symbol": "IVIP", - "value": 4296.45, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "value": 4296.45 }, - "revision": "1edfc8bf9a1f4fb68f578a71", + "revision": "a29f4dda9c4e4f2383b47d9c", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46635,10 +34262,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "502aaa975dc547dfa4af57af", + "revision": "4c52f4be397d43c797926350", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46646,24 +34273,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "costs": [] }, - "revision": "4b592301e9b64488a7b21872", + "revision": "6036613e2f9143f48cbfbb54", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46678,18 +34293,9 @@ "total_amount": 4000, "history_id": 1678148520442, "id": 1678148520442, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - }, + "date_created": "2023-03-07T00:22:00.442Z", + "date_last_updated": "2023-03-07T16:04:13.026Z", + "date_of_expiration": "2023-04-06T00:22:00.442Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -46699,10 +34305,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "1d9e46af3ec9485789911361", + "revision": "079e5f6a523a479587c1a978", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46710,10 +34316,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", - "revision": "04332f943f8548298d5bfd0a", + "revision": "1dc22493dd2f48d1839c3ee4", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46731,24 +34337,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - } + "costs": [] }, - "revision": "bdf5e4d94fe54a4793a8e38c", + "revision": "c3bab304cfbf408c8ffd3d0c", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46764,18 +34358,9 @@ "original_amount": 28376575, "total_amount": 28376575, "id": 1678207899775, - "date_created": { - "type": 6, - "value": 1701459383500 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383500 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383500 - }, + "date_created": "2023-03-07T16:51:39.775Z", + "date_last_updated": "2023-03-07T16:51:39.775Z", + "date_of_expiration": "2023-03-07T16:51:39.775Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46784,10 +34369,10 @@ "history_id": 1678207899775, "description": "Compra de 28376575 IVIP por 4000 BRL" }, - "revision": "4eb454a81ef845198177bb04", + "revision": "a469aa7a9557457594f28661", "revision_nr": 1, - "created": 1701459383500, - "modified": 1701459383500 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46795,24 +34380,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "447ec31832cd44e88f050b15", + "revision": "5e664a32023948d5b416c2ae", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46827,18 +34400,9 @@ "total_amount": 4000, "history_id": 1689022785271, "id": 1689022785271, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-07-10T20:59:45.271Z", + "date_last_updated": "2023-07-10T21:11:29.899Z", + "date_of_expiration": "2023-08-09T20:59:45.271Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -46848,10 +34412,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "6857711c3a204f1ba6288d1b", + "revision": "a62f79bd7086439f8443d554", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46859,10 +34423,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", - "revision": "0983faf26aee45808a6a16eb", + "revision": "40755f1ee0554787889ef77b", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46870,24 +34434,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "2846c247adc14c5cbbb04d90", + "revision": "bd8c964603cc40f59350f67a", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46902,27 +34454,18 @@ "total_amount": 4000, "history_id": 1689022932520, "id": 1689022932520, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-07-10T21:02:12.520Z", + "date_last_updated": "2023-07-10T21:02:12.520Z", + "date_of_expiration": "2023-08-09T21:02:12.520Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "aa86ab89f0e046df9a4c1121", + "revision": "7d4fc37f86974d5bae1dbebc", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46930,10 +34473,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", - "revision": "e2f40b072f4f461f8505faa7", + "revision": "bca196e9eae94bb7abc86b5b", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46951,24 +34494,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "59465c749aaf4131a0ec4ecb", + "revision": "552452f0ba474d889b31c627", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -46984,18 +34515,9 @@ "original_amount": 3621314, "total_amount": 3621314, "id": 1689025604196, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-07-10T21:46:44.196Z", + "date_last_updated": "2023-07-10T21:46:44.196Z", + "date_of_expiration": "2023-07-10T21:46:44.196Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47004,10 +34526,10 @@ "history_id": 1689025604196, "description": "Compra de 3.621.314,00 IVIP por 4.000,00 BRL" }, - "revision": "1a5f68717bee49cfbdbe8e8f", + "revision": "8c4a4747b5854c43974fee0e", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47015,24 +34537,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "5ed95022a1db4e5daa9e7bf8", + "revision": "22f7c191822044d4abe94eb6", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47047,18 +34557,9 @@ "total_amount": 2000, "history_id": 1689196978297, "id": 1689196978297, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-07-12T21:22:58.297Z", + "date_last_updated": "2023-07-13T14:12:53.443Z", + "date_of_expiration": "2023-08-11T21:22:58.297Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -47068,10 +34569,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "62f58d65f90f4033935a9c21", + "revision": "cc2a83fe599d4698a5a79189", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47079,10 +34580,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0454.0726.5934.5405-84", - "revision": "95d6ae4f466c43a28c32f1dc", + "revision": "f7050fbc94b1487f87c6dc5d", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47100,24 +34601,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "d4ec507aa0314d3088cfd7a1", + "revision": "e58f129da12341ccae67abf3", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47133,18 +34622,9 @@ "original_amount": 773420, "total_amount": 773420, "id": 1689258784601, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-07-13T14:33:04.601Z", + "date_last_updated": "2023-07-13T14:33:04.601Z", + "date_of_expiration": "2023-07-13T14:33:04.601Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47153,10 +34633,10 @@ "history_id": 1689258784601, "description": "Compra de 773.420,00 IVIP por 2.000,00 BRL" }, - "revision": "f2b7a65d223544b988d70676", + "revision": "f7a05f35ec1a48feb188abde", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47164,10 +34644,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8c33c63392174458a4c3d992", + "revision": "9a3563c22f8941ff8544dc01", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47175,10 +34655,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "190d539b1728492fa27c926a", + "revision": "87b6bbde49cc48128532cabb", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47187,24 +34667,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "limitUsed": 0 }, - "revision": "be11355dad91477a8e372752", + "revision": "b67542fbe6e54df098bfdcf6", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47216,24 +34684,12 @@ "dateValidity": 1678671560774, "totalValue": 7620.23, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "balancesModificacao": "2023-10-09T03:00:00.000Z" }, - "revision": "8507faf55b994039953bee23", + "revision": "c0e91cd8b1ae4380800c6dc8", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47241,10 +34697,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ecd7eaf6eb7c4a43aeca515b", + "revision": "02f68125b1fe4a568df52672", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47252,10 +34708,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1117729fa7c94caab8e8969c", + "revision": "7a2e491f826f46d7b4b2fbd4", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47266,24 +34722,12 @@ "dataModificacao": 1678565263127, "dateValidity": 1678579663168, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "currencyType": "USD" }, - "revision": "5ba86f2324254326986f08f2", + "revision": "ef21e0904e524c1e96cf8c9d", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47291,10 +34735,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ad9f6b36504749068f7a3224", + "revision": "d1390c6ae3c24056b0f2a21c", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47302,10 +34746,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "15f56c1843d04b5e886d394d", + "revision": "d5f40949116d4232ad04a551", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47313,10 +34757,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "437f0743f83245258b159bf0", + "revision": "6334f56820984b7e95d46d76", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47325,24 +34769,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "limitUsed": 0 }, - "revision": "da74766a5719410a856cdf06", + "revision": "0d459352182345c6be2a3406", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47353,24 +34785,12 @@ "dataModificacao": 1696462399261, "dateValidity": 1696462399357, "currencyType": "USD", - "balancesModificacao": "2023-10-13T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "balancesModificacao": "2023-10-13T03:00:00.000Z" }, - "revision": "f643ab785eb74fa2961aaa8a", + "revision": "614f845bf207427a9361ddd9", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47378,10 +34798,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "62470b53fa694792a4174d81", + "revision": "7e21fdcb38644b25880bb09b", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47389,10 +34809,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1bb0375ff85140cbab5a1bd6", + "revision": "9b8af5562a414498a9af2d29", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47403,24 +34823,12 @@ "dataModificacao": 1692582136079, "dateValidity": 1692582136128, "currencyType": "USD", - "balancesModificacao": "2023-08-20T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "balancesModificacao": "2023-08-20T03:00:00.000Z" }, - "revision": "e81ded2a58a64cb8a60d1f0d", + "revision": "eeb221e710e045edb9672fcb", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47430,24 +34838,12 @@ "value": { "available": "8588955.54000000", "symbol": "IVIP", - "value": 4678.3, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "value": 4678.3 }, - "revision": "c849964ab8e1410ca47dda34", + "revision": "4c6443d34ed64b4d98d1e2dc", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47455,10 +34851,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "63a2e12d9e114e59b0167237", + "revision": "ef62c90de21b43dcb9271d06", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509551, + "modified": 1701463509551 } }, { @@ -47466,24 +34862,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "9214f6c6bd654aecaccf4a81", + "revision": "8fd4cae63b39440c87888605", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47498,18 +34882,9 @@ "total_amount": 5000, "history_id": 1683569771704, "id": 1683569771704, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-05-08T18:16:11.704Z", + "date_last_updated": "2023-05-08T18:34:33.225Z", + "date_of_expiration": "2023-06-07T18:16:11.704Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -47519,10 +34894,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c18104bdee184044bd02fe71", + "revision": "fb40a7ae64ab4991af9c84ff", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47530,10 +34905,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 5.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "fd2c81c8336342ddad35797e", + "revision": "18aa499886b940c29c848b53", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47551,24 +34926,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "5dd26d8482344f93953f9a0c", + "revision": "05bcb9bac95644f68f012a25", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47584,18 +34947,9 @@ "original_amount": 27021960, "total_amount": 27021960, "id": 1684018936403, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-05-13T23:02:16.403Z", + "date_last_updated": "2023-05-13T23:02:16.403Z", + "date_of_expiration": "2023-05-13T23:02:16.403Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47604,10 +34958,10 @@ "history_id": 1684018936403, "description": "Compra de 27.021.960,00 IVIP por 5.000,00 BRL" }, - "revision": "c0f53379c62b49f2879056f5", + "revision": "8faf819aec4140e58a24462b", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47625,24 +34979,12 @@ "installment_amount": 7668365, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "2cbcab27878849929d8c6391", + "revision": "515347bd12ea490c957d16e2", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47657,18 +34999,9 @@ "original_amount": 7668365, "total_amount": 7668365, "id": 1688531798249, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-07-05T04:36:38.249Z", + "date_last_updated": "2023-07-05T04:36:38.249Z", + "date_of_expiration": "2023-08-05T04:36:38.249Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47677,10 +35010,10 @@ "history_id": 1688531798249, "wasDebited": true }, - "revision": "d3c5632456884674b5fd68aa", + "revision": "4c73bf43252b4bf3b29afa38", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47688,10 +35021,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.668.365,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", - "revision": "06254239e97f46adb925713b", + "revision": "801e68b143aa4abe9f60f3be", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47699,24 +35032,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "7939bab5e75349bc837174d9", + "revision": "8b462620a7c94eb68c7c0cad", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47731,18 +35052,9 @@ "total_amount": 500, "history_id": 1688647483933, "id": 1688647483933, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-07-06T12:44:43.933Z", + "date_last_updated": "2023-07-07T22:01:16.048Z", + "date_of_expiration": "2023-08-05T12:44:43.933Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -47752,10 +35064,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "fda9f213528945df910933ee", + "revision": "d8bfca25b0cf4ede91b92f7f", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47763,10 +35075,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "3c1e3bb3cbc5495b90762a57", + "revision": "52cfa4063601420bbc2851d9", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47784,24 +35096,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "d736c37334f0417ebc2d7580", + "revision": "376cc808f8674f2d988609d0", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47817,18 +35117,9 @@ "original_amount": 823634, "total_amount": 823634, "id": 1688771723408, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-07-07T23:15:23.408Z", + "date_last_updated": "2023-07-07T23:15:23.408Z", + "date_of_expiration": "2023-07-07T23:15:23.408Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47837,10 +35128,10 @@ "history_id": 1688771723408, "description": "Compra de 823.634,00 IVIP por 500,00 BRL" }, - "revision": "caa50ef55e6f44c0a92ddbf8", + "revision": "b4823042859640c6a6c54d9d", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47848,24 +35139,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "1ce15db8906f44a4b99b23c1", + "revision": "f8546d1fe2df4a238b82f7e6", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47880,18 +35159,9 @@ "total_amount": 1000, "history_id": 1689021558105, "id": 1689021558105, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-07-10T20:39:18.105Z", + "date_last_updated": "2023-07-10T21:07:02.567Z", + "date_of_expiration": "2023-08-09T20:39:18.105Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -47901,10 +35171,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f2d54939a751400594075e7f", + "revision": "882241245b3c4ff58f9d5792", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47912,10 +35182,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "71fcc907485f4a76ae63c9da", + "revision": "55194f803938434ba48394a7", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47933,24 +35203,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "c497dc45372340898ea3dd13", + "revision": "17ee10b439954d80a418dec1", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47966,18 +35224,9 @@ "original_amount": 914949, "total_amount": 914949, "id": 1689023394597, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-07-10T21:09:54.597Z", + "date_last_updated": "2023-07-10T21:09:54.597Z", + "date_of_expiration": "2023-07-10T21:09:54.597Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47986,10 +35235,10 @@ "history_id": 1689023394597, "description": "Compra de 914.949,00 IVIP por 1.000,00 BRL" }, - "revision": "be577170f82c42da86a7bd24", + "revision": "36ba22077c1746c585e48e84", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -47997,24 +35246,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "704080a2f3b2431ab8c57997", + "revision": "ae0a886ba5f74787ac0d70f3", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48029,18 +35266,9 @@ "total_amount": 1000, "history_id": 1689248290301, "id": 1689248290301, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-07-13T11:38:10.301Z", + "date_last_updated": "2023-07-13T13:59:27.203Z", + "date_of_expiration": "2023-08-12T11:38:10.301Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -48050,10 +35278,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5f2b87931fbb4798b810e1ba", + "revision": "84bbfeb0f2f54be0afcb9894", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48061,10 +35289,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "f721c63f947741ec9fb870f4", + "revision": "b33b1cf02aff41b3bad77876", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48082,24 +35310,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "6607cc955a0c4f1b9acd30dd", + "revision": "166e7c693e114ec08139cb6d", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48115,18 +35331,9 @@ "original_amount": 381522, "total_amount": 381522, "id": 1689260053657, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-07-13T14:54:13.657Z", + "date_last_updated": "2023-07-13T14:54:13.657Z", + "date_of_expiration": "2023-07-13T14:54:13.657Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48135,10 +35342,10 @@ "history_id": 1689260053657, "description": "Compra de 381.522,00 IVIP por 1.000,00 BRL" }, - "revision": "4aaed28d95ae490990b726cf", + "revision": "478cff90266d497aac807c98", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48156,24 +35363,12 @@ "installment_amount": 5008550, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "506c2597954b4e29b30175f2", + "revision": "b0c393795ed24a4c99964cb5", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48188,18 +35383,9 @@ "original_amount": 5008550, "total_amount": 5008550, "id": 1689301547038, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-07-14T02:25:47.038Z", + "date_last_updated": "2023-07-14T02:25:47.038Z", + "date_of_expiration": "2025-07-14T02:25:47.038Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48207,10 +35393,10 @@ "currency_id": "IVIP", "history_id": 1689301547038 }, - "revision": "a8cbc366ce294e5d9780bb54", + "revision": "a87c9ab19d9a4875b7ebd066", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48218,10 +35404,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.008.550,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/13/2025", - "revision": "ad963ffccf2d4bb0b5bccdef", + "revision": "4d882adb1a264d34ac43b716", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48229,24 +35415,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "c538203553334a45b2e83867", + "revision": "5d4fa060a9e8452cb462c1f2", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48261,18 +35435,9 @@ "total_amount": 2000, "history_id": 1689355287691, "id": 1689355287691, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-07-14T17:21:27.691Z", + "date_last_updated": "2023-07-14T17:35:36.387Z", + "date_of_expiration": "2023-08-13T17:21:27.691Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -48282,10 +35447,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e05caf60397d4bc9a9579172", + "revision": "2f404d8984ff42cdb2e62281", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48293,10 +35458,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "bef1b7067e324a0d9d5345fa", + "revision": "09cd6c9b5b8b402eb670ead8", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48314,24 +35479,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "fcf3279396c34a9d8db053a9", + "revision": "ff72a5d0cf074cbd83a18dc9", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48347,18 +35500,9 @@ "original_amount": 1235586, "total_amount": 1235586, "id": 1689356922364, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-07-14T17:48:42.364Z", + "date_last_updated": "2023-07-14T17:48:42.364Z", + "date_of_expiration": "2023-07-14T17:48:42.364Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48367,10 +35511,10 @@ "history_id": 1689356922364, "description": "Compra de 1.235.586,00 IVIP por 2.000,00 BRL" }, - "revision": "f8c2009b5ceb45ccbe308b2a", + "revision": "227b087c14a14e9fbcd1337e", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48379,24 +35523,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-19T15:43:07.113Z", - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + ".val": "2023-08-19T15:43:07.113Z" }, - "revision": "868c0df8f21f45dd92ab8b90", + "revision": "95229be2a8764d02b6a6f325", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48412,24 +35544,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "costs": [] }, - "revision": "baba9d941d2d42be9832ba25", + "revision": "a932716bdf344b039c7fecd1", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48437,10 +35557,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/extract/047925577230662820/order/1689867787113", - "revision": "088296d333ff408c9591ac15", + "revision": "f5b73aba538c4f24919a4da2", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48455,29 +35575,19 @@ "total_amount": 3000, "id": 1689867787119, "history_id": 1689867787119, - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, + "date_created": "2023-07-20T15:43:07.119Z", + "date_last_updated": "2023-07-20T15:43:07.119Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + "status_detail": "pending_waiting_payment" }, - "revision": "9d185cb02b9e4deea1818a29", + "revision": "e6da1daede4d4f3ca4dc1fb0", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48485,10 +35595,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "9efdad20cfcf4e4994d9cc0e", + "revision": "f2219c14b74941f1afb03b90", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48497,24 +35607,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-20T12:25:11.952Z", - "date_created": { - "type": 6, - "value": 1701459383501 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383501 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383501 - } + ".val": "2023-08-20T12:25:11.952Z" }, - "revision": "c5e91dcd83e44e2d8c4a79f9", + "revision": "77857b3d51e2452297bfad1d", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48530,24 +35628,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "costs": [] }, - "revision": "e55843da352c48cc870c241e", + "revision": "6603cebd4496459baa2fd1f1", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48555,10 +35641,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1689942311952", - "revision": "2532765e350740458e695257", + "revision": "30228436a09a44dfad3201aa", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48573,14 +35659,8 @@ "total_amount": 3000, "id": 1689942311952, "history_id": 1689942311952, - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, + "date_created": "2023-07-21T12:25:11.952Z", + "date_last_updated": "2023-07-21T12:25:38.759Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48590,16 +35670,12 @@ "date_approved": "2023-07-21T12:25:38.759Z", "money_release_date": "2023-07-21T12:25:38.759Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "wasDebited": true }, - "revision": "0da0f26f1231431b9a177d59", + "revision": "3422ab8ebb0547f084d9082b", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48607,10 +35683,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "fe1ef497920e4afa82378459", + "revision": "14d271afbd174ef8986f1228", "revision_nr": 1, - "created": 1701459383501, - "modified": 1701459383501 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48628,24 +35704,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "costs": [] }, - "revision": "d1ef2efe9d844cada4eebf5d", + "revision": "8d7d3c4f248c4fdc8630bb55", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48661,18 +35725,9 @@ "original_amount": 1849758, "total_amount": 1849758, "id": 1689942442311, - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - }, + "date_created": "2023-07-21T12:27:22.311Z", + "date_last_updated": "2023-07-21T12:27:22.311Z", + "date_of_expiration": "2023-07-21T12:27:22.311Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48681,10 +35736,10 @@ "history_id": 1689942442311, "description": "Compra de 1.849.758,00 IVIP por 3.000,00 BRL" }, - "revision": "61aad1b7a417464eb0ca8afe", + "revision": "5d5cefd945de4a70ac7caa96", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48693,24 +35748,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-04T01:54:56.983Z", - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + ".val": "2023-09-04T01:54:56.983Z" }, - "revision": "48787ef428e241c8a18eec99", + "revision": "d993758e41f7465ab48369bd", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48726,24 +35769,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "costs": [] }, - "revision": "444ae69a8c594fa0a0327782", + "revision": "7a925061c59849639c4c5635", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48751,10 +35782,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691200496984", - "revision": "2862575a5f22484a9100bf93", + "revision": "7ac8d8fb11f844e6b12a22ca", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48769,29 +35800,19 @@ "total_amount": 2000, "id": 1691200496984, "history_id": 1691200496984, - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, + "date_created": "2023-08-05T01:54:56.984Z", + "date_last_updated": "2023-08-05T01:54:56.984Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "status_detail": "pending_waiting_payment" }, - "revision": "526cc47945694ae3898042bb", + "revision": "054c6a5d208244e9afa3d694", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48799,10 +35820,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 2.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "849b43278d96428bb7b66f13", + "revision": "0015eb615af94d159ef7cb5f", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48818,24 +35839,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "costs": [] }, - "revision": "17cba36686a7452d94e67c7a", + "revision": "08fdcdfe03694553abb5b308", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48843,10 +35852,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691214286883", - "revision": "35efaca8d2a742c18bd698ce", + "revision": "3140ea7e096d448b9996b2dc", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48861,18 +35870,9 @@ "total_amount": 7821732.3, "id": 1691214286883, "history_id": 1691214286883, - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - }, + "date_created": "2023-08-05T05:44:46.883Z", + "date_last_updated": "2023-08-05T05:44:46.883Z", + "date_of_expiration": "2023-08-05T05:44:46.883Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48880,10 +35880,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "37db22454aa0445a9165f63d", + "revision": "89d16eddcef34065ba888f27", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48891,10 +35891,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 7.668.365,00 IVIP com um rendimento de +153.367,3 IVIP (2,00%)", - "revision": "d17dac8451844769a3d92c8d", + "revision": "c5107c59b2d2440f9837bc0e", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48903,24 +35903,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-04T16:30:25.281Z", - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + ".val": "2023-09-04T16:30:25.281Z" }, - "revision": "43a7da41587d4b29a316c3fc", + "revision": "7bb37722bfec4f6380d5a4ca", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48936,24 +35924,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "costs": [] }, - "revision": "6cd16ec61b2748b68a5e0f38", + "revision": "e7441da9843c4df8b188cf70", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48961,10 +35937,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691253025281", - "revision": "d283560f12444dc88b1d00c3", + "revision": "b6e7a470e3b54a5b90f5fad6", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -48979,14 +35955,8 @@ "total_amount": 1500, "id": 1691253025281, "history_id": 1691253025281, - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, + "date_created": "2023-08-05T16:30:25.281Z", + "date_last_updated": "2023-08-05T16:33:34.508Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48996,16 +35966,12 @@ "date_approved": "2023-08-05T16:33:34.508Z", "money_release_date": "2023-08-05T16:33:34.508Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "wasDebited": true }, - "revision": "bd31843f759148ed8ab4132f", + "revision": "b8b0f4e359cc45c7b7f07bb0", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -49013,10 +35979,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.500,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "1b7ca12f035e4bb7bcda7418", + "revision": "24fc5e1ec618417ca522f543", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -49032,24 +35998,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "costs": [] }, - "revision": "bfb06571ac654d3d9c657b22", + "revision": "ca2eca451a68470491323d7c", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -49057,10 +36011,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691280221861", - "revision": "54c088d64c13417693ef2679", + "revision": "5a6ab6d071a54c6a9a19ac61", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -49075,18 +36029,9 @@ "total_amount": 2127119, "id": 1691280221861, "history_id": 1691280221861, - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - }, + "date_created": "2023-08-06T00:03:41.861Z", + "date_last_updated": "2023-08-06T00:03:41.861Z", + "date_of_expiration": "2023-08-06T00:03:41.861Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -49095,10 +36040,10 @@ "description": "Compra de 2.127.119,00 IVIP por 1.500,00 BRL", "status_detail": "accredited" }, - "revision": "2c2c278c9ffd4281b24de599", + "revision": "ff361b9e6db3418488799bdb", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -49114,24 +36059,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "costs": [] }, - "revision": "f6965faa0564489ebab14511", + "revision": "5c3d837436914b73809f0289", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -49139,10 +36072,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691283205891", - "revision": "e5fb67a925314d9b9ffba713", + "revision": "e9007543b4a14ef3837a96e8", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -49157,18 +36090,9 @@ "total_amount": 7769562, "id": 1691283205891, "history_id": 1691283205891, - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - }, + "date_created": "2023-08-06T00:53:25.891Z", + "date_last_updated": "2023-08-06T00:53:25.891Z", + "date_of_expiration": "2023-09-06T00:53:25.891Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49176,10 +36100,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "7f2715dfcc1c4b9da09fed91", + "revision": "b7e879b1d98a41dca45e837e", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49187,10 +36111,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.769.562,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", - "revision": "f9895dbfd65040f392dc2d77", + "revision": "076ae34989b7414d957ca9fc", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509552, + "modified": 1701463509552 } }, { @@ -49206,24 +36130,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "costs": [] }, - "revision": "822245a62ccd4f9cad312e2d", + "revision": "76fd9a22de8a43b185065993", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49231,10 +36143,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1693962455688", - "revision": "7662cc636cfd4824bf4add07", + "revision": "9aca57ab27b84bfeab4e98e8", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49249,18 +36161,9 @@ "total_amount": 7924953.24, "id": "1693962455688", "history_id": "1693962455688", - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - }, + "date_created": "2023-09-06T01:07:35.688Z", + "date_last_updated": "2023-09-06T01:07:35.688Z", + "date_of_expiration": "2023-09-06T01:07:35.688Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49268,10 +36171,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "99e1162b2215434da0d592c2", + "revision": "63980752d3b945e5b6c11e76", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49279,10 +36182,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 7.769.562,00 IVIP com um rendimento de +155.391,24 IVIP (2,00%) - Y12XDT27", - "revision": "7f403dff5744476ab05530a2", + "revision": "0b7a45f15896451885b10897", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49298,24 +36201,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "costs": [] }, - "revision": "b3f21ce13b3c4d5cad038384", + "revision": "b8dca7be8e5f418ca6765f01", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49323,10 +36214,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1693962525967", - "revision": "52a137952945427b8846fdc8", + "revision": "c18f123b08204cdc93b44cad", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49341,18 +36232,9 @@ "total_amount": 7931475, "id": "1693962525967", "history_id": "1693962525967", - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - }, + "date_created": "2023-09-06T01:08:45.967Z", + "date_last_updated": "2023-10-04T13:04:02.602Z", + "date_of_expiration": "2023-10-06T01:08:45.967Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -49363,10 +36245,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "bda0d20f329f483a80ca0f48", + "revision": "1f2a928fd900479b9ff3c33a", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49374,10 +36256,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.931.475,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", - "revision": "8f4727a4567f4d32ab9d2f8e", + "revision": "3c35a3caa5cc4982bfc6fb49", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49393,24 +36275,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "costs": [] }, - "revision": "e2e726aabbb14921a305392f", + "revision": "37979b7fdb784e2b8e05ad89", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49418,10 +36288,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1695167532103", - "revision": "90e66903165249ff89a64f2d", + "revision": "c12ef87b8c904dfb98f6edd5", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49436,18 +36306,9 @@ "total_amount": 19942224, "id": "1695167532103", "history_id": "1695167532103", - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - }, + "date_created": "2023-09-19T23:52:12.103Z", + "date_last_updated": "2023-09-25T21:44:47.175Z", + "date_of_expiration": "2024-03-19T23:52:12.102Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -49458,10 +36319,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "ade6d030ef794b1d9dd38ec3", + "revision": "1dc8c7386379435abeb4e05c", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49469,10 +36330,10 @@ "content": { "type": "STRING", "value": "Investimento de 19.942.224,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", - "revision": "21f8d352546c4b51bd3d9ec9", + "revision": "5dd19b069ded4bf39c646cc6", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49482,24 +36343,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 30, - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "amount": 30 }, - "revision": "7bdd355b9fc54b09b8ab1434", + "revision": "302b8c73220b411ea95f3c95", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49514,24 +36363,12 @@ "installment_amount": 1000, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "financial_institution": "ivipcoin" }, - "revision": "17ee5e5356be498e9ecb3a6f", + "revision": "c872e0d4ac61451ab2a424c4", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49539,10 +36376,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1695956035041", - "revision": "d8c200de98914553ae33c965", + "revision": "f9e8a00dd65948d7b8ae3bd4", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49550,10 +36387,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "cb2283b54ccf416bbc0c8ae1", + "revision": "a2bee6a7a7c2402fb2a8cc95", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49569,18 +36406,9 @@ "total_amount": 970, "id": "1695956035041", "history_id": "1695956035041", - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - }, + "date_created": "2023-09-29T02:53:55.041Z", + "date_last_updated": "2023-10-03T00:23:57.561Z", + "date_of_expiration": "2023-09-29T02:53:55.041Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -49592,10 +36420,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "ff8ec575d60846f981be83bd", + "revision": "d70d7b33c8e347b687ff3072", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49603,10 +36431,10 @@ "content": { "type": "STRING", "value": "Saque de 970,00 IVIP para a carteira 0x24f07CBa773a4bF9373E50A5694BAb23E5eF5557", - "revision": "5615287673b342ae8e404da2", + "revision": "a8ba19ee1ef740ab8179cc8d", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49616,24 +36444,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 651697.8461999999, - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "amount": 651697.8461999999 }, - "revision": "4467599a45a84e23a6a7ac8d", + "revision": "c5d38448e9ad4ee6921e839e", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49648,24 +36464,12 @@ "installment_amount": 21723261.54, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "financial_institution": "ivipcoin" }, - "revision": "d4cd4a118a8f43e58d84eecf", + "revision": "da4cef14c824426cbbfc82ec", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49673,10 +36477,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696003948025", - "revision": "e75cfa3d6a0a4dbca5a0aec9", + "revision": "8d8623147644460fb6c40e3c", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49684,10 +36488,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "10db2d1dacaa43f19fc5016e", + "revision": "d5db648c589e40639ee35b50", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49703,18 +36507,9 @@ "total_amount": 21071563.6938, "id": "1696003948025", "history_id": "1696003948025", - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - }, + "date_created": "2023-09-29T16:12:28.025Z", + "date_last_updated": "2023-10-03T00:26:33.604Z", + "date_of_expiration": "2023-09-29T16:12:28.025Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -49726,10 +36521,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "d7f78648c06b49b1a3cc3ad1", + "revision": "9c921554a77b45f3946caf76", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49737,10 +36532,10 @@ "content": { "type": "STRING", "value": "Saque de 21.071.563,69 IVIP para a carteira 0x24f07CBa773a4bF9373E50A5694BAb23E5eF5557", - "revision": "b137ac47a2904d668ca22f9e", + "revision": "0660aefe12d14cbcaa0d7956", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49750,24 +36545,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 304593.12, - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "amount": 304593.12 }, - "revision": "296e2cdc3c8345c489605f73", + "revision": "89709e6a69154d649f5cbb51", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49782,24 +36565,12 @@ "installment_amount": 10153104, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "financial_institution": "ivipcoin" }, - "revision": "bc4ce98ef9004349b4b849d4", + "revision": "b74934f130864d6ab81e77b2", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49807,10 +36578,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696207958470", - "revision": "a3a8307bef3a46f08764af2c", + "revision": "1b209ae5793c4cb7ba3729fe", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49818,10 +36589,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f785066f248c4ca19edc6c90", + "revision": "2ddd6bece61448b19824d3a6", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49837,18 +36608,9 @@ "total_amount": 9848510.88, "id": "1696207958470", "history_id": "1696207958470", - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - }, + "date_created": "2023-10-02T00:52:38.470Z", + "date_last_updated": "2023-10-03T00:42:07.841Z", + "date_of_expiration": "2023-10-02T00:52:38.470Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -49859,10 +36621,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "8b13c3bcddb34a83bf894697", + "revision": "f238a13e9d3941a0b52757a2", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49870,10 +36632,10 @@ "content": { "type": "STRING", "value": "Saque de 9.848.510,88 IVIP para a carteira 0x8de82EE9234B9dF85A4CBc083E49A0B8Db0D4aD1", - "revision": "5cfa7fe3eb8c48f48404e17a", + "revision": "7dc504fc621543eeb10fe191", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49883,24 +36645,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 600892.0499999999, - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "amount": 600892.0499999999 }, - "revision": "fd994f14c26c43f49dc2e5a0", + "revision": "1eb975377a954bf5acc8d06c", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49915,24 +36665,12 @@ "installment_amount": 20029735, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "financial_institution": "ivipcoin" }, - "revision": "e67a187bebad41cca1c6ada7", + "revision": "4af9783adb504f5eb079ca8d", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49940,10 +36678,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471625534", - "revision": "a5bb0c8276c5409eafa426b8", + "revision": "468ebd16559a40abb74e55f0", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49951,10 +36689,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "21bb77eb2752437fb2afeb67", + "revision": "4405188d2b304718bf0c4ec2", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -49970,18 +36708,9 @@ "total_amount": 19428842.95, "id": "1696471625534", "history_id": "1696471625534", - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - }, + "date_created": "2023-10-05T02:07:05.534Z", + "date_last_updated": "2023-10-05T03:03:32.296Z", + "date_of_expiration": "2023-10-05T02:07:05.534Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -49993,10 +36722,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "3ba22307dbe243d6b0055080", + "revision": "61049517c68544d596faa53d", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50004,10 +36733,10 @@ "content": { "type": "STRING", "value": "Saque de 19.428.842,95 IVIP para a carteira 0x8de82EE9234B9dF85A4CBc083E49A0B8Db0D4aD1", - "revision": "85c67bd93bf94e5095209fdf", + "revision": "3394d683f4ed4e62ae158f51", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50023,24 +36752,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - } + "costs": [] }, - "revision": "4843d0e7c3314adcbc129006", + "revision": "e3dce557af164ea9b7a2c3dc", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50048,10 +36765,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471870838", - "revision": "d8113782051d421b870f8ca3", + "revision": "cdc66b8d0c30421da2a408d3", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50067,18 +36784,9 @@ "total_amount": 7931207, "id": "1696471870838", "history_id": "1696471870838", - "date_created": { - "type": 6, - "value": 1701459383502 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383502 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383502 - }, + "date_created": "2023-10-05T02:11:10.838Z", + "date_last_updated": "2023-10-05T02:11:10.838Z", + "date_of_expiration": "2023-11-05T02:11:10.607Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -50086,10 +36794,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_call_for_authorize" }, - "revision": "c97ec5252c3447a5ba4af05b", + "revision": "d5175bd0b00941de8948aec5", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50097,10 +36805,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.931.207,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "d1d1a55b53b4480f808c6478", + "revision": "ba190c6622254780ae288858", "revision_nr": 1, - "created": 1701459383502, - "modified": 1701459383502 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50116,24 +36824,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "costs": [] }, - "revision": "9fa0e323d4d54a26b1840e01", + "revision": "66b1218418af4600a9ecd428", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50141,10 +36837,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471977293", - "revision": "d23f7b0482e5490b85e463fb", + "revision": "bff8c697aa004af2a6e5fb20", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50160,18 +36856,9 @@ "total_amount": 1035046, "id": "1696471977293", "history_id": "1696471977293", - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-10-05T02:12:57.293Z", + "date_last_updated": "2023-10-05T02:12:57.293Z", + "date_of_expiration": "2023-11-05T02:12:57.200Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50179,10 +36866,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "15a859f4fd7a4d3a8534a03c", + "revision": "d4d750baf88049a6b9403248", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50190,10 +36877,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.035.046,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "9b48ab94d0224232a6248bd4", + "revision": "cc63484af93f41b4842f688c", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50201,10 +36888,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "45f08e6036b5498ea737d335", + "revision": "0e62d7cb45594be0ae790aef", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50212,10 +36899,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ccc5bb4b21fd4c459ca1e407", + "revision": "e5e063f21961480d8f0222ed", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50225,24 +36912,12 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-09-29T03:14:47.898Z", - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "analysisRequested": "2023-09-29T03:14:47.898Z" }, - "revision": "1110a60ece0a45d3a67ba2b5", + "revision": "e438bcad35194eeaab9996d0", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50254,24 +36929,12 @@ "dateValidity": 1683569670949, "totalValue": 48201.8, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "balancesModificacao": "2023-10-15T03:00:00.000Z" }, - "revision": "6c41c57ca6b44f7e8d2660e4", + "revision": "71ead369201b4811a4329703", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50279,10 +36942,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d6dc37f13a294daf98033d62", + "revision": "db9fd44959a74efa8d33e611", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50290,10 +36953,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2227675e0d514d8db393ffea", + "revision": "094cff5485724cfc8ca34c34", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50304,24 +36967,12 @@ "dataModificacao": 1678063274590, "dateValidity": 1678170667714, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "currencyType": "USD" }, - "revision": "0b18490aa79247638ac60c6e", + "revision": "98f81327cc854ee6987d2c88", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50331,24 +36982,12 @@ "value": { "available": "1392927.00000000", "symbol": "IVIP", - "value": 149.3, - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "value": 149.3 }, - "revision": "5b629a3299334d2ea134a1b2", + "revision": "60c8b847b3cc4468848ecd79", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50356,10 +36995,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6c8db038c8174c1d8ea682da", + "revision": "e0f5940944cd4f2aa09c1255", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50367,24 +37006,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "costs": [] }, - "revision": "d3441fd96cd2450889e4f16d", + "revision": "158a26a3a5df4173a6a669ff", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50399,18 +37026,9 @@ "total_amount": 300, "history_id": 1679232470571, "id": 1679232470571, - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-03-19T13:27:50.571Z", + "date_last_updated": "2023-03-19T22:56:16.805Z", + "date_of_expiration": "2023-04-18T13:27:50.571Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -50420,10 +37038,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "1e035d5bc64a4a2492f65ae8", + "revision": "093669549ea448c2acda136c", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50431,10 +37049,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", - "revision": "3a2e9700f8034dfc8ae01453", + "revision": "1c122cb6df304c9589a9e791", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50442,24 +37060,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "costs": [] }, - "revision": "b6a54a766ebd4bc98ccbaf7e", + "revision": "b263dbcfc3594cfd995468c7", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50474,27 +37080,18 @@ "total_amount": 300, "history_id": 1679232566671, "id": 1679232566671, - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-03-19T13:29:26.671Z", + "date_last_updated": "2023-03-19T13:29:26.671Z", + "date_of_expiration": "2023-04-18T13:29:26.671Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "f99ff68ec7ab4012ae8f5559", + "revision": "e44ab6963bbb44f5a813bb72", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50502,10 +37099,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", - "revision": "c28ab8816f104485886e3944", + "revision": "fcbfe9999f7c4d3b9d4ef972", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50523,24 +37120,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "costs": [] }, - "revision": "f902f328c04b41db98a04e95", + "revision": "3ae673c2cc5a4753a0cbb89a", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50556,18 +37141,9 @@ "original_amount": 1597688, "total_amount": 1597688, "id": 1679871668854, - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-03-26T23:01:08.854Z", + "date_last_updated": "2023-03-26T23:01:08.854Z", + "date_of_expiration": "2023-03-26T23:01:08.854Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50576,10 +37152,10 @@ "history_id": 1679871668854, "description": "Compra de 1.597.688,00 IVIP por 300,00 BRL" }, - "revision": "fe4aad8f56624ffbb02909ff", + "revision": "b6b396cc4d4b471eb387617a", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50587,24 +37163,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "costs": [] }, - "revision": "aebdce06372946f79551fe81", + "revision": "af878d7ee7cc4ffe88934f46", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50619,18 +37183,9 @@ "total_amount": 300, "history_id": 1684190255075, "id": 1684190255075, - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-05-15T22:37:35.075Z", + "date_last_updated": "2023-05-16T12:11:16.762Z", + "date_of_expiration": "2023-06-14T22:37:35.075Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -50640,10 +37195,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "54dbf892762d49168e5eb33c", + "revision": "a05d15cff1604675a7cc935f", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50651,10 +37206,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", - "revision": "a892c482adfc49c5b3a633e4", + "revision": "2aa758b036d84be8a020f08f", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50672,24 +37227,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "costs": [] }, - "revision": "5280ecf436f64fdca8a982e8", + "revision": "81c0eca7be224e7295b2909d", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50705,18 +37248,9 @@ "original_amount": 1461219, "total_amount": 1461219, "id": 1684624205744, - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-05-20T23:10:05.744Z", + "date_last_updated": "2023-05-20T23:10:05.744Z", + "date_of_expiration": "2023-05-20T23:10:05.744Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50725,10 +37259,10 @@ "history_id": 1684624205744, "description": "Compra de 1.461.219,00 IVIP por 300,00 BRL" }, - "revision": "326d2632dbc94958815112cc", + "revision": "64f7297448c845f28f5188d9", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50746,24 +37280,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "costs": [] }, - "revision": "4cb1387c51084b5b9ec66005", + "revision": "c935b01470ca4e9a94b6f17a", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50778,18 +37300,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1686353262267, - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-06-09T23:27:42.267Z", + "date_last_updated": "2023-06-09T23:27:42.267Z", + "date_of_expiration": "2023-07-09T23:27:42.267Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50798,10 +37311,10 @@ "history_id": 1686353262267, "wasDebited": true }, - "revision": "e30fc6b131574c49aa47f41d", + "revision": "323f35762e7640b8832e6ebb", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50809,10 +37322,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/9/2023", - "revision": "14093a6c84374022832f2c5d", + "revision": "dab0a8bb527d4b8f98489ade", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50830,24 +37343,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "costs": [] }, - "revision": "08d31afdfea74c2ca35ddc3e", + "revision": "b43d1ab129554c98ac697c5f", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50862,18 +37363,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1686353693526, - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-06-09T23:34:53.526Z", + "date_last_updated": "2023-06-09T23:34:53.526Z", + "date_of_expiration": "2023-12-09T23:34:53.526Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50882,10 +37374,10 @@ "history_id": 1686353693526, "wasDebited": true }, - "revision": "f62cd0281e9e41a2a713f9b9", + "revision": "8024f8be4c5c4bfd9a231d2a", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50893,10 +37385,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/9/2023", - "revision": "cde214ccf47d473fb8823e3d", + "revision": "8446d3e1b8f6414e93a3a1af", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509553, + "modified": 1701463509553 } }, { @@ -50914,24 +37406,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "costs": [] }, - "revision": "6662be5b3c94439dbe617220", + "revision": "22673f4c16294185882bf156", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -50946,18 +37426,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1686657739276, - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-06-13T12:02:19.276Z", + "date_last_updated": "2023-06-13T12:02:19.276Z", + "date_of_expiration": "2024-06-13T12:02:19.276Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50965,10 +37436,10 @@ "currency_id": "IVIP", "history_id": 1686657739276 }, - "revision": "5f83577fe63c4a4bbecfd8f0", + "revision": "7d176042c5244122a44fa4c8", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -50976,10 +37447,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/13/2024", - "revision": "4da8bacc9f124c68bf2ab6a2", + "revision": "ca06b590b36243389636f5c0", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -50997,24 +37468,12 @@ "installment_amount": 500000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "costs": [] }, - "revision": "e14198c1584e41abb78ce845", + "revision": "bb7a70444e9444a9bc73b3fc", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51029,18 +37488,9 @@ "original_amount": 500000, "total_amount": 500000, "id": 1687363201264, - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-06-21T16:00:01.264Z", + "date_last_updated": "2023-06-21T16:00:01.264Z", + "date_of_expiration": "2024-06-21T16:00:01.264Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51048,10 +37498,10 @@ "currency_id": "IVIP", "history_id": 1687363201264 }, - "revision": "b06b8cc41fb2405c8f381526", + "revision": "004e355aae064415a9318e63", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51059,10 +37509,10 @@ "content": { "type": "STRING", "value": "Investimento de 500.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2024", - "revision": "df2c83425a8b4dae9da19ae2", + "revision": "83b8e1f9b70d4550833cd130", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51080,24 +37530,12 @@ "installment_amount": 1000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "costs": [] }, - "revision": "d0693b7e5f8a4eff8b51276c", + "revision": "07d6fdf880b24f6cb4c36347", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51112,18 +37550,9 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1687363301418, - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-06-21T16:01:41.418Z", + "date_last_updated": "2023-06-21T16:01:41.418Z", + "date_of_expiration": "2025-06-21T16:01:41.418Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51131,10 +37560,10 @@ "currency_id": "IVIP", "history_id": 1687363301418 }, - "revision": "8bf5c8f3562e415ba0be840a", + "revision": "d6b42ebfe8854f21b2388a28", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51142,10 +37571,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2025", - "revision": "bbb5b6e5ef354258b969820b", + "revision": "7844ebdf9d02498f831153c7", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51163,24 +37592,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "costs": [] }, - "revision": "0e6cdceeed084b10ae90c96e", + "revision": "63ef1260ad8d4ce58019449e", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51195,18 +37612,9 @@ "original_amount": 1020, "total_amount": 1020, "id": 1689804806407, - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-07-19T22:13:26.407Z", + "date_last_updated": "2023-07-19T22:13:26.407Z", + "date_of_expiration": "2023-07-19T22:13:26.407Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51215,10 +37623,10 @@ "history_id": 1689804806407, "wasDebited": true }, - "revision": "d8b1d1fef8de4e969f41fdd0", + "revision": "d3ad3cf9d4d24c01abb7ad63", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51226,10 +37634,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%)", - "revision": "05f1513b0d0f4e3085730624", + "revision": "63484e1631a741329139415d", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51245,24 +37653,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "costs": [] }, - "revision": "825dbf57b8f14190b2971375", + "revision": "173caaba313942a39dc25f21", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51270,10 +37666,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1690414261722", - "revision": "dac2a8dc923644ed9ab9fecc", + "revision": "129d331c7bbc4af2b868b8dd", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51288,18 +37684,9 @@ "total_amount": 100000, "id": 1690414261722, "history_id": 1690414261722, - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-07-26T23:31:01.722Z", + "date_last_updated": "2023-07-26T23:31:01.722Z", + "date_of_expiration": "2023-08-26T23:31:01.717Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51307,10 +37694,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "9687a885c29b482aa1045b1f", + "revision": "31892dc874204db0afcef6ff", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51318,10 +37705,10 @@ "content": { "type": "STRING", "value": "Investimento de 100.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/26/2023", - "revision": "5f15f23ce16e441c8f2b28fe", + "revision": "e7705fa4195a43dd9ea5a957", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51337,24 +37724,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "costs": [] }, - "revision": "5da3fb85c4b342379d5cbffa", + "revision": "d502346ebb2c453eb223389a", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51362,10 +37737,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693093011374", - "revision": "b8510a82cb554d66ba4c1016", + "revision": "e1bebb30a37b476c89907eb8", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51380,18 +37755,9 @@ "total_amount": 100000, "id": "1693093011374", "history_id": "1693093011374", - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-08-26T23:36:51.374Z", + "date_last_updated": "2023-08-26T23:36:51.374Z", + "date_of_expiration": "2023-08-26T23:36:51.374Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51399,10 +37765,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "96ba850d98aa4c6c98316ef7", + "revision": "f01ca9030bb64a48953abd32", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51410,10 +37776,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 100.000,00 IVIP com um rendimento de +2.000,00 IVIP (2,00%)", - "revision": "a637d7138aa844f1894bfadc", + "revision": "6e6ccff21aa64dec96df39cd", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51423,24 +37789,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 3000, - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "amount": 3000 }, - "revision": "62b16804c23e4d74bd66333f", + "revision": "5e546e400f93473ba894385d", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51455,24 +37809,12 @@ "installment_amount": 100000, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "financial_institution": "ivipcoin" }, - "revision": "999c5ac507bf42e1816e1491", + "revision": "5251a7222ea048619fb50330", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51480,10 +37822,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693173218030", - "revision": "ddd56d12b3a144198a81b331", + "revision": "eaff353e7fc441c7a34f2728", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51491,10 +37833,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "c8b02862d9df4c1f9130c4ef", + "revision": "94eb5c696f18444492d40057", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51509,18 +37851,9 @@ "total_amount": 97000, "id": "1693173218030", "history_id": "1693173218030", - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-08-27T21:53:38.030Z", + "date_last_updated": "2023-09-04T21:32:36.578Z", + "date_of_expiration": "2023-08-27T21:53:38.030Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -51532,10 +37865,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "521ca54b11d1450482ec64f7", + "revision": "9a7726a131cf4dbab8554087", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51543,10 +37876,10 @@ "content": { "type": "STRING", "value": "Saque de 97.000,00 IVIP para a carteira 0x984b739d05a74462Ab9171EDF8Be5CDDa7fF8c26", - "revision": "32007fd03e28414d94eafe1c", + "revision": "7e6f39083a754b8885cee6c8", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51562,24 +37895,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "costs": [] }, - "revision": "982b936d975d4f4b80c5c961", + "revision": "a5499b1ed2aa4c6cadb8ea8d", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51587,10 +37908,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693228740965", - "revision": "a3b0eb23a79b46d180ab3348", + "revision": "e9deac384e7e469db6241485", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51605,18 +37926,9 @@ "total_amount": 800000, "id": "1693228740965", "history_id": "1693228740965", - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-08-28T13:19:00.965Z", + "date_last_updated": "2023-08-28T13:19:00.965Z", + "date_of_expiration": "2023-09-28T13:19:00.964Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51624,10 +37936,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "0848acbcc8ef471c88c7604f", + "revision": "20a519af2a414aaeb0cc4031", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51635,10 +37947,10 @@ "content": { "type": "STRING", "value": "Investimento de 800.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/28/2023", - "revision": "f34fc25fc06a463fae5bb029", + "revision": "c71870ec991b4a12adbc64b7", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51654,24 +37966,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "costs": [] }, - "revision": "ca79ca880efb447494fafb58", + "revision": "9af86dbf9beb4b84b564f769", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51679,10 +37979,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1695907162897", - "revision": "307d8a6d0dfc4f26afb12e71", + "revision": "575e27df48414583a44b082f", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51698,18 +37998,9 @@ "total_amount": 816000, "id": "1695907162897", "history_id": "1695907162897", - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-09-28T13:19:22.897Z", + "date_last_updated": "2023-09-28T13:19:22.897Z", + "date_of_expiration": "2023-09-28T13:19:22.897Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51717,10 +38008,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "d0c2345b14624cc7bb62eb5e", + "revision": "48940ee228fa4258bf0370cb", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51728,10 +38019,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 800.000,00 IVIP com um rendimento de +16.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "1744094038bb4967b67bd64b", + "revision": "9c9541694f384c84835bc836", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51747,24 +38038,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "costs": [] }, - "revision": "2b91eb6371fe47dd82a0b6c5", + "revision": "0f497a41a0f940dea2758c81", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51772,10 +38051,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1695925845472", - "revision": "bdaf5f74bccb4f0287cb360b", + "revision": "99821328d6014b28832736ff", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51791,18 +38070,9 @@ "total_amount": 80000, "id": "1695925845472", "history_id": "1695925845472", - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - }, + "date_created": "2023-09-28T18:30:45.472Z", + "date_last_updated": "2023-09-28T18:30:45.472Z", + "date_of_expiration": "2023-10-28T18:30:45.420Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51810,10 +38080,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ef3ba02a197b49cf9dd961d9", + "revision": "8c2f34e65fb14f14916e6ebe", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51821,10 +38091,10 @@ "content": { "type": "STRING", "value": "Investimento de 80.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 28/10/2023 - Y12XDT27", - "revision": "9a54ba197ce548f0919db505", + "revision": "21452963fb6e43fc89d93ad4", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51832,10 +38102,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d22b5c3d9cd447ad98f95496", + "revision": "271183e2227f49c79e0b8703", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51843,10 +38113,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b82b23da97b24cd085093ca1", + "revision": "add34f31c41d493a82f6c7c5", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51856,24 +38126,12 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-09-28T18:35:16.598Z", - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "analysisRequested": "2023-09-28T18:35:16.598Z" }, - "revision": "c5de5bdae73144aba6b11d60", + "revision": "1a9c5530f46144a991d3dd64", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51885,24 +38143,12 @@ "dateValidity": 1679096727973, "totalValue": 488.05285041642975, "currencyType": "USD", - "balancesModificacao": "2023-10-14T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "balancesModificacao": "2023-10-14T03:00:00.000Z" }, - "revision": "b4505651688849298456bf52", + "revision": "f6e12e8b489f4e4b9d070e2c", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51912,24 +38158,12 @@ "value": { "available": "48500.00000000", "symbol": "IVIP", - "value": 7.28, - "date_created": { - "type": 6, - "value": 1701459383503 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383503 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383503 - } + "value": 7.28 }, - "revision": "f0aabc39359945f7a3eddc12", + "revision": "b98ebc360a2c4f41b3d3b04e", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51937,10 +38171,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f71a87df328e4f3b98251422", + "revision": "3e3fd2519e114865926dcc1b", "revision_nr": 1, - "created": 1701459383503, - "modified": 1701459383503 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51948,24 +38182,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - } + "costs": [] }, - "revision": "766d243139cb48ebbd2117ac", + "revision": "323b672b5c644f958bf14641", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -51980,18 +38202,9 @@ "total_amount": 1000, "history_id": 1678145412146, "id": 1678145412146, - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - }, + "date_created": "2023-03-06T23:30:12.146Z", + "date_last_updated": "2023-03-07T20:21:25.124Z", + "date_of_expiration": "2023-04-05T23:30:12.146Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -52001,10 +38214,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "68d9791a844b40aea3d656fe", + "revision": "ade1f3e76b334f2bb74f32df", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52012,10 +38225,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0502.9485.5698.2423-30", - "revision": "ddfc527870344578a6ffc356", + "revision": "7764654dceb74516a2316ef0", "revision_nr": 1, - "created": 1701459383504, - "modified": 1701459383504 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52023,24 +38236,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - } + "costs": [] }, - "revision": "ef0a91e7b381432595b9d0aa", + "revision": "1c3df754ac62421abca9fa37", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52055,18 +38256,9 @@ "total_amount": 1000, "history_id": 1678043796128, "id": 1678043796128, - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - }, + "date_created": "2023-03-05T19:16:36.128Z", + "date_last_updated": "2023-03-07T20:20:39.067Z", + "date_of_expiration": "2023-04-04T19:16:36.128Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -52076,10 +38268,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f03e390da3d94981b2cc2363", + "revision": "0b8bde523ef14d46ba4da03f", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52087,10 +38279,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0502.9485.5698.2423-30", - "revision": "4fa50337afb044e7ab8d393e", + "revision": "54476ea945924a929c204402", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52098,24 +38290,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - } + "costs": [] }, - "revision": "db1c2e31ef3f473caa028886", + "revision": "011d7b6a6e5b4bc28c5ed7dd", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52130,18 +38310,9 @@ "total_amount": 2000, "history_id": 1677774543947, "id": 1677774543947, - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - }, + "date_created": "2023-03-02T16:29:03.947Z", + "date_last_updated": "2023-03-02T17:25:47.224Z", + "date_of_expiration": "2023-04-01T16:29:03.947Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -52151,10 +38322,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "0ed57839b9c849b9ab5f3a93", + "revision": "0b86182b6c4e43168d2170ed", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52162,10 +38333,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0502.9485.5698.2423-30", - "revision": "754a05451c93400789253751", + "revision": "44ef8862c4c242d8a241f1ba", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52183,24 +38354,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - } + "costs": [] }, - "revision": "53b0243af5724fd6a2e1c38b", + "revision": "7d613e1f8c9e4429a06f2739", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52216,18 +38375,9 @@ "original_amount": 14284655, "total_amount": 14284655, "id": 1678145303669, - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - }, + "date_created": "2023-03-06T23:28:23.669Z", + "date_last_updated": "2023-03-06T23:28:23.669Z", + "date_of_expiration": "2023-03-06T23:28:23.669Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -52236,10 +38386,10 @@ "history_id": 1678145303669, "description": "Compra de 14284655 IVIP por 2000 BRL" }, - "revision": "e218acda9bee41a2b3dfeed8", + "revision": "8015ba0fe3364fb28dedf4c0", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52257,24 +38407,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - } + "costs": [] }, - "revision": "b51715d997ca4766bdb0778d", + "revision": "c5c494b099354dc7b7539471", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52290,18 +38428,9 @@ "original_amount": 14195700, "total_amount": 14195700, "id": 1678220742550, - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - }, + "date_created": "2023-03-07T20:25:42.550Z", + "date_last_updated": "2023-03-07T20:25:42.550Z", + "date_of_expiration": "2023-03-07T20:25:42.550Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -52310,10 +38439,10 @@ "history_id": 1678220742550, "description": "Compra de 14195700 IVIP por 2000 BRL" }, - "revision": "4c206a7fcd3f4060b8a34622", + "revision": "be86113fde3845c497af6196", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52321,24 +38450,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - } + "costs": [] }, - "revision": "502be95583c0426582fab088", + "revision": "602612a09d4d4313b3e994a7", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52353,18 +38470,9 @@ "total_amount": 14038113, "history_id": 1686128267183, "id": 1686128267183, - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - }, + "date_created": "2023-06-07T08:57:47.183Z", + "date_last_updated": "2023-07-07T23:13:02.648Z", + "date_of_expiration": "2023-06-07T08:57:47.183Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -52372,10 +38480,10 @@ "money_release_date": "2023-07-07T23:13:02.648Z", "money_release_status": "rejected" }, - "revision": "a8a0ed6b25c94c97bd67837f", + "revision": "c6b579213f4644b780a283e7", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52383,10 +38491,10 @@ "content": { "type": "STRING", "value": "Saque de 14.038.113,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", - "revision": "8321084d725e4c3eabe941e0", + "revision": "40c134ab5c004e1384909700", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52394,24 +38502,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - } + "costs": [] }, - "revision": "a09d1e525e6a4e43ac5fa683", + "revision": "b8dd88a8acdc4f3f986fd317", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52426,18 +38522,9 @@ "total_amount": 28480355, "history_id": 1686128970156, "id": 1686128970156, - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - }, + "date_created": "2023-06-07T09:09:30.156Z", + "date_last_updated": "2023-07-07T23:13:12.581Z", + "date_of_expiration": "2023-06-07T09:09:30.156Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -52445,10 +38532,10 @@ "money_release_date": "2023-07-07T23:13:12.581Z", "money_release_status": "rejected" }, - "revision": "e14dabc785054c6796a1da69", + "revision": "2cc7530a3c474fbb95d98fde", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52456,10 +38543,10 @@ "content": { "type": "STRING", "value": "Saque de 28.480.355,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", - "revision": "05b3d4ea2a7a4c5eab57c0a4", + "revision": "d0770770668e4e3c906d7b74", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52477,24 +38564,12 @@ "installment_amount": 50000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - } + "costs": [] }, - "revision": "1db4a55bf7c84f2aa9b57486", + "revision": "31cf2c4a0cc340ff9e8a889e", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52509,18 +38584,9 @@ "original_amount": 50000, "total_amount": 50000, "id": 1686190557366, - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - }, + "date_created": "2023-06-08T02:15:57.366Z", + "date_last_updated": "2023-06-08T02:15:57.366Z", + "date_of_expiration": "2025-06-08T02:15:57.366Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -52528,10 +38594,10 @@ "currency_id": "IVIP", "history_id": 1686190557366 }, - "revision": "196418d7fbdc4c2784c00d28", + "revision": "a87af45244b54b39b0ce7427", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52539,10 +38605,10 @@ "content": { "type": "STRING", "value": "Investimento de 50.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/7/2025", - "revision": "377b74d1dd6b4fa784910a3c", + "revision": "736b18848b6f4045bd93374e", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509554, + "modified": 1701463509554 } }, { @@ -52560,24 +38626,12 @@ "installment_amount": 30000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - } + "costs": [] }, - "revision": "342a6caec1ea48bba3eab9d2", + "revision": "d942ab74a70a44d18cffba54", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52592,18 +38646,9 @@ "original_amount": 30000, "total_amount": 30000, "id": 1686190633022, - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - }, + "date_created": "2023-06-08T02:17:13.022Z", + "date_last_updated": "2023-06-08T02:17:13.022Z", + "date_of_expiration": "2024-06-08T02:17:13.022Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -52611,10 +38656,10 @@ "currency_id": "IVIP", "history_id": 1686190633022 }, - "revision": "ad2821d357154944968b3228", + "revision": "a3bf775324af479ea465a7ba", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52622,10 +38667,10 @@ "content": { "type": "STRING", "value": "Investimento de 30.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/7/2024", - "revision": "10c706f4fd0d47d098fd0ded", + "revision": "86690367d41f4d2b868f6203", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52643,24 +38688,12 @@ "installment_amount": 50000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383505 - } + "costs": [] }, - "revision": "cdcd4439165f4b4b8abf622d", + "revision": "3d9c51913a0849e4a3d48062", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52675,18 +38708,9 @@ "original_amount": 50000, "total_amount": 50000, "id": 1686190671429, - "date_created": { - "type": 6, - "value": 1701459383505 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383505 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-06-08T02:17:51.429Z", + "date_last_updated": "2023-06-08T02:17:51.429Z", + "date_of_expiration": "2023-12-08T02:17:51.429Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -52694,10 +38718,10 @@ "currency_id": "IVIP", "history_id": 1686190671429 }, - "revision": "9b2a2c9517d24bf2863d025b", + "revision": "3f8241cdf59745d1825baa37", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52705,10 +38729,10 @@ "content": { "type": "STRING", "value": "Investimento de 50.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/7/2023", - "revision": "c6d95464f8ed4fb5995dc1df", + "revision": "9c5d35ae6cbd49f2b1025938", "revision_nr": 1, - "created": 1701459383505, - "modified": 1701459383505 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52726,24 +38750,12 @@ "installment_amount": 30000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "f69403f5ec85456f85a39609", + "revision": "a3d31fc0c1ab4058b9365233", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52758,18 +38770,9 @@ "original_amount": 30000, "total_amount": 30000, "id": 1686190710908, - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-06-08T02:18:30.908Z", + "date_last_updated": "2023-06-08T02:18:30.908Z", + "date_of_expiration": "2023-07-08T02:18:30.908Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -52777,10 +38780,10 @@ "currency_id": "IVIP", "history_id": 1686190710908 }, - "revision": "e9e08bce8d4b453bb68ed412", + "revision": "34d4ba0c53a841b687175549", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52788,10 +38791,10 @@ "content": { "type": "STRING", "value": "Investimento de 30.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/7/2023", - "revision": "cecea1303d5a482a8a988695", + "revision": "9a24d711f1274300acd8deef", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52809,24 +38812,12 @@ "installment_amount": 14524522, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "2f17420d8ff747cb872c63ca", + "revision": "a063f42eda2e45928be3ffc9", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52841,18 +38832,9 @@ "original_amount": 14524522, "total_amount": 14524522, "id": 1687472497935, - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-06-22T22:21:37.935Z", + "date_last_updated": "2023-06-22T22:21:37.935Z", + "date_of_expiration": "2025-06-22T22:21:37.935Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -52860,10 +38842,10 @@ "currency_id": "IVIP", "history_id": 1687472497935 }, - "revision": "b7f5e8ff695f4b16b18fee5c", + "revision": "32dd4a523f134b0291f23663", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52871,10 +38853,10 @@ "content": { "type": "STRING", "value": "Investimento de 14.524.522,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/22/2025", - "revision": "f6a9832987a447d5878368d3", + "revision": "dd678bf9dfa247f49fe0a0c5", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52882,24 +38864,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "9d5ec2dada7f48a7a739ff13", + "revision": "13b3c5e6f3194b6a982095cc", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52914,18 +38884,9 @@ "total_amount": 13795833, "history_id": 1688575377865, "id": 1688575377865, - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-07-05T16:42:57.865Z", + "date_last_updated": "2023-07-07T23:13:24.088Z", + "date_of_expiration": "2023-07-05T16:42:57.865Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -52935,10 +38896,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "c4719d73b00646278f202937", + "revision": "58a9d241c5fd42149166b95b", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52946,10 +38907,10 @@ "content": { "type": "STRING", "value": "Saque de 13.795.833,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", - "revision": "bac2fad13e9a4d5db33a2f66", + "revision": "05b85524bc9b43f1a75b19b0", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52967,24 +38928,12 @@ "installment_amount": 30000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "623721c9bc43483a8de9b126", + "revision": "5b5b01916b1b41a9b624bda4", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -52999,18 +38948,9 @@ "original_amount": 30600, "total_amount": 30600, "id": 1689804799815, - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-07-19T22:13:19.815Z", + "date_last_updated": "2023-07-19T22:13:19.815Z", + "date_of_expiration": "2023-07-19T22:13:19.815Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53019,10 +38959,10 @@ "history_id": 1689804799815, "wasDebited": true }, - "revision": "9fdd698652ab47b8bef52d66", + "revision": "e6c13a7d5dfc4197a076acb1", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53030,10 +38970,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 30.000,00 IVIP com um rendimento de +600,00 IVIP (2,00%)", - "revision": "be9eee2988c84f1d98b3c9cb", + "revision": "5f7e1300891a40dc9cbd72f8", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53049,24 +38989,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "f41ba15f28b74299aba291e6", + "revision": "f77dacfffa044e90b2e48ebb", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53074,10 +39002,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1690467644472", - "revision": "686928fc9e584da99bbacf6a", + "revision": "5eed608ccc9749288de433c3", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53092,18 +39020,9 @@ "total_amount": 30600, "id": 1690467644472, "history_id": 1690467644472, - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-07-27T14:20:44.472Z", + "date_last_updated": "2023-07-27T14:20:44.472Z", + "date_of_expiration": "2023-08-27T14:20:44.468Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53111,10 +39030,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "6001eca4c4834573a8b9f1a9", + "revision": "cefc2736dde545f6a5d65d39", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53122,10 +39041,10 @@ "content": { "type": "STRING", "value": "Investimento de 30.600,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/27/2023", - "revision": "4cef83bc22864db08e752cb0", + "revision": "bf04ac1b859b49f299027d7b", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53141,24 +39060,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "fd3311f318df4497b24c6fd1", + "revision": "3f6f8b4af75c4d02b2890f02", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53166,10 +39073,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1693147070930", - "revision": "3d8ab83841bb424f9dacd27e", + "revision": "afad235fe6bb4984ad567130", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53184,18 +39091,9 @@ "total_amount": 30600, "id": "1693147070930", "history_id": "1693147070930", - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-08-27T14:37:50.930Z", + "date_last_updated": "2023-08-27T14:37:50.930Z", + "date_of_expiration": "2023-08-27T14:37:50.930Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53203,10 +39101,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "12a63acb915e4d47bdad24d5", + "revision": "5af855fae4d9410590dfd5af", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53214,10 +39112,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 30.600,00 IVIP com um rendimento de +612,00 IVIP (2,00%)", - "revision": "d0565f5953954d35afaae99a", + "revision": "81dc292e26134be392696660", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53233,24 +39131,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "63fe2766e6c84c9798908752", + "revision": "c1f5e7df99dc4eaab7db1c36", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53258,10 +39144,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1693780247117", - "revision": "9937fe73ed184eefaf5e898f", + "revision": "b77895cdb91645eebf081bea", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53276,18 +39162,9 @@ "total_amount": 2500, "id": "1693780247117", "history_id": "1693780247117", - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-09-03T22:30:47.117Z", + "date_last_updated": "2023-09-03T22:30:47.117Z", + "date_of_expiration": "2023-10-03T22:30:47.116Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53295,10 +39172,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "91c178669a514677b0ee6af5", + "revision": "68b5401484d14b1d868118ff", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53306,10 +39183,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.500,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "62ed0671ae7b4ef491940d78", + "revision": "3bc0d986df5a4983a1656293", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53325,24 +39202,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "1799dcdda3314cafa1bc833b", + "revision": "669101d0cd584b4cb69abf5f", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53350,10 +39215,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696382633982", - "revision": "7b532b6f18ec4f4e96536751", + "revision": "65854e416ea44f22bbc9f849", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53369,18 +39234,9 @@ "total_amount": 2550, "id": "1696382633982", "history_id": "1696382633982", - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-10-04T01:23:53.982Z", + "date_last_updated": "2023-10-04T01:23:53.982Z", + "date_of_expiration": "2023-10-04T01:23:53.982Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53388,10 +39244,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "5ddc68dc102346e29953f10b", + "revision": "8548240f0b8a4af29c9430ce", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53399,10 +39255,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "0815ea10fc1e441da7440c10", + "revision": "ce436e4c06e54a93aa1019a1", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53418,24 +39274,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "30af8d4033bf4a4b9fe716f6", + "revision": "7e0ee8b378e6445880c7aa23", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53443,10 +39287,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242905", - "revision": "fae10422f83244b88fa9f229", + "revision": "561a6c21afef47ecbef14867", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53462,18 +39306,9 @@ "total_amount": 2550, "id": "1696384242905", "history_id": "1696384242905", - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-10-04T01:50:42.905Z", + "date_last_updated": "2023-10-04T01:50:42.905Z", + "date_of_expiration": "2023-10-04T01:50:42.905Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -53481,10 +39316,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "1fb99bfe97a44caba13f3cf8", + "revision": "0402e9595ffe47989e51489c", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53492,10 +39327,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "1057715e46ce492f842fc3a3", + "revision": "cd058c4853b74cf68c1ca198", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53511,24 +39346,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "8e1f6176fde04ae6a92f4f58", + "revision": "de2847bbe7704abf9062e686", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53536,10 +39359,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242925", - "revision": "26c5a16ecda944bd9d08d5e2", + "revision": "a4de0d80d8e04ea0978c9f3a", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53555,18 +39378,9 @@ "total_amount": 2550, "id": "1696384242925", "history_id": "1696384242925", - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-10-04T01:50:42.925Z", + "date_last_updated": "2023-10-04T01:50:42.925Z", + "date_of_expiration": "2023-10-04T01:50:42.925Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -53574,10 +39388,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "ee0f4b5c55204cda811d8f69", + "revision": "a3be872e532e41de8f7e8373", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53585,10 +39399,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "34bd764e13024d8482d3a49c", + "revision": "d751199a3df449e09987c519", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53604,24 +39418,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "69c218799fa548308ff893a0", + "revision": "2cf67ed20939428aac722a32", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53629,10 +39431,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242931", - "revision": "4a391501ce1e4fd5ac78cef0", + "revision": "7648b09793a5449f91140983", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53648,18 +39450,9 @@ "total_amount": 2550, "id": "1696384242931", "history_id": "1696384242931", - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-10-04T01:50:42.931Z", + "date_last_updated": "2023-10-04T01:50:42.931Z", + "date_of_expiration": "2023-10-04T01:50:42.931Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -53667,10 +39460,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "ee76418e36e1406fbbcefafe", + "revision": "45b4766fdfbd45b29f3d0f93", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53678,10 +39471,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "64f50858188d446d8d9a32df", + "revision": "e04ddde134fe4d6bab63ade8", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53697,24 +39490,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "4cb8ed0719c640dfbf8baa43", + "revision": "30c38026e3554cd393a9edc0", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53722,10 +39503,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384243125", - "revision": "91c81e5b4f434f6dbcc2fea1", + "revision": "abbdd470273348eab3c075b6", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53741,18 +39522,9 @@ "total_amount": 2550, "id": "1696384243125", "history_id": "1696384243125", - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-10-04T01:50:43.125Z", + "date_last_updated": "2023-10-04T01:50:43.125Z", + "date_of_expiration": "2023-10-04T01:50:43.125Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -53760,10 +39532,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "1ea632ca59f34aecad6dc338", + "revision": "c6f6b8bf4fc347bcba159a0b", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53771,10 +39543,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "23d6ce024337410380882676", + "revision": "d50c6fe7a072438eb9899168", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53790,24 +39562,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "8d64c1a026044d99889bbae9", + "revision": "9e5d81432ad5421cb85f6219", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53815,10 +39575,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384243425", - "revision": "c19c017ab0a04d2dac248518", + "revision": "ae05f461ca8140e8b9c29aaa", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53834,18 +39594,9 @@ "total_amount": 2550, "id": "1696384243425", "history_id": "1696384243425", - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-10-04T01:50:43.425Z", + "date_last_updated": "2023-10-04T01:50:43.425Z", + "date_of_expiration": "2023-10-04T01:50:43.425Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -53853,10 +39604,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "c362c648a27341679187ea1c", + "revision": "862d68b3002f47629753c0c1", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53864,10 +39615,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "4f4e9f61bad643c58a2c4af2", + "revision": "5cb13ed081ca4953b372874f", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53883,24 +39634,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "26d37673b165493fa628dc95", + "revision": "9f948fbc2fb8450599636d01", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53908,10 +39647,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384244783", - "revision": "e2a80c58286d437da3feb7c5", + "revision": "d79cf1433a5a48b884575d8b", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53927,18 +39666,9 @@ "total_amount": 2550, "id": "1696384244783", "history_id": "1696384244783", - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-10-04T01:50:44.783Z", + "date_last_updated": "2023-10-04T01:50:44.783Z", + "date_of_expiration": "2023-10-04T01:50:44.783Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -53946,10 +39676,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "0b2ce25c46c8443d849cd7d4", + "revision": "e1908aa8bd9a48fa87e0d4ad", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53957,10 +39687,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "242b7624ebf5403383110a44", + "revision": "a167351b23724a99b63c68dd", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -53976,24 +39706,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "b91ccf46f8db4a1ea09d7d0b", + "revision": "4381bcdb270a433fb1219340", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -54001,10 +39719,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384244885", - "revision": "69e6051eef184570ad1320a8", + "revision": "82134510c4414a86909aaa98", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -54020,18 +39738,9 @@ "total_amount": 2550, "id": "1696384244885", "history_id": "1696384244885", - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-10-04T01:50:44.885Z", + "date_last_updated": "2023-10-04T01:50:44.885Z", + "date_of_expiration": "2023-10-04T01:50:44.885Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -54039,10 +39748,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "fecf244589724b6d8a405ca5", + "revision": "ef75409c1bbe4edab35d9a90", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -54050,10 +39759,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "9df966dad72a4ee19704638b", + "revision": "64ab7b5dd48346e1b3b09358", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -54061,10 +39770,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7fc68b50a53f4d9297c9da3a", + "revision": "63d665ae7042467cb8f7f2d0", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -54072,10 +39781,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "36c68a1dbaac411ebd328bec", + "revision": "2e8067ea48f542c79e85f4a9", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -54084,24 +39793,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "limitUsed": 0 }, - "revision": "c3eea304cdc24ec5aee2f101", + "revision": "308cd65c8e804bc8974f1a70", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -54112,24 +39809,12 @@ "dataModificacao": 1677774434896, "dateValidity": 1678238494873, "totalValue": 9.579933648427893, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "currencyType": "USD" }, - "revision": "c245f53b79834ea0bab57644", + "revision": "f81bb3778d8946258769adf9", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -54137,10 +39822,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "584077cfc0194d99bbaf3fde", + "revision": "31219057e96e446bbd9739a2", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -54148,10 +39833,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6613929bffe84be2b47d5b63", + "revision": "92773111529b45d0b8844d3c", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -54161,24 +39846,12 @@ "value": { "dataModificacao": 1696468517081, "dateValidity": 1696468517276, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "currencyType": "USD" }, - "revision": "186f8ca2acc84b44823c5827", + "revision": "d7f606a256f94caea34c598e", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509557, + "modified": 1701463509557 } }, { @@ -54188,24 +39861,12 @@ "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "value": 0 }, - "revision": "81b1f0b0459343c5bab539e6", + "revision": "f6c27bf965894be4846dad8e", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54215,24 +39876,12 @@ "value": { "available": "812799.00000000", "symbol": "IVIP", - "value": 263.24, - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "value": 263.24 }, - "revision": "ec9deb91eb9f4cacba54dc02", + "revision": "d4fc3cfc75744aacb117b136", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54240,10 +39889,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "30e875d0bd73484487004d4f", + "revision": "a28066d7946c45e4886cdb4d", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54251,24 +39900,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "35c6dd85b20d405f947a7baf", + "revision": "19af1d1de629440d8433dd8e", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54283,18 +39920,9 @@ "total_amount": 50, "history_id": 1678221951810, "id": 1678221951810, - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-03-07T20:45:51.810Z", + "date_last_updated": "2023-03-08T13:21:59.635Z", + "date_of_expiration": "2023-04-06T20:45:51.810Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -54304,10 +39932,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "efd11dfa178542b4b1117d1f", + "revision": "cda62dd1a5b64b6883e62331", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54315,10 +39943,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0532.9875.7978.5992-90", - "revision": "db585fb95bd942fba60a519d", + "revision": "3c1327968c1846b795563fb2", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54326,24 +39954,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "54d2eeeb66844532a1240f7b", + "revision": "69740fd2b05b47578c56fdb4", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54358,18 +39974,9 @@ "total_amount": 100, "history_id": 1679009072784, "id": 1679009072784, - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-03-16T23:24:32.784Z", + "date_last_updated": "2023-03-20T14:29:47.158Z", + "date_of_expiration": "2023-04-15T23:24:32.784Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -54379,10 +39986,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f7be6fc31ac5449997ba6500", + "revision": "745357a72b8f4c0598b25e0c", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54390,10 +39997,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0532.9875.7978.5992-90", - "revision": "f3112c7422c14aa69c9cfb3c", + "revision": "ae6f35f51fe247af8aee618f", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54401,24 +40008,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "f40edc8958044bcc97ae6755", + "revision": "4113f940add34fc697ca4562", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54433,18 +40028,9 @@ "total_amount": 100, "history_id": 1679009122145, "id": 1679009122145, - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-03-16T23:25:22.145Z", + "date_last_updated": "2023-03-20T14:32:34.987Z", + "date_of_expiration": "2023-04-15T23:25:22.145Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -54452,10 +40038,10 @@ "money_release_date": "2023-03-20T14:32:34.987Z", "money_release_status": "rejected" }, - "revision": "853ade00539d45af98aa7eeb", + "revision": "1a2efd957e0841578b31594a", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54463,10 +40049,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0532.9875.7978.5992-90", - "revision": "7235712f72724a5e86b6bf71", + "revision": "0a9d3694f51a4212a99c470f", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54484,24 +40070,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "6670a94c5606485f94e178ce", + "revision": "7dad593f0a334f5b9413d17c", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54517,18 +40091,9 @@ "original_amount": 812799, "total_amount": 812799, "id": 1680059811857, - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-03-29T03:16:51.857Z", + "date_last_updated": "2023-03-29T03:16:51.857Z", + "date_of_expiration": "2023-03-29T03:16:51.857Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54537,10 +40102,10 @@ "history_id": 1680059811857, "description": "Compra de 812.799,00 IVIP por 150,00 BRL" }, - "revision": "af21b6b8968b4964a5983465", + "revision": "0a4804c9dc8a42d085310847", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54548,24 +40113,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "costs": [] }, - "revision": "bcc39be3018f4bd9900d3ec7", + "revision": "affbbab7846348dcb2b4f08c", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54580,27 +40133,18 @@ "total_amount": 812799, "history_id": 1687793732463, "id": 1687793732463, - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - }, + "date_created": "2023-06-26T15:35:32.463Z", + "date_last_updated": "2023-06-26T15:35:32.463Z", + "date_of_expiration": "2023-06-26T15:35:32.463Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "8b41cad408384610a10757be", + "revision": "1301d671391045ee860c3e31", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54608,10 +40152,10 @@ "content": { "type": "STRING", "value": "Saque de 812.799,00 IVIP para a carteira 0x76DD50e5E925D29D22251e5b2A71bBB9b5672254", - "revision": "6e27848bd55242798f50d150", + "revision": "9c65ed89c76e4023ad0c7904", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54619,10 +40163,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7269923aa5a1461da3f1b3b9", + "revision": "810effef10984a8a83f116fe", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54630,10 +40174,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4c7b2b038adb46d6babb332a", + "revision": "2c23919a5c4841888ddfddec", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54642,24 +40186,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "limitUsed": 0 }, - "revision": "c9c621269edc49de90b708b6", + "revision": "e8f9ee57ce114a93a9eb5bf1", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54671,24 +40203,12 @@ "dateValidity": 1679026523803, "totalValue": 28.34, "currencyType": "USD", - "balancesModificacao": 1689822000000, - "date_created": { - "type": 6, - "value": 1701459383506 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383506 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383506 - } + "balancesModificacao": 1689822000000 }, - "revision": "23af44ab7376440dbc1fe510", + "revision": "6e9cd7a6eab54334a9bcef24", "revision_nr": 1, - "created": 1701459383506, - "modified": 1701459383506 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54698,24 +40218,12 @@ "value": { "available": "51023.00000000", "symbol": "IVIP", - "value": 6.23, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "value": 6.23 }, - "revision": "1ce36dac854247c29cdb3bf7", + "revision": "4efae330971e44fe86d79ce3", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54723,10 +40231,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8b07845d337243d2a70af2d0", + "revision": "64465b8a301747b1abb528ff", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54734,24 +40242,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "costs": [] }, - "revision": "00cf17362b734c8fbfc82206", + "revision": "919b7446ba814a75a567066a", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54766,18 +40262,9 @@ "total_amount": 120, "history_id": 1689173674893, "id": 1689173674893, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-07-12T14:54:34.893Z", + "date_last_updated": "2023-07-12T16:57:39.550Z", + "date_of_expiration": "2023-08-11T14:54:34.893Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -54787,10 +40274,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c2e83bea653f4c3bbb112752", + "revision": "6b45039d1e9646c1a01d9297", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54798,10 +40285,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 120,00 para a carteira iVip 0543.4133.5642.4860-00", - "revision": "d3d320c218dd46c7a9becd37", + "revision": "a78b5fc819f744bbb72a1c33", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54819,24 +40306,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "costs": [] }, - "revision": "ac4448f7c8a04ac799e7eed6", + "revision": "83802cc213f143d18ee5bd16", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54852,18 +40327,9 @@ "original_amount": 51023, "total_amount": 51023, "id": 1689182033050, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-07-12T17:13:53.050Z", + "date_last_updated": "2023-07-12T17:13:53.050Z", + "date_of_expiration": "2023-07-12T17:13:53.050Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54872,10 +40338,10 @@ "history_id": 1689182033050, "description": "Compra de 51.023,00 IVIP por 120,00 BRL" }, - "revision": "5674c4dc1d034a46a8f54278", + "revision": "52b7310f7abe4612998b5e24", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54883,10 +40349,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ac1e39f6204646f5ab61f681", + "revision": "9d802ffd1c074e43881bd55e", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54894,10 +40360,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e17797648ba441d2b3a5a549", + "revision": "8f967995d55a422197cfd33b", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54906,24 +40372,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "limitUsed": 0 }, - "revision": "a3626daa9210459586056479", + "revision": "e68cee6b55604a06aaf02982", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54935,24 +40389,12 @@ "dateValidity": 1689173582935, "totalValue": 24.77, "currencyType": "USD", - "balancesModificacao": "2023-10-10T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "balancesModificacao": "2023-10-10T03:00:00.000Z" }, - "revision": "369e5c5c5810400cb971381e", + "revision": "deb07bbd25394fed8e9c688c", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54960,10 +40402,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3a31a88cc5e347f8becf4fce", + "revision": "8058acbfc27b4f34b812d9d2", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -54972,24 +40414,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-11T02:45:06.134Z", - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + ".val": "2023-11-11T02:45:06.134Z" }, - "revision": "a469eb000f5445deb7e4e03a", + "revision": "dd107cb714a24d489eb38eaf", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55005,24 +40435,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "costs": [] }, - "revision": "5943763b61fb4ccba2959a1d", + "revision": "0e76019a60b945b4b041540e", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55030,10 +40448,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697078706134", - "revision": "958bbd5a0c974fc18db3f26f", + "revision": "f90532c106b5464289149c1d", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55049,14 +40467,8 @@ "total_amount": 99635.8518, "id": "1697078706134", "history_id": "1697078706134", - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-10-12T02:45:06.134Z", + "date_last_updated": "2023-10-12T13:47:23.226Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -55066,16 +40478,12 @@ "date_approved": "2023-10-12T13:47:23.226Z", "money_release_date": "2023-10-12T13:47:23.226Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "wasDebited": true }, - "revision": "349e2da018874ae68bc373d5", + "revision": "8c6d23d897b0442886d8cbca", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55083,10 +40491,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 99.635,85 IVIP para a carteira iVip 0556.4401.2114.1117-40", - "revision": "1958286912e34310a165939c", + "revision": "e5b212a578bc41e8b04bec22", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55095,24 +40503,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-11T14:06:48.666Z", - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + ".val": "2023-11-11T14:06:48.666Z" }, - "revision": "c8c08e36ad7e469688fa1adc", + "revision": "2d84a9ed416a43d4899eb78a", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55128,24 +40524,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "costs": [] }, - "revision": "94572655d7ed40f3b321d352", + "revision": "033702bbe89842a8b51f8fee", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55153,10 +40537,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697119608666", - "revision": "cbc3ae2f4bdf4b6bb9178787", + "revision": "9fbab0ceecc84ac88173fd34", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55172,14 +40556,8 @@ "total_amount": 25, "id": "1697119608666", "history_id": "1697119608666", - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-10-12T14:06:48.666Z", + "date_last_updated": "2023-10-12T14:33:43.741Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -55189,16 +40567,12 @@ "date_approved": "2023-10-12T14:33:43.741Z", "money_release_date": "2023-10-12T14:33:43.741Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "wasDebited": true }, - "revision": "c9fd9540918b4fd88eb992a3", + "revision": "2d4a2cd87bdd4a6fbbea190e", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55206,10 +40580,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 25,00 BRL para a carteira iVip 0556.4401.2114.1117-40", - "revision": "5d493ead5e6d4bdc9792fae0", + "revision": "cb3df63a07b849559686ec17", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55225,24 +40599,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "costs": [] }, - "revision": "ee1d71ad89c14ea9a6486208", + "revision": "de276e6894154a8caec9253e", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55250,10 +40612,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697122378430", - "revision": "3d48081227344b608bfdedea", + "revision": "ecb31f18ca974b2d934412dd", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55269,18 +40631,9 @@ "total_amount": 46978, "id": "1697122378430", "history_id": "1697122378430", - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-10-12T14:52:58.430Z", + "date_last_updated": "2023-10-12T14:52:58.430Z", + "date_of_expiration": "2023-10-12T14:52:58.430Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -55289,10 +40642,10 @@ "description": "Compra de 46.978,00 IVIP por 25,00 BRL", "status_detail": "accredited" }, - "revision": "d356b7762a6c4801a1a345f1", + "revision": "e3d1fdf5a9134e92a57c4afa", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55300,10 +40653,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "999ab3a5e34441dcb7670e3b", + "revision": "9d0f3ac320a841ca99c25951", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55311,10 +40664,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "75527947a407456c926232fd", + "revision": "fc96a1afcc0a416099c877d7", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55323,24 +40676,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "limitUsed": 0 }, - "revision": "fd4c86c96b0f4f3481563551", + "revision": "e25c5c0d30ca485bb5072800", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55351,24 +40692,12 @@ "dataModificacao": 1697078617873, "dateValidity": 1697078617917, "currencyType": "USD", - "balancesModificacao": "2023-10-12T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "balancesModificacao": "2023-10-12T03:00:00.000Z" }, - "revision": "96e876a8b69549ebaace15ee", + "revision": "68f88e38018947a79581e89d", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55378,24 +40707,12 @@ "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "value": 0 }, - "revision": "5bf50eb9d0be492b8c5289f2", + "revision": "a3e93db9ea924776bedf2ec8", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55405,24 +40722,12 @@ "value": { "available": "5352934.00000000", "symbol": "IVIP", - "value": 720.46, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "value": 720.46 }, - "revision": "ab8e54937d1a4953a3eb14f7", + "revision": "9552e9e39bcb4ec1ac37c1d1", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55430,10 +40735,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "093099134fb84ff68e2250f8", + "revision": "6bcc1b12dcaa47999dde9aa8", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55441,24 +40746,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "costs": [] }, - "revision": "1fe4db7ad9344687bdb15222", + "revision": "e1b5c9e75ad74ed3a44e7a3b", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55473,18 +40766,9 @@ "total_amount": 800, "history_id": 1684093509797, "id": 1684093509797, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-05-14T19:45:09.797Z", + "date_last_updated": "2023-05-14T19:50:33.853Z", + "date_of_expiration": "2023-06-13T19:45:09.797Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -55494,10 +40778,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "4821b64e3585414b926b6ed5", + "revision": "448c7bbf2b334beda3b5cc13", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55505,10 +40789,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0565.4676.9240.3558-40", - "revision": "5af193fa2d8f4582aa341979", + "revision": "dc41c63a316a4a3fb531b96b", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55516,24 +40800,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "costs": [] }, - "revision": "76b3e22ff6bc424f901545b4", + "revision": "6bb39a3dcb4f4225aa7dc81b", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55548,18 +40820,9 @@ "total_amount": 299, "history_id": 1684583054149, "id": 1684583054149, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-05-20T11:44:14.149Z", + "date_last_updated": "2023-05-20T15:08:23.300Z", + "date_of_expiration": "2023-06-19T11:44:14.149Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -55569,10 +40832,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "1256a87935844fe9b8626d31", + "revision": "f64cb82e67ad4cadbb903770", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55580,10 +40843,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 299,00 para a carteira iVip 0565.4676.9240.3558-40", - "revision": "9db03ac782464bf3ad143401", + "revision": "3dd014c37a204dfe8552dbd5", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55601,24 +40864,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "costs": [] }, - "revision": "0e7d70b303cf4fe582716a74", + "revision": "539b399a164945ff83c547c9", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55634,18 +40885,9 @@ "original_amount": 5352934, "total_amount": 5352934, "id": 1684624980630, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-05-20T23:23:00.630Z", + "date_last_updated": "2023-05-20T23:23:00.630Z", + "date_of_expiration": "2023-05-20T23:23:00.630Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -55654,10 +40896,10 @@ "history_id": 1684624980630, "description": "Compra de 5.352.934,00 IVIP por 1.099,00 BRL" }, - "revision": "4569ff032509421a8f008fa6", + "revision": "a464b514de694c9dbecce0e3", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55665,24 +40907,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "costs": [] }, - "revision": "1a921e5fef3d4170a9576ac7", + "revision": "ab5a15579a764930a7bba9c8", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55697,27 +40927,18 @@ "total_amount": 5352934, "history_id": 1689104056845, "id": 1689104056845, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-07-11T19:34:16.845Z", + "date_last_updated": "2023-07-11T19:34:16.845Z", + "date_of_expiration": "2023-07-11T19:34:16.845Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "f4e685119b234d9a88aef6e6", + "revision": "b65c5a19f7884f9ca5d5084e", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55725,10 +40946,10 @@ "content": { "type": "STRING", "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", - "revision": "3c385bbff62144b9b459e005", + "revision": "1cba4ab8fde542878fbd0f15", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55736,24 +40957,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "costs": [] }, - "revision": "638184ec671747c58a46f180", + "revision": "5355979b15a248329eee4382", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55768,27 +40977,18 @@ "total_amount": 5352934, "history_id": 1689104143830, "id": 1689104143830, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-07-11T19:35:43.830Z", + "date_last_updated": "2023-07-11T19:35:43.830Z", + "date_of_expiration": "2023-07-11T19:35:43.830Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "1d308270e60a4d61ab2e35e9", + "revision": "f4e50235bc9b46b0804c83f5", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55796,10 +40996,10 @@ "content": { "type": "STRING", "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", - "revision": "53df29bb13cd409a88943af7", + "revision": "943b4ed58fbf444386e6a4a9", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55807,24 +41007,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "costs": [] }, - "revision": "d837aee8c0a94f0fa6a1f3c5", + "revision": "ee92ab00fee142a6ba05a723", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55839,27 +41027,18 @@ "total_amount": 5352934, "history_id": 1689646587803, "id": 1689646587803, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-07-18T02:16:27.803Z", + "date_last_updated": "2023-07-18T02:16:27.803Z", + "date_of_expiration": "2023-07-18T02:16:27.803Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "db5d691b2b8d409e97fa7179", + "revision": "2cf71e7cf13e4bc6afc0b14f", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55867,10 +41046,10 @@ "content": { "type": "STRING", "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", - "revision": "7b25728ca88845f985665b80", + "revision": "67162e9387034d4fb215587a", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55880,24 +41059,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 160588.02, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "amount": 160588.02 }, - "revision": "70dc51ca9230420e8ad643e1", + "revision": "c5c3595258e64bddbb2c372d", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55912,24 +41079,12 @@ "installment_amount": 5352934, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "financial_institution": "ivipcoin" }, - "revision": "a1a395f3951544de8afd134b", + "revision": "aa88420364df4f6fa407717e", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55937,10 +41092,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/056546769240355840/history/1692620472334", - "revision": "f1851189a7774d30a0b301f7", + "revision": "62773097162f4a9895fb4ec7", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55948,10 +41103,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "845e34e15b33447dbdec441b", + "revision": "e96c55cdb5c4458882619f46", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -55966,18 +41121,9 @@ "total_amount": 5192345.98, "id": 1692620472334, "history_id": 1692620472334, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-08-21T12:21:12.334Z", + "date_last_updated": "2023-08-21T12:21:55.386Z", + "date_of_expiration": "2023-08-21T12:21:12.334Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -55989,10 +41135,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "8e8c4201ee9a429c855a138a", + "revision": "5da095cdb2e94fd7a70257c1", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -56000,10 +41146,10 @@ "content": { "type": "STRING", "value": "Saque de 5.192.345,98 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", - "revision": "baaeecef59f94426828a3dc4", + "revision": "c24e1c21a8c141f68c78b469", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -56011,10 +41157,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1f203775e7a94c97adc806e1", + "revision": "d4d369e4b33c41ebafe4e663", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -56022,10 +41168,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8ed7cc84e97c4ea1889e8978", + "revision": "8404607f7af943e6acbdbb21", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -56035,24 +41181,12 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-08-18T18:47:04.311Z", - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "analysisRequested": "2023-08-18T18:47:04.311Z" }, - "revision": "6d0a34526ff2412c91d99811", + "revision": "8ac10b6af2c84bd3969c307b", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -56064,24 +41198,12 @@ "dateValidity": 1678245807542, "totalValue": 218.81, "currencyType": "USD", - "balancesModificacao": "2023-08-21T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "balancesModificacao": "2023-08-21T03:00:00.000Z" }, - "revision": "477b35433c2041889a7722a1", + "revision": "88fa8a70d5014133a1c858a5", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -56089,10 +41211,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3f42050b7ff54b59951606bf", + "revision": "bed13088667142a8b937bd0c", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -56100,10 +41222,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "27f4bb856ea34d8396fbff91", + "revision": "74ebfdfad21240118c56352b", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -56114,24 +41236,12 @@ "dataModificacao": 1677956784862, "dateValidity": 1678334303407, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "currencyType": "USD" }, - "revision": "26ad3cba0c3f4c6394281869", + "revision": "a656df588c4f4f11ba9cd546", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -56141,24 +41251,12 @@ "value": { "available": "561917.00000000", "symbol": "IVIP", - "value": 59.89, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "value": 59.89 }, - "revision": "554ca7512baa4b06ba1c5949", + "revision": "4e410b4375654dac92bd3acd", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -56166,10 +41264,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b68e503e10694f019697ac13", + "revision": "822fbc89d4f64f08a708ca22", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509558, + "modified": 1701463509558 } }, { @@ -56177,24 +41275,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "costs": [] }, - "revision": "93c258c5e3844f7683b1adfd", + "revision": "d48d37daec734fbe8bacad77", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56209,18 +41295,9 @@ "total_amount": 20, "history_id": 1679346644168, "id": 1679346644168, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-03-20T21:10:44.168Z", + "date_last_updated": "2023-03-20T21:15:55.591Z", + "date_of_expiration": "2023-04-19T21:10:44.168Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -56230,10 +41307,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9223f5f835704b75aedf93b3", + "revision": "6e9966680e70448db74fe515", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56241,10 +41318,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "d50b8f333c9f4dd5bf5ff71c", + "revision": "50c64ba6dccd42e1994c6598", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56252,24 +41329,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "costs": [] }, - "revision": "99133a58f1ec4dc5b3d5627a", + "revision": "435b5a00ec354bf3b064ad93", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56284,18 +41349,9 @@ "total_amount": 20, "history_id": 1679707462559, "id": 1679707462559, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-03-25T01:24:22.559Z", + "date_last_updated": "2023-03-25T01:45:37.072Z", + "date_of_expiration": "2023-04-24T01:24:22.559Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -56305,10 +41361,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a559cbfb4a054d05a6bc8030", + "revision": "bf53f7a70d88483da487552f", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56316,10 +41372,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "175f88e3b9724872a01b5d13", + "revision": "7ba9e51abaac4c15b3fee271", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56337,24 +41393,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "costs": [] }, - "revision": "3c89af67f67847118dc540ac", + "revision": "59f71cc35a71494e965755de", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56370,18 +41414,9 @@ "original_amount": 213025, "total_amount": 213025, "id": 1679871671858, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-03-26T23:01:11.858Z", + "date_last_updated": "2023-03-26T23:01:11.858Z", + "date_of_expiration": "2023-03-26T23:01:11.858Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -56390,10 +41425,10 @@ "history_id": 1679871671858, "description": "Compra de 213.025,00 IVIP por 40,00 BRL" }, - "revision": "8122e1e2e7614ed08e1e8037", + "revision": "f29b3da4581644789c2d7049", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56401,24 +41436,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "costs": [] }, - "revision": "9f530ef0692c4b70a76d87b0", + "revision": "233e3bb51b19454281ae1ba0", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56433,27 +41456,18 @@ "total_amount": 20, "history_id": 1689132225947, "id": 1689132225947, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-07-12T03:23:45.947Z", + "date_last_updated": "2023-07-12T03:23:45.947Z", + "date_of_expiration": "2023-08-11T03:23:45.947Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "46f926e5cc6a4db489e75da7", + "revision": "1669d5e65ad8410daf9623c0", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56461,10 +41475,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "0da0d592a6d14a15a879bdb2", + "revision": "af22cc8f1a4042559cfdec48", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56472,24 +41486,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "costs": [] }, - "revision": "df228a0f099b403b82712f35", + "revision": "eab73d04818d4c819d880356", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56504,27 +41506,18 @@ "total_amount": 50, "history_id": 1689175940633, "id": 1689175940633, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-07-12T15:32:20.633Z", + "date_last_updated": "2023-07-12T15:32:20.633Z", + "date_of_expiration": "2023-08-11T15:32:20.633Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "5a3c96727f5e4747929ad489", + "revision": "5b344ca346a649588813523c", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56532,10 +41525,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "f14bb2d7ba55479f927b69bf", + "revision": "4127a2c3dc67410c9bc841bb", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56543,24 +41536,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - } + "costs": [] }, - "revision": "2f9a972f22b349419b368af7", + "revision": "7303ff943840458cbbbf4433", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56575,27 +41556,18 @@ "total_amount": 50, "history_id": 1689367674517, "id": 1689367674517, - "date_created": { - "type": 6, - "value": 1701459383507 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383507 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383507 - }, + "date_created": "2023-07-14T20:47:54.517Z", + "date_last_updated": "2023-07-14T20:47:54.517Z", + "date_of_expiration": "2023-08-13T20:47:54.517Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "9e1628a75f4a46b99d4a0ddd", + "revision": "4a96d1311f734f0d92a4dc27", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56603,10 +41575,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "5ec1082955554855b9dcd6a3", + "revision": "090f0c1429c94679ab1b02a0", "revision_nr": 1, - "created": 1701459383507, - "modified": 1701459383507 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56614,24 +41586,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "1f2d4b5fa12f49f589b3c89e", + "revision": "fc456bc050714e5e8696ce63", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56646,18 +41606,9 @@ "total_amount": 50, "history_id": 1689622072746, "id": 1689622072746, - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-07-17T19:27:52.746Z", + "date_last_updated": "2023-07-17T19:33:11.229Z", + "date_of_expiration": "2023-08-16T19:27:52.746Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -56667,10 +41618,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "db99302eb2cb4515873e3f51", + "revision": "1fdb7f21b3fb4eb0bd0d825c", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56678,10 +41629,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "32e37a4a777f4f0b9f52691e", + "revision": "f170bdbab9494c5e98cfbfba", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56699,24 +41650,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "f1d5654a5b05479697aa71c2", + "revision": "06b2e51969fb441ba48e4556", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56732,18 +41671,9 @@ "original_amount": 32205, "total_amount": 32205, "id": 1689623842206, - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-07-17T19:57:22.206Z", + "date_last_updated": "2023-07-17T19:57:22.206Z", + "date_of_expiration": "2023-07-17T19:57:22.206Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -56752,10 +41682,10 @@ "history_id": 1689623842206, "description": "Compra de 32.205,00 IVIP por 50,00 BRL" }, - "revision": "e755aaea8dfe49e6959024ff", + "revision": "f7dde4cc842e4c01a01c710d", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56764,24 +41694,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-20T21:23:50.901Z", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + ".val": "2023-08-20T21:23:50.901Z" }, - "revision": "c80891488b9e4ce597652009", + "revision": "2655244bc2374fadbec6edcc", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56797,24 +41715,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "bc6fb85976ec429bb19ff86e", + "revision": "92bfa12689db4816b52aa512", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56822,10 +41728,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1689974630901", - "revision": "f30a2d74679b43b7b2e03510", + "revision": "009c8a07fb6145fcbff81b78", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56840,29 +41746,19 @@ "total_amount": 20, "id": 1689974630901, "history_id": 1689974630901, - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-07-21T21:23:50.901Z", + "date_last_updated": "2023-07-21T21:23:50.901Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "status_detail": "pending_waiting_payment" }, - "revision": "61a8ddea1bf94751b71d6822", + "revision": "b3bc7701cde245f7879a0b77", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56870,10 +41766,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "fbfc274eae8a43d08f11529b", + "revision": "2f8dcc05f0274d269b452f36", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56882,24 +41778,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-24T00:44:32.747Z", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + ".val": "2023-08-24T00:44:32.747Z" }, - "revision": "81743b47656e46eea67d3d6e", + "revision": "7140d9b10a4a49ebadc9bc92", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56915,24 +41799,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "7c8b404ccee94545afa3c1d4", + "revision": "dd80e33d872e4764aedf30aa", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56940,10 +41812,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1690245872747", - "revision": "fa1aac1f23af432283cb1bd1", + "revision": "084737b675d04f95be7df622", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56958,14 +41830,8 @@ "total_amount": 20, "id": 1690245872747, "history_id": 1690245872747, - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-07-25T00:44:32.747Z", + "date_last_updated": "2023-07-25T18:21:16.564Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -56975,16 +41841,12 @@ "date_approved": "2023-07-25T18:21:16.564Z", "money_release_date": "2023-07-25T18:21:16.564Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "wasDebited": true }, - "revision": "db0f9a6123354f3c961c09f0", + "revision": "4fc4e8370dab426298032b27", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -56992,10 +41854,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "18bba0fc97ac4f42bcd6f45e", + "revision": "87e0ea7f8c24417fb2db5546", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57013,24 +41875,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "b8cb5350752247e2b01cd243", + "revision": "b4227028b4d345e78dcdd688", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57046,18 +41896,9 @@ "original_amount": 16406, "total_amount": 16406, "id": 1690318679149, - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-07-25T20:57:59.149Z", + "date_last_updated": "2023-07-25T20:57:59.149Z", + "date_of_expiration": "2023-07-25T20:57:59.149Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -57066,10 +41907,10 @@ "history_id": 1690318679149, "description": "Compra de 16.406,00 IVIP por 20,00 BRL" }, - "revision": "350f8bee28b34c6cb97fde36", + "revision": "4bd224c0ddfa493dbf3932ce", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57078,24 +41919,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-18T19:33:06.359Z", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + ".val": "2023-09-18T19:33:06.359Z" }, - "revision": "94057fe3a1874b1fafe6dfbf", + "revision": "5f7c25ef5c4441d9843eb84e", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57111,24 +41940,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "76e0eb5f9df04dd8bf682dc6", + "revision": "dc81968a93944581834510c4", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57136,10 +41953,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692473586359", - "revision": "d2cae06629804551958504cc", + "revision": "19de19f3983f4183a22c0626", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57154,14 +41971,8 @@ "total_amount": 20, "id": 1692473586359, "history_id": 1692473586359, - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-08-19T19:33:06.359Z", + "date_last_updated": "2023-08-19T20:22:50.838Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -57171,16 +41982,12 @@ "date_approved": "2023-08-19T20:22:50.838Z", "money_release_date": "2023-08-19T20:22:50.838Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "wasDebited": true }, - "revision": "00bca01c05df44ca8e1b9e2b", + "revision": "e709f8305e0b47728160b298", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57188,10 +41995,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "2f4f2df574ea4a23afc68189", + "revision": "4f8c7ac1b0954a5f82d8db94", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57207,24 +42014,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "2f721ef30a83418caa89a54b", + "revision": "92c8e9bb50dc4d0496fcaf40", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57232,10 +42027,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692476742525", - "revision": "ace45f08b06e4e82adaed32e", + "revision": "c1ff5dde966d4a3f9be50be4", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57250,18 +42045,9 @@ "total_amount": 32045, "id": 1692476742525, "history_id": 1692476742525, - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-08-19T20:25:42.525Z", + "date_last_updated": "2023-08-19T20:25:42.525Z", + "date_of_expiration": "2023-08-19T20:25:42.525Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -57270,10 +42056,10 @@ "description": "Compra de 32.045,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "c5a28fad857b4482b85733b2", + "revision": "29ce76aef2374cb8b5aa4fc8", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57282,24 +42068,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-24T20:53:30.545Z", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + ".val": "2023-09-24T20:53:30.545Z" }, - "revision": "8194711247bc48f3b5cf3255", + "revision": "11ce5ce8f7d24286b8e074fe", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57315,24 +42089,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "6105ca856ac14af5917b1522", + "revision": "e60bd05acac94441835cfaa5", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57340,10 +42102,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692996810545", - "revision": "f543afcc7aba4732a326de46", + "revision": "a22f22224ce44924ab67edb2", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57358,29 +42120,19 @@ "total_amount": 20, "id": "1692996810545", "history_id": "1692996810545", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-08-25T20:53:30.545Z", + "date_last_updated": "2023-08-25T20:53:30.545Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "status_detail": "pending_waiting_payment" }, - "revision": "e4a66491646f4647b88dcdee", + "revision": "57c494bc8f1e44f18f4f1146", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57388,10 +42140,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "b03b236945dd42fd82c2a642", + "revision": "022f82681d9b41738e96a6a1", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57400,24 +42152,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-24T20:54:04.899Z", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + ".val": "2023-09-24T20:54:04.899Z" }, - "revision": "3b2ac2119f924f729e3e0bca", + "revision": "3326affb78474842b0dbf840", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57433,24 +42173,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "22f1ed11ff2449c09bc9ed6f", + "revision": "bd9391e35a4149eeba5a7ae1", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57458,10 +42186,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692996844899", - "revision": "c8cddf83008d4290992b9d91", + "revision": "d748787295334325b376018f", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57476,14 +42204,8 @@ "total_amount": 20, "id": "1692996844899", "history_id": "1692996844899", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-08-25T20:54:04.899Z", + "date_last_updated": "2023-08-25T21:45:21.567Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -57493,16 +42215,12 @@ "date_approved": "2023-08-25T21:45:21.567Z", "money_release_date": "2023-08-25T21:45:21.567Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "wasDebited": true }, - "revision": "aeb9970e6ea64af78d5a2be5", + "revision": "10b5907c78724b9eb25977c9", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57510,10 +42228,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "3558cb1560eb4effb2a14c58", + "revision": "53674c824b74433ab122743a", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57529,24 +42247,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "32e5f90b7a084ccc919e0947", + "revision": "a54b8ffb4581436e8429da80", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57554,10 +42260,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693000377717", - "revision": "471c591689af4f90837f9a89", + "revision": "e308ad449d9b49fc94b9c640", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57572,18 +42278,9 @@ "total_amount": 40254, "id": "1693000377717", "history_id": "1693000377717", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-08-25T21:52:57.717Z", + "date_last_updated": "2023-08-25T21:52:57.717Z", + "date_of_expiration": "2023-08-25T21:52:57.717Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -57592,10 +42289,10 @@ "description": "Compra de 40.254,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "126eea8e9ac049e296886f5c", + "revision": "1366a208f6934522933dcb58", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57604,24 +42301,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-01T21:57:07.916Z", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + ".val": "2023-10-01T21:57:07.916Z" }, - "revision": "ae85a5bd0a0e485b9f5891c4", + "revision": "c6758c5122d64863bbf68be2", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57637,24 +42322,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "163c325a37a4441ba1c54efa", + "revision": "404bc0717aa64925b2c37a59", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57662,10 +42335,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693605427916", - "revision": "a534cc10c0bb4f7c9c7808da", + "revision": "c95eca8e48d641309e7274b8", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57680,29 +42353,19 @@ "total_amount": 20, "id": "1693605427916", "history_id": "1693605427916", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-09-01T21:57:07.916Z", + "date_last_updated": "2023-09-01T21:57:07.916Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "status_detail": "pending_waiting_payment" }, - "revision": "0d890634cfbc449aafcdc3a8", + "revision": "eb5bee82c71d471b92154750", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57710,10 +42373,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "35a058b2ddf643899c9894a8", + "revision": "bb4564f0efb44edea1039483", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57722,24 +42385,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-01T22:02:42.263Z", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + ".val": "2023-10-01T22:02:42.263Z" }, - "revision": "8501c7a335f940a7a5dc6e25", + "revision": "c83162c798554a7aae24d6e9", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57755,24 +42406,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "4239fbe6675548fabdb97914", + "revision": "0d6d8c44318041ea9ed89ea5", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57780,10 +42419,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693605762263", - "revision": "dae6223be5934da5808c39d2", + "revision": "ef8652ea9fbf4859bbe081b4", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57798,14 +42437,8 @@ "total_amount": 20, "id": "1693605762263", "history_id": "1693605762263", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-09-01T22:02:42.263Z", + "date_last_updated": "2023-09-01T22:07:13.196Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -57815,16 +42448,12 @@ "date_approved": "2023-09-01T22:07:13.196Z", "money_release_date": "2023-09-01T22:07:13.196Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "wasDebited": true }, - "revision": "d309b9937ad94a989ef11ac7", + "revision": "46b5db2ec6dd43ec9f7fc5c0", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57832,10 +42461,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "e9955814ec1247e5a74c0abd", + "revision": "027816ad622b47a1af8d7943", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57851,24 +42480,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "e0fa9cf23386413b92181256", + "revision": "854d066698204ef186b33039", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57876,10 +42493,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693606719867", - "revision": "54ec2ac0d80b4cfc83a93527", + "revision": "7dee3308a0374b91b184e494", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57894,18 +42511,9 @@ "total_amount": 33429, "id": "1693606719867", "history_id": "1693606719867", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-09-01T22:18:39.867Z", + "date_last_updated": "2023-09-01T22:18:39.867Z", + "date_of_expiration": "2023-09-01T22:18:39.867Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -57914,10 +42522,10 @@ "description": "Compra de 33.429,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "ab7f4d68f7914407b06a0789", + "revision": "32be3c3e3de74dcdbd789ed7", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57926,24 +42534,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-14T01:28:42.996Z", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + ".val": "2023-10-14T01:28:42.996Z" }, - "revision": "87aba0296ba64b46a85c9b0d", + "revision": "cceed9e76b99435a9986c907", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57959,24 +42555,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "d58da87795a04e8e96d7c05d", + "revision": "f8f1b415336f484589aaeb3e", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -57984,10 +42568,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694654922996", - "revision": "4424fd20fd9e4f3d9fbffd5d", + "revision": "4f93f1ae46794c41a30715fb", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -58002,14 +42586,8 @@ "total_amount": 20, "id": "1694654922996", "history_id": "1694654922996", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-09-14T01:28:42.996Z", + "date_last_updated": "2023-09-14T01:41:00.738Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58019,16 +42597,12 @@ "date_approved": "2023-09-14T01:41:00.738Z", "money_release_date": "2023-09-14T01:41:00.738Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "wasDebited": true }, - "revision": "076a2a70f8024223aa44f217", + "revision": "c0b87e81bea54312abd4e659", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -58036,10 +42610,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "e753e05f1bf943dd8ad5f4f5", + "revision": "89a6c9b2b37343779dc30d3c", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509559, + "modified": 1701463509559 } }, { @@ -58048,24 +42622,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-14T21:52:06.075Z", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + ".val": "2023-10-14T21:52:06.075Z" }, - "revision": "d69d097177da40d3b5bc1e90", + "revision": "d3afa74a916749aab4793581", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58081,24 +42643,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "129c22b4c3a849378882bc2e", + "revision": "b5dcbe50b11d45829ae13a7f", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58106,10 +42656,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694728326075", - "revision": "674bc3a5c31a44a984144c0f", + "revision": "86596de23fe7478b98fba90f", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58124,14 +42674,8 @@ "total_amount": 100, "id": "1694728326075", "history_id": "1694728326075", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-09-14T21:52:06.075Z", + "date_last_updated": "2023-09-14T22:42:22.567Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58141,16 +42685,12 @@ "date_approved": "2023-09-14T22:42:22.567Z", "money_release_date": "2023-09-14T22:42:22.567Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "wasDebited": true }, - "revision": "a6428a9808f04d5db0207212", + "revision": "924f9da72a96440d85833aad", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58158,10 +42698,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "358f5afd23f84f78b1687223", + "revision": "05dba41905dc4cf79ed788e8", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58170,24 +42710,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-14T22:00:59.603Z", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + ".val": "2023-10-14T22:00:59.603Z" }, - "revision": "f239177ca5b7479a8ed668c3", + "revision": "c20aeefc5a104427997c0034", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58203,24 +42731,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "c6ca73d3383c4d3faadc5197", + "revision": "1d5ed79473874e49b36f9bf3", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58228,10 +42744,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694728859604", - "revision": "d1fdc9f7d6fb4c98838b517e", + "revision": "a15ad6a79b34436c8fab74e9", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58246,29 +42762,19 @@ "total_amount": 100, "id": "1694728859604", "history_id": "1694728859604", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-09-14T22:00:59.604Z", + "date_last_updated": "2023-09-14T22:00:59.604Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "status_detail": "pending_waiting_payment" }, - "revision": "9d9eca0129104eda885389cc", + "revision": "e91087d877d24eb18f145578", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58276,10 +42782,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "d1777205a9d64c6e82e50af5", + "revision": "1eab0a756dd7435481071136", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58295,24 +42801,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "41445919197c4221be7eeec3", + "revision": "c2ab8c958058424997afd117", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58320,10 +42814,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694731526035", - "revision": "34b458f2537440009d8ce0f9", + "revision": "d9cc24742d6a4a8e83304bf9", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58338,18 +42832,9 @@ "total_amount": 121808, "id": "1694731526035", "history_id": "1694731526035", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-09-14T22:45:26.035Z", + "date_last_updated": "2023-09-14T22:45:26.035Z", + "date_of_expiration": "2023-09-14T22:45:26.035Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -58358,10 +42843,10 @@ "description": "Compra de 121.808,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "0e9ea26cdce14d389e094fe6", + "revision": "8c9c3c9d5c164374b233a4b7", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58377,24 +42862,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - } + "costs": [] }, - "revision": "c8470ca3898347abb03f6d9f", + "revision": "db1a99ac21de4b558c7af168", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58402,10 +42875,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694793493188", - "revision": "dea5c41600624720843e20d3", + "revision": "4015540f2264499eacdca6d2", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58420,18 +42893,9 @@ "total_amount": 25384, "id": "1694793493188", "history_id": "1694793493188", - "date_created": { - "type": 6, - "value": 1701459383508 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383508 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383508 - }, + "date_created": "2023-09-15T15:58:13.188Z", + "date_last_updated": "2023-09-15T15:58:13.188Z", + "date_of_expiration": "2023-09-15T15:58:13.188Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -58440,10 +42904,10 @@ "description": "Compra de 25.384,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "a9d7e1d5dfab4df492ab74e5", + "revision": "33e0d18a1c6e4dfbab04cfeb", "revision_nr": 1, - "created": 1701459383508, - "modified": 1701459383508 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58452,24 +42916,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-17T15:55:09.290Z", - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + ".val": "2023-10-17T15:55:09.290Z" }, - "revision": "90830ce175a54bfb85e25906", + "revision": "6488bee4d5cc4c6182f53aea", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58485,24 +42937,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "costs": [] }, - "revision": "a9f4fb00dc3742579adf3b73", + "revision": "80405830a66744b9829d3128", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58510,10 +42950,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694966109291", - "revision": "8305faaf97914626a863f215", + "revision": "13346aa9067b4ca788245d05", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58528,14 +42968,8 @@ "total_amount": 20, "id": "1694966109291", "history_id": "1694966109291", - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, + "date_created": "2023-09-17T15:55:09.291Z", + "date_last_updated": "2023-09-17T17:58:17.859Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58545,16 +42979,12 @@ "date_approved": "2023-09-17T17:58:17.859Z", "money_release_date": "2023-09-17T17:58:17.859Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "wasDebited": true }, - "revision": "3c39023b388b4237a669866a", + "revision": "c2fc585bf67f45ff9e7d501d", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58562,10 +42992,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "94ee47238ac54a16a777d5a3", + "revision": "a72fdb81739f4a2987be60bd", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58581,24 +43011,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "costs": [] }, - "revision": "347a2b36b2ff43e8928b3d28", + "revision": "667a316019624c5daf7e7041", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58606,10 +43024,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694988703973", - "revision": "72da8cc5e5224cbd910f4412", + "revision": "da2a3fb60e4e4d89afd48e16", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58624,18 +43042,9 @@ "total_amount": 25302, "id": "1694988703973", "history_id": "1694988703973", - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - }, + "date_created": "2023-09-17T22:11:43.973Z", + "date_last_updated": "2023-09-17T22:11:43.973Z", + "date_of_expiration": "2023-09-17T22:11:43.973Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -58644,10 +43053,10 @@ "description": "Compra de 25.302,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "d24e466f756240e0bb70e46e", + "revision": "fc5294fd9fec4142bbdf110b", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58656,24 +43065,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-04T15:33:48.284Z", - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + ".val": "2023-11-04T15:33:48.284Z" }, - "revision": "175d83fbd5334b869789459c", + "revision": "a9a3ce24be3245c68bde0e75", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58689,24 +43086,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "costs": [] }, - "revision": "229f5226e01b40fa8c4da8a8", + "revision": "92b789d85a1b485895c414ce", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58714,10 +43099,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1696520028285", - "revision": "de2e58cb78294705a9aff9fd", + "revision": "be4cb514beac4384b90b139d", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58733,14 +43118,8 @@ "total_amount": 20, "id": "1696520028285", "history_id": "1696520028285", - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, + "date_created": "2023-10-05T15:33:48.285Z", + "date_last_updated": "2023-10-05T15:44:10.654Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58750,16 +43129,12 @@ "date_approved": "2023-10-05T15:44:10.654Z", "money_release_date": "2023-10-05T15:44:10.654Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "wasDebited": true }, - "revision": "4089610f345c425ab53a416b", + "revision": "8ce79e44185949ac995fcaa6", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58767,10 +43142,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "503f4a3d646541a4abebb65f", + "revision": "178785985d714a21a554b3b0", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58786,24 +43161,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "costs": [] }, - "revision": "31f7905950a24a279a2d90b5", + "revision": "33d58843ee2b475d9688898c", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58811,10 +43174,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1696520773436", - "revision": "08fd0db1a26a4fcc93a1c069", + "revision": "83bbce72056647bea5721fa4", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58830,18 +43193,9 @@ "total_amount": 22059, "id": "1696520773436", "history_id": "1696520773436", - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - }, + "date_created": "2023-10-05T15:46:13.436Z", + "date_last_updated": "2023-10-05T15:46:13.436Z", + "date_of_expiration": "2023-10-05T15:46:13.436Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -58850,10 +43204,10 @@ "description": "Compra de 22.059,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "7c4c44522e9646f7922be0ed", + "revision": "540c479ba763406a8410f409", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58861,10 +43215,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ffd1741a4d39491aa638f0f3", + "revision": "57528dcc02a84acba7a37766", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58872,10 +43226,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e9d8e0d6db344c30b71e33ff", + "revision": "a0def23ec8464d94a1f9e7be", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58885,24 +43239,12 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-10-01T15:23:13.593Z", - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "analysisRequested": "2023-10-01T15:23:13.593Z" }, - "revision": "9b1a9b897ffa4470bd5b1646", + "revision": "34c6cbc51fff4d2081c97d5f", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58914,24 +43256,12 @@ "dateValidity": 1679345183302, "totalValue": 17.88, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "balancesModificacao": "2023-10-15T03:00:00.000Z" }, - "revision": "53a46ddeba724e879d1059cf", + "revision": "d4dd83d44921479e99d2d555", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58941,24 +43271,12 @@ "value": { "available": "-14612195.00000000", "symbol": "IVIP", - "value": -15912.37, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "value": -15912.37 }, - "revision": "67bb97a817724ee381fb53d0", + "revision": "95acb553a0264b18b9fdbd0d", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58966,10 +43284,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "095d5501e3674afdb3259ccb", + "revision": "3070375300c848428e7990eb", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -58977,24 +43295,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "costs": [] }, - "revision": "1f2814dde7234ce8a759c8d2", + "revision": "5fb4f454ccba44ef96d0d829", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59009,18 +43315,9 @@ "total_amount": 3000, "history_id": 1683732218933, "id": 1683732218933, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - }, + "date_created": "2023-05-10T15:23:38.933Z", + "date_last_updated": "2023-05-10T15:38:13.240Z", + "date_of_expiration": "2023-06-09T15:23:38.933Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -59030,10 +43327,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "347bb438f110479e93712329", + "revision": "c27ff8528b1f41928cde86c1", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59041,10 +43338,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0583.5908.1725.8996-56", - "revision": "24b5922406f64a7797229a1c", + "revision": "5d3cb8396af4484b86052295", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59062,24 +43359,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "costs": [] }, - "revision": "9990d640fe5640bbbcaf92b5", + "revision": "c5b6e7343b77450f8244d042", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59095,18 +43380,9 @@ "original_amount": 14612195, "total_amount": 14612195, "id": 1684627186163, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - }, + "date_created": "2023-05-20T23:59:46.163Z", + "date_last_updated": "2023-05-20T23:59:46.163Z", + "date_of_expiration": "2023-05-20T23:59:46.163Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -59115,10 +43391,10 @@ "history_id": 1684627186163, "description": "Compra de 14.612.195,00 IVIP por 3.000,00 BRL" }, - "revision": "9b1339c1bca044d0b8a8330e", + "revision": "776c17b8878445499c35aa3f", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59128,24 +43404,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 438365.85, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "amount": 438365.85 }, - "revision": "ae14b9c7276f457293ed2300", + "revision": "b25841499409414fb7a9e29a", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59160,24 +43424,12 @@ "installment_amount": 14612195, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "financial_institution": "ivipcoin" }, - "revision": "885211a413cb4789baf5a31a", + "revision": "6f51e60888db49f19f016ae1", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59185,10 +43437,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/058359081725899656/history/1692302387863", - "revision": "ffe50d9d27f145f8a9a59e00", + "revision": "8367e27c467a434aa11530eb", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59196,10 +43448,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "7abb128abb5748369430bbcd", + "revision": "f1cd9a3b2290462083fa2ea5", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59214,18 +43466,9 @@ "total_amount": 14173829.15, "id": 1692302387863, "history_id": 1692302387863, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - }, + "date_created": "2023-08-17T19:59:47.863Z", + "date_last_updated": "2023-08-25T14:20:52.038Z", + "date_of_expiration": "2023-08-17T19:59:47.863Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -59237,10 +43480,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "81fcb03fd76e4d50bd20345a", + "revision": "899c914eeee043cb8f51b846", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59248,10 +43491,10 @@ "content": { "type": "STRING", "value": "Saque de 14.173.829,15 IVIP para a carteira 0x5cD8D20fc31429974550e7e677C493554c46a73A", - "revision": "33e2fc77017d47179784e85b", + "revision": "6a644e00f5f249dfadee3dd2", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59261,24 +43504,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 438365.85, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "amount": 438365.85 }, - "revision": "69d7dee8c22a42b0bfb4c9d9", + "revision": "f2e04af19fb74ad2b5a69c29", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59293,24 +43524,12 @@ "installment_amount": 14612195, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "financial_institution": "ivipcoin" }, - "revision": "1652c63873aa46f88933d10f", + "revision": "3c1b8d43fd11454baec70145", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59318,10 +43537,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/058359081725899656/history/1692441112310", - "revision": "b87fe98cca8f491c8b6d7a37", + "revision": "c8d0dc9bbb6249af9ea319fa", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59329,10 +43548,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "67a70a3b6eca4736a7fa7d35", + "revision": "e451d91656bf435cad1996fa", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59347,18 +43566,9 @@ "total_amount": 14173829.15, "id": 1692441112310, "history_id": 1692441112310, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - }, + "date_created": "2023-08-19T10:31:52.310Z", + "date_last_updated": "2023-08-25T14:12:05.453Z", + "date_of_expiration": "2023-08-19T10:31:52.310Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -59370,10 +43580,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "ce337e99f3d349608ebf09e3", + "revision": "62fc2b2af3ff4cdf974b865f", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59381,10 +43591,10 @@ "content": { "type": "STRING", "value": "Saque de 14.173.829,15 IVIP para a carteira 0x5cD8D20fc31429974550e7e677C493554c46a73A", - "revision": "8641ea071d18453985f675c3", + "revision": "62ddd80433214366a02a82e4", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59392,10 +43602,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8866750313fa4d6faddfd039", + "revision": "e08c45f02ac9445ca8a35bda", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59403,10 +43613,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a57d3f85ab3943b6b48904cf", + "revision": "a21626a4288b4732bdf77b5a", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59415,24 +43625,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "limitUsed": 0 }, - "revision": "4d3e548fa27b489a9e769a09", + "revision": "275af9520cf14287a9733fed", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59444,24 +43642,12 @@ "dateValidity": 1683669489240, "totalValue": 600.6, "currencyType": "USD", - "balancesModificacao": "2023-10-01T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "balancesModificacao": "2023-10-01T03:00:00.000Z" }, - "revision": "114f6469adeb4a12924b7ff5", + "revision": "6fca8c46f2e04e5db2364624", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59469,10 +43655,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3411073541224ad7a3f9d811", + "revision": "0f28187a714a4f6a81424f85", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59480,10 +43666,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "77ec6a5977104e9197554b54", + "revision": "dc3fdfeccf8c4f3db90211e5", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59491,10 +43677,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "67cf09cddc4343e8beb9844b", + "revision": "2bcda3949fa142dc9f7eff1d", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59503,24 +43689,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "limitUsed": 0 }, - "revision": "01351e1454da454dabd4787b", + "revision": "995fd436b5cd457b85b502ef", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59531,24 +43705,12 @@ "dataModificacao": 1684637987083, "dateValidity": 1684637987083, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "currencyType": "USD" }, - "revision": "025911d5e7964e3fad84bf2b", + "revision": "72e48470ffa94595b8ed41aa", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59558,24 +43720,12 @@ "value": { "symbol": "BRL", "available": "30.00000000", - "value": 6.027, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "value": 6.027 }, - "revision": "3a866437bb4749c790bba06a", + "revision": "f39aeb02f2394991ace9a3d4", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59583,10 +43733,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9b51675e7f8244e9a5c1d85a", + "revision": "f375aad524af4e659741eeda", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59594,24 +43744,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "costs": [] }, - "revision": "d83e821448a84057b9184a79", + "revision": "e55b62f47d874e05ab6acd5a", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59626,18 +43764,9 @@ "total_amount": 30, "history_id": 1684092073649, "id": 1684092073649, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - }, + "date_created": "2023-05-14T19:21:13.649Z", + "date_last_updated": "2023-05-14T19:24:42.901Z", + "date_of_expiration": "2023-06-13T19:21:13.649Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -59647,10 +43776,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5d3de4c3a09e450689e1e73a", + "revision": "e54d4d3e69fa4619b35e5a11", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59658,10 +43787,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0600.4447.6007.1925-36", - "revision": "046d723226354620aebbf4be", + "revision": "469b3dfb778447fe8be82be7", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59669,10 +43798,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "82d6d9c4a39f48d9b22c8897", + "revision": "7d694549b37f425bb1b91256", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59680,10 +43809,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e5621293b16241ef9ba37628", + "revision": "280e162bf99c4f11b54214ef", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59692,24 +43821,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "limitUsed": 0 }, - "revision": "4668b896df6948ac9f80e09b", + "revision": "d57aa8f816564523b2ec094e", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59720,24 +43837,12 @@ "dataModificacao": 1684091907959, "dateValidity": 1684091907959, "totalValue": 6.03, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "currencyType": "USD" }, - "revision": "e7a0bf9d3fb84f59b5ee08e4", + "revision": "d8d585039e0a4b6d95ec5569", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59747,24 +43852,12 @@ "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "value": 0 }, - "revision": "27270acc05b5429593d6dae6", + "revision": "6bc00b549153435cbc580bc8", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59774,24 +43867,12 @@ "value": { "available": "0.00000000", "symbol": "IVIP", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "value": 0 }, - "revision": "c5de5c4e40a3483a87811050", + "revision": "be4977a445124b3eb89ed791", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59799,10 +43880,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f7604878d4a9470f8a6e17e9", + "revision": "0c522cc8e4c2422684fe73a6", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59810,24 +43891,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "costs": [] }, - "revision": "314910ba0c444267866a100d", + "revision": "5a14189fb337400e95a77c19", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59842,18 +43911,9 @@ "total_amount": 30, "history_id": 1684104224358, "id": 1684104224358, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - }, + "date_created": "2023-05-14T22:43:44.358Z", + "date_last_updated": "2023-05-14T22:51:50.880Z", + "date_of_expiration": "2023-06-13T22:43:44.358Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -59863,10 +43923,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f6d4039612c14218bd498021", + "revision": "8dc2fdd2201940079189dca2", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59874,10 +43934,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0602.8179.3071.1252-50", - "revision": "f7fe529b52f148cfa198875d", + "revision": "60519aa8e63242a396a44903", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59895,24 +43955,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "costs": [] }, - "revision": "b58f27b4a14244d1a74b7718", + "revision": "007e9324e2e8485685fa258c", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59928,18 +43976,9 @@ "original_amount": 145829, "total_amount": 145829, "id": 1684702707589, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - }, + "date_created": "2023-05-21T20:58:27.589Z", + "date_last_updated": "2023-05-21T20:58:27.589Z", + "date_of_expiration": "2023-05-21T20:58:27.589Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -59948,10 +43987,10 @@ "history_id": 1684702707589, "description": "Compra de 145.829,00 IVIP por 30,00 BRL" }, - "revision": "adcbdbc0ddfd460db9793898", + "revision": "c2a71c2932044098a1b9b49e", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59959,24 +43998,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "costs": [] }, - "revision": "8532642f31194d14ae2170f0", + "revision": "272a1148e4fa48f8a957cacb", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -59991,27 +44018,18 @@ "total_amount": 20, "history_id": 1685061340656, "id": 1685061340656, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - }, + "date_created": "2023-05-26T00:35:40.656Z", + "date_last_updated": "2023-05-26T00:35:40.656Z", + "date_of_expiration": "2023-06-25T00:35:40.656Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "a43d7c037f394c22aaae7570", + "revision": "8febe44efb5c4d27a64d5597", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -60019,10 +44037,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0602.8179.3071.1252-50", - "revision": "3cce5c779d0a4b7fad7a24b2", + "revision": "fa635c144faf441e82660d58", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -60030,24 +44048,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "costs": [] }, - "revision": "e504cb3387064842851cb858", + "revision": "35eb0d1ee51d40339bc44b47", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60062,18 +44068,9 @@ "total_amount": 1055, "history_id": 1685664745809, "id": 1685664745809, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - }, + "date_created": "2023-06-02T00:12:25.809Z", + "date_last_updated": "2023-06-02T17:34:44.727Z", + "date_of_expiration": "2023-07-02T00:12:25.809Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -60081,10 +44078,10 @@ "money_release_date": "2023-06-02T17:34:44.727Z", "money_release_status": "rejected" }, - "revision": "483dbdabb7d34d88b7ff9011", + "revision": "f14d36dd799b4a43a02b85a6", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60092,10 +44089,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.055,00 para a carteira iVip 0602.8179.3071.1252-50", - "revision": "42384d8d05964df1b8dc8edd", + "revision": "3b32bd4eb5cd4cdaa9027f52", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509560, + "modified": 1701463509560 } }, { @@ -60111,24 +44108,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "costs": [] }, - "revision": "b186b526d2fe483d84e4a341", + "revision": "4fa516e78f7b46379015caf4", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60136,10 +44121,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/060281793071125250/history/1690250551090", - "revision": "02c76bf18e2049eba6320898", + "revision": "ba152950931145159a91830a", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60154,18 +44139,9 @@ "total_amount": 145829, "id": 1690250551090, "history_id": 1690250551090, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - }, + "date_created": "2023-07-25T02:02:31.090Z", + "date_last_updated": "2023-07-25T02:02:31.090Z", + "date_of_expiration": "2023-07-25T02:02:31.090Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -60173,10 +44149,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "ca42262df3fb40ada6cddde2", + "revision": "2710a19fe3484ce3bed13010", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60184,10 +44160,10 @@ "content": { "type": "STRING", "value": "Saque de 145.829,00 IVIP para a carteira 0xD99D89C01D8F4F0809a32D3916CbC94331E7b87e", - "revision": "394ca87676cd4e019da4dfa6", + "revision": "51ac98e1136c457bb6bfc202", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60203,24 +44179,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "costs": [] }, - "revision": "1a1e92b4a17848d2a592d063", + "revision": "e69125df5c5142b6ae55ccfc", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60228,10 +44192,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/060281793071125250/history/1690380108963", - "revision": "e1c0f9ba93354b6d8f15f108", + "revision": "e477613bc55b4957bc349dfe", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60246,18 +44210,9 @@ "total_amount": 145829, "id": 1690380108963, "history_id": 1690380108963, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - }, + "date_created": "2023-07-26T14:01:48.963Z", + "date_last_updated": "2023-07-26T17:31:37.340Z", + "date_of_expiration": "2023-07-26T14:01:48.963Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -60269,10 +44224,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "368272a2c7c9421f92e39da8", + "revision": "079e723272c64c9e82b9e5e8", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60280,10 +44235,10 @@ "content": { "type": "STRING", "value": "Saque de 145.829,00 IVIP para a carteira 0xD99D89C01D8F4F0809a32D3916CbC94331E7b87e", - "revision": "cf141b3bf42e4ebb8869b85c", + "revision": "27045b3676424c81bd0cbe5a", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60291,10 +44246,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0a23fb4a1bf64c719159559d", + "revision": "b93ea8ee62f44a2bb143832e", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60302,10 +44257,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7c062f2c2a904901af65a6c2", + "revision": "0d27943437c94146bbfdd1a2", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60314,24 +44269,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "limitUsed": 0 }, - "revision": "cf36b2398db54f6fadedf1dc", + "revision": "2a29d11b18e74f11a60ed7ee", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60343,24 +44286,12 @@ "dateValidity": 1684104139226, "totalValue": 6.02, "currencyType": "USD", - "balancesModificacao": "2023-08-26T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "balancesModificacao": "2023-08-26T03:00:00.000Z" }, - "revision": "db6ec907d059439ca4334b77", + "revision": "6dd1e120abc34a04bb42647b", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60370,24 +44301,12 @@ "value": { "available": "2596003.86000000", "symbol": "IVIP", - "value": 270.012, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "value": 270.012 }, - "revision": "1a49618966fb4ab6b6ef22de", + "revision": "4ae51545243341bb9eefe9bb", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60395,10 +44314,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c8e8c97ce87948b5bcaa6eb2", + "revision": "1d2becb916a047859628a3d0", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60406,24 +44325,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - } + "costs": [] }, - "revision": "58e89c4fecdd4a39afef6d13", + "revision": "fc145dcedcf94fb4bced09ac", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60438,18 +44345,9 @@ "total_amount": 1800, "history_id": 1679009450729, "id": 1679009450729, - "date_created": { - "type": 6, - "value": 1701459383509 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383509 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383509 - }, + "date_created": "2023-03-16T23:30:50.729Z", + "date_last_updated": "2023-03-16T23:32:58.413Z", + "date_of_expiration": "2023-04-15T23:30:50.729Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -60459,10 +44357,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "023c756b9559457c84f7ed86", + "revision": "f69417b96f894757b0b03032", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60470,10 +44368,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.800,00 para a carteira iVip 0606.0636.6606.7580-00", - "revision": "c1eb492469a0408ead719ec4", + "revision": "11ecfc4eeab64acfa5816811", "revision_nr": 1, - "created": 1701459383509, - "modified": 1701459383509 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60491,24 +44389,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "costs": [] }, - "revision": "bb676e2ba1254963befd92ce", + "revision": "b29a7f8625184a2889c3dc06", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60524,18 +44410,9 @@ "original_amount": 10484307, "total_amount": 10484307, "id": 1679267499015, - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - }, + "date_created": "2023-03-19T23:11:39.015Z", + "date_last_updated": "2023-03-19T23:11:39.015Z", + "date_of_expiration": "2023-03-19T23:11:39.015Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60544,10 +44421,10 @@ "history_id": 1679267499015, "description": "Compra de 10484307 IVIP por 1800 BRL" }, - "revision": "d4e7a41c07634a6e987ee87d", + "revision": "dfc1cd2ed0f645d9ac003eff", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60565,24 +44442,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "costs": [] }, - "revision": "b5c463771a664a7787c4d092", + "revision": "89740b2d396744b8ab124f97", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60597,18 +44462,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1688476464326, - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - }, + "date_created": "2023-07-04T13:14:24.326Z", + "date_last_updated": "2023-07-04T13:14:24.326Z", + "date_of_expiration": "2024-07-04T13:14:24.326Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60616,10 +44472,10 @@ "currency_id": "IVIP", "history_id": 1688476464326 }, - "revision": "4c5e07ac3baf45388200dd2e", + "revision": "aa5262f974114e8197a57611", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60627,10 +44483,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/4/2024", - "revision": "5e1c150829234620af1a0afa", + "revision": "b0231a5529144527b26db3ef", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60648,24 +44504,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "costs": [] }, - "revision": "3b09ccf3967b4625bab71e03", + "revision": "db29dc04576445aa992b7d1b", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60680,18 +44524,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1688476478538, - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - }, + "date_created": "2023-07-04T13:14:38.538Z", + "date_last_updated": "2023-07-04T13:14:38.538Z", + "date_of_expiration": "2025-07-04T13:14:38.538Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60699,10 +44534,10 @@ "currency_id": "IVIP", "history_id": 1688476478538 }, - "revision": "88d16d65b56d4acc8e1e47e7", + "revision": "cf3ad36859de4908abf74d0b", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60710,10 +44545,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/4/2025", - "revision": "5ef29637eadc4e48ad285224", + "revision": "4128f9889a7c4a038b90c3a9", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60729,24 +44564,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "costs": [] }, - "revision": "bfb47b05c4e447cba73d651b", + "revision": "42334a6123824cdfa3f3c410", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60754,10 +44577,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1693784335259", - "revision": "0a7d8e89a1e8475ebb8c5f4c", + "revision": "bf3f809eb0594abbab2494a3", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60772,18 +44595,9 @@ "total_amount": 5684843, "id": "1693784335259", "history_id": "1693784335259", - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - }, + "date_created": "2023-09-03T23:38:55.259Z", + "date_last_updated": "2023-09-03T23:38:55.259Z", + "date_of_expiration": "2023-10-03T23:38:55.258Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60791,10 +44605,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "034649e20d5c435288cfdbab", + "revision": "b89fe3e01e6b4cf3b2c2a7f2", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60802,10 +44616,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.684.843,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "1dfe789cf98b497f9aa870b6", + "revision": "9fa2a6ff165b4c5288bc8471", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60821,24 +44635,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "costs": [] }, - "revision": "f160d1aa5641401fad209085", + "revision": "d7afc32a54874e29b964b8c2", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60846,10 +44648,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384249715", - "revision": "8cfe9a18dff24c2d8dfd3cad", + "revision": "3494f76ef325434db21a6779", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60865,18 +44667,9 @@ "total_amount": 5798539.86, "id": "1696384249715", "history_id": "1696384249715", - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - }, + "date_created": "2023-10-04T01:50:49.715Z", + "date_last_updated": "2023-10-04T01:50:49.715Z", + "date_of_expiration": "2023-10-04T01:50:49.715Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60884,10 +44677,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "6c58143458654436bbe824f7", + "revision": "c32f83a23b2d44c9812ebb3d", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60895,10 +44688,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", - "revision": "ebb44ffe3c9d4f58bd9eaf55", + "revision": "adc71ace08534809b73a6aec", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60914,24 +44707,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "costs": [] }, - "revision": "6d168301a4324d068329bf45", + "revision": "eec4af8381ea41a5b474658d", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60939,10 +44720,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384254400", - "revision": "521059f1b4704110b341ac1d", + "revision": "25aa7d368a314f77bad937ec", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60958,18 +44739,9 @@ "total_amount": 5798539.86, "id": "1696384254400", "history_id": "1696384254400", - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - }, + "date_created": "2023-10-04T01:50:54.400Z", + "date_last_updated": "2023-10-04T01:50:54.400Z", + "date_of_expiration": "2023-10-04T01:50:54.400Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -60977,10 +44749,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "85e96d29381749888e38fc9a", + "revision": "84e7a4a8dc9c4beda6e1c465", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -60988,10 +44760,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", - "revision": "8a3e07fcbc0d4016a6edcdf4", + "revision": "89acf8904d17489796ca56f4", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61007,24 +44779,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "costs": [] }, - "revision": "9ef5dfb0ecd84646845a387d", + "revision": "63d79ef4536d48b29efb2dc4", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61032,10 +44792,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384253628", - "revision": "e88374e858df4ac097504816", + "revision": "f69f33b1d26c4d13946bb964", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61051,18 +44811,9 @@ "total_amount": 5798539.86, "id": "1696384253628", "history_id": "1696384253628", - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - }, + "date_created": "2023-10-04T01:50:53.628Z", + "date_last_updated": "2023-10-04T01:50:53.628Z", + "date_of_expiration": "2023-10-04T01:50:53.628Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -61070,10 +44821,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "e53f6af54e2b4c12b0ad51a4", + "revision": "192f6462e0c2488cae727edf", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61081,10 +44832,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", - "revision": "179581b4a4ef4d75b8d0887a", + "revision": "26d5f2cc5fba4b92a8e75cfe", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61100,24 +44851,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "costs": [] }, - "revision": "b5624838819f4a57910d385a", + "revision": "024c53b850d445a4bec8e456", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61125,10 +44864,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696457810654", - "revision": "8ca0dafc13434143a433559d", + "revision": "a0bdf683bf474978ac5a1188", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61144,18 +44883,9 @@ "total_amount": 8000000, "id": "1696457810654", "history_id": "1696457810654", - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - }, + "date_created": "2023-10-04T22:16:50.654Z", + "date_last_updated": "2023-10-04T22:16:50.654Z", + "date_of_expiration": "2023-11-04T22:16:50.615Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61163,10 +44893,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "9269699976ed453fbe969c7f", + "revision": "cd38104c97004425a2c058d8", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61174,10 +44904,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "8149cb63c4544a20a5cdd893", + "revision": "db72571a4b4b40dba9f77747", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61185,10 +44915,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9298e2f2ffbf42a7a3ba6222", + "revision": "2abb040d12c84f3f88eafbc0", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61196,10 +44926,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c0ad40dc03ac439a8f327951", + "revision": "a1d3d764f34544ce9fbedc9e", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61208,24 +44938,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "limitUsed": 0 }, - "revision": "90c8d71eeb2b456c8075764a", + "revision": "546bc886d13b4f31a3117b5d", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61237,24 +44955,12 @@ "dateValidity": 1679023260971, "totalValue": 563.3215233209353, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "balancesModificacao": "2023-10-15T03:00:00.000Z" }, - "revision": "628459cb65d946918079406f", + "revision": "edc74d29012643f18d515c0c", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61262,10 +44968,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "716d88fd969448068eca476a", + "revision": "413d74a300c742da80617296", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61275,24 +44981,12 @@ "value": { "symbol": "BTC", "value": 0.12708406600000002, - "available": "0.00000509", - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "available": "0.00000509" }, - "revision": "0537d872b67f4e6fa073e9c5", + "revision": "34592d5463574c599b26f3b5", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61302,24 +44996,12 @@ "value": { "symbol": "BNB", "value": 0.0088529947, - "available": "0.00002689", - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "available": "0.00002689" }, - "revision": "245c4468a62140918fe776d6", + "revision": "6a4a57ee0a7e4c40ac0f08e9", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61329,24 +45011,12 @@ "value": { "symbol": "BUSD", "value": 0.032112, - "available": "0.03211200", - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "available": "0.03211200" }, - "revision": "fb999f1805894fb4b0180288", + "revision": "9c870d7175144576886959a6", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61356,24 +45026,12 @@ "value": { "symbol": "KAVA", "value": 1.4510568362399998, - "available": "1.41843288", - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "available": "1.41843288" }, - "revision": "5e60be9926c547dba6700f2b", + "revision": "9f6cd68e26ff4fc3b3689698", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61383,24 +45041,12 @@ "value": { "symbol": "BRL", "value": 0.145340815, - "available": "0.76697000", - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "available": "0.76697000" }, - "revision": "08d079fca93e469395e6b66d", + "revision": "73d4747aa4e145fc9473d50e", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61410,24 +45056,12 @@ "value": { "symbol": "IDEX", "value": 0.0002743, - "available": "0.00500000", - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "available": "0.00500000" }, - "revision": "81961bf8bf0b49e78e3517f5", + "revision": "1c1bc4b72ebe4efd9057a8b8", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61437,24 +45071,12 @@ "value": { "symbol": "NFT", "value": 0.15272504798763, - "available": "372500.117043", - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "available": "372500.117043" }, - "revision": "57e89b84d2654392b90fa622", + "revision": "7a436f584c1945b681ad62d5", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61464,24 +45086,12 @@ "value": { "symbol": "LUNC", "value": 7.524e-8, - "available": "0.00060000", - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "available": "0.00060000" }, - "revision": "907b63005f6e40b4a3f4d45a", + "revision": "8e97a35dc9874088afedcf19", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61491,24 +45101,12 @@ "value": { "symbol": "GFT", "value": 0.001235, - "available": "0.10000000", - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "available": "0.10000000" }, - "revision": "95aa9a5336884b2eaea8b711", + "revision": "5aa6ace1d9fd44d1bbb31181", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61516,10 +45114,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f68082c221fd4b23b4b8a3e7", + "revision": "a490093518bf4a538a7fe48c", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61530,24 +45128,12 @@ "dataModificacao": 1678997573060, "dateValidity": 1679015562550, "totalValue": 1.919, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "currencyType": "USD" }, - "revision": "82a15babf77741b1a97af2ad", + "revision": "e4dcc7f0c8e54f32817eb965", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61557,24 +45143,12 @@ "value": { "available": "1808506.00000000", "symbol": "IVIP", - "value": 279.32, - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + "value": 279.32 }, - "revision": "b0289897f13d40a1af6cf191", + "revision": "7388b1c2a8c349759f6a3600", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61582,10 +45156,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "210847350def4d548199113d", + "revision": "ba0a44f218a745fc91d5c023", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61594,24 +45168,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-01T16:40:33.996Z", - "date_created": { - "type": 6, - "value": 1701459383510 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383510 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383510 - } + ".val": "2023-09-01T16:40:33.996Z" }, - "revision": "4e33e744aad14b35ab906b96", + "revision": "1d97531aae4445e3a579373b", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61627,24 +45189,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383511 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383511 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383511 - } + "costs": [] }, - "revision": "40852aba33354c7fa2006b60", + "revision": "1b1438087695463bb10abd54", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61652,10 +45202,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1690994433997", - "revision": "6e800a2f1b0e4948a949f0c8", + "revision": "1cb2741916a945619046bbde", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61670,14 +45220,8 @@ "total_amount": 1000, "id": 1690994433997, "history_id": 1690994433997, - "date_created": { - "type": 6, - "value": 1701459383511 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383511 - }, + "date_created": "2023-08-02T16:40:33.997Z", + "date_last_updated": "2023-08-02T20:48:32.957Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61687,16 +45231,12 @@ "date_approved": "2023-08-02T20:48:32.957Z", "money_release_date": "2023-08-02T20:48:32.957Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383511 - } + "wasDebited": true }, - "revision": "78e09d334b0e4d0981432f33", + "revision": "103c15f0580842cda35192d6", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61704,10 +45244,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.000,00 para a carteira iVip 0625.7521.4502.4773-84", - "revision": "63b5e16a9a934b1b8900c161", + "revision": "83c21153832147e99bd0d772", "revision_nr": 1, - "created": 1701459383510, - "modified": 1701459383510 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61723,24 +45263,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383511 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383511 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383511 - } + "costs": [] }, - "revision": "a06c2e3fced04e29bc80eedc", + "revision": "8081e00f388043d489582df9", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61748,10 +45276,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691064347943", - "revision": "411146ad17404802a73c827c", + "revision": "6b7e2e01671f40dba2f7d80c", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61766,18 +45294,9 @@ "total_amount": 207673, "id": 1691064347943, "history_id": 1691064347943, - "date_created": { - "type": 6, - "value": 1701459383511 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383511 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383511 - }, + "date_created": "2023-08-03T12:05:47.943Z", + "date_last_updated": "2023-08-03T12:05:47.943Z", + "date_of_expiration": "2023-08-03T12:05:47.943Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -61786,10 +45305,10 @@ "description": "Compra de 207.673,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "082e050b40194fb39734bf7f", + "revision": "7d243cfcccb24dfe8d3defb5", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61805,24 +45324,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383511 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383511 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383511 - } + "costs": [] }, - "revision": "d0f5135da91b442fb23df420", + "revision": "d3a275997d59454da379cb01", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61830,10 +45337,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691234903050", - "revision": "a7b4f5120e36418098a3865c", + "revision": "cdbad78ae3c940689be3dbcd", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61848,18 +45355,9 @@ "total_amount": 292108, "id": 1691234903050, "history_id": 1691234903050, - "date_created": { - "type": 6, - "value": 1701459383511 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383511 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383511 - }, + "date_created": "2023-08-05T11:28:23.050Z", + "date_last_updated": "2023-08-05T11:28:23.050Z", + "date_of_expiration": "2023-08-05T11:28:23.050Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -61868,10 +45366,10 @@ "description": "Compra de 292.108,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "694b8c02c5f84f6596450747", + "revision": "3d4e917f516942b7a4b9ec11", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61887,24 +45385,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383511 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383511 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383511 - } + "costs": [] }, - "revision": "63823a415db74d34af7fb7f4", + "revision": "97b2d7d276b843de8ac59e35", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61912,10 +45398,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691237670718", - "revision": "aed5eda7f8964f44b39aab3b", + "revision": "c05cd197ce1247fda7d559de", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61930,18 +45416,9 @@ "total_amount": 293284, "id": 1691237670718, "history_id": 1691237670718, - "date_created": { - "type": 6, - "value": 1701459383511 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383511 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383511 - }, + "date_created": "2023-08-05T12:14:30.718Z", + "date_last_updated": "2023-08-05T12:14:30.718Z", + "date_of_expiration": "2023-08-05T12:14:30.718Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -61950,10 +45427,10 @@ "description": "Compra de 293.284,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "4939e75c148e402190a7ddc7", + "revision": "24c86953c28e4715b5510b39", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61969,24 +45446,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383511 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383511 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383511 - } + "costs": [] }, - "revision": "302fffc2244e4f90bdcfcb00", + "revision": "5ef6ab420a7642349dfbd35f", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -61994,10 +45459,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691454318499", - "revision": "ec23027834c44fe09f4cddd5", + "revision": "8e16f6b424f04ddca9cce242", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -62012,18 +45477,9 @@ "total_amount": 327037, "id": 1691454318499, "history_id": 1691454318499, - "date_created": { - "type": 6, - "value": 1701459383511 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383511 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383511 - }, + "date_created": "2023-08-08T00:25:18.499Z", + "date_last_updated": "2023-08-08T00:25:18.499Z", + "date_of_expiration": "2023-08-08T00:25:18.499Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -62032,10 +45488,10 @@ "description": "Compra de 327.037,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "3aef5ca8e9e546fca1582fbf", + "revision": "3259d67ebbca4b3099bfcb7d", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509561, + "modified": 1701463509561 } }, { @@ -62044,24 +45500,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-07T11:45:10.176Z", - "date_created": { - "type": 6, - "value": 1701459383511 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383511 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383511 - } + ".val": "2023-09-07T11:45:10.176Z" }, - "revision": "6ed6fc801d994fe3982053db", + "revision": "1d90954b708448b993c5c63f", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509562, + "modified": 1701463509562 } }, { @@ -62077,24 +45521,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + "costs": [] }, - "revision": "6caff9641191422499db0dae", + "revision": "5db1b0f7f20a48b2b9fc7d4a", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62102,10 +45534,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691495110179", - "revision": "f4967d1230284b72b7b07907", + "revision": "0b46ccaff95a4b729631b0ba", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509562, + "modified": 1701463509562 } }, { @@ -62120,14 +45552,8 @@ "total_amount": 1000, "id": 1691495110179, "history_id": 1691495110179, - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, + "date_created": "2023-08-08T11:45:10.179Z", + "date_last_updated": "2023-08-08T13:05:51.775Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -62137,16 +45563,12 @@ "date_approved": "2023-08-08T13:05:51.775Z", "money_release_date": "2023-08-08T13:05:51.775Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + "wasDebited": true }, - "revision": "9069b46975bb49158fb25e72", + "revision": "3c96811cdcb346b6aab753af", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62154,10 +45576,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.000,00 para a carteira iVip 0625.7521.4502.4773-84", - "revision": "280e969bfc054db28153c21a", + "revision": "7186ee60ab404c9cae86b312", "revision_nr": 1, - "created": 1701459383511, - "modified": 1701459383511 + "created": 1701463509562, + "modified": 1701463509562 } }, { @@ -62173,24 +45595,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + "costs": [] }, - "revision": "985bc89291ec4acc9a427da3", + "revision": "2d6e12a103f049c1942cf4bd", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62198,10 +45608,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691500327136", - "revision": "70984f1e6085462ea2ae68c3", + "revision": "f2663587937c42d1aa3d5623", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62216,18 +45626,9 @@ "total_amount": 332596, "id": 1691500327136, "history_id": 1691500327136, - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - }, + "date_created": "2023-08-08T13:12:07.136Z", + "date_last_updated": "2023-08-08T13:12:07.136Z", + "date_of_expiration": "2023-08-08T13:12:07.136Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -62236,10 +45637,10 @@ "description": "Compra de 332.596,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "e1160204020d4f649644dbb2", + "revision": "912c71facee041ad9fa3c0eb", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62255,24 +45656,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + "costs": [] }, - "revision": "c411e0504f0041f4b8596dee", + "revision": "0875a6f170a2496bbb4ea18a", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62280,10 +45669,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691711802306", - "revision": "0259e3e066844e3092de46b2", + "revision": "728206e9d99c496db58b4b46", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62298,18 +45687,9 @@ "total_amount": 372254, "id": 1691711802306, "history_id": 1691711802306, - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - }, + "date_created": "2023-08-10T23:56:42.306Z", + "date_last_updated": "2023-08-10T23:56:42.306Z", + "date_of_expiration": "2023-08-10T23:56:42.306Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -62318,10 +45698,10 @@ "description": "Compra de 372.254,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "0512f2c60e104667a51277cd", + "revision": "df5e1e0607cc4cf7b42b7699", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62337,24 +45717,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + "costs": [] }, - "revision": "45e6235f6fe14b3da1b7c64f", + "revision": "264203cdea7245e58fa4f1be", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62362,10 +45730,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691848017758", - "revision": "bd7244a0803f4bfd8c2922cf", + "revision": "bee04f733afe4f1eaa6e4f8a", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62380,18 +45748,9 @@ "total_amount": 378088, "id": 1691848017758, "history_id": 1691848017758, - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - }, + "date_created": "2023-08-12T13:46:57.758Z", + "date_last_updated": "2023-08-12T13:46:57.758Z", + "date_of_expiration": "2023-08-12T13:46:57.758Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -62400,10 +45759,10 @@ "description": "Compra de 378.088,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "2c5d76ae3f6140c1a693c27d", + "revision": "2cf2480b2c164b089ffce99a", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62419,24 +45778,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + "costs": [] }, - "revision": "871bba9631ad4f58b6e4a2f4", + "revision": "cec60016607c44ed93709633", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62444,10 +45791,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692027842104", - "revision": "619dc7c790ff48b8adab3b32", + "revision": "cf5e9fd943114f718301f1fa", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62462,18 +45809,9 @@ "total_amount": 456006, "id": 1692027842104, "history_id": 1692027842104, - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - }, + "date_created": "2023-08-14T15:44:02.104Z", + "date_last_updated": "2023-08-14T15:44:02.104Z", + "date_of_expiration": "2023-08-14T15:44:02.104Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -62482,10 +45820,10 @@ "description": "Compra de 456.006,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "6d2610fcfb864c20a06b4559", + "revision": "7f3d3697616a44eaa7b70342", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62501,24 +45839,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + "costs": [] }, - "revision": "4d1cd8c54dba4e6f9dca4ad2", + "revision": "462d88be619545d289b6e0f6", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62526,10 +45852,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692250715020", - "revision": "07243490dc6448c3ab484abf", + "revision": "55f160de13c345fe9ddeb6c8", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62544,18 +45870,9 @@ "total_amount": 475181, "id": 1692250715020, "history_id": 1692250715020, - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - }, + "date_created": "2023-08-17T05:38:35.020Z", + "date_last_updated": "2023-08-17T05:38:35.020Z", + "date_of_expiration": "2023-08-17T05:38:35.020Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -62564,10 +45881,10 @@ "description": "Compra de 475.181,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "3113c2f122b34c999ad8071b", + "revision": "71f85b50daf04d6ca170662e", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62576,24 +45893,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-18T23:21:10.157Z", - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + ".val": "2023-09-18T23:21:10.157Z" }, - "revision": "fc615edaddfc4c8ba63d0cbf", + "revision": "8c3e4df54d7c478c81064172", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62609,24 +45914,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + "costs": [] }, - "revision": "c962539c255e49b2a2545567", + "revision": "4b6e1decd5fa4b11aa11c278", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62634,10 +45927,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692487270158", - "revision": "730dd7d02c4545f0ba9f731d", + "revision": "7343fa747f514dad96b9ddb8", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62652,29 +45945,19 @@ "total_amount": 1500, "id": 1692487270158, "history_id": 1692487270158, - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, + "date_created": "2023-08-19T23:21:10.158Z", + "date_last_updated": "2023-08-19T23:21:10.158Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + "status_detail": "pending_waiting_payment" }, - "revision": "a5923895deae4aa58f99093e", + "revision": "aab8a3465a8f4174bf2d12f5", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62682,10 +45965,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", - "revision": "2d7a5cf6898a404bac3bd522", + "revision": "f1e78fd1db6349bda94a3859", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509563, + "modified": 1701463509563 } }, { @@ -62694,24 +45977,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-18T23:26:18.184Z", - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + ".val": "2023-09-18T23:26:18.184Z" }, - "revision": "980fb3aaab36496da0ecb2e2", + "revision": "0d2a80030b414f9696877ccd", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -62727,24 +45998,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + "costs": [] }, - "revision": "6a119aeee44f444fae646bbf", + "revision": "72052f5b98b44adf8092492b", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -62752,10 +46011,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692487578184", - "revision": "be3e5079d3934f92b32d70e9", + "revision": "2cde1de9b3f245e282c4abbe", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -62770,29 +46029,19 @@ "total_amount": 1500, "id": 1692487578184, "history_id": 1692487578184, - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, + "date_created": "2023-08-19T23:26:18.184Z", + "date_last_updated": "2023-08-19T23:26:18.184Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + "status_detail": "pending_waiting_payment" }, - "revision": "89181731a8414fd0be317456", + "revision": "9f3cacf1ca2f41b3a850446a", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -62800,10 +46049,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", - "revision": "4cdb313e70d747b98a6e1aea", + "revision": "5235b4fa42d543d99704be00", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -62819,24 +46068,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + "costs": [] }, - "revision": "2da01f733ff34614a7c5149d", + "revision": "96c36c9afab14900997d1720", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -62844,10 +46081,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692488711638", - "revision": "5225384cd2104bcab839b710", + "revision": "c8e71c22747b4678b4ab895a", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -62862,18 +46099,9 @@ "total_amount": 328542, "id": 1692488711638, "history_id": 1692488711638, - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - }, + "date_created": "2023-08-19T23:45:11.638Z", + "date_last_updated": "2023-08-19T23:45:11.638Z", + "date_of_expiration": "2023-08-19T23:45:11.638Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -62882,10 +46110,10 @@ "description": "Compra de 328.542,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "fa5a29c50a4d4f9eb3aca442", + "revision": "0610ebefe84f4c808b1305ff", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -62894,24 +46122,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-20T20:02:44.836Z", - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + ".val": "2023-09-20T20:02:44.836Z" }, - "revision": "0454f0d7f65643878f573170", + "revision": "bfd6482a50df41e7bca534d6", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -62927,24 +46143,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + "costs": [] }, - "revision": "c25ea82778924a36b8856485", + "revision": "c97a96f4e0c047a2ad3e15b9", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -62952,10 +46156,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692648164836", - "revision": "19c591eafe694b6081391002", + "revision": "afcda7df862742079c281f6b", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -62970,14 +46174,8 @@ "total_amount": 1500, "id": 1692648164836, "history_id": 1692648164836, - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, + "date_created": "2023-08-21T20:02:44.836Z", + "date_last_updated": "2023-08-22T01:03:51.441Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -62987,16 +46185,12 @@ "date_approved": "2023-08-22T01:03:51.441Z", "money_release_date": "2023-08-22T01:03:51.441Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + "wasDebited": true }, - "revision": "ae81d4a6272a45228d4cd1b7", + "revision": "a84a4ba17ec84c079718bacc", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63004,10 +46198,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", - "revision": "d6e05a0ec5fa4cacb7a6b977", + "revision": "439c621a8d344d5da2e04a49", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63023,24 +46217,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + "costs": [] }, - "revision": "456c628ca1b54034abd9137a", + "revision": "1a0491ce6f64446f96bf3af0", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63048,10 +46230,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692666772551", - "revision": "2f7cdde90d2c438d983864c3", + "revision": "59cf94a7e78d448abec3f16f", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63066,18 +46248,9 @@ "total_amount": 285329, "id": "1692666772551", "history_id": "1692666772551", - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - }, + "date_created": "2023-08-22T01:12:52.551Z", + "date_last_updated": "2023-08-22T01:12:52.551Z", + "date_of_expiration": "2023-08-22T01:12:52.551Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -63086,10 +46259,10 @@ "description": "Compra de 285.329,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "4296b35d62eb46c0aa1b51e3", + "revision": "7eace4974e7d4c65bb30fa3a", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63105,24 +46278,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + "costs": [] }, - "revision": "92415243434744518c65c547", + "revision": "db3a7e3600624068bc56dcec", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63130,10 +46291,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692666803752", - "revision": "8e3a168acf38493eaffcc637", + "revision": "a8de6b5d26554007bdd2eed1", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63148,18 +46309,9 @@ "total_amount": 285329, "id": "1692666803752", "history_id": "1692666803752", - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - }, + "date_created": "2023-08-22T01:13:23.752Z", + "date_last_updated": "2023-08-22T01:13:23.752Z", + "date_of_expiration": "2023-08-22T01:13:23.752Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -63168,10 +46320,10 @@ "description": "Compra de 285.329,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "22db32aa471f4e49b3fe4431", + "revision": "3d012eb4672e4619883f3ff6", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63187,24 +46339,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - } + "costs": [] }, - "revision": "a9fabfd2611744308d847623", + "revision": "b1655d78642d44b68ae7cb96", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63212,10 +46352,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692730130844", - "revision": "323fa959ac52400e9d848fca", + "revision": "4c09ef6652304612a97bd7f6", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63230,18 +46370,9 @@ "total_amount": 282682, "id": "1692730130844", "history_id": "1692730130844", - "date_created": { - "type": 6, - "value": 1701459383512 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383512 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383512 - }, + "date_created": "2023-08-22T18:48:50.844Z", + "date_last_updated": "2023-08-22T18:48:50.844Z", + "date_of_expiration": "2023-08-22T18:48:50.844Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -63250,10 +46381,10 @@ "description": "Compra de 282.682,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "fd0e7c32c2c84ac585c11410", + "revision": "6c862884428448f1b518d142", "revision_nr": 1, - "created": 1701459383512, - "modified": 1701459383512 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63269,24 +46400,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "costs": [] }, - "revision": "92ebc0daaf004ca6ace7d5be", + "revision": "0beb4e20b7f5499d8982001b", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63294,10 +46413,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692751123570", - "revision": "73f024aec6a94c6494735376", + "revision": "f47f631137c74111b6a77d98", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63312,18 +46431,9 @@ "total_amount": 526629, "id": "1692751123570", "history_id": "1692751123570", - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - }, + "date_created": "2023-08-23T00:38:43.570Z", + "date_last_updated": "2023-08-23T00:38:43.570Z", + "date_of_expiration": "2023-08-23T00:38:43.570Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -63332,10 +46442,10 @@ "description": "Compra de 526.629,00 IVIP por 400,00 BRL", "status_detail": "accredited" }, - "revision": "af1e0e64eedd41de9d5bd928", + "revision": "5c8b396c9e9445aab4a6f417", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63351,24 +46461,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "costs": [] }, - "revision": "d6c4def6ec1c4726be7d77b1", + "revision": "c21aef56101b4e6aa1b5de49", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63376,10 +46474,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692814492618", - "revision": "d99bfc9ab7c94b8aba08c3b8", + "revision": "dbbd36ee96b1478b99256a6d", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63394,18 +46492,9 @@ "total_amount": 614430, "id": "1692814492618", "history_id": "1692814492618", - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - }, + "date_created": "2023-08-23T18:14:52.618Z", + "date_last_updated": "2023-08-23T18:14:52.618Z", + "date_of_expiration": "2023-08-23T18:14:52.618Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -63414,10 +46503,10 @@ "description": "Compra de 614.430,00 IVIP por 500,00 BRL", "status_detail": "accredited" }, - "revision": "7152c2a2e5de4a93b6e31d66", + "revision": "6ed2000cf0fa49899d709fb5", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63426,24 +46515,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-14T15:33:42.264Z", - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + ".val": "2023-10-14T15:33:42.264Z" }, - "revision": "18d3c2bccffc4365bdfd735e", + "revision": "9d8155df5dea43eaae30354f", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63459,24 +46536,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "costs": [] }, - "revision": "1b9f1c1242e84c43a5a55248", + "revision": "70f5d497bf2343caa1978319", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63484,10 +46549,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1694705622264", - "revision": "46e622c677054599837a4fc9", + "revision": "a4008b5487294a2d9b30a9de", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63502,14 +46567,8 @@ "total_amount": 2000, "id": "1694705622264", "history_id": "1694705622264", - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, + "date_created": "2023-09-14T15:33:42.264Z", + "date_last_updated": "2023-09-14T18:38:17.493Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63519,16 +46578,12 @@ "date_approved": "2023-09-14T18:38:17.493Z", "money_release_date": "2023-09-14T18:38:17.493Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "wasDebited": true }, - "revision": "a9e6d8dbc6b44b5f88e32dcb", + "revision": "0d3ddc2c24974fa987880067", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63536,10 +46591,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0625.7521.4502.4773-84", - "revision": "1419d77d616e489e8b2321d3", + "revision": "0a4c107317c6439b80d64931", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63555,24 +46610,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "costs": [] }, - "revision": "0fbf0d91c8324b65963f31c0", + "revision": "6e23eba9eedf4df99da7c9e1", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63580,10 +46623,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1694719090426", - "revision": "f52b017d6cfb4bc3886405e6", + "revision": "cbbb31fe29604e05a9f76564", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63598,18 +46641,9 @@ "total_amount": 2446285, "id": "1694719090426", "history_id": "1694719090426", - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - }, + "date_created": "2023-09-14T19:18:10.426Z", + "date_last_updated": "2023-09-14T19:18:10.426Z", + "date_of_expiration": "2023-09-14T19:18:10.426Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -63618,10 +46652,10 @@ "description": "Compra de 2.446.285,00 IVIP por 2.000,00 BRL", "status_detail": "accredited" }, - "revision": "80c1fc97e42f483489fcf88d", + "revision": "66b2fe72e6fa40a08fa4a1de", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63637,24 +46671,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "costs": [] }, - "revision": "3d53d197802f4da79a1dd666", + "revision": "24a31456007b4fabb7d59c07", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63662,10 +46684,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1695328321082", - "revision": "8750996453d94eed9798b2ce", + "revision": "03dfdf27509b406280bdf6e3", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63680,18 +46702,9 @@ "total_amount": 1136670, "id": "1695328321082", "history_id": "1695328321082", - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - }, + "date_created": "2023-09-21T20:32:01.082Z", + "date_last_updated": "2023-09-21T20:32:01.082Z", + "date_of_expiration": "2025-09-21T20:32:01.058Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63699,10 +46712,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "e295d6ba80624bf1a0ed8552", + "revision": "ac0e0578e06244bb803c9414", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63710,10 +46723,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.136.670,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 21/09/2025 - P9A02KSL", - "revision": "995682854ae54d6f8320bff2", + "revision": "26e25695842a43b6913b589a", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63729,24 +46742,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "costs": [] }, - "revision": "c2c9adc18a534e25a3eb9fe2", + "revision": "67031aa19c3c4e06b18036fd", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63754,10 +46755,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1696508927650", - "revision": "1a4bedd0002241cfaa3c5d65", + "revision": "9d07a5803898484e92ed6ef8", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63773,18 +46774,9 @@ "total_amount": 4958277, "id": "1696508927650", "history_id": "1696508927650", - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - }, + "date_created": "2023-10-05T12:28:47.650Z", + "date_last_updated": "2023-10-05T12:28:47.650Z", + "date_of_expiration": "2023-11-05T12:28:47.619Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63792,10 +46784,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "5d4a30488226406ba458fee1", + "revision": "31ad666b2a174a808a15e8b9", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63803,10 +46795,10 @@ "content": { "type": "STRING", "value": "Investimento de 4.958.277,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", - "revision": "4e4c16a7b1004ed0ae54c4df", + "revision": "8f97af344a9c4423b787bccd", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63814,10 +46806,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "bac50b3a6cf448419b64d79f", + "revision": "f26f880b12aa43f7b2973f9c", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63825,10 +46817,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0fbccd6cf44449d9acb20888", + "revision": "07e2c80e49da4825ada02585", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63838,24 +46830,12 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-08-05T13:00:00.848Z", - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "analysisRequested": "2023-08-05T13:00:00.848Z" }, - "revision": "17dd6bc28b9f42398a9039ab", + "revision": "f83f995e20994eaaa52ef332", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63866,24 +46846,12 @@ "dataModificacao": 1690559154331, "dateValidity": 1690559154379, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "balancesModificacao": "2023-10-06T03:00:00.000Z" }, - "revision": "689e126bd4f14253b2a92597", + "revision": "fe2e56aba9ef4733b8b26346", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63893,24 +46861,12 @@ "value": { "available": "150.00000000", "symbol": "BRL", - "value": 30.33, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "value": 30.33 }, - "revision": "4748610072fc443c8e8655d0", + "revision": "9349c6f485724dcc9b1bf171", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63918,10 +46874,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "869708709cca4d27bbb439a8", + "revision": "3ad1b1d92ff042178b170d09", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -63929,24 +46885,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "costs": [] }, - "revision": "87259365e9de45fd9d97786b", + "revision": "955c07a6fe5847ac8a41b65d", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -63961,18 +46905,9 @@ "total_amount": 150, "history_id": 1689114820357, "id": 1689114820357, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - }, + "date_created": "2023-07-11T22:33:40.357Z", + "date_last_updated": "2023-07-18T14:45:51.563Z", + "date_of_expiration": "2023-08-10T22:33:40.357Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -63982,10 +46917,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "11ae03b614ce485884f1377b", + "revision": "5e5f26fe78c9402aafdfae01", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -63993,10 +46928,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0650.1373.1763.7014-00", - "revision": "e6132a3963514c118638f105", + "revision": "4e7b701a68d5474ba386e40d", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509564, + "modified": 1701463509564 } }, { @@ -64004,10 +46939,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e4697531440945a2932b9bc4", + "revision": "c95906df256e4a838f1438d0", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64015,10 +46950,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d02bd85fba8e4862b4f2cd29", + "revision": "5c49b620f5244fb7ad9d415b", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64027,24 +46962,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "limitUsed": 0 }, - "revision": "5f43722a5df94923b814827f", + "revision": "ac9f68d3435142969aba80f4", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64056,24 +46979,12 @@ "dateValidity": 1689114736496, "totalValue": 30.93, "currencyType": "USD", - "balancesModificacao": "2023-08-13T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "balancesModificacao": "2023-08-13T03:00:00.000Z" }, - "revision": "bf6cd8d3d4844573bdbee485", + "revision": "fc0f0770f00542b0aa96482e", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64081,10 +46992,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "443816f5b6424a069be39864", + "revision": "bf4741f090b54535be4dddec", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64094,24 +47005,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.198, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "amount": 0.198 }, - "revision": "de3dc909b6e047b4a6c3c8d0", + "revision": "87727b21260e4ce1b56998cc", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64119,10 +47018,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1d9ed1442ded4e8a839dbd57", + "revision": "ce44c217c8574c9db23dd97a", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64130,24 +47029,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "IVIPCOIN LTDA", - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "939412850314413dbc7ad146", + "revision": "6b6d06cb24d44e7aaf1e9a36", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64155,10 +47042,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9c7f03798d3a48b789a210e1", + "revision": "7372d291a8534d449c7cad43", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64170,24 +47057,12 @@ "net_received_amount": 0, "total_paid_amount": 20.2, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "installment_amount": 0 }, - "revision": "cec4f705590b4b6aad98d831", + "revision": "dcdd6ea9b65f47c29f556463", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64195,10 +47070,10 @@ "content": { "type": "STRING", "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540520.205802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558382385016304DD50", - "revision": "18e3487dbe0148219ac0eb53", + "revision": "863e481798da4af493bf0e59", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64206,10 +47081,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55838238501/ticket?caller_id=1310149122&hash=983b907e-205f-4db2-9b0a-8e3b51ecea21", - "revision": "3a77438bb24d4c2d9931d0bb", + "revision": "9b18b385c1f449378c13431d", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64217,10 +47092,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJf0lEQVR42u3dQW7jOhIGYGrlY/io9lF9hLfUShwEebFZVVTizGCAbunzpo0okj72isX8LLb+x3/+aYyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjH+2cW3xc/38ye3r0ueXpff716XPz/Jx8+Pzy/3rh89f/rh0+fjn49Klbx+X/v1JvWt4ICMjIyMjIyMjI+NZjOPFD0j9Eo2310s+fmebjay9aH18Tr19ymBkZGRkZGRkZGQ8g/H+NVt/vvZzav/v+/trjt++XrulouHyGtkWjI9URoR3ra8ChZGRkZGRkZGRkfHkxj68NiyxR/WwVP8cUBvHET/DOFZGRkZGRkZGRkZGxjx/ny6opxX6Zage2uv2QR0Li1BhXMIqPiMjIyMjIyMjI+M5jT0mXJawQj8s3q8lcr6+vsTl/JrBqaXGf5/vYWRkZGRkZGRkZPzbjXUv6VJW1v8/X/6X/a6MjIyMjIyMjIyMf7Nx5xPS6HE5v5dYehjrcwvpWlbxL/3dDyMjIyMjIyMjI+PRjVuqFi6pjLiO6/HPNPqWOri0lIIJW1HjL4exLm+s2TMyMjIyMjIyMjIe1HhNP0mRmSXQHiXwnkd2G3ucxwxODePcGBkZGRkZGRkZGc9mXEu7xLzRs5V+LaHLS5+v4j9Sc5d7HGsfbr+/le9hZGRkZGRkZGRkPJ5x6KSYOyC29JOhlcs1reKnxfuWRhYP/xxoD0ZGRkZGRkZGRsYTGts4bb/Mw+xp1t/m5wiFkW2py8tafnn2FwNGRkZGRkZGRkbG4xtzLD2vtffeS0DmUXLu889SBl3VS3ogIyMjIyMjIyMj4xmMucf5kJS5hBJhfgpo2zuGaBDFnaOpW8x7GXZGRkZGRkZGRkbGoxlz9vxS3jb8TmygGIqGJQ2x7fVWfKR64t18DyMjIyMjIyMjI+NhjD3EyYeXXPealN/LftNvurykMqKlL7GNOiMjIyMjIyMjI+NZjDmN/ijYNnYr70ndyllD9Tk5jDNvu9gZGRkZGRkZGRkZT2YM0/a6qTSeEbRXK0yHeHsrlfNOdoaRkZGRkZGRkZHxQMZh/h4bH157beXSS/UwdGfpKbqeC4tezizqb5+HxMjIyMjIyMjIyHg0Y+1NHl87RM5ju8RbbIiei4bL/BWTFXpGRkZGRkZGRkbGsxnXFGzJLVh6qRWeU/v7RD1Lx89W6OPm1Gu+jZGRkZGRkZGRkfHYxp5asFyni+41jb57fNBaCot46bbTZHFhZGRkZGRkZGRkPJMxZ2damMgPM/rQUjGu9D9f8ii0Ni75j+XIbJspIyMjIyMjIyMj4zmMwwp9zs6sr6hLjpzvhNl773u9FdOgx3hO2LfKyMjIyMjIyMjIeAZjXJj/ZhU/5dxzu8Q4xD7dk7p76dF+0YedkZGRkZGRkZGR8e83zub4W2mX2Mpy/jig25hzXycbT7+5tL2Vs2dkZGRkZGRkZGQ8mjEuzD9eKZicas/9WmqqfS8ys83veqQ0DSMjIyMjIyMjI+OpjLM0ep7j13h7G6f/LWRw5nXAOj8gNERvGBkZGRkZGRkZGc9hfCbWl5RqzztHQ+Q892KZ3dXLHwGWGfb2c63AyMjIyMjIyMjIeCxjn3RAnK7Zf2O8xyaLeQdqrkuuk3f9sJeUkZGRkZGRkZGR8VjGIeqSZ/2tTP+rOs/6Qxxmp+1iKBre7q3IyMjIyMjIyMjIeChjTcG0FGa/TLq87EBm2J0BDQ/8sf8jIyMjIyMjIyMj47GMsVv5bYyux97kLR4HGr/s7gqth4j2wr+99XcFRkZGRkZGRkZGxgMZ89FAYf6+Jdqatn4+XptBY9+X2aBzl5c2zcIzMjIyMjIyMjIynsEYY+kpez6Ntw9r9o/XgHZW3++x3cuy15Gxf1/PMDIyMjIyMjIyMh7SeE0L82HnaG12fnkZ4xbSfAxR2znzc/tddoaRkZGRkZGRkZHxgMaQednps7JXK4wR+IDN2Zkair+WeoKRkZGRkZGRkZHxdMYYbLmOF/Ny/hpaKu7tE30+MJYjuSNjY2RkZGRkZGRkZDytsU9akscmi3kcYfH+MhlHbhJTQ/Exg8PIyMjIyMjIyMh4FmPNs8Qntck202tpoBjSNOOS/6w3TK4ebvW/i5GRkZGRkZGRkfHYxtxbMb+kfkmbQWOspqWtqC1Ctln781vPHRkZGRkZGRkZGRkZD26Ms/77mILpk6JhPDXoPs76Z9tMl1kEvnaCeWPNnpGRkZGRkZGRkfFoxiXR6slCa+l6Hjee/nBpNztT6xJGRkZGRkZGRkbGExnnpwbFBoptjMy0+a7QWwmzh2aN6+SvAWM8h5GRkZGRkZGRkfEsxjxtDwmX/Oza7LylbovPzxC02TnFaKA9GBkZGRkZGRkZGc9m7GGpPuRZWuKvpTJoqdQIWfiYymlJHUqE9Xf9HxkZGRkZGRkZGRn/bmPOzjxKw5UQOW/p9M42ae6SEzfxrr3O6IyMjIyMjIyMjIynMra0PXR4ZEu9FZ9z/KiuIZrUyHyaWA+HiDIyMjIyMjIyMjKeyhixt9JAsRVa2m/aQ9HQJxXGZd/Yw3I+IyMjIyMjIyMj46mMgyif/xMaKM7atMSXzGix/2Ib39VLJxhGRkZGRkZGRkbGMxhzjKU2XAm03ApxnXSCiVtRw4C2UGE8/xsYGRkZGRkZGRkZz2lskzxLT4/MHVyGpMzPIZoaz2mTUDwjIyMjIyMjIyPjOYw7IZr2TbAl5muWFL1pe03Ta9uYnv4+wMjIyMjIyMjIyHgWY57sXyf59BpC36kMbn22OfVSFubXyV0LIyMjIyMjIyMj45mMS4mxtNSLpZ4a1MLpQ6FWmPVWzKmcX9cKjIyMjIyMjIyMjAc03uOsfwklQh/DL7EOuO4vw4fb67tiqTHczsjIyMjIyMjIyHhW407APPRr2b09PzlkZ56Q7Xc5e0ZGRkZGRkZGRsbjG5fSSTFHZobV92d0ffzSXgv8+a8Bz0st7kllZGRkZGRkZGRkPJux7zwpfh5lHMNkv3YrX1MDmPzAtBWVkZGRkZGRkZGR8VTGvJf0iR2+bIM6vW1LJ3zOEust8Gsq58fsDCMjIyMjIyMjI+OxjH/mh5GRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGR8Q80/gd+PCOEIzZrpQAAAABJRU5ErkJggg==", - "revision": "a209e1c7dba348f8bec6eae2", + "revision": "19754a1de6404f74afcaed0e", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64228,10 +47103,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "02f466f5fd84467e93462f1b", + "revision": "77a223752a374eeeb1f7a9a4", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64246,28 +47121,19 @@ "total_amount": 20.2, "history_id": 1679067982009, "id": 55838238501, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - }, + "date_created": "2023-03-17T11:46:22.887-04:00", + "date_last_updated": "2023-03-18T11:50:43.000-04:00", + "date_of_expiration": "2023-03-18T11:46:22.597-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", "status_detail": "expired", "currency_id": "BRL" }, - "revision": "781b8033dd7e425999793543", + "revision": "08572da97ef64b9694060aff", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64275,10 +47141,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0667.4940.3784.9818-40", - "revision": "4a8fd8dff0224acda01290a0", + "revision": "41a640cff77041a68339847b", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64286,10 +47152,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "faeda82b88e44e34aa5cca8f", + "revision": "7ad1e36995254d52b6fd633c", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64297,10 +47163,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "aaef532b9dd34ccda6e3229e", + "revision": "4bab6d6c251a4d5aba5853e9", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64309,24 +47175,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "limitUsed": 0 }, - "revision": "bb23451072444f1ca502b0de", + "revision": "05707163d8b2463ca341bf96", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64337,24 +47191,12 @@ "dataModificacao": 1679067783161, "dateValidity": 1679067783161, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "currencyType": "USD" }, - "revision": "c3d8434bbe5348848e863a79", + "revision": "aab1af77fbc5484499c358a9", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64364,24 +47206,12 @@ "value": { "available": "20.00000000", "symbol": "BRL", - "value": 3.86, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "value": 3.86 }, - "revision": "6d04f77283aa43ecb2a75e67", + "revision": "c4bd6d2af3dc443fbd597a10", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64391,24 +47221,12 @@ "value": { "available": "12224831.00000000", "symbol": "IVIP", - "value": 1888.088, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "value": 1888.088 }, - "revision": "bd1b1852ba5d4a74ae881796", + "revision": "82e5e04f9ea843b5a7ae7676", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64416,10 +47234,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b63613a12e764f62b2a6d41f", + "revision": "4152b3d0c3cf4842830e56ed", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64427,24 +47245,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "costs": [] }, - "revision": "e02cee6b11744b5ba5199173", + "revision": "9209da3d06eb48a5b85a3be2", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64459,18 +47265,9 @@ "total_amount": 1600, "history_id": 1684181007832, "id": 1684181007832, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - }, + "date_created": "2023-05-15T20:03:27.832Z", + "date_last_updated": "2023-05-15T21:15:42.475Z", + "date_of_expiration": "2023-06-14T20:03:27.832Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -64480,10 +47277,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9529e7d087c445e79ce2b6de", + "revision": "1d06f703cf4e4c4b8cee32d6", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64491,10 +47288,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 0721.5687.2012.5989-10", - "revision": "fd02daa586f54c748e85624b", + "revision": "3e1d3d21ff4340e4aba98d09", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64504,24 +47301,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 134.08, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "amount": 134.08 }, - "revision": "29d2803ffadd4c4299e269f3", + "revision": "7088812890534e97b42f5a07", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64529,10 +47314,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d6cafa9b44494a90998a139f", + "revision": "ab9e0eb5bd684cdeb20eaeea", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64540,10 +47325,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b8d973ab70a8422a86907e51", + "revision": "ec7bffb52332470d833375a7", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64558,28 +47343,19 @@ "total_amount": 1810.08, "history_id": 1684623306168, "id": 1684623306168, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - }, + "date_created": "2023-05-20T22:55:06.168Z", + "date_last_updated": "2023-05-20T22:55:06.168Z", + "date_of_expiration": "2023-06-19T22:55:06.168Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "9ac2c5e8cc4049a7b2a69b9d", + "revision": "96ee71c486f445a4b63dec4e", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64587,10 +47363,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "578b724f8c474c1d924e4fa0", + "revision": "51d4104c2d404e1797be70be", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64608,24 +47384,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "costs": [] }, - "revision": "6346f806b78e4c6e944d5494", + "revision": "8050ed2fc57d44c6ace368e7", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64641,18 +47405,9 @@ "original_amount": 15956517, "total_amount": 15956517, "id": 1684624428265, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - }, + "date_created": "2023-05-20T23:13:48.265Z", + "date_last_updated": "2023-05-20T23:13:48.265Z", + "date_of_expiration": "2023-05-20T23:13:48.265Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64661,10 +47416,10 @@ "history_id": 1684624428265, "description": "Compra de 15.956.517,00 IVIP por 3.276,00 BRL" }, - "revision": "f0d86afd50df4b5394b2eeb8", + "revision": "3f9743d0a1234d74ad47b06f", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64674,24 +47429,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 105.92, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "amount": 105.92 }, - "revision": "ff6a808082fe4b48997aaab4", + "revision": "83aadc7b7aa5484e8642e910", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64699,10 +47442,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "659a64fc2de34a4a997de967", + "revision": "7c1b0b7cc36443a38c498ee6", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64710,10 +47453,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "901e93ec90b94fff85a1a55f", + "revision": "6ac52ee6e11f4f2abb87c7d1", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64728,28 +47471,19 @@ "total_amount": 1429.92, "history_id": 1684624857509, "id": 1684624857509, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - }, + "date_created": "2023-05-20T23:20:57.509Z", + "date_last_updated": "2023-05-20T23:20:57.509Z", + "date_of_expiration": "2023-06-19T23:20:57.509Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "1b36069c14f94eca9e06f827", + "revision": "c2f8e0560238498f99b4a77b", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64757,10 +47491,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "7bd8570db2cf4ebea170e545", + "revision": "c8c5dda6c99e4b48ac76d692", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64778,24 +47512,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "costs": [] }, - "revision": "9ed62de97cba444db6ac9a8c", + "revision": "c5282d712ec84cbd9961ab8e", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64811,18 +47533,9 @@ "original_amount": 6448848, "total_amount": 6448848, "id": 1684624906138, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - }, + "date_created": "2023-05-20T23:21:46.138Z", + "date_last_updated": "2023-05-20T23:21:46.138Z", + "date_of_expiration": "2023-05-20T23:21:46.138Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -64831,10 +47544,10 @@ "history_id": 1684624906138, "description": "Compra de 6.448.848,00 IVIP por 1.324,00 BRL" }, - "revision": "db5422e225f54990a9c3fe18", + "revision": "0564df072847431d884537bc", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64842,24 +47555,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "costs": [] }, - "revision": "5048f03776f5439daca86863", + "revision": "a44da5d11b9742428acd6bf5", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64874,18 +47575,9 @@ "total_amount": 1000, "history_id": 1687293918217, "id": 1687293918217, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - }, + "date_created": "2023-06-20T20:45:18.217Z", + "date_last_updated": "2023-06-20T20:45:55.023Z", + "date_of_expiration": "2023-07-20T20:45:18.217Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -64895,10 +47587,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "33589041c8ca4faba8823dd7", + "revision": "2c5f543c6ac342a19e56c3b4", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64906,10 +47598,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0721.5687.2012.5989-10", - "revision": "a6e50da6dea24ab7b15f16ad", + "revision": "da34568308de4501a0ad488e", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64929,24 +47621,12 @@ "installment_amount": 452.52, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "costs": [] }, - "revision": "f48467b6522a4915b05bb0dd", + "revision": "48d5e5d79ae64436bf8bbf0f", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64963,18 +47643,9 @@ "total_amount": 452.52, "id": 1687294024615, "contract_id": "1684623306168", - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - }, + "date_created": "2023-06-20T20:47:04.615Z", + "date_last_updated": "2023-06-20T20:47:04.615Z", + "date_of_expiration": "2023-06-20T20:47:04.615Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -64982,10 +47653,10 @@ "currency_id": "BRL", "history_id": 1687294024615 }, - "revision": "9a2a87d19cb74d94b801fc10", + "revision": "7be7a63c5f144c60abaed1f9", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -64993,10 +47664,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", - "revision": "53c16dbf748546ecae8dd883", + "revision": "f898a29387fb41f2ab4288f2", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65016,24 +47687,12 @@ "installment_amount": 357.48, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "costs": [] }, - "revision": "09e6da864b5646ac872454c3", + "revision": "f1ab2b4924134a3b97439ec4", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65050,18 +47709,9 @@ "total_amount": 357.48, "id": 1687294024774, "contract_id": "1684624857509", - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - }, + "date_created": "2023-06-20T20:47:04.774Z", + "date_last_updated": "2023-06-20T20:47:04.774Z", + "date_of_expiration": "2023-06-20T20:47:04.774Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -65069,10 +47719,10 @@ "currency_id": "BRL", "history_id": 1687294024774 }, - "revision": "1273c9c27d95416c9533df37", + "revision": "d26fe8cfd4584f1ba3f19ce3", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65080,10 +47730,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", - "revision": "c994e79a82424e36b87e1d09", + "revision": "9fbeabac286d4ae295e2f0ad", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65101,24 +47751,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - } + "costs": [] }, - "revision": "66f34aadc1034d8b80659cdb", + "revision": "4e31a2cd067c44e1a3554765", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65133,18 +47771,9 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1688524692305, - "date_created": { - "type": 6, - "value": 1701459383513 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383513 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383513 - }, + "date_created": "2023-07-05T02:38:12.305Z", + "date_last_updated": "2023-07-05T02:38:12.305Z", + "date_of_expiration": "2023-08-05T02:38:12.305Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65152,10 +47781,10 @@ "currency_id": "IVIP", "history_id": 1688524692305 }, - "revision": "889972d0ab384825a13755eb", + "revision": "78d5a939fd25498cb833088d", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65163,10 +47792,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/4/2023", - "revision": "33feaddd11244ba8bf66094d", + "revision": "8ce1b2c1c4a642d8970f57a2", "revision_nr": 1, - "created": 1701459383513, - "modified": 1701459383513 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65184,24 +47813,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "costs": [] }, - "revision": "db6ebd6deb144d0abaa2ff58", + "revision": "d2d5fc2d5c43430a9ab9375f", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65217,18 +47834,9 @@ "original_amount": 155466, "total_amount": 155466, "id": 1688525524308, - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-07-05T02:52:04.308Z", + "date_last_updated": "2023-07-05T02:52:04.308Z", + "date_of_expiration": "2023-07-05T02:52:04.308Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65237,10 +47845,10 @@ "history_id": 1688525524308, "description": "Compra de 155.466,00 IVIP por 50,00 BRL" }, - "revision": "bf038c35880e4dcebd4a60ee", + "revision": "62aedc117cca4578a32db4f7", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65248,24 +47856,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "costs": [] }, - "revision": "a7fbbaeca8e74dc2bf4ea0b7", + "revision": "1a9a9ba3f91e421ea460ae79", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65280,18 +47876,9 @@ "total_amount": 2500000, "history_id": 1689182003298, "id": 1689182003298, - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-07-12T17:13:23.298Z", + "date_last_updated": "2023-07-13T13:55:52.452Z", + "date_of_expiration": "2023-07-12T17:13:23.298Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -65301,10 +47888,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "d5869ad7b9a741a5afe15d25", + "revision": "71707366c1084c6a9e57b108", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65312,10 +47899,10 @@ "content": { "type": "STRING", "value": "Saque de 2.500.000,00 IVIP para a carteira 0xA7d5Cb00F2824b3D3Bf7b0a4AFe13175618B0FdC", - "revision": "d8427eaab9aa4d33af9e03aa", + "revision": "c09eaac38dc44f63bbb95a2f", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65323,24 +47910,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "costs": [] }, - "revision": "a8b8877cbb7e4f09bb81b905", + "revision": "8785313e2814444db6f8ed5c", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65355,18 +47930,9 @@ "total_amount": 800, "history_id": 1689689388308, "id": 1689689388308, - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-07-18T14:09:48.308Z", + "date_last_updated": "2023-07-18T14:29:47.708Z", + "date_of_expiration": "2023-08-17T14:09:48.308Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -65376,10 +47942,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "869d7a9f6b544eddb5196840", + "revision": "925d386ba0084662968dfa73", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65387,10 +47953,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0721.5687.2012.5989-10", - "revision": "4ebd738f820a48d8b433d125", + "revision": "7f831f973dc14d1d9923b8a7", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65410,24 +47976,12 @@ "installment_amount": 452.52, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "costs": [] }, - "revision": "f213a510328f4e90aedcfd0f", + "revision": "decfd1a6467e49ef9bbda73d", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65444,18 +47998,9 @@ "total_amount": 452.52, "id": 1689690928096, "contract_id": "1684623306168", - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-07-18T14:35:28.096Z", + "date_last_updated": "2023-07-18T14:35:28.096Z", + "date_of_expiration": "2023-07-18T14:35:28.096Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -65463,10 +48008,10 @@ "currency_id": "BRL", "history_id": 1689690928096 }, - "revision": "deb754301cc94c7ca0e56375", + "revision": "6298758e82e34733aa9069d9", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65474,10 +48019,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", - "revision": "618b7d07c71f429c92d25062", + "revision": "04bcc8c94671440bbe9db496", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65497,24 +48042,12 @@ "installment_amount": 357.48, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "costs": [] }, - "revision": "3c65e39eea4842de98dc4075", + "revision": "b2e023c47d764463ae6f30ba", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65531,18 +48064,9 @@ "total_amount": 357.48, "id": 1689690928337, "contract_id": "1684624857509", - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-07-18T14:35:28.337Z", + "date_last_updated": "2023-07-18T14:35:28.337Z", + "date_of_expiration": "2023-07-18T14:35:28.337Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -65550,10 +48074,10 @@ "currency_id": "BRL", "history_id": 1689690928337 }, - "revision": "5193c313564c43ea96dcee33", + "revision": "47f933becf4b4d4d82332cfa", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65561,10 +48085,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", - "revision": "e1d30114abfb4c44a65e93ee", + "revision": "833335edd7d4413fb58648be", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65580,24 +48104,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "costs": [] }, - "revision": "6ee0719adfa44dd190fd246a", + "revision": "543e3b73230241c28a5bb4b4", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65605,10 +48117,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691203130486", - "revision": "00a2b85015914cb086d0f14d", + "revision": "46d6a5e405334b8a8cccab60", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65623,18 +48135,9 @@ "total_amount": 8160000, "id": 1691203130486, "history_id": 1691203130486, - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-08-05T02:38:50.486Z", + "date_last_updated": "2023-08-05T02:38:50.486Z", + "date_of_expiration": "2023-08-05T02:38:50.486Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65642,10 +48145,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "96bd7597404941f89344193c", + "revision": "10ffa26e6c894f6b8ccf217b", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65653,10 +48156,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "a87395cd7e8c4115be4dd9ce", + "revision": "681c48a2f3574bbdb7a0b320", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65672,24 +48175,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "costs": [] }, - "revision": "a4b41f5ebbc94076864c63dc", + "revision": "bb5a9bdb766e4f11b9157506", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65697,10 +48188,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691556958476", - "revision": "a7389f7ebb53497db7b9e99a", + "revision": "cf66330844a54cd4b3c7c625", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65715,18 +48206,9 @@ "total_amount": 200000, "id": 1691556958476, "history_id": 1691556958476, - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-08-09T04:55:58.476Z", + "date_last_updated": "2023-08-09T04:55:58.476Z", + "date_of_expiration": "2023-09-09T04:55:58.473Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65734,10 +48216,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "24579091c1134534881f6e0b", + "revision": "7e1b3bb3e73f49908beeaf62", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65745,10 +48227,10 @@ "content": { "type": "STRING", "value": "Investimento de 200.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/9/2023", - "revision": "4a69fa9dc13e4b4d84e8bb8f", + "revision": "eede35d330fa422788c8dadf", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509565, + "modified": 1701463509565 } }, { @@ -65764,24 +48246,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "costs": [] }, - "revision": "a4db5923f2cd4ecabd49754d", + "revision": "d3bb1f429d87426cbb1fae1f", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -65789,10 +48259,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691557017053", - "revision": "14375e0d1d624c01b8d1c08a", + "revision": "1ce1c5b4d28548969a250591", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -65807,18 +48277,9 @@ "total_amount": 30, "id": 1691557017053, "history_id": 1691557017053, - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-08-09T04:56:57.053Z", + "date_last_updated": "2023-08-09T04:56:57.053Z", + "date_of_expiration": "2024-06-09T04:56:57.027Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65826,10 +48287,10 @@ "base_currency_id": "BRL", "status_detail": "accredited" }, - "revision": "0003b4a246e34002a687bb21", + "revision": "aad6d152671d40d09aec1a30", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -65837,10 +48298,10 @@ "content": { "type": "STRING", "value": "Investimento de 30,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/9/2024", - "revision": "462c1724b8d845eca5dbeabb", + "revision": "b1f8eba48ed2459982862401", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -65849,24 +48310,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-15T20:07:43.023Z", - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + ".val": "2023-09-15T20:07:43.023Z" }, - "revision": "eddd7f3dcc254e888234044e", + "revision": "360081f4d57f402abc114868", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -65882,24 +48331,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "costs": [] }, - "revision": "dd0cf9f6cf0e4693b5fd895a", + "revision": "55f1c093b45548ffbc9ae980", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -65907,10 +48344,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1692216463023", - "revision": "87262c8e512542b1b3df8a13", + "revision": "22d8046475454afdad1d04a7", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -65925,14 +48362,8 @@ "total_amount": 720, "id": 1692216463023, "history_id": 1692216463023, - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-08-16T20:07:43.023Z", + "date_last_updated": "2023-08-16T20:26:16.651Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65942,16 +48373,12 @@ "date_approved": "2023-08-16T20:26:16.651Z", "money_release_date": "2023-08-16T20:26:16.651Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "wasDebited": true }, - "revision": "fdc73857ff844a72aaab5754", + "revision": "84c140ff2b744c2882032830", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -65959,10 +48386,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 720,00 para a carteira iVip 0721.5687.2012.5989-10", - "revision": "fb1dc6c2cfc14a32a38083b9", + "revision": "d4bf3edfbf844ce1bce88add", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -65982,24 +48409,12 @@ "installment_amount": 452.52, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "costs": [] }, - "revision": "3bca4c94233b4e75a5a4888a", + "revision": "f684430074304877b245969e", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66016,18 +48431,9 @@ "total_amount": 452.52, "id": 1692296799894, "contract_id": "1684623306168", - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-08-17T18:26:39.894Z", + "date_last_updated": "2023-08-17T18:26:39.894Z", + "date_of_expiration": "2023-08-17T18:26:39.894Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -66035,10 +48441,10 @@ "currency_id": "BRL", "history_id": 1692296799894 }, - "revision": "ec0b57d57a2f40d2b9ce6da3", + "revision": "946d574224d945d5bd88e4f1", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66046,10 +48452,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", - "revision": "dd2b11eeceed44e0be51793e", + "revision": "21f649bc66c64d7a9186b2ba", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66069,24 +48475,12 @@ "installment_amount": 357.48, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "costs": [] }, - "revision": "cd57f8c42e994c8093781df5", + "revision": "dc1a98b09c9249fdbb538bac", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66103,18 +48497,9 @@ "total_amount": 357.48, "id": 1692296800012, "contract_id": "1684624857509", - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-08-17T18:26:40.012Z", + "date_last_updated": "2023-08-17T18:26:40.012Z", + "date_of_expiration": "2023-08-17T18:26:40.012Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -66122,10 +48507,10 @@ "currency_id": "BRL", "history_id": 1692296800012 }, - "revision": "3e12d44097f245819066727a", + "revision": "7fbc40418c1b4910b84cf6ca", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66133,10 +48518,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", - "revision": "37d2e050e77c41cea9090b33", + "revision": "0a5ac2a3d3c848ad84924c42", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66152,24 +48537,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "costs": [] }, - "revision": "e42c344f44634221833512cf", + "revision": "53c7014106524bdaaeeaf09b", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66177,10 +48550,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694237371329", - "revision": "d86dff97d9f0400393bfb2ae", + "revision": "07fcf222ac2b4c72b7675bba", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66195,18 +48568,9 @@ "total_amount": 204000, "id": "1694237371329", "history_id": "1694237371329", - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-09-09T05:29:31.329Z", + "date_last_updated": "2023-09-09T05:29:31.329Z", + "date_of_expiration": "2023-09-09T05:29:31.329Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -66214,10 +48578,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "039ea76db771403c9efac523", + "revision": "fca76b7298384b36aa38150f", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66225,10 +48589,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 200.000,00 IVIP com um rendimento de +4.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "6c71ce1d5b494f08a41675c4", + "revision": "bc8741b5b46e4287a3beb2dd", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66244,24 +48608,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "costs": [] }, - "revision": "b3a0771f4b534734b4b750c7", + "revision": "8490c714ab3542bb80a667d8", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66269,10 +48621,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694237443497", - "revision": "92613c8bc1004bd1b53d523e", + "revision": "988e533d86ce4c2ab5f87bfc", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66287,18 +48639,9 @@ "total_amount": 1030591, "id": "1694237443497", "history_id": "1694237443497", - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-09-09T05:30:43.497Z", + "date_last_updated": "2023-10-04T23:31:59.577Z", + "date_of_expiration": "2023-10-09T05:30:43.496Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -66309,10 +48652,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "51dd7b5c620444a99aa6ba35", + "revision": "cd320b2c756344b2aa69388c", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66320,10 +48663,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.030.591,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 09/10/2023 - Y12XDT27", - "revision": "fdf0f3c9fd594f6caa5208a3", + "revision": "d8b47863c7a4458fbe25159d", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66332,24 +48675,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-14T17:28:50.286Z", - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + ".val": "2023-10-14T17:28:50.286Z" }, - "revision": "c2f0c607c1764d2496b01961", + "revision": "6d86164601644e24adb4ccb3", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66365,24 +48696,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "costs": [] }, - "revision": "247645a4f45141818c546ce2", + "revision": "92722cf97f6c488a94f7a23e", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66390,10 +48709,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694712530286", - "revision": "a7f0c8ca0eb94e1fa0951bbb", + "revision": "bfb96e9274e94d2689dd7ddb", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66408,14 +48727,8 @@ "total_amount": 820, "id": "1694712530286", "history_id": "1694712530286", - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-09-14T17:28:50.286Z", + "date_last_updated": "2023-09-14T18:47:35.639Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -66425,16 +48738,12 @@ "date_approved": "2023-09-14T18:47:35.639Z", "money_release_date": "2023-09-14T18:47:35.639Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "wasDebited": true }, - "revision": "e935e280636c40c4a795d4b5", + "revision": "779acf3973b24958b4dbcdf6", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66442,10 +48751,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 820,00 BRL para a carteira iVip 0721.5687.2012.5989-10", - "revision": "c5387ab1b26648d4a8d91d48", + "revision": "3e5fe30ef4ae4f5fa6cd0e9a", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66463,24 +48772,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 4, - "installments_payable": 0, - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "installments_payable": 0 }, - "revision": "4163b77cfafa4653a44433db", + "revision": "df6c6fece72f4e98b9210af7", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66488,10 +48785,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694723447405", - "revision": "838bd119bf5344d3aea5c2a3", + "revision": "6072dae574f9473784f7067b", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66506,18 +48803,9 @@ "total_amount": 452.52, "id": "1694723447405", "history_id": "1694723447405", - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-09-14T20:30:47.405Z", + "date_last_updated": "2023-09-14T20:30:47.405Z", + "date_of_expiration": "2023-09-14T20:30:47.405Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -66525,10 +48813,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "4148656fb5c64453b6381990", + "revision": "5baed18ef9214250b2a92924", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66536,10 +48824,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", - "revision": "33ccdab20e8f4f80b549cca6", + "revision": "78899aee6f954ab6bf8702da", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66557,24 +48845,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 4, - "installments_payable": 0, - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "installments_payable": 0 }, - "revision": "2ea8b5cd8ac04f7082e97ad4", + "revision": "dbe0fc255a7a42939155f9df", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66582,10 +48858,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694723447463", - "revision": "afdd7cada12c45c48b0c21e8", + "revision": "3fe726928dfe451095c827c5", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66600,18 +48876,9 @@ "total_amount": 357.48, "id": "1694723447463", "history_id": "1694723447463", - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-09-14T20:30:47.463Z", + "date_last_updated": "2023-09-14T20:30:47.463Z", + "date_of_expiration": "2023-09-14T20:30:47.463Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -66619,10 +48886,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "afa2111337b643c480be432e", + "revision": "64a27f4e55e64745a69027bc", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66630,10 +48897,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", - "revision": "845fc7168d7649b7b6ca0df3", + "revision": "f0e98114c36649c9be84d574", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66649,24 +48916,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "costs": [] }, - "revision": "9c193822e2ec49bda83ca3cd", + "revision": "ccb93b06ce8c490c9e8a308d", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66674,10 +48929,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1696464489805", - "revision": "e5b28579782a4c5c84b53fd9", + "revision": "823037f39611449a9619f430", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66693,18 +48948,9 @@ "total_amount": 8000000, "id": "1696464489805", "history_id": "1696464489805", - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-10-05T00:08:09.805Z", + "date_last_updated": "2023-10-05T00:08:09.805Z", + "date_of_expiration": "2023-11-05T00:08:09.771Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -66712,10 +48958,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "2d60840f443c4c23988bc176", + "revision": "500434fffe7249beb7063d85", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66723,10 +48969,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "31333615d30e41e2ada9f735", + "revision": "78876f79a3994da4bcfa0218", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66734,10 +48980,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0f86fbf2b2fa4cce8f8b6350", + "revision": "95721ba8fcfc469396595ca6", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66747,24 +48993,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 134.08, - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "amount": 134.08 }, - "revision": "35a1fe9d81834e66b503c88b", + "revision": "7acf2c317cd34a47b6399537", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66778,26 +49012,15 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-05-20T22:55:06.168Z", "history_id": 1684623306168, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "status": "paid" }, - "revision": "66fcd73912dc41d58f8b8146", + "revision": "47b822e31333472aa1c24a0b", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66805,10 +49028,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "a7c642db1c58413ba9e9a8b9", + "revision": "a7fc0060a28140d4b6fef806", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66816,10 +49039,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "17d705aa3cef41c58c21fef3", + "revision": "372e516aa9054647864fbe2f", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66829,24 +49052,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 105.92, - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "amount": 105.92 }, - "revision": "97ec7e005044454fa3371938", + "revision": "cacbeb5fd9e54ceab552c5c0", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66860,26 +49071,15 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-05-20T23:20:57.509Z", "history_id": 1684624857509, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "status": "paid" }, - "revision": "54676d051f994b49aebf88d2", + "revision": "5f7b814cecd7445fbc240f56", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66887,10 +49087,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "a3ffb1c6f80c43e8bc3e69e0", + "revision": "1c8c64d83e9a4d0d9f29e310", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66898,10 +49098,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "fcc807b740524927b9e05180", + "revision": "d4b6695afcbc43fb9a15e536", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66909,10 +49109,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8f5b0e94e5c34ba996c09fc0", + "revision": "c40c779aff3342998cb690f4", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66922,24 +49122,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 134.08, - "date_created": { - "type": 6, - "value": 1701459383514 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "amount": 134.08 }, - "revision": "4c56c337ca9a4ef5b227c664", + "revision": "734625e0218544bbb35ab0d3", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66953,26 +49141,15 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": { - "type": 6, - "value": 1701459383514 - }, + "date_created": "2023-05-20T22:55:06.168Z", "history_id": 1684623306168, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383514 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383514 - } + "status": "paid" }, - "revision": "f1c352b2acef48f98dd9a04d", + "revision": "e6d93357afce48b7b936a0a0", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66980,10 +49157,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "54d25c4b381d44af9652f535", + "revision": "a967d77eba634223aa37427c", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -66991,10 +49168,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "bbefb5644af94f719d1d4f33", + "revision": "8d893d44b7294ec389cac999", "revision_nr": 1, - "created": 1701459383514, - "modified": 1701459383514 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67004,24 +49181,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 105.92, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "amount": 105.92 }, - "revision": "afb7a73af7c24b80a3d5205f", + "revision": "6711308bdde84848bd98ee4a", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67035,26 +49200,15 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-05-20T23:20:57.509Z", "history_id": 1684624857509, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "status": "paid" }, - "revision": "42dfd109a0eb4643a7e28a20", + "revision": "4b2ce1b7aa964511adfb53d3", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67062,10 +49216,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "7db55c7ed86d4580b023896e", + "revision": "935076094a0341d787cbcf4e", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67073,10 +49227,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "3062faca4a61448a931a8a83", + "revision": "4d5aeb93babc42eb8ab0aa34", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67084,10 +49238,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "806df585e2d74644955cab3a", + "revision": "df044cc27f2845ec9e43a6f8", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67097,24 +49251,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 134.08, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "amount": 134.08 }, - "revision": "20a06a67b37d4b9a84885bba", + "revision": "5a2aff4a252f4ef48a2ad1e2", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67128,26 +49270,15 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-05-20T22:55:06.168Z", "history_id": 1684623306168, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "status": "paid" }, - "revision": "3626b1ab79f84073b68636a1", + "revision": "c8e2e51dc62d4412b1331b0b", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67155,10 +49286,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "f895ac10f290404b933dcfa1", + "revision": "925c8f6c88f64911b1aaee51", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67166,10 +49297,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "d5e59d16b3ba4775b7122993", + "revision": "cb0234ce10f34d8cbc078f1f", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67179,24 +49310,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 105.92, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "amount": 105.92 }, - "revision": "3785ceb13fa5495a949bbd27", + "revision": "bcc3654dd51842fea260e76c", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67210,26 +49329,15 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-05-20T23:20:57.509Z", "history_id": 1684624857509, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "status": "paid" }, - "revision": "7b782d8b5198486680864b4e", + "revision": "72ad8caebba94e2faf3fac59", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67237,10 +49345,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "39fdd88632024395bccc2662", + "revision": "312d70839aa84d53abf531f5", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67248,10 +49356,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "dbc24f9803f8408f93828277", + "revision": "3605eb3953054b598733465c", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67259,10 +49367,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6b6e99526b484213bdedf3a3", + "revision": "2f684807093643ceb32b6e7f", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67272,24 +49380,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 134.08, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "amount": 134.08 }, - "revision": "c5b8be4d72204e479bf97f39", + "revision": "54ef6c9f2770443aab99a6a1", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67303,26 +49399,16 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-05-20T22:55:06.168Z", "history_id": 1684623306168, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "date_last_updated": "2023-09-14T20:30:47.423Z" }, - "revision": "0542260a5a3a4edea75db78d", + "revision": "3ef519691de84570ac7b3c4f", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67330,10 +49416,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "732129d2f705429e82655699", + "revision": "3e682db61077409fac21321b", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67341,10 +49427,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f9326ed8dc9142cd91bf6988", + "revision": "10aff135a96e4a53a38b4f6a", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67354,24 +49440,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 105.92, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "amount": 105.92 }, - "revision": "b41de33d9ce54367a462f2df", + "revision": "0eb047f1c5684ad08f58e9b7", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67385,26 +49459,16 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-05-20T23:20:57.509Z", "history_id": 1684624857509, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "date_last_updated": "2023-09-14T20:30:47.480Z" }, - "revision": "69d29952b7df41c08b7eca64", + "revision": "0ad95801ec4e4db487f08c62", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67412,10 +49476,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "f41bb97857d64e73b9792e0a", + "revision": "77a99067ac444987bb88e679", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67423,10 +49487,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b8e1fee5c36c4484b40ffeb3", + "revision": "cd97a79e5bab41fb8fa06365", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67434,10 +49498,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "79a7b476f7f94b51b9485aa2", + "revision": "11ae81f3a6a545d89fe311c9", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67445,10 +49509,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "76a8b70b52964beb98554a9d", + "revision": "491d1967a3f640ca9e44fc54", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67459,24 +49523,12 @@ "approvedLimit": 3000, "limitUsed": 750, "analysisRequested": "2023-05-15T21:24:05.062Z", - "lastReview": "2023-05-15T21:32:32.172Z", - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "lastReview": "2023-05-15T21:32:32.172Z" }, - "revision": "ab9f1276ca4341cba46c65fb", + "revision": "ae243bd147c049a7917d10db", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67488,24 +49540,12 @@ "dateValidity": 1684180740501, "totalValue": 6472.835, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "balancesModificacao": "2023-10-06T03:00:00.000Z" }, - "revision": "7f64c32b4fc4419aaade1c83", + "revision": "9108e3d7c36b41be850d7622", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67513,10 +49553,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c97e71a61da044f8844f6e55", + "revision": "601f266a71734e62bc84e2e7", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67524,10 +49564,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "85aca29058154f1991db8340", + "revision": "41f613dbe90249f589486163", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67538,24 +49578,12 @@ "dataModificacao": 1683670601575, "dateValidity": 1683670601575, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "currencyType": "USD" }, - "revision": "d2da5ff67a51473c9969b656", + "revision": "d2279533096246149ea522e4", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67565,24 +49593,12 @@ "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "value": 0 }, - "revision": "aa33c0fef72048e2948b1de2", + "revision": "0bbbbaf462554cc3bd7b10ee", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67592,24 +49608,12 @@ "value": { "available": "44999.00000000", "symbol": "IVIP", - "value": 15.26, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "value": 15.26 }, - "revision": "5a907e141dff42ed9543439f", + "revision": "cf2fcb9a87344385abaeb92b", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67617,10 +49621,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6eec819438aa4157ac734811", + "revision": "cc593dae019245748018c98b", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67628,24 +49632,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "costs": [] }, - "revision": "f09a202758534e6a936a131b", + "revision": "5186bd6db3664782ad6a9460", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67660,18 +49652,9 @@ "total_amount": 50, "history_id": 1689017003664, "id": 1689017003664, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-07-10T19:23:23.664Z", + "date_last_updated": "2023-07-10T21:48:47.768Z", + "date_of_expiration": "2023-08-09T19:23:23.664Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -67681,10 +49664,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c90cde27524044ba9e69cb12", + "revision": "310344dc8b624240908c0fa0", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67692,10 +49675,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0723.1653.8247.0090-10", - "revision": "259e48e757f3458abfd2381d", + "revision": "abdd7f91a07c437ba21fcf84", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67713,24 +49696,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "costs": [] }, - "revision": "b7bef30c8ee94f08b2e5ad04", + "revision": "a33f065057434d16abdd1a83", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67746,18 +49717,9 @@ "original_amount": 44999, "total_amount": 44999, "id": 1689029121257, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-07-10T22:45:21.257Z", + "date_last_updated": "2023-07-10T22:45:21.257Z", + "date_of_expiration": "2023-07-10T22:45:21.257Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -67766,10 +49728,10 @@ "history_id": 1689029121257, "description": "Compra de 44.999,00 IVIP por 50,00 BRL" }, - "revision": "230045a897244792ad534937", + "revision": "5d6fc3eb80e9419d894df4b3", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67777,10 +49739,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ea843a1dcec1434a951af7c0", + "revision": "1a533e4ffc9e4a1983a4b8f5", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67788,10 +49750,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2318fce464d6415a931a8b98", + "revision": "098ec4b32ad44708a6aefd79", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67800,24 +49762,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "limitUsed": 0 }, - "revision": "7618440e70c34a42bf876d11", + "revision": "e167e806adf849dd9f75d1ab", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67829,24 +49779,12 @@ "dateValidity": 1689016980183, "totalValue": 10.2, "currencyType": "USD", - "balancesModificacao": 1689822000000, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "balancesModificacao": 1689822000000 }, - "revision": "aef2a7eb5fec4f6287024291", + "revision": "cad007a7a5d4497290981831", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67856,24 +49794,12 @@ "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "value": 0 }, - "revision": "48a5d228025443a4b79f3c2e", + "revision": "5d14b4ea7e644b07bcc10f03", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67883,24 +49809,12 @@ "value": { "available": "88319.00000000", "symbol": "IVIP", - "value": 24.34, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "value": 24.34 }, - "revision": "93584b828e96439a9220fbf6", + "revision": "1b25170e0d9e465481d74260", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67908,10 +49822,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0e29543d39da4bc4841efeda", + "revision": "c0aa476ca29c402c921b34af", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509566, + "modified": 1701463509566 } }, { @@ -67919,24 +49833,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "costs": [] }, - "revision": "67ae43d3c3a0496cb14d05fe", + "revision": "0b6c4effc97d46a6a2086951", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -67951,18 +49853,9 @@ "total_amount": 100, "history_id": 1684153197656, "id": 1684153197656, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-05-15T12:19:57.656Z", + "date_last_updated": "2023-05-15T12:24:35.791Z", + "date_of_expiration": "2023-06-14T12:19:57.656Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -67972,10 +49865,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "1fc9e6c827fb4024ab39bf59", + "revision": "518b471e8cfc407597c7e9ed", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -67983,10 +49876,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0724.0208.9290.1489-10", - "revision": "318f42e1649e4e50b904f8cf", + "revision": "332acbe308a64261ae3793b0", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68004,24 +49897,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "costs": [] }, - "revision": "e1e040c2936e47b7aad630aa", + "revision": "fc57584c566c4691b493bc46", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68037,18 +49918,9 @@ "original_amount": 488292, "total_amount": 488292, "id": 1684634671417, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-05-21T02:04:31.417Z", + "date_last_updated": "2023-05-21T02:04:31.417Z", + "date_of_expiration": "2023-05-21T02:04:31.417Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -68057,10 +49929,10 @@ "history_id": 1684634671417, "description": "Compra de 488.292,00 IVIP por 100,00 BRL" }, - "revision": "46beee09fc8c4423bc055d44", + "revision": "8c7ac954973d4728ac555274", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68068,24 +49940,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "costs": [] }, - "revision": "bbbe606342774468b37fd38c", + "revision": "30fef7fa4e0c4a3183d3158f", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68100,18 +49960,9 @@ "total_amount": 120, "history_id": 1685124719970, "id": 1685124719970, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-05-26T18:11:59.970Z", + "date_last_updated": "2023-05-29T12:51:17.545Z", + "date_of_expiration": "2023-06-25T18:11:59.970Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -68121,10 +49972,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "74ab4b2d7014425eb224465f", + "revision": "45a4d881704a409495195abc", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68132,10 +49983,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 120,00 para a carteira iVip 0724.0208.9290.1489-10", - "revision": "c856f43c141f49afa5338554", + "revision": "649bc1d3d5ee4224b0fb5f0e", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68143,24 +49994,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "costs": [] }, - "revision": "4ac855d0d47b4f469902736a", + "revision": "33a83b430bd8476f982b2c41", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68175,18 +50014,9 @@ "total_amount": 1510, "history_id": 1685203508718, "id": 1685203508718, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-05-27T16:05:08.718Z", + "date_last_updated": "2023-05-27T18:12:01.604Z", + "date_of_expiration": "2023-06-26T16:05:08.718Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -68196,10 +50026,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3b73916eb5c5487989f362e7", + "revision": "e1040515774341c89a7cd6cd", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68207,10 +50037,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.510,00 para a carteira iVip 0724.0208.9290.1489-10", - "revision": "6a7f8e8e80cb4d75ad68ee30", + "revision": "c11df6cb329b4508ae1709e1", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68228,24 +50058,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "costs": [] }, - "revision": "430bef0572884e99a562c612", + "revision": "007493851f8744088983410b", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68261,18 +50079,9 @@ "original_amount": 5725017, "total_amount": 5725017, "id": 1685744132878, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-06-02T22:15:32.878Z", + "date_last_updated": "2023-06-02T22:15:32.878Z", + "date_of_expiration": "2023-06-02T22:15:32.878Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -68281,10 +50090,10 @@ "history_id": 1685744132878, "description": "Compra de 5.725.017,00 IVIP por 1.630,00 BRL" }, - "revision": "cc58d419254646d6a3f46e77", + "revision": "e65caf81caff4b3e86d9225a", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68292,24 +50101,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "costs": [] }, - "revision": "9b82412600e24825aa2c647c", + "revision": "2f5cbb8ca6c84569a3cbe70e", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68324,18 +50121,9 @@ "total_amount": 5122916, "history_id": 1687787978807, "id": 1687787978807, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-06-26T13:59:38.807Z", + "date_last_updated": "2023-06-28T18:01:13.708Z", + "date_of_expiration": "2023-06-26T13:59:38.807Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -68345,10 +50133,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "80780393dba1456abec32767", + "revision": "55f1193afd004f5a851fd930", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68356,10 +50144,10 @@ "content": { "type": "STRING", "value": "Saque de 5.122.916,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", - "revision": "d2525a8169ea485aa8c802e9", + "revision": "5d4ef015df0e4a67b6e03419", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68367,24 +50155,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "costs": [] }, - "revision": "e56894faf30e466c9dca84c2", + "revision": "dced3118348a417bba4b798d", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68399,18 +50175,9 @@ "total_amount": 1002074, "history_id": 1688549736848, "id": 1688549736848, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-07-05T09:35:36.848Z", + "date_last_updated": "2023-07-05T13:12:16.770Z", + "date_of_expiration": "2023-07-05T09:35:36.848Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -68420,10 +50187,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "f33c8f0c4dae4b76ad5d7120", + "revision": "ea9e17e6a21a4e558ed83a03", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68431,10 +50198,10 @@ "content": { "type": "STRING", "value": "Saque de 1.002.074,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", - "revision": "9353f4fbc8284db4880bd7d0", + "revision": "8f27e02080314313a4d884a5", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68450,24 +50217,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "costs": [] }, - "revision": "4e778767fac9439abeb36aa2", + "revision": "c22dec830f7b48a79db558e0", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68475,10 +50230,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072402089290148910/history/1690225683361", - "revision": "6ad293e4f1f6498a90994e5e", + "revision": "daf58bd1d1c54f8e9043a264", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68493,18 +50248,9 @@ "total_amount": 88319, "id": 1690225683361, "history_id": 1690225683361, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-07-24T19:08:03.361Z", + "date_last_updated": "2023-07-26T19:07:32.462Z", + "date_of_expiration": "2023-07-24T19:08:03.361Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -68516,10 +50262,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "f4099d86cf5241d09dcca6ab", + "revision": "64669ab259bb470ebc23f4bd", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68527,10 +50273,10 @@ "content": { "type": "STRING", "value": "Saque de 88.319,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", - "revision": "1e3d5943d2544c8e929cacee", + "revision": "4e05057d8f23452bb7e71df5", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68538,10 +50284,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ab977482b6ba468f961ea240", + "revision": "175e4219eca641f1b096c25f", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68549,10 +50295,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "260fe48d3647407185d202ca", + "revision": "6017653fb0bb4a48bc22ac4a", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68563,24 +50309,12 @@ "approvedLimit": 3000, "limitUsed": 0, "analysisRequested": "2023-06-26T14:00:45.586Z", - "lastReview": "2023-06-28T18:01:24.723Z", - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "lastReview": "2023-06-28T18:01:24.723Z" }, - "revision": "81215bcae93d4769a2d12dac", + "revision": "6e1c7bfecee541fab6e12d9c", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68592,24 +50326,12 @@ "dateValidity": 1684153171860, "totalValue": 6.86, "currencyType": "USD", - "balancesModificacao": 1690398452515, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "balancesModificacao": 1690398452515 }, - "revision": "378c8e3fb1494fa8a56bee30", + "revision": "d0302efcf2854687a6cc88a7", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68617,10 +50339,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3bdbf517986c4a53b31d1321", + "revision": "880121d1ae124480919af2db", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68628,10 +50350,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0b5a1b5f00a54db3aa6107bd", + "revision": "3496557cc8ec4180bf466757", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68641,24 +50363,12 @@ "value": { "dataModificacao": 1696199966019, "dateValidity": 1696199966060, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "currencyType": "USD" }, - "revision": "4e2a292ea03a4c8097f3b91d", + "revision": "5489e4777dec4cb8b4719033", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68666,10 +50376,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6e7552bc2e8a4b4d90429cfc", + "revision": "e3b5b5864f214660bc6b3eb7", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509567, + "modified": 1701463509567 } }, { @@ -68677,24 +50387,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "costs": [] }, - "revision": "872fb8e6be9b43d0ace2aecc", + "revision": "404f68d21aa542e8a98eec99", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -68709,18 +50407,9 @@ "total_amount": 20, "history_id": 1678088421430, "id": 1678088421430, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-03-06T07:40:21.430Z", + "date_last_updated": "2023-03-13T13:57:17.019Z", + "date_of_expiration": "2023-04-05T07:40:21.430Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -68728,10 +50417,10 @@ "money_release_date": "2023-03-13T13:57:17.019Z", "money_release_status": "rejected" }, - "revision": "886365d44309410db57be2ef", + "revision": "8a9ea1581118492cb91f417d", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -68739,10 +50428,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0749.8124.2324.5748-20", - "revision": "d288bd8e47b447ddac2da6fb", + "revision": "73e3d7cde8d44a0280d30935", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -68750,10 +50439,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8bf269a894914d94a18ffbbd", + "revision": "0c4510f1b75648ba83073f24", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -68764,24 +50453,12 @@ "dataModificacao": 1677902662156, "dateValidity": 1678146242488, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "currencyType": "USD" }, - "revision": "6215fe07dbc24bc28675eb39", + "revision": "94a47479ae52415e9df8d92f", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -68791,24 +50468,12 @@ "value": { "available": "30.00000000", "symbol": "BRL", - "value": 6.28, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "value": 6.28 }, - "revision": "d2d98cd3e0664603b4521dd0", + "revision": "7a378bc17d174b8b9ededc11", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -68816,10 +50481,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fa229eccde1442b0bb7e492d", + "revision": "15663ad6442247d2b30778f0", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -68827,24 +50492,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "costs": [] }, - "revision": "f7cb60c8b24f46d099abe400", + "revision": "9b99a0572d9446dcb5926ffc", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -68859,18 +50512,9 @@ "total_amount": 30, "history_id": 1689767358341, "id": 1689767358341, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-07-19T11:49:18.341Z", + "date_last_updated": "2023-07-26T21:51:18.554Z", + "date_of_expiration": "2023-08-18T11:49:18.341Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -68880,10 +50524,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ded1629a0d204840a0905dfc", + "revision": "5f966dcb7660436bb627058d", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -68891,10 +50535,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0752.7001.2379.5890-70", - "revision": "7232bafa3530424298c38213", + "revision": "84a72697b742448fb3362d0f", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -68902,10 +50546,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "cfa99b204157429da2a7f5cd", + "revision": "621a923fe8f44a3287c34488", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -68913,10 +50557,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fd3b1b01651843ccab62ca98", + "revision": "15498663f4ec45fc9db4415e", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -68925,24 +50569,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "limitUsed": 0 }, - "revision": "2966a9e697c4418fbe6bcc86", + "revision": "33c7268d428744af88c8df7d", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -68954,24 +50586,12 @@ "dateValidity": 1689767257899, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": 1690416536434, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "balancesModificacao": 1690416536434 }, - "revision": "bfbaac7f2e104795bdfeb610", + "revision": "df59524afb5b4e3a8c84f62c", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -68981,24 +50601,12 @@ "value": { "available": "186.00000000", "symbol": "BRL", - "value": 36.47, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "value": 36.47 }, - "revision": "fca4dfae672b4e7d860a5c55", + "revision": "e34954d556934aaca2514799", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -69006,10 +50614,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "545af81488f74986bf154442", + "revision": "e05f710dd7374cf99e4b3d76", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -69017,24 +50625,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "costs": [] }, - "revision": "9bd15f353f2a44a0869e4919", + "revision": "e54cde5e63874a368f4970b6", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -69049,18 +50645,9 @@ "total_amount": 240, "history_id": 1684093506914, "id": 1684093506914, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-05-14T19:45:06.914Z", + "date_last_updated": "2023-05-14T20:28:06.351Z", + "date_of_expiration": "2023-06-13T19:45:06.914Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -69070,10 +50657,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e953200d47264700b1f8335b", + "revision": "e3062e1bbf90495e81d3be2f", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -69081,10 +50668,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 240,00 para a carteira iVip 0754.2952.0947.6616-50", - "revision": "ebf5310e54de4ad08b1e5ea7", + "revision": "5a520143407b401083568c28", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -69102,24 +50689,12 @@ "installment_amount": 54, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "costs": [] }, - "revision": "7a82e61f50304f39b3b9b665", + "revision": "d87d3b4c6e094f49803b0127", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -69134,18 +50709,9 @@ "original_amount": 54, "total_amount": 54, "id": 1689771495719, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - }, + "date_created": "2023-07-19T12:58:15.719Z", + "date_last_updated": "2023-07-19T12:58:15.719Z", + "date_of_expiration": "2024-05-19T12:58:15.719Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -69153,10 +50719,10 @@ "currency_id": "BRL", "history_id": 1689771495719 }, - "revision": "36043661f4234d00ba3b5c91", + "revision": "7e9a7cd096a64050b2f5797a", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -69164,10 +50730,10 @@ "content": { "type": "STRING", "value": "Investimento de 54,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/19/2024", - "revision": "cba1e06e27374491835c02bc", + "revision": "db3f2fc959e2454db2e601f2", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -69175,10 +50741,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9467e7ebbc564c51afa548fa", + "revision": "076307d1075440ae9fb8aab1", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -69186,10 +50752,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f53d9354785b4b9380a17b53", + "revision": "396fc365a9924875bdcb3288", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -69198,24 +50764,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "limitUsed": 0 }, - "revision": "647ce4d2328e46d89e5a5ef7", + "revision": "ad40b84f69ad433aafcd4356", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -69227,24 +50781,12 @@ "dateValidity": 1684093342801, "totalValue": 38.464800000000004, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "balancesModificacao": "2023-10-16T03:00:00.000Z" }, - "revision": "4eb95da8de644b7599764135", + "revision": "ebf75e8374a64f41a8ecfa6b", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -69252,10 +50794,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f372f760697d4fba9cbd5a13", + "revision": "2a8b8524de004051be8bf122", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -69263,10 +50805,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3af7ce90f8214d098d356ed9", + "revision": "a924edd974a94a0790304b9e", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -69274,10 +50816,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "73d2411119c84e01994bbc8d", + "revision": "e14a2d8d327444e1a0658e7c", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -69286,24 +50828,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "limitUsed": 0 }, - "revision": "fb369c90099543bfba5768b7", + "revision": "c9094b8e33f5489da908ac15", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -69315,24 +50845,12 @@ "dateValidity": 1678233375802, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": "2023-10-12T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "balancesModificacao": "2023-10-12T03:00:00.000Z" }, - "revision": "5bcba9f286a64bad848f4230", + "revision": "d2789c674e9c46c1825b12ff", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509568, + "modified": 1701463509568 } }, { @@ -69342,24 +50860,12 @@ "value": { "available": "932705.00000000", "symbol": "IVIP", - "value": 508.13, - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "value": 508.13 }, - "revision": "7e9962d2a3954214bb63d401", + "revision": "0f9e85e9032543199a6f1e0f", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509570, + "modified": 1701463509570 } }, { @@ -69367,10 +50873,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c64d434affb94bac9f5d5e15", + "revision": "5a58511f30744b98936122e3", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509570, + "modified": 1701463509570 } }, { @@ -69378,24 +50884,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383515 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383515 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383515 - } + "costs": [] }, - "revision": "e764d654499b453d800d3275", + "revision": "57e30f0ef8044e47a80386e4", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69410,18 +50904,9 @@ "total_amount": 100, "history_id": 1683069444271, "id": 1683069444271, - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - }, + "date_created": "2023-05-02T23:17:24.271Z", + "date_last_updated": "2023-05-15T12:20:50.305Z", + "date_of_expiration": "2023-06-01T23:17:24.271Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -69431,10 +50916,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "95b58dcf0f514d97b098f2dd", + "revision": "2bca3793216440db9878295e", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69442,10 +50927,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "f53559e298a54653be086696", + "revision": "bd629b3928ea42e288077444", "revision_nr": 1, - "created": 1701459383515, - "modified": 1701459383515 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69453,24 +50938,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + "costs": [] }, - "revision": "a3126d4869a64b94b94d0980", + "revision": "7bd7adc1b5644ec1b806eddf", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69485,18 +50958,9 @@ "total_amount": 100, "history_id": 1684135234297, "id": 1684135234297, - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - }, + "date_created": "2023-05-15T07:20:34.297Z", + "date_last_updated": "2023-05-15T22:42:26.714Z", + "date_of_expiration": "2023-06-14T07:20:34.297Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -69506,10 +50970,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a1fb0066aa6f40a1bfd8f4da", + "revision": "5227a70a587f48f489108bd5", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69517,10 +50981,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "db0757bcf4b14683bc86618b", + "revision": "036ae8c582ac4ae6ae0689e6", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69528,24 +50992,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + "costs": [] }, - "revision": "1fd597e6ed3946799ec7c1ae", + "revision": "6f85410bcfff46cfa347c839", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69560,18 +51012,9 @@ "total_amount": 100, "history_id": 1684178465791, "id": 1684178465791, - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - }, + "date_created": "2023-05-15T19:21:05.791Z", + "date_last_updated": "2023-05-15T20:15:15.990Z", + "date_of_expiration": "2023-06-14T19:21:05.791Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -69581,10 +51024,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b701bd970035406d8bf87be7", + "revision": "d3af8ee0bba64068ae83c9a0", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69592,10 +51035,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "611c820c96c94a95bd90bd3d", + "revision": "fbed96885c174e47a35aac81", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69605,24 +51048,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300, - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + "amount": 300 }, - "revision": "8846d08c11e14b05ba839605", + "revision": "71edaa5d6bd549e29fd6a531", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69630,10 +51061,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "924433dbe8c14f88a3edf7b7", + "revision": "3384d4d6098c402ba988bf2e", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69641,10 +51072,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "85b6c12167fc4a0eac5b3f7a", + "revision": "07dcedc77db04510989d5ebd", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69659,28 +51090,19 @@ "total_amount": 1300, "history_id": 1684353970499, "id": 1684353970499, - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - }, + "date_created": "2023-05-17T20:06:10.499Z", + "date_last_updated": "2023-05-17T20:06:10.499Z", + "date_of_expiration": "2023-06-16T20:06:10.499Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "4811fd132f754531a19fdbb6", + "revision": "7c24d6cfdc9040cdab2933ad", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69688,10 +51110,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "6dcedbfed9384d95ab538959", + "revision": "8661a718f39e4b5da23b379a", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69709,24 +51131,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + "costs": [] }, - "revision": "9bae2b4fd20549d3889b5234", + "revision": "3714599a140343d78889dfd4", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69742,18 +51152,9 @@ "original_amount": 6331951, "total_amount": 6331951, "id": 1684627580539, - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - }, + "date_created": "2023-05-21T00:06:20.539Z", + "date_last_updated": "2023-05-21T00:06:20.539Z", + "date_of_expiration": "2023-05-21T00:06:20.539Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -69762,10 +51163,10 @@ "history_id": 1684627580539, "description": "Compra de 6.331.951,00 IVIP por 1.300,00 BRL" }, - "revision": "fcfcbde9ecfd4127b67821e3", + "revision": "940a526d184e4e13be1c1d71", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69783,24 +51184,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + "costs": [] }, - "revision": "3027713377d14d76bfbc8100", + "revision": "598ef8a8c5444d65b77389f3", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69816,18 +51205,9 @@ "original_amount": 320, "total_amount": 320, "id": 1684628335504, - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - }, + "date_created": "2023-05-21T00:18:55.504Z", + "date_last_updated": "2023-05-21T00:18:55.504Z", + "date_of_expiration": "2023-05-21T00:18:55.504Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -69835,10 +51215,10 @@ "currency_id": "BRL", "history_id": 1684628335504 }, - "revision": "9dd908168fc84ef2b4bd61d0", + "revision": "d77d963dddfe4d7d920660d9", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69846,10 +51226,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "cfaee3f526e44734ba89b6b4", + "revision": "53bda44d39284291b847dcbe", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69867,24 +51247,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + "costs": [] }, - "revision": "2e806932d2354208b80c7a48", + "revision": "554e38e27cd147a99fc686c7", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69900,18 +51268,9 @@ "original_amount": 1561756, "total_amount": 1561756, "id": 1684633146254, - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - }, + "date_created": "2023-05-21T01:39:06.254Z", + "date_last_updated": "2023-05-21T01:39:06.254Z", + "date_of_expiration": "2023-05-21T01:39:06.254Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -69920,10 +51279,10 @@ "history_id": 1684633146254, "description": "Compra de 1.561.756,00 IVIP por 320,00 BRL" }, - "revision": "01a56f4fa9494d748ba1a477", + "revision": "e99ce738352649f2a57a9ddc", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69931,24 +51290,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + "costs": [] }, - "revision": "4c254ca72d9c4228bf4e1cfe", + "revision": "7c9f1e6893ba4a8cb3ef5929", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69963,18 +51310,9 @@ "total_amount": 130, "history_id": 1687191698878, "id": 1687191698878, - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - }, + "date_created": "2023-06-19T16:21:38.878Z", + "date_last_updated": "2023-06-23T18:12:45.861Z", + "date_of_expiration": "2023-07-19T16:21:38.878Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -69984,10 +51322,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "45a0b521ce874664a8dda33f", + "revision": "18f814b8b51b4e24863ef6d2", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -69995,10 +51333,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "ff5b9b357ca348f789c27494", + "revision": "de43b5a832894ab4ade0a1af", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70006,24 +51344,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + "costs": [] }, - "revision": "cc56be6b124d45cf9efd7321", + "revision": "fd2430cf8e7749b3a3931eec", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70038,27 +51364,18 @@ "total_amount": 1000, "history_id": 1689106982837, "id": 1689106982837, - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - }, + "date_created": "2023-07-11T20:23:02.837Z", + "date_last_updated": "2023-07-11T20:23:02.837Z", + "date_of_expiration": "2023-07-11T20:23:02.837Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "55db2b51303347c99759bdee", + "revision": "69bb22c86c904eaba10243d7", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70066,10 +51383,10 @@ "content": { "type": "STRING", "value": "Saque de 1.000,00 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", - "revision": "3255812b739e4dbba7603d47", + "revision": "1357965a59964de5a777fe29", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70077,24 +51394,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + "costs": [] }, - "revision": "4f4d7cae4116457c9bce9903", + "revision": "5688cdcafbb14135945cb821", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70109,27 +51414,18 @@ "total_amount": 100000, "history_id": 1689107140445, "id": 1689107140445, - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - }, + "date_created": "2023-07-11T20:25:40.445Z", + "date_last_updated": "2023-07-11T20:25:40.445Z", + "date_of_expiration": "2023-07-11T20:25:40.445Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "42fc6f69a1734aa894187f87", + "revision": "3a055b2424fc454db7b45d78", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70137,10 +51433,10 @@ "content": { "type": "STRING", "value": "Saque de 100.000,00 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", - "revision": "b48bb5c5ae72499aa2a7dd5a", + "revision": "fdc0cbd440dc49ffbd376764", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70160,24 +51456,12 @@ "installment_amount": 130, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + "costs": [] }, - "revision": "e38f79820f8843279323cecb", + "revision": "fea5f566f734464ba902362a", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70194,18 +51478,9 @@ "total_amount": 130, "id": 1689751872577, "contract_id": "1684353970499", - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - }, + "date_created": "2023-07-19T07:31:12.577Z", + "date_last_updated": "2023-07-19T07:31:12.577Z", + "date_of_expiration": "2023-07-19T07:31:12.577Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -70213,10 +51488,10 @@ "currency_id": "BRL", "history_id": 1689751872577 }, - "revision": "14913897929143a3b2c10c53", + "revision": "399e155ebf2f408180dedeef", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70224,10 +51499,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", - "revision": "97e6e83f1e9e4ebfa3e48080", + "revision": "6e49a3fae1624798b37b1929", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70235,24 +51510,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + "costs": [] }, - "revision": "802130877aa443c69b5e54c1", + "revision": "55c1b5e2ec7a414f805fc488", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70267,18 +51530,9 @@ "total_amount": 130, "history_id": 1689787472412, "id": 1689787472412, - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - }, + "date_created": "2023-07-19T17:24:32.412Z", + "date_last_updated": "2023-07-27T14:56:03.902Z", + "date_of_expiration": "2023-08-18T17:24:32.412Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -70288,10 +51542,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "952fdcbcecd34f38841bbc17", + "revision": "dc1d4e4a73da4b5d9554813f", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70299,10 +51553,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "f498ddd462b54a328e272085", + "revision": "c5f4c3c857104495b07d5c27", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70322,24 +51576,12 @@ "installment_amount": 130, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + "costs": [] }, - "revision": "873ef00eaeb2420cb224d7d8", + "revision": "36cb92011d5748afaf183639", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70356,18 +51598,9 @@ "total_amount": 130, "id": 1690471265404, "contract_id": "1684353970499", - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - }, + "date_created": "2023-07-27T15:21:05.404Z", + "date_last_updated": "2023-07-27T15:21:05.404Z", + "date_of_expiration": "2023-07-27T15:21:05.404Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -70375,10 +51608,10 @@ "currency_id": "BRL", "history_id": 1690471265404 }, - "revision": "104a8c1ebb674ac196d7ce61", + "revision": "2cdb3ab14bcc468b97f26c59", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70386,10 +51619,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", - "revision": "6baf1fd73dde4829b1cacbe3", + "revision": "11677989f6964678b6d58cdd", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70398,24 +51631,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-20T13:29:26.475Z", - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + ".val": "2023-09-20T13:29:26.475Z" }, - "revision": "5ba935b48a8048b5bfc00d0d", + "revision": "ab6854af82914a8dabac3ed9", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70431,24 +51652,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + "costs": [] }, - "revision": "134824cb55db49caa9f60703", + "revision": "12385e97f55a44e8937bd2b3", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70456,10 +51665,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692624566475", - "revision": "71956a893c7142c28c59e08e", + "revision": "5dbb938d63c4496488a7afd6", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70474,14 +51683,8 @@ "total_amount": 130, "id": 1692624566475, "history_id": 1692624566475, - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, + "date_created": "2023-08-21T13:29:26.475Z", + "date_last_updated": "2023-08-21T13:41:31.282Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70491,16 +51694,12 @@ "date_approved": "2023-08-21T13:41:31.282Z", "money_release_date": "2023-08-21T13:41:31.282Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + "wasDebited": true }, - "revision": "51fb7ff4fbd3470b88c2bcab", + "revision": "8fc116e894c04097b14b8aa2", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70508,10 +51707,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 130,00 BRL para a carteira iVip 0765.1978.1500.7150-40", - "revision": "ec6628e091c64a0782552d49", + "revision": "12ef804d89f54273a57772b7", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70529,24 +51728,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 3, - "installments_payable": 7, - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + "installments_payable": 7 }, - "revision": "2a9cd22d8bb3470fbf79011c", + "revision": "b2e6bb47ee684b609cdf839e", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70554,10 +51741,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692660761580", - "revision": "d1479684c57d4f9cab798bd1", + "revision": "4ed77f0271464744904ba4e9", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70572,18 +51759,9 @@ "total_amount": 130, "id": "1692660761580", "history_id": "1692660761580", - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - }, + "date_created": "2023-08-21T23:32:41.580Z", + "date_last_updated": "2023-08-21T23:32:41.580Z", + "date_of_expiration": "2023-08-21T23:32:41.580Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -70591,10 +51769,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "c7133aabbbe745ea8e25700d", + "revision": "c47c9398c6a64f2fb03b13f3", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70602,10 +51780,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", - "revision": "7c6a53cfd8624feeae3a4d23", + "revision": "a177546522e144ca97e2df77", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70615,24 +51793,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 208830.06, - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + "amount": 208830.06 }, - "revision": "c435c4f1fe154adbb485ce23", + "revision": "507b5779db8142b297ec7e64", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70647,24 +51813,12 @@ "installment_amount": 6961002, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + "financial_institution": "ivipcoin" }, - "revision": "d0db80062846437dbce9c0a6", + "revision": "94293475963f49fca7a3929c", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70672,10 +51826,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692785689941", - "revision": "ccb114a0147a4806a54592ae", + "revision": "70ad19c7a38143a19499b0f9", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70683,10 +51837,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "1a7011b9b32843aaa0f0873c", + "revision": "0dd39a616ece4c18a9d2835f", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70701,18 +51855,9 @@ "total_amount": 6752171.94, "id": "1692785689941", "history_id": "1692785689941", - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - }, + "date_created": "2023-08-23T10:14:49.941Z", + "date_last_updated": "2023-08-25T14:03:24.887Z", + "date_of_expiration": "2023-08-23T10:14:49.941Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -70724,10 +51869,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "ed10abdce3c0495f91058368", + "revision": "472738b849ce4e3799713642", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70735,10 +51880,10 @@ "content": { "type": "STRING", "value": "Saque de 6.752.171,94 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", - "revision": "93145a666f3f499686924b71", + "revision": "1e2bad76d2f9406dae8ac96f", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70747,24 +51892,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-05T17:04:41.018Z", - "date_created": { - "type": 6, - "value": 1701459383516 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383516 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383516 - } + ".val": "2023-11-05T17:04:41.018Z" }, - "revision": "8d7c28ec5ac3494996a1c03b", + "revision": "99c637037f944a889e7622a0", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70780,24 +51913,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "costs": [] }, - "revision": "0152f58205f0482e84603790", + "revision": "b7d03be94eac461b96759091", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70805,10 +51926,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1696611881018", - "revision": "0d5950cef2d9425bab19c3b6", + "revision": "87ed212f86f3439292a73074", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70824,14 +51945,8 @@ "total_amount": 130, "id": "1696611881018", "history_id": "1696611881018", - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-10-06T17:04:41.018Z", + "date_last_updated": "2023-10-06T17:16:03.868Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70841,16 +51956,12 @@ "date_approved": "2023-10-06T17:16:03.868Z", "money_release_date": "2023-10-06T17:16:03.868Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "wasDebited": true }, - "revision": "39f991bc12584b03a4096fc7", + "revision": "91334cff479f410ca19f3ad4", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70858,10 +51969,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 130,00 BRL para a carteira iVip 0765.1978.1500.7150-40", - "revision": "9315d9e79ed245d28bcec1b4", + "revision": "aab1a622b28f4d788d5f258d", "revision_nr": 1, - "created": 1701459383516, - "modified": 1701459383516 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70879,24 +51990,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 4, - "installments_payable": 6, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "installments_payable": 6 }, - "revision": "968049b351254f458d2bf0f2", + "revision": "29cc627cd2134830a384bc67", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70904,10 +52003,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1696613460272", - "revision": "0c84d93043eb4f03a54a4ab0", + "revision": "0130489134a34e66ab69611b", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70923,18 +52022,9 @@ "total_amount": 130, "id": "1696613460272", "history_id": "1696613460272", - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-10-06T17:31:00.272Z", + "date_last_updated": "2023-10-06T17:31:00.272Z", + "date_of_expiration": "2023-10-06T17:31:00.272Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -70942,10 +52032,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "b1a478e0b12d4787a32e0482", + "revision": "3efbaa305ac34108b2b1780a", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70953,10 +52043,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", - "revision": "7a7f1a460a1c4d2d980aa40f", + "revision": "66f870b993f4424ea0c19647", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70964,10 +52054,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "60740ea5d065411cbd653266", + "revision": "3915c99962c840d0ae8af106", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509571, + "modified": 1701463509571 } }, { @@ -70977,24 +52067,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "amount": 300 }, - "revision": "87722e3c8795498f8b00d2f0", + "revision": "0902cce67ed3435c9885d2a9", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71008,26 +52086,15 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-05-17T20:06:10.499Z", "history_id": 1684353970499, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "status": "paid" }, - "revision": "ed5e9daca05b48e9a726a1ff", + "revision": "abb031b3e43e4cce9f31555d", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71035,10 +52102,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "90ebafddb15140369f9b25b8", + "revision": "c630911ee8594f5194d437d2", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71046,10 +52113,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "46bff42707144d7b827457fb", + "revision": "e38a85d90d7f42a2a5133359", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71057,10 +52124,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5d3f3c8c2b5740ee83b40480", + "revision": "5cefc316036646dc91d22e12", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71070,24 +52137,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "amount": 300 }, - "revision": "3e2933996a4e4653aef48a5a", + "revision": "27873f7558b24ec9a5a447d3", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71101,26 +52156,15 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-05-17T20:06:10.499Z", "history_id": 1684353970499, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "status": "paid" }, - "revision": "5590e0eb71ed4f83babd0ce1", + "revision": "a6bc456bfa5a4724b501e19e", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71128,10 +52172,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "b9374222e0a5421ab9e280bc", + "revision": "c339e460e0ee47e3bee9ffdc", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71139,10 +52183,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "420805f5adb041f0aeec0ff3", + "revision": "e144d73665ef4be5b8f1a388", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71150,10 +52194,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fdbb9eda8ce8417f8a5c5075", + "revision": "6551fa8ba8774c77a26c8473", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71163,24 +52207,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "amount": 300 }, - "revision": "52b91a8878f740f199b087d4", + "revision": "0b3e6d0597594cb1bd0ddb80", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71194,26 +52226,15 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-05-17T20:06:10.499Z", "history_id": 1684353970499, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "status": "paid" }, - "revision": "6b897561dca8454383e8b7e0", + "revision": "4ded4c99daa84d158ec70d50", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71221,10 +52242,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "b803cdd706624421a08c0416", + "revision": "f9d925e240b54781af355af1", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71232,10 +52253,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "ca4b82fc860f4672b491b159", + "revision": "61520b95b69c41f2a8927f75", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71243,10 +52264,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d392569140244f87a35d1b55", + "revision": "14ace08d8f33452b839ad8ac", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71256,24 +52277,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "amount": 300 }, - "revision": "6c0f988c2f574a57bfc78359", + "revision": "6b1a54e7f1244101b7e64844", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71287,26 +52296,16 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-05-17T20:06:10.499Z", "history_id": 1684353970499, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "date_last_updated": "2023-10-06T17:31:00.287Z" }, - "revision": "baf835cff5714be1a723dc22", + "revision": "7bd3a306c0b1427bac82fc10", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71314,10 +52313,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "a6dd5a170e6a448793fa1e43", + "revision": "e62c2d60916a452d82fcc81a", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71325,10 +52324,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "6cca172edf9742f697bc7c28", + "revision": "49bbfc236a2a4ed7b6c25050", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71336,10 +52335,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3776af38608643b48ca81512", + "revision": "acf5c09e4ebc48bfb27ea9d4", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71349,24 +52348,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "amount": 300 }, - "revision": "01189fe1f357450a9ff66373", + "revision": "dae7e40e507445a681e5875d", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71380,25 +52367,14 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-05-17T20:06:10.499Z", "history_id": 1684353970499, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "currency_id": "BRL" }, - "revision": "52c1bf5ea5ee4930ac09efeb", + "revision": "487dcd7ba86948268f96e80d", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71406,10 +52382,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "cec7a04aace84065bf3bd6d8", + "revision": "4ba08a285e5340bca55dfdab", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71417,10 +52393,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "bed58d8d79fc421cbc49e2f9", + "revision": "f3570da5239848f1866e9ffd", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71428,10 +52404,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c1af5bb4af264ab193dedd4a", + "revision": "c6ec72b9120a4b33870407e1", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71441,24 +52417,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "amount": 300 }, - "revision": "546939f471274ce2be478349", + "revision": "a6ab9942c2b648109f637d88", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71472,25 +52436,14 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-05-17T20:06:10.499Z", "history_id": 1684353970499, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "currency_id": "BRL" }, - "revision": "753beada6a6f428b836e7d21", + "revision": "d65fa82c1c7a41c9b16281f3", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71498,10 +52451,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "5f7358b813d74cb3afe1542e", + "revision": "9929322f142b4899b25e137e", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71509,10 +52462,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "2fc8eb557d1547baa161926a", + "revision": "17041eac2fbb45b8bf0be8b5", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71520,10 +52473,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b63abd3846454f9584952c60", + "revision": "a51aac1d46c743999c67bf71", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71533,24 +52486,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "amount": 300 }, - "revision": "4ea1b972681e4dfa8083d7c3", + "revision": "667de5ff4c0048ee9c2d915b", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71564,25 +52505,14 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-05-17T20:06:10.499Z", "history_id": 1684353970499, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "currency_id": "BRL" }, - "revision": "6c4efa3afc3346c191e67fb4", + "revision": "d12400b4ae724bc2ba5bf541", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71590,10 +52520,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "d7c4969985654805a91bc4b2", + "revision": "4d09740a3ed943bd862474f1", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71601,10 +52531,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f17b04412a614791a15e2e64", + "revision": "7c65c4c705d74af6924af49d", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71612,10 +52542,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "367d72d08000482997613eca", + "revision": "2276c533bea84520af3949b1", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71625,24 +52555,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "amount": 300 }, - "revision": "71b792704e4f4f04bdf5ceb2", + "revision": "3f297e13985c40bf926882c3", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71656,25 +52574,14 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-05-17T20:06:10.499Z", "history_id": 1684353970499, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "currency_id": "BRL" }, - "revision": "0b7724828b844f00a7ac57a0", + "revision": "953dd2fa8cca49a99508fb5e", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71682,10 +52589,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "aae6fa27bb954b98b180846d", + "revision": "8e16cc1f03d345138c5c8af8", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71693,10 +52600,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f8de60130f9f4b6e9bda22e0", + "revision": "9d49bff908694bb68091f0ba", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71704,10 +52611,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "73c331ca22ff476694c83e8e", + "revision": "aba4ae2ea8ff4a55a49fbf60", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71717,24 +52624,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "amount": 300 }, - "revision": "1290cae9371644229e6c3bea", + "revision": "36e77c86eda842b3939af4ec", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71748,25 +52643,14 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-05-17T20:06:10.499Z", "history_id": 1684353970499, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "currency_id": "BRL" }, - "revision": "27372dc418c847df84a058dc", + "revision": "71d2fba5f117442faedcb0bf", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71774,10 +52658,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "ff1b6ee512674ca78de911c4", + "revision": "a094984bd15e4633ae5ebf92", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71785,10 +52669,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "361dab937b324f0fa88821d6", + "revision": "9fd6d4be78824d988383ea08", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71796,10 +52680,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "048d55ae202a4d86be0237bf", + "revision": "cc2e37a9b84c417f9e4ef7b6", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71809,24 +52693,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", - "amount": 300, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "amount": 300 }, - "revision": "f2ab90aca9a14f5585a01cdd", + "revision": "6be96bddc1004ce2baefaedc", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71840,25 +52712,14 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-05-17T20:06:10.499Z", "history_id": 1684353970499, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "currency_id": "BRL" }, - "revision": "4fd2729724974bd7bb710656", + "revision": "f604a932a4e2416db4930ad6", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71866,10 +52727,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "4308b5d63f544cba846cd28b", + "revision": "440b746f2b484a4d80523c70", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71877,10 +52738,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "350d1f2bfd66425aa3108e3a", + "revision": "830800b811294db486feeaa0", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71888,10 +52749,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2eb4b1c8ab03440ab32f87b4", + "revision": "0c37d56190bf46b0987e2afb", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71899,10 +52760,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6bcd5af695ad4390a5c59a9d", + "revision": "2231bc4818cc4af8ac71b5d2", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71913,24 +52774,12 @@ "approvedLimit": 1000, "limitUsed": 800, "analysisRequested": "2023-05-17T13:09:04.557Z", - "lastReview": "2023-05-17T13:16:45.576Z", - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "lastReview": "2023-05-17T13:16:45.576Z" }, - "revision": "a208d45b7b2a484c9d82d0d8", + "revision": "a26021fa55a041bdbbedb941", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71942,24 +52791,12 @@ "dateValidity": 1682778060382, "totalValue": 296.475, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "balancesModificacao": "2023-10-16T03:00:00.000Z" }, - "revision": "140778da6f3045619213d158", + "revision": "b9fff80e72514a44ae9af3b4", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71967,10 +52804,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "908ce780b86a4a008161282e", + "revision": "125289b9e6d34e31946b930a", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71978,10 +52815,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d58de4a3b4884d5d932d2160", + "revision": "c942ec4f4a844f04a35ad09f", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -71992,24 +52829,12 @@ "dataModificacao": 1677453360716, "dateValidity": 1677453360716, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "currencyType": "USD" }, - "revision": "f2ead803f39243db80264939", + "revision": "74121f9c64fd4e69a8affb61", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72017,10 +52842,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "57069d46286d4c72a8b25644", + "revision": "9b587c30a5e84647a64f5c7c", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72028,24 +52853,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "costs": [] }, - "revision": "45f61f6db15043c2ba166a01", + "revision": "889d81bb2a5643c291510938", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72060,18 +52873,9 @@ "total_amount": 500, "history_id": 1677768924149, "id": 1677768924149, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-03-02T14:55:24.149Z", + "date_last_updated": "2023-03-13T13:10:27.494Z", + "date_of_expiration": "2023-04-01T14:55:24.149Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -72079,10 +52883,10 @@ "money_release_date": "2023-03-13T13:10:27.494Z", "money_release_status": "rejected" }, - "revision": "422de40b4c134957bdfe8b45", + "revision": "c01fa4a40f4c427a99130eba", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72090,10 +52894,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0782.9501.4075.3404-50", - "revision": "cfb841b9e0944b418fa0418e", + "revision": "2a5046901df84f8693ea8de4", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72101,10 +52905,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a7283127ad2a4a5d8b41a3d5", + "revision": "0bf3b5a17cc04c58b7b60ef4", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72115,24 +52919,12 @@ "dataModificacao": 1677768631228, "dateValidity": 1677768631228, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "currencyType": "USD" }, - "revision": "414b3e9cdd0f497592487d25", + "revision": "8db9add128d44873ad2ced5d", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72142,24 +52934,12 @@ "value": { "symbol": "BRL", "available": "0.00000000", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "value": 0 }, - "revision": "ab5a293789da42c0a923ceab", + "revision": "253e942f86964e8994243912", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72169,24 +52949,12 @@ "value": { "symbol": "IVIP", "available": "0.00000000", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "value": 0 }, - "revision": "8f78bea598ef4718aec801a8", + "revision": "86c460ab3b9e4fdbbce772ef", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72194,10 +52962,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fa0e52b891d44a7cbd55d66b", + "revision": "9cd601767a5b4acca456f1c0", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72205,24 +52973,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "costs": [] }, - "revision": "4219d32ac5ef448ca7fd312a", + "revision": "49d98176c0da47d5ae15d641", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72237,18 +52993,9 @@ "total_amount": 100, "history_id": 1684172899523, "id": 1684172899523, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-05-15T17:48:19.523Z", + "date_last_updated": "2023-05-15T21:27:24.298Z", + "date_of_expiration": "2023-06-14T17:48:19.523Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -72258,10 +53005,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b864a6d9e993404f9edead16", + "revision": "5ad1200f8ba441358d6c7397", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72269,10 +53016,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0783.4537.2944.2504-80", - "revision": "0077ff5ee3664a5c9059680b", + "revision": "777251008ff84092b8284a7f", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72290,24 +53037,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "costs": [] }, - "revision": "d7999a90821e4d0892421861", + "revision": "7746cbb8ab264dcd93b8dfe1", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72323,18 +53058,9 @@ "original_amount": 487073, "total_amount": 487073, "id": 1684625628231, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-05-20T23:33:48.231Z", + "date_last_updated": "2023-05-20T23:33:48.231Z", + "date_of_expiration": "2023-05-20T23:33:48.231Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -72343,10 +53069,10 @@ "history_id": 1684625628231, "description": "Compra de 487.073,00 IVIP por 100,00 BRL" }, - "revision": "bf6fb0b8f7474d408acae2e2", + "revision": "21ed6a9e366e45a092723555", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72354,24 +53080,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "costs": [] }, - "revision": "cde59d2c4bdb4ba699299a8b", + "revision": "dad30ccb51524f0799484642", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72386,27 +53100,18 @@ "total_amount": 487073, "history_id": 1688602924031, "id": 1688602924031, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-07-06T00:22:04.031Z", + "date_last_updated": "2023-07-06T00:22:04.031Z", + "date_of_expiration": "2023-07-06T00:22:04.031Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "6ce6ebd040064183b1657adb", + "revision": "0dd3e81d3177428ab231b5ae", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72414,10 +53119,10 @@ "content": { "type": "STRING", "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", - "revision": "111cec497ec64b19952acf9e", + "revision": "56a39e8054e5435994f2d260", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72425,24 +53130,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "costs": [] }, - "revision": "db3c042e4fe64156a11b45ed", + "revision": "a2c16decee734feabb2b13a6", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72457,27 +53150,18 @@ "total_amount": 487073, "history_id": 1689096874209, "id": 1689096874209, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-07-11T17:34:34.209Z", + "date_last_updated": "2023-07-11T17:34:34.209Z", + "date_of_expiration": "2023-07-11T17:34:34.209Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "116c80efd3364a268e8f14d4", + "revision": "cce6b85ad055427193a81555", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72485,10 +53169,10 @@ "content": { "type": "STRING", "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", - "revision": "898b377f79e34a5ea3aa0640", + "revision": "30e1fcabe2ee441185a712a0", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72496,24 +53180,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "costs": [] }, - "revision": "bb8ad4cb49bb4e5687d183b0", + "revision": "e9baa89e2f234547a7302931", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72528,27 +53200,18 @@ "total_amount": 487073, "history_id": 1689182689273, "id": 1689182689273, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-07-12T17:24:49.273Z", + "date_last_updated": "2023-07-12T17:24:49.273Z", + "date_of_expiration": "2023-07-12T17:24:49.273Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "2b33dc0852334d97964b4d2e", + "revision": "cb7f4cf88e444088b9c76101", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72556,10 +53219,10 @@ "content": { "type": "STRING", "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", - "revision": "0791f73f43ce487ebed3774f", + "revision": "18ebae96524d461883eb313c", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72567,24 +53230,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "costs": [] }, - "revision": "798bc56ff3e34afd870c3143", + "revision": "1295edb362eb46c89ca88700", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72599,18 +53250,9 @@ "total_amount": 487073, "history_id": 1689197773070, "id": 1689197773070, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-07-12T21:36:13.070Z", + "date_last_updated": "2023-07-13T13:52:01.891Z", + "date_of_expiration": "2023-07-12T21:36:13.070Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -72620,10 +53262,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "1624b881c4d04f5c8b38b8f4", + "revision": "a9a8a7af4d324efc81006106", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72631,10 +53273,10 @@ "content": { "type": "STRING", "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", - "revision": "9c4667a240e4405d9fb228ff", + "revision": "243ff463da0b478bae830aed", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72642,10 +53284,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d5d70157bf2a49e19e7a2d74", + "revision": "904f431bc3e142db807f5d34", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72653,10 +53295,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "73bfd91428fd4e8288d280d1", + "revision": "0a44d412cc5949839bb5cf9d", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72665,24 +53307,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "limitUsed": 0 }, - "revision": "0e9e29351a3e4cb5825686a2", + "revision": "095ca1fc89c54b8da260518a", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72693,24 +53323,12 @@ "dataModificacao": 1684172840672, "dateValidity": 1684172840672, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "currencyType": "USD" }, - "revision": "e3cc7c9721fd48838e64ddec", + "revision": "4e6b2794041a4c239864556a", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72720,24 +53338,12 @@ "value": { "available": "1863605.00000000", "symbol": "IVIP", - "value": 199.32, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "value": 199.32 }, - "revision": "64c0cc2b94064f44954f7bbc", + "revision": "bc11b2a58c9d4d24a8003ee5", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72745,10 +53351,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4e0585a27ce44843bc42d56c", + "revision": "ae1bf51959bc4b5e97dc1547", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72756,24 +53362,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "costs": [] }, - "revision": "b367c11b217944a58e9a1eab", + "revision": "25cd7c34408c46f294e7ed78", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72788,18 +53382,9 @@ "total_amount": 2020, "history_id": 1684105639483, "id": 1684105639483, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-05-14T23:07:19.483Z", + "date_last_updated": "2023-05-15T14:50:18.116Z", + "date_of_expiration": "2023-06-13T23:07:19.483Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -72809,10 +53394,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "13f3a8d3e7d6451795558c3c", + "revision": "4f77c658e40747b28c30eee0", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72820,10 +53405,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.020,00 para a carteira iVip 0807.3197.8336.0713-80", - "revision": "5f1575c1c498448bbb7f6628", + "revision": "1528a151068d45a290eb1585", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72841,24 +53426,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "costs": [] }, - "revision": "e953016311a846c29cf5bb76", + "revision": "8379cb7047e7469081468354", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72874,18 +53447,9 @@ "original_amount": 9838878, "total_amount": 9838878, "id": 1684624287649, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-05-20T23:11:27.649Z", + "date_last_updated": "2023-05-20T23:11:27.649Z", + "date_of_expiration": "2023-05-20T23:11:27.649Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -72894,10 +53458,10 @@ "history_id": 1684624287649, "description": "Compra de 9.838.878,00 IVIP por 2.020,00 BRL" }, - "revision": "5127d37f352141f892c5a771", + "revision": "9c583f7e3611426dafab1e7b", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72915,24 +53479,12 @@ "installment_amount": 7975273, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "costs": [] }, - "revision": "a9a36acc7528424090fe3710", + "revision": "e06bbaf265214097b73b3559", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72947,18 +53499,9 @@ "original_amount": 7975273, "total_amount": 7975273, "id": 1685667269938, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-06-02T00:54:29.938Z", + "date_last_updated": "2023-06-02T00:54:29.938Z", + "date_of_expiration": "2025-06-02T00:54:29.938Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -72966,10 +53509,10 @@ "currency_id": "IVIP", "history_id": 1685667269938 }, - "revision": "96ac6122888f49dcbc1a7c6c", + "revision": "e3d91138658a4d369b03d0e4", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72977,10 +53520,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.975.273,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "3a3c311e98b24e29b420c458", + "revision": "76f91b5741004ae3845354c2", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72988,10 +53531,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "291f1fabcea0493c842cb7c6", + "revision": "1b4f122b30ec4817917f6677", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -72999,10 +53542,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "29999f4db4a84e289b83d51f", + "revision": "d60c2267e8cd458ca2093a10", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -73011,24 +53554,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "limitUsed": 0 }, - "revision": "01168e8210184f31af703340", + "revision": "7ac436a122944df8be9b24a1", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -73040,24 +53571,12 @@ "dateValidity": 1684103814248, "totalValue": 103.1880266333287, "currencyType": "USD", - "balancesModificacao": "2023-10-13T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "balancesModificacao": "2023-10-13T03:00:00.000Z" }, - "revision": "ccd2ad40a0e047c19f62719d", + "revision": "6550b356ba9146d8ba4ecbf2", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -73067,24 +53586,12 @@ "value": { "available": "2366500.54000000", "symbol": "IVIP", - "value": 355.3, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "value": 355.3 }, - "revision": "b17f1e02c14e42aa863cdc00", + "revision": "85ad7a7c3dc645868d457417", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -73092,10 +53599,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9a598f5e94fb46c8ab949796", + "revision": "14e5e9ea7f8241d3af85d53e", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -73103,24 +53610,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "costs": [] }, - "revision": "dad9b3295c514fcaa8264848", + "revision": "29c34c55ea594d12a74e8423", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -73135,18 +53630,9 @@ "total_amount": 1500, "history_id": 1677928546145, "id": 1677928546145, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-03-04T11:15:46.145Z", + "date_last_updated": "2023-03-04T11:25:19.050Z", + "date_of_expiration": "2023-04-03T11:15:46.145Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -73156,10 +53642,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3d72e4addd4c4b1992b25436", + "revision": "c7ca3d59ef294b499beb0127", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -73167,10 +53653,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "82639320787b472a8f615f00", + "revision": "1983d1c203fe4d1ba2ff1696", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -73178,24 +53664,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "costs": [] }, - "revision": "541b62573e854b478708c005", + "revision": "d093ddb7efda4a2cafcf1014", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -73210,18 +53684,9 @@ "total_amount": 20, "history_id": 1677787145274, "id": 1677787145274, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-03-02T19:59:05.274Z", + "date_last_updated": "2023-03-02T20:06:45.317Z", + "date_of_expiration": "2023-04-01T19:59:05.274Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -73231,10 +53696,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "1a72ec7420b34d96b2f80f0c", + "revision": "2e7345f12eb8488590f34a65", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -73242,10 +53707,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "a18b606649e6451fa10195dc", + "revision": "cc3e849bfcff4c279ddb767e", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -73263,24 +53728,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - } + "costs": [] }, - "revision": "9129989a48ac47f4b62f4831", + "revision": "297017c79ad5402985533571", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -73296,18 +53749,9 @@ "original_amount": 10760563, "total_amount": 10760563, "id": 1678059759995, - "date_created": { - "type": 6, - "value": 1701459383517 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383517 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383517 - }, + "date_created": "2023-03-05T23:42:39.995Z", + "date_last_updated": "2023-03-05T23:42:39.995Z", + "date_of_expiration": "2023-03-05T23:42:39.995Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73316,10 +53760,10 @@ "history_id": 1678059759995, "description": "Compra de 10760563 IVIP por 1520 BRL" }, - "revision": "3074d9ad561944c49d8edbc6", + "revision": "e2530b2560254f77abec399b", "revision_nr": 1, - "created": 1701459383517, - "modified": 1701459383517 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -73327,24 +53771,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "6dbe63fc3f5e4e878753bae7", + "revision": "c063afb65f8c4db2a52ba7a5", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -73359,18 +53791,9 @@ "total_amount": 153, "history_id": 1678742795429, "id": 1678742795429, - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-03-13T21:26:35.429Z", + "date_last_updated": "2023-03-13T21:27:18.748Z", + "date_of_expiration": "2023-04-12T21:26:35.429Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -73380,10 +53803,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d81727e1b9f546c39b2095e8", + "revision": "2ecaab1a5bcf4160ba2bfa36", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -73391,10 +53814,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 153,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "ea252c5f533c4b189329ebbd", + "revision": "a03896271ab24a1f9b16519a", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -73412,24 +53835,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "e73cbb019bdc47d1ac12898d", + "revision": "b317e507fb364001b0f3c892", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73445,18 +53856,9 @@ "original_amount": 3, "total_amount": 3, "id": 1678209797800, - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-03-07T17:23:17.800Z", + "date_last_updated": "2023-03-07T17:23:17.800Z", + "date_of_expiration": "2023-03-07T17:23:17.800Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73464,10 +53866,10 @@ "currency_id": "BRL", "history_id": 1678209797800 }, - "revision": "0faea8aba3b447b9bb511573", + "revision": "92edf985a51b4b558270c97d", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73475,10 +53877,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "2b13e6f1617f455c9c799d81", + "revision": "a15628129bc44dfcb734f20f", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509572, + "modified": 1701463509572 } }, { @@ -73496,24 +53898,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "27b9d0415bc446f4a8fb47be", + "revision": "7dcf2e3b4aa14edc95c53f3d", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73529,18 +53919,9 @@ "original_amount": 2, "total_amount": 2, "id": 1678215371496, - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-03-07T18:56:11.496Z", + "date_last_updated": "2023-03-07T18:56:11.496Z", + "date_of_expiration": "2023-03-07T18:56:11.496Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73548,10 +53929,10 @@ "currency_id": "BRL", "history_id": 1678215371496 }, - "revision": "c85b5fe633314fa48b21dc75", + "revision": "29ed23a5cd01469081608a28", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73559,10 +53940,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "d6b42b50e0fb43439e2dc7a6", + "revision": "3408df42e29442b2947cde11", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73580,24 +53961,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "dfb1f321a73640679c25648e", + "revision": "5cc49dcac85b47c8857578ef", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73613,18 +53982,9 @@ "original_amount": 9.4, "total_amount": 9.4, "id": 1679267048083, - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-03-19T23:04:08.083Z", + "date_last_updated": "2023-03-19T23:04:08.083Z", + "date_of_expiration": "2023-03-19T23:04:08.083Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73632,10 +53992,10 @@ "currency_id": "BRL", "history_id": 1679267048083 }, - "revision": "2f813a114f52441b849bd5b2", + "revision": "12338c97dd6e44a999ae5619", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73643,10 +54003,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "fc6d541b07fd4de6ac2bfeb1", + "revision": "63274afb9b02403a9a266914", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73664,24 +54024,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "11f33f7e9e2e406c8591380a", + "revision": "2b54da5a598a44f981d1b217", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73697,18 +54045,9 @@ "original_amount": 974525, "total_amount": 974525, "id": 1679268223760, - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-03-19T23:23:43.760Z", + "date_last_updated": "2023-03-19T23:23:43.760Z", + "date_of_expiration": "2023-03-19T23:23:43.760Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73717,10 +54056,10 @@ "history_id": 1679268223760, "description": "Compra de 974525 IVIP por 167.4 BRL" }, - "revision": "92a9eb6bdea442db8bee5272", + "revision": "0c3b2b6453ec4db5855d6493", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73738,24 +54077,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "2560a990e37545ffa1c437a4", + "revision": "a40b9953732e4052aeb9dc2f", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73771,18 +54098,9 @@ "original_amount": 10, "total_amount": 10, "id": 1679914966258, - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-03-27T11:02:46.258Z", + "date_last_updated": "2023-03-27T11:02:46.258Z", + "date_of_expiration": "2023-03-27T11:02:46.258Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73790,10 +54108,10 @@ "currency_id": "BRL", "history_id": 1679914966258 }, - "revision": "d5ff2e3c0f8a48799963c500", + "revision": "47891844cdb84497a40ffadc", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73801,10 +54119,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "4677834a002e41898e86d4b9", + "revision": "560fe3b4236f4ef5a39ccc6b", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73822,24 +54140,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "080d03ff210045c7bf393d9e", + "revision": "39115a595b1747b5a706b107", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73855,18 +54161,9 @@ "original_amount": 203, "total_amount": 203, "id": 1684348398411, - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-05-17T18:33:18.411Z", + "date_last_updated": "2023-05-17T18:33:18.411Z", + "date_of_expiration": "2023-05-17T18:33:18.411Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73874,10 +54171,10 @@ "currency_id": "BRL", "history_id": 1684348398411 }, - "revision": "5aef1a34f01f403591793f0b", + "revision": "dd5b78961c804984b4f089a7", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73885,10 +54182,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "b611c43a55fc4c7fbc6d629f", + "revision": "99f48d05d024415599831e05", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73906,24 +54203,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "d115139c353d4b36ae802831", + "revision": "3debbdb792034a0193231b11", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73939,18 +54224,9 @@ "original_amount": 9, "total_amount": 9, "id": 1684624161069, - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-05-20T23:09:21.069Z", + "date_last_updated": "2023-05-20T23:09:21.069Z", + "date_of_expiration": "2023-05-20T23:09:21.069Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73958,10 +54234,10 @@ "currency_id": "BRL", "history_id": 1684624161069 }, - "revision": "534c9a14904b4df8b64034be", + "revision": "c718432c468640928d0c8570", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73969,10 +54245,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "d6e1c4381e824fe8a5acd694", + "revision": "c3c123b923114f9390d8eec3", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -73990,24 +54266,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "10b9356aaa5a4b68aa50b5a4", + "revision": "98aae19de17f4b049bbec13e", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74023,18 +54287,9 @@ "original_amount": 1081302, "total_amount": 1081302, "id": 1684624222413, - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-05-20T23:10:22.413Z", + "date_last_updated": "2023-05-20T23:10:22.413Z", + "date_of_expiration": "2023-05-20T23:10:22.413Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74043,10 +54298,10 @@ "history_id": 1684624222413, "description": "Compra de 1.081.302,00 IVIP por 222,00 BRL" }, - "revision": "d23750b4a9894b17b18c7ec8", + "revision": "ffa93596da8447a4a8c88e8f", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74064,24 +54319,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "8c381fca406543a39b48d68a", + "revision": "f1038d6aee1943df8563da65", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74097,18 +54340,9 @@ "original_amount": 7, "total_amount": 7, "id": 1684624292772, - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-05-20T23:11:32.772Z", + "date_last_updated": "2023-05-20T23:11:32.772Z", + "date_of_expiration": "2023-05-20T23:11:32.772Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74116,10 +54350,10 @@ "currency_id": "BRL", "history_id": 1684624292772 }, - "revision": "11ff9ea3c0154f1d8d4cd403", + "revision": "2fc1ef0abe4d478bad8b172f", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74127,10 +54361,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "1625a38f11cd4b759513356b", + "revision": "f198cd91cda24909a9b05397", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74138,24 +54372,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "7e3ca1b78d7c4f87a88da50a", + "revision": "8317a3046c69463aa82cb338", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74170,18 +54392,9 @@ "total_amount": 1061299, "history_id": 1688520874831, "id": 1688520874831, - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-07-05T01:34:34.831Z", + "date_last_updated": "2023-07-13T14:18:04.324Z", + "date_of_expiration": "2023-07-05T01:34:34.831Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -74191,10 +54404,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "a6b989e8636a4f25a7b4ab96", + "revision": "7fff6ceed22647ea9cdbeb88", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74202,10 +54415,10 @@ "content": { "type": "STRING", "value": "Saque de 1.061.299,00 IVIP para a carteira 0xE15d4Dd48a54BAF74D9FA6a77FBb4B943a2A0d07", - "revision": "86a843f7fd7b4d10834d0bb1", + "revision": "4455b8267ead4e088d6fb5f4", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74213,24 +54426,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "ab8e9003f6d24f259e4dae93", + "revision": "00b8aafb6a084856ad8463b8", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74245,18 +54446,9 @@ "total_amount": 10045174, "history_id": 1689257644454, "id": 1689257644454, - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-07-13T14:14:04.454Z", + "date_last_updated": "2023-07-14T17:46:54.071Z", + "date_of_expiration": "2023-07-13T14:14:04.454Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -74266,10 +54458,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "72942e1ba95f4b369125d680", + "revision": "b8ac28bbb2ad4ae0aee6616d", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74277,10 +54469,10 @@ "content": { "type": "STRING", "value": "Saque de 10.045.174,00 IVIP para a carteira 0xE15d4Dd48a54BAF74D9FA6a77FBb4B943a2A0d07", - "revision": "f8478f888e1b48b0b2f3b48c", + "revision": "a332a385c1f84e378cfef9ba", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74288,24 +54480,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "49789e9b6c514133a15fe643", + "revision": "aac03c7156f84db19e50f42d", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74320,18 +54500,9 @@ "total_amount": 1000, "history_id": 1689463707269, "id": 1689463707269, - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-07-15T23:28:27.269Z", + "date_last_updated": "2023-07-18T13:54:57.994Z", + "date_of_expiration": "2023-08-14T23:28:27.269Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -74341,10 +54512,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "10a5eb37f4e64e7fb266ebfb", + "revision": "6465ff8b6b2540cf8f755333", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74352,10 +54523,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "11ecdbc752394dfa9015538b", + "revision": "38425d5d65844b3fa64b0c03", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74373,24 +54544,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "03c71d8e21e04c1fb5298421", + "revision": "f3fab3d1763d48ed8d56e85f", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74406,18 +54565,9 @@ "original_amount": 661120, "total_amount": 661120, "id": 1689688682027, - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-07-18T13:58:02.027Z", + "date_last_updated": "2023-07-18T13:58:02.027Z", + "date_of_expiration": "2023-07-18T13:58:02.027Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74426,10 +54576,10 @@ "history_id": 1689688682027, "description": "Compra de 661.120,00 IVIP por 1.007,00 BRL" }, - "revision": "562af1c6c79f453bb3f72293", + "revision": "6498af6532e046be861330cc", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74438,24 +54588,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-23T17:07:17.203Z", - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + ".val": "2023-08-23T17:07:17.203Z" }, - "revision": "1b144f7b4d344784b3fdac65", + "revision": "ea2f326dcf3d4ba7a0340a1e", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74471,24 +54609,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "a768e5b561db4323a756c66a", + "revision": "5e3493cd86484a80833be811", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74496,10 +54622,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1690218437204", - "revision": "09887c8f285c4c329649c56c", + "revision": "bca4718588f1445f9a842c72", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74514,29 +54640,19 @@ "total_amount": 100, "id": 1690218437204, "history_id": 1690218437204, - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-07-24T17:07:17.204Z", + "date_last_updated": "2023-07-24T17:07:17.204Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "status_detail": "pending_waiting_payment" }, - "revision": "8409e6194f9e455ab7354236", + "revision": "07bfc8a7b58f4bada341cb5a", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74544,10 +54660,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "3735635f98d54ff0a1eaddd5", + "revision": "1b410a055c274290942b6e49", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74563,24 +54679,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "6434813a32af4a838ca23b73", + "revision": "bc89a07ef69c4a1fb4505325", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74588,10 +54692,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1691105324726", - "revision": "ff2963768df54bf7b65ef704", + "revision": "2b495861a4e54a1a830b54c5", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74606,18 +54710,9 @@ "total_amount": 2362853, "id": 1691105324726, "history_id": 1691105324726, - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-08-03T23:28:44.726Z", + "date_last_updated": "2023-08-03T23:28:44.726Z", + "date_of_expiration": "2023-09-03T23:28:44.725Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74625,10 +54720,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "fc7feef9d71c48a99fd0e4f9", + "revision": "6fec0bc4ec3247b6adabffb4", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74636,10 +54731,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.362.853,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "d4cb39c04d1b46d3ae0561c8", + "revision": "c1757e5f6a2146d8b7b17090", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74655,24 +54750,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "1cb2954eddb94a1f99392bfb", + "revision": "9aa368497f8949fc9405c007", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74680,10 +54763,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1693783873313", - "revision": "52eca759622449fdabc0097f", + "revision": "c8da29be730e481d806ea075", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74698,18 +54781,9 @@ "total_amount": 2410110.06, "id": "1693783873313", "history_id": "1693783873313", - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-09-03T23:31:13.313Z", + "date_last_updated": "2023-09-03T23:31:13.313Z", + "date_of_expiration": "2023-09-03T23:31:13.313Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74717,10 +54791,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "d4e22f49a61f40a1b9e3a282", + "revision": "efb860c981994a52920a9113", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74728,10 +54802,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.362.853,00 IVIP com um rendimento de +47.257,06 IVIP (2,00%) - Y12XDT27", - "revision": "cf308a68771a4a768ea1513b", + "revision": "e18a068b81164b7ab7c5d131", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74747,24 +54821,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "9117933e2d3b45ae8df7b7a2", + "revision": "c7409077fe414215b25457c6", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74772,10 +54834,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1693916505659", - "revision": "df0ed52649714bba9dfd5077", + "revision": "36f6ac690a534f5da9e1cde0", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74790,18 +54852,9 @@ "total_amount": 2410324, "id": "1693916505659", "history_id": "1693916505659", - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-09-05T12:21:45.659Z", + "date_last_updated": "2023-09-05T12:21:45.659Z", + "date_of_expiration": "2023-10-05T12:21:45.658Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74809,10 +54862,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "4741ccb152484a07ae2f4375", + "revision": "a35e380da315433399ab99c4", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74820,10 +54873,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.410.324,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", - "revision": "caee2f26f4704aabbeed5a45", + "revision": "3c83df68065d4fa58f79e202", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74839,24 +54892,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - } + "costs": [] }, - "revision": "e5eb8a57e23a42629dfd7d85", + "revision": "1333c6a204ca433d9f232284", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74864,10 +54905,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696508517073", - "revision": "1a57c2c7308942d6afad6e59", + "revision": "ca8ad9344b214b8dab3c251d", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74883,18 +54924,9 @@ "total_amount": 2458530.48, "id": "1696508517073", "history_id": "1696508517073", - "date_created": { - "type": 6, - "value": 1701459383518 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383518 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383518 - }, + "date_created": "2023-10-05T12:21:57.073Z", + "date_last_updated": "2023-10-05T12:21:57.073Z", + "date_of_expiration": "2023-10-05T12:21:57.073Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74902,10 +54934,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "d600091aecad41daa816e647", + "revision": "fd094957592a43ed88f059db", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74913,10 +54945,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.410.324,00 IVIP com um rendimento de +48.206,48 IVIP (2,00%) - Y12XDT27", - "revision": "b9dfe5b346694ff58dea93ec", + "revision": "79ee4cae241e4b9880f3fcf0", "revision_nr": 1, - "created": 1701459383518, - "modified": 1701459383518 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74932,24 +54964,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "aef4c5ae382248f386d0af3a", + "revision": "39591415daa245c1ba215e32", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74957,10 +54977,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696541853446", - "revision": "9fd38932bd144e168bebc75a", + "revision": "cef31462feab423993cd7b4a", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -74976,18 +54996,9 @@ "total_amount": 100000, "id": "1696541853446", "history_id": "1696541853446", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-10-05T21:37:33.446Z", + "date_last_updated": "2023-10-05T21:37:33.446Z", + "date_of_expiration": "2025-10-05T21:37:33.408Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74995,10 +55006,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "cc97f76eb15d4f4da746bafe", + "revision": "36fd1e7a72d945be8e258285", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75006,10 +55017,10 @@ "content": { "type": "STRING", "value": "Investimento de 100.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 05/10/2025 - P9A02KSL", - "revision": "fbec106207e24a7f8d634013", + "revision": "8f043398bd044bf5ae8ec19c", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75025,24 +55036,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "d204d467baa6435b92e3fb13", + "revision": "c64cd50348374bcb933bde65", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75050,10 +55049,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696640077573", - "revision": "81fad888ae2c4beaaf7e5ca2", + "revision": "5ab77eabfb334b2fa9dd00b1", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75069,18 +55068,9 @@ "total_amount": 2366500, "id": "1696640077573", "history_id": "1696640077573", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-10-07T00:54:37.573Z", + "date_last_updated": "2023-10-07T00:54:37.573Z", + "date_of_expiration": "2023-11-07T00:54:37.538Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -75088,10 +55078,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "f59fa2aec9c34d8198e598e0", + "revision": "8f135101d8b14bf7b6bb03ee", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75099,10 +55089,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.366.500,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", - "revision": "f16c74f09dfd48a28de3fa15", + "revision": "38b250327ba0409b88ee69d9", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75110,10 +55100,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6cf8249507444904a92f1f80", + "revision": "b4d34efe1db24e079550eeea", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75121,10 +55111,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "99fb98410c894b589a003157", + "revision": "1dc9ab5ba08e462cb4a528bf", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75133,24 +55123,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "limitUsed": 0 }, - "revision": "f4a8caf0bc504872828d15ab", + "revision": "94548aef7331400a875f9f41", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75162,24 +55140,12 @@ "dateValidity": 1678944817912, "totalValue": 779.84, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "balancesModificacao": "2023-10-06T03:00:00.000Z" }, - "revision": "c393c6a1b18e4ae4ba4331ae", + "revision": "2efcc414bbeb4111b07141e9", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75189,24 +55155,12 @@ "value": { "available": "1189036.00000000", "symbol": "IVIP", - "value": 151.17, - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "value": 151.17 }, - "revision": "08f6a6a1976847ada4c3a430", + "revision": "5c053222ba9a4cf09cd11afe", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75214,10 +55168,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "af524a3dc03241babb8fa01e", + "revision": "d931d553c72f4f79b00f678a", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75226,24 +55180,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-31T22:35:26.584Z", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + ".val": "2023-10-31T22:35:26.584Z" }, - "revision": "28ea345cf45e422e8122ccc8", + "revision": "38c93cd8d5d54cb282ca182a", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75259,24 +55201,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "5ee1a32da23c48f1a668d74f", + "revision": "32a2281621e545f4aacd3a0e", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75284,10 +55214,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696199726584", - "revision": "3cc40146293a4915910a7e7a", + "revision": "77d62b28024447c0a28372a9", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75303,29 +55233,19 @@ "total_amount": 10000, "id": "1696199726584", "history_id": "1696199726584", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-10-01T22:35:26.584Z", + "date_last_updated": "2023-10-01T22:35:26.584Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "status_detail": "pending_waiting_payment" }, - "revision": "e51f58c1141742c8883733cd", + "revision": "ce7bfd8472014e149de700e2", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75333,10 +55253,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 10.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", - "revision": "58fa5e228d2c420b93b4edac", + "revision": "9c261c04deca4fd0adde79e6", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75345,24 +55265,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-01T01:12:03.721Z", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + ".val": "2023-11-01T01:12:03.721Z" }, - "revision": "0cb2aad0e433478694e01f15", + "revision": "c9fcbf5c9f2943459ff32162", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509573, + "modified": 1701463509573 } }, { @@ -75378,24 +55286,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "70955e2482f24e94b10272f3", + "revision": "638d2fa7d4b047ce8a2e3d87", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75403,10 +55299,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696209123721", - "revision": "f7f8cead173f4375a3a85252", + "revision": "31f260308e6a4f32974ee771", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75422,14 +55318,8 @@ "total_amount": 10000, "id": "1696209123721", "history_id": "1696209123721", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-10-02T01:12:03.721Z", + "date_last_updated": "2023-10-02T18:48:20.859Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -75439,16 +55329,12 @@ "date_approved": "2023-10-02T18:48:20.859Z", "money_release_date": "2023-10-02T18:48:20.859Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "wasDebited": true }, - "revision": "f9386e9e967e4be2a31ef981", + "revision": "f3f0d1e95ca2473e8f054d80", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75456,10 +55342,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 10.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", - "revision": "9bd0df3e2e404582899118e0", + "revision": "b7570dba85dd40f5b93230fc", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75475,24 +55361,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "4c2bb21723124dc4be4c8bda", + "revision": "d922bd41893e4917a28e3525", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75500,10 +55374,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696355307483", - "revision": "a21f3a053d324b50985632a5", + "revision": "bb27ba4218b44cd2b9229c8d", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75519,18 +55393,9 @@ "total_amount": 10000, "id": "1696355307483", "history_id": "1696355307483", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-10-03T17:48:27.483Z", + "date_last_updated": "2023-10-03T17:48:27.483Z", + "date_of_expiration": "2023-11-03T17:48:27.483Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -75538,10 +55403,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c683adc322694afe9f4c0337", + "revision": "bf058e4d43f546e7bcd7474b", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75549,10 +55414,10 @@ "content": { "type": "STRING", "value": "Investimento de 10.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/11/2023 - Y12XDT27", - "revision": "0ca199c3ec80441398a88930", + "revision": "643e19ec6a324959bfdf98db", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75561,24 +55426,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-05T16:28:35.603Z", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + ".val": "2023-11-05T16:28:35.603Z" }, - "revision": "52e370dfaad4434899592ca6", + "revision": "89d924b0735440d8baebd2a1", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75594,24 +55447,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "400ba6d6b09945538b2c1e4e", + "revision": "afd9ca7cd7f04f7386b51ba0", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75619,10 +55460,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696609715603", - "revision": "348ac7222a174bf0bf028529", + "revision": "71392c08934b4c1086672199", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75638,14 +55479,8 @@ "total_amount": 250, "id": "1696609715603", "history_id": "1696609715603", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-10-06T16:28:35.603Z", + "date_last_updated": "2023-10-06T16:50:08.116Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -75655,16 +55490,12 @@ "date_approved": "2023-10-06T16:50:08.116Z", "money_release_date": "2023-10-06T16:50:08.116Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "wasDebited": true }, - "revision": "1f8d86f11d424a97b359e552", + "revision": "4cc96de72da641a08cfcc6ab", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75672,10 +55503,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 250,00 BRL para a carteira iVip 0832.4975.9247.3140-30", - "revision": "5147814c0fde4ec9ac4bedf1", + "revision": "3e0bd74f92d14d83a9680c07", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75684,24 +55515,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-05T16:40:50.136Z", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + ".val": "2023-11-05T16:40:50.136Z" }, - "revision": "dddef59fc2024ebc9f3c935d", + "revision": "ee8873e6f10b4f2aa288c2d8", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75717,24 +55536,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "6e2b08bc8049490c8f27d4f5", + "revision": "1394a588ec3549a0a4a1935e", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75742,10 +55549,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696610450136", - "revision": "bc17b177bebd4ba4828a1df4", + "revision": "5c8189b369ef40f082bf3c9e", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75761,14 +55568,8 @@ "total_amount": 868000, "id": "1696610450136", "history_id": "1696610450136", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-10-06T16:40:50.136Z", + "date_last_updated": "2023-10-06T17:06:26.733Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -75778,16 +55579,12 @@ "date_approved": "2023-10-06T17:06:26.733Z", "money_release_date": "2023-10-06T17:06:26.733Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "wasDebited": true }, - "revision": "a8bb3d95e4894f4d8cd85962", + "revision": "ec23ff6d72cc45648bf4491b", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75795,10 +55592,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 868.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", - "revision": "d8801f85c0144a9594745d46", + "revision": "73e1108a1b6e438a88f30919", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75814,24 +55611,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "0259ce4f4bb049c89f7b8d97", + "revision": "79997a48bf264192aa9e1f6a", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75839,10 +55624,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696611534552", - "revision": "d6acd4743bc6426cb4befc70", + "revision": "3bcdfb0f4eaa46b3a64290f3", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75858,18 +55643,9 @@ "total_amount": 321036, "id": "1696611534552", "history_id": "1696611534552", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-10-06T16:58:54.552Z", + "date_last_updated": "2023-10-06T16:58:54.552Z", + "date_of_expiration": "2023-10-06T16:58:54.552Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -75878,10 +55654,10 @@ "description": "Compra de 321.036,00 IVIP por 250,00 BRL", "status_detail": "accredited" }, - "revision": "707c020cef4242d288443e7a", + "revision": "c8850f5a6362430c97a6f40b", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75889,10 +55665,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c029e53d67dd4e4b835ea101", + "revision": "98bc66e92688471d8bc26a06", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75900,10 +55676,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "321a4187425a41488673575b", + "revision": "3d882a46ada74edcaa80e9e0", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75912,24 +55688,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "limitUsed": 0 }, - "revision": "4889157a71bc4ff6bae9a86a", + "revision": "ed4fd6cf96cf4b58bc90aa2d", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75940,24 +55704,12 @@ "dataModificacao": 1696067091160, "dateValidity": 1696067091189, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "balancesModificacao": "2023-10-09T03:00:00.000Z" }, - "revision": "d02b8e6820774373a1f6d093", + "revision": "3dd25e7c1b444186a9d8439e", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75965,10 +55717,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b117edaff4024699a6ca9a37", + "revision": "70650660a4f84c74a258f562", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -75977,24 +55729,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-26T17:17:31.115Z", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + ".val": "2023-10-26T17:17:31.115Z" }, - "revision": "b54ce885c2784de389d63e7b", + "revision": "f5e49415a6c74da0b569c74d", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76010,24 +55750,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "9cd160f416014fefa544fae1", + "revision": "705483e5a3f64ab28edec23a", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76035,10 +55763,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748651115", - "revision": "0001c3f0ffba41e7b7243706", + "revision": "785c73099afa42d9ad8acbb2", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76054,29 +55782,19 @@ "total_amount": 1000, "id": "1695748651115", "history_id": "1695748651115", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-09-26T17:17:31.115Z", + "date_last_updated": "2023-09-26T17:17:31.115Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "status_detail": "pending_waiting_payment" }, - "revision": "767ff2e4f12c4cd282b8df3f", + "revision": "3ac4d4381958474aa31a68ff", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76084,10 +55802,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", - "revision": "82b35f2fe6e5486ab7e23fa0", + "revision": "781b480978c144eb92c3c092", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76096,24 +55814,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-26T17:19:03.839Z", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + ".val": "2023-10-26T17:19:03.839Z" }, - "revision": "aa9ec8a77c3848a3a16261cf", + "revision": "5a1e2c8c116640f18046ffd3", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76129,24 +55835,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "373c5bdd59f34c8e9b5c83d0", + "revision": "458b096879634cfab1a147e3", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76154,10 +55848,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748743840", - "revision": "9dd591bec1044362bb2749e8", + "revision": "aa51f59373154644a7571989", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76173,29 +55867,19 @@ "total_amount": 1000, "id": "1695748743840", "history_id": "1695748743840", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-09-26T17:19:03.840Z", + "date_last_updated": "2023-09-26T17:19:03.840Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "status_detail": "pending_waiting_payment" }, - "revision": "9040a15b47ae4d50bd7ded9f", + "revision": "51fe1c2ca7a64864b3c1e37f", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76203,10 +55887,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", - "revision": "356e3ee1ea144613bba67ee1", + "revision": "4c0098d213894c309dbef80d", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76215,24 +55899,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-26T17:20:45.971Z", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + ".val": "2023-10-26T17:20:45.971Z" }, - "revision": "55d0635cc61448a79521818c", + "revision": "a329cf377f9e4915bc9955c2", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76248,24 +55920,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "5af40a21cf0043b2af14e9d9", + "revision": "6fc02a512b3347468a6e2219", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76273,10 +55933,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748845971", - "revision": "124d57f39e3b4d949c39292a", + "revision": "4221169d985543f0967eacdf", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76292,29 +55952,19 @@ "total_amount": 1000, "id": "1695748845971", "history_id": "1695748845971", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-09-26T17:20:45.971Z", + "date_last_updated": "2023-09-26T17:20:45.971Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "status_detail": "pending_waiting_payment" }, - "revision": "96b771f9c9c94802a326fc3d", + "revision": "255a920676e746df89d673e8", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76322,10 +55972,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", - "revision": "0de802a028934978a886b3ab", + "revision": "cd507ee669a84a18bcf8e935", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76333,10 +55983,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c3254fb1ad64407a88c8fa54", + "revision": "a38499ca93c540e9903c5f1d", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76344,10 +55994,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5eb6ff07a41645fe868cdf87", + "revision": "a99cdcd0ae3a4f868ef94905", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76356,24 +56006,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "limitUsed": 0 }, - "revision": "038afdd28dc2494e8a3b2411", + "revision": "1722d924f6fd4117a6bf6a48", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76384,24 +56022,12 @@ "dataModificacao": 1695748509301, "dateValidity": 1695748509557, "currencyType": "USD", - "balancesModificacao": "2023-09-28T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "balancesModificacao": "2023-09-28T03:00:00.000Z" }, - "revision": "a0fe3d2dcfbb4efe9ec1be0a", + "revision": "82bc669ed792487c8a8816a8", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76409,10 +56035,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "11152936f7384ab9afec8ff4", + "revision": "eb253bef1e70405c9e34b7c4", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76420,24 +56046,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "7a5f3ca7d6eb43d79daa1604", + "revision": "f63af2d936814649b2bcba94", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76452,18 +56066,9 @@ "total_amount": 200, "history_id": 1678035077732, "id": 1678035077732, - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-03-05T16:51:17.732Z", + "date_last_updated": "2023-03-06T18:57:08.692Z", + "date_of_expiration": "2023-04-04T16:51:17.732Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -76473,10 +56078,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f168dbd24c9c4ee7ad749705", + "revision": "352874c35b264e45bd83207a", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76484,10 +56089,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "f1ae43ae9b2248e98c5ab1ab", + "revision": "133b8cf0fefb42ceb7c86d1e", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76505,24 +56110,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "86a841d5fa1946539723022d", + "revision": "6115c7e3e9dd449d8a1b1358", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76538,18 +56131,9 @@ "original_amount": 1426241, "total_amount": 1426241, "id": 1678163430853, - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-03-07T04:30:30.853Z", + "date_last_updated": "2023-03-07T04:30:30.853Z", + "date_of_expiration": "2023-03-07T04:30:30.853Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76558,10 +56142,10 @@ "history_id": 1678163430853, "description": "Compra de 1426241 IVIP por 200 BRL" }, - "revision": "5e4df7a4d68d4a85ac723363", + "revision": "d9f9dd0df7ed4274813e91b1", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76569,24 +56153,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "25a81f15311145c09ac82e9d", + "revision": "b5fd14df53364b8ba3834874", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76601,18 +56173,9 @@ "total_amount": 200, "history_id": 1681136191198, "id": 1681136191198, - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-04-10T14:16:31.198Z", + "date_last_updated": "2023-04-10T14:36:21.704Z", + "date_of_expiration": "2023-05-10T14:16:31.198Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -76622,10 +56185,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d03cf0b99bf34b39b6d43378", + "revision": "566630a8428b40b7b114168f", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76633,10 +56196,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "5630283e1b4b478fa56b8852", + "revision": "61f45396dd3946759609f224", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76654,24 +56217,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "fb8acb28bc8347e2bd5a0410", + "revision": "46ea8c5038ea4e2a94951efa", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76687,18 +56238,9 @@ "original_amount": 976097, "total_amount": 976097, "id": 1684632748749, - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-05-21T01:32:28.749Z", + "date_last_updated": "2023-05-21T01:32:28.749Z", + "date_of_expiration": "2023-05-21T01:32:28.749Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76707,10 +56249,10 @@ "history_id": 1684632748749, "description": "Compra de 976.097,00 IVIP por 200,00 BRL" }, - "revision": "6131b0a7a5364db187b0a231", + "revision": "a1618dececf54b249c1e122b", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76718,24 +56260,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "16e531b2c24f49d0859007ae", + "revision": "f2cc966f0234422e85466ede", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76750,27 +56280,18 @@ "total_amount": 1200, "history_id": 1685109385732, "id": 1685109385732, - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-05-26T13:56:25.732Z", + "date_last_updated": "2023-05-26T13:56:25.732Z", + "date_of_expiration": "2023-06-25T13:56:25.732Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "65a1704a1ff84a3884a29107", + "revision": "a7fd51f84e4e4be3a7de7ab1", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76778,10 +56299,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "377e0b4fd21a4f90aa52b39f", + "revision": "2d802a26da6542d5bd4db411", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76789,24 +56310,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "2e7797fdba8646478df8bcee", + "revision": "f3784c504a2243a29c25edf8", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76821,27 +56330,18 @@ "total_amount": 1200, "history_id": 1685109442881, "id": 1685109442881, - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-05-26T13:57:22.881Z", + "date_last_updated": "2023-05-26T13:57:22.881Z", + "date_of_expiration": "2023-06-25T13:57:22.881Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "31b78136a05c4d0097e3be74", + "revision": "18266001dc70488a9f0dfe10", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76849,10 +56349,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "2b6d4d804aed4ba7b3176cef", + "revision": "ead361ab7ed74317add041f1", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76860,24 +56360,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - } + "costs": [] }, - "revision": "d0e88bc5122d491dacdfca69", + "revision": "8a0209c366654e1585490a40", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76892,18 +56380,9 @@ "total_amount": 1200, "history_id": 1685213653014, "id": 1685213653014, - "date_created": { - "type": 6, - "value": 1701459383519 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383519 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383519 - }, + "date_created": "2023-05-27T18:54:13.014Z", + "date_last_updated": "2023-05-29T12:44:18.194Z", + "date_of_expiration": "2023-06-26T18:54:13.014Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -76913,10 +56392,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ec716d77276e4c7781a0ad7d", + "revision": "1063966e24fc48f592f011bd", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76924,10 +56403,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "1d9ffda3cd6146b08068c4e6", + "revision": "1b0809e3fd6b4a66bb7dcebc", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76945,24 +56424,12 @@ "installment_amount": 2402000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - } + "costs": [] }, - "revision": "e2de183f6a444517b951ce3e", + "revision": "44e38ac713564db2917904ab", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -76977,18 +56444,9 @@ "original_amount": 2402000, "total_amount": 2402000, "id": 1685666059762, - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - }, + "date_created": "2023-06-02T00:34:19.762Z", + "date_last_updated": "2023-06-02T00:34:19.762Z", + "date_of_expiration": "2024-06-02T00:34:19.762Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76996,10 +56454,10 @@ "currency_id": "IVIP", "history_id": 1685666059762 }, - "revision": "3ea2ba5192b94fcab3619371", + "revision": "df68cf84cf084de2943b1db4", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -77007,10 +56465,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.402.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "877a930897ae46109286aaad", + "revision": "233bc13942234705bd98d4f1", "revision_nr": 1, - "created": 1701459383519, - "modified": 1701459383519 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -77028,24 +56486,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - } + "costs": [] }, - "revision": "333b5c27150242deb9eef41d", + "revision": "ed74ce62f41543768dbc583a", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -77061,18 +56507,9 @@ "original_amount": 4214736, "total_amount": 4214736, "id": 1685744731387, - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - }, + "date_created": "2023-06-02T22:25:31.387Z", + "date_last_updated": "2023-06-02T22:25:31.387Z", + "date_of_expiration": "2023-06-02T22:25:31.387Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -77081,10 +56518,10 @@ "history_id": 1685744731387, "description": "Compra de 4.214.736,00 IVIP por 1.200,00 BRL" }, - "revision": "4c783286afc04b7f9f112761", + "revision": "d1a89d3f689948389c320109", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -77102,24 +56539,12 @@ "installment_amount": 4000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - } + "costs": [] }, - "revision": "d7d3b2fced414b219bbe08ed", + "revision": "4809e73dfc344665a605ac08", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -77134,18 +56559,9 @@ "original_amount": 4000000, "total_amount": 4000000, "id": 1688521364022, - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - }, + "date_created": "2023-07-05T01:42:44.022Z", + "date_last_updated": "2023-07-05T01:42:44.022Z", + "date_of_expiration": "2023-08-05T01:42:44.022Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -77153,10 +56569,10 @@ "currency_id": "IVIP", "history_id": 1688521364022 }, - "revision": "dcd833a999274912a6e7f9fe", + "revision": "56400934aa104b84a941659e", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -77164,10 +56580,10 @@ "content": { "type": "STRING", "value": "Investimento de 4.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/4/2023", - "revision": "15b51c4f81ac4ef697c4c33a", + "revision": "db6907cdb99f4b3ea904c12d", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -77183,24 +56599,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - } + "costs": [] }, - "revision": "268b948b372044af9d937725", + "revision": "86264936243a4553818d35ce", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -77208,10 +56612,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691199857902", - "revision": "d26629fa3c32423b9c69f5ab", + "revision": "9b6ac720729742faa666a039", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -77226,18 +56630,9 @@ "total_amount": 4080000, "id": 1691199857902, "history_id": 1691199857902, - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - }, + "date_created": "2023-08-05T01:44:17.902Z", + "date_last_updated": "2023-08-05T01:44:17.902Z", + "date_of_expiration": "2023-08-05T01:44:17.902Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -77245,10 +56640,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "abf1535515954d10bfb09851", + "revision": "44dd0b9642ed4d459c2021c7", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -77256,10 +56651,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 4.000.000,00 IVIP com um rendimento de +80.000,00 IVIP (2,00%)", - "revision": "242482dc93604422a13b57ed", + "revision": "cc0051c42bd6472c8e5296dd", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509574, + "modified": 1701463509574 } }, { @@ -77269,24 +56664,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 124986.6534, - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - } + "amount": 124986.6534 }, - "revision": "960f08b451f44aaa87929da2", + "revision": "6c1702278d7c4e35bd78d1eb", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77301,24 +56684,12 @@ "installment_amount": 4295074, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - } + "financial_institution": "ivipcoin" }, - "revision": "1308dcb1d3b746afbe86c889", + "revision": "6af2fd7c22974a388742fdf4", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77326,10 +56697,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691271945589", - "revision": "2939043234f142c1bd645768", + "revision": "3abc1d911c1044b492892552", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77337,10 +56708,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "1c09f44108274222bed729fd", + "revision": "b467b355518e420498d10796", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77355,18 +56726,9 @@ "total_amount": 4166221.78, "id": 1691271945589, "history_id": 1691271945589, - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - }, + "date_created": "2023-08-05T21:45:45.589Z", + "date_last_updated": "2023-08-16T14:27:56.970Z", + "date_of_expiration": "2023-08-05T21:45:45.589Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -77377,10 +56739,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "abe6f657570b47a1a39c4911", + "revision": "b03d264e0e00499fad689485", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77388,10 +56750,10 @@ "content": { "type": "STRING", "value": "Saque de 4.166.221,78 IVIP para a carteira 0x13d16B24c3293ABAD823e83A490982c0906508A8", - "revision": "2ea09c05a8a44f5e98e5c308", + "revision": "cab06521cfe5460f831bcd43", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77401,24 +56763,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 124986.6534, - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - } + "amount": 124986.6534 }, - "revision": "7454bf3d482648eeb1c8c3e5", + "revision": "830e8756edfe42718c5ded98", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77433,24 +56783,12 @@ "installment_amount": 4295074, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - } + "financial_institution": "ivipcoin" }, - "revision": "355e6dec8e1640f0803144d4", + "revision": "68ae246957e44ce0878ea0ef", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77458,10 +56796,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691437746780", - "revision": "5cfcb6e88136475690240130", + "revision": "fbb37134b9134b199c3ba811", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77469,10 +56807,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "4a87e87b0fe74ded9a90795b", + "revision": "a2f66cacefc8485fa4c85bf5", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77487,18 +56825,9 @@ "total_amount": 4166221.78, "id": 1691437746780, "history_id": 1691437746780, - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - }, + "date_created": "2023-08-07T19:49:06.780Z", + "date_last_updated": "2023-08-08T15:39:46.843Z", + "date_of_expiration": "2023-08-07T19:49:06.780Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -77510,10 +56839,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "6f6987686b8c426084bb8320", + "revision": "9eb54a472a7e4113bc1d4337", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77521,10 +56850,10 @@ "content": { "type": "STRING", "value": "Saque de 4.166.221,78 IVIP para a carteira 0x13d16B24c3293ABAD823e83A490982c0906508A8", - "revision": "3736b32721ad4faea4dee15a", + "revision": "25c59aaef49b47958a9547d2", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77532,10 +56861,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6bae64ab5a834aa58ecaba0e", + "revision": "2e212ee5336b4258bc860b79", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77543,10 +56872,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0eca7145a0c3426d9e8da69c", + "revision": "a9a555a06f9d4477a8e63821", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77557,24 +56886,12 @@ "approvedLimit": 1000, "limitUsed": 0, "analysisRequested": "2023-03-18T19:22:30.161Z", - "lastReview": "2023-03-19T21:25:40.619Z", - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - } + "lastReview": "2023-03-19T21:25:40.619Z" }, - "revision": "ecf5895cfc0a4e7f9c216a36", + "revision": "bec79f12f2ce4860bb6be364", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77586,24 +56903,12 @@ "dateValidity": 1679040303242, "totalValue": 14.089318085490447, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - } + "balancesModificacao": "2023-10-06T03:00:00.000Z" }, - "revision": "972ac74a6d4a48df85e27f49", + "revision": "be8eb775d72e422b92a8e186", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77611,10 +56916,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4dbb859adc484962aa8833bd", + "revision": "2c94e3b4e47946feb5e692ad", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77622,24 +56927,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - } + "costs": [] }, - "revision": "c90863404a4344c4a36388bc", + "revision": "5f1bb8406a9d4318ab6f5386", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77654,18 +56947,9 @@ "total_amount": 300, "history_id": 1677939492133, "id": 1677939492133, - "date_created": { - "type": 6, - "value": 1701459383520 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383520 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383520 - }, + "date_created": "2023-03-04T14:18:12.133Z", + "date_last_updated": "2023-03-13T13:30:40.045Z", + "date_of_expiration": "2023-04-03T14:18:12.133Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -77673,10 +56957,10 @@ "money_release_date": "2023-03-13T13:30:40.045Z", "money_release_status": "rejected" }, - "revision": "36b52ddfacee439397917e80", + "revision": "e018e0460b69412999e5e720", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77684,10 +56968,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0858.6972.0472.7301-10", - "revision": "8a9977cb4927444a80c28c38", + "revision": "94269999a8ab48269927ff44", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77695,10 +56979,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a64b9015be294d4ebf05efb4", + "revision": "254a70151af442d9ac60b659", "revision_nr": 1, - "created": 1701459383520, - "modified": 1701459383520 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77706,10 +56990,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "84ed228e695b4d27a305f7f7", + "revision": "011c7c35968a4e448bc04600", "revision_nr": 1, - "created": 1701459383521, - "modified": 1701459383521 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77718,24 +57002,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383521 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383521 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383521 - } + "limitUsed": 0 }, - "revision": "0bf199b8520242a6829ad630", + "revision": "2da8fc50fb4e49868f6c894b", "revision_nr": 1, - "created": 1701459383521, - "modified": 1701459383521 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77746,24 +57018,12 @@ "dataModificacao": 1677772587436, "dateValidity": 1678142633851, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383521 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383521 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383521 - } + "currencyType": "USD" }, - "revision": "4e49f13cc8144202a5eef0ea", + "revision": "b4218656d59e40b4a5d0423c", "revision_nr": 1, - "created": 1701459383521, - "modified": 1701459383521 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77773,24 +57033,12 @@ "value": { "available": "1370911.00000000", "symbol": "IVIP", - "value": 901.85, - "date_created": { - "type": 6, - "value": 1701459383521 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383521 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383521 - } + "value": 901.85 }, - "revision": "eee912b620fb45ad9429b6e8", + "revision": "306e4df725a940f4841cc5fd", "revision_nr": 1, - "created": 1701459383521, - "modified": 1701459383521 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77798,10 +57046,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "663b9a8ec3ff456585c5fb04", + "revision": "9e343c9dfe5b4655ae05ec33", "revision_nr": 1, - "created": 1701459383521, - "modified": 1701459383521 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77809,24 +57057,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383521 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383521 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383521 - } + "costs": [] }, - "revision": "7e8a62e7bfad4f72967f685b", + "revision": "9b2689966872450e9fbd188b", "revision_nr": 1, - "created": 1701459383521, - "modified": 1701459383521 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77841,18 +57077,9 @@ "total_amount": 140, "history_id": 1678097305816, "id": 1678097305816, - "date_created": { - "type": 6, - "value": 1701459383521 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383521 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383521 - }, + "date_created": "2023-03-06T10:08:25.816Z", + "date_last_updated": "2023-03-07T18:47:04.970Z", + "date_of_expiration": "2023-04-05T10:08:25.816Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -77862,10 +57089,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "bbafe9f17dec4a27a4dcbc6b", + "revision": "aed5b7ff2d3848a3b321d83a", "revision_nr": 1, - "created": 1701459383521, - "modified": 1701459383521 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77873,10 +57100,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 140,00 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "57cac0f594b9466dad342d55", + "revision": "0d52b12895c34e888556d597", "revision_nr": 1, - "created": 1701459383521, - "modified": 1701459383521 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77886,24 +57113,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 1.00%", - "amount": 1.1111, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "amount": 1.1111 }, - "revision": "0be078be376748d2a173b3b6", + "revision": "2b7c69d2cbeb42d6bf1ce3d0", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77911,10 +57126,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ea0d6c79286d4495931d176e", + "revision": "f567b93b35d044bda9c0bb8c", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77922,24 +57137,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "zBCfpF dcGeyDOq lplNs", - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "d48e93f5e229448488343d5d", + "revision": "89ca05e859b24a5d9e43edcc", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77947,10 +57150,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7b17397308a248dd890f44c6", + "revision": "ac91e6852d424d14961695ac", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77962,24 +57165,12 @@ "net_received_amount": 0, "total_paid_amount": 112.22, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "installment_amount": 0 }, - "revision": "383a66a6c328472c8e9b66e9", + "revision": "f816ae15838a45f6aa5046fa", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77987,10 +57178,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406112.225802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13123227786304C4AC", - "revision": "c64ca0da641447938fb5ed67", + "revision": "0c1b3827d69344339b9c846e", "revision_nr": 1, - "created": 1701459383521, - "modified": 1701459383521 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -77998,10 +57189,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1312322778/ticket?caller_id=1310149122&hash=6c5d5276-a6c2-41fd-b3ac-10aff2badfc5", - "revision": "554eb129a0c9453da4f41ffc", + "revision": "03ec7810f99d4821b65038f1", "revision_nr": 1, - "created": 1701459383521, - "modified": 1701459383521 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78009,10 +57200,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI3klEQVR42u3dSY7kNhAFUN5A97+lbiDDC7uUjB9UeoDhpl4uGo1SpfRUu48YOK5f6HMOWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWtp/Xzvmz/H7z44/Lxx//t4fF37//u3Cz13u/zvH+Hzi+Lnp/QYfFyYGLS0tLS0tLS0tLS3tS7TTY39u8vPYyitvWt/qfuHjLtOF+98hqWhpaWlpaWlpaWlpaV+gnQJk+lb6vSkT3n+WvvvjXt2vMGhpaWlpaWlpaWlpaV+qLVW2q8TL6fNUzvsoAN6NtLS0tLS0tLS0tLS0tDEdtjeeyn4juKfy4BVS5Ph8A1paWlpaWlpaWlpa2jdrEz5dnebYSuluQk0vdDw1a/69HlFaWlpaWlpaWlpaWtpfXdtuKflv//mnO1VoaWlpaWlpaWlpaWl/UW3+nJ+NlOciBLYpsp2ku++WnLZMZgstLS0tLS0tLS0tLe3e2masLe19/NHmBPrhKd2ZR6kRtkcF9CmSlpaWlpaWlpaWlpZ2N23aL5J3PI774pH70Fs7IZcOZGuH447+pDZaWlpaWlpaWlpaWtqdtSUYtudc192SaSQuhcXFnyAd4XasMi8tLS0tLS0tLS0tLe1u2lRRW5/Alrsz6xHXU51vKh6WrsvmpG1aWlpaWlpaWlpaWtrdtan1Mh1sPcXLactkul8edUtdnEdgHLS0tLS0tLS0tLS0tC/Rlum1a5EESylw5O3/7eHZ+RtniJcXLS0tLS0tLS0tLS3tS7Tf37NNmx/PycNxzYlupcfzy8xLS0tLS0tLS0tLS0u7lfb8zITNZsdyzzQcd4UdJnXDSeq1TKVFWlpaWlpaWlpaWlra92jTRNsi9dWXfGrMXD2jPG3Q0tLS0tLS0tLS0tK+S1vJpc1yMqYuyXPEVs5UMiy/cnUL/WlpaWlpaWlpaWlpad+izUmwdk6mzSVTiW+6cDemibsRDml7SpG0tLS0tLS0tLS0tLQ7a8tA2rm83ZlfqM2JJU+eo57IfdLS0tLS0tLS0tLS0r5Qe5TRtMldHnGW9yu3GmGwbnrklc/XpqWlpaWlpaWlpaWlfY82VdRKDa4uLZm6JMtLTiv76zhdyZjtcdu0tLS0tLS0tLS0tLS7a2t8W6fIdhlJ6cSsqbT8lY6/tqWElpaWlpaWlpaWlpZ2U225XUqCU6/lFU5MS+RrET5TT+ZziqSlpaWlpaWlpaWlpd1KW9xH0T61XqZz19Jp2VPX5ciFvUKmpaWlpaWlpaWlpaV9gbZU1JrP9Ox7JqzNle2R2dOB2qkJk5aWlpaWlpaWlpaW9p3aUaLfVABMwbDEwdWtUtvmoqpIS0tLS0tLS0tLS0v7Cu1ZUl9ZDXk8B8gRDsWe/pkuXOGRU58mLS0tLS0tLS0tLS3tC7R5mG2UXDddaL9WTsuuS/4nT3sDWlpaWlpaWlpaWlral2gnwNWdX308LZi8l/iaNss8bFcn6brqHi0tLS0tLS0tLS0t7X7afGD1tFpk5S7GdkvJFENXufOhFklLS0tLS0tLS0tLS7uV9lo8ewp37TRcToLtS448/lZ6N2lpaWlpaWlpaWlpaV+hTZ2TI5+C/fR7I38jle7Wh7R9k3lpaWlpaWlpaWlpaWl304b4Npf42mQ5fSPdKrdUXqU788uuS1paWlpaWlpaWlpa2l205XDqtFXkzLI8IVej6XT7p2j6vFOFlpaWlpaWlpaWlpZ2I23+pNR3fpbfRoiXzZL/e4nvCGGxHgFAS0tLS0tLS0tLS0v7Jm07kLZaXzJlwp/vtjso0ztP71cCJC0tLS0tLS0tLS0t7Qu0pX2y7hfJWa+p1eXCXoqNV64qhk5MWlpaWlpaWlpaWlra7bX35xxdia8ekZbOU0uvVjosj8VW/2V1j5aWlpaWlpaWlpaWdj9tkpUy3Xhyp57MUiOs03UlVH7ZI0pLS0tLS0tLS0tLS7uV9gyyI6TIa7mHJDVXtk2YKZ+OsvWElpaWlpaWlpaWlpb2Fdq0c2QKd4uz067uiOtzMVO3LiNOG05oaWlpaWlpaWlpaWl31yZ3+7BFc2WTLMPOkVhGvL/9V1v9aWlpaWlpaWlpaWlp99Gmk9VWvZZp1WS6UEbdVmN3U3mQlpaWlpaWlpaWlpb2PdoS6abbnTlAdgv4x7RzJN0vl/PSiB0tLS0tLS0tLS0tLe2rtO0c2zTMVtoir26Z5HqwrjmLLfyMlpaWlpaWlpaWlpZ2Z+0EKMZRCnvJXebdkqfWDct0Xa0g0tLS0tLS0tLS0tLS7q+tnY5tYa9Mr9XwuTgtu34tHQHw0CNKS0tLS0tLS0tLS0u7m7b0Rq4G3HJz5fis+J0lWebGzNFt9T9oaWlpaWlpaWlpaWnfpA2hbZRaXbPfvxQFz26wbpRmzdyEmT60tLS0tLS0tLS0tLSv0I5P4yjDbKUjsj4nJdAUL8tz616ThxRJS0tLS0tLS0tLS0u7kTYnxlqDm8bVcqhMpcD6oHRIW15QQktLS0tLS0tLS0tL+x5tsy0krYsspbta8Xuamqu7Tr7uEaWlpaWlpaWlpaWlpd1Nmz7rPSTpTLQSIM8yCJen686n8ElLS0tLS0tLS0tLS7u7to1+04RcIrdNk3kZSUqRTYvmc+alpaWlpaWlpaWlpaXdR9tkvSnclaJbzZ2p9pe6MxP+6xRJS0tLS0tLS0tLS0u7pbbEwVG6Lstc3BVWi9T2yYJqTgRYRlhaWlpaWlpaWlpaWtqXakdosxx5+0g+2PocTVxNu06+r+7R0tLS0tLS0tLS0tK+RXt0Z2TXUbdp6WR7BEC5ywhnAxy0tLS0tLS0tLS0tLSv0y7wIz92emI7EpcC5Ho47jlF0tLS0tLS0tLS0tLSbqZNlbwp4U2yUfLkInw2o3P5DeqGSlpaWlpaWlpaWlpa2t21//8PLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLe2/pv0Nc/R6xtt85A0AAAAASUVORK5CYII=", - "revision": "2f5ce70ffe9a4ca5872d1b3b", + "revision": "0dc8078956a546e882627a6f", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78020,10 +57211,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "d395519642c74b06b9701be6", + "revision": "79673fbcf5654452a582783e", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78038,28 +57229,19 @@ "total_amount": 112.22, "history_id": 1679947244258, "id": 1312322778, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-03-27T16:00:45.050-04:00", + "date_last_updated": "2023-03-27T16:00:45.050-04:00", + "date_of_expiration": "2023-03-28T16:00:44.758-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "b4555177f4df449bb4509cb2", + "revision": "e80d4451cf7a4266a9267adc", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78067,10 +57249,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 111,11 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "3054a8779a72485e9196d301", + "revision": "92764de447a24931afbcde9b", "revision_nr": 1, - "created": 1701459383521, - "modified": 1701459383521 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78088,24 +57270,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "1ec36b97ede34c719f120b21", + "revision": "dc3148e006e34baa83d3f587", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78121,18 +57291,9 @@ "original_amount": 500004, "total_amount": 500004, "id": 1680260155565, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-03-31T10:55:55.565Z", + "date_last_updated": "2023-03-31T10:55:55.565Z", + "date_of_expiration": "2023-03-31T10:55:55.565Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78141,10 +57302,10 @@ "history_id": 1680260155565, "description": "Compra de 500.004,00 IVIP por 91,56 BRL" }, - "revision": "f016189fced14a26a70d9f24", + "revision": "463f447a8e8d4c06ad116f38", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78162,24 +57323,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "33b3c1b723634e2191cc2c16", + "revision": "7a9d02b0a7184e659dbdc1c3", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78195,18 +57344,9 @@ "original_amount": 267396, "total_amount": 267396, "id": 1680391431083, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-04-01T23:23:51.083Z", + "date_last_updated": "2023-04-01T23:23:51.083Z", + "date_of_expiration": "2023-04-01T23:23:51.083Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78215,10 +57355,10 @@ "history_id": 1680391431083, "description": "Compra de 267.396,00 IVIP por 48,44 BRL" }, - "revision": "638b022ee66b4f2c8834e039", + "revision": "651cefc019cb43e2b1709083", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78226,24 +57366,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "154795b36ece4da28b5fe1d4", + "revision": "c0970988979243d98afd9b29", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78258,18 +57386,9 @@ "total_amount": 99.99, "history_id": 1683913607250, "id": 1683913607250, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-05-12T17:46:47.250Z", + "date_last_updated": "2023-05-12T19:04:35.703Z", + "date_of_expiration": "2023-06-11T17:46:47.250Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -78279,10 +57398,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e763a98cfb164d8690a6a744", + "revision": "422636aaaed5405d90628501", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78290,10 +57409,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 99,99 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "105ba098001b4019b4594c6d", + "revision": "4ef8ea384f304c7e930292d5", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78311,24 +57430,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "d993eae916064249a939ea99", + "revision": "97a1f10648e14bbdb2eea019", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78344,18 +57451,9 @@ "original_amount": 487512, "total_amount": 487512, "id": 1684628885106, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-05-21T00:28:05.106Z", + "date_last_updated": "2023-05-21T00:28:05.106Z", + "date_of_expiration": "2023-05-21T00:28:05.106Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78364,10 +57462,10 @@ "history_id": 1684628885106, "description": "Compra de 487.512,00 IVIP por 99,99 BRL" }, - "revision": "4e701008bb2a49158a1a4b8e", + "revision": "cafd9b1ba32d4b6f80789f3f", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78376,24 +57474,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-30T16:52:17.210Z", - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + ".val": "2023-08-30T16:52:17.210Z" }, - "revision": "6f960ccf60aa415498e25855", + "revision": "3fd4d1bce28f4047bc8f011b", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78409,24 +57495,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "531f76e8f6744f89b463daaa", + "revision": "574382a448b941889a284b8f", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78434,10 +57508,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1690822337211", - "revision": "20b06751671843ce9cb513a1", + "revision": "a0cef874863f485db2c12245", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78452,29 +57526,19 @@ "total_amount": 20, "id": 1690822337211, "history_id": 1690822337211, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-07-31T16:52:17.211Z", + "date_last_updated": "2023-07-31T16:52:17.211Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "status_detail": "pending_waiting_payment" }, - "revision": "332c758ffb2e477794b2ff96", + "revision": "8c26fc9c639e41fdb203faa5", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78482,10 +57546,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "7169bd5c91354a42821d62e0", + "revision": "36f0fef4869d428bb4d8ecd9", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78494,24 +57558,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-30T16:53:59.890Z", - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + ".val": "2023-08-30T16:53:59.890Z" }, - "revision": "20cc7becd3564f73b5e5d228", + "revision": "b5c5339bb37d47609280d877", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78527,24 +57579,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "8e84589f78a24d4885aa37cf", + "revision": "8daeb26bb0ca42458ca820d4", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78552,10 +57592,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1690822439890", - "revision": "f91142c6b8514246bd8c4db1", + "revision": "5a67b97fecd94f51a3dafa69", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78570,14 +57610,8 @@ "total_amount": 100, "id": 1690822439890, "history_id": 1690822439890, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-07-31T16:53:59.890Z", + "date_last_updated": "2023-07-31T21:00:12.866Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78587,16 +57621,12 @@ "date_approved": "2023-07-31T21:00:12.866Z", "money_release_date": "2023-07-31T21:00:12.866Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "wasDebited": true }, - "revision": "e010a7511c89438d840d7fdb", + "revision": "1d622761d01e4e179b4c064e", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78604,10 +57634,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100,00 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "77a54700230342ae809bb68e", + "revision": "44d7d05a4ffe4dc5ae4fa1c4", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78623,24 +57653,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "3604986354f3434093b0cab0", + "revision": "3398da1fd74f4aad98cea812", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78648,10 +57666,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1695782499707", - "revision": "ed2c199c36a645428811e590", + "revision": "24f0feddb3624b48b440fd75", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78667,18 +57685,9 @@ "total_amount": 115999, "id": "1695782499707", "history_id": "1695782499707", - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-09-27T02:41:39.707Z", + "date_last_updated": "2023-09-27T02:41:39.707Z", + "date_of_expiration": "2023-09-27T02:41:39.707Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -78687,10 +57696,10 @@ "description": "Compra de 115.999,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "19c6d442cb9a4e8b9e00b738", + "revision": "83e9c8e89d4a4f459e21497f", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78698,10 +57707,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3424e6e19d504c22bc2f2193", + "revision": "738bc986c517426389daabea", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78709,10 +57718,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b0695f30149b4569abccb150", + "revision": "2a21d07e40034bf7ba0431e5", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78721,24 +57730,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "limitUsed": 0 }, - "revision": "e5b7cfea2ab644afb41cd5b0", + "revision": "434dd74a747445de94113a5d", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78750,24 +57747,12 @@ "dateValidity": 1678984144008, "totalValue": 47.38, "currencyType": "USD", - "balancesModificacao": "2023-10-10T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "balancesModificacao": "2023-10-10T03:00:00.000Z" }, - "revision": "b4ba21f7adf84ef4b04d17a7", + "revision": "ce37bab7b10b4f6684b47875", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78777,24 +57762,12 @@ "value": { "available": "16470.00000000", "symbol": "IVIP", - "value": 4.22, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "value": 4.22 }, - "revision": "79066ddc69384e278767b6d4", + "revision": "5f778212eb1c4ff3a1daffe5", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78802,10 +57775,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "293c0bb9ade342e48b69ceac", + "revision": "d17dc347739948eaa9e6559f", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78813,24 +57786,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "11e7182994ef4b95aa0822d7", + "revision": "583ffd92c0e6422eb51e2b38", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78845,18 +57806,9 @@ "total_amount": 500, "history_id": 1684164750598, "id": 1684164750598, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-05-15T15:32:30.598Z", + "date_last_updated": "2023-05-15T21:20:52.543Z", + "date_of_expiration": "2023-06-14T15:32:30.598Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -78866,10 +57818,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c9af64f2593f4deca6be3f6b", + "revision": "5a9470a07810497abb284f9b", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78877,10 +57829,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "cb1bf88762bd4b5aa1d0c12b", + "revision": "6d50d33ed51a4b54aeb1a75c", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78888,24 +57840,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "1356ba20aef040febaa85578", + "revision": "44d98e0afec945de9a4cd386", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78920,27 +57860,18 @@ "total_amount": 1800, "history_id": 1684165632184, "id": 1684165632184, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-05-15T15:47:12.184Z", + "date_last_updated": "2023-05-15T15:47:12.184Z", + "date_of_expiration": "2023-06-14T15:47:12.184Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "9349e88fda66451bbe3f071a", + "revision": "1a5cf9c7e37641a1bd232002", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78948,10 +57879,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.800,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "cc6875a80cb240839fe4d5e9", + "revision": "8f389ad37e9843349e5045e6", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78959,24 +57890,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "ee307077f2744f4d87fde9a2", + "revision": "e2ffa5c50910426cb219a2d5", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -78991,18 +57910,9 @@ "total_amount": 150, "history_id": 1684452112873, "id": 1684452112873, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-05-18T23:21:52.873Z", + "date_last_updated": "2023-05-18T23:26:54.072Z", + "date_of_expiration": "2023-06-17T23:21:52.873Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -79012,10 +57922,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "15da562abf9147658df3f422", + "revision": "d5ec719165d04e748dd8897b", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -79023,10 +57933,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "9519e5ec79b3478cad36a066", + "revision": "0ec345c829ba49458f789cbb", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -79034,24 +57944,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "9ea78ddeee5847bcb8a8f9fe", + "revision": "e09018ae3c3945bd9c26d043", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -79066,18 +57964,9 @@ "total_amount": 500, "history_id": 1684519388805, "id": 1684519388805, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-05-19T18:03:08.805Z", + "date_last_updated": "2023-05-20T04:17:58.179Z", + "date_of_expiration": "2023-06-18T18:03:08.805Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -79085,10 +57974,10 @@ "money_release_date": "2023-05-20T04:17:58.179Z", "money_release_status": "rejected" }, - "revision": "010b0aa5641647358bf774f1", + "revision": "c4d43666b3514d7f96426d3c", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -79096,10 +57985,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "cd6cdf2531b04ab38dad0398", + "revision": "8e1b98e304f64eb2930dc7d3", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -79107,24 +57996,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "9b5cf1b4aef64adfb2579cbc", + "revision": "606617e37eec42fdb8b72777", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -79139,18 +58016,9 @@ "total_amount": 950, "history_id": 1684538973500, "id": 1684538973500, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-05-19T23:29:33.500Z", + "date_last_updated": "2023-05-20T04:08:22.071Z", + "date_of_expiration": "2023-06-18T23:29:33.500Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -79158,10 +58026,10 @@ "money_release_date": "2023-05-20T04:08:22.071Z", "money_release_status": "rejected" }, - "revision": "2cba83f74bfc4a2bbc0e122a", + "revision": "c5208b13737d4b4c82e7415f", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -79169,10 +58037,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "59d7236fb9ff42468a56ef98", + "revision": "d108374ddb554f8e8c0bc95b", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -79180,24 +58048,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "3bc4f90f62e34cbf8142712c", + "revision": "833d7405beb046048cc4df03", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -79212,18 +58068,9 @@ "total_amount": 950, "history_id": 1684540522383, "id": 1684540522383, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-05-19T23:55:22.383Z", + "date_last_updated": "2023-05-20T21:38:33.877Z", + "date_of_expiration": "2023-06-18T23:55:22.383Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -79231,10 +58078,10 @@ "money_release_date": "2023-05-20T21:38:33.877Z", "money_release_status": "rejected" }, - "revision": "62576196492b48a69e1d0eb4", + "revision": "ca757658e16e4832809c196d", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -79242,10 +58089,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "b22c9c64573140e0838a5d84", + "revision": "110aec9be9ce4d49a3aacb94", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -79253,24 +58100,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "8f2d471aa8b0474c9a2b8113", + "revision": "11b57443b45d4455b62c6802", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -79285,18 +58120,9 @@ "total_amount": 950, "history_id": 1684589302647, "id": 1684589302647, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-05-20T13:28:22.647Z", + "date_last_updated": "2023-05-20T14:54:06.380Z", + "date_of_expiration": "2023-06-19T13:28:22.647Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -79306,10 +58132,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9a61ac52cdd941aa819301f7", + "revision": "c998fc4a464f4ed1b17e083a", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -79317,10 +58143,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "1d0a600d45fa4e4c9adb9966", + "revision": "2a51557246f84cda8bb69aa2", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509575, + "modified": 1701463509575 } }, { @@ -79338,24 +58164,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "6590b20449474dbcaefe05dc", + "revision": "78000884a3064cae94a95dc5", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79371,18 +58185,9 @@ "original_amount": 7793170, "total_amount": 7793170, "id": 1684624236329, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-05-20T23:10:36.329Z", + "date_last_updated": "2023-05-20T23:10:36.329Z", + "date_of_expiration": "2023-05-20T23:10:36.329Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -79391,10 +58196,10 @@ "history_id": 1684624236329, "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" }, - "revision": "8fcf517d69714303a09c6cfa", + "revision": "3545a42ebc77451389fc924c", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79412,24 +58217,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "5b16ca3455c14c26b61ed776", + "revision": "934c4ee98cfc406fb5efaf06", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79445,18 +58238,9 @@ "original_amount": 160, "total_amount": 160, "id": 1684624348122, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-05-20T23:12:28.122Z", + "date_last_updated": "2023-05-20T23:12:28.122Z", + "date_of_expiration": "2023-05-20T23:12:28.122Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -79464,10 +58248,10 @@ "currency_id": "BRL", "history_id": 1684624348122 }, - "revision": "b262cf21f8104bae8964c57a", + "revision": "42ec151acbba4621b0da5268", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79475,10 +58259,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "04b026dbca6e48dab141025b", + "revision": "056dc7733e644c6d91a5aaf4", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79496,24 +58280,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "5214659b72d34d1aa53c89a1", + "revision": "1830636e154f4ba9a73df3f8", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79529,18 +58301,9 @@ "original_amount": 779317, "total_amount": 779317, "id": 1684624387279, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-05-20T23:13:07.279Z", + "date_last_updated": "2023-05-20T23:13:07.279Z", + "date_of_expiration": "2023-05-20T23:13:07.279Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -79549,10 +58312,10 @@ "history_id": 1684624387279, "description": "Compra de 779.317,00 IVIP por 160,00 BRL" }, - "revision": "4cc5ffac255340fabb05c515", + "revision": "0e662e7220bd4bdda7c685ca", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79570,24 +58333,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - } + "costs": [] }, - "revision": "b22e7cce6c8e4c498db201a6", + "revision": "3931d058935a47cdbfb98ea8", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79603,18 +58354,9 @@ "original_amount": 20, "total_amount": 20, "id": 1684624827425, - "date_created": { - "type": 6, - "value": 1701459383522 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383522 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383522 - }, + "date_created": "2023-05-20T23:20:27.425Z", + "date_last_updated": "2023-05-20T23:20:27.425Z", + "date_of_expiration": "2023-05-20T23:20:27.425Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -79622,10 +58364,10 @@ "currency_id": "BRL", "history_id": 1684624827425 }, - "revision": "d84e6617414f425cbe070e1c", + "revision": "b71d30578f054e71b3e338ba", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79633,10 +58375,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "6d820671a3e44fc186a59cc3", + "revision": "39f1dd7a848a486d91f46e35", "revision_nr": 1, - "created": 1701459383522, - "modified": 1701459383522 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79654,24 +58396,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "f72daccf03f94e828dd49891", + "revision": "9ed60179d76744cf8f2bc13c", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79687,18 +58417,9 @@ "original_amount": 97414, "total_amount": 97414, "id": 1684624867474, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-05-20T23:21:07.474Z", + "date_last_updated": "2023-05-20T23:21:07.474Z", + "date_of_expiration": "2023-05-20T23:21:07.474Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -79707,10 +58428,10 @@ "history_id": 1684624867474, "description": "Compra de 97.414,00 IVIP por 20,00 BRL" }, - "revision": "45730974529645dba025fa10", + "revision": "bfe1aaaa4d8744db9f99d891", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79728,24 +58449,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "714dab2fa60d4ad794a83812", + "revision": "a65ca96f6524491d9aee4da4", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79761,18 +58470,9 @@ "original_amount": 40000000, "total_amount": 40000000, "id": 1685361710845, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-05-29T12:01:50.845Z", + "date_last_updated": "2023-05-29T12:01:50.845Z", + "date_of_expiration": "2023-05-29T12:01:50.845Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -79780,10 +58480,10 @@ "currency_id": "IVIPAY", "history_id": 1685361710845 }, - "revision": "3073a7d0c1f9460c826df137", + "revision": "499822838b584a34ae409b77", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79791,10 +58491,10 @@ "content": { "type": "STRING", "value": "Compra de 40.000.000,00 IVIPAY por 4.000.000,00 IVIP estabilizando US$ 164,00", - "revision": "a2b14ccda4f842f1a839d9fd", + "revision": "7dd01e839d494692a09373ae", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79812,24 +58512,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "e2ecb80a9bc944ef9a5f46be", + "revision": "a233de8c61204d2bbf3ca688", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79845,18 +58533,9 @@ "original_amount": 400000, "total_amount": 400000, "id": 1685391792305, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-05-29T20:23:12.305Z", + "date_last_updated": "2023-05-29T20:23:12.305Z", + "date_of_expiration": "2023-05-29T20:23:12.305Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -79864,10 +58543,10 @@ "currency_id": "IVIP", "history_id": 1685391792305 }, - "revision": "ba824c2ef2b7448cb84c4312", + "revision": "876e4dc7f1824774889c4d38", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79885,24 +58564,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "32184125d6f746c1b0f5ff9d", + "revision": "dcad0ea8adf24f46af3ad63d", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79918,18 +58585,9 @@ "original_amount": 2000000, "total_amount": 2000000, "id": 1685391842660, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-05-29T20:24:02.660Z", + "date_last_updated": "2023-05-29T20:24:02.660Z", + "date_of_expiration": "2023-05-29T20:24:02.660Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -79937,10 +58595,10 @@ "currency_id": "IVIP", "history_id": 1685391842660 }, - "revision": "54e01d91ea304928a275b2ca", + "revision": "af960e840d684694ab34e8bd", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79948,10 +58606,10 @@ "content": { "type": "STRING", "value": "Compra de 2.000.000,00 IVIP por 20.000.000,00 IVIPAY", - "revision": "91c5ef321dcd4dbbaa2de9a9", + "revision": "49d8758aad36452b92f6a7ec", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -79969,24 +58627,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "b8225454d6b24a838f2c6034", + "revision": "8230ff2c41704f879f6019db", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -80002,18 +58648,9 @@ "original_amount": 160000, "total_amount": 160000, "id": 1685391972284, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-05-29T20:26:12.284Z", + "date_last_updated": "2023-05-29T20:26:12.284Z", + "date_of_expiration": "2023-05-29T20:26:12.284Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -80021,10 +58658,10 @@ "currency_id": "IVIP", "history_id": 1685391972284 }, - "revision": "e939440d842a4ab4bdeb4db7", + "revision": "a43db38bd4ff45a0b6e59f4e", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -80042,24 +58679,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "db8c1ba0e8f1441c98e8db77", + "revision": "a2e36f7871454317a8c7ccb1", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -80075,18 +58700,9 @@ "original_amount": 1400000, "total_amount": 1400000, "id": 1685392038537, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-05-29T20:27:18.537Z", + "date_last_updated": "2023-05-29T20:27:18.537Z", + "date_of_expiration": "2023-05-29T20:27:18.537Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -80094,10 +58710,10 @@ "currency_id": "IVIP", "history_id": 1685392038537 }, - "revision": "73f2b5297d6f4c3db4e3a738", + "revision": "0f0024e5a4ee4ebd90414034", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -80105,10 +58721,10 @@ "content": { "type": "STRING", "value": "Compra de 1.400.000,00 IVIP por 14.000.000,00 IVIPAY", - "revision": "e8dfff9b19734a0cbc5a9242", + "revision": "567d3a5e18f94664b5480c89", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -80126,24 +58742,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "ff95387d29ac46a4916e70c0", + "revision": "02ad9a8ac6424ed0a3ee0347", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -80159,18 +58763,9 @@ "original_amount": 10000, "total_amount": 10000, "id": 1685392165654, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-05-29T20:29:25.654Z", + "date_last_updated": "2023-05-29T20:29:25.654Z", + "date_of_expiration": "2023-05-29T20:29:25.654Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -80179,10 +58774,10 @@ "history_id": 1685392165654, "description": "Compra de 10.000,00 IVIP por 100.000,00 IVIPAY" }, - "revision": "ad9b551da703414786fa6279", + "revision": "d4f52a58f0e944eca976ba3f", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -80200,24 +58795,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "aa099bf6248b4b2aa4e95500", + "revision": "86f32b08ec7b41759ae47b92", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -80233,18 +58816,9 @@ "original_amount": 30000, "total_amount": 30000, "id": 1685392465062, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-05-29T20:34:25.062Z", + "date_last_updated": "2023-05-29T20:34:25.062Z", + "date_of_expiration": "2023-05-29T20:34:25.062Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -80253,10 +58827,10 @@ "history_id": 1685392465062, "description": "Compra de 30.000,00 IVIP por 300.000,00 IVIPAY" }, - "revision": "205d003cf5b94d62aee264c5", + "revision": "83a7dffd7d624fe38a5f13b1", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -80264,24 +58838,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "e97025709f744629994ce8de", + "revision": "01c6f80841a842d8a2a768a9", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -80296,27 +58858,18 @@ "total_amount": 4669901, "history_id": 1685396749543, "id": 1685396749543, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-05-29T21:45:49.543Z", + "date_last_updated": "2023-05-29T21:45:49.543Z", + "date_of_expiration": "2023-05-29T21:45:49.543Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "d0753a85805446cea72959e4", + "revision": "50177c11980e4efca146b0bd", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -80324,10 +58877,10 @@ "content": { "type": "STRING", "value": "Saque de 4.669.901,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "25001dc445164ac7a33531b8", + "revision": "39af41b97c9344e28b04fbfd", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -80345,24 +58898,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "e0e75693478346f482d3a0c9", + "revision": "0d10306a8f4042d1be5dab03", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -80378,18 +58919,9 @@ "original_amount": 86699010, "total_amount": 86699010, "id": 1685409104532, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-05-30T01:11:44.532Z", + "date_last_updated": "2023-05-30T01:11:44.532Z", + "date_of_expiration": "2023-05-30T01:11:44.532Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -80397,10 +58929,10 @@ "currency_id": "IVIPAY", "history_id": 1685409104532 }, - "revision": "88e713aa76d44712813e8475", + "revision": "fc94bde6731f463e8fb8b3a9", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80408,10 +58940,10 @@ "content": { "type": "STRING", "value": "Compra de 86.699.010,00 IVIPAY por 8.669.901,00 IVIP estabilizando US$ 790,81", - "revision": "86300d858f0b4f9795c38126", + "revision": "b28b755acb224060a92deef1", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509576, + "modified": 1701463509576 } }, { @@ -80429,24 +58961,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "b2aca6143cd74cca8136f2a4", + "revision": "6b35fe569a234752a4fd9f76", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80462,18 +58982,9 @@ "original_amount": 1544789, "total_amount": 1544789, "id": 1685494858663, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-05-31T01:00:58.663Z", + "date_last_updated": "2023-05-31T01:00:58.663Z", + "date_of_expiration": "2023-05-31T01:00:58.663Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -80481,10 +58992,10 @@ "currency_id": "IVIP", "history_id": 1685494858663 }, - "revision": "804c8ac5829c48ca9e985d63", + "revision": "ad703a3b737649b89d04ec13", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80492,10 +59003,10 @@ "content": { "type": "STRING", "value": "Compra de 1.544.789,00 IVIP por 15.447.894,00 IVIPAY", - "revision": "969eed531b7246d8b9d99bf5", + "revision": "f0ee4f0f1d4f44858405b8a5", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80513,24 +59024,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "409447265ccf45db8cc32453", + "revision": "d02a3e67ceff49da85e15106", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80546,18 +59045,9 @@ "original_amount": 13900000, "total_amount": 13900000, "id": 1685494914975, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-05-31T01:01:54.975Z", + "date_last_updated": "2023-05-31T01:01:54.975Z", + "date_of_expiration": "2023-05-31T01:01:54.975Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -80565,10 +59055,10 @@ "currency_id": "IVIP", "history_id": 1685494914975 }, - "revision": "6f3c7d69cca74afaa77b6b0b", + "revision": "5fe717e953f64a9399842c2e", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80576,10 +59066,10 @@ "content": { "type": "STRING", "value": "Compra de 13.900.000,00 IVIP por 139.000.000,00 IVIPAY", - "revision": "a6f08c58ed7045f2a0333db5", + "revision": "d5d5e8f0baa9463d89afb616", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80597,24 +59087,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "5797951724cf433f8226dd98", + "revision": "3f5fdf21fa6249ca8172cccf", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80630,18 +59108,9 @@ "original_amount": 3105, "total_amount": 3105, "id": 1685495030715, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-05-31T01:03:50.715Z", + "date_last_updated": "2023-05-31T01:03:50.715Z", + "date_of_expiration": "2023-05-31T01:03:50.715Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -80650,10 +59119,10 @@ "history_id": 1685495030715, "description": "Compra de 3.105,00 IVIP por 31.054,00 IVIPAY" }, - "revision": "12f9f4a73ac246919b8caa8c", + "revision": "3433bec23553434d9fd2da96", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80661,24 +59130,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "338a4826fe694143898ed0fe", + "revision": "9d74a221986349bea1b64627", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80693,18 +59150,9 @@ "total_amount": 15447894, "history_id": 1685495440046, "id": 1685495440046, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-05-31T01:10:40.046Z", + "date_last_updated": "2023-06-02T18:03:07.171Z", + "date_of_expiration": "2023-05-31T01:10:40.046Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -80712,10 +59160,10 @@ "money_release_date": "2023-06-02T18:03:07.171Z", "money_release_status": "rejected" }, - "revision": "11657928d1594b32a184fb29", + "revision": "81c78d2c42374adb96b32a2e", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80723,10 +59171,10 @@ "content": { "type": "STRING", "value": "Saque de 15.447.894,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "0ce59f5d8f5543289e497d79", + "revision": "7fe1cf1538b54e09abe9d3de", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80744,24 +59192,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "43ea3ac618b34e3aa9af3063", + "revision": "013ea798abe3479a80eb49c8", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80777,18 +59213,9 @@ "original_amount": 154478940, "total_amount": 154478940, "id": 1685496474860, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-05-31T01:27:54.860Z", + "date_last_updated": "2023-05-31T01:27:54.860Z", + "date_of_expiration": "2023-05-31T01:27:54.860Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -80796,10 +59223,10 @@ "currency_id": "IVIPAY", "history_id": 1685496474860 }, - "revision": "8250de5cc7534fcbb368b31d", + "revision": "0cb0df4a7c8f4d1692b4ca29", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80807,10 +59234,10 @@ "content": { "type": "STRING", "value": "Compra de 154.478.940,00 IVIPAY por 15.447.894,00 IVIP estabilizando US$ 957,12", - "revision": "835de30cf4e5476c8867bfa5", + "revision": "65984925eb3b4bb39faae29f", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80828,24 +59255,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "2adbea18f6c54091b87e72e3", + "revision": "d31b4b4aa7064dde924679e8", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80861,18 +59276,9 @@ "original_amount": 14660794, "total_amount": 14660794, "id": 1685572512459, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-05-31T22:35:12.459Z", + "date_last_updated": "2023-05-31T22:35:12.459Z", + "date_of_expiration": "2023-05-31T22:35:12.459Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -80880,10 +59286,10 @@ "currency_id": "IVIP", "history_id": 1685572512459 }, - "revision": "7dff167486f24c00963dd496", + "revision": "3f19863e7acd4ed28bf9c051", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80891,10 +59297,10 @@ "content": { "type": "STRING", "value": "Compra de 14.660.794,00 IVIP por 146.607.949,00 IVIPAY", - "revision": "4af16517f2ec45d7b0f6ab21", + "revision": "11cab56538e14864ab057d62", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80902,24 +59308,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "ba46f2dc7f7649919075f6a7", + "revision": "4f2f747345084775a37f2cd7", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80934,18 +59328,9 @@ "total_amount": 10637617, "history_id": 1685574712795, "id": 1685574712795, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-05-31T23:11:52.795Z", + "date_last_updated": "2023-06-02T17:55:39.697Z", + "date_of_expiration": "2023-05-31T23:11:52.795Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -80953,10 +59338,10 @@ "money_release_date": "2023-06-02T17:55:39.697Z", "money_release_status": "rejected" }, - "revision": "7e809ce506f84eb39d1bd7d1", + "revision": "7f9f5c9346cf4009b24e8dd1", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80964,10 +59349,10 @@ "content": { "type": "STRING", "value": "Saque de 10.637.617,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "aae58c006216466999346eed", + "revision": "6c8f300e0e674647b5417765", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -80975,24 +59360,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "23f4af9cfce348b9b8b54fce", + "revision": "11aaa4ae163841d9b344012b", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81007,18 +59380,9 @@ "total_amount": 14660794, "history_id": 1685587807706, "id": 1685587807706, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-06-01T02:50:07.706Z", + "date_last_updated": "2023-06-02T17:54:02.582Z", + "date_of_expiration": "2023-06-01T02:50:07.706Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -81026,10 +59390,10 @@ "money_release_date": "2023-06-02T17:54:02.582Z", "money_release_status": "rejected" }, - "revision": "44b231fa785044b1909cb486", + "revision": "81ad79d56d4d41eca2e33638", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81037,10 +59401,10 @@ "content": { "type": "STRING", "value": "Saque de 14.660.794,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "bc271d8f23784093a389f043", + "revision": "87c4122cb5b74246b8ac87b9", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81048,24 +59412,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "21b1b605bf454fc5ab361eb3", + "revision": "a2631c51fbc3445b980c126a", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81080,18 +59432,9 @@ "total_amount": 14660794, "history_id": 1685623890790, "id": 1685623890790, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-06-01T12:51:30.790Z", + "date_last_updated": "2023-06-01T19:33:18.019Z", + "date_of_expiration": "2023-06-01T12:51:30.790Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -81101,10 +59444,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "459178b186444193b4536cff", + "revision": "395839219086436794ecf1db", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81112,10 +59455,10 @@ "content": { "type": "STRING", "value": "Saque de 14.660.794,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "c1be2ff84729413382b2967b", + "revision": "015dd95451f84afa8494bff8", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81133,24 +59476,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "7ca4aad642414cd5bb1226bf", + "revision": "2c735f131d684e1cb98b9739", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81166,18 +59497,9 @@ "original_amount": 146607940, "total_amount": 146607940, "id": 1685625562355, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-06-01T13:19:22.355Z", + "date_last_updated": "2023-06-01T13:19:22.355Z", + "date_of_expiration": "2023-06-01T13:19:22.355Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -81185,10 +59507,10 @@ "currency_id": "IVIPAY", "history_id": 1685625562355 }, - "revision": "7a416cbaa5e949778ca1f451", + "revision": "28d1ef560e104961a3d0dbd5", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81196,10 +59518,10 @@ "content": { "type": "STRING", "value": "Compra de 146.607.940,00 IVIPAY por 14.660.794,00 IVIP estabilizando US$ 749,86", - "revision": "21de1dade6384192aeab3d15", + "revision": "18949dd9520e47e2a7273d10", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81217,24 +59539,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "d05f1abaf1374a2db376436c", + "revision": "ff0701f3798d4d488df1242c", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81250,18 +59560,9 @@ "original_amount": 1490, "total_amount": 1490, "id": 1685639526258, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-06-01T17:12:06.258Z", + "date_last_updated": "2023-06-01T17:12:06.258Z", + "date_of_expiration": "2023-06-01T17:12:06.258Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -81270,10 +59571,10 @@ "history_id": 1685639526258, "description": "Compra de 1.490,00 IVIP por 14.900,00 IVIPAY" }, - "revision": "f659d236419541afb873b138", + "revision": "258654f9f1d8412eb4fda5f1", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81281,24 +59582,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - } + "costs": [] }, - "revision": "58900772eab64906abe8fd3b", + "revision": "64dd86f4321a4e2988b5291c", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81313,18 +59602,9 @@ "total_amount": 1490, "history_id": 1685647933824, "id": 1685647933824, - "date_created": { - "type": 6, - "value": 1701459383523 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383523 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383523 - }, + "date_created": "2023-06-01T19:32:13.824Z", + "date_last_updated": "2023-06-01T19:34:53.267Z", + "date_of_expiration": "2023-06-01T19:32:13.824Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -81334,10 +59614,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "aa565f712a1642ce96cc53ca", + "revision": "dcf35725a84d4f8ebb01961b", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81345,10 +59625,10 @@ "content": { "type": "STRING", "value": "Saque de 1.490,00 IVIP para a carteira 0x46450913428e27edfc5B4055875c08eC6a22cbfF", - "revision": "bf6946a05c844fb3a8fcb591", + "revision": "793d44421e0b42fea0258000", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81366,24 +59646,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "7ffb74e268394047bdc306a0", + "revision": "a045ed72ce1b4b4ba21f5621", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81399,18 +59667,9 @@ "original_amount": 13603163, "total_amount": 13603163, "id": 1685653675417, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-06-01T21:07:55.417Z", + "date_last_updated": "2023-06-01T21:07:55.417Z", + "date_of_expiration": "2023-06-01T21:07:55.417Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -81418,10 +59677,10 @@ "currency_id": "IVIP", "history_id": 1685653675417 }, - "revision": "fab6095e74064bbcbdae0f20", + "revision": "fbdb7b2fe7794951a7ecce67", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81429,10 +59688,10 @@ "content": { "type": "STRING", "value": "Compra de 13.603.163,00 IVIP por 136.031.630,00 IVIPAY", - "revision": "2c5de513b0c848928e9e5050", + "revision": "5fad737cc94a47e596c1082c", "revision_nr": 1, - "created": 1701459383523, - "modified": 1701459383523 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81440,24 +59699,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "f5dc98ed32d74c24b1083802", + "revision": "0c911e0a94194ae58e8a8148", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81472,27 +59719,18 @@ "total_amount": 3463, "history_id": 1688596994749, "id": 1688596994749, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-07-05T22:43:14.749Z", + "date_last_updated": "2023-07-05T22:43:14.749Z", + "date_of_expiration": "2023-08-04T22:43:14.749Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "3342998a7d2b40ea855034a1", + "revision": "92b86c72d762474282f82b3c", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81500,10 +59738,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.463,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "d28f4417dde24d6685c50e93", + "revision": "486d1d7d10f142e1b313fc25", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81511,24 +59749,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "517f8bba79a34b9d8a367453", + "revision": "a39368e0937347e3a65677fc", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81543,27 +59769,18 @@ "total_amount": 1000, "history_id": 1689384333712, "id": 1689384333712, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-07-15T01:25:33.712Z", + "date_last_updated": "2023-07-15T01:25:33.712Z", + "date_of_expiration": "2023-08-14T01:25:33.712Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "d91300e2bc2b47b8ae011b62", + "revision": "36e965e5f56d464880269d55", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81571,10 +59788,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "5cb0823f8aa34a17973580ee", + "revision": "2ec0b4824fdb4021a61257bb", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81583,24 +59800,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-20T15:58:57.377Z", - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + ".val": "2023-08-20T15:58:57.377Z" }, - "revision": "f1036be7b502489fa2a9d6ef", + "revision": "674e83782eb04cf8bfc2505f", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81616,24 +59821,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "456541b41e7a4a448a50270e", + "revision": "bd9ba51848f2405ea4e6da58", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81641,10 +59834,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1689955137377", - "revision": "e85fb07cc0334e81866f688c", + "revision": "e5e0ba3f80f34454ab0642b4", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81659,29 +59852,19 @@ "total_amount": 1671, "id": 1689955137377, "history_id": 1689955137377, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-07-21T15:58:57.377Z", + "date_last_updated": "2023-07-21T15:58:57.377Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "status_detail": "pending_waiting_payment" }, - "revision": "51dfc894d55b4999b31b6a4f", + "revision": "0a8b73d7ee8d4c15911c251e", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81689,10 +59872,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.671,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "ab485bac2bca4cd083764047", + "revision": "c865f7fc08474922953a4028", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81701,24 +59884,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-30T21:05:23.298Z", - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + ".val": "2023-08-30T21:05:23.298Z" }, - "revision": "4e0100c4bd1d4799b4eaf3f3", + "revision": "0388ada9672443aa99465c07", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81734,24 +59905,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "0289e126ebd346d8b379e675", + "revision": "66951653662347f18e550e98", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81759,10 +59918,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1690837523298", - "revision": "1e29a7f18b9744138a71db38", + "revision": "2e4fb581553940f18cee5b11", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81777,14 +59936,8 @@ "total_amount": 20, "id": 1690837523298, "history_id": 1690837523298, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-07-31T21:05:23.298Z", + "date_last_updated": "2023-07-31T22:01:04.751Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -81794,16 +59947,12 @@ "date_approved": "2023-07-31T22:01:04.751Z", "money_release_date": "2023-07-31T22:01:04.751Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "wasDebited": true }, - "revision": "ec243b2a70a84cb9a6da23a1", + "revision": "10f359e7c5014afdb6c9b34d", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81811,10 +59960,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "9cc1187509384614aeb822c7", + "revision": "af09a0f9780c40fd8ba2933c", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81830,24 +59979,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "0e900ddb0a18427893cef8c4", + "revision": "34201345933d461c8604f412", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81855,10 +59992,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1690844181474", - "revision": "cd4f3575763e40bc91f88de3", + "revision": "9a96c931fb6e478fa4f8b100", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81873,18 +60010,9 @@ "total_amount": 17960, "id": 1690844181474, "history_id": 1690844181474, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-07-31T22:56:21.474Z", + "date_last_updated": "2023-07-31T22:56:21.474Z", + "date_of_expiration": "2023-07-31T22:56:21.474Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -81893,10 +60021,10 @@ "description": "Compra de 17.960,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "e0801801c9244ac287cf1dd5", + "revision": "d0670755d1654eed9bae9c33", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81904,10 +60032,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d3a48fb3d43f4e00b6911adc", + "revision": "0d4eb7b4b06745d084a35d3d", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81915,10 +60043,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "cc36f5b62a00400692a8af44", + "revision": "7d0830ad70684fcb93d12884", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81928,24 +60056,12 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-07-08T23:25:44.635Z", - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "analysisRequested": "2023-07-08T23:25:44.635Z" }, - "revision": "c6b77d4cc34c442c81247512", + "revision": "14672f2f030042df83e618e5", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81957,24 +60073,12 @@ "dateValidity": 1684160584822, "totalValue": 8.87, "currencyType": "USD", - "balancesModificacao": "2023-09-29T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "balancesModificacao": "2023-09-29T03:00:00.000Z" }, - "revision": "61a90268aa4e43a695a42afe", + "revision": "59fef7133aa546b0a0bfe855", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -81984,24 +60088,12 @@ "value": { "available": "465751.00000000", "symbol": "IVIP", - "value": 507.45, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "value": 507.45 }, - "revision": "a8b896adbe9641418e9fe8f4", + "revision": "0b3da2e9012940f7ba2f98b8", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -82009,10 +60101,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ffa8e268a0b0473c97e1311c", + "revision": "6abfa3ff61a64a4ca3857627", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -82020,24 +60112,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "b7e1424d276245949eab557d", + "revision": "3d707fdd04ca4ad091d2a19e", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -82052,18 +60132,9 @@ "total_amount": 200, "history_id": 1689132397301, "id": 1689132397301, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-07-12T03:26:37.301Z", + "date_last_updated": "2023-07-12T09:22:05.926Z", + "date_of_expiration": "2023-08-11T03:26:37.301Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -82073,10 +60144,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "734ae8b29d2a40d3bf3b687d", + "revision": "c00b7d68724349659a78bf75", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -82084,10 +60155,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0918.7836.9033.5585-10", - "revision": "317f6c82fac94e92b548f035", + "revision": "52849c9fc90947ff8a98c2bc", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -82105,24 +60176,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "68b110edef8b4ef6a72b1a1e", + "revision": "0665ea44bff345feacf44954", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -82138,18 +60197,9 @@ "original_amount": 82125, "total_amount": 82125, "id": 1689197549929, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-07-12T21:32:29.929Z", + "date_last_updated": "2023-07-12T21:32:29.929Z", + "date_of_expiration": "2023-07-12T21:32:29.929Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -82158,10 +60208,10 @@ "history_id": 1689197549929, "description": "Compra de 82.125,00 IVIP por 200,00 BRL" }, - "revision": "1e15121087b348b78eea0ce4", + "revision": "a6f054d7222e4a8e9f9669c1", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -82170,24 +60220,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-28T11:29:10.248Z", - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + ".val": "2023-10-28T11:29:10.248Z" }, - "revision": "50398ef9c301433b9e33d617", + "revision": "fb1100da99bd44deba0bf01a", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -82203,24 +60241,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "226f609e0b3243868a75f6e7", + "revision": "966309f3fa9744cd9a219e18", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82228,10 +60254,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900550248", - "revision": "2b2e5bd813114df6ac950432", + "revision": "77c6da39347d4f54bc7da785", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82247,29 +60273,19 @@ "total_amount": 458, "id": "1695900550248", "history_id": "1695900550248", - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-09-28T11:29:10.248Z", + "date_last_updated": "2023-09-28T11:29:10.248Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "status_detail": "pending_waiting_payment" }, - "revision": "d5231a673a8846c5bafcb295", + "revision": "28c2b8b03d274c68b74fc612", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82277,10 +60293,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", - "revision": "071c3c00f5c44ee5ae785120", + "revision": "0a3996c7d2844ebdbbd2e87f", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509577, + "modified": 1701463509577 } }, { @@ -82289,24 +60305,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-28T11:29:10.761Z", - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + ".val": "2023-10-28T11:29:10.761Z" }, - "revision": "fdd5e618ad1246ddbef1c32e", + "revision": "fbf01bb448f64d25ac7c9e18", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82322,24 +60326,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "4d2cd12efd4e4fe6a17b7a01", + "revision": "19c85b330804428997c9adf4", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82347,10 +60339,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900550761", - "revision": "a2e96376cd7641df84c053b2", + "revision": "7ef840a8c5de4403850ff352", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82366,29 +60358,19 @@ "total_amount": 458, "id": "1695900550761", "history_id": "1695900550761", - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-09-28T11:29:10.761Z", + "date_last_updated": "2023-09-28T11:29:10.761Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "status_detail": "pending_waiting_payment" }, - "revision": "6a1b626610f6460bb6bbe459", + "revision": "4eb056b1a1c84fceaa95169e", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82396,10 +60378,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", - "revision": "c734a22f3bc24414a0e4fbc0", + "revision": "2d71e1972cea4e318a375b74", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82408,24 +60390,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-28T11:29:25.784Z", - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + ".val": "2023-10-28T11:29:25.784Z" }, - "revision": "0f97babf38db49f09d9cd1bf", + "revision": "263e9dee12f54f089e1e2e68", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82441,24 +60411,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "309e45d0b0454d16b3e9e36a", + "revision": "e84f05b03e3f4929963f6ff0", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82466,10 +60424,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900565784", - "revision": "21ade288bff44d048f089467", + "revision": "f9c4c67b446f448a97929800", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82485,14 +60443,8 @@ "total_amount": 458, "id": "1695900565784", "history_id": "1695900565784", - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-09-28T11:29:25.784Z", + "date_last_updated": "2023-09-28T11:46:53.220Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -82502,16 +60454,12 @@ "date_approved": "2023-09-28T11:46:53.220Z", "money_release_date": "2023-09-28T11:46:53.220Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "wasDebited": true }, - "revision": "31dd4ad6134f479bb93d6071", + "revision": "38df80ccfde74b97833d672f", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82519,10 +60467,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", - "revision": "f7cb1b4ddb0a474997f918e3", + "revision": "bb38af700ec64f4390747f10", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82538,24 +60486,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "41387d4189b74bfd88ad9369", + "revision": "a975ef885f8e4fd5b67c2eba", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82563,10 +60499,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695903994262", - "revision": "6eb2d498115b42e78c020121", + "revision": "942fb5d449c44f39a81749fc", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82582,18 +60518,9 @@ "total_amount": 383626, "id": "1695903994262", "history_id": "1695903994262", - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-09-28T12:26:34.262Z", + "date_last_updated": "2023-09-28T12:26:34.262Z", + "date_of_expiration": "2023-09-28T12:26:34.262Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -82602,10 +60529,10 @@ "description": "Compra de 383.626,00 IVIP por 458,00 BRL", "status_detail": "accredited" }, - "revision": "869907b4298648ec9c06e515", + "revision": "c53d2fde595848cea45f15d9", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82613,10 +60540,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f4f772b02d72490f81d28406", + "revision": "979d96524e30419eb36e559d", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82624,10 +60551,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "64a42a64067e411f8b7fa15f", + "revision": "00731244971d44b6a4669bc8", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82636,24 +60563,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "limitUsed": 0 }, - "revision": "1b3cd8366b3e433a91571033", + "revision": "ebd2a34a414d4fc5992773c7", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82665,24 +60580,12 @@ "dateValidity": 1689132373088, "totalValue": 41.04, "currencyType": "USD", - "balancesModificacao": "2023-10-01T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "balancesModificacao": "2023-10-01T03:00:00.000Z" }, - "revision": "7275bbe5a8b54d9582624034", + "revision": "5e0e5d0110524cf38a0b05f6", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82690,10 +60593,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "807000501d734a96a910f6fc", + "revision": "b3229569f2b3439282a80453", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82701,24 +60604,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "641b484e7b7c463196720d02", + "revision": "0f5e8986db554e87a25003db", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82733,18 +60624,9 @@ "total_amount": 50, "history_id": 1678089239675, "id": 1678089239675, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-03-06T07:53:59.675Z", + "date_last_updated": "2023-03-13T14:08:07.775Z", + "date_of_expiration": "2023-04-05T07:53:59.675Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -82752,10 +60634,10 @@ "money_release_date": "2023-03-13T14:08:07.775Z", "money_release_status": "rejected" }, - "revision": "a7e2902c053e425c934ff94a", + "revision": "9024c069aa524960b3b84342", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82763,10 +60645,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0923.9225.3957.1184-80", - "revision": "003f233e53a8436a95a75128", + "revision": "0f6d4be715a24078adaae118", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82774,10 +60656,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "03e41f5ae98048e1aef32757", + "revision": "2eca00601812407a978268a5", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82788,24 +60670,12 @@ "dataModificacao": 1677466864789, "dateValidity": 1678103589466, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "currencyType": "USD" }, - "revision": "9184f91b18594643aa9567a0", + "revision": "10c712a9704f4f5c93facc7a", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82813,10 +60683,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9751b704f5e44c388e7e17f3", + "revision": "390a7aa4e2764db5a117bc28", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82824,24 +60694,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "d9e728bd05384b75a80df8b9", + "revision": "12d9c62058c94643a7f5cc03", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82856,27 +60714,18 @@ "total_amount": 1500, "history_id": 1689457461269, "id": 1689457461269, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-07-15T21:44:21.269Z", + "date_last_updated": "2023-07-15T21:44:21.269Z", + "date_of_expiration": "2023-08-14T21:44:21.269Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "28d3ebdeae7e42f3b52079ee", + "revision": "777b97bcee4f42bab506588d", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82884,10 +60733,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0956.3322.9427.8818-90", - "revision": "55dbf13d807c4c90a29b517b", + "revision": "b2330544b4c148ffba6c9462", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82895,24 +60744,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "7b8f74212b374e0d828c45f9", + "revision": "088f8979deb24b73978a45f7", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82927,27 +60764,18 @@ "total_amount": 1500, "history_id": 1689629737479, "id": 1689629737479, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-07-17T21:35:37.479Z", + "date_last_updated": "2023-07-17T21:35:37.479Z", + "date_of_expiration": "2023-08-16T21:35:37.479Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "00aff5e4d21e4e2da8f445d8", + "revision": "92e905a97de642f89192732d", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82955,10 +60783,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0956.3322.9427.8818-90", - "revision": "c5140fd25de24314ba359e0c", + "revision": "decf11ed7d504342ba982ecb", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82966,10 +60794,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3778ca2bea2344f9860eb821", + "revision": "10f44a5b03284acaaeaa04f8", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82977,10 +60805,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9f65375a0b164184ba243d0b", + "revision": "e51af5d9611e4658ae737b47", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -82989,24 +60817,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "limitUsed": 0 }, - "revision": "58ff2d8d44744a29b30af863", + "revision": "7cdeefbab5ac4a62a3139d99", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83017,24 +60833,12 @@ "dataModificacao": 1689457427075, "dateValidity": 1689457427075, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "currencyType": "USD" }, - "revision": "ed95231002774644aa2f403c", + "revision": "ff802c18d8e443619c1f9f40", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83042,10 +60846,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1fe7782b0a0e4f3dad2ecf7f", + "revision": "490f67b22f4d41568b32f7dd", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83053,24 +60857,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "471d3ea04e75407ba4f25e75", + "revision": "59c649298ead4af48d296223", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83085,27 +60877,18 @@ "total_amount": 100, "history_id": 1684543373520, "id": 1684543373520, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-05-20T00:42:53.520Z", + "date_last_updated": "2023-05-20T00:42:53.520Z", + "date_of_expiration": "2023-06-19T00:42:53.520Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "dc7c7f32e24a426f8a12ca5c", + "revision": "40d142b78852434cbef00a3d", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83113,10 +60896,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0961.2401.6860.3556-50", - "revision": "e9e17e53d09140e7a17634a0", + "revision": "35705e883bcf4c04bdd17167", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83124,10 +60907,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2438508679be4c7cbbbdb96b", + "revision": "4687fe41d0aa4f1dbd9b4415", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83135,10 +60918,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0d58779dd4f64c67b86627bb", + "revision": "57baabe5b8b4448cb9c4e74b", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83147,24 +60930,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "limitUsed": 0 }, - "revision": "a9560c69e9da43648588adb9", + "revision": "1790df755a324a1a855a73d9", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83175,24 +60946,12 @@ "dataModificacao": 1684187165100, "dateValidity": 1684187165100, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "currencyType": "USD" }, - "revision": "96722d41156d414b9ea7136f", + "revision": "8a05f75cba294df7baffae65", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83200,10 +60959,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b2d963a6641a427882e1ccc2", + "revision": "13cd8c4c7f1a4080a053858f", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83211,10 +60970,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7daeb9907170488d8f4c084d", + "revision": "14a786f4804944b8b7e99f2c", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83224,24 +60983,12 @@ "value": { "dataModificacao": 1696117965905, "dateValidity": 1696117965942, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "currencyType": "USD" }, - "revision": "ba22ac257e16404691acb1e9", + "revision": "135411fa772f43139a7a5da2", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83251,24 +60998,12 @@ "value": { "available": "10.00000000", "symbol": "BRL", - "value": 1.92, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "value": 1.92 }, - "revision": "ed1e114a452046ab892c3da2", + "revision": "571b35099c234221b707b25a", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83278,24 +61013,12 @@ "value": { "available": "480000.00000000", "symbol": "IVIP", - "value": 62.92, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "value": 62.92 }, - "revision": "b1b04ae87d2b4ecdaaa4f2f4", + "revision": "3b8fc79efa7745e7a3f2da55", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83303,10 +61026,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ffa663b930064bc59a06ac74", + "revision": "849055cdc1ec4c45ba557f84", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83314,24 +61037,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "728f6568f1584709a8411dfc", + "revision": "2b1f99cb6feb42c9849d35c9", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83346,18 +61057,9 @@ "total_amount": 3000, "history_id": 1680564390483, "id": 1680564390483, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-04-03T23:26:30.483Z", + "date_last_updated": "2023-04-04T01:09:40.299Z", + "date_of_expiration": "2023-05-03T23:26:30.483Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -83367,10 +61069,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "0d0155d996274f11a4c2f49d", + "revision": "aa5a5d1678094e4d8a55cd70", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83378,10 +61080,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "dc1f636085134192aff6dc5a", + "revision": "95993f942c594408b9b7b3fd", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83389,24 +61091,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "costs": [] }, - "revision": "c48d11f2f7cb4c56b15bf9d5", + "revision": "85dd415fe32445b6b47e0c7b", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83421,18 +61111,9 @@ "total_amount": 2000, "history_id": 1680570737667, "id": 1680570737667, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-04-04T01:12:17.667Z", + "date_last_updated": "2023-04-04T01:12:57.315Z", + "date_of_expiration": "2023-05-04T01:12:17.667Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -83442,10 +61123,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3aee07c07a9c47fe98dc9012", + "revision": "d19190b3c68c4449975c73ee", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83453,10 +61134,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "996c676400cc4c8fa47742dc", + "revision": "675e36a04ef644d0b2ca2ff0", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83466,24 +61147,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - } + "amount": 2000 }, - "revision": "dcfb4ca32af040f88a8c1c3c", + "revision": "673a987a70c14d13add668c3", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83491,10 +61160,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9c9efce72a9849969258e278", + "revision": "4c243826c07949e0b38d4fd1", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83502,10 +61171,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "c0b5ac37fa714335b489a531", + "revision": "1392ae662349437d8bf78d18", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83520,28 +61189,19 @@ "total_amount": 12000, "history_id": 1680571158806, "id": 1680571158806, - "date_created": { - "type": 6, - "value": 1701459383524 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383524 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383524 - }, + "date_created": "2023-04-04T01:19:18.806Z", + "date_last_updated": "2023-04-04T01:19:18.806Z", + "date_of_expiration": "2023-05-04T01:19:18.806Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "94a427b0da264a1b993b40f5", + "revision": "e4c11ab63bc0498db4fc54a4", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83549,10 +61209,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "3ee3777908824ae3b9f22631", + "revision": "38786fc2790b4a0da38d1c43", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83572,24 +61232,12 @@ "installment_amount": 1200, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "5da5e6dca6964fb488335928", + "revision": "215361990403410f86488034", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83606,18 +61254,9 @@ "total_amount": 1200, "id": 1683548182568, "contract_id": "1680571158806", - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-05-08T12:16:22.568Z", + "date_last_updated": "2023-05-08T12:16:22.568Z", + "date_of_expiration": "2023-05-08T12:16:22.568Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -83625,10 +61264,10 @@ "currency_id": "BRL", "history_id": 1683548182568 }, - "revision": "e230cc2e05b5411083fb5fdd", + "revision": "cbf8e8faee5947d99cfe6a66", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83636,10 +61275,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "c52030b55fcf4b55a2595cb9", + "revision": "ce2113ae259743e5a45de8ba", "revision_nr": 1, - "created": 1701459383524, - "modified": 1701459383524 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83659,24 +61298,12 @@ "installment_amount": 1200, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "7796d8312fbb4895933052ef", + "revision": "9bdf9ef2923a4a5bb60b12ec", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83693,18 +61320,9 @@ "total_amount": 1200, "id": 1684367503606, "contract_id": "1680571158806", - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-05-17T23:51:43.606Z", + "date_last_updated": "2023-05-17T23:51:43.606Z", + "date_of_expiration": "2023-05-17T23:51:43.606Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -83712,10 +61330,10 @@ "currency_id": "BRL", "history_id": 1684367503606 }, - "revision": "2a4f4312f3224935806c2d98", + "revision": "1edcbc401e4f45ed8f81f694", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83723,10 +61341,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "409d24c07f9e405988d47296", + "revision": "2770ef0719514b4ab7fffbd0", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83736,24 +61354,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320, - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "amount": 320 }, - "revision": "31e4548151804692b74322f7", + "revision": "29d273dbfe88441c8c4f0181", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83761,10 +61367,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1d9270f7648e481dbe216248", + "revision": "09e1b00ff87d47ccb5a1604e", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83772,10 +61378,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "9cb51aa73c9b4893afa68106", + "revision": "cc4fba37057842f496a43d2a", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83790,28 +61396,19 @@ "total_amount": 2320, "history_id": 1684367721554, "id": 1684367721554, - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-05-17T23:55:21.554Z", + "date_last_updated": "2023-05-17T23:55:21.554Z", + "date_of_expiration": "2023-06-16T23:55:21.554Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "d4117abe75ad4478b6b3976c", + "revision": "200e4c516e0e429196697dce", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83819,10 +61416,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "3d3ff6ae44c24cb7ae83879b", + "revision": "d9ff457b43c14e34901c86b5", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83842,24 +61439,12 @@ "installment_amount": 290, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "8ad3849942554a6a94d07edc", + "revision": "e2009e31ff91420abb2edd17", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83876,18 +61461,9 @@ "total_amount": 290, "id": 1684415962143, "contract_id": "1684367721554", - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-05-18T13:19:22.143Z", + "date_last_updated": "2023-05-18T13:19:22.143Z", + "date_of_expiration": "2023-05-18T13:19:22.143Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -83895,10 +61471,10 @@ "currency_id": "BRL", "history_id": 1684415962143 }, - "revision": "9e41934437084e10ae79ad36", + "revision": "5b4e27c266d8450f8b1cc114", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83906,10 +61482,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "520fc21317504dd78ea4a3a8", + "revision": "c8a679e9f41c4278beac234a", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83917,24 +61493,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "b10ca97307864889b5ec7929", + "revision": "60e9955cb99a4454a77a2d31", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83949,18 +61513,9 @@ "total_amount": 1600, "history_id": 1684544477879, "id": 1684544477879, - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-05-20T01:01:17.879Z", + "date_last_updated": "2023-05-20T01:10:36.886Z", + "date_of_expiration": "2023-06-19T01:01:17.879Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -83970,10 +61525,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d4dd74352e4d4f779ccfbf6f", + "revision": "f3be437676bf4169b25449e2", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -83981,10 +61536,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "7df55f8ef5a140188524b693", + "revision": "a007894193a84fbdb703aeb6", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -84002,24 +61557,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "a6bf7c8da87a4ce1873a7f6b", + "revision": "81ffa0105d6c4cdf895d7b88", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -84035,18 +61578,9 @@ "original_amount": 77493341, "total_amount": 77493341, "id": 1684624390329, - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-05-20T23:13:10.329Z", + "date_last_updated": "2023-05-20T23:13:10.329Z", + "date_of_expiration": "2023-05-20T23:13:10.329Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84055,10 +61589,10 @@ "history_id": 1684624390329, "description": "Compra de 77.493.341,00 IVIP por 15.910,00 BRL" }, - "revision": "85590088514542c08f538e28", + "revision": "eb7d93b418fc40acbbbd5266", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -84068,24 +61602,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 5, - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "amount": 5 }, - "revision": "deb1d93a420f424f9c0c5fec", + "revision": "112df84763ac4420b9572e7c", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -84093,10 +61615,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "323c22a99a7c4417863fa8e9", + "revision": "6967cbd16567403cbb820e22", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -84104,10 +61626,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "6593caebfdb942c7b9ae1972", + "revision": "16225fff88274513a4a9d473", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -84122,28 +61644,19 @@ "total_amount": 255, "history_id": 1684661775049, "id": 1684661775049, - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-05-21T09:36:15.049Z", + "date_last_updated": "2023-05-21T09:36:15.049Z", + "date_of_expiration": "2023-06-20T09:36:15.049Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "61584bd0d2ad4d92ade38fd8", + "revision": "f113123d1bfb4054afe87355", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -84151,10 +61664,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 255,00", - "revision": "972ba6ea309d4b85961a54fb", + "revision": "c413fbd5211d4f35b051b2df", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509578, + "modified": 1701463509578 } }, { @@ -84172,24 +61685,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "bcb3d536c16e41e59c76a351", + "revision": "0327cbf41df24ff8b7c96cac", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84205,18 +61706,9 @@ "original_amount": 1218292, "total_amount": 1218292, "id": 1684661800868, - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-05-21T09:36:40.868Z", + "date_last_updated": "2023-05-21T09:36:40.868Z", + "date_of_expiration": "2023-05-21T09:36:40.868Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84225,10 +61717,10 @@ "history_id": 1684661800868, "description": "Compra de 1.218.292,00 IVIP por 250,00 BRL" }, - "revision": "9e03ddc29bab4f8694e4a7d8", + "revision": "0b34f2b71ea845ac8de29d25", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84236,24 +61728,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "e2ddaf72f3dc4b4683c39cf1", + "revision": "72d393aa7bbd4adaaf8d3aa1", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84268,18 +61748,9 @@ "total_amount": 255, "history_id": 1685452383443, "id": 1685452383443, - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-05-30T13:13:03.443Z", + "date_last_updated": "2023-05-30T22:32:00.714Z", + "date_of_expiration": "2023-06-29T13:13:03.443Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -84289,10 +61760,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5825972325a649ff8d05446c", + "revision": "ff670190e10a438f97f2a643", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84300,10 +61771,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 255,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "b759f26fa59d442fb034f4b1", + "revision": "7222608430cf47ff9323b87e", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84323,24 +61794,12 @@ "installment_amount": 255, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "40b557ef598d4fa4b205d77f", + "revision": "5cf366f3899b42438514868b", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84357,18 +61816,9 @@ "total_amount": 255, "id": 1685486477860, "contract_id": "1684661775049", - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-05-30T22:41:17.860Z", + "date_last_updated": "2023-05-30T22:41:17.860Z", + "date_of_expiration": "2023-05-30T22:41:17.860Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -84376,10 +61826,10 @@ "currency_id": "BRL", "history_id": 1685486477860 }, - "revision": "ddbd9c284e2c42c29e5f069f", + "revision": "74c92a9624774de89c22a9aa", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84387,10 +61837,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 1 no valor de 255,00 BRL referente ao contrato 1684661775049", - "revision": "c28b2c8d2273418695809bff", + "revision": "6b6201daf4944961b482a58e", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84408,24 +61858,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "bccf266259ff4a0786eb4f8d", + "revision": "d83f8cc1c8b24b86b561527f", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84440,18 +61878,9 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667437011, - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-06-02T00:57:17.011Z", + "date_last_updated": "2023-06-02T00:57:17.011Z", + "date_of_expiration": "2025-06-02T00:57:17.011Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84459,10 +61888,10 @@ "currency_id": "IVIP", "history_id": 1685667437011 }, - "revision": "785e23930faa44368a6a9a38", + "revision": "61ba9307de4647c4a692a650", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84470,10 +61899,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "5a31a1c45abb4599b94e827b", + "revision": "f45931a9bd90468ba09f965a", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84491,24 +61920,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "01ff16642b5840539a9f43b8", + "revision": "4336d654b9c948e09128506e", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84523,18 +61940,9 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667452001, - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-06-02T00:57:32.001Z", + "date_last_updated": "2023-06-02T00:57:32.001Z", + "date_of_expiration": "2024-06-02T00:57:32.001Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84542,10 +61950,10 @@ "currency_id": "IVIP", "history_id": 1685667452001 }, - "revision": "ed57efc732ef47a4845f2ac3", + "revision": "b052c9c5bfc844b49b8c0d71", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84553,10 +61961,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "3742efce2e334ddc94191de0", + "revision": "5c9ca62383f143f99d63cc04", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84574,24 +61982,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "a231af704b4a4ecfb71e34db", + "revision": "1c0db971b0294ec18651240a", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84606,18 +62002,9 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667466065, - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-06-02T00:57:46.065Z", + "date_last_updated": "2023-06-02T00:57:46.065Z", + "date_of_expiration": "2023-12-02T00:57:46.065Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84625,10 +62012,10 @@ "currency_id": "IVIP", "history_id": 1685667466065 }, - "revision": "558e68786cb64feca4d08360", + "revision": "bd1fe47e61474da288742171", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84636,10 +62023,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", - "revision": "0621c6c2eab8403b8217b402", + "revision": "0807e19ce02946c5a47856ab", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84657,24 +62044,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "bc729262085148aba44d2a2d", + "revision": "f9775195c697485093986aaa", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84689,18 +62064,9 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667479611, - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-06-02T00:57:59.611Z", + "date_last_updated": "2023-06-02T00:57:59.611Z", + "date_of_expiration": "2023-07-02T00:57:59.611Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84708,10 +62074,10 @@ "currency_id": "IVIP", "history_id": 1685667479611 }, - "revision": "bd31f0924ef546bbaace1caf", + "revision": "5347daaa024c4dcc927bdb49", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84719,10 +62085,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "25e7f73027c1407eba23b41a", + "revision": "c66d1f790d8542a597dac673", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84740,24 +62106,12 @@ "installment_amount": 22711633, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "dcdebdc1c3d84b38a52b3125", + "revision": "de6c320f91fa4d9795512141", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84772,18 +62126,9 @@ "original_amount": 22711633, "total_amount": 22711633, "id": 1687307213896, - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-06-21T00:26:53.896Z", + "date_last_updated": "2023-06-21T00:26:53.896Z", + "date_of_expiration": "2024-06-21T00:26:53.896Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84791,10 +62136,10 @@ "currency_id": "IVIP", "history_id": 1687307213896 }, - "revision": "99cd47bbe0644b89811407f3", + "revision": "77ea642120f9469ea1742537", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84802,10 +62147,10 @@ "content": { "type": "STRING", "value": "Investimento de 22.711.633,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", - "revision": "ad61528d3cd84576a10037ce", + "revision": "6e1ce96b9ef1400994fb9d4c", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84823,24 +62168,12 @@ "installment_amount": 24000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "4f85a9f0209245c4a9d31963", + "revision": "e8eae7f4bbff4183ae55420f", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84855,18 +62188,9 @@ "original_amount": 24000000, "total_amount": 24000000, "id": 1687313762388, - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-06-21T02:16:02.388Z", + "date_last_updated": "2023-06-21T02:16:02.388Z", + "date_of_expiration": "2025-06-21T02:16:02.388Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84874,10 +62198,10 @@ "currency_id": "IVIP", "history_id": 1687313762388 }, - "revision": "b5b455acd8304e888524249e", + "revision": "94f2859fc14f40fea1e1bde1", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84885,10 +62209,10 @@ "content": { "type": "STRING", "value": "Investimento de 24.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2025", - "revision": "15a3d0b125794333901431c8", + "revision": "81069b1158984eb6ac014ede", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84906,24 +62230,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "3613a20c1d094e469aeeb588", + "revision": "42f064c2751c45c39575266d", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84938,18 +62250,9 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1688400402521, - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-07-03T16:06:42.521Z", + "date_last_updated": "2023-07-03T16:06:42.521Z", + "date_of_expiration": "2023-07-03T16:06:42.521Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84958,10 +62261,10 @@ "history_id": 1688400402521, "wasDebited": true }, - "revision": "518d75e0d4e04f218cb835e0", + "revision": "b76577a8a1df451eb66939e0", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84969,10 +62272,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "1ef968e1d71d4813b45c69e0", + "revision": "391d8042003949aea6d2e599", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -84990,24 +62293,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "5db9fdefc93b49e68bab7fca", + "revision": "a571ba00dfc34eaf93a5a9fb", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -85022,18 +62313,9 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1688403044242, - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-07-03T16:50:44.242Z", + "date_last_updated": "2023-07-03T16:50:44.242Z", + "date_of_expiration": "2023-08-03T16:50:44.242Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -85041,10 +62323,10 @@ "currency_id": "IVIP", "history_id": 1688403044242 }, - "revision": "887f68d75e144a89a4ee21cd", + "revision": "a52e72bdcb454f55952f9530", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -85052,10 +62334,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "66fdbed081004e1fabaefa34", + "revision": "072aa211a20c4a138d460666", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509579, + "modified": 1701463509579 } }, { @@ -85063,24 +62345,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "7b9731c9d655443b951ae4d9", + "revision": "219da7b8d5784dd6ba6e9f02", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85095,18 +62365,9 @@ "total_amount": 1500, "history_id": 1689132091915, "id": 1689132091915, - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-07-12T03:21:31.915Z", + "date_last_updated": "2023-07-13T01:07:51.960Z", + "date_of_expiration": "2023-08-11T03:21:31.915Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -85116,10 +62377,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "dffd329626cd4a93860eff2c", + "revision": "8c98638a83c64988b86e5153", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85127,10 +62388,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "4f4efb7629af450cb309c5fa", + "revision": "969419b8783a4af78157f62d", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85150,24 +62411,12 @@ "installment_amount": 1200, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "28f47712c2c6490d8037d948", + "revision": "5ac7216eccbc410a8bb29034", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85184,18 +62433,9 @@ "total_amount": 1200, "id": 1689211234387, "contract_id": "1680571158806", - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-07-13T01:20:34.387Z", + "date_last_updated": "2023-07-13T01:20:34.387Z", + "date_of_expiration": "2023-07-13T01:20:34.387Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -85203,10 +62443,10 @@ "currency_id": "BRL", "history_id": 1689211234387 }, - "revision": "11acca73aae340ea87b7ae27", + "revision": "7e41472e3f6c404bbfafa38d", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85214,10 +62454,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "735b7a985dbb4249baa8dbab", + "revision": "949546e617ec4776b3c64ef2", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85237,24 +62477,12 @@ "installment_amount": 290, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - } + "costs": [] }, - "revision": "2ce4ad492e96403a84c607aa", + "revision": "22da4ac95bd7476390650e92", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85271,18 +62499,9 @@ "total_amount": 290, "id": 1689211234773, "contract_id": "1684367721554", - "date_created": { - "type": 6, - "value": 1701459383525 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383525 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383525 - }, + "date_created": "2023-07-13T01:20:34.773Z", + "date_last_updated": "2023-07-13T01:20:34.773Z", + "date_of_expiration": "2023-07-13T01:20:34.773Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -85290,10 +62509,10 @@ "currency_id": "BRL", "history_id": 1689211234773 }, - "revision": "e7dfa44b835548bc883ce5a6", + "revision": "80a79a47827f42ae965ff2be", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85301,10 +62520,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "9c349fed326e4999bed2a8bc", + "revision": "c165d37e28d44092b2822d42", "revision_nr": 1, - "created": 1701459383525, - "modified": 1701459383525 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85322,24 +62541,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - } + "costs": [] }, - "revision": "fc98636719374ada8fe28215", + "revision": "7cc6e2ce498842b7972c0ac9", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85354,18 +62561,9 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1691081485992, - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - }, + "date_created": "2023-08-03T16:51:25.992Z", + "date_last_updated": "2023-08-03T16:51:25.992Z", + "date_of_expiration": "2023-08-03T16:51:25.992Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -85374,10 +62572,10 @@ "history_id": 1691081485992, "wasDebited": true }, - "revision": "84f28728e1a946e3b68e8b0d", + "revision": "40a338c634b4416293d5fe8f", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85385,10 +62583,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "c6386aa41d5e4afe81659b50", + "revision": "1297232b5359427b8fe3525f", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85404,24 +62602,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - } + "costs": [] }, - "revision": "5dcd11af94ea487397e1046d", + "revision": "ed42b58d1a5b4ad399e79397", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85429,10 +62615,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1691082200859", - "revision": "440776db98a1451eacc0f4fa", + "revision": "b0024d07a9664b36b1d2caae", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85447,18 +62633,9 @@ "total_amount": 8000000, "id": 1691082200859, "history_id": 1691082200859, - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - }, + "date_created": "2023-08-03T17:03:20.859Z", + "date_last_updated": "2023-08-03T17:03:20.859Z", + "date_of_expiration": "2023-09-03T17:03:20.858Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -85466,10 +62643,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "89f8e3f88be34500a6105c04", + "revision": "c7698ca7c10c4b4d9d7b14c9", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85477,10 +62654,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "3467f7045d0744948ad7aca8", + "revision": "084da3763bf344518d318468", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85489,24 +62666,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-10T23:12:17.743Z", - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - } + ".val": "2023-09-10T23:12:17.743Z" }, - "revision": "d46580cd7bc74afe9b844421", + "revision": "b7a3e208ba3541c589a49450", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85522,24 +62687,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - } + "costs": [] }, - "revision": "1e62b0feb8f64da39ecba278", + "revision": "6fa0fe35804540c8bdd05fc2", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85547,10 +62700,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1691795537743", - "revision": "c831af4eafc846f186e64472", + "revision": "ee166b72612741ce9b0b1848", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85565,14 +62718,8 @@ "total_amount": 1490, "id": 1691795537743, "history_id": 1691795537743, - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, + "date_created": "2023-08-11T23:12:17.743Z", + "date_last_updated": "2023-08-12T01:52:36.867Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -85582,16 +62729,12 @@ "date_approved": "2023-08-12T01:52:36.867Z", "money_release_date": "2023-08-12T01:52:36.867Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - } + "wasDebited": true }, - "revision": "43af3d1f7a3c4c6899750d40", + "revision": "131ec2cc9a744f4fb5827ae2", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85599,10 +62742,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.490,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "1cf89304f2b64935bf4fc402", + "revision": "70111cfd80044f9fafb90e48", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85622,24 +62765,12 @@ "installment_amount": 1200, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - } + "costs": [] }, - "revision": "4e62bdda3dd648e7bfbd578a", + "revision": "8fea75bf6d77418199fc75b6", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85656,18 +62787,9 @@ "total_amount": 1200, "id": 1691838943906, "contract_id": "1680571158806", - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - }, + "date_created": "2023-08-12T11:15:43.906Z", + "date_last_updated": "2023-08-12T11:15:43.906Z", + "date_of_expiration": "2023-08-12T11:15:43.906Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -85675,10 +62797,10 @@ "currency_id": "BRL", "history_id": 1691838943906 }, - "revision": "c274fd8313a5445abda27378", + "revision": "cd5ba2cc75b84f108c5d0cf6", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85686,10 +62808,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "888f7cc84dd94c27beb5d315", + "revision": "18050ee201744e1d9dfebd4b", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85709,24 +62831,12 @@ "installment_amount": 290, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - } + "costs": [] }, - "revision": "44fac8953d5743fbb4051df4", + "revision": "fad836c048f349c89f4df0a1", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85743,18 +62853,9 @@ "total_amount": 290, "id": 1691838944125, "contract_id": "1684367721554", - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - }, + "date_created": "2023-08-12T11:15:44.125Z", + "date_last_updated": "2023-08-12T11:15:44.125Z", + "date_of_expiration": "2023-08-12T11:15:44.125Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -85762,10 +62863,10 @@ "currency_id": "BRL", "history_id": 1691838944125 }, - "revision": "336e98378807444ca6a97ef2", + "revision": "3fed7e49407c440fa52bffe3", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85773,10 +62874,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "7268c04641c04f0382381972", + "revision": "01e290dc3de0466ca112d86b", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85792,24 +62893,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - } + "costs": [] }, - "revision": "9c8e4da7398a409293c0771b", + "revision": "454e8a2505a845e395c1cd03", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85817,10 +62906,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1693760654707", - "revision": "69b8bbce5edf485897fea46e", + "revision": "30739a192b504bfcaada89b0", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85835,18 +62924,9 @@ "total_amount": 8160000, "id": "1693760654707", "history_id": "1693760654707", - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - }, + "date_created": "2023-09-03T17:04:14.707Z", + "date_last_updated": "2023-09-03T17:04:14.707Z", + "date_of_expiration": "2023-09-03T17:04:14.707Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -85854,10 +62934,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "b40a30380781440d9df0b40c", + "revision": "af6268b122d3464a9456f05e", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85865,10 +62945,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "d5add494086e48a3b505411a", + "revision": "90d630cd52944e11b68d2603", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85884,24 +62964,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - } + "costs": [] }, - "revision": "54633105807742579b0979c9", + "revision": "61a1ca1f87b1424284dcca28", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85909,10 +62977,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1693869394011", - "revision": "9527e6b890fb4338879ef6cc", + "revision": "dcfec6bbd9474aadb68ea943", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85927,18 +62995,9 @@ "total_amount": 5000000, "id": "1693869394011", "history_id": "1693869394011", - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - }, + "date_created": "2023-09-04T23:16:34.011Z", + "date_last_updated": "2023-10-04T13:04:00.740Z", + "date_of_expiration": "2023-10-04T23:16:34.011Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -85949,10 +63008,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "e74456fbb1ea428bbc05e944", + "revision": "21df33408b3445e2a44fbf5c", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85960,10 +63019,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/10/2023 - Y12XDT27", - "revision": "4656b8089d85446597eeed0a", + "revision": "f57010b6c18c43639f1fcbcb", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -85972,24 +63031,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-12T01:25:11.857Z", - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - } + ".val": "2023-10-12T01:25:11.857Z" }, - "revision": "31673a6cbfeb478d85828d48", + "revision": "d716d2116ef5476f8c9fad65", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86005,24 +63052,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - } + "costs": [] }, - "revision": "2a369f16029b460f900e21ca", + "revision": "fdff504fbe6148bdb03aecd6", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86030,10 +63065,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694481911857", - "revision": "4515e43ec8754e6a8adf689c", + "revision": "b02b5982ceea4bd2ba2a0eea", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86048,14 +63083,8 @@ "total_amount": 1490, "id": "1694481911857", "history_id": "1694481911857", - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, + "date_created": "2023-09-12T01:25:11.857Z", + "date_last_updated": "2023-09-13T17:37:38.166Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -86065,16 +63094,12 @@ "date_approved": "2023-09-13T17:37:38.166Z", "money_release_date": "2023-09-13T17:37:38.166Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - } + "wasDebited": true }, - "revision": "1120e350b3c54552a3f16bc3", + "revision": "ea7439c216e34253bcb64ae9", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86082,10 +63107,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.490,00 BRL para a carteira iVip 0983.0244.9130.1420-80", - "revision": "b19cbbf98cf042de96b87fe9", + "revision": "f4814982ef8c4f91ba29314b", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86103,24 +63128,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 5, - "installments_payable": 5, - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - } + "installments_payable": 5 }, - "revision": "01ee28bd097e4d4c8ca06034", + "revision": "33ac66571c8b4a3f86375ac6", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86128,10 +63141,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694627290479", - "revision": "2fe40a60a76547ba92675d85", + "revision": "dfacb5336d8b4e2487be5a11", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86146,18 +63159,9 @@ "total_amount": 1200, "id": "1694627290479", "history_id": "1694627290479", - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - }, + "date_created": "2023-09-13T17:48:10.479Z", + "date_last_updated": "2023-09-13T17:48:10.479Z", + "date_of_expiration": "2023-09-13T17:48:10.479Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -86165,10 +63169,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "0c16d3e1303c4a19bc105333", + "revision": "a0b853b9acdd4c8f9367239a", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86176,10 +63180,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 5 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "902a651cdd064ec6a2671629", + "revision": "bee19c3e9f3843569c45b43d", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86197,24 +63201,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 4, - "installments_payable": 4, - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - } + "installments_payable": 4 }, - "revision": "8dd609c84cef4829ba52f32a", + "revision": "08681a78c3374ae0bd9eddec", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86222,10 +63214,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694627290565", - "revision": "f2f509a9863a4f0e9a4e1c3e", + "revision": "749cc22cfdf24eeca7902c25", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86240,18 +63232,9 @@ "total_amount": 290, "id": "1694627290565", "history_id": "1694627290565", - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - }, + "date_created": "2023-09-13T17:48:10.565Z", + "date_last_updated": "2023-09-13T17:48:10.565Z", + "date_of_expiration": "2023-09-13T17:48:10.565Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -86259,10 +63242,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "355907bdee7a487d94acd338", + "revision": "4b3adafd825140c3880efda7", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86270,10 +63253,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "c1705e3a5492431ab2a506d9", + "revision": "31c5c3152e3e48cd9b79eff5", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86289,24 +63272,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - } + "costs": [] }, - "revision": "97f73d46d4c84f3f9c74b4fb", + "revision": "1c356130a624484b9802a75c", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86314,10 +63285,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696555808953", - "revision": "bfacbb38ead34b479e021425", + "revision": "4498b2ce2a9043669d425d94", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86333,18 +63304,9 @@ "total_amount": 8000000, "id": "1696555808953", "history_id": "1696555808953", - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - }, + "date_created": "2023-10-06T01:30:08.953Z", + "date_last_updated": "2023-10-06T01:30:08.953Z", + "date_of_expiration": "2023-11-06T01:30:08.931Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -86352,10 +63314,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "446e3f64229e4fa485aa7afa", + "revision": "8da03dbf44f84eb5bfdc29eb", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86363,10 +63325,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", - "revision": "4ba1425802934c8695b2b6ae", + "revision": "b0404865a6874653933dd2e2", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86375,24 +63337,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-08T02:49:04.331Z", - "date_created": { - "type": 6, - "value": 1701459383526 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383526 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383526 - } + ".val": "2023-11-08T02:49:04.331Z" }, - "revision": "ed292a8ae89e4704953acd53", + "revision": "176fc6d394d24110a57eb33e", "revision_nr": 1, - "created": 1701459383526, - "modified": 1701459383526 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86408,24 +63358,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383527 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383527 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383527 - } + "costs": [] }, - "revision": "795dd22b297243f1bc439def", + "revision": "874d4075bb0e4c1c832cd28c", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86433,10 +63371,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696819744331", - "revision": "3aabf2cd679c4074a07e513e", + "revision": "1ea62b47f6704d7fafc55757", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86452,14 +63390,8 @@ "total_amount": 1490, "id": "1696819744331", "history_id": "1696819744331", - "date_created": { - "type": 6, - "value": 1701459383527 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383527 - }, + "date_created": "2023-10-09T02:49:04.331Z", + "date_last_updated": "2023-10-09T12:39:01.326Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -86469,16 +63401,12 @@ "date_approved": "2023-10-09T12:39:01.326Z", "money_release_date": "2023-10-09T12:39:01.326Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383527 - } + "wasDebited": true }, - "revision": "f176f7721ccd4a9495bf8c4f", + "revision": "4c6bebed2b694750a962cd85", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86486,10 +63414,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.490,00 BRL para a carteira iVip 0983.0244.9130.1420-80", - "revision": "ea1bad131a9048549048570f", + "revision": "21d15520549b4dff90ca4f8a", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86507,24 +63435,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 6, - "installments_payable": 4, - "date_created": { - "type": 6, - "value": 1701459383527 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383527 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383527 - } + "installments_payable": 4 }, - "revision": "bcaf8f4f6bd145f8a4233993", + "revision": "24bc5bc6a3344b3e87393b25", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86532,10 +63448,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696861214347", - "revision": "0c2f8d5774d84a84a91f630b", + "revision": "4821f9f0f7324d12aa6a3013", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86551,18 +63467,9 @@ "total_amount": 1200, "id": "1696861214347", "history_id": "1696861214347", - "date_created": { - "type": 6, - "value": 1701459383527 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383527 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383527 - }, + "date_created": "2023-10-09T14:20:14.347Z", + "date_last_updated": "2023-10-09T14:20:14.347Z", + "date_of_expiration": "2023-10-09T14:20:14.347Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -86570,10 +63477,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "93008954f0c34a9e94c07c0c", + "revision": "effac259c6c84b6ba380b315", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86581,10 +63488,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 6 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "18e3260385b34703b6b8bb10", + "revision": "0b732adb6a274cbbae3c601e", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509580, + "modified": 1701463509580 } }, { @@ -86602,24 +63509,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 5, - "installments_payable": 3, - "date_created": { - "type": 6, - "value": 1701459383527 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383527 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383527 - } + "installments_payable": 3 }, - "revision": "33ee2e8f354d4c3bac30de24", + "revision": "d7b0c43cadb94f48bad59dbb", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86627,10 +63522,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696861218511", - "revision": "a9687bb16b0c45bfb8146257", + "revision": "b929f48194cc47bf9fe9ed72", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86646,18 +63541,9 @@ "total_amount": 290, "id": "1696861218511", "history_id": "1696861218511", - "date_created": { - "type": 6, - "value": 1701459383527 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383527 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383527 - }, + "date_created": "2023-10-09T14:20:18.511Z", + "date_last_updated": "2023-10-09T14:20:18.511Z", + "date_of_expiration": "2023-10-09T14:20:18.511Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -86665,10 +63551,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "2df85cf05d2f4675b1a064c3", + "revision": "3aaf244fafa64695a3ebbe44", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86676,10 +63562,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 5 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "a5124bec447d4c1a8ec20885", + "revision": "b8760b738a3743e08afe2897", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86687,10 +63573,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f9011a3478eb4b818b03dc1e", + "revision": "70105ba8cb094628a24f3192", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86700,24 +63586,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000, - "date_created": { - "type": 6, - "value": 1701459383527 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383527 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383527 - } + "amount": 2000 }, - "revision": "02e9f7e44af04d2c932476e4", + "revision": "640977d455c44c6eb9229461", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86731,26 +63605,15 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { - "type": 6, - "value": 1701459383527 - }, + "date_created": "2023-04-04T01:19:18.806Z", "history_id": 1680571158806, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383527 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383527 - } + "status": "paid" }, - "revision": "dee30002367c408d97720509", + "revision": "9936482c0bab44989c427f3d", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86758,10 +63621,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "afa090801d8f4ebd95293349", + "revision": "d858f0504f5d4342b9647941", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86769,10 +63632,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "dc99c121a0a94379afb48878", + "revision": "f1d13f068c1a49f380600945", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86780,10 +63643,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9ca3c0ea9d0444349887cf97", + "revision": "faf90fd89581410c87b6d438", "revision_nr": 1, - "created": 1701459383527, - "modified": 1701459383527 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86793,24 +63656,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 2000 }, - "revision": "40c7362177954d95a78ad8ff", + "revision": "c31ffb7934214819802e080b", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86824,26 +63675,15 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-04-04T01:19:18.806Z", "history_id": 1680571158806, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "status": "paid" }, - "revision": "e2c36b1049ea40ad9f465994", + "revision": "d3337c753d7442cb86d093f0", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86851,10 +63691,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "8d837bb5d91e4d62af96417a", + "revision": "f8a4961314234d50be0ad3f4", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86862,10 +63702,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "6e27e451f11b48d2aeccc5b3", + "revision": "5513183481c14cd38d9996b8", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86875,24 +63715,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 320 }, - "revision": "200643777b7c403d9e4bf38e", + "revision": "15e676302a7e40158b98bbd1", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86906,26 +63734,15 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-05-17T23:55:21.554Z", "history_id": 1684367721554, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "status": "paid" }, - "revision": "f931fb4d59e54a27a2bba854", + "revision": "5f12470c308c47f9846e3f66", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86933,10 +63750,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "20bf1f6dc572420fbba22ab4", + "revision": "0d6ca59902c84212877c8d9e", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86944,10 +63761,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "5aea292850f0417e923f067f", + "revision": "24c760d394aa46cb843a3cde", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86957,24 +63774,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", - "amount": 5, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 5 }, - "revision": "ec1294c33cf24b07bae508df", + "revision": "b6129fd53cae464b8114924b", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -86988,26 +63793,15 @@ "total_amount": 255, "installments": 1, "installment_amount": 255, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-05-21T09:36:15.049Z", "history_id": 1684661775049, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "status": "paid" }, - "revision": "06bc8e205a16414aa1c58e2a", + "revision": "8bbfb442fdd344c8a7053910", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87015,10 +63809,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 255,00", - "revision": "7dca13bcdf024c148e672453", + "revision": "eaf8c3e95cdd44bdaeb45635", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87026,10 +63820,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "5765a79091e14a74a3471343", + "revision": "8268322f97d141ce9bea947e", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87037,10 +63831,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "85c1d4db189d46a594316ac5", + "revision": "4b0f95b03f344208b59d5116", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87050,24 +63844,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 2000 }, - "revision": "ed608d94f8124ffe931887dd", + "revision": "212490ae4b74469e8b2ecf6e", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87081,26 +63863,15 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-04-04T01:19:18.806Z", "history_id": 1680571158806, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "status": "paid" }, - "revision": "1687f031db2c486d8db5c4d5", + "revision": "076470166fb547049b97924c", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87108,10 +63879,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "54b0d5643f9e4d4e8f518cc8", + "revision": "f6039631e9e045628f8127c9", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87119,10 +63890,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "9801369670a34320884737c4", + "revision": "483126a890f24a8f9a41f44f", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87132,24 +63903,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 320 }, - "revision": "b827220bb3824de2add3990f", + "revision": "bc112ff7a8e44fd1957849b2", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87163,26 +63922,15 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-05-17T23:55:21.554Z", "history_id": 1684367721554, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "status": "paid" }, - "revision": "ce1e417ce0074e4ca7158b0d", + "revision": "22a5d63535f4434e8fca18b5", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87190,10 +63938,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "52bd7929ee0f43a3af84382b", + "revision": "1985ad16b185453da8492e38", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87201,10 +63949,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "86e7dee50aff4374b098edff", + "revision": "311f97b3c75e483c9ef3c3c3", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87212,10 +63960,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e56666c4ba214d9d9169e871", + "revision": "f3c3ea0bb690488cb15f2a7a", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87225,24 +63973,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 2000 }, - "revision": "6a1aa0417416457c9fcff76c", + "revision": "0564d19498df4a9db2c2f104", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87256,26 +63992,15 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-04-04T01:19:18.806Z", "history_id": 1680571158806, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "status": "paid" }, - "revision": "95d29d8eb7954fa591460378", + "revision": "69d87d1a20b44e8089147b1e", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87283,10 +64008,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "7460a3fb342a4b2e887324f7", + "revision": "a95b2aa0e62b4cc5b73855c3", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87294,10 +64019,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "bc9b266a7cbc4eb191deabd2", + "revision": "c280f21496cf43538f4fefc0", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87307,24 +64032,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 320 }, - "revision": "449bbba4352349fc9e886221", + "revision": "cd285f770d4c4785955446e6", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87338,26 +64051,15 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-05-17T23:55:21.554Z", "history_id": 1684367721554, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "status": "paid" }, - "revision": "3e8d3a2783594baab2bacc38", + "revision": "9fcef30f86d34dd1a8af746b", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87365,10 +64067,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "00cbfb005dbf4a2d8d495923", + "revision": "c007d68a491b4112a03ee3d6", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87376,10 +64078,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "19866661bc4a4916a97cb35b", + "revision": "e14e7ffb0b004f77b617e5b1", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87387,10 +64089,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7e3664a6a4f0475a80b17682", + "revision": "09ae40905da544a5b671645a", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87400,24 +64102,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 2000 }, - "revision": "6448ff1e8dc845d88a997d49", + "revision": "f6cc0639909c4fcab89e567e", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87431,26 +64121,16 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-04-04T01:19:18.806Z", "history_id": 1680571158806, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "date_last_updated": "2023-09-13T17:48:10.497Z" }, - "revision": "6d8a58e2ba004daaaacb5ba4", + "revision": "7cda8d59eaa8499996f39be3", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87458,10 +64138,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "62767c489da440699a792211", + "revision": "de4772a362bc4ce99dfaa030", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87469,10 +64149,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f7cc0ee8bd2f4b07a29b141e", + "revision": "92bb792491c647c5a985f4e6", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87482,24 +64162,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 320 }, - "revision": "164e52578475489babe64876", + "revision": "73f879b9db4b4b41b310a57e", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87513,26 +64181,16 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-05-17T23:55:21.554Z", "history_id": 1684367721554, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "date_last_updated": "2023-09-13T17:48:10.583Z" }, - "revision": "ca861dc5dd9244cc8914a406", + "revision": "c09d8d6ad7744a0fb61e4e11", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87540,10 +64198,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "c683dbf14ab147da8adb1fb2", + "revision": "3c5bcb3a0bc84742a0579c70", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87551,10 +64209,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "d725e72e589a4a25a6fcfa10", + "revision": "f81f3e18d1854c2b83d5064e", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87562,10 +64220,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "43106cee82fd4bc6ac676432", + "revision": "553d08d3cdb94412b9639b09", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87575,24 +64233,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 2000 }, - "revision": "73c2b1e733e94e25af86f093", + "revision": "0c722243632840958b5603f5", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87606,26 +64252,16 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-04-04T01:19:18.806Z", "history_id": 1680571158806, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "date_last_updated": "2023-10-09T14:20:18.119Z" }, - "revision": "0e877be40e224ba6b736cd6d", + "revision": "64301a7bfdd9409380ba0c9b", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87633,10 +64269,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "19d7a52d18ca4203aa1cee04", + "revision": "ea7b26ca011a4e35abdd3dca", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87644,10 +64280,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "54e713d736c24b4d99867836", + "revision": "d857b255aced432989593339", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87657,24 +64293,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 320 }, - "revision": "d4302648fdc849e594cbb84d", + "revision": "c62535f445d544a2ac902054", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87688,26 +64312,16 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-05-17T23:55:21.554Z", "history_id": 1684367721554, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "date_last_updated": "2023-10-09T14:20:18.540Z" }, - "revision": "b9dcab03d1564025b25147ab", + "revision": "136a3d0e76e64f109f42233e", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87715,10 +64329,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "fb40bfed731940c2b865e9e7", + "revision": "3f97a9d42dba4cbe8ca36136", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87726,10 +64340,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "421015b23657476187c1ce25", + "revision": "b15343f6cb1440a58652f242", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87737,10 +64351,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6002210fc3364274986a3fd2", + "revision": "acb02d5d7a0d486390464ca5", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87750,24 +64364,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 2000 }, - "revision": "db0da44b594c41a8937cc013", + "revision": "46069d123f974385841709f9", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87781,25 +64383,14 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-04-04T01:19:18.806Z", "history_id": 1680571158806, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "currency_id": "BRL" }, - "revision": "6603b79652dc4a56875e7d43", + "revision": "de80a92774494cb7bdeb294c", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87807,10 +64398,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "958555da68914e928708b604", + "revision": "9979e235a1894f86b5f874bc", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87818,10 +64409,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "c55ce38d823e486198e6138f", + "revision": "67d7003acc8f4b59abf70a48", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87831,24 +64422,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 320 }, - "revision": "cace3b642bff45acbed9013c", + "revision": "77c90e04178d42f8a568a40c", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87862,25 +64441,14 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-05-17T23:55:21.554Z", "history_id": 1684367721554, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "currency_id": "BRL" }, - "revision": "57be233fb7da4a2a84352052", + "revision": "4193ed01bbb841ab880e6897", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87888,10 +64456,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "bb77681719614000af255694", + "revision": "ba6cdbed8ba94908a74cb9d7", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87899,10 +64467,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "42154e3be07e4c4d80db88eb", + "revision": "de06ad2d3e1347da99757b1f", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87910,10 +64478,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ae0db2331f1a48198256bd61", + "revision": "e453792d3f3d42df972e1ba7", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87923,24 +64491,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 2000 }, - "revision": "858062934c484f2b9964f2e7", + "revision": "078115754f19496c8fae268e", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87954,25 +64510,14 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-04-04T01:19:18.806Z", "history_id": 1680571158806, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "currency_id": "BRL" }, - "revision": "f9d0cf7c11ab473c9b631d89", + "revision": "bdeafa4e4fc04ee0bee176a1", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87980,10 +64525,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "6469a804ef3145b08fbfa58c", + "revision": "09cabf88edde4e7d8e27166f", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -87991,10 +64536,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "4d2c52e0b87c420bbef4d9ac", + "revision": "86472cab23f24d0aa91af467", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88004,24 +64549,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 320 }, - "revision": "621f3ab8089c4ce783d2ec87", + "revision": "fa02d1f7458a40128b03478c", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88035,25 +64568,14 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-05-17T23:55:21.554Z", "history_id": 1684367721554, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "currency_id": "BRL" }, - "revision": "aa8c61306be74a399456e8d4", + "revision": "f0a1b672cd5e423ea8591594", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88061,10 +64583,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "766d00775de04dbd970549b3", + "revision": "9c660aaac7974d90885a344a", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88072,10 +64594,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "6b3fdd035cd94fa3b48684d9", + "revision": "e75163c5a42547f1b48601b0", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88083,10 +64605,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "53ff148a37334ad08d4e3476", + "revision": "fd7fd145730a4d01bde5ae3e", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88096,24 +64618,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 2000 }, - "revision": "85a7adedfa504a6d9d755b9b", + "revision": "053a85bd15cd41a5b5bd836c", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88127,25 +64637,14 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-04-04T01:19:18.806Z", "history_id": 1680571158806, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "currency_id": "BRL" }, - "revision": "672b60f9c1e54c6ea13120a8", + "revision": "5c31ea395d404d119ee7a283", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88153,10 +64652,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "48dfd2e95c0947b1aa1e6bf5", + "revision": "8c97dbdbf60e422ab7f5deec", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88164,10 +64663,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "40546710cdfb47cc9ede81c7", + "revision": "16a5615a3d66454b8b3e1041", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88177,24 +64676,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", - "amount": 320, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 320 }, - "revision": "05b04949f4f64da69f753753", + "revision": "49dad4affcad44018c313236", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88208,25 +64695,14 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-05-17T23:55:21.554Z", "history_id": 1684367721554, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "currency_id": "BRL" }, - "revision": "3fc3774b1bf14aba94f2c077", + "revision": "6d280062e5d7425f88cf1e9a", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88234,10 +64710,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "97455de5160b40459ae627e0", + "revision": "d5876f0792154d4aa7632c34", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88245,10 +64721,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "c8c90502f7d345f68ebcd9f6", + "revision": "f11ea18cb095478cb3206b26", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88256,10 +64732,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7a6035d502f646219bf6d282", + "revision": "53f9e068d873484f8709cb15", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88269,24 +64745,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 2000, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "amount": 2000 }, - "revision": "082902cd4a1c4a2da25baedb", + "revision": "e733f15e6c0b46398505cca9", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88300,25 +64764,14 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-04-04T01:19:18.806Z", "history_id": 1680571158806, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "currency_id": "BRL" }, - "revision": "63f4f010c3dc4fcdb2d56a30", + "revision": "5705eddb3e9549a4a61c0363", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88326,10 +64779,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "2320d4d9dafd47acab42e5af", + "revision": "10b2656133ff4d1e8447eec4", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88337,10 +64790,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b7d46d25b60c414087914ade", + "revision": "88db892cbf0b46b2943368de", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88348,10 +64801,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4c52373b2eea41f79a19d30a", + "revision": "df1e9e08f1014ad5904e2a73", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88359,10 +64812,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "59f4818e4c3d4387aed985e4", + "revision": "fcf72ad7fd8145c18dfc5a9f", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88373,24 +64826,12 @@ "approvedLimit": 10000, "limitUsed": 7250, "analysisRequested": "2023-04-04T01:13:28.027Z", - "lastReview": "2023-04-08T18:26:33.740Z", - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "lastReview": "2023-04-08T18:26:33.740Z" }, - "revision": "334937ad16e24dcbbf87f5d2", + "revision": "156121940a4d4c7daf83f573", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88402,24 +64843,12 @@ "dateValidity": 1680465637248, "totalValue": 7716.736, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "balancesModificacao": "2023-10-09T03:00:00.000Z" }, - "revision": "c948c2d304184146af73a2c8", + "revision": "ce8db0000285491f99620be5", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88427,10 +64856,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d55a438575534ccaaf98937b", + "revision": "0f8cb20a133e4ae7a006f0e2", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88438,10 +64867,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9d42fda831a54f68b9421507", + "revision": "c1c3a96a2c7a4250aae050ea", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88449,10 +64878,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2a2bd759589d475ebb977603", + "revision": "33428767dc7745ed9e944ce0", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509581, + "modified": 1701463509581 } }, { @@ -88461,24 +64890,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "limitUsed": 0 }, - "revision": "c53812f7322447b38702ddbd", + "revision": "cb952f68464d43319c2ccc6c", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509582, + "modified": 1701463509582 } }, { @@ -88489,24 +64906,12 @@ "dataModificacao": 1684118396230, "dateValidity": 1684118396230, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "currencyType": "USD" }, - "revision": "98acd894b78b488fb88b5480", + "revision": "abaeadb0938649c69972ebd6", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509582, + "modified": 1701463509582 } }, { @@ -88514,10 +64919,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c2b0aeee578a47c7aadde982", + "revision": "98a27433a828438b85f38a3d", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509582, + "modified": 1701463509582 } }, { @@ -88525,10 +64930,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c5f7fc67b7ec4c3abbb7855f", + "revision": "f853c78a9346495eb70d2403", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509582, + "modified": 1701463509582 } }, { @@ -88539,24 +64944,12 @@ "dataModificacao": 1677468345456, "dateValidity": 1677468345456, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "currencyType": "USD" }, - "revision": "5c4901f45f244e5dad917f49", + "revision": "debb5de613d04474938723d5", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509582, + "modified": 1701463509582 } }, { @@ -88564,10 +64957,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b08139838f344c39b6c990e4", + "revision": "2dae1bf596b544a89f515d12", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509582, + "modified": 1701463509582 } }, { @@ -88575,10 +64968,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "74e7bd61cdc6494a94386590", + "revision": "3f49d59a1cfe4d7ca3d74f98", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509582, + "modified": 1701463509582 } }, { @@ -88586,10 +64979,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8786c0f80c6341bab8f4b1e8", + "revision": "b1b3d9c2b59d4af59d08bc7d", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509582, + "modified": 1701463509582 } }, { @@ -88598,24 +64991,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "limitUsed": 0 }, - "revision": "d4ca84a7a90946edac392cb9", + "revision": "f148e076b4f14160820c196e", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509582, + "modified": 1701463509582 } }, { @@ -88626,24 +65007,12 @@ "dataModificacao": 1685622109779, "dateValidity": 1685622109779, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "currencyType": "USD" }, - "revision": "59acaa2d3c544ca9ac4e2b87", + "revision": "104efa5957fb4322b5d4bc3e", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509582, + "modified": 1701463509582 } }, { @@ -88651,10 +65020,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7b0576200eb0468aacd99605", + "revision": "911514a21e504597a1b117b9", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509582, + "modified": 1701463509582 } }, { @@ -88662,24 +65031,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "costs": [] }, - "revision": "08f6f9eb9b304c1da4a29458", + "revision": "ffe78baf2ad0497d97ded48d", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509582, + "modified": 1701463509582 } }, { @@ -88694,18 +65051,9 @@ "total_amount": 1700, "history_id": 1683387433855, "id": 1683387433855, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-05-06T15:37:13.855Z", + "date_last_updated": "2023-05-06T17:20:32.539Z", + "date_of_expiration": "2023-06-05T15:37:13.855Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -88715,10 +65063,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "966977909e6e411dbf34df96", + "revision": "daff5cccb90c46c68ee34829", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509582, + "modified": 1701463509582 } }, { @@ -88726,10 +65074,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.700,00 para a carteira iVip 1017.8820.3938.8364-80", - "revision": "3fbbe1b084b949a29af11fb1", + "revision": "d56fab388a04437b96bc1919", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509582, + "modified": 1701463509582 } }, { @@ -88737,24 +65085,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "costs": [] }, - "revision": "285629f0d9a64f3195ab56e5", + "revision": "2e5d15ccd5d14fa895fcf511", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509582, + "modified": 1701463509582 } }, { @@ -88769,18 +65105,9 @@ "total_amount": 1000, "history_id": 1683729448058, "id": 1683729448058, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-05-10T14:37:28.058Z", + "date_last_updated": "2023-05-10T14:48:52.161Z", + "date_of_expiration": "2023-06-09T14:37:28.058Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -88790,10 +65117,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "7d5554769392402f95215a73", + "revision": "be59df0414944a63be4367ca", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509582, + "modified": 1701463509582 } }, { @@ -88801,10 +65128,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1017.8820.3938.8364-80", - "revision": "080f3f7a97be41b28f997783", + "revision": "2c381e0ba9fb42109702fd59", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509582, + "modified": 1701463509582 } }, { @@ -88822,24 +65149,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "costs": [] }, - "revision": "3866fd3856034e2282f414aa", + "revision": "bed96ea4d40240eebf80b006", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -88855,18 +65170,9 @@ "original_amount": 14591858, "total_amount": 14591858, "id": 1684018976722, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-05-13T23:02:56.722Z", + "date_last_updated": "2023-05-13T23:02:56.722Z", + "date_of_expiration": "2023-05-13T23:02:56.722Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -88875,10 +65181,10 @@ "history_id": 1684018976722, "description": "Compra de 14.591.858,00 IVIP por 2.700,00 BRL" }, - "revision": "ccade1a00b13410680d4e626", + "revision": "87035849a4c14dd5976a71c2", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -88886,24 +65192,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "costs": [] }, - "revision": "0124593c6dd74b6191779539", + "revision": "f579a7436c7e4be09275d250", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -88918,27 +65212,18 @@ "total_amount": 14591858, "history_id": 1686488141706, "id": 1686488141706, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-06-11T12:55:41.706Z", + "date_last_updated": "2023-06-11T12:55:41.706Z", + "date_of_expiration": "2023-06-11T12:55:41.706Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "33504108c900443c894d93ad", + "revision": "1b5bd3ef708344b4bc441888", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -88946,10 +65231,10 @@ "content": { "type": "STRING", "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "527cb379c14d4bc3a67fea6e", + "revision": "dbfcd7b7adfb4401aa65e647", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -88957,24 +65242,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "costs": [] }, - "revision": "9ba87467e6c94341ac92a6a0", + "revision": "6ca0d0bbc89a48e1a32e81e8", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -88989,27 +65262,18 @@ "total_amount": 14591858, "history_id": 1686581079256, "id": 1686581079256, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-06-12T14:44:39.256Z", + "date_last_updated": "2023-06-12T14:44:39.256Z", + "date_of_expiration": "2023-06-12T14:44:39.256Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "4e771e3c9ae0442b9eb40c43", + "revision": "38b0a0cbd053420ebf0e9e03", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89017,10 +65281,10 @@ "content": { "type": "STRING", "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "bf34c759702344a88b59dca0", + "revision": "ac46945a076f4e09acf1415d", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89028,24 +65292,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "costs": [] }, - "revision": "151dad000c6b43c1a8929dcf", + "revision": "37a10955fc41412c93ebc1b1", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89060,27 +65312,18 @@ "total_amount": 14591858, "history_id": 1686647052098, "id": 1686647052098, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-06-13T09:04:12.098Z", + "date_last_updated": "2023-06-13T09:04:12.098Z", + "date_of_expiration": "2023-06-13T09:04:12.098Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "52f277efcca449eda55e35a1", + "revision": "9a6898a339564b65835c3049", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89088,10 +65331,10 @@ "content": { "type": "STRING", "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "c782fc85c2ca46a0b2b5d570", + "revision": "4d23f17f1553414d94f56b52", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89099,24 +65342,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "costs": [] }, - "revision": "f2952cb70f0b4f7c80e93d01", + "revision": "e19d6bec4b6e47eea315dcb4", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89131,18 +65362,9 @@ "total_amount": 14591858, "history_id": 1686750536224, "id": 1686750536224, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-06-14T13:48:56.224Z", + "date_last_updated": "2023-06-15T21:42:14.419Z", + "date_of_expiration": "2023-06-14T13:48:56.224Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -89152,10 +65374,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "b2ce7d8a80e14094a79b5f28", + "revision": "8e22d5f206b14fcca1fa6f17", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89163,10 +65385,10 @@ "content": { "type": "STRING", "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "382cf1a2e8a5420691ecbe1a", + "revision": "63aa47cdc87944cf846cdcf0", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89174,24 +65396,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "costs": [] }, - "revision": "d27aa061835141d89a83bfb7", + "revision": "bceba31dfd9a4734936ec23f", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89206,27 +65416,18 @@ "total_amount": 14591858, "history_id": 1686865268655, "id": 1686865268655, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-06-15T21:41:08.655Z", + "date_last_updated": "2023-06-15T21:41:08.655Z", + "date_of_expiration": "2023-06-15T21:41:08.655Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "2d762c18eb924bb5b469b0ec", + "revision": "03ac87c6ef614b6686c512ea", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89234,10 +65435,10 @@ "content": { "type": "STRING", "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "a9f3d128b87a44768b9ab2b7", + "revision": "a1849edf656b4565b0cb5cbc", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89245,10 +65446,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4991233cef3f4286a4cd2f40", + "revision": "9440545a6e0f48cd9760f3ac", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89256,10 +65457,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "31ff6ea0cf234297a6a84dc7", + "revision": "8f22df5aac394385a48f87b3", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89269,24 +65470,12 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-09-14T17:27:37.445Z", - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "analysisRequested": "2023-09-14T17:27:37.445Z" }, - "revision": "55124a6babc14c4f85e69dcc", + "revision": "25c3f391cb614a1d8b264832", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89298,24 +65487,12 @@ "dateValidity": 1683247685722, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": "2023-09-25T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "balancesModificacao": "2023-09-25T03:00:00.000Z" }, - "revision": "1aef90e79d134cf794a47374", + "revision": "617d1b114b0e4fbfb33a248d", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89323,10 +65500,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7b7cde42592e413f9a9e4db2", + "revision": "09e5863197284e0cbcfb1297", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89334,10 +65511,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ee4cb82220864d93839e60fa", + "revision": "3c68d6a593cd434085526dc5", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89348,24 +65525,12 @@ "dataModificacao": 1679287665883, "dateValidity": 1679287665883, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "currencyType": "USD" }, - "revision": "2bde124a0dcd4261ad04af0f", + "revision": "db706cf224784ba5a2457a21", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89373,10 +65538,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0a21af706035405c90c8811f", + "revision": "106893fa0b214930ab6c75a9", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89384,10 +65549,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fa3607dcb84543b596a805bf", + "revision": "716737afaaa545e2b8f2e8d3", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89398,24 +65563,12 @@ "dataModificacao": 1689113009824, "dateValidity": 1689113009824, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "currencyType": "USD" }, - "revision": "7bea433defae4f2f8a72bf7f", + "revision": "0921263c6cf34969a03988a4", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89423,10 +65576,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "cdee58258ba14c8e92c67967", + "revision": "31b22a5cc8394daba921af37", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89434,10 +65587,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7f6d9d2d8aab49fba5ff8856", + "revision": "9651f975d81746f0b3c32762", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89448,24 +65601,12 @@ "dataModificacao": 1679436379945, "dateValidity": 1679436379945, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "currencyType": "USD" }, - "revision": "f93dd33881a64450a432d651", + "revision": "5c92577468074b599e9ed533", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89473,10 +65614,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4a3513ee5f0f44329f0a0320", + "revision": "bc08cdb4dbef4a04995b573b", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89484,10 +65625,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "79ac9a55251a448582f0ff36", + "revision": "00e8542315b64a6893ef5aec", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89497,24 +65638,12 @@ "value": { "dataModificacao": 1696096915384, "dateValidity": 1696096916164, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "currencyType": "USD" }, - "revision": "c27d84edef5e42bb8848f7cd", + "revision": "cb14d69c3d05478c90686f93", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89522,10 +65651,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5b29df6b68f04cd794653b26", + "revision": "b7b07b5fb13b40c0b4c5797c", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89533,10 +65662,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0fdf2af51f5445c2b72c4563", + "revision": "2f3ff5dcc7ef405aae6b049c", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89547,24 +65676,12 @@ "dataModificacao": 1679165777705, "dateValidity": 1679165777705, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "currencyType": "USD" }, - "revision": "9cfb71437e0c45d5a2bacfe1", + "revision": "c6bd41f1b08a4aa296589486", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89574,24 +65691,12 @@ "value": { "symbol": "BRL", "available": "0.00000000", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "value": 0 }, - "revision": "d65d4518c2b747b79e0731ea", + "revision": "c4efc82b5f214f809195054b", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89601,24 +65706,12 @@ "value": { "symbol": "IVIP", "available": "0.00000000", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "value": 0 }, - "revision": "dd4f26d2194e4922921785db", + "revision": "b29e2543b90b4c8e8696bd15", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89626,10 +65719,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "98dbebdd0a004b6e8742fca8", + "revision": "2cd08bb04a444bb7a80ddb4b", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89637,24 +65730,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "costs": [] }, - "revision": "e14cfb28a39848c48e75fce8", + "revision": "cd4c9b7cae0c4e598f98726e", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89669,18 +65750,9 @@ "total_amount": 50, "history_id": 1684170542717, "id": 1684170542717, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-05-15T17:09:02.717Z", + "date_last_updated": "2023-05-15T21:30:21.404Z", + "date_of_expiration": "2023-06-14T17:09:02.717Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -89690,10 +65762,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "16a9fadc289941789b032e20", + "revision": "9815a8c6317d4cc4a065f7dc", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89701,10 +65773,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 1069.0089.6878.2698-70", - "revision": "9ef153f8e4c34799bb9f0b17", + "revision": "5ddbad01fe3f4097849011de", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89722,24 +65794,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - } + "costs": [] }, - "revision": "022aebfb59f647b5bd152615", + "revision": "87e6a57b679046dc832a18bf", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89755,18 +65815,9 @@ "original_amount": 243536, "total_amount": 243536, "id": 1684624294208, - "date_created": { - "type": 6, - "value": 1701459383528 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383528 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383528 - }, + "date_created": "2023-05-20T23:11:34.208Z", + "date_last_updated": "2023-05-20T23:11:34.208Z", + "date_of_expiration": "2023-05-20T23:11:34.208Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -89775,10 +65826,10 @@ "history_id": 1684624294208, "description": "Compra de 243.536,00 IVIP por 50,00 BRL" }, - "revision": "db50f5a115c946f9b7a04829", + "revision": "b492c9465db44a198b5cccbe", "revision_nr": 1, - "created": 1701459383528, - "modified": 1701459383528 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89786,24 +65837,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "costs": [] }, - "revision": "c866807f566e4631b8269c1a", + "revision": "eb3d4ea8824046be99a53e9f", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89818,18 +65857,9 @@ "total_amount": 243536, "history_id": 1688846842830, "id": 1688846842830, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-07-08T20:07:22.830Z", + "date_last_updated": "2023-07-08T20:08:12.432Z", + "date_of_expiration": "2023-07-08T20:07:22.830Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -89839,10 +65869,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "28692c1af5024a1793f9c9d5", + "revision": "a35893961c3e4101800aa235", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89850,10 +65880,10 @@ "content": { "type": "STRING", "value": "Saque de 243.536,00 IVIP para a carteira 0x58120E330A738FD12B195740b06B7792A5C7DD7D", - "revision": "7edaea29b1fc494bb2813422", + "revision": "dfaa6e8fbb3d440299febe6b", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89861,10 +65891,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "415ffbca303a4df8894a5713", + "revision": "f47b29c98031477aa935ad15", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89872,10 +65902,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e1790997fb394e8aaa4b27fc", + "revision": "bead4707515b407982202607", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89884,24 +65914,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "limitUsed": 0 }, - "revision": "f9775d71101844148646ccc4", + "revision": "eb71041209d94850b4bb96e8", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89912,24 +65930,12 @@ "dataModificacao": 1684170470840, "dateValidity": 1684170470840, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "currencyType": "USD" }, - "revision": "38b46c024b214f079a01e910", + "revision": "e575083a0d5641f0bda25973", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89937,10 +65943,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1dc08f8155df4109a9bed8bc", + "revision": "f27f50f6775a4221a77ea0ee", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89948,10 +65954,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d8ec64bf271a47d6a037ea9f", + "revision": "fc514d55e9b84c75b33c0ccd", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89962,24 +65968,12 @@ "dataModificacao": 1680695438579, "dateValidity": 1680695438579, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "currencyType": "USD" }, - "revision": "76b1942ee83c453981e93943", + "revision": "067e4e7e231e4bd5b391d634", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89987,10 +65981,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1da20b94ec5349f3a3f222d1", + "revision": "1cc3e2cb20804e068437f704", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -89998,10 +65992,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ded91a4b7eed43a6a6ad9f71", + "revision": "51f4083bf8b442049a9b5210", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -90012,24 +66006,12 @@ "dataModificacao": 1681661884795, "dateValidity": 1681661884795, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "currencyType": "USD" }, - "revision": "f46adc5afdb64dafba08d559", + "revision": "2977e9d58e644ba8ba917fc6", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -90037,24 +66019,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "costs": [] }, - "revision": "4e8252ca78164b3daff226bf", + "revision": "30e2eec65d134a03bc6ca448", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -90069,18 +66039,9 @@ "total_amount": 500, "history_id": 1684095990042, "id": 1684095990042, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-05-14T20:26:30.042Z", + "date_last_updated": "2023-05-15T03:09:26.798Z", + "date_of_expiration": "2023-06-13T20:26:30.042Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -90090,10 +66051,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "027fa6f13c9644c5887e84f5", + "revision": "323de7745d784128a7fd9bd8", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -90101,10 +66062,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1100.9860.6095.8997-30", - "revision": "c78dbb25a0c44ea6811cc63a", + "revision": "89cd3a7dbbd642f4ba74d9df", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -90122,24 +66083,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "costs": [] }, - "revision": "cca7a099a6c2438aabe2c08b", + "revision": "c724b15019bc41bebb23a97b", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -90155,18 +66104,9 @@ "original_amount": 1792114, "total_amount": 1792114, "id": 1686325443110, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-06-09T15:44:03.110Z", + "date_last_updated": "2023-06-09T15:44:03.110Z", + "date_of_expiration": "2023-06-09T15:44:03.110Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -90175,10 +66115,10 @@ "history_id": 1686325443110, "description": "Compra de 1.792.114,00 IVIP por 500,00 BRL" }, - "revision": "c798adc5a3484d37bb598257", + "revision": "b9733d3584784f02bd0f09c5", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -90194,24 +66134,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "costs": [] }, - "revision": "92bb88f5efb84c9db2bd74fb", + "revision": "b40774bacc36442db0931157", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -90219,10 +66147,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/110098606095899730/history/1690019958173", - "revision": "9c00fa3fd74e466a8c550526", + "revision": "3d9dcec02dc94b28902b9717", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -90237,18 +66165,9 @@ "total_amount": 1792114, "id": 1690019958173, "history_id": 1690019958173, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-07-22T09:59:18.173Z", + "date_last_updated": "2023-07-22T09:59:18.173Z", + "date_of_expiration": "2023-07-22T09:59:18.173Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -90256,10 +66175,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "57d7fede469545dcb17a8074", + "revision": "0f2d1c74ffa048ebba910bdd", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -90267,10 +66186,10 @@ "content": { "type": "STRING", "value": "Saque de 1.792.114,00 IVIP para a carteira 0x007E69086fF7981e3fA99368fACD516952625148", - "revision": "f993d065ab7f485588ab9c25", + "revision": "930452dfeb094bfaab9ea114", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -90280,24 +66199,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 53763.42, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "amount": 53763.42 }, - "revision": "1ac92596a37743e18422f73c", + "revision": "65749f6ce6ee43d4905198a1", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90312,24 +66219,12 @@ "installment_amount": 1792114, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "financial_institution": "ivipcoin" }, - "revision": "31822b902cba42afba883c2d", + "revision": "c08cd0f281c7428e8f57aa53", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90337,10 +66232,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/110098606095899730/history/1694046051457", - "revision": "29c41988a129431cb58f57bf", + "revision": "9e2462f32a294c3e9ccf1bb3", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -90348,10 +66243,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "8da6cd26d6bb49d39b8cb0f0", + "revision": "6651eb789ae84f5f9122bc4d", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90366,18 +66261,9 @@ "total_amount": 1738350.58, "id": "1694046051457", "history_id": "1694046051457", - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-09-07T00:20:51.457Z", + "date_last_updated": "2023-09-11T22:18:05.227Z", + "date_of_expiration": "2023-09-07T00:20:51.457Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -90389,10 +66275,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "114479b715ad4f9daaac62ac", + "revision": "8e9d83ef566642b69a01ddd1", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90400,10 +66286,10 @@ "content": { "type": "STRING", "value": "Saque de 1.738.350,58 IVIP para a carteira 0x007E69086fF7981e3fA99368fACD516952625148", - "revision": "1c604ec489d143ffa18961f7", + "revision": "1e78156ba3f242fbb08904a0", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509583, + "modified": 1701463509583 } }, { @@ -90411,10 +66297,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ac0da3ab2fb04260a40b360a", + "revision": "8c70fdeab4e54d55a99318f0", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90422,10 +66308,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "29f7cdffd87d482aa8ec77f5", + "revision": "2a04138177d046e5b4e58d5d", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90434,24 +66320,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "limitUsed": 0 }, - "revision": "52ac45826af548059f21f51d", + "revision": "053d5c4fdf0141e3909fbf82", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90461,24 +66335,12 @@ "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "value": 0 }, - "revision": "fe151b4426114f2fb6e99a13", + "revision": "f1d2524d2c5c4eada40041f0", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90488,24 +66350,12 @@ "value": { "available": "1792114.00000000", "symbol": "IVIP", - "value": 199.51, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "value": 199.51 }, - "revision": "59fef6ad1a1948f49dd08bdf", + "revision": "3da12cb07e374a12861a12e4", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90513,10 +66363,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "adddef3d4db94ef6b5bacece", + "revision": "f91832d93ed34265b3ddafd4", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90528,24 +66378,12 @@ "dateValidity": 1684095886828, "totalValue": 82.74, "currencyType": "USD", - "balancesModificacao": "2023-09-11T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "balancesModificacao": "2023-09-11T03:00:00.000Z" }, - "revision": "62f4ed2cfc22414aa1adab05", + "revision": "e20068cc66d54820a96cf837", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90553,10 +66391,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "302b279515474d4ba602875b", + "revision": "d5c77dfa058c409a80f83331", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90564,24 +66402,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "costs": [] }, - "revision": "934f774d11104573a3ad38c4", + "revision": "6d007b06181646c2b39cfa03", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90596,27 +66422,18 @@ "total_amount": 100, "history_id": 1684539878275, "id": 1684539878275, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-05-19T23:44:38.275Z", + "date_last_updated": "2023-05-19T23:44:38.275Z", + "date_of_expiration": "2023-06-18T23:44:38.275Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "36251e18b1614483a0c0518c", + "revision": "61a71919508948c79097d495", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90624,10 +66441,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1101.2161.6136.6665-00", - "revision": "a21af9e1f5f548a8aaa38649", + "revision": "6504821c319043a7baf723db", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90635,10 +66452,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f7f346fea6a648ecaea6d1e5", + "revision": "9e72944ad2e34f0c837a7ef7", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90646,10 +66463,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d60f21688c394e12a6fce043", + "revision": "de3d703d13e7455eafcef6de", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90658,24 +66475,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "limitUsed": 0 }, - "revision": "b646b4dd78f14a769888904b", + "revision": "4be47986fe8a43fabb6f4d32", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90686,24 +66491,12 @@ "dataModificacao": 1684536217510, "dateValidity": 1684536217510, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "currencyType": "USD" }, - "revision": "5832e16181694d9e96f475d2", + "revision": "a7dab8492ded409d8fca2fb7", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90711,10 +66504,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f1c70752daa8427aa1ca38dd", + "revision": "250a793d0bba4c66861f65ac", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90722,10 +66515,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "17154c1955fe4e97a1061137", + "revision": "62466d0cb0d146d68b2d80fd", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90736,24 +66529,12 @@ "dataModificacao": 1679301294113, "dateValidity": 1679301294113, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "currencyType": "USD" }, - "revision": "5b84ebc75ff84ef6ac030eaf", + "revision": "053666f49db743cbb6da727e", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90763,24 +66544,12 @@ "value": { "symbol": "BRL", "value": 0.132, - "available": "0.66666666", - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "available": "0.66666666" }, - "revision": "f4c8fa97ce9141babf1d9f19", + "revision": "e425a07db678484193132997", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90790,24 +66559,12 @@ "value": { "symbol": "IVIP", "value": 0, - "available": "0.00000000", - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "available": "0.00000000" }, - "revision": "bd40111b355a4b61981b890f", + "revision": "b72d09a5efc84c32a1a81890", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90815,10 +66572,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8b56d4c4a8874a05a6ee73ca", + "revision": "2ccfa8f9cdd0466fa07e6fcb", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90836,24 +66593,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "costs": [] }, - "revision": "78d1898e792b4226bb485925", + "revision": "b00c09eb960b4db9abb74f99", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90869,18 +66614,9 @@ "original_amount": 1594392, "total_amount": 1594392, "id": 1678154662168, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-03-07T02:04:22.168Z", + "date_last_updated": "2023-03-07T02:04:22.168Z", + "date_of_expiration": "2023-03-07T02:04:22.168Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -90889,10 +66625,10 @@ "history_id": 1678154662168, "description": "Compra de 1594392 IVIP por 223 BRL" }, - "revision": "290bfbd7d09546678105d8f4", + "revision": "942a9b2b75e24836ae8cbd62", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90900,24 +66636,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "costs": [] }, - "revision": "04cef35625a64e068fddad79", + "revision": "e3ce3f8fbeaf4cc88ec46da5", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90932,18 +66656,9 @@ "total_amount": 223, "history_id": 1677860043639, "id": 1677860043639, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-03-03T16:14:03.639Z", + "date_last_updated": "2023-03-03T16:28:35.639Z", + "date_of_expiration": "2023-04-02T16:14:03.639Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -90953,10 +66668,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "bf11dca828804032ad67289c", + "revision": "307b209930f84e6bb30ab13b", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90964,10 +66679,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 223,00 para a carteira iVip 1105.2091.7322.8272-00", - "revision": "52e340394be141dcba26ddb8", + "revision": "a3abeacdfdbf499c80e2e47e", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -90985,24 +66700,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "costs": [] }, - "revision": "0d44d2ac14b64dc498ce997e", + "revision": "12623a58ac17491d82d95e72", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91018,18 +66721,9 @@ "original_amount": 2760078, "total_amount": 2760078, "id": 1680547247302, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-04-03T18:40:47.302Z", + "date_last_updated": "2023-04-03T18:40:47.302Z", + "date_of_expiration": "2023-04-03T18:40:47.302Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -91038,10 +66732,10 @@ "history_id": 1680547247302, "description": "Compra de 2.760.078,00 IVIP por 500,00 BRL" }, - "revision": "a7a7b0076da8457d8bcf39c5", + "revision": "8d13ba76e46441cd86494ee9", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91049,24 +66743,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "costs": [] }, - "revision": "969f89ec0d7b4c55b240a010", + "revision": "21284c3babb145ebbc83d50b", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91081,18 +66763,9 @@ "total_amount": 52, "history_id": 1684007108709, "id": 1684007108709, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-05-13T19:45:08.709Z", + "date_last_updated": "2023-05-13T19:55:29.125Z", + "date_of_expiration": "2023-06-12T19:45:08.709Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -91102,10 +66775,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "420399bb050443f9acf8c57c", + "revision": "1ae9bdfe0fd04fa9b1221889", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91113,10 +66786,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 52,00 para a carteira iVip 1105.2091.7322.8272-00", - "revision": "b734791745af40bfa2ac4d59", + "revision": "2ee86c1a071f40d3bc4dac52", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91136,24 +66809,12 @@ "installment_amount": 51.667, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "costs": [] }, - "revision": "2cbdd78eeee04cb59b7d13ec", + "revision": "e2a7b7fa1ce043ce8f4dda81", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91170,18 +66831,9 @@ "total_amount": 51.667, "id": 1684007784160, "contract_id": "1680547112243", - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-05-13T19:56:24.160Z", + "date_last_updated": "2023-05-13T19:56:24.160Z", + "date_of_expiration": "2023-05-13T19:56:24.160Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -91189,10 +66841,10 @@ "currency_id": "BRL", "history_id": 1684007784160 }, - "revision": "83c7c46f4f234ed1afffbbaf", + "revision": "7264044526d649e0b1afca54", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91200,10 +66852,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 12 no valor de 51,67 BRL referente ao contrato 1680547112243", - "revision": "cab6cbd401d44126b9d4ad6b", + "revision": "76881809a2e04b46ac81a9cd", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91211,24 +66863,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "costs": [] }, - "revision": "f415d68be6d543f1a89c68ba", + "revision": "ffef758e049d47b79e78b9c3", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91243,18 +66883,9 @@ "total_amount": 52, "history_id": 1685634389886, "id": 1685634389886, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-06-01T15:46:29.886Z", + "date_last_updated": "2023-06-01T18:56:11.760Z", + "date_of_expiration": "2023-07-01T15:46:29.886Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -91264,10 +66895,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "4b5e4a82126c42f7834ecff1", + "revision": "15ea949b0f5f457081fcbc0a", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91275,10 +66906,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 52,00 para a carteira iVip 1105.2091.7322.8272-00", - "revision": "9e89eda593ec435a845f9a7f", + "revision": "b60de6d0d36b483aa83c7f90", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91298,24 +66929,12 @@ "installment_amount": 51.667, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "costs": [] }, - "revision": "cf15495cac0e4b2eb912a710", + "revision": "c1a8b49b38a34f4bbd830253", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91332,18 +66951,9 @@ "total_amount": 51.667, "id": 1685657159164, "contract_id": "1680547112243", - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-06-01T22:05:59.164Z", + "date_last_updated": "2023-06-01T22:05:59.164Z", + "date_of_expiration": "2023-06-01T22:05:59.164Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -91351,10 +66961,10 @@ "currency_id": "BRL", "history_id": 1685657159164 }, - "revision": "ed5681d036a64fcabf73a7b1", + "revision": "cda109e1a7a44556b82a1b72", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91362,10 +66972,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 12 no valor de 51,67 BRL referente ao contrato 1680547112243", - "revision": "750a990488ef40f89dcc623b", + "revision": "c8f758b6445542439062a686", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91385,24 +66995,12 @@ "installment_amount": 2300063, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "costs": [] }, - "revision": "a2f4c610e51240369b64d12f", + "revision": "b96ec311bddf4c8394b64e65", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91419,18 +67017,9 @@ "total_amount": 2300063, "id": 1686939269544, "contract_id": "1680547112243", - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-06-16T18:14:29.544Z", + "date_last_updated": "2023-06-16T18:14:29.544Z", + "date_of_expiration": "2023-06-16T18:14:29.544Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -91438,10 +67027,10 @@ "currency_id": "IVIP", "history_id": 1686939269544 }, - "revision": "d49248aea1154a16a4c69f80", + "revision": "2b921a31550848c88ff76cb0", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91449,10 +67038,10 @@ "content": { "type": "STRING", "value": "Pagamento de faturas no valor de 2.300.063,00 IVIP referente ao contrato 1680547112243", - "revision": "9ec87ec152994019b8cb974e", + "revision": "eb34f6a7d6ac43208a485b42", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91462,24 +67051,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "amount": 120 }, - "revision": "e71c1261c2a94ccaa67d1169", + "revision": "7a7f1c8ab2284f8ab0d41f16", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91487,10 +67064,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6a07b3925c934641a40614dc", + "revision": "fda4cc7879984835bbc5bda7", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91498,10 +67075,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "3a314d7c41c54c7093fe82f6", + "revision": "096c9d344fd844fe81a55534", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91516,28 +67093,19 @@ "total_amount": 620, "history_id": 1680547112243, "id": 1680547112243, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-04-03T18:38:32.243Z", + "date_last_updated": "2023-04-03T18:38:32.243Z", + "date_of_expiration": "2023-05-03T18:38:32.243Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "f2f4c1dbb9004f3d97dfdae5", + "revision": "95b824c80210460ea752f7be", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91545,10 +67113,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "7cd1174e557b4a76a6767cc0", + "revision": "c99e987d1ebf40cb8c331844", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91556,24 +67124,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "costs": [] }, - "revision": "bfa836738b4347e79818570e", + "revision": "96ae5189562f4e149e75d707", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91588,18 +67144,9 @@ "total_amount": 2054407, "history_id": 1686940226040, "id": 1686940226040, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-06-16T18:30:26.040Z", + "date_last_updated": "2023-06-21T17:25:23.358Z", + "date_of_expiration": "2023-06-16T18:30:26.040Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -91609,10 +67156,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "741e1bd691a44dbf99742132", + "revision": "a5194772e7854cc8b5957585", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91620,10 +67167,10 @@ "content": { "type": "STRING", "value": "Saque de 2.054.407,00 IVIP para a carteira 0x660cf406B5942C1cfAb19D31EAe648D68fAb56bF", - "revision": "38f32c9c207947f486233ed3", + "revision": "cb0bf99b19fb4d3ab736958e", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91631,10 +67178,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "68c41f38e045486da743531d", + "revision": "9b0610d19fac427c989022fe", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91644,24 +67191,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "amount": 120 }, - "revision": "83fc7a3f745440c1a81557f4", + "revision": "1c2f8a1986f54a25a6b11848", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91675,26 +67210,15 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-04-03T18:38:32.243Z", "history_id": 1680547112243, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "status": "paid" }, - "revision": "6471904a65454c188025aa93", + "revision": "fd370c8908b74149bdb0fed3", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91702,10 +67226,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "a0462117db3f4514b3bf424f", + "revision": "4da40a7dd8b040cbbfcc7223", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91713,10 +67237,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "c585ab43befe4d4385328eb7", + "revision": "eb0b634582a94cab9a6a6c23", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91724,10 +67248,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "dd2ad8190e1f4b60ac230969", + "revision": "2ca6942436f34a4a93a7eb42", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91737,24 +67261,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "amount": 120 }, - "revision": "ce401bcaccb94e7b824bc10f", + "revision": "57d210ba15b146a4a47c9be3", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91768,26 +67280,15 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-04-03T18:38:32.243Z", "history_id": 1680547112243, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "status": "paid" }, - "revision": "da433da019324724a87f138a", + "revision": "21b8661aa74245b7a59cf309", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91795,10 +67296,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "8fb74f7b3b794acd9ccad6eb", + "revision": "c510b6d2757849b8ab2dd83a", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91806,10 +67307,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b18533b0f98344b090143401", + "revision": "97cea2c95d70458ca153e945", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91817,10 +67318,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f03b347e844a4c39836fa176", + "revision": "6c8c4f5ed71c4cbca78c2dda", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91830,24 +67331,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "amount": 120 }, - "revision": "75a2b8c9f1e54ce7af142d00", + "revision": "c52adcec96db4b69a4295494", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91861,26 +67350,15 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-04-03T18:38:32.243Z", "history_id": 1680547112243, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "status": "paid" }, - "revision": "52b8cec317e34cfead128196", + "revision": "478b0f46fb0145bfabeb6a4b", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91888,10 +67366,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "f72d8fe09ecf457482bd767b", + "revision": "fe77b3279c4e4d80b13e4d9a", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91899,10 +67377,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "4b7a45cec4e9472a86b0c884", + "revision": "3aff863a9e7543e5abe410d2", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91910,10 +67388,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "95fb18b02b8e4b76b1d8ce28", + "revision": "7d80d922b3c74b49a0a9c799", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91923,24 +67401,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383529 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "amount": 120 }, - "revision": "158e908d00ef450784e3e136", + "revision": "414f32ceecef493aa16882d1", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91954,26 +67420,15 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { - "type": 6, - "value": 1701459383529 - }, + "date_created": "2023-04-03T18:38:32.243Z", "history_id": 1680547112243, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383529 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383529 - } + "status": "paid" }, - "revision": "f3cf1451025c47909d3518f9", + "revision": "183043556955471aa8d9b9de", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91981,10 +67436,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "8b8c7f87a2a54c58821c90f8", + "revision": "c5281c444a7e4941be86d743", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -91992,10 +67447,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "1e6c688af417444b81f87c92", + "revision": "752bf7c6f1fb4c5facbb0bd9", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -92003,10 +67458,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0347ce0e25244cc681ec46bf", + "revision": "105c22fda0b2464486d3a0f4", "revision_nr": 1, - "created": 1701459383529, - "modified": 1701459383529 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -92016,24 +67471,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "amount": 120 }, - "revision": "c837bff2d60a46a692aff836", + "revision": "244bc5e263074d289c711b5d", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -92047,26 +67490,15 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-04-03T18:38:32.243Z", "history_id": 1680547112243, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "status": "paid" }, - "revision": "e583df7df7a846a2bce940d1", + "revision": "f9763dc9e8234230887daf6b", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -92074,10 +67506,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "1e233a28e3af4d41878db5ce", + "revision": "c6567266876d4aebb31af7e3", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -92085,10 +67517,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "089219edc8cf411fb7392b96", + "revision": "b37bd0b51e5741328dbb75c6", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -92096,10 +67528,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d83234761a2249caac9c52e0", + "revision": "79523f83aa004171b9a0dd6b", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509584, + "modified": 1701463509584 } }, { @@ -92109,24 +67541,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "amount": 120 }, - "revision": "fabc54a4221848088e4edaca", + "revision": "f2ac82cb44d0491fb886ab34", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92140,26 +67560,15 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-04-03T18:38:32.243Z", "history_id": 1680547112243, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "status": "paid" }, - "revision": "92cc8287294a43078948eb45", + "revision": "dd2b53add9614086992c4545", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92167,10 +67576,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "77107881337c4435be900a63", + "revision": "8bdbb485b0814ab482251c86", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92178,10 +67587,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "6b2f313a67144947b4a3c4b6", + "revision": "8a644aeea3f34ea1b589c26a", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92189,10 +67598,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e285baf486f94e4596f63454", + "revision": "9c18525617154ea2a6f7cf79", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92202,24 +67611,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "amount": 120 }, - "revision": "418abf1c9e204b9cb83a65bb", + "revision": "f34c8458bf08471fa3738864", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92233,26 +67630,15 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-04-03T18:38:32.243Z", "history_id": 1680547112243, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "status": "paid" }, - "revision": "ae7ed05c83364386ac5dbd59", + "revision": "af8db7a2e1ef46f2a43a7935", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92260,10 +67646,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "d7786a4b16924b589a6a790d", + "revision": "40befa085e8843f68adc64d7", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92271,10 +67657,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "1f4cde059cde4631b15b2c1a", + "revision": "96509189a1894901a82c9655", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92282,10 +67668,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f48663c1c6f54bbeb795f6be", + "revision": "10ebc3318aaa4bfaa630c915", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92295,24 +67681,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "amount": 120 }, - "revision": "103ff5747066454e86f6f005", + "revision": "985cfbec8c9143adb0054fdc", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92326,26 +67700,15 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-04-03T18:38:32.243Z", "history_id": 1680547112243, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "status": "paid" }, - "revision": "254e9e83fade491dbae1620c", + "revision": "533a7ed8d44546b5986b81f0", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92353,10 +67716,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "599789631da14dce81421149", + "revision": "168ad1e365ba49bf85bb1157", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92364,10 +67727,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f946e4e0258242b896640896", + "revision": "70dabfa3c57547d788e6acae", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92375,10 +67738,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "28d0e4f42b6a470aa30b7200", + "revision": "5758035ac6ba4c74b640317e", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92388,24 +67751,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "amount": 120 }, - "revision": "202d39a491924a0daa209d80", + "revision": "839324e5bafe48c39dd2b09f", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92419,26 +67770,15 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-04-03T18:38:32.243Z", "history_id": 1680547112243, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "status": "paid" }, - "revision": "60bbbbd6ead64d21aabb5fd1", + "revision": "494819a71f874b5682139756", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92446,10 +67786,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "3dafb8c5ec5a483cb7b950de", + "revision": "34e3ec7dca7d4143abaaf43a", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92457,10 +67797,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b310dc2703da452db5d1e1be", + "revision": "37e4a68cdde94e81b67bbb7e", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92468,10 +67808,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "68b0d6d15ac14cb29a8a5ca1", + "revision": "dd71eab72aa4452ca4247f02", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92481,24 +67821,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "amount": 120 }, - "revision": "60b58dfdd109429eb3fd104e", + "revision": "69ad372dc526442592a0d12c", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92512,26 +67840,15 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-04-03T18:38:32.243Z", "history_id": 1680547112243, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "status": "paid" }, - "revision": "8b9498563c8f488a8b4d6bcd", + "revision": "6d87c674dd434fd4a1435fd6", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92539,10 +67856,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "86d8828569cc448187e0e335", + "revision": "8440a56b416b4370bb469c89", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92550,10 +67867,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "bb4bbf78d389438482e5c0a2", + "revision": "f5cc73565a2645a0914dc86f", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92561,10 +67878,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6e3aa846096d422e84c4acd6", + "revision": "8c8e395ee02546b5a1d20506", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92574,24 +67891,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "amount": 120 }, - "revision": "7fa3717ef14845a0babb8da9", + "revision": "b8dd106caedf491981ca5540", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92605,26 +67910,15 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-04-03T18:38:32.243Z", "history_id": 1680547112243, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "status": "paid" }, - "revision": "fea78a27d3b64db3bcb2cad1", + "revision": "c59b74caa9a7403d823d9ad9", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92632,10 +67926,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "878df50f1f164031bceb30e4", + "revision": "3b05dcc3dcfd44128f1a6470", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92643,10 +67937,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "d18a7c71aed149f49d21dd0d", + "revision": "edf4a4ca86cf4594b8298c75", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92654,10 +67948,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2a70750d0fbf47b0bb6e1f6b", + "revision": "8346cb4e2c1e475fbf19bd00", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92667,24 +67961,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "amount": 120 }, - "revision": "02917423549b469bafac7ce5", + "revision": "bdf8f7308aad44d5a14f92b5", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92698,26 +67980,15 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-04-03T18:38:32.243Z", "history_id": 1680547112243, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "status": "paid" }, - "revision": "41beda3df96145779a876fe1", + "revision": "6d00781af6414727983223bc", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92725,10 +67996,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "d156d204be6a455aa75005ae", + "revision": "68d44bafd7364afd897eddef", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92736,10 +68007,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "36e276672b8a465b863cb1c0", + "revision": "b3565482c89243d6bbc7bc82", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92747,10 +68018,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "94e27c298b10487896677f2d", + "revision": "d66b4af90e7e482d85a4f2f2", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92758,10 +68029,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fb1b56217f5b4f49902fc7d2", + "revision": "e9e1bbe74a35400da1072697", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92772,24 +68043,12 @@ "approvedLimit": 1000, "limitUsed": 0, "analysisRequested": "2023-03-18T23:21:54.669Z", - "lastReview": "2023-03-19T21:24:27.910Z", - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "lastReview": "2023-03-19T21:24:27.910Z" }, - "revision": "1297a0f9c9734c41a9eb6532", + "revision": "e12a33d5dd0e4b42b5b9570a", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92800,24 +68059,12 @@ "dataModificacao": 1677859170230, "dateValidity": 1678919633238, "totalValue": 0.13, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "currencyType": "USD" }, - "revision": "5318860daad34d0a9a136358", + "revision": "94598952258544d5933a3ed0", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92827,24 +68074,12 @@ "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "value": 0 }, - "revision": "e7dd7ba800d648e78df52011", + "revision": "254301c90d184096bed62e3a", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92854,24 +68089,12 @@ "value": { "available": "0.00000000", "symbol": "IVIP", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "value": 0 }, - "revision": "19fd275f0ca546b1bed9bb2d", + "revision": "87fdf8f045654494ad9f0fc7", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92879,10 +68102,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2be55a5fce3647aa9f802a4d", + "revision": "df51a5485f7c4dbd93b8489a", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92890,24 +68113,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "costs": [] }, - "revision": "cd6a63d0386d499ca87f69cc", + "revision": "9f725228178943388599709f", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92922,27 +68133,18 @@ "total_amount": 20, "history_id": 1684156066045, "id": 1684156066045, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-05-15T13:07:46.045Z", + "date_last_updated": "2023-05-15T13:07:46.045Z", + "date_of_expiration": "2023-06-14T13:07:46.045Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "82a849e8e9d54a9884fc0d60", + "revision": "32e3cf145e484ee0a42ec2dd", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92950,10 +68152,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "f7c8fb9a153043e78c217d54", + "revision": "e1f790d57da24c0ab40ccd79", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92961,24 +68163,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "costs": [] }, - "revision": "8d3b8a73d5ac40159bcbfd6f", + "revision": "ae795593a8e04ed3bf747cce", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -92993,27 +68183,18 @@ "total_amount": 100, "history_id": 1684156180281, "id": 1684156180281, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-05-15T13:09:40.281Z", + "date_last_updated": "2023-05-15T13:09:40.281Z", + "date_of_expiration": "2023-06-14T13:09:40.281Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "7852007eb3904a14975807c6", + "revision": "9abbbc02f9594582a74e171e", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93021,10 +68202,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "ba731d0c4a55402f8c0754ac", + "revision": "27222914cd114fb1bbc28945", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93032,24 +68213,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "costs": [] }, - "revision": "9b19622e2cdf47b2b7defcb6", + "revision": "d3f151b73c734035aa8366eb", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93064,18 +68233,9 @@ "total_amount": 100, "history_id": 1684157124109, "id": 1684157124109, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-05-15T13:25:24.109Z", + "date_last_updated": "2023-05-15T14:49:20.711Z", + "date_of_expiration": "2023-06-14T13:25:24.109Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -93085,10 +68245,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "2db3255ed94547ddadd396a1", + "revision": "71f85624c23e445d8ae2dbc3", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93096,10 +68256,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "c19662f5564a4e618571b993", + "revision": "7095e44638a346d8b0416bb0", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93117,24 +68277,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "costs": [] }, - "revision": "a323be01996445e59f2ea3b9", + "revision": "e10ba8167cfe424881dff276", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93150,18 +68298,9 @@ "original_amount": 487073, "total_amount": 487073, "id": 1684667280508, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-05-21T11:08:00.508Z", + "date_last_updated": "2023-05-21T11:08:00.508Z", + "date_of_expiration": "2023-05-21T11:08:00.508Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -93170,10 +68309,10 @@ "history_id": 1684667280508, "description": "Compra de 487.073,00 IVIP por 100,00 BRL" }, - "revision": "78b7a8ebf5a54f6085e03293", + "revision": "9ee31f73a5974551a27908c2", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93181,24 +68320,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "costs": [] }, - "revision": "5227ae755b5f479d8d869ebb", + "revision": "083454e29fc24282a0c15793", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93213,18 +68340,9 @@ "total_amount": 120, "history_id": 1685125796189, "id": 1685125796189, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-05-26T18:29:56.189Z", + "date_last_updated": "2023-05-27T10:47:37.369Z", + "date_of_expiration": "2023-06-25T18:29:56.189Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -93234,10 +68352,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "45e566770fca493a9a733583", + "revision": "f92e8fc1d7554570bb119568", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93245,10 +68363,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 120,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "89579165680442c3894beebe", + "revision": "7def05300b89404ab0b51adb", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93256,24 +68374,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "costs": [] }, - "revision": "1e3eef68272943edb8995deb", + "revision": "60b0587d4d9940619d986de4", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93288,18 +68394,9 @@ "total_amount": 1410, "history_id": 1685203490781, "id": 1685203490781, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-05-27T16:04:50.781Z", + "date_last_updated": "2023-05-27T18:12:36.964Z", + "date_of_expiration": "2023-06-26T16:04:50.781Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -93309,10 +68406,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "1ab31dc001c746f997657f07", + "revision": "6c2ac8d67ced4ac1b57178a9", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93320,10 +68417,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.410,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "9024fb2f482a4b8090944f6f", + "revision": "6777a27e89734634b53c2ffa", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93341,24 +68438,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "costs": [] }, - "revision": "df5a519b082a48aba8957f04", + "revision": "90378acabdb64288b6d47b11", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93374,18 +68459,9 @@ "original_amount": 5206344, "total_amount": 5206344, "id": 1685730135668, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-06-02T18:22:15.668Z", + "date_last_updated": "2023-06-02T18:22:15.668Z", + "date_of_expiration": "2023-06-02T18:22:15.668Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -93394,10 +68470,10 @@ "history_id": 1685730135668, "description": "Compra de 5.206.344,00 IVIP por 1.530,00 BRL" }, - "revision": "e51d510646a241b580093f25", + "revision": "2e1edf21338e4679a0a23cff", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93405,24 +68481,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "costs": [] }, - "revision": "452c633550964303ad741716", + "revision": "2fed4c99d2c14159badf1b80", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93437,18 +68501,9 @@ "total_amount": 100, "history_id": 1686621899168, "id": 1686621899168, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-06-13T02:04:59.168Z", + "date_last_updated": "2023-06-13T12:15:29.648Z", + "date_of_expiration": "2023-07-13T02:04:59.168Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -93458,10 +68513,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9d842e04bd6b44de89526102", + "revision": "d1c62eb1928e4c8fbe701739", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93469,10 +68524,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "28dd1e59bdee43b3aa5e4719", + "revision": "24ce028e0a15422f9ddec593", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93490,24 +68545,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "costs": [] }, - "revision": "0d9540fbab9e4d9f819cf172", + "revision": "84eb77ce4259407c9f3956a0", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93523,18 +68566,9 @@ "original_amount": 637246, "total_amount": 637246, "id": 1686792689847, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-06-15T01:31:29.847Z", + "date_last_updated": "2023-06-15T01:31:29.847Z", + "date_of_expiration": "2023-06-15T01:31:29.847Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -93543,10 +68577,10 @@ "history_id": 1686792689847, "description": "Compra de 637.246,00 IVIP por 100,00 BRL" }, - "revision": "ccf717cdc61248379ba76533", + "revision": "fde869b4a8e84f20a67e5215", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93564,24 +68598,12 @@ "installment_amount": 5832008, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "costs": [] }, - "revision": "45f0699bf7a04094a5ea9ca1", + "revision": "3765acbb624e48b497ea12d3", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93596,18 +68618,9 @@ "original_amount": 5832008, "total_amount": 5832008, "id": 1688230681708, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-07-01T16:58:01.708Z", + "date_last_updated": "2023-07-01T16:58:01.708Z", + "date_of_expiration": "2025-07-01T16:58:01.708Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -93615,10 +68628,10 @@ "currency_id": "IVIP", "history_id": 1688230681708 }, - "revision": "0b9785527d76493e9a39a61a", + "revision": "637a830b1d9e40f081c4aa88", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93626,10 +68639,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.832.008,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/1/2025", - "revision": "ee037395c5a74fe995e69865", + "revision": "012b89b8986540639e160385", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93645,24 +68658,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "costs": [] }, - "revision": "133097164f664c269fa1bca4", + "revision": "c2c59affae6b4ef6820280d3", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93670,10 +68671,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/111597444051012800/history/1690233382656", - "revision": "2e14115b83f84effafb02577", + "revision": "4a8a5e11660e4283819e4713", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93688,18 +68689,9 @@ "total_amount": 498655, "id": 1690233382656, "history_id": 1690233382656, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-07-24T21:16:22.656Z", + "date_last_updated": "2023-07-26T19:13:04.450Z", + "date_of_expiration": "2023-07-24T21:16:22.656Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -93711,10 +68703,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "c1467ac26eed4464b5753190", + "revision": "cfc81bb540e94252a082e715", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93722,10 +68714,10 @@ "content": { "type": "STRING", "value": "Saque de 498.655,00 IVIP para a carteira 0x31608012D8205A2BE2AaDBE2c528d75de71a36E8", - "revision": "0d74999ebf6d41da88ae1310", + "revision": "e834dc035b2341d49b2d5bd6", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93733,10 +68725,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "dab7960f1d9c4321b334ee3e", + "revision": "127ccea7303b4969a59c9929", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93744,10 +68736,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fda2735bb8214ba28a6ca924", + "revision": "825aca26c9e749898bfe337e", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93756,24 +68748,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "limitUsed": 0 }, - "revision": "105d0b424b0d4700a66aff50", + "revision": "425499e0115b4982b734c87a", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509585 } }, { @@ -93785,24 +68765,12 @@ "dateValidity": 1684155865709, "totalValue": 22.552945262588203, "currencyType": "USD", - "balancesModificacao": 1691060735628, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "balancesModificacao": 1691060735628 }, - "revision": "1dbecb4bf8a94641a202113a", + "revision": "adb2400c0ce745dd950abc9e", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509585, + "modified": 1701463509586 } }, { @@ -93810,10 +68778,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a387085b20db47b5bd3f67c2", + "revision": "206941e99a794470b6c19d72", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -93821,10 +68789,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6073b541c4074453907bdcf3", + "revision": "f0b4d53e3aff4f3e87fe9dd9", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -93835,24 +68803,12 @@ "dataModificacao": 1689619740886, "dateValidity": 1689619740886, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "currencyType": "USD" }, - "revision": "a004c46cc87a4a4182480b7e", + "revision": "299548c9a0094246935df92a", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -93860,10 +68816,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9480e0ccc974488c9f57b892", + "revision": "e305ac2add8847d69b17649f", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -93871,10 +68827,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ebb4ac022c0f45e7a33d0ebc", + "revision": "559cb07d786e40dbaac2e95d", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -93885,24 +68841,12 @@ "dataModificacao": 1677432431553, "dateValidity": 1677432431553, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "currencyType": "USD" }, - "revision": "b1b414d4ff854918b34d5e34", + "revision": "9cb3296497644540ac0198d2", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -93912,24 +68856,12 @@ "value": { "available": "5721757.00000000", "symbol": "IVIP", - "value": 612.41, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "value": 612.41 }, - "revision": "db916ece2edb4ed5b4d4810e", + "revision": "fc924f46e8a84f7d940ef13c", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -93937,10 +68869,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ec16e8623be64ac4a34e4dd0", + "revision": "b75488d332bc4d2b99169939", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -93948,24 +68880,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "costs": [] }, - "revision": "3e90baab81f44d36873ca651", + "revision": "ea5afabcacd3464db65bdc9d", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -93980,18 +68900,9 @@ "total_amount": 1600, "history_id": 1677943939458, "id": 1677943939458, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-03-04T15:32:19.458Z", + "date_last_updated": "2023-03-04T20:44:06.599Z", + "date_of_expiration": "2023-04-03T15:32:19.458Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -94001,10 +68912,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "73e1ef25550e4e6faf9acfff", + "revision": "5bc33915587641b2b083a28e", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94012,10 +68923,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 1127.2038.0478.0658-70", - "revision": "60e0eeae5a1146b3a8fbe2d3", + "revision": "d9c1cc7a1d4d4547b6f88433", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94033,24 +68944,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "costs": [] }, - "revision": "21ed0fa2d0e04e74acc791bf", + "revision": "258e7cde28dc4f8dbca2c850", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94066,18 +68965,9 @@ "original_amount": 11445515, "total_amount": 11445515, "id": 1678154526038, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-03-07T02:02:06.038Z", + "date_last_updated": "2023-03-07T02:02:06.038Z", + "date_of_expiration": "2023-03-07T02:02:06.038Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -94086,10 +68976,10 @@ "history_id": 1678154526038, "description": "Compra de 11445515 IVIP por 1600 BRL" }, - "revision": "4f808a5a2a344b40b01afbcb", + "revision": "6fdf192352424dcbac0b04d7", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94097,24 +68987,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "costs": [] }, - "revision": "43112a8bb43f461da68829d4", + "revision": "9dbd88af96ff467799c92c68", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94129,27 +69007,18 @@ "total_amount": 1766725, "history_id": 1689270623353, "id": 1689270623353, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-07-13T17:50:23.353Z", + "date_last_updated": "2023-07-13T17:50:23.353Z", + "date_of_expiration": "2023-07-13T17:50:23.353Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "f178d04b0de64f21a6f91bab", + "revision": "2ef9f29fe3b148cca05b43fe", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94157,10 +69026,10 @@ "content": { "type": "STRING", "value": "Saque de 1.766.725,00 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", - "revision": "1e0af1c01f074b1a8f8b243a", + "revision": "0e680702c03f4a65b09eb03c", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94176,24 +69045,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - } + "costs": [] }, - "revision": "829764b7a7d84bcab8b186e9", + "revision": "af49bce77fff4e69ab06de1f", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94201,10 +69058,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1690310464254", - "revision": "244b78a593024ff1b5051904", + "revision": "50350ae1d82f419689ef2b7a", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94219,18 +69076,9 @@ "total_amount": 1000, "id": 1690310464254, "history_id": 1690310464254, - "date_created": { - "type": 6, - "value": 1701459383530 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383530 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383530 - }, + "date_created": "2023-07-25T18:41:04.254Z", + "date_last_updated": "2023-07-26T17:38:50.972Z", + "date_of_expiration": "2023-07-25T18:41:04.254Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -94242,10 +69090,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "0621b8d1388a4b0d8e554e55", + "revision": "37d3de01b4854d539679837b", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94253,10 +69101,10 @@ "content": { "type": "STRING", "value": "Saque de 1.000,00 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", - "revision": "c1f97dd7f6024437bd0950e3", + "revision": "6032e6efb2cb48bfa83d71f8", "revision_nr": 1, - "created": 1701459383530, - "modified": 1701459383530 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94266,24 +69114,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 171682.74, - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "amount": 171682.74 }, - "revision": "c6b9c609a2a74cbda3ff5c45", + "revision": "fd6c033a625f4b50ac77c8e6", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94298,24 +69134,12 @@ "installment_amount": 5722758, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "financial_institution": "ivipcoin" }, - "revision": "f5bf7fdb425346e38d9ac711", + "revision": "5868da97176241a98dac68ef", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94323,10 +69147,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1695843073185", - "revision": "b213e5b947f640b089322894", + "revision": "fa1c9c292f3f4e14979d8902", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94334,10 +69158,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f3094feb8dc34442a134e02b", + "revision": "53f4652ce15e4dcda1c580ec", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94353,18 +69177,9 @@ "total_amount": 5551075.26, "id": "1695843073185", "history_id": "1695843073185", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - }, + "date_created": "2023-09-27T19:31:13.185Z", + "date_last_updated": "2023-10-05T13:48:58.903Z", + "date_of_expiration": "2023-09-27T19:31:13.185Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -94375,10 +69190,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "f95dcf5c65024049bf91b434", + "revision": "5485526fa59947b2ad456c4d", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94386,10 +69201,10 @@ "content": { "type": "STRING", "value": "Saque de 5.551.075,26 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", - "revision": "096dc85785f34c82b38d0e94", + "revision": "4824a448cb6240b9b5200da0", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94399,24 +69214,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 171682.74, - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "amount": 171682.74 }, - "revision": "1342a143f3c344d49547e88d", + "revision": "60228238bb894fc1ba74e880", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94431,24 +69234,12 @@ "installment_amount": 5722758, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "financial_institution": "ivipcoin" }, - "revision": "38eb79c839dc4c059ca24102", + "revision": "15a65022469241fe92ebe716", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94456,10 +69247,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1695843125867", - "revision": "6d48a94416e74e07839fd79d", + "revision": "00347ab1974e4e8ca6fae29b", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94467,10 +69258,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "8505046e830f44eab723bdf6", + "revision": "250f9130603a4e37b4e92a50", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94486,18 +69277,9 @@ "total_amount": 5551075.26, "id": "1695843125867", "history_id": "1695843125867", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - }, + "date_created": "2023-09-27T19:32:05.867Z", + "date_last_updated": "2023-10-02T23:17:29.131Z", + "date_of_expiration": "2023-09-27T19:32:05.867Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", @@ -94509,10 +69291,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "c22b7565ddcf42cfab27f859", + "revision": "174a2f90086642da96621cc7", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94520,10 +69302,10 @@ "content": { "type": "STRING", "value": "Saque de 5.551.075,26 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", - "revision": "dc5dd026274547ebab801477", + "revision": "7a4c685d0d0546ff89d9faf6", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94531,10 +69313,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "48729c40132d4d13986db580", + "revision": "be144ac9161b47cb9bd6d9c0", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94542,10 +69324,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "33f0a023155f4601a20fa9b6", + "revision": "8a8a5578fa124bd7ba878bf1", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94554,24 +69336,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "limitUsed": 0 }, - "revision": "5e30b44d434f4f838bc70047", + "revision": "1f134d4df9fe4ac3bbda5db4", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94583,24 +69353,12 @@ "dateValidity": 1678919503018, "totalValue": 308.8, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "balancesModificacao": "2023-10-16T03:00:00.000Z" }, - "revision": "1399490266524333aeeac88c", + "revision": "f261edd104b6467398ffb546", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94608,10 +69366,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "28e09dc2b405438a904580f9", + "revision": "700aebf61e7149a7951c2b1d", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94619,10 +69377,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "171289ce001f4c2cb9af14d1", + "revision": "425f94ad249d499b9af1f52d", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94630,10 +69388,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1f3a49263ebd49409742f648", + "revision": "b0be29e40fc74fe68be7e6c8", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94642,24 +69400,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "limitUsed": 0 }, - "revision": "2de7b997299b47428d12e8b3", + "revision": "217737b18de64ae6871c07bb", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94670,24 +69416,12 @@ "dataModificacao": 1684093885315, "dateValidity": 1684093885315, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "currencyType": "USD" }, - "revision": "6c94c0e96ad3437bbdb80c13", + "revision": "0dd36fd24c10411e817ddeb5", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94695,10 +69429,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fd32fd090bb14dbc9e071220", + "revision": "991457e65bf64565a54e3f1c", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94708,24 +69442,12 @@ "value": { "symbol": "BNB", "value": 329390, - "available": "1000.00000000", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "available": "1000.00000000" }, - "revision": "4bfe3c298e6d4198807863d4", + "revision": "8753acb008034b38a33f2449", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94735,24 +69457,12 @@ "value": { "symbol": "BTC", "value": 24969.54, - "available": "1.00000000", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "available": "1.00000000" }, - "revision": "6f0eee382fcf44338b5edb92", + "revision": "cac21484d517476aa28c2e44", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94762,24 +69472,12 @@ "value": { "symbol": "BUSD", "value": 10000, - "available": "10000.00000000", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "available": "10000.00000000" }, - "revision": "1a858881f81940dfb66ee6c2", + "revision": "9b0e3697b16d4fbb8301ed4e", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94789,24 +69487,12 @@ "value": { "symbol": "ETH", "value": 168116, - "available": "100.00000000", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "available": "100.00000000" }, - "revision": "4117977eca184db2986cff03", + "revision": "834568175ead4ae39d5aee25", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94816,24 +69502,12 @@ "value": { "symbol": "LTC", "value": 39525, - "available": "500.00000000", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "available": "500.00000000" }, - "revision": "68e18a5e5922431981e12158", + "revision": "fb740b941e2247d6a00f7ce5", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94843,24 +69517,12 @@ "value": { "symbol": "TRX", "value": 32965, - "available": "500000.00000000", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "available": "500000.00000000" }, - "revision": "67c5819b025b4d1ca6547a08", + "revision": "3da3280ae2b4464d8a8ab9ff", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94870,24 +69532,12 @@ "value": { "symbol": "USDT", "value": 10020, - "available": "10000.00000000", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "available": "10000.00000000" }, - "revision": "e41c439f0e9f4aa3894bec14", + "revision": "01dcd7b3fd2c4414ab64d03d", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94897,24 +69547,12 @@ "value": { "symbol": "XRP", "value": 18315, - "available": "50000.00000000", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "available": "50000.00000000" }, - "revision": "a0dcb196f2e241ad8880169a", + "revision": "986b2086f040486cb0994643", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94922,10 +69560,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ec618404f04c45b5b61b2100", + "revision": "cc10f8858bea4795bebc5f54", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94936,24 +69574,12 @@ "dataModificacao": 1678997585705, "dateValidity": 1679015574916, "totalValue": 633300.54, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "currencyType": "USD" }, - "revision": "ac8d3f02799d4a9c86e90281", + "revision": "526577daba0042619046583f", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94961,10 +69587,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "58aa3fbaea4741cb97135f9b", + "revision": "d5502a270c4f493586d30dfc", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94972,10 +69598,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8c8e5878f57344ab9ad2c1dc", + "revision": "4b450bc978ef4407aca001fd", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -94986,24 +69612,12 @@ "dataModificacao": 1677932902892, "dateValidity": 1678217961007, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "currencyType": "USD" }, - "revision": "40aada2ab9dd4e059a3a572b", + "revision": "cc35b34acfa941aeb0ad3d01", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95011,10 +69625,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4f5cd7f7ed204332b4378d3b", + "revision": "c7f47a94146e4d4e962adb33", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95022,10 +69636,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9d2d486ef41b4171aaf26048", + "revision": "66c3d073842e4e7588573989", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95036,24 +69650,12 @@ "dataModificacao": 1678200529926, "dateValidity": 1678214929961, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "currencyType": "USD" }, - "revision": "21caea437b7c4feca4070d9c", + "revision": "86b707e5ca29471bb2a698ed", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95061,10 +69663,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0925d6b524234a52975a3830", + "revision": "0d372304548246d8a796bedc", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95072,10 +69674,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0a6a820a5996492894dea7c1", + "revision": "6854b67ee9034548b95a2dbe", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95086,24 +69688,12 @@ "dataModificacao": 1680104445044, "dateValidity": 1680104445044, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "currencyType": "USD" }, - "revision": "3a472422699c44b79296b8e1", + "revision": "4e8b2c92cb824a88aa567711", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95113,24 +69703,12 @@ "value": { "available": "1000000.88000000", "symbol": "IVIP", - "value": 106.42, - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "value": 106.42 }, - "revision": "bd39d18781a54650abe57e12", + "revision": "4b00c93c79b74f57b479630a", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95138,10 +69716,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "31228139c7474eda9b2dd0f7", + "revision": "363a54540f124f4da5f197d9", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95149,24 +69727,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "costs": [] }, - "revision": "0859f1ac1c6148379113bac2", + "revision": "e660197bedcf471b9de81598", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95181,18 +69747,9 @@ "total_amount": 1500, "history_id": 1689207673127, "id": 1689207673127, - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - }, + "date_created": "2023-07-13T00:21:13.127Z", + "date_last_updated": "2023-07-13T12:12:30.894Z", + "date_of_expiration": "2023-08-12T00:21:13.127Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -95202,10 +69759,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "006a67e5428540d9b4169f37", + "revision": "55e3d4cea7af4d26a8f9668d", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95213,10 +69770,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1154.3638.5305.7469-60", - "revision": "630651148ae84ce080172ac7", + "revision": "6a39e9c1151642aebae1d393", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95234,24 +69791,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "costs": [] }, - "revision": "3300389c4d0541eb84f89381", + "revision": "a185b41c8181414cb09a6c3f", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95267,18 +69812,9 @@ "original_amount": 593666, "total_amount": 593666, "id": 1689260591470, - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - }, + "date_created": "2023-07-13T15:03:11.470Z", + "date_last_updated": "2023-07-13T15:03:11.470Z", + "date_of_expiration": "2023-07-13T15:03:11.470Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -95287,10 +69823,10 @@ "history_id": 1689260591470, "description": "Compra de 593.666,00 IVIP por 1.500,00 BRL" }, - "revision": "5de5d9b5a0c046a6a8b34a67", + "revision": "23e54135235f4b0aa4520739", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95299,24 +69835,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-19T16:57:31.151Z", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + ".val": "2023-08-19T16:57:31.151Z" }, - "revision": "e27aea91e14649948eb0706d", + "revision": "abb0f7b1a764484bb0e7f35e", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95332,24 +69856,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "costs": [] }, - "revision": "d68fe70a36934b1aa4d5f51b", + "revision": "b6a2f9a16f7746bda4bf3a8f", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95357,10 +69869,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/extract/115436385305746960/order/1689872251151", - "revision": "f8716c0b5e64477abd2f16c9", + "revision": "c1357170be3947249a1b25aa", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95375,29 +69887,19 @@ "total_amount": 650, "id": 1689872251156, "history_id": 1689872251156, - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, + "date_created": "2023-07-20T16:57:31.156Z", + "date_last_updated": "2023-07-20T16:57:31.156Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "status_detail": "pending_waiting_payment" }, - "revision": "998fa2a8084d4d92b53c6bca", + "revision": "4cfe7679423b431eb8c59659", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95405,10 +69907,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 650,00 para a carteira iVip 1154.3638.5305.7469-60", - "revision": "df12fab23a1a4b378fce9bdf", + "revision": "a3405364356746adb647b636", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95417,24 +69919,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-24T18:51:46.238Z", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + ".val": "2023-08-24T18:51:46.238Z" }, - "revision": "dd264261c33a4bc7bbf84d1c", + "revision": "1f9e59cc806d40ca80ff5855", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95450,24 +69940,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "costs": [] }, - "revision": "0ab11b1db1ae4d6ba689e8d0", + "revision": "8e0a191d671145378c6a7450", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95475,10 +69953,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1690311106238", - "revision": "16bb017584bb4b41be6f152d", + "revision": "b45f1248df5946d58fb913f0", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95493,14 +69971,8 @@ "total_amount": 650, "id": 1690311106238, "history_id": 1690311106238, - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, + "date_created": "2023-07-25T18:51:46.238Z", + "date_last_updated": "2023-07-25T18:55:05.225Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -95510,16 +69982,12 @@ "date_approved": "2023-07-25T18:55:05.225Z", "money_release_date": "2023-07-25T18:55:05.225Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "wasDebited": true }, - "revision": "4b85a9dc7e2e4361ae7b7dcb", + "revision": "2d2c2f2fdee64011ac302caf", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95527,10 +69995,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 650,00 para a carteira iVip 1154.3638.5305.7469-60", - "revision": "b06dd89d49184763bf4ac63f", + "revision": "0f19feeae20e4f079f0a543a", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95548,24 +70016,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "costs": [] }, - "revision": "ddcdee0c33e4444c9ee79f1d", + "revision": "a5f5099c88ad4651a72592ed", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95581,18 +70037,9 @@ "original_amount": 526109, "total_amount": 526109, "id": 1690311787862, - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - }, + "date_created": "2023-07-25T19:03:07.862Z", + "date_last_updated": "2023-07-25T19:03:07.862Z", + "date_of_expiration": "2023-07-25T19:03:07.862Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -95601,10 +70048,10 @@ "history_id": 1690311787862, "description": "Compra de 526.109,00 IVIP por 650,00 BRL" }, - "revision": "dc90988392874534a0b26f3a", + "revision": "332d566444d24197a8dd05a1", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95620,24 +70067,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "costs": [] }, - "revision": "5293c5f3e87b45fbae0d8f7a", + "revision": "266a6d19f96c47b0ac48da3a", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95645,10 +70080,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691353182696", - "revision": "75c6b6de156045aab8827d32", + "revision": "c11f6a52725c430298111936", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95663,18 +70098,9 @@ "total_amount": 1119775, "id": 1691353182696, "history_id": 1691353182696, - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - }, + "date_created": "2023-08-06T20:19:42.696Z", + "date_last_updated": "2023-08-06T20:19:42.696Z", + "date_of_expiration": "2023-09-06T20:19:42.695Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -95682,10 +70108,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "1536fad22cd5468580ac9916", + "revision": "4eeb202fed8041c4ba30d748", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95693,10 +70119,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.119.775,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/6/2023", - "revision": "f50841786c3d4290a67d5a31", + "revision": "91dfb076904b4785aad12f72", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95705,24 +70131,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-10T12:16:37.423Z", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + ".val": "2023-09-10T12:16:37.423Z" }, - "revision": "372e4433dd64491383b8f89d", + "revision": "0a28cefbad4b4341867c1b46", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95738,24 +70152,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "costs": [] }, - "revision": "0a026b2366ce4c4d8b53a978", + "revision": "3e169b791f93469aae927516", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95763,10 +70165,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691756197423", - "revision": "1f517531e4cf4824a46abf8d", + "revision": "6e71e905596c4bfca6f784cb", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95781,14 +70183,8 @@ "total_amount": 500, "id": 1691756197423, "history_id": 1691756197423, - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, + "date_created": "2023-08-11T12:16:37.423Z", + "date_last_updated": "2023-08-11T13:36:00.390Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -95798,16 +70194,12 @@ "date_approved": "2023-08-11T13:36:00.390Z", "money_release_date": "2023-08-11T13:36:00.390Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "wasDebited": true }, - "revision": "ca30e85631f24252b4df8604", + "revision": "86883cf33b5b47a986d3fe17", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95815,10 +70207,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 500,00 para a carteira iVip 1154.3638.5305.7469-60", - "revision": "c41fea27b38d4b3199d70013", + "revision": "a8f5dd10bed64d99a8c86c45", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95834,24 +70226,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "costs": [] }, - "revision": "39e0bb5aecff46149d781add", + "revision": "32e845aaf77345019b23bca8", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95859,10 +70239,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691761354889", - "revision": "cbdb01215d334490b1acb70e", + "revision": "f019ec87ba0e4359b2f94c5f", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95877,18 +70257,9 @@ "total_amount": 917399, "id": 1691761354889, "history_id": 1691761354889, - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - }, + "date_created": "2023-08-11T13:42:34.889Z", + "date_last_updated": "2023-08-11T13:42:34.889Z", + "date_of_expiration": "2023-08-11T13:42:34.889Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -95897,10 +70268,10 @@ "description": "Compra de 917.399,00 IVIP por 500,00 BRL", "status_detail": "accredited" }, - "revision": "6bda67661ccc4d82aea7462f", + "revision": "6ea941cc67134eb2a2352a30", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509586, + "modified": 1701463509586 } }, { @@ -95916,24 +70287,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "costs": [] }, - "revision": "2f354d119654494fb1d1fdf2", + "revision": "6877f15a9d3e4d6083210ec8", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -95941,10 +70300,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1694032195852", - "revision": "77bec79b5b174193aa636537", + "revision": "895443945b7749e18d74cfb4", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -95959,18 +70318,9 @@ "total_amount": 1142170.5, "id": "1694032195852", "history_id": "1694032195852", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - }, + "date_created": "2023-09-06T20:29:55.852Z", + "date_last_updated": "2023-09-06T20:29:55.852Z", + "date_of_expiration": "2023-09-06T20:29:55.852Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -95978,10 +70328,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "dee1773a3714443a911de874", + "revision": "a4254a02b49a48e5b54c54c3", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -95989,10 +70339,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 1.119.775,00 IVIP com um rendimento de +22.395,5 IVIP (2,00%) - Y12XDT27", - "revision": "2e542733682b40c982a71dea", + "revision": "f9db15ddf18a4f32841bfaff", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96008,24 +70358,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "costs": [] }, - "revision": "9e54090373fd45e5ae5f61fc", + "revision": "d733c1a769bb42869dfbd6ae", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96033,10 +70371,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1694041733454", - "revision": "ca9b1f510da6451cb84b8809", + "revision": "0d24df631dce41c4a268d1fc", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96051,18 +70389,9 @@ "total_amount": 2059569, "id": "1694041733454", "history_id": "1694041733454", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - }, + "date_created": "2023-09-06T23:08:53.454Z", + "date_last_updated": "2023-09-06T23:08:53.454Z", + "date_of_expiration": "2023-10-06T23:08:53.454Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -96070,10 +70399,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ab888d75b6e94063b6f50a3c", + "revision": "33f5d776604c4d108cad7561", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96081,10 +70410,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.059.569,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/10/2023 - Y12XDT27", - "revision": "993b79d71b2c40188d3e4467", + "revision": "0bd5b8232b1645eda5e443e6", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96100,24 +70429,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "costs": [] }, - "revision": "e765c29422034d659bf8023a", + "revision": "448bf45031a94a1ba08a0cc0", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96125,10 +70442,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1696633733454", - "revision": "c70ac90f862d481a9225fbfb", + "revision": "ede7481fae534b5baa515331", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96144,18 +70461,9 @@ "total_amount": 2100760.38, "id": "1696633733454", "history_id": "1696633733454", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - }, + "date_created": "2023-10-07T05:04:51.607Z", + "date_last_updated": "2023-10-07T05:04:51.607Z", + "date_of_expiration": "2023-10-07T05:04:51.607Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -96163,10 +70471,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c41e5f63449244518c58480b", + "revision": "7223a74b98af4e9da04bcf98", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96174,10 +70482,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.059.569,00 IVIP com um rendimento de +41.191,38 IVIP (2,00%) - Y12XDT27", - "revision": "e2f42811f180453ca9d61ca7", + "revision": "04f309a277294e2ab6c998b8", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96193,24 +70501,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "costs": [] }, - "revision": "b3029a19df35414a933e0ef4", + "revision": "8d86be35732b4efdbe3d6f48", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96218,10 +70514,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1696668184975", - "revision": "2f80343f66444311ac694450", + "revision": "ed2c60f6d1cb4cbcbdca395d", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96237,18 +70533,9 @@ "total_amount": 1100760, "id": "1696668184975", "history_id": "1696668184975", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - }, + "date_created": "2023-10-07T08:43:04.975Z", + "date_last_updated": "2023-10-07T08:43:04.975Z", + "date_of_expiration": "2023-11-07T08:43:04.935Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -96256,10 +70543,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "f82afdaa2ed9411eac46986c", + "revision": "bc04e6b2f87f4fcca388d627", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96267,10 +70554,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.100.760,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 07/11/2023 - Y12XDT27", - "revision": "59ccebbe6e22494b9757aeee", + "revision": "50a38864a6834b9aa5a7bc99", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96279,24 +70566,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-12T13:25:25.577Z", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + ".val": "2023-11-12T13:25:25.577Z" }, - "revision": "91ca289da099440aabd269ad", + "revision": "b3e8785a2a244de2a2c2bc79", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96312,24 +70587,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "costs": [] }, - "revision": "11c09883df354ae496b21ac1", + "revision": "162d7dac37d84bd89aed2426", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96337,10 +70600,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1697203525578", - "revision": "d8600f5f298a4d07b752822f", + "revision": "88fd45a819a940a4a30e8e62", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96356,14 +70619,8 @@ "total_amount": 1600, "id": "1697203525578", "history_id": "1697203525578", - "date_created": { - "type": 6, - "value": 1701459383531 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383531 - }, + "date_created": "2023-10-13T13:25:25.578Z", + "date_last_updated": "2023-10-13T13:32:21.571Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -96373,16 +70630,12 @@ "date_approved": "2023-10-13T13:32:21.571Z", "money_release_date": "2023-10-13T13:32:21.571Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383531 - } + "wasDebited": true }, - "revision": "7f471661c8ad41d6a788f33c", + "revision": "593f7c668aaa4ceb8fa055b7", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96390,10 +70643,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.600,00 BRL para a carteira iVip 1154.3638.5305.7469-60", - "revision": "0a5e6e46b6f348d6979de864", + "revision": "2cb4018c5a4a49349f021442", "revision_nr": 1, - "created": 1701459383531, - "modified": 1701459383531 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96409,24 +70662,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "4c5c6204909c486983c48828", + "revision": "fd3e49d8031a4e6cb6463167", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96434,10 +70675,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1697204057820", - "revision": "c34187f4a80f42b19961cc7d", + "revision": "ef75e97eea254f939fa728c1", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96453,18 +70694,9 @@ "total_amount": 2947170, "id": "1697204057820", "history_id": "1697204057820", - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-10-13T13:34:17.820Z", + "date_last_updated": "2023-10-13T13:34:17.820Z", + "date_of_expiration": "2023-10-13T13:34:17.820Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -96473,10 +70705,10 @@ "description": "Compra de 2.947.170,00 IVIP por 1.600,00 BRL", "status_detail": "accredited" }, - "revision": "1c7a5271d66f46ada85c7912", + "revision": "d36142e6d62e4580b0237b2e", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96484,10 +70716,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7682787f0b7a477e9b1181da", + "revision": "b012f6511b0145079fe97b22", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96495,10 +70727,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a5da1ab8422546e98e42350f", + "revision": "5d09924175bb4436a598704f", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96508,24 +70740,12 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-09-29T12:24:00.020Z", - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "analysisRequested": "2023-09-29T12:24:00.020Z" }, - "revision": "45605e10203b4378a33b1a7e", + "revision": "ebafe03738d045daad631984", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96537,24 +70757,12 @@ "dateValidity": 1689197249139, "totalValue": 309.3, "currencyType": "USD", - "balancesModificacao": "2023-10-13T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "balancesModificacao": "2023-10-13T03:00:00.000Z" }, - "revision": "2c75cf98853849808f88125b", + "revision": "f3e5f245e2af4cc3a2728738", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96562,10 +70770,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "faa0b40554e34e7eb58777ee", + "revision": "9222aa4463c344fa8e47f403", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96573,10 +70781,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b93a1f0e70174417bc8060f1", + "revision": "6d8881f739044223af46a88c", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96587,24 +70795,12 @@ "dataModificacao": 1679078083825, "dateValidity": 1679078083825, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "currencyType": "USD" }, - "revision": "d441f3baae704e629b327f91", + "revision": "e7fdc423260f4f1296a466e2", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96612,10 +70808,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0b2cec9c190843bbae19eba0", + "revision": "882622e268ff4f068bc9ce63", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96624,24 +70820,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "limitUsed": 0 }, - "revision": "9185c67e4e004db7be77ebb8", + "revision": "9687d5007ddb4225ae8694cf", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96651,24 +70835,12 @@ "value": { "available": "36743092.00000000", "symbol": "IVIP", - "value": 7620.42, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "value": 7620.42 }, - "revision": "0503efd029ef43a68e6f5bb4", + "revision": "f2fd2c6b5d9948bcb3bcb6ae", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96676,10 +70848,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "09358b3e0b144b6f8bf85afa", + "revision": "0e462c47a5934a41aa5e287c", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96687,24 +70859,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "01449e121b5d49c9a6b24cea", + "revision": "aa8fbffae3ff475dabb826a7", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96719,18 +70879,9 @@ "total_amount": 10000, "history_id": 1685463962891, "id": 1685463962891, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-05-30T16:26:02.891Z", + "date_last_updated": "2023-05-30T17:41:26.567Z", + "date_of_expiration": "2023-06-29T16:26:02.891Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -96740,10 +70891,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a8f63ee9c977483e9b152c24", + "revision": "d9e22fd148c84a53a9caa44d", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96751,10 +70902,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1162.6149.5252.0901-80", - "revision": "88453f0886144408889b6528", + "revision": "9f1c5854fd5c4bc1a71a0d44", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96772,24 +70923,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "0cf44a350fcd409a8833d2db", + "revision": "fd6837ccff1440fe9092e9cd", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96805,18 +70944,9 @@ "original_amount": 36743092, "total_amount": 36743092, "id": 1688996128425, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-07-10T13:35:28.425Z", + "date_last_updated": "2023-07-10T13:35:28.425Z", + "date_of_expiration": "2023-07-10T13:35:28.425Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -96825,10 +70955,10 @@ "history_id": 1688996128425, "description": "Compra de 36.743.092,00 IVIP por 10.000,70 BRL" }, - "revision": "643babc5ea214f79ac0f9381", + "revision": "17adcd312cfb468f8273d0d2", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96836,10 +70966,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "180a98abcc48419aaa839378", + "revision": "432190bb17b94d4d93642ce3", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96851,24 +70981,12 @@ "dateValidity": 1685463582486, "totalValue": 5105.87, "currencyType": "USD", - "balancesModificacao": "2023-10-02T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "balancesModificacao": "2023-10-02T03:00:00.000Z" }, - "revision": "570259839d684ef986a6407b", + "revision": "2904465912d94cfb8761421e", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96876,10 +70994,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "95a73ef52d7c4ea08e4e38d1", + "revision": "d9f6ce77a341414c8e45f9fb", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96887,10 +71005,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6718e03891e5419fab6afbde", + "revision": "d74b4051f3774486a99f118b", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96898,10 +71016,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "96b21bb6ef3043c5b90aaa42", + "revision": "6acc041ddf874371bf93b7d0", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96910,24 +71028,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "limitUsed": 0 }, - "revision": "c32ee374fe1547bd807aed8c", + "revision": "d203ac1dac704b6d88a59e71", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96937,24 +71043,12 @@ "value": { "dataModificacao": 1678753662620, "dateValidity": 1678768062657, - "totalValue": 0, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "totalValue": 0 }, - "revision": "be537a45112441dc8552adda", + "revision": "5eaba4b55fff40fd8472120e", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96962,10 +71056,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "162515cf43d84f3cb7ce5250", + "revision": "b14a7035858b4bd7a51af740", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96973,10 +71067,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ed3e6ba823e6423584b0c843", + "revision": "5d1bc231131d40f681fd7ff0", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -96987,24 +71081,12 @@ "dataModificacao": 1678532146149, "dateValidity": 1678546546189, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "currencyType": "USD" }, - "revision": "818c3aad6a6b4e03a42a1cf0", + "revision": "0785fbcbbe8f4c2d98d64994", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97014,24 +71096,12 @@ "value": { "available": "0.70000000", "symbol": "IVIP", - "value": 0.00037, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "value": 0.00037 }, - "revision": "06d28701ba424a0987b3f6f7", + "revision": "a20a291d6ce64597a8a0d2d8", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97039,10 +71109,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0e69992f819e4bc08f9d1245", + "revision": "59ec8e608d2c479cafc637d9", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97050,24 +71120,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "14520c172df344d0966ad0e9", + "revision": "f26a928811274ec384e1e464", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97082,18 +71140,9 @@ "total_amount": 200, "history_id": 1677877705308, "id": 1677877705308, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-03-03T21:08:25.308Z", + "date_last_updated": "2023-03-03T21:16:05.656Z", + "date_of_expiration": "2023-04-02T21:08:25.308Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -97103,10 +71152,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c7f359bc64c04e25837de0c3", + "revision": "b3c491f6123e4c25bced2ac9", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97114,10 +71163,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "dd8cb03d9e71413f9ac7fb7c", + "revision": "00cbcd5df98b46a98c995596", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97135,24 +71184,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "d8372b147ccd4ccf958e1145", + "revision": "27eae2eb839245cca36dbabc", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97168,18 +71205,9 @@ "original_amount": 1428465, "total_amount": 1428465, "id": 1678145189537, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-03-06T23:26:29.537Z", + "date_last_updated": "2023-03-06T23:26:29.537Z", + "date_of_expiration": "2023-03-06T23:26:29.537Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -97188,10 +71216,10 @@ "history_id": 1678145189537, "description": "Compra de 1428465 IVIP por 200 BRL" }, - "revision": "6d39c0ecc5354352b6895b5b", + "revision": "c722b43d7f4c45f88793d682", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97199,24 +71227,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "d065d14152c846419504f88d", + "revision": "103531b84d604b82a84af02d", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97231,27 +71247,18 @@ "total_amount": 2000, "history_id": 1683395429062, "id": 1683395429062, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-05-06T17:50:29.062Z", + "date_last_updated": "2023-05-06T17:50:29.062Z", + "date_of_expiration": "2023-06-05T17:50:29.062Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "04a70eb3f18243e9aa4db8de", + "revision": "bdbfc3ba852d4e768c78476f", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97259,10 +71266,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "e998a2b374bc488f98c88a23", + "revision": "c71df0a14a77418a822292ac", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97270,24 +71277,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "96321a07e4d84dcfa2a44b1d", + "revision": "49e17eea430d463183e7c11a", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97302,18 +71297,9 @@ "total_amount": 350, "history_id": 1684179573429, "id": 1684179573429, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-05-15T19:39:33.429Z", + "date_last_updated": "2023-05-15T20:13:31.494Z", + "date_of_expiration": "2023-06-14T19:39:33.429Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -97323,10 +71309,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3daab41978eb4430a5e7edbc", + "revision": "f85e5647315146e3bfb737e1", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97334,10 +71320,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 350,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "f2fb747ff83d43099f359be2", + "revision": "89dd9baa29cf490ba6db0e62", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97347,24 +71333,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 6.00%", - "amount": 60, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "amount": 60 }, - "revision": "79332dab05ee4cf2980cf81f", + "revision": "fcf1f81bfacb4a73865515c3", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97372,10 +71346,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d915d3841f8c4017a0a175b6", + "revision": "d5513af3d2e3491f914ff76b", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97383,10 +71357,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e29ee5c16cf64f429b1b13c6", + "revision": "444928b93a984e1f9f52304d", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97401,28 +71375,19 @@ "total_amount": 1060, "history_id": 1684182120706, "id": 1684182120706, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-05-15T20:22:00.706Z", + "date_last_updated": "2023-05-15T20:22:00.706Z", + "date_of_expiration": "2023-06-14T20:22:00.706Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "14bb7b3744424d19b7c1b2a7", + "revision": "54befd1316514094a8f49a21", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97430,10 +71395,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", - "revision": "bb01430b1a08448fbe6b86d6", + "revision": "a55e7208d0654592b7258bdb", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97451,24 +71416,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "fa81f0bbe96f4b7ca022c7ad", + "revision": "fa8a6be3754643f682ea581a", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97484,18 +71437,9 @@ "original_amount": 6575487, "total_amount": 6575487, "id": 1684624218931, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-05-20T23:10:18.931Z", + "date_last_updated": "2023-05-20T23:10:18.931Z", + "date_of_expiration": "2023-05-20T23:10:18.931Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -97504,10 +71448,10 @@ "history_id": 1684624218931, "description": "Compra de 6.575.487,00 IVIP por 1.350,00 BRL" }, - "revision": "8ef8c55a641f47cfb1f71b95", + "revision": "aa6c5d6ee2764b53a35f6d99", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97515,24 +71459,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "af1752b0705148f893b35ce8", + "revision": "908a65de03514f9dad03b8df", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97547,27 +71479,18 @@ "total_amount": 2982650, "history_id": 1685388624157, "id": 1685388624157, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-05-29T19:30:24.157Z", + "date_last_updated": "2023-05-29T19:30:24.157Z", + "date_of_expiration": "2023-05-29T19:30:24.157Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "4994894fbd1d4cb391415420", + "revision": "7fe84503e987455f9847c126", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97575,10 +71498,10 @@ "content": { "type": "STRING", "value": "Saque de 2.982.650,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "0e8bdc0b54564e9487977bc3", + "revision": "6b55d23c9aff48aaa7e263d4", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97586,24 +71509,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "7fbadba3100b48bbaaa63432", + "revision": "b24f2299ddae4259a39bdaa9", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97618,27 +71529,18 @@ "total_amount": 8003952, "history_id": 1685389940740, "id": 1685389940740, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-05-29T19:52:20.740Z", + "date_last_updated": "2023-05-29T19:52:20.740Z", + "date_of_expiration": "2023-05-29T19:52:20.740Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "cefa6946ace6482092b385e8", + "revision": "0f9c24b4654f4a2eb7daa0d8", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97646,10 +71548,10 @@ "content": { "type": "STRING", "value": "Saque de 8.003.952,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "b30c00a8d6784d169e4de981", + "revision": "edb194124d8d44cc93e90ff3", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97667,24 +71569,12 @@ "installment_amount": 3568754, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "9ce2237db7864860b6c316cc", + "revision": "37c7e9d247ec47adabf4d65c", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97699,18 +71589,9 @@ "original_amount": 3568754, "total_amount": 3568754, "id": 1685665639073, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-06-02T00:27:19.073Z", + "date_last_updated": "2023-06-02T00:27:19.073Z", + "date_of_expiration": "2023-07-02T00:27:19.073Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -97719,10 +71600,10 @@ "history_id": 1685665639073, "wasDebited": true }, - "revision": "d954215168f54010b59cdd29", + "revision": "bf431dfc33884c5d9c565fe2", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97730,10 +71611,10 @@ "content": { "type": "STRING", "value": "Investimento de 3.568.754,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "b41b75eebf2b433382e119df", + "revision": "8c5539b42be241f7b20e2745", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97751,24 +71632,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "13db97b8fa9f44e4a8b49bc5", + "revision": "007008329cc74ff3a4ed5197", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97783,18 +71652,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685668997292, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-06-02T01:23:17.292Z", + "date_last_updated": "2023-06-02T01:23:17.292Z", + "date_of_expiration": "2023-12-02T01:23:17.292Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -97802,10 +71662,10 @@ "currency_id": "IVIP", "history_id": 1685668997292 }, - "revision": "81cdd5942b8d4f00bb570fa0", + "revision": "6f7202125e8f4b2b8b0c7037", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97813,10 +71673,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", - "revision": "b95c5e60519e4b7ba98dadf7", + "revision": "8744a87e402248a7a1f70214", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97834,24 +71694,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "3152b788315143329a119398", + "revision": "f88eb9c8db4f49c68a0f419a", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97866,18 +71714,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685669010794, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-06-02T01:23:30.794Z", + "date_last_updated": "2023-06-02T01:23:30.794Z", + "date_of_expiration": "2024-06-02T01:23:30.794Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -97885,10 +71724,10 @@ "currency_id": "IVIP", "history_id": 1685669010794 }, - "revision": "271972b2a8914d108bb6ce40", + "revision": "9984d898824f4589b91ec45b", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -97896,10 +71735,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "2ffa079a78df4442bac0ab12", + "revision": "04da8ebdabe946a99c500219", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509587, + "modified": 1701463509587 } }, { @@ -97917,24 +71756,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "cc40d53f0b204fcab2b09218", + "revision": "fbec0bbf8c1446d29ecdecb0", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -97949,18 +71776,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685669017906, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-06-02T01:23:37.906Z", + "date_last_updated": "2023-06-02T01:23:37.906Z", + "date_of_expiration": "2025-06-02T01:23:37.906Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -97968,10 +71786,10 @@ "currency_id": "IVIP", "history_id": 1685669017906 }, - "revision": "e45c11c2ca234c0b8a61180a", + "revision": "dd553ac1c4934a3d9c849674", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -97979,10 +71797,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "35356de6f5ee47b6b572821c", + "revision": "94faeb5953e54967bb9abf97", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -97990,24 +71808,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "9ea80c24f12b45d7a6deaf14", + "revision": "75debc0b7cb346f69a0da26b", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98022,27 +71828,18 @@ "total_amount": 470112, "history_id": 1686742076839, "id": 1686742076839, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-06-14T11:27:56.839Z", + "date_last_updated": "2023-06-14T11:27:56.839Z", + "date_of_expiration": "2023-06-14T11:27:56.839Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "9293bab87a6d44f0aefdbed3", + "revision": "73652ad8070d4d55863e4d30", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98050,10 +71847,10 @@ "content": { "type": "STRING", "value": "Saque de 470.112,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "37b5f00eeef842fba3110bf5", + "revision": "c3f3e998eae64934a7b7b68b", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98061,24 +71858,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "f183d6af3bf14db0a0920368", + "revision": "f50bda826ba04944999ea251", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98093,27 +71878,18 @@ "total_amount": 530, "history_id": 1686831828859, "id": 1686831828859, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-06-15T12:23:48.859Z", + "date_last_updated": "2023-06-15T12:23:48.859Z", + "date_of_expiration": "2023-07-15T12:23:48.859Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "0baa31e0ef4940878d8926c2", + "revision": "1464428730004f67ba2c1305", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98121,10 +71897,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "79306493a99d4b689b16c40e", + "revision": "93e96fb6fe2e4c57a9b6ab47", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98132,24 +71908,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "308dfe8458d14def921341bf", + "revision": "8be1ec5d16ac4fd996127cd8", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98164,18 +71928,9 @@ "total_amount": 530, "history_id": 1686831937569, "id": 1686831937569, - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-06-15T12:25:37.569Z", + "date_last_updated": "2023-06-15T14:10:38.027Z", + "date_of_expiration": "2023-07-15T12:25:37.569Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -98185,10 +71940,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "6f9e9480e5e343a283f08eb7", + "revision": "67aafb67c0cd4529bfc2b85f", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98196,10 +71951,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "1dc51f2126b24f72bd089c5f", + "revision": "1d5db7af472148089c1bc4fc", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98219,24 +71974,12 @@ "installment_amount": 530, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - } + "costs": [] }, - "revision": "268069167a4c4179a5515c0a", + "revision": "79214679f01941a3acf577b6", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98253,18 +71996,9 @@ "total_amount": 530, "id": 1686838699070, "contract_id": "1684182120706", - "date_created": { - "type": 6, - "value": 1701459383532 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383532 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383532 - }, + "date_created": "2023-06-15T14:18:19.070Z", + "date_last_updated": "2023-06-15T14:18:19.070Z", + "date_of_expiration": "2023-06-15T14:18:19.070Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -98272,10 +72006,10 @@ "currency_id": "BRL", "history_id": 1686838699070 }, - "revision": "1cd798a8d81d4ad5b4713ec9", + "revision": "87f44b08b3ec4bd9b0c8bad9", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98283,10 +72017,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 2 no valor de 530,00 BRL referente ao contrato 1684182120706", - "revision": "1ce0020088fe4dc5b0f8e716", + "revision": "fb6953e8a5f4426fb4c083a4", "revision_nr": 1, - "created": 1701459383532, - "modified": 1701459383532 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98294,24 +72028,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "d6962c07ff6b4d6ba79094c8", + "revision": "ee3e87631e7a4875b6be63cf", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98326,27 +72048,18 @@ "total_amount": 3897629, "history_id": 1686838872989, "id": 1686838872989, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-06-15T14:21:12.989Z", + "date_last_updated": "2023-06-15T14:21:12.989Z", + "date_of_expiration": "2023-06-15T14:21:12.989Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "6aa0bcd4dd4d4254bae8f909", + "revision": "aa7e8b0f50e54fd9b37fa9ff", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98354,10 +72067,10 @@ "content": { "type": "STRING", "value": "Saque de 3.897.629,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "99cec4156ae74dcb99a3a32a", + "revision": "2e1264eceb3345178dc40213", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98375,24 +72088,12 @@ "installment_amount": 3568754, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "4bd6245faa0a4cf2b8dce28d", + "revision": "a794dd6475924f20a1879b9e", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98407,18 +72108,9 @@ "original_amount": 3640129.08, "total_amount": 3640129.08, "id": 1688400243137, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-07-03T16:04:03.137Z", + "date_last_updated": "2023-07-03T16:04:03.137Z", + "date_of_expiration": "2023-07-03T16:04:03.137Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -98427,10 +72119,10 @@ "history_id": 1688400243137, "wasDebited": true }, - "revision": "5fde616a2b8747b2a30364f1", + "revision": "0f039a2ee8ee45728daf533b", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98438,10 +72130,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 3.568.754,00 IVIP com um rendimento de +71.375,08 IVIP (2,00%)", - "revision": "0fdc92bc1f8a4d8299d42afc", + "revision": "87b975a11d9f408ebe88933c", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98449,24 +72141,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "39e22f98fee249a4a9ad791f", + "revision": "63a68123aac34c9a9c55bced", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98481,27 +72161,18 @@ "total_amount": 4926607, "history_id": 1688424411822, "id": 1688424411822, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-07-03T22:46:51.822Z", + "date_last_updated": "2023-07-03T22:46:51.822Z", + "date_of_expiration": "2023-07-03T22:46:51.822Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "fe41daaf6a184958b52ed16a", + "revision": "6556b014ca75413d83945ae8", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98509,10 +72180,10 @@ "content": { "type": "STRING", "value": "Saque de 4.926.607,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "973bf239422d4992a97f8ba5", + "revision": "858afbd7bf624caebfd16058", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98520,24 +72191,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "4e75b595c86b46c58d87353b", + "revision": "1574bb01743f4fd09acbbb4e", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98552,18 +72211,9 @@ "total_amount": 1082278, "history_id": 1689020922030, "id": 1689020922030, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-07-10T20:28:42.030Z", + "date_last_updated": "2023-07-10T20:43:39.362Z", + "date_of_expiration": "2023-07-10T20:28:42.030Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -98573,10 +72223,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "0c763d9ca560414fbb7916ff", + "revision": "62d4dffbc711461393ca2224", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98584,10 +72234,10 @@ "content": { "type": "STRING", "value": "Saque de 1.082.278,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "805504c984fe422e80774f89", + "revision": "876a42c37ad843bd9e533480", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98595,24 +72245,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "df37badd20b6436a9bec5042", + "revision": "703ef4d2c735453ea0833e17", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98627,27 +72265,18 @@ "total_amount": 5031032, "history_id": 1689102393644, "id": 1689102393644, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-07-11T19:06:33.644Z", + "date_last_updated": "2023-07-11T19:06:33.644Z", + "date_of_expiration": "2023-07-11T19:06:33.644Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "fad5b77a75f54eed95c94aad", + "revision": "609499d69a7b40edb22dfeff", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98655,10 +72284,10 @@ "content": { "type": "STRING", "value": "Saque de 5.031.032,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", - "revision": "4f3057dde20d492181c189bb", + "revision": "297351e4f68742f79db8c477", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98666,24 +72295,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "0db83ba5a95742ae89a8d32b", + "revision": "0500cbb82759441690b34ff7", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98698,27 +72315,18 @@ "total_amount": 5995148, "history_id": 1689189282410, "id": 1689189282410, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-07-12T19:14:42.410Z", + "date_last_updated": "2023-07-12T19:14:42.410Z", + "date_of_expiration": "2023-07-12T19:14:42.410Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "94410d2e6408406a8a83d620", + "revision": "742ab4aeb2054d7893640e00", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98726,10 +72334,10 @@ "content": { "type": "STRING", "value": "Saque de 5.995.148,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "d13e828315de4ab19768e400", + "revision": "edb65ce4944248f7929bbe0e", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98737,24 +72345,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "f490168a39764a75896235ca", + "revision": "8dbdea14c7bf4fd7aae81627", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98769,27 +72365,18 @@ "total_amount": 1000000, "history_id": 1689258056089, "id": 1689258056089, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-07-13T14:20:56.089Z", + "date_last_updated": "2023-07-13T14:20:56.089Z", + "date_of_expiration": "2023-07-13T14:20:56.089Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "7424a0b2145f43ee8a848b1f", + "revision": "84a3bb20af2c43bdac1541c2", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98797,10 +72384,10 @@ "content": { "type": "STRING", "value": "Saque de 1.000.000,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "3cd3a99d7699420ca25c826f", + "revision": "7f4078f354574b48b0d9c807", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98808,24 +72395,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "7cba615064454917a2385d9f", + "revision": "373483a7b3cb45488bd51234", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98840,27 +72415,18 @@ "total_amount": 530, "history_id": 1689390236969, "id": 1689390236969, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-07-15T03:03:56.969Z", + "date_last_updated": "2023-07-15T03:03:56.969Z", + "date_of_expiration": "2023-08-14T03:03:56.969Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "9438b952bb024df683b78ef2", + "revision": "fa837bc672ff4c8d8baeed32", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98868,10 +72434,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "aa074b8b37de40bdaf2c6673", + "revision": "c871509762004766b946646f", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98879,24 +72445,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "0bb1a374256f4aa79043a350", + "revision": "991513d9b78d4208b3af08ef", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98911,27 +72465,18 @@ "total_amount": 530, "history_id": 1689424277440, "id": 1689424277440, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-07-15T12:31:17.440Z", + "date_last_updated": "2023-07-15T12:31:17.440Z", + "date_of_expiration": "2023-08-14T12:31:17.440Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "06ec7195b66046cd8583e069", + "revision": "88b4075fdf1f4bc787746c83", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98939,10 +72484,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "fed4448dcfc0499e963e2a41", + "revision": "e9ef6bdb762a4c0c99ad6c61", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98950,24 +72495,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "449d397e29444f2da0cce84e", + "revision": "1c4659733130473e9d3012c3", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -98982,18 +72515,9 @@ "total_amount": 530, "history_id": 1689612021512, "id": 1689612021512, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-07-17T16:40:21.512Z", + "date_last_updated": "2023-07-25T18:05:52.467Z", + "date_of_expiration": "2023-08-16T16:40:21.512Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -99003,10 +72527,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f8ba39eed1db49d2b6e3b623", + "revision": "31d9c798b8bc4a1c9f50317a", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -99014,10 +72538,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "59c69f2428c042ae98034d6b", + "revision": "5cbb5d3cbbb348d68e6c43e4", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -99025,24 +72549,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "f58a80043c0346ffafd3c307", + "revision": "a56ef5a103c5429dad4ee1d4", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -99057,27 +72569,18 @@ "total_amount": 2000000, "history_id": 1689612840534, "id": 1689612840534, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-07-17T16:54:00.534Z", + "date_last_updated": "2023-07-17T16:54:00.534Z", + "date_of_expiration": "2023-07-17T16:54:00.534Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "6b98c4729b794850851b5ef6", + "revision": "473e6a0ddfc9467e9c7ae443", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -99085,10 +72588,10 @@ "content": { "type": "STRING", "value": "Saque de 2.000.000,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "662f4f77ec044d28844a7ed1", + "revision": "d735b3ef322c42989150546e", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -99108,24 +72611,12 @@ "installment_amount": 530, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "2a29ed92fe714efe9868d0d6", + "revision": "a953800429a745a39fccce71", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -99142,18 +72633,9 @@ "total_amount": 530, "id": 1690326796884, "contract_id": "1684182120706", - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-07-25T23:13:16.884Z", + "date_last_updated": "2023-07-25T23:13:16.884Z", + "date_of_expiration": "2023-07-25T23:13:16.884Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -99161,10 +72643,10 @@ "currency_id": "BRL", "history_id": 1690326796884 }, - "revision": "67f27b71798842bead4c6df5", + "revision": "f4df6e20fda542e88d794cce", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -99172,10 +72654,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 2 no valor de 530,00 BRL referente ao contrato 1684182120706", - "revision": "71aaad1266534098aba5d4ef", + "revision": "3b9cb9eb2fd346369338a671", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -99191,24 +72673,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "2aa0625f28124135a682a731", + "revision": "5c805c1efbd24bad8091ffcc", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -99216,10 +72686,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1690327152842", - "revision": "a23b22d7a6a141bba9f339ea", + "revision": "cf7ea3a0b2304e26a8aa15c1", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -99234,18 +72704,9 @@ "total_amount": 6990049, "id": 1690327152842, "history_id": 1690327152842, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-07-25T23:19:12.842Z", + "date_last_updated": "2023-07-26T17:34:13.723Z", + "date_of_expiration": "2023-07-25T23:19:12.842Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", @@ -99256,10 +72717,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "bfd6b70cfc754f1e87644abe", + "revision": "1c07a39d4cd649ee80fcf6c5", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -99267,10 +72728,10 @@ "content": { "type": "STRING", "value": "Saque de 6.990.049,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", - "revision": "c4755db74e314de69b0a4dfe", + "revision": "e89c1d86c03749bebf05f544", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509588, + "modified": 1701463509588 } }, { @@ -99286,24 +72747,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "b0e5ace090024a90b1e31e8e", + "revision": "baedf3813051471da87228b8", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99311,10 +72760,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1690371637044", - "revision": "004a09ef5aaf42d3ac1687c7", + "revision": "450ed5d2f59d4da68b74c48b", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99329,18 +72778,9 @@ "total_amount": 3280090, "id": 1690371637044, "history_id": 1690371637044, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-07-26T11:40:37.044Z", + "date_last_updated": "2023-07-26T17:33:05.648Z", + "date_of_expiration": "2023-07-26T11:40:37.044Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -99352,10 +72792,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "1287f36e151b4064867ce6e9", + "revision": "14b1b385e8564dab9765b72e", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99363,10 +72803,10 @@ "content": { "type": "STRING", "value": "Saque de 3.280.090,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", - "revision": "545e9d2057e54ce0bf8c19b1", + "revision": "532e07d0c93948cd9b0895e5", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99382,24 +72822,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "e03f7fa48cfe4a13bd6390f9", + "revision": "4c735dde4e214d61808ea1fa", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99407,10 +72835,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1694007742356", - "revision": "65f6d87472ad488cabc6a49d", + "revision": "68e733b3924b4e33b84453db", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99425,18 +72853,9 @@ "total_amount": 3678031, "id": "1694007742356", "history_id": "1694007742356", - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-09-06T13:42:22.356Z", + "date_last_updated": "2023-09-06T13:42:22.356Z", + "date_of_expiration": "2023-10-06T13:42:22.356Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -99444,10 +72863,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "4df31fc9d12247fca5ef0f01", + "revision": "d5ee0da9f89e401b96f93972", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99455,10 +72874,10 @@ "content": { "type": "STRING", "value": "Investimento de 3.678.031,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/10/2023 - Y12XDT27", - "revision": "c7e8e2600098443c846e4575", + "revision": "6385f60e76dc46d2a541e6d5", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99474,24 +72893,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "6687ab434aaf4cb9b9923b78", + "revision": "f3aa14583165446b87fa420f", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99499,10 +72906,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1696599770690", - "revision": "3f356a038d1643af9ac4938a", + "revision": "1d96e6c860a8482181c5469a", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99518,18 +72925,9 @@ "total_amount": 3751591.62, "id": "1696599770690", "history_id": "1696599770690", - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-10-06T13:42:50.690Z", + "date_last_updated": "2023-10-06T13:42:50.690Z", + "date_of_expiration": "2023-10-06T13:42:50.690Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -99537,10 +72935,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "2b5c4e7b20c4441187c77525", + "revision": "81b6bc06e49344dd8ab28d30", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99548,10 +72946,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 3.678.031,00 IVIP com um rendimento de +73.560,62 IVIP (2,00%) - Y12XDT27", - "revision": "fd71520fb9344601b915115b", + "revision": "9248df51633e4ebaacc92714", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99567,24 +72965,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "01e9e52201f6489a80181ce8", + "revision": "d0d743b681084ed3b563b404", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99592,10 +72978,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1696599812843", - "revision": "0873f8757ce3407ca30d62f3", + "revision": "c2e6bcab59494e5ca2dfeca3", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99611,18 +72997,9 @@ "total_amount": 3783519, "id": "1696599812843", "history_id": "1696599812843", - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-10-06T13:43:32.843Z", + "date_last_updated": "2023-10-06T13:43:32.843Z", + "date_of_expiration": "2023-11-06T13:43:32.817Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -99630,10 +73007,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "308154dad36e4187a75b4337", + "revision": "b4e2b0280c5643329509b6ce", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99641,10 +73018,10 @@ "content": { "type": "STRING", "value": "Investimento de 3.783.519,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", - "revision": "3226da924e184993bc33b3aa", + "revision": "1fe196b0c51e4ccdb47140aa", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99652,10 +73029,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5e6fd1214aa74ffd9e86466e", + "revision": "1424e6beb96b4df6b4e6fdcd", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99665,24 +73042,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 6.00%", - "amount": 60, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "amount": 60 }, - "revision": "860da7a7ad3542da8bc86cc9", + "revision": "9fd32ffc9e9641d9b4d2753d", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99696,26 +73061,15 @@ "total_amount": 1060, "installments": 2, "installment_amount": 530, - "date_created": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-05-15T20:22:00.706Z", "history_id": 1684182120706, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "status": "paid" }, - "revision": "2ddf4daae05d4553bcc34b6b", + "revision": "b647092d45b7438a9e98ca22", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99723,10 +73077,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", - "revision": "ecd3bd1ee8234fbaa01f6905", + "revision": "2f80ae679c4c45568c73a8a8", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99734,10 +73088,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "67039d5f63334eb7912b67c4", + "revision": "cd816e65c5cc495c9d021701", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99745,10 +73099,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d823d6da41694849b3b5e5e3", + "revision": "36949e5b85414672a44e67dc", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99758,24 +73112,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 6.00%", - "amount": 60, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "amount": 60 }, - "revision": "b481883c137c435bbadc77dd", + "revision": "2122e4ba4c0942b4968c8f26", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99789,26 +73131,15 @@ "total_amount": 1060, "installments": 2, "installment_amount": 530, - "date_created": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-05-15T20:22:00.706Z", "history_id": 1684182120706, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "status": "paid" }, - "revision": "c83c620a2b074f278b5cf51e", + "revision": "2c425a5267134cb8979454cf", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99816,10 +73147,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", - "revision": "dad552a40c06460bb61fc548", + "revision": "57b8576d92fb422bb115d5b1", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99827,10 +73158,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "7538dfbb275846b5ba330d4f", + "revision": "959319fcab114b2a93fa2ed6", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99838,10 +73169,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "713cd2485a3d424dbc62be4c", + "revision": "907daf2212fd4557a91fc6bb", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99849,10 +73180,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2e5504e3ce3a46f197cf064d", + "revision": "613f74f57dfb487698f506dd", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99863,24 +73194,12 @@ "approvedLimit": 1000, "limitUsed": 0, "analysisRequested": "2023-05-06T03:39:28.087Z", - "lastReview": "2023-05-06T03:39:53.183Z", - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "lastReview": "2023-05-06T03:39:53.183Z" }, - "revision": "b4e7e9ef6bb8402eb5ccfa26", + "revision": "b4a4692addb440718d9d4dc6", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99892,24 +73211,12 @@ "dateValidity": 1678707203279, "totalValue": 2242.137, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "balancesModificacao": "2023-10-15T03:00:00.000Z" }, - "revision": "ee99a0390ea6476985e73da5", + "revision": "d91a71f5a0964a1686ad1aa3", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99919,24 +73226,12 @@ "value": { "available": "5.00000000", "symbol": "BRL", - "value": 0.98, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "value": 0.98 }, - "revision": "871b2552cb704b66a70da99a", + "revision": "54d783632886465cb7104c98", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99946,24 +73241,12 @@ "value": { "available": "0.20000000", "symbol": "IVIP", - "value": 0.000021, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "value": 0.000021 }, - "revision": "234505cb98bc4d2c8c52732d", + "revision": "eea484e04fe241ad98843afb", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99971,10 +73254,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f1ce322f5164430bb74d695d", + "revision": "74b0db2c47784f95a761a465", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -99982,24 +73265,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "7e465d5b38ed422a9a91c279", + "revision": "96c98fe3623e42289cd528e6", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -100014,18 +73285,9 @@ "total_amount": 200, "history_id": 1684492352568, "id": 1684492352568, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-05-19T10:32:32.568Z", + "date_last_updated": "2023-05-19T10:35:07.764Z", + "date_of_expiration": "2023-06-18T10:32:32.568Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -100035,10 +73297,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e7df859bdfb74317a84f7bb8", + "revision": "d1e1d1dcbbad46ae9b9df4d1", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -100046,10 +73308,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "936b30894a4346dbb133a2ec", + "revision": "4bedbaea684e40dd976d8f69", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -100067,24 +73329,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "26f9d72be1c845bb8468a136", + "revision": "1674c3a6786a4aef96614e06", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -100100,18 +73350,9 @@ "original_amount": 974146, "total_amount": 974146, "id": 1684624220546, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-05-20T23:10:20.546Z", + "date_last_updated": "2023-05-20T23:10:20.546Z", + "date_of_expiration": "2023-05-20T23:10:20.546Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -100120,10 +73361,10 @@ "history_id": 1684624220546, "description": "Compra de 974.146,00 IVIP por 200,00 BRL" }, - "revision": "3c88edff0b0142ea9798d71c", + "revision": "30ff6618aebf4adfacca2224", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -100133,24 +73374,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "amount": 100 }, - "revision": "95dbb83fbfdc418fb39aa9ea", + "revision": "4a2dfa7003aa44a4958e0ce7", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -100158,10 +73387,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8f10b6ee3a93469e88bc5827", + "revision": "d631a8b78b814fa6b54b18e0", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -100169,10 +73398,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "31c68b587e4448b6b9456673", + "revision": "279a59def9ff43baa761a2ea", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -100187,28 +73416,19 @@ "total_amount": 1100, "history_id": 1684625319623, "id": 1684625319623, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-05-20T23:28:39.623Z", + "date_last_updated": "2023-05-20T23:28:39.623Z", + "date_of_expiration": "2023-06-19T23:28:39.623Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "f54851c9bfad43d3b56fbf7f", + "revision": "ad9008ceecd54f53927f1803", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -100216,10 +73436,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "7c10ccbc62564cbbbe257b53", + "revision": "ed03743a1d874349902c9217", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509589, + "modified": 1701463509589 } }, { @@ -100237,24 +73457,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - } + "costs": [] }, - "revision": "2f2d76de2d954d77a8665a6f", + "revision": "10d0a207ed2741938ef0ebc9", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509590, + "modified": 1701463509590 } }, { @@ -100270,18 +73478,9 @@ "original_amount": 4870731, "total_amount": 4870731, "id": 1684625351966, - "date_created": { - "type": 6, - "value": 1701459383533 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383533 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383533 - }, + "date_created": "2023-05-20T23:29:11.966Z", + "date_last_updated": "2023-05-20T23:29:11.966Z", + "date_of_expiration": "2023-05-20T23:29:11.966Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -100290,10 +73489,10 @@ "history_id": 1684625351966, "description": "Compra de 4.870.731,00 IVIP por 1.000,00 BRL" }, - "revision": "7bc09eb18fa1426a965a542c", + "revision": "6b7abba28af9413da8fbc27c", "revision_nr": 1, - "created": 1701459383533, - "modified": 1701459383533 + "created": 1701463509590, + "modified": 1701463509590 } }, { @@ -100301,24 +73500,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "ecf9c487c2774499a4dd5692", + "revision": "e5df6d073010424fac5259bc", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509590, + "modified": 1701463509590 } }, { @@ -100333,18 +73520,9 @@ "total_amount": 400, "history_id": 1685027205516, "id": 1685027205516, - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-05-25T15:06:45.516Z", + "date_last_updated": "2023-05-28T22:24:43.393Z", + "date_of_expiration": "2023-06-24T15:06:45.516Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -100354,10 +73532,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "120f02b9645a4d02a5b01897", + "revision": "6ab92adf8f1e42b1b1974446", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509590, + "modified": 1701463509590 } }, { @@ -100365,10 +73543,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 400,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "ec246782147245258a823954", + "revision": "86239c75b89a430f8ba8803b", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509590, + "modified": 1701463509590 } }, { @@ -100386,24 +73564,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "286ab92885994cb9973cf498", + "revision": "56ba940ac61f4a02bd8ee1a7", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509590, + "modified": 1701463509590 } }, { @@ -100419,18 +73585,9 @@ "original_amount": 10000000, "total_amount": 10000000, "id": 1685234226998, - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-05-28T00:37:06.998Z", + "date_last_updated": "2023-05-28T00:37:06.998Z", + "date_of_expiration": "2023-05-28T00:37:06.998Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -100438,10 +73595,10 @@ "currency_id": "IVIPAY", "history_id": 1685234226998 }, - "revision": "7f1a49b243f34dc1929fdaaf", + "revision": "b2dab1ac3f2b4f4faeaf0184", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509590, + "modified": 1701463509590 } }, { @@ -100449,10 +73606,10 @@ "content": { "type": "STRING", "value": "Compra de 10.000.000,00 IVIPAY por 1.000.000,00 IVIP estabilizando US$ 41,00", - "revision": "354f1ad66e394707b93c440c", + "revision": "a663b369e2234b36bb8af8f3", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509590, + "modified": 1701463509590 } }, { @@ -100470,24 +73627,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "06ab016333484b8683261b4e", + "revision": "b6bd96c488aa44c6863c6a02", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509590, + "modified": 1701463509590 } }, { @@ -100503,18 +73648,9 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685456788341, - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-05-30T14:26:28.341Z", + "date_last_updated": "2023-05-30T14:26:28.341Z", + "date_of_expiration": "2023-05-30T14:26:28.341Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -100522,10 +73658,10 @@ "currency_id": "IVIP", "history_id": 1685456788341 }, - "revision": "de0b3cc0f6bf43da92bf5641", + "revision": "d379acf4d47d4715acfa5714", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509590, + "modified": 1701463509590 } }, { @@ -100533,10 +73669,10 @@ "content": { "type": "STRING", "value": "Compra de 1.000.000,00 IVIP por 10.000.000,00 IVIPAY", - "revision": "20162769e84540f280002fe6", + "revision": "b1e3be5e0f2e4baa8548e53b", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509590, + "modified": 1701463509590 } }, { @@ -100554,24 +73690,12 @@ "installment_amount": 1000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "2846503d658c4de4ac50e2dd", + "revision": "e48ad35064f549efadf52b45", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509590, + "modified": 1701463509590 } }, { @@ -100586,18 +73710,9 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685665895143, - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-06-02T00:31:35.143Z", + "date_last_updated": "2023-06-02T00:31:35.143Z", + "date_of_expiration": "2025-06-02T00:31:35.143Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -100605,10 +73720,10 @@ "currency_id": "IVIP", "history_id": 1685665895143 }, - "revision": "739ba63939664ff085d5bdce", + "revision": "b796249795c24903a8804b4b", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509590, + "modified": 1701463509590 } }, { @@ -100616,10 +73731,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "e7b272b879194ce6a887ddba", + "revision": "d723a5f889164319aba49cfe", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509590, + "modified": 1701463509590 } }, { @@ -100637,24 +73752,12 @@ "installment_amount": 1000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "2273e2d0ac164e79917535a9", + "revision": "f2cdccb14b16461eb4bad699", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509590, + "modified": 1701463509590 } }, { @@ -100669,18 +73772,9 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685665913616, - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-06-02T00:31:53.616Z", + "date_last_updated": "2023-06-02T00:31:53.616Z", + "date_of_expiration": "2024-06-02T00:31:53.616Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -100688,10 +73782,10 @@ "currency_id": "IVIP", "history_id": 1685665913616 }, - "revision": "c81c8e06d90f464db793d532", + "revision": "592584e1819149b19fc138ac", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509590, + "modified": 1701463509590 } }, { @@ -100699,10 +73793,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "3082d952bb8549c392495089", + "revision": "743ca146dc7943c794509751", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509590, + "modified": 1701463509590 } }, { @@ -100720,24 +73814,12 @@ "installment_amount": 1844877, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "e9d742f22ed9461e9c1b9207", + "revision": "fd1ee9d2ae50499f8cfa516d", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -100752,18 +73834,9 @@ "original_amount": 1844877, "total_amount": 1844877, "id": 1685665938582, - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-06-02T00:32:18.582Z", + "date_last_updated": "2023-06-02T00:32:18.582Z", + "date_of_expiration": "2023-12-02T00:32:18.582Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -100772,10 +73845,10 @@ "history_id": 1685665938582, "wasDebited": true }, - "revision": "9134d62b22f0430b82434b69", + "revision": "110775d869dc46f69ef6c5cc", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -100783,10 +73856,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.844.877,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", - "revision": "cf92ea9569814aa7ab007101", + "revision": "82271028e7e24105a880f1dd", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -100804,24 +73877,12 @@ "installment_amount": 1000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "2fc2da95aba1425886aa0bd4", + "revision": "94c6fbb150b04e42beedde6e", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -100836,18 +73897,9 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685665980650, - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-06-02T00:33:00.650Z", + "date_last_updated": "2023-06-02T00:33:00.650Z", + "date_of_expiration": "2023-07-02T00:33:00.650Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -100855,10 +73907,10 @@ "currency_id": "IVIP", "history_id": 1685665980650 }, - "revision": "aa4646c3c4374c0b8027ae88", + "revision": "f51e90143ab44a28a0ed47ff", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -100866,10 +73918,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "dfc484452bf941259a6409c9", + "revision": "0b09a0ec36a64026b8a54b31", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -100887,24 +73939,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "2f17a28710e4452ea19d5139", + "revision": "7f1344d2e92440d996b80e89", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -100920,18 +73960,9 @@ "original_amount": 1403508, "total_amount": 1403508, "id": 1685743358755, - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-06-02T22:02:38.755Z", + "date_last_updated": "2023-06-02T22:02:38.755Z", + "date_of_expiration": "2023-06-02T22:02:38.755Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -100940,10 +73971,10 @@ "history_id": 1685743358755, "description": "Compra de 1.403.508,00 IVIP por 400,00 BRL" }, - "revision": "925123251d2b404e9b3b35bb", + "revision": "b33a93feea9348b28ba0461c", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -100951,24 +73982,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "f19fd98344bc4c5fad2d57f6", + "revision": "2a28a3ad79d84124a792c880", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -100983,18 +74002,9 @@ "total_amount": 250, "history_id": 1686581106502, "id": 1686581106502, - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-06-12T14:45:06.502Z", + "date_last_updated": "2023-06-12T15:20:07.910Z", + "date_of_expiration": "2023-07-12T14:45:06.502Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -101004,10 +74014,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "29d36abd2cd64a5a999f6239", + "revision": "1f7f828a17d647f68e41cbbf", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101015,10 +74025,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 250,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "9553cae660ea4b8a9f0471f2", + "revision": "f65236b18de44592a575c356", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101038,24 +74048,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "5e349a8366234cb4bf03d5d2", + "revision": "d180ef21bb864355acc30998", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101072,18 +74070,9 @@ "total_amount": 220, "id": 1686597954870, "contract_id": "1684625319623", - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-06-12T19:25:54.870Z", + "date_last_updated": "2023-06-12T19:25:54.870Z", + "date_of_expiration": "2023-06-12T19:25:54.870Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -101091,10 +74080,10 @@ "currency_id": "BRL", "history_id": 1686597954870 }, - "revision": "46412b5e1fc7412fb362cc79", + "revision": "10a39e9fcd6447ccb1b0c4a8", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101102,10 +74091,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "6dba7b3f5bc14409a662dbfb", + "revision": "0823ae18be944120b59bde06", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101123,24 +74112,12 @@ "installment_amount": 2000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "004d319c5c8b4550b4162438", + "revision": "bdc7d2951c27460aa6f645de", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101155,18 +74132,9 @@ "original_amount": 2000000, "total_amount": 2000000, "id": 1687313544975, - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-06-21T02:12:24.975Z", + "date_last_updated": "2023-06-21T02:12:24.975Z", + "date_of_expiration": "2024-06-21T02:12:24.975Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -101174,10 +74142,10 @@ "currency_id": "IVIP", "history_id": 1687313544975 }, - "revision": "1246f9fc3abf4bd2af5fb118", + "revision": "cdecb0db84f64d229502d2e2", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101185,10 +74153,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", - "revision": "15a0e1a2e8d4429d9e910adc", + "revision": "63ee38ff7c7b4a559525a2f9", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101206,24 +74174,12 @@ "installment_amount": 1000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "42fdefe273af4606902ea429", + "revision": "6600df28cefe4c4db3fa717e", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101238,18 +74194,9 @@ "original_amount": 1020000, "total_amount": 1020000, "id": 1688400283150, - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-07-03T16:04:43.150Z", + "date_last_updated": "2023-07-03T16:04:43.150Z", + "date_of_expiration": "2023-07-03T16:04:43.150Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -101258,10 +74205,10 @@ "history_id": 1688400283150, "wasDebited": true }, - "revision": "1e52a25879544041b53506b1", + "revision": "a89de6c8f1324cf5b66e0bc7", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101269,10 +74216,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 1.000.000,00 IVIP com um rendimento de +20.000,00 IVIP (2,00%)", - "revision": "a3e9595083884f28b6d51042", + "revision": "60db1ea56bcd41d3a200f8c5", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101290,24 +74237,12 @@ "installment_amount": 3268385, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "e91699f5751a45a58cd48026", + "revision": "9651f57ae95c43b1a7992c29", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101322,18 +74257,9 @@ "original_amount": 3268385, "total_amount": 3268385, "id": 1688400827775, - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-07-03T16:13:47.775Z", + "date_last_updated": "2023-07-03T16:13:47.775Z", + "date_of_expiration": "2023-08-03T16:13:47.775Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -101341,10 +74267,10 @@ "currency_id": "IVIP", "history_id": 1688400827775 }, - "revision": "a9edf859dcfc4b4a8951606d", + "revision": "39de90090ffd416da4d368c4", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101352,10 +74278,10 @@ "content": { "type": "STRING", "value": "Investimento de 3.268.385,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "bd9480e15c4e4ffa9d5f47ab", + "revision": "941a6d04fe064da693d78fd7", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101363,24 +74289,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "f729290490674729b57dd64c", + "revision": "e9d3982464f14262b9a3aad8", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101395,18 +74309,9 @@ "total_amount": 200, "history_id": 1689085555442, "id": 1689085555442, - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-07-11T14:25:55.442Z", + "date_last_updated": "2023-07-12T13:26:43.996Z", + "date_of_expiration": "2023-08-10T14:25:55.442Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -101416,10 +74321,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c3a6c641fe3043b9985dd21d", + "revision": "c27c25a0412943d39951fd99", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101427,10 +74332,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "3cb290e70ecc4d489cf53a22", + "revision": "3caaf3ab16ad4f05b723751d", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101450,24 +74355,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "33ed0f9503544ce7be1ae80c", + "revision": "782f01350c0e4de490c07caa", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101484,18 +74377,9 @@ "total_amount": 220, "id": 1689168458989, "contract_id": "1684625319623", - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-07-12T13:27:38.989Z", + "date_last_updated": "2023-07-12T13:27:38.989Z", + "date_of_expiration": "2023-07-12T13:27:38.989Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -101503,10 +74387,10 @@ "currency_id": "BRL", "history_id": 1689168458989 }, - "revision": "bf18867259674aef926d6204", + "revision": "08a4caf0ec314817827bbe6c", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101514,10 +74398,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "480b4ae60f95495895346124", + "revision": "b29a8975dea04a1ea4514514", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101535,24 +74419,12 @@ "installment_amount": 3268385, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "6798219758f245779075ae44", + "revision": "bda4a88c09474087b346880c", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101567,18 +74439,9 @@ "original_amount": 3333752.7, "total_amount": 3333752.7, "id": 1691079300942, - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-08-03T16:15:00.942Z", + "date_last_updated": "2023-08-03T16:15:00.942Z", + "date_of_expiration": "2023-08-03T16:15:00.942Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -101587,10 +74450,10 @@ "history_id": 1691079300942, "wasDebited": true }, - "revision": "4769ba95a0354fb8a887d9f2", + "revision": "256ac96894b74c99ae438974", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101598,10 +74461,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 3.268.385,00 IVIP com um rendimento de +65.367,7 IVIP (2,00%)", - "revision": "982c4d14b91b403f852a985d", + "revision": "abeee6deb4f34f35bce20472", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101617,24 +74480,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "0bc0f38e36e44dbfb4448b5b", + "revision": "d832e1405359417cba58637f", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101642,10 +74493,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1691084485881", - "revision": "b3519f9e762b48dc8c015e40", + "revision": "45db2d4dfaca4014bca30ad5", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101660,18 +74511,9 @@ "total_amount": 1488875, "id": 1691084485881, "history_id": 1691084485881, - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-08-03T17:41:25.881Z", + "date_last_updated": "2023-08-03T17:41:25.881Z", + "date_of_expiration": "2023-09-03T17:41:25.881Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -101679,10 +74521,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "1fcebc29a12640aaa282b22a", + "revision": "d2bfb2f1e3104f6785ad8cb2", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101690,10 +74532,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.488.875,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "586db5801d6e49ea94667ba5", + "revision": "7e2dd6713d144dd3b67b145e", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101702,24 +74544,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-13T13:01:20.318Z", - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + ".val": "2023-09-13T13:01:20.318Z" }, - "revision": "8610bd5f710a4d4d8e4d1222", + "revision": "adf97bc5ab2148de98021ac9", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101735,24 +74565,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "79571f43da644c0aadb6af0d", + "revision": "c46ecd4118084c87bf55277c", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101760,10 +74578,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1692018080319", - "revision": "f4c366b8755a4a0f98b84b9f", + "revision": "e37563a0bc154363a40e877b", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101778,14 +74596,8 @@ "total_amount": 250, "id": 1692018080319, "history_id": 1692018080319, - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-08-14T13:01:20.319Z", + "date_last_updated": "2023-08-14T13:42:27.554Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -101795,16 +74607,12 @@ "date_approved": "2023-08-14T13:42:27.554Z", "money_release_date": "2023-08-14T13:42:27.554Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "wasDebited": true }, - "revision": "f29fcef0f0d844b68e15f86b", + "revision": "936825b93a2d4d89abd78a87", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101812,10 +74620,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 250,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "be1cd18c3e9b4b86a352afb9", + "revision": "dea6dcba73ca4735826ac37a", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101835,24 +74643,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "f86b286607fc4c098d98e7b4", + "revision": "e22ed68f489040619a359b02", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101869,18 +74665,9 @@ "total_amount": 220, "id": 1692288719964, "contract_id": "1684625319623", - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-08-17T16:11:59.964Z", + "date_last_updated": "2023-08-17T16:11:59.964Z", + "date_of_expiration": "2023-08-17T16:11:59.964Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -101888,10 +74675,10 @@ "currency_id": "BRL", "history_id": 1692288719964 }, - "revision": "a0c997f2aa1646cc8e4c42ce", + "revision": "ea2a54cec850405d8ed70fb6", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101899,10 +74686,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "fac2bccfa2d345438a9c5b1d", + "revision": "6330967689fe4807888fbb86", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101918,24 +74705,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - } + "costs": [] }, - "revision": "58d0edeb98244eeeaf8ec02d", + "revision": "08bf92dcb7cf4cd7a8757041", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101943,10 +74718,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1693763097865", - "revision": "4a0dd2d312ae4255aa20548f", + "revision": "ebcfff93a45a4a709028680d", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101961,18 +74736,9 @@ "total_amount": 1518652.5, "id": "1693763097865", "history_id": "1693763097865", - "date_created": { - "type": 6, - "value": 1701459383534 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383534 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383534 - }, + "date_created": "2023-09-03T17:44:57.865Z", + "date_last_updated": "2023-09-03T17:44:57.865Z", + "date_of_expiration": "2023-09-03T17:44:57.865Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -101980,10 +74746,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "d3bf0efbcb5b46bdb46d3159", + "revision": "67d48a9b7c66476f9af2479d", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -101991,10 +74757,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 1.488.875,00 IVIP com um rendimento de +29.777,5 IVIP (2,00%) - Y12XDT27", - "revision": "456a03abb4a64306a7fe9635", + "revision": "1c2c7493428445acad6220ad", "revision_nr": 1, - "created": 1701459383534, - "modified": 1701459383534 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -102010,24 +74776,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "costs": [] }, - "revision": "ea70f5da03cd431e8ab3e37c", + "revision": "858b1141337a4b038da2da5f", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -102035,10 +74789,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1693915531936", - "revision": "d906225813b7427698ddd541", + "revision": "60dcbc40780e4f66bf1fbc9f", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -102053,18 +74807,9 @@ "total_amount": 1487490, "id": "1693915531936", "history_id": "1693915531936", - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-09-05T12:05:31.936Z", + "date_last_updated": "2023-10-04T13:04:00.989Z", + "date_of_expiration": "2023-10-05T12:05:31.936Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -102075,10 +74820,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "d07b87eb514340b0a671dac5", + "revision": "9465afdad5c644908ba987c2", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -102086,10 +74831,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.487.490,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", - "revision": "0a7b355d546045f68818e98d", + "revision": "f66ba99865954a8aaa5755e2", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -102098,24 +74843,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-06T13:21:36.774Z", - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + ".val": "2023-10-06T13:21:36.774Z" }, - "revision": "07fabbe7a650442e9bbf5e2f", + "revision": "ec0a4ca61483426db82a753b", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -102131,24 +74864,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "costs": [] }, - "revision": "8cb49e9c070b45e48225c007", + "revision": "cc46e5d2650740b0a8e2befd", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -102156,10 +74877,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1694006496775", - "revision": "e4655eb4092948a7bc0a1615", + "revision": "8638e1b0e9984370b0021382", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -102174,14 +74895,8 @@ "total_amount": 220, "id": "1694006496775", "history_id": "1694006496775", - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-09-06T13:21:36.775Z", + "date_last_updated": "2023-09-06T13:32:40.077Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -102191,16 +74906,12 @@ "date_approved": "2023-09-06T13:32:40.077Z", "money_release_date": "2023-09-06T13:32:40.077Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "wasDebited": true }, - "revision": "724c39b56fcd4cf6ad261ad4", + "revision": "c0f6827a079f440b9a7c6302", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -102208,10 +74919,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 220,00 BRL para a carteira iVip 1181.6054.9969.9842-60", - "revision": "0839b455ac44425fb8da07c3", + "revision": "5124e332430e4a11989c0e6d", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -102229,24 +74940,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 4, - "installments_payable": 1, - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "installments_payable": 1 }, - "revision": "e4488fc10a7544ab8c528ffb", + "revision": "6f1cb02f466b4c259dd3ce17", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -102254,10 +74953,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1694572285717", - "revision": "c92725dd41814e62a8bbe91a", + "revision": "42532aa564c2449a8ad5d01e", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -102272,18 +74971,9 @@ "total_amount": 220, "id": "1694572285717", "history_id": "1694572285717", - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-09-13T02:31:25.717Z", + "date_last_updated": "2023-09-13T02:31:25.717Z", + "date_of_expiration": "2023-09-13T02:31:25.717Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -102291,10 +74981,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "d2d66a258b2442068d6d8e04", + "revision": "eea79b46733d4f1287af38af", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -102302,10 +74992,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "5c24b78fde2a42189ab60fd5", + "revision": "8d6fed9514864e8cb5264611", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509591, + "modified": 1701463509591 } }, { @@ -102321,24 +75011,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "costs": [] }, - "revision": "20995745300042cd9d87c765", + "revision": "812b93e2e3e844caa6267963", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102346,10 +75024,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696081581090", - "revision": "4e6939a8b91647fa984f56ed", + "revision": "6a3b94826e1e4db89bb36c18", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102365,18 +75043,9 @@ "total_amount": 40, "id": "1696081581090", "history_id": "1696081581090", - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-09-30T13:46:21.090Z", + "date_last_updated": "2023-09-30T13:46:21.090Z", + "date_of_expiration": "2024-07-30T13:46:21.089Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -102384,10 +75053,10 @@ "base_currency_id": "BRL", "status_detail": "accredited" }, - "revision": "2796d55a9a0f44479b411672", + "revision": "fa5af25530784dec994f9f6d", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102395,10 +75064,10 @@ "content": { "type": "STRING", "value": "Investimento de 40,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 30/07/2024 - D03OS92M", - "revision": "5d6d5a1439bf4f9eb6815555", + "revision": "9299b33cb1f54cacb719b286", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102407,24 +75076,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-30T13:48:22.609Z", - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + ".val": "2023-10-30T13:48:22.609Z" }, - "revision": "d33c8a73a7454c70accebc72", + "revision": "6c6f1efbb0aa4cd8bc60df94", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102440,24 +75097,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "costs": [] }, - "revision": "9c483159ec74480982ae5c5a", + "revision": "7903edfdc12743baabe6fddf", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102465,10 +75110,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696081702609", - "revision": "d679392c6c2649489b23cd03", + "revision": "936dc165f2db4bcc97b89f0c", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102484,14 +75129,8 @@ "total_amount": 225, "id": "1696081702609", "history_id": "1696081702609", - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-09-30T13:48:22.609Z", + "date_last_updated": "2023-09-30T14:52:32.609Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -102501,16 +75140,12 @@ "date_approved": "2023-09-30T14:52:32.609Z", "money_release_date": "2023-09-30T14:52:32.609Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "wasDebited": true }, - "revision": "a18625675fe541b29d4d0a29", + "revision": "88d58f9200d645f0873f16d7", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102518,10 +75153,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 225,00 BRL para a carteira iVip 1181.6054.9969.9842-60", - "revision": "ecc7b7b16c5f4649bdf8f1d9", + "revision": "b1d8ec8b27d84d5e93a048fd", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102539,24 +75174,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 5, - "installments_payable": 0, - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "installments_payable": 0 }, - "revision": "7ee563e589e040dba45c77ba", + "revision": "bd9de38a23a9446da0a9aac3", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102564,10 +75187,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696085699487", - "revision": "a8add7c2f8624612b2bf2508", + "revision": "61571b0ae4cf4ad4a5ae2bee", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102583,18 +75206,9 @@ "total_amount": 220, "id": "1696085699487", "history_id": "1696085699487", - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-09-30T14:54:59.487Z", + "date_last_updated": "2023-09-30T14:54:59.487Z", + "date_of_expiration": "2023-09-30T14:54:59.487Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -102602,10 +75216,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "165dc4227b3647fbb092d3ff", + "revision": "39d21dc4fd9b4014921dfcbb", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102613,10 +75227,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "7b85f5411a8240e5a2f8537e", + "revision": "1d3b9e771b764d239ff66494", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102632,24 +75246,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "costs": [] }, - "revision": "730afa0dd38a48979cdcd443", + "revision": "eaeafb1c68b3462f83290913", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102657,10 +75259,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696349167615", - "revision": "5be7c12dcd8547a3ba36fe1a", + "revision": "0f45be415c9448d7886425c8", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102676,18 +75278,9 @@ "total_amount": 31163, "id": "1696349167615", "history_id": "1696349167615", - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-10-03T16:06:07.615Z", + "date_last_updated": "2023-10-03T16:06:07.615Z", + "date_of_expiration": "2025-10-03T16:06:07.614Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -102695,10 +75288,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "85e988e411844ebf95fe7516", + "revision": "dd50f7177dfb47bd892f5a9c", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102706,10 +75299,10 @@ "content": { "type": "STRING", "value": "Investimento de 31.163,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 03/10/2025 - P9A02KSL", - "revision": "5d42e41578ac4db3839dcb8c", + "revision": "4c1aeebdc537409abf63ceba", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102725,24 +75318,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "costs": [] }, - "revision": "7d1c8ed4a2a3479e937173a4", + "revision": "1f0cee3ab7944d4499bf2f94", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102750,10 +75331,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696462181596", - "revision": "0a0e5ae2aacb41c89c60b641", + "revision": "bbdf1ba6ccab4af095f58f0a", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102769,18 +75350,9 @@ "total_amount": 1487490, "id": "1696462181596", "history_id": "1696462181596", - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-10-04T23:29:41.596Z", + "date_last_updated": "2023-10-04T23:29:41.596Z", + "date_of_expiration": "2023-11-04T23:29:41.513Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -102788,10 +75360,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "1f1c10d7d9784ff39dae694e", + "revision": "61d6a5da0e1a476a89fbcec8", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102799,10 +75371,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.487.490,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "f460698075cc4f4ba00be6f1", + "revision": "07cffa5125024c39907d5f1e", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102810,10 +75382,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "383130ecba0d4f199cdd368b", + "revision": "49bea3c9028a498e8c924c1e", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102823,24 +75395,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "amount": 100 }, - "revision": "de67a706b31f4df28e0805d7", + "revision": "a470f4ea730545e1a6341a29", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102854,26 +75414,15 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-05-20T23:28:39.623Z", "history_id": 1684625319623, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "status": "paid" }, - "revision": "f8c1bd8b4157437693ada47f", + "revision": "f360f86cd8ec40668bcc9be0", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102881,10 +75430,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "3ea689c8869b48ee894e96d7", + "revision": "c87c92f5702d44bda02b41b9", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102892,10 +75441,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "7f0990d02efe463a8d37cdba", + "revision": "16ee763a4d324bdeb2aea842", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102903,10 +75452,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3c1188ac11c74ae89998809e", + "revision": "4127c5007bd74d7da1b37102", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102916,24 +75465,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "amount": 100 }, - "revision": "c3fc5399a4414e84ab8e7ffb", + "revision": "7a920f83b67d450fa23f0630", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102947,26 +75484,15 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-05-20T23:28:39.623Z", "history_id": 1684625319623, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "status": "paid" }, - "revision": "50bdabe14bf146d3b513f4fc", + "revision": "1f75ae46b2b44ffe99e0ec8b", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102974,10 +75500,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "1dceed4d602945e2b12e4b18", + "revision": "659812913ea944558f9917ed", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102985,10 +75511,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "df39f74b933847e0b02a8cd5", + "revision": "cf9a5c680d0e4a2191b67fbd", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -102996,10 +75522,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3fc33829df1e4357aae315f1", + "revision": "dedbb689ba684c6a9773aa40", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103009,24 +75535,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "amount": 100 }, - "revision": "2201a0535d90460293f0633a", + "revision": "e305accf25724efd985ca126", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103040,26 +75554,15 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-05-20T23:28:39.623Z", "history_id": 1684625319623, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "status": "paid" }, - "revision": "d7c8fee04aed4efcad2ad5c3", + "revision": "ec708e2046244c978f09f8ed", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103067,10 +75570,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "1e228a1e8a8c441d830f2e26", + "revision": "c1a7184b10c540bea89f171b", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103078,10 +75581,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "725d1c1f916b4140a58c99c5", + "revision": "b8072fad82ab48cc9b963550", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103089,10 +75592,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d0a2c9a0c8294336b625db75", + "revision": "0a012dfcaf6443dab60f49e5", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103102,24 +75605,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "amount": 100 }, - "revision": "e253908c89e34b54ac51edb2", + "revision": "3abeb9f09f1b4a9cbd67b923", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103133,26 +75624,16 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-05-20T23:28:39.623Z", "history_id": 1684625319623, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "date_last_updated": "2023-09-13T02:31:25.736Z" }, - "revision": "7f234a38a70d402c8dcaf5fe", + "revision": "b930a5b2fe2f4d0ca1b663b4", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103160,10 +75641,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "8d313988e9c64ea1bb7088ed", + "revision": "cadbff4a402b4d008ffc5c6d", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103171,10 +75652,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "881a0867614a45c0ac00f9ea", + "revision": "5c9d1e9062f64a24a740e940", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103182,10 +75663,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c5904a7e1dbd4701a3e510b5", + "revision": "b771d82191f04cb0979d76f1", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103195,24 +75676,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "amount": 100 }, - "revision": "7b815dab115c4036b5a1b241", + "revision": "33b498e487694311a81240f6", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103226,26 +75695,16 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-05-20T23:28:39.623Z", "history_id": 1684625319623, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "date_last_updated": "2023-09-30T14:54:59.499Z" }, - "revision": "c1a01b6c9fb64c3f8e5e1db9", + "revision": "32d990eb02904dac86bfd499", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103253,10 +75712,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "ebe283c3376a4ac18cb73ee2", + "revision": "17559041dc0a40e49ef754ec", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103264,10 +75723,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "6c1b5fcfc38e42ccada52080", + "revision": "0be972ab01f34424b86283bc", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103275,10 +75734,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c01c0527b34246d290fa03b7", + "revision": "939863f69f824bf1bff4d828", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103286,10 +75745,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "bc7db4fb3c1a4f18b6f08193", + "revision": "0d8212e38d7e48f185e5508b", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103300,24 +75759,12 @@ "approvedLimit": 1000, "limitUsed": 400, "analysisRequested": "2023-05-20T21:32:58.558Z", - "lastReview": "2023-05-20T21:33:49.410Z", - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "lastReview": "2023-05-20T21:33:49.410Z" }, - "revision": "98addd221bb948f090a9628b", + "revision": "06e4ab7df3a2474699f0c53b", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103329,24 +75776,12 @@ "dateValidity": 1684492261254, "totalValue": 1371.271, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "balancesModificacao": "2023-10-15T03:00:00.000Z" }, - "revision": "819eaf5b1c8d442bb5f9e8c2", + "revision": "a87b9a5f5a4348458ed4558f", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103354,10 +75789,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "55080db0866e4002b05fe381", + "revision": "ad26637942e044d580b3ad2c", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103365,10 +75800,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "660120117a304c6fb9da7960", + "revision": "c098fb075fb44400994d0fa4", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103379,24 +75814,12 @@ "dataModificacao": 1678148092390, "dateValidity": 1678198916837, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "currencyType": "USD" }, - "revision": "d2088b3faf7444059fe6e4be", + "revision": "c97518b14e1a4b77a0735c7f", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103406,24 +75829,12 @@ "value": { "available": "9.00000000", "symbol": "BRL", - "value": 1.74, - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "value": 1.74 }, - "revision": "7cc721b138334299827bc8f1", + "revision": "b85551c544c14619b590d47d", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103433,24 +75844,12 @@ "value": { "available": "443235.00000000", "symbol": "IVIP", - "value": 70.34, - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "value": 70.34 }, - "revision": "8bd97688e797499cb64bbf14", + "revision": "3950b46c563e472d84cebeb0", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103458,10 +75857,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e62d4c3143184d9b8e406831", + "revision": "b8f8bd4bb1b148c590db994a", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103469,24 +75868,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "costs": [] }, - "revision": "fec25b4ea8f94c9683501aff", + "revision": "48e1d2dbf46249438f3f5be0", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103501,18 +75888,9 @@ "total_amount": 100, "history_id": 1684273040978, "id": 1684273040978, - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-05-16T21:37:20.978Z", + "date_last_updated": "2023-05-17T13:45:34.751Z", + "date_of_expiration": "2023-06-15T21:37:20.978Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -103522,10 +75900,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "375b5d70886f4479852e8cc2", + "revision": "e807c883b64643ce9d9deace", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103533,10 +75911,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1218.4763.4268.5788-20", - "revision": "98e30a706143409f958db697", + "revision": "18559c8674764763b377c1d7", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103554,24 +75932,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "costs": [] }, - "revision": "fc67578483fe4c738c094d7e", + "revision": "e52c409e826a485ab71b23fe", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103587,18 +75953,9 @@ "original_amount": 97852, "total_amount": 97852, "id": 1684624212629, - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-05-20T23:10:12.629Z", + "date_last_updated": "2023-05-20T23:10:12.629Z", + "date_of_expiration": "2023-05-20T23:10:12.629Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -103607,10 +75964,10 @@ "history_id": 1684624212629, "description": "Compra de 97.852,00 IVIP por 20,09 BRL" }, - "revision": "57bfe18d554d4a559ebafa43", + "revision": "f7f8e2741245431ab8235b5e", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103628,24 +75985,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "costs": [] }, - "revision": "d16215f23f89425281cd35b8", + "revision": "59d08cf70db84076a742da70", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103661,18 +76006,9 @@ "original_amount": 345383, "total_amount": 345383, "id": 1684624265601, - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-05-20T23:11:05.601Z", + "date_last_updated": "2023-05-20T23:11:05.601Z", + "date_of_expiration": "2023-05-20T23:11:05.601Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -103681,10 +76017,10 @@ "history_id": 1684624265601, "description": "Compra de 345.383,00 IVIP por 70,91 BRL" }, - "revision": "95b81f719d3a4abd8bb44edb", + "revision": "530d6a50ca7e4160ba518c47", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103700,24 +76036,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "costs": [] }, - "revision": "a095055ae6124402b5f2060e", + "revision": "c9d748d66ea24563bb9ccb11", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103725,10 +76049,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/121847634268578820/history/1696563980031", - "revision": "067065c1c2db4f22a3fba431", + "revision": "8c203887114c4e5987b24ded", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103744,18 +76068,9 @@ "total_amount": 1000, "id": "1696563980031", "history_id": "1696563980031", - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-10-06T03:46:20.031Z", + "date_last_updated": "2023-10-06T03:46:20.031Z", + "date_of_expiration": "2023-11-06T03:46:19.931Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -103763,10 +76078,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "f76c2dfcfa204b6c9783494e", + "revision": "a87f96f3cdd74df19a4e0a29", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103774,10 +76089,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", - "revision": "c1fa48a90e564f8893a4ec97", + "revision": "f4b7917efb8a4d45a69dc8ef", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103785,10 +76100,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "295c2936e6e94ff791133e81", + "revision": "0377550daa534deebea21087", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103796,10 +76111,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9a5570d3ff29490eb676bf18", + "revision": "2516e1b36fe04caaa628bb7d", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103808,24 +76123,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "limitUsed": 0 }, - "revision": "c19f9f3174b244f8a49fae6a", + "revision": "11c802c26c6243fbaa560be2", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103837,24 +76140,12 @@ "dateValidity": 1684189916126, "totalValue": 20.09, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "balancesModificacao": "2023-10-06T03:00:00.000Z" }, - "revision": "1be8e98a41ad45ac82de48fc", + "revision": "1f6832afda624294930cdd70", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103862,10 +76153,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d4a983da9d8a4cbfbc601968", + "revision": "60749806027847b6a6000e44", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103874,24 +76165,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-01T15:25:22.792Z", - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + ".val": "2023-09-01T15:25:22.792Z" }, - "revision": "4f6128853e484ab99f7e5325", + "revision": "e3d9becdbf9d4abd8e5d89a9", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103907,24 +76186,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "costs": [] }, - "revision": "4bf52e8b0da948f9b2e53f55", + "revision": "e90686ff5da84dd79dc9848f", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103932,10 +76199,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1690989922793", - "revision": "f2bc3be9c4b541898cf0160c", + "revision": "2f7b0d9f5c104841a6fb6bce", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103950,14 +76217,8 @@ "total_amount": 100, "id": 1690989922793, "history_id": 1690989922793, - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-08-02T15:25:22.793Z", + "date_last_updated": "2023-08-02T19:55:14.626Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -103967,16 +76228,12 @@ "date_approved": "2023-08-02T19:55:14.626Z", "money_release_date": "2023-08-02T19:55:14.626Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "wasDebited": true }, - "revision": "d5be60a2d2454b549876e620", + "revision": "484cc924eba743d398c13364", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -103984,10 +76241,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100,00 para a carteira iVip 1227.6483.0599.8103-50", - "revision": "6b0a2af2fc4043cbbff6c17d", + "revision": "f3ed6453d2eb429887a17e60", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -104003,24 +76260,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - } + "costs": [] }, - "revision": "2746d6af63d24939b5e30d1c", + "revision": "8f10a995a81a4828a96d2526", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -104028,10 +76273,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691006310448", - "revision": "4dc7c46fcf86450d953a8b7a", + "revision": "4fe12a60576c4409817be119", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -104046,18 +76291,9 @@ "total_amount": 108815, "id": 1691006310448, "history_id": 1691006310448, - "date_created": { - "type": 6, - "value": 1701459383535 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383535 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383535 - }, + "date_created": "2023-08-02T19:58:30.448Z", + "date_last_updated": "2023-08-02T19:58:30.448Z", + "date_of_expiration": "2023-08-02T19:58:30.448Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -104066,10 +76302,10 @@ "description": "Compra de 108.815,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "49780591e6b8497e990428e3", + "revision": "d6de4edfc051484ab04e179e", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -104085,24 +76321,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "costs": [] }, - "revision": "18a233afbca040fb960190e1", + "revision": "932151c2e2ff4826b179a5ca", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -104110,10 +76334,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691006485984", - "revision": "655293a538024c11b8568d6c", + "revision": "062cedcb055f4494b35fa3c0", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -104128,18 +76352,9 @@ "total_amount": 108815, "id": 1691006485984, "history_id": 1691006485984, - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - }, + "date_created": "2023-08-02T20:01:25.984Z", + "date_last_updated": "2023-08-02T20:01:25.984Z", + "date_of_expiration": "2025-08-02T20:01:25.917Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -104147,10 +76362,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "b30d534b8c1b4d9ab79f9438", + "revision": "aad33aa930314b0aaff13ef8", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -104158,10 +76373,10 @@ "content": { "type": "STRING", "value": "Investimento de 108.815,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 8/2/2025", - "revision": "d522a4d904b44722a30cb0ce", + "revision": "794d249760a04a83b3cbbd1b", "revision_nr": 1, - "created": 1701459383535, - "modified": 1701459383535 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -104170,24 +76385,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-08T12:47:40.996Z", - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + ".val": "2023-09-08T12:47:40.996Z" }, - "revision": "5bd42e14241a4024b5f9aea1", + "revision": "583158a043244d5bb817cb60", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -104203,24 +76406,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "costs": [] }, - "revision": "8118cbbd4ce94ba7a199fa61", + "revision": "42379967b83c4f3b921d818d", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -104228,10 +76419,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691585260996", - "revision": "4ec9d6801267443095e4f1c9", + "revision": "64aa8f54e29249e8a903d210", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -104246,14 +76437,8 @@ "total_amount": 50, "id": 1691585260996, "history_id": 1691585260996, - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, + "date_created": "2023-08-09T12:47:40.996Z", + "date_last_updated": "2023-08-09T13:57:20.313Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -104263,16 +76448,12 @@ "date_approved": "2023-08-09T13:57:20.313Z", "money_release_date": "2023-08-09T13:57:20.313Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "wasDebited": true }, - "revision": "18f9822adbbb440a840306ca", + "revision": "c4b6679feeca41f8ae1be27a", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -104280,10 +76461,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 50,00 para a carteira iVip 1227.6483.0599.8103-50", - "revision": "f88cbc78f97b4679a81cdd66", + "revision": "ef39351bbd7f4964ac66c4d9", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -104299,24 +76480,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "costs": [] }, - "revision": "8eea2712983e4ac387a7b0d0", + "revision": "641d3089d74c464689049296", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -104324,10 +76493,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691589566120", - "revision": "3865e7ecaf8741edafc6baec", + "revision": "98923004957149d295b75c67", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -104342,18 +76511,9 @@ "total_amount": 76363, "id": 1691589566120, "history_id": 1691589566120, - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - }, + "date_created": "2023-08-09T13:59:26.120Z", + "date_last_updated": "2023-08-09T13:59:26.120Z", + "date_of_expiration": "2023-08-09T13:59:26.120Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -104362,10 +76522,10 @@ "description": "Compra de 76.363,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "099ddd24dc874dbaa2a6ba3f", + "revision": "471cf4fb18e1425a9cef8890", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509592, + "modified": 1701463509592 } }, { @@ -104381,24 +76541,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "costs": [] }, - "revision": "fd23466d68604b4ebad44732", + "revision": "76b566fd25d24462857ef361", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104406,10 +76554,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691589908652", - "revision": "57f959a932a14b30b0d418bb", + "revision": "769cb31a7ea94cfd84943e46", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104424,18 +76572,9 @@ "total_amount": 20000, "id": 1691589908652, "history_id": 1691589908652, - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - }, + "date_created": "2023-08-09T14:05:08.652Z", + "date_last_updated": "2023-08-09T14:05:08.652Z", + "date_of_expiration": "2023-09-09T14:05:08.648Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -104443,10 +76582,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c5a41d044ece46e29f6cabd1", + "revision": "a215835f93cb44d492ab4517", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104454,10 +76593,10 @@ "content": { "type": "STRING", "value": "Investimento de 20.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/9/2023", - "revision": "c5a3d07e8d7240ca908af5dd", + "revision": "ec95868fe16f44f38bc07ba9", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509593, + "modified": 1701463509593 } }, { @@ -104473,24 +76612,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "costs": [] }, - "revision": "08cc5b9cfe424c9ab25da34e", + "revision": "b14fc7194149470b80a3468c", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104498,10 +76625,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694268632615", - "revision": "e2060c5666e14c7cb5f8052e", + "revision": "51ae04474b7b413988d2d6cd", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104516,18 +76643,9 @@ "total_amount": 20400, "id": "1694268632615", "history_id": "1694268632615", - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - }, + "date_created": "2023-09-09T14:10:32.615Z", + "date_last_updated": "2023-09-09T14:10:32.615Z", + "date_of_expiration": "2023-09-09T14:10:32.615Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -104535,10 +76653,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "a6a1a95cd6454f58a03517b3", + "revision": "6658a7aa5caa433299089cf5", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104546,10 +76664,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 20.000,00 IVIP com um rendimento de +400,00 IVIP (2,00%) - Y12XDT27", - "revision": "676d463ce5d249f58396d3e2", + "revision": "337b8ce4291f4ae99a62fe87", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104565,24 +76683,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "costs": [] }, - "revision": "b1d1aadc357546dd96e917cd", + "revision": "9beac4b9d13a4229a79c0a54", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104590,10 +76696,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694304834658", - "revision": "f70e2a1c5a8c4be38fba8e53", + "revision": "657c3f4c7bc24a6fa358bdb3", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104608,18 +76714,9 @@ "total_amount": 63131, "id": "1694304834658", "history_id": "1694304834658", - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - }, + "date_created": "2023-09-10T00:13:54.658Z", + "date_last_updated": "2023-10-04T23:31:59.684Z", + "date_of_expiration": "2023-10-10T00:13:54.657Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -104630,10 +76727,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "c87c9880cc4148ca8409a51c", + "revision": "b64f67949ddf418187040558", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104641,10 +76738,10 @@ "content": { "type": "STRING", "value": "Investimento de 63.131,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 09/10/2023 - Y12XDT27", - "revision": "5d08ed161d424359ac629f29", + "revision": "dfa8cba6d8524ee09fe3448b", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104653,24 +76750,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-14T18:40:41.417Z", - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + ".val": "2023-10-14T18:40:41.417Z" }, - "revision": "3b135aa116574e6cacdd7d9b", + "revision": "802a7eb2ed214732b9d863db", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104686,24 +76771,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "costs": [] }, - "revision": "0870acdccbb1402fbf398f48", + "revision": "590ae670214b4fbb9e728c1f", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104711,10 +76784,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694716841418", - "revision": "367b7f0fef794f81a3e268c7", + "revision": "a98a33cd2809419ba31f3da1", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104729,14 +76802,8 @@ "total_amount": 20, "id": "1694716841418", "history_id": "1694716841418", - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, + "date_created": "2023-09-14T18:40:41.418Z", + "date_last_updated": "2023-09-14T19:10:39.334Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -104746,16 +76813,12 @@ "date_approved": "2023-09-14T19:10:39.334Z", "money_release_date": "2023-09-14T19:10:39.334Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "wasDebited": true }, - "revision": "5406263bcdf246a6b24363a5", + "revision": "d2f5f965b27a45ada122e3db", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104763,10 +76826,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 1227.6483.0599.8103-50", - "revision": "bd971106cb0c40699e0d8227", + "revision": "e28dc4be8c2e4751b5861ece", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104782,24 +76845,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "costs": [] }, - "revision": "0abf5659a9bf433e8f3a3250", + "revision": "6e6fa121e7a543ccb25dab7d", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104807,10 +76858,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694723873975", - "revision": "7f965e5f5eab4ea9ae902b3d", + "revision": "4c496b0749254ca49cbc6333", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104825,18 +76876,9 @@ "total_amount": 22823, "id": "1694723873975", "history_id": "1694723873975", - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - }, + "date_created": "2023-09-14T20:37:53.975Z", + "date_last_updated": "2023-09-14T20:37:53.975Z", + "date_of_expiration": "2023-09-14T20:37:53.975Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -104845,10 +76887,10 @@ "description": "Compra de 22.823,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "e3e01089282a4557ab8db975", + "revision": "f2c7dd38cebb4b98ba4bd1b2", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104857,24 +76899,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-16T17:35:37.888Z", - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + ".val": "2023-10-16T17:35:37.888Z" }, - "revision": "ddc4f03239fb4ce594dd31c2", + "revision": "5b39b276da02493a85849d18", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104890,24 +76920,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "costs": [] }, - "revision": "33d8159471424f01a2472ca2", + "revision": "42c412bc54f6428488bbe313", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104915,10 +76933,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694885737888", - "revision": "ef03e919ea4a46ef871d16cd", + "revision": "a1167096df424eb097161050", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104933,29 +76951,19 @@ "total_amount": 28.17, "id": "1694885737888", "history_id": "1694885737888", - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, + "date_created": "2023-09-16T17:35:37.888Z", + "date_last_updated": "2023-09-16T17:35:37.888Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "status_detail": "pending_waiting_payment" }, - "revision": "78879f6786a5435887b1de38", + "revision": "064cbb74c37344e08586818c", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104963,10 +76971,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 28,17 BRL para a carteira iVip 1227.6483.0599.8103-50", - "revision": "cb4a753c547047239c6fb4b6", + "revision": "0ac0032866a8451c976d6024", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -104975,24 +76983,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-19T19:20:50.157Z", - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + ".val": "2023-10-19T19:20:50.157Z" }, - "revision": "864aeb42692a414cbeb7e007", + "revision": "308760226de94ef7a5395edf", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -105008,24 +77004,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "costs": [] }, - "revision": "70209e352d6f4ca6a43faa8f", + "revision": "bc55827365c34df2a67ffbc7", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -105033,10 +77017,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695151250157", - "revision": "78fd7e8631114167b350b1f6", + "revision": "2b6aa36d536e4f959eec5ec6", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -105051,14 +77035,8 @@ "total_amount": 29370, "id": "1695151250157", "history_id": "1695151250157", - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, + "date_created": "2023-09-19T19:20:50.157Z", + "date_last_updated": "2023-09-19T20:56:06.903Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -105068,16 +77046,12 @@ "date_approved": "2023-09-19T20:56:06.903Z", "money_release_date": "2023-09-19T20:56:06.903Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "wasDebited": true }, - "revision": "dc271c018e4e415fa2a11caf", + "revision": "68f8fea964d348df879c6faa", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -105085,10 +77059,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 29.370,00 IVIP para a carteira iVip 1227.6483.0599.8103-50", - "revision": "c75f4b0d0e284cad818cbb89", + "revision": "ca4a419a7a2148818f9a8e0f", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -105104,24 +77078,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "costs": [] }, - "revision": "2be9124c5e004023831b220f", + "revision": "4ba0858e90c942808fed0c34", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -105129,10 +77091,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695152833307", - "revision": "9eb4e77cf3a14818b16cadf6", + "revision": "76746c23fe3b4357b197185d", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -105147,18 +77109,9 @@ "total_amount": 36455, "id": "1695152833307", "history_id": "1695152833307", - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - }, + "date_created": "2023-09-19T19:47:13.307Z", + "date_last_updated": "2023-09-25T21:44:43.636Z", + "date_of_expiration": "2024-03-19T19:47:13.306Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -105169,10 +77122,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "220926492e684a51971dcabf", + "revision": "813e2a69e6cd4c598d2f5d1e", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -105180,10 +77133,10 @@ "content": { "type": "STRING", "value": "Investimento de 36.455,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", - "revision": "67ece6ac49f94259b21c592d", + "revision": "4cba8bb9ec204268bacfd9b4", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509595, + "modified": 1701463509595 } }, { @@ -105199,24 +77152,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "costs": [] }, - "revision": "1d2d722d9d604e4996fdc80f", + "revision": "fcd5eb7b45574144b63b1e9a", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105224,10 +77165,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695158486667", - "revision": "2d5d800506054d2598ccc2e2", + "revision": "192701747d57493f926b4f78", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105242,18 +77183,9 @@ "total_amount": 29370, "id": "1695158486667", "history_id": "1695158486667", - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - }, + "date_created": "2023-09-19T21:21:26.667Z", + "date_last_updated": "2023-09-25T21:45:21.877Z", + "date_of_expiration": "2024-09-19T21:21:26.665Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -105264,10 +77196,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "858cc4a9a3c54974bbe68316", + "revision": "cef48283139c4e9d919b4a00", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105275,10 +77207,10 @@ "content": { "type": "STRING", "value": "Investimento de 29.370,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 19/09/2024 - CLSMJY90", - "revision": "02a7de5fdb36465591d3f930", + "revision": "f5bc2ca16b0c42f6b2b12f40", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105294,24 +77226,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "costs": [] }, - "revision": "cb916b99695f4d46adb4ff0f", + "revision": "02864842f4fd41778ec2aff8", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105319,10 +77239,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1696466013923", - "revision": "f73b53223ac9435cb80b054d", + "revision": "c48f809e8fce438d8a3dc4e9", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105338,18 +77258,9 @@ "total_amount": 128956, "id": "1696466013923", "history_id": "1696466013923", - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - }, + "date_created": "2023-10-05T00:33:33.923Z", + "date_last_updated": "2023-10-05T00:33:33.923Z", + "date_of_expiration": "2023-11-05T00:33:33.853Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -105357,10 +77268,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c663bce2659141d29b07eadb", + "revision": "1c31cba96e7d475ba63aee0b", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105368,10 +77279,10 @@ "content": { "type": "STRING", "value": "Investimento de 128.956,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "12bc0c64b9c743889420121c", + "revision": "ad7bd23e218e43f590ff19c3", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105379,10 +77290,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5327772ef0e540cfa91d5e3a", + "revision": "8385a091c1954ba78101f585", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105390,10 +77301,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "bff3d831020d49e4b604b438", + "revision": "ee1ae89755424c108529bd48", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105402,24 +77313,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "limitUsed": 0 }, - "revision": "fc5abd0df7524d4daa0df9a0", + "revision": "8357a3d151ab4f08b925a66d", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105430,24 +77329,12 @@ "dataModificacao": 1690989855646, "dateValidity": 1690989855726, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "balancesModificacao": "2023-10-15T03:00:00.000Z" }, - "revision": "652a8d436ff846c884ab7c0f", + "revision": "476d0fd2b663479285ab1f1b", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105457,24 +77344,12 @@ "value": { "available": "7503835.00000000", "symbol": "IVIP", - "value": 789.35, - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "value": 789.35 }, - "revision": "62e79d5fc9d344f2a78eba49", + "revision": "703f346f009b4e34a1b690b1", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105482,10 +77357,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "901aec87c57c428bb8165c7b", + "revision": "d1d59f9cdaca42d6949cae4e", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105495,24 +77370,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 1.00%", - "amount": 5, - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "amount": 5 }, - "revision": "709c84432cbd4186b24d1393", + "revision": "a2bcacf9b14a4b58afd4b4e8", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105520,10 +77383,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6925963392c944dbaaef484f", + "revision": "867d8135b9624c6eaa2bb472", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105531,24 +77394,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "IVIPCOIN LTDA", - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "3973701df5214239a47044b2", + "revision": "13aa37d63e13475094e3c872", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105556,10 +77407,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a6042acfd6814b5f981ec163", + "revision": "734101b80a6f42eebba6eeed", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105571,24 +77422,12 @@ "net_received_amount": 0, "total_paid_amount": 505, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "installment_amount": 0 }, - "revision": "ad08cd3315d843ee88d648c1", + "revision": "58097a0b9d464285a832156c", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105596,10 +77435,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55900907390/ticket?caller_id=1310149122&hash=b46698ba-1661-4287-87f2-802c80f36c71", - "revision": "f72fd15dfb1e46fda473c3fd", + "revision": "ce4540cbb69c4f1d9d9fe79a", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105607,10 +77446,10 @@ "content": { "type": "STRING", "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406505.005802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter559009073906304E54F", - "revision": "fb5d78ec8ff0449ea6800afd", + "revision": "6e1e48d8c3cf42b8aaedb8e6", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105618,10 +77457,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI3UlEQVR42u3dUY7jNgwGYN3A97+lbqAC7WITi7+UdFsUXevLw2BmYkuf/UaQItv4jT690dLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tL++9o2f64f//vx7fXzkuvnHddfi7Tpt9dt79fdNvrz4h8/Rrl3YtDS0tLS0tLS0tLS0h6indasqNfq7yv19wcq5P6+83Tx68f7bQsGLS0tLS0tLS0tLS3tEdr3AHIyTtAX5bXZ9AS9xeRhWmDatzBoaWlpaWlpaWlpaWmP1Y57nPjaZ5RYb4oTp6xd/rPGk7S0tLS0tLS0tLS0tLQt3TqRX3FiobR7Ou/2uClbOF1MS0tLS0tLS0tLS0t7tjbj07ZVNq0+/ZYeY3PE7ldqRGlpaWlpaWlpaWlpaX937WLv//rHP+ipQktLS0tLS0tLS0tL+ztr958SVKbiyikcrCWam1UWR+fue9DS0tLS0tLS0tLS0j5buyia3FRi3u7dx6KlTnNqOjnClIBNdo+WlpaWlpaWlpaWlvZ52tRTfwr9Xp6prWQpuGzhi15qLV8vaDocl5v809LS0tLS0tLS0tLSPltbAC142uc/P0aW03uYNk8T2GhpaWlpaWlpaWlpaU/Ublo+jk0OrlRdXuF/y6rLOlB7W3VJS0tLS0tLS0tLS0v7KG1qzz+Fg+WLser5P8JEgF54OW9Yw1BaWlpaWlpaWlpaWtpDtK0cV0tJvLRw7k2yGIBd3kMPT5/xtLS0tLS0tLS0tLS0z9ZO46db6eeYz7ZNHUna/XGXSby+maX99dk9WlpaWlpaWlpaWlraB2lzhq7duz32kMnrIca8cjOS8kau/JZSsxRaWlpaWlpaWlpaWtpztMviyuIepelkplylHHOaIVDqPkdw09LS0tLS0tLS0tLSPl07Nq39U8f9svdVEoCpCDMXZvYw263teqrQ0tLS0tLS0tLS0tI+Tbtppz9ycFd4U9FkyyMApi2X1Zlfz4ajpaWlpaWlpaWlpaV9hnbZRuRThu4q3frTPOw8EWB6tBGSgrS0tLS0tLS0tLS0tIdpdyfVcjFkjQlLFLk4XZfzgVOyj5aWlpaWlpaWlpaW9hzt2IZ+S9kojf/zoy3yfOlIXH4jtLS0tLS0tLS0tLS0T9f27cG1EXpBVsr7dWMzKmBZsbkJV2lpaWlpaWlpaWlpaZ+uHe/JuU3BZSvdR0oEOkozkoJvYQxbDSo/xLy0tLS0tLS0tLS0tLQP0qaWj2ls2nTHMnX3aYE0261mBmlpaWlpaWlpaWlpac/RptBvGQQuY8cpFi0D1K5Qsbn8s3/I7tHS0tLS0tLS0tLS0j5KW8odF1HfVBGZYseUBdyEoa30JslzBWhpaWlpaWlpaWlpaZ+u3e94rQouez4rV+LOXf6uaOs7pKWlpaWlpaWlpaWlPUJbPtPqqaFI7eBfnm95nO5aVXvWzWlpaWlpaWlpaWlpaZ+vTZPVFmWW0+o5REy5v/0ct2V4SUtLS0tLS0tLS0tLe4r203Dq21G3gr9Kt/5y/K1vJmOnTv+0tLS0tLS0tLS0tLTHasv/Uv6urYav1YLLzfG32pFkuo2WlpaWlpaWlpaWlvYI7bL+chlFTtm9VFKZjrqlcHVfsUlLS0tLS0tLS0tLS3uEtsh6PJC2WLOFrv4jVFN+cUdqHElLS0tLS0tLS0tLS3uANt1QTsP1+z4pErzCxLRbQLoMV3PnkouWlpaWlpaWlpaWlvYY7VhVRNZL9vhkLLddIXpNv9HS0tLS0tLS0tLS0p6j7ZvyyXLy7Sr9RVL3kem3slvtXFIWHbS0tLS0tLS0tLS0tMdoxyZ2zOWT1yp2vFbavnqCvgolaWlpaWlpaWlpaWlpT9FOQdvUWiRfUhN2UxD41VC1VOOZtqSlpaWlpaWlpaWlpT1AWzqI1ALJokh1mv0eNvb7ZLXF4bgUwtLS0tLS0tLS0tLS0p6ozaOwF4WUm0Nvo+T+Unya8O/L09LS0tLS0tLS0tLSnqNt4XzaFZbrOZRMJZpf4ds27qSlpaWlpaWlpaWlpT1F+37tKAFkif96blqSk3g1UVj26KtVaGlpaWlpaWlpaWlpz9H2MgV7SrVN5MmzHHa9LNacXlAuwhy0tLS0tLS0tLS0tLSHaL844FbajaTayFE8qZ4zj8eevr2+PrtHS0tLS0tLS0tLS0v7HG25oqXQrwSGtV3k+wIJX5/5c1BJS0tLS0tLS0tLS0v7ZO0X06hTni/9SKfmVgPU5iNxpfTyoqWlpaWlpaWlpaWlPUY77ifQFq0cywC1NCyth/TgyFWXuVizjmajpaWlpaWlpaWlpaU9QpsrLFOGboon02fxaCXtt2jyv626pKWlpaWlpaWlpaWlfZ62RG59M0/tfbm88HxHSd2ladkjdKgctLS0tLS0tLS0tLS0h2iXMdw+EZdiwvLFwrh8Bekd0tLS0tLS0tLS0tLSPl1bwsGe56Sl2sgSbY77+bmeU4GpjX8JYWlpaWlpaWlpaWlpaQ/TtlV/yNZqyHndizX39Zcty/ahJC0tLS0tLS0tLS0t7Tna9Nk0f+z3SLCHBGAqx0xFnVeIVOu7oaWlpaWlpaWlpaWlfbp22WRkGfotuz2WYs22fbSem1N+GfPS0tLS0tLS0tLS0tI+R3uFAHLqNJI+PWfjUnHlp2aSfyeKpKWlpaWlpaWlpaWlfaQ21VqmwdbpgFupnGylGUl5oKtMYFvGp7S0tLS0tLS0tLS0tGdqF/m2NPa6hINpZtu1qbrMY91oaWlpaWlpaWlpaWmP15Z9anYvdfXP4eAUfH5XwElLS0tLS0tLS0tLS3uONq/USkXkVBZZqjPT7Otrcy4unbP7tdNwtLS0tLS0tLS0tLS0v7G2Fj7mQ2qLwdZ5IFvlLedcv7+CXt4SLS0tLS0tLS0tLS3t07X//w8tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t7b+m/QNO7FsdSE0lWQAAAABJRU5ErkJggg==", - "revision": "a6cafb8eb9f84e38a97cabb3", + "revision": "e71d360046874b41b63256ec", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105629,10 +77468,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "1f5eb21fff9d44898e102c1b", + "revision": "1e1dd10c4ce643a689504c4c", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105647,18 +77486,9 @@ "total_amount": 505, "history_id": 1679152509855, "id": 55900907390, - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - }, + "date_created": "2023-03-18T11:15:10.620-04:00", + "date_last_updated": "2023-03-18T11:35:13.000-04:00", + "date_of_expiration": "2023-03-19T11:15:10.378-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", @@ -105668,10 +77498,10 @@ "money_release_date": "2023-03-18T11:35:13.000-04:00", "wasDebited": true }, - "revision": "b045e22d241040958f905577", + "revision": "6899c00a3290434fa63b6dd1", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105679,10 +77509,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "c7702187dedb405e82a2b933", + "revision": "82fa6e87472e48c69232b226", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105690,24 +77520,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "costs": [] }, - "revision": "3ddebeccb9ee44edb8f17fdf", + "revision": "d8422afcf5554660b2612b00", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105722,27 +77540,18 @@ "total_amount": 505, "history_id": 1679153875722, "id": 1679153875722, - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - }, + "date_created": "2023-03-18T15:37:55.722Z", + "date_last_updated": "2023-03-18T15:37:55.722Z", + "date_of_expiration": "2023-04-17T15:37:55.722Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "f77999318ad4486fabf9c91e", + "revision": "649f6ab2a9234fd3bde8dec2", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105750,10 +77559,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 505,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "b6b43d7f254140c49c77cc37", + "revision": "bf41ffd7c6a04e30b457d060", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105761,24 +77570,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "costs": [] }, - "revision": "c657fbfb13e14061ae6de825", + "revision": "83b834a74ab647d1bd596e64", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105793,27 +77590,18 @@ "total_amount": 505, "history_id": 1679154208055, "id": 1679154208055, - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - }, + "date_created": "2023-03-18T15:43:28.055Z", + "date_last_updated": "2023-03-18T15:43:28.055Z", + "date_of_expiration": "2023-04-17T15:43:28.055Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "2c349174c7f543be842d3efd", + "revision": "ebd851e3380a47dd86c5158b", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105821,10 +77609,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 505,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "3f11674cf7d040488dee698e", + "revision": "10e5311a093747338a126db8", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105834,24 +77622,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - } + "amount": 100 }, - "revision": "dcc8efbaf6df4bff838ab1a2", + "revision": "b006e442723a4e30811738c9", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105859,10 +77635,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d4ff77f547d74cd7a6b30b55", + "revision": "47348654b1d3474f887748c7", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105870,10 +77646,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "da902a99e52e4cc89024fb67", + "revision": "fab0a8b071564307b707a573", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105888,28 +77664,19 @@ "total_amount": 1100, "history_id": 1679263150490, "id": 1679263150490, - "date_created": { - "type": 6, - "value": 1701459383536 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383536 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383536 - }, + "date_created": "2023-03-19T21:59:10.490Z", + "date_last_updated": "2023-03-19T21:59:10.490Z", + "date_of_expiration": "2023-04-18T21:59:10.490Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "44f2a487317c404dbbe4f466", + "revision": "c1d72e7b19144fb69a1237e6", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105917,10 +77684,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "e259bf1dc0d34802a241eaf6", + "revision": "357ec93a315f4047b0e6b8f9", "revision_nr": 1, - "created": 1701459383536, - "modified": 1701459383536 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105938,24 +77705,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "costs": [] }, - "revision": "83fb34b962aa45758aa8cde6", + "revision": "deeabf74bdd647cc9f2df024", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -105971,18 +77726,9 @@ "original_amount": 11643076, "total_amount": 11643076, "id": 1679266956838, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-03-19T23:02:36.838Z", + "date_last_updated": "2023-03-19T23:02:36.838Z", + "date_of_expiration": "2023-03-19T23:02:36.838Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -105991,10 +77737,10 @@ "history_id": 1679266956838, "description": "Compra de 11643076 IVIP por 2000 BRL" }, - "revision": "607878b3a05a4e079cd6bb09", + "revision": "6e6d0a2b9f5f47f8a90fe776", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106004,24 +77750,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 1.00%", - "amount": 15, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "amount": 15 }, - "revision": "1c0b1a7d85d44ed48f826a2b", + "revision": "2a77028990524617be0073ca", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106029,10 +77763,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7055bc2c0e0a4c54a498f775", + "revision": "fbc09fdbf5ae446aafe51dd6", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106040,24 +77774,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "zBCfpF dcGeyDOq lplNs", - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "920d4f83f8b34e8db1c3840d", + "revision": "349788fef1b04a21a5d11e9b", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106065,10 +77787,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "176d43e87d8a442bafe30c9c", + "revision": "6651cecac7d74adaa2e70db4", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106080,24 +77802,12 @@ "net_received_amount": 0, "total_paid_amount": 1515, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "installment_amount": 0 }, - "revision": "b6cebd8e2dbe4fc38aad3e8d", + "revision": "efb488c159ce4eaeb97c5f4a", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106105,10 +77815,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654071515.005802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131358707763045A2A", - "revision": "55a9d69646a147348f4e1a6f", + "revision": "c0f94c716f6e472b96c7b7d5", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106116,10 +77826,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1313587077/ticket?caller_id=1310149122&hash=b6d8c471-76bc-44da-bf9f-76b5ae753314", - "revision": "c4cad3262a4d4f1fb66b67a8", + "revision": "21370f65c58e4e169a512997", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106127,10 +77837,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIxUlEQVR42u3dS24sKRAFUHbA/neZO6DVE7uSuJC29NTql5wcWLarCg41C8WHNv6i52q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9e2+an//u//vVCD+/7/t/t1X8Xbt+/3Xe8vXB9rXJ9bVkZtLS0tLS0tLS0tLS0h2j757Kfi7SvHa+y2Oe20+rjftzWWn5h0iYGLS0tLS0tLS0tLS3tKdopgCwxZi/H+P7YFAl+LjrFmCO8ZRG40tLS0tLS0tLS0tLS0s4LT3m5DF1Gm2PzFdDS0tLS0tLS0tLS0tLGaC7FfyX3l4omezlf+jHl/mhpaWlpaWlpaWlpac/WJnwqqSyUkbvmSiPcRNk11v26RpSWlpaWlpaWlpaWlvZv105PSrr9Fz8qg5aWlpaWlpaWlpaW9ghtftKUkp6njyyjyBJ83tKD3ys/W2hpaWlpaWlpaWlpad+tTS1sYzPjMeX+Svy36JqbTj812+VkHy0tLS0tLS0tLS0t7bu1U/vbZ8/a2M54bE+DI5/qOWvtZo4saWlpaWlpaWlpaWlp362dXky3rZUDlTCv5VvUUjpvbMjP3XC0tLS0tLS0tLS0tLSv1V5hGEldczKmUSXt+ZnGT+6PRktLS0tLS0tLS0tL+35tLb0s+DTIpLW4Sknn9fCW1F3X8zdHS0tLS0tLS0tLS0v7dm2J60a4O60VfIkdpwrL1BzXSspw+qoKlJaWlpaWlpaWlpaW9gBtqrWcMm/Lt5S9p+gwJQUXZykRbaelpaWlpaWlpaWlpT1Le9t7H1TmVGCtoSxHu5VyljxfW4WStLS0tLS0tLS0tLS0b9dO4/l7TvtNKb7SCFc3S1cApHGROcakpaWlpaWlpaWlpaU9Rbu562y6CntqZltUSeaYsAVtmur/XCNKS0tLS0tLS0tLS0v7Nm1pa2sh3zZRegg+02/1Hre0wNNXQEtLS0tLS0tLS0tL+25tKrgsP1Lp5dj2saUL1GoomUovaWlpaWlpaWlpaWlpz9T2kpfLJ6jFmvtXS3Hl4n62H1dd0tLS0tLS0tLS0tLSvk37WfOYoshbTi+dJX227DjC3QATvgcoLS0tLS0tLS0tLS3tAdrp858fWGbe2r3gcrltC4FmHReZj9tpaWlpaWlpaWlpaWlP0uY03dVidWa5T20U7eazLaQCR+69o6WlpaWlpaWlpaWlPUKbP5Xm+48QY44QXvYckOaPjXLwQqalpaWlpaWlpaWlpT1AmxQ/OEsJJcc9IJ0+ews5U1Iwb05LS0tLS0tLS0tLS3uOtowHaSmKLP1uV7n7Or9lcl8h2feb29ZoaWlpaWlpaWlpaWnfor3KtqV7rd1jvZFvUfv8s+UxJ+mqgNQDt54eSUtLS0tLS0tLS0tL+zbtBCjx5OJy6rZ9cjVlz8m+tC8tLS0tLS0tLS0tLe1J2kWIuOyBKym+Vo6Rkng/iBhzxSYtLS0tLS0tLS0tLe27tVO9ZJngvwwl64656jJNPembaZTbKJKWlpaWlpaWlpaWlvaN2rHZO//Zwsj+dLv1op1uWbGZ0oi0tLS0tLS0tLS0tLTv116ryslpUH/LCy8jxpKru0qHXP5so6WlpaWlpaWlpaWlPU5bqh/rVMhcp1mPtprM3z5PsIhek4WWlpaWlpaWlpaWlvb92nGXLeLJMpl/QZ7+l05QIsbabEdLS0tLS0tLS0tLS3uiNk8pSWHefox/OlrfjPZPCUBaWlpaWlpaWlpaWtpztBMqdb6V6SP9noibetvafap/zf0l9xRZ3r9IWlpaWlpaWlpaWlra12tzTDhWN6ZNb9ll91IomWo8N4WetLS0tLS0tLS0tLS079amqsuS9mu5YW5qk5uWSqWcm5EmKVKlpaWlpaWlpaWlpaU9QnuVhrT0v1/dojYVUqagspzvhzWitLS0tLS0tLS0tLS0b9OWHFwrfXHLGLMMI9nxylI9R68lNKWlpaWlpaWlpaWlpT1AWwofa4RXeuAWRZMb/CZ/V8ec0NLS0tLS0tLS0tLSnqKddpy63KZgMe/Tw1lavqktJwp7+dK2NaK0tLS0tLS0tLS0tLSv0paF04513Eiqklz2yk03qz1FqoOWlpaWlpaWlpaWlvZUbdtUP24630YIKlsYVdJztrA8nZaWlpaWlpaWlpaW9kBtSr+lt0zXprUyy3/Ep9ZVbsf4P90NR0tLS0tLS0tLS0tL+15tuk+tFGb2VQRar00royFTsm/ky7hpaWlpaWlpaWlpaWmP0Oaax5pqKz1rt7ekS9UKL838H+F8g5aWlpaWlpaWlpaW9izteOp8K1tcgdxCsNg2U0o2i3ZaWlpaWlpaWlpaWtqztI8j9qcOuRafdHfalfvsUnPc5qGlpaWlpaWlpaWlpX27dpnOSzumESRTmm7kWwLK0JLFbJISfNLS0tLS0tLS0tLS0r5bu+xjKyP26wT/ZYqvRJZjlQpMgesmiqSlpaWlpaWlpaWlpX2ttpVpISmxl96SKDkgnQLXNNX/R7dg09LS0tLS0tLS0tLSvkqbnkyukWWpuhyfsk9Pz9e1lUXbQxRJS0tLS0tLS0tLS0v7Pm0O/RY7bmLHGjE+RZEtJwqnmJWWlpaWlpaWlpaWlvb92l6SbulHiR1/VqI5nbQUV/46iqSlpaWlpaWlpaWlpX2lNod0uy1SnLitnGz5a1mEsNsokpaWlpaWlpaWlpaW9hTtbqXcHPcZ+rXtxdZtP2qSlpaWlpaWlpaWlpaWNib7SlLwyiP7px64Mv2/hVvZan6RlpaWlpaWlpaWlpb2HG3Cfy88FUPmLRZzTaZ84PKStvxl0NLS0tLS0tLS0tLSHqGtSbwy0L/lELHk6q486yTNoJwWSNdt09LS0tLS0tLS0tLSHqH9/z+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+w8PIVl9AL56yAAAAABJRU5ErkJggg==", - "revision": "3a2eb683e0584aabbd3ee953", + "revision": "9f0f1f3369ff4e5388deafe2", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106138,10 +77848,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "548da41bb7134638ade153ae", + "revision": "3acd00caaf3e40ca890f57fd", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106156,28 +77866,19 @@ "total_amount": 1515, "history_id": 1679696530924, "id": 1313587077, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-03-24T18:22:11.656-04:00", + "date_last_updated": "2023-03-24T18:22:11.656-04:00", + "date_of_expiration": "2023-03-25T18:22:11.438-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "4e5af6463d194c1e91f95650", + "revision": "f406982c707547e79681163a", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106185,10 +77886,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "0ae052d905cf421b8c73d6e1", + "revision": "69246826dbbb4c38805d473f", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106196,24 +77897,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "costs": [] }, - "revision": "f1a50b6935b04d288c827878", + "revision": "6672c8637ed642c6816e4209", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106228,18 +77917,9 @@ "total_amount": 1500, "history_id": 1679696876215, "id": 1679696876215, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-03-24T22:27:56.215Z", + "date_last_updated": "2023-03-24T22:37:00.511Z", + "date_of_expiration": "2023-04-23T22:27:56.215Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -106249,10 +77929,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "1b6212426eea48a4a9705985", + "revision": "bb125d0c9c1c4791a197b4ca", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106260,10 +77940,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "62aa3d5d81534f2e9613724e", + "revision": "b0cb067409b24b0db0f49bef", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106271,24 +77951,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "costs": [] }, - "revision": "93a736c1060249b2b56ddc7e", + "revision": "bbcc0faf0ad848a6a87d677d", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106303,18 +77971,9 @@ "total_amount": 500, "history_id": 1679698976004, "id": 1679698976004, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-03-24T23:02:56.004Z", + "date_last_updated": "2023-03-24T23:12:40.373Z", + "date_of_expiration": "2023-04-23T23:02:56.004Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -106324,10 +77983,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3da27f8b70fa42ca8196f684", + "revision": "5707aa70037e47999fd67225", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106335,10 +77994,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "7de7a403198341b48c83c2be", + "revision": "475c5095d92f4ea69dcb7464", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106356,24 +78015,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "costs": [] }, - "revision": "d5dfcefa5e364155812028be", + "revision": "0e0a47c4df5848f8b3d93916", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106389,18 +78036,9 @@ "original_amount": 10651254, "total_amount": 10651254, "id": 1679872088470, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-03-26T23:08:08.470Z", + "date_last_updated": "2023-03-26T23:08:08.470Z", + "date_of_expiration": "2023-03-26T23:08:08.470Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -106409,10 +78047,10 @@ "history_id": 1679872088470, "description": "Compra de 10.651.254,00 IVIP por 2.000,00 BRL" }, - "revision": "b0e4c62295e94cdc96da80bc", + "revision": "db91ef571e234ac0b8b2b8ae", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106420,24 +78058,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "costs": [] }, - "revision": "c8e9f0485c614bfc93bde7ad", + "revision": "5ae9fbeb7de04452a5cae5b7", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106452,18 +78078,9 @@ "total_amount": 500, "history_id": 1680996986540, "id": 1680996986540, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-04-08T23:36:26.540Z", + "date_last_updated": "2023-04-09T16:29:34.524Z", + "date_of_expiration": "2023-05-08T23:36:26.540Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -106473,10 +78090,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "faf2ca6d7cfe493aba260be3", + "revision": "44492dc5f26f40f38637830b", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106484,10 +78101,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "bd6985d8265c4a53912ad479", + "revision": "8fbf2e037857436fbda1ca61", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106507,24 +78124,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "costs": [] }, - "revision": "bd0d69ced90c4210b315e087", + "revision": "33580d784a4645409ab8ac8a", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106541,18 +78146,9 @@ "total_amount": 220, "id": 1682640956216, "contract_id": "1679263150490", - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-04-28T00:15:56.216Z", + "date_last_updated": "2023-04-28T00:15:56.216Z", + "date_of_expiration": "2023-04-28T00:15:56.216Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -106560,10 +78156,10 @@ "currency_id": "BRL", "history_id": 1682640956216 }, - "revision": "10ab8612ad6a4657b51c9d1a", + "revision": "c557bd9ad9a64558992f386e", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106571,10 +78167,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "f33c2497642549ddbcb6dcdc", + "revision": "333ea49c40584c1a93816c8a", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106594,24 +78190,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "costs": [] }, - "revision": "308b7a9d035449c895d99434", + "revision": "63597d1febc042a295c23bc3", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106628,18 +78212,9 @@ "total_amount": 220, "id": 1683194553322, "contract_id": "1679263150490", - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-05-04T10:02:33.322Z", + "date_last_updated": "2023-05-04T10:02:33.322Z", + "date_of_expiration": "2023-05-04T10:02:33.322Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -106647,10 +78222,10 @@ "currency_id": "BRL", "history_id": 1683194553322 }, - "revision": "9366cde8005540cb9678f399", + "revision": "50618bf3b8d44196ae48bd9c", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106658,10 +78233,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "7d2915029a7848718b1a971e", + "revision": "32344cc6ad9e4b99a7304812", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106679,24 +78254,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "costs": [] }, - "revision": "f6961ea58b1441d2aac6e2d8", + "revision": "0c0aae90734542b4ab19957e", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106712,18 +78275,9 @@ "original_amount": 1510, "total_amount": 1510, "id": 1684019013862, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-05-13T23:03:33.862Z", + "date_last_updated": "2023-05-13T23:03:33.862Z", + "date_of_expiration": "2023-05-13T23:03:33.862Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -106731,10 +78285,10 @@ "currency_id": "BRL", "history_id": 1684019013862 }, - "revision": "50930d4d5abe44e3bef1b234", + "revision": "24f939d3829e4799a2adc401", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106742,10 +78296,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "b26b5a1445ca49d6b436229f", + "revision": "42bc75e98b0047ab9926680d", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509596, + "modified": 1701463509596 } }, { @@ -106765,24 +78319,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "costs": [] }, - "revision": "4fdfbcd7ecaa480881013eb7", + "revision": "5a2827b927a44ff7956ef4df", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -106799,18 +78341,9 @@ "total_amount": 220, "id": 1684155209634, "contract_id": "1679263150490", - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-05-15T12:53:29.634Z", + "date_last_updated": "2023-05-15T12:53:29.634Z", + "date_of_expiration": "2023-05-15T12:53:29.634Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -106818,10 +78351,10 @@ "currency_id": "BRL", "history_id": 1684155209634 }, - "revision": "87eff24bd94743e0815fca38", + "revision": "48fdfad080fe4059862ff05d", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -106829,10 +78362,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "7eb1e475110e484faf7791bf", + "revision": "5d8fce38bb1a4e56ad9f5281", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -106842,24 +78375,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 48, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "amount": 48 }, - "revision": "a346b82cd34a4b5c9a6b57af", + "revision": "c9861f4c3bbd47f5b3a2e73b", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -106867,10 +78388,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6d25b7bb4fe34af487b0078d", + "revision": "0cd7171d75684bc9bc35e66d", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -106878,10 +78399,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "49844394bf5644b7ab487b82", + "revision": "b255bcaf393540978a8c4267", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -106896,28 +78417,19 @@ "total_amount": 648, "history_id": 1684158510574, "id": 1684158510574, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-05-15T13:48:30.574Z", + "date_last_updated": "2023-05-15T13:48:30.574Z", + "date_of_expiration": "2023-06-14T13:48:30.574Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "fc16eea7ae3a428b8fa439f4", + "revision": "588ec5cd38734122b46dcd82", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -106925,10 +78437,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "e470bd356920454eaf9022f4", + "revision": "60cebc39211047a6b13b1680", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -106946,24 +78458,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "costs": [] }, - "revision": "f9a945dc08264b7b9f9bd077", + "revision": "f3936150b4d94a4cbdb0f3d6", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -106979,18 +78479,9 @@ "original_amount": 5, "total_amount": 5, "id": 1684348943785, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-05-17T18:42:23.785Z", + "date_last_updated": "2023-05-17T18:42:23.785Z", + "date_of_expiration": "2023-05-17T18:42:23.785Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -106998,10 +78489,10 @@ "currency_id": "BRL", "history_id": 1684348943785 }, - "revision": "e57cf1162e344656aaeec164", + "revision": "c9a63f62c1a84f01869be8dd", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107009,10 +78500,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "8c6e78107fd04dd4adcb43b3", + "revision": "ebcf4f43f021421fbbed6662", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107030,24 +78521,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "costs": [] }, - "revision": "440fdf71dba64626912d19ee", + "revision": "adae4c5af40e467b9c071619", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107063,18 +78542,9 @@ "original_amount": 416.90000000000003, "total_amount": 416.90000000000003, "id": 1684624245338, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-05-20T23:10:45.338Z", + "date_last_updated": "2023-05-20T23:10:45.338Z", + "date_of_expiration": "2023-05-20T23:10:45.338Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -107082,10 +78552,10 @@ "currency_id": "BRL", "history_id": 1684624245338 }, - "revision": "4e51e1f2e0674b67bdd102de", + "revision": "028fbba95be3488b86a112a0", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107093,10 +78563,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "52a61727b6d844c3b04da814", + "revision": "4387dcedc46a42249dad9896", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107114,24 +78584,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "costs": [] }, - "revision": "136d974326474b60a57e7824", + "revision": "15baef959da74272a29090fe", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107147,18 +78605,9 @@ "original_amount": 11552888, "total_amount": 11552888, "id": 1684624330381, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-05-20T23:12:10.381Z", + "date_last_updated": "2023-05-20T23:12:10.381Z", + "date_of_expiration": "2023-05-20T23:12:10.381Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -107167,10 +78616,10 @@ "history_id": 1684624330381, "description": "Compra de 11.552.888,00 IVIP por 2.371,90 BRL" }, - "revision": "94a3d636862e48c1a37e650e", + "revision": "cc3120da387149be809a721d", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107178,24 +78627,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "costs": [] }, - "revision": "ea8c5690e3e945f99dc95258", + "revision": "3fbcff0de309480d9420d937", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107210,27 +78647,18 @@ "total_amount": 100, "history_id": 1686781360635, "id": 1686781360635, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-06-14T22:22:40.635Z", + "date_last_updated": "2023-06-14T22:22:40.635Z", + "date_of_expiration": "2023-07-14T22:22:40.635Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "f33c2209595748f99aab361a", + "revision": "4cea1e8a42cf4a928c439663", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107238,10 +78666,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "2b47142b827843ce8178333d", + "revision": "a520d104b51e4fa8954a2db6", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107249,24 +78677,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "costs": [] }, - "revision": "276a55cfa80d481aad436ca0", + "revision": "0c9c3295406a4d2b9a778a83", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107281,18 +78697,9 @@ "total_amount": 162, "history_id": 1686838534175, "id": 1686838534175, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-06-15T14:15:34.175Z", + "date_last_updated": "2023-06-15T14:25:35.258Z", + "date_of_expiration": "2023-07-15T14:15:34.175Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -107302,10 +78709,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3803f0dc570b47e18575b4ef", + "revision": "b9eae892b07b4d5988830dcd", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107313,10 +78720,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 162,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "cce25db28df248a393a90487", + "revision": "7660f272106343468358e4b1", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107336,24 +78743,12 @@ "installment_amount": 162, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "costs": [] }, - "revision": "2ceb9b0f14414928926934f8", + "revision": "b94ec61b6b17453d92ec5c35", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107370,18 +78765,9 @@ "total_amount": 162, "id": 1686839367288, "contract_id": "1684158510574", - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-06-15T14:29:27.288Z", + "date_last_updated": "2023-06-15T14:29:27.288Z", + "date_of_expiration": "2023-06-15T14:29:27.288Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -107389,10 +78775,10 @@ "currency_id": "BRL", "history_id": 1686839367288 }, - "revision": "d5a55a270f4a4b65af99026b", + "revision": "a8c13339ccb049c79e91c786", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107400,10 +78786,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", - "revision": "b895691aecbf4c4c856213b6", + "revision": "ed11d4a7ac854246b45252d5", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107421,24 +78807,12 @@ "installment_amount": 5132122, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "costs": [] }, - "revision": "1f15013ad4b441d7ae0530af", + "revision": "979169183ad846ac947b704f", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107453,18 +78827,9 @@ "original_amount": 5132122, "total_amount": 5132122, "id": 1687526304583, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-06-23T13:18:24.583Z", + "date_last_updated": "2023-06-23T13:18:24.583Z", + "date_of_expiration": "2025-06-23T13:18:24.583Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -107473,10 +78838,10 @@ "history_id": 1687526304583, "wasDebited": true }, - "revision": "52da617bcc2d4780afe7b834", + "revision": "0f461c15bca247dd932d9b47", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107484,10 +78849,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.132.122,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", - "revision": "cb7d80e4b00b4663b82bb860", + "revision": "3d112f854b5345f98965c0d4", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107496,24 +78861,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-02T09:29:25.462Z", - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + ".val": "2023-09-02T09:29:25.462Z" }, - "revision": "826a8c84798a4a219aff3d6e", + "revision": "89de4c441e8e4900925d05f3", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107529,24 +78882,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "costs": [] }, - "revision": "9c7af820579048a5a50927bd", + "revision": "96b1b737b0ae467e9ef8df7c", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107554,10 +78895,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1691054965462", - "revision": "151f2526e0984fad9c1b2610", + "revision": "e565d6ec7ddd42dcb3001e09", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107572,14 +78913,8 @@ "total_amount": 510, "id": 1691054965462, "history_id": 1691054965462, - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, + "date_created": "2023-08-03T09:29:25.462Z", + "date_last_updated": "2023-08-03T19:07:16.675Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -107589,16 +78924,12 @@ "date_approved": "2023-08-03T19:07:16.675Z", "money_release_date": "2023-08-03T19:07:16.675Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + "wasDebited": true }, - "revision": "3ddd5505e2154949aa996826", + "revision": "c91d2388299040bbb41c2fc4", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107606,10 +78937,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 510,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "55ea3d338a6c45cc9d479504", + "revision": "546dffb5089e49e1b5ec3d10", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107618,24 +78949,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-06T23:50:11.694Z", - "date_created": { - "type": 6, - "value": 1701459383537 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383537 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383537 - } + ".val": "2023-09-06T23:50:11.694Z" }, - "revision": "6ed0d6ade65447368208ee6d", + "revision": "ac7e19de3aad47c59a27a203", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107651,24 +78970,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "costs": [] }, - "revision": "824c8e32935a421789fc15ee", + "revision": "c52227470dc04414b2ea07a3", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107676,10 +78983,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1691452211694", - "revision": "d8ced413f1a24b90927f5206", + "revision": "074281fb5b014db59049bcbf", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107694,14 +79001,8 @@ "total_amount": 300, "id": 1691452211694, "history_id": 1691452211694, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-08-07T23:50:11.694Z", + "date_last_updated": "2023-08-08T00:39:59.247Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -107711,16 +79012,12 @@ "date_approved": "2023-08-08T00:39:59.247Z", "money_release_date": "2023-08-08T00:39:59.247Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "wasDebited": true }, - "revision": "26432c4071bf44faa82309af", + "revision": "cf91712d0ead433bb07d43b1", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107728,10 +79025,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 300,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "8335e63c5cb24a179d9ddb90", + "revision": "5825cfd06d9c4615b02ce5fa", "revision_nr": 1, - "created": 1701459383537, - "modified": 1701459383537 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107741,24 +79038,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 750698.52, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "amount": 750698.52 }, - "revision": "e9ea333432f74756bdacc225", + "revision": "532cbbafcecb4ab98eeb2ec2", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107773,24 +79058,12 @@ "installment_amount": 25023284, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "financial_institution": "ivipcoin" }, - "revision": "d88ef83377e140ccb6573f6b", + "revision": "8e5014a453c9450886d1878d", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107798,10 +79071,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1692030522501", - "revision": "f69415177bd349ec869195a5", + "revision": "c26892637c2649068b4c5518", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107809,10 +79082,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "3a7069a747dd49b5b4da6b93", + "revision": "1149868f673948c99f0fbb0b", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107827,18 +79100,9 @@ "total_amount": 24272585.48, "id": 1692030522501, "history_id": 1692030522501, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-08-14T16:28:42.501Z", + "date_last_updated": "2023-08-14T16:40:00.472Z", + "date_of_expiration": "2023-08-14T16:28:42.501Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -107850,10 +79114,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "72d857ff8f6f4bd5bd4105e4", + "revision": "0ca8166a1e394edea4afa938", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107861,10 +79125,10 @@ "content": { "type": "STRING", "value": "Saque de 24.272.585,48 IVIP para a carteira 0xC241a13f35a534f3ef174c5cF50Ea8653FfE62F1", - "revision": "8d7fd0463a2347f0aae07830", + "revision": "c6c532d1fed54527b60c3a76", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107873,24 +79137,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-19T21:27:27.215Z", - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + ".val": "2023-10-19T21:27:27.215Z" }, - "revision": "42b796f59b2d41b7974c2428", + "revision": "3edfed6828c04181a702304c", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107906,24 +79158,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "costs": [] }, - "revision": "646bdbf2dcb14e3b91c961d0", + "revision": "7d24d15064984270bfe25fa0", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107931,10 +79171,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695158847215", - "revision": "f174042b1c6843b8a2bb8bd7", + "revision": "178224d70ef044b4b6502a3e", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107949,14 +79189,8 @@ "total_amount": 150, "id": "1695158847215", "history_id": "1695158847215", - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-09-19T21:27:27.215Z", + "date_last_updated": "2023-09-19T21:40:25.727Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -107966,16 +79200,12 @@ "date_approved": "2023-09-19T21:40:25.727Z", "money_release_date": "2023-09-19T21:40:25.727Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "wasDebited": true }, - "revision": "5bc491fa862a49e6af26c1a5", + "revision": "09e4953a13364a8fabf3f28b", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -107983,10 +79213,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 150,00 BRL para a carteira iVip 1251.9390.3817.0948-30", - "revision": "8e227fdefa3a48ee9bf56ac9", + "revision": "507855f0960848c5b0d5461c", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -108004,24 +79234,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 4, - "installments_payable": 1, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "installments_payable": 1 }, - "revision": "c848d4fa53a343a78953e5d1", + "revision": "a19c7e2d70c54673a669079b", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -108029,10 +79247,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884735", - "revision": "599d46caedee4680bc2b7b46", + "revision": "137e30ad7b184a6fbddf2595", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -108047,18 +79265,9 @@ "total_amount": 220, "id": "1695159884735", "history_id": "1695159884735", - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-09-19T21:44:44.735Z", + "date_last_updated": "2023-09-19T21:44:44.735Z", + "date_of_expiration": "2023-09-19T21:44:44.735Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -108066,10 +79275,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "d00fcc7b95a54206b27b6734", + "revision": "6b5c14de63894343b750a96b", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108077,10 +79286,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "30244b717c994146ac15bd15", + "revision": "cb211f56eb634843940177a4", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509597, + "modified": 1701463509597 } }, { @@ -108098,24 +79307,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 2, - "installments_payable": 2, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "installments_payable": 2 }, - "revision": "12833145f2704d3b9f38befb", + "revision": "ccc574649293459b94f81162", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108123,10 +79320,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884797", - "revision": "06a91d4232e7490891709417", + "revision": "3f81a9d23f1c4c1198bda92a", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108141,18 +79338,9 @@ "total_amount": 162, "id": "1695159884797", "history_id": "1695159884797", - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-09-19T21:44:44.797Z", + "date_last_updated": "2023-09-19T21:44:44.797Z", + "date_of_expiration": "2023-09-19T21:44:44.797Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -108160,10 +79348,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "5b908fbe40834b7badba0cde", + "revision": "7baf4f7b274c463d99860766", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108171,10 +79359,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", - "revision": "1aa2e9245eba4be988bbc19b", + "revision": "9437de064f22489892b6947e", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108192,24 +79380,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 5, - "installments_payable": 0, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "installments_payable": 0 }, - "revision": "44b9c81aa1f443448ac0c0db", + "revision": "8243e949ff404e6684425abb", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108217,10 +79393,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884893", - "revision": "fef4667145ad412db83ac50a", + "revision": "ac2d246eaa714529ab139d2d", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108235,18 +79411,9 @@ "total_amount": 220, "id": "1695159884893", "history_id": "1695159884893", - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-09-19T21:44:44.893Z", + "date_last_updated": "2023-09-19T21:44:44.893Z", + "date_of_expiration": "2023-09-19T21:44:44.893Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -108254,10 +79421,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "e96443c64fc84feca7fccb7b", + "revision": "1de9de607d5348b3aa7e9aab", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108265,10 +79432,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "4c612819185f4b699aa951eb", + "revision": "200e768fbc70477a95533aad", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108286,24 +79453,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 3, - "installments_payable": 1, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "installments_payable": 1 }, - "revision": "f2360f8e1fab42728adfb15e", + "revision": "ae953efcca9a41d099219ab9", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108311,10 +79466,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884951", - "revision": "76d85c0e264d4668a27be124", + "revision": "33c30360467044ad881f328b", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108329,18 +79484,9 @@ "total_amount": 162, "id": "1695159884951", "history_id": "1695159884951", - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-09-19T21:44:44.951Z", + "date_last_updated": "2023-09-19T21:44:44.951Z", + "date_of_expiration": "2023-09-19T21:44:44.951Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -108348,10 +79494,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "0ccbf0cc830f4607a6af5ed8", + "revision": "3393ab7ea5894a0aa402c46f", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108359,10 +79505,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", - "revision": "0fc0602278ad44318b2ed542", + "revision": "c2c06fc67c4945cd9e970488", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108380,24 +79526,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 4, - "installments_payable": 0, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "installments_payable": 0 }, - "revision": "b7aa28d9666e44c389c18b54", + "revision": "2abaeba7c71a46ff8d3ecd41", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108405,10 +79539,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159885077", - "revision": "2a7601e4f0c04ebb9e2e7a09", + "revision": "acad55ca75a2430ebe16dbd6", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108423,18 +79557,9 @@ "total_amount": 162, "id": "1695159885077", "history_id": "1695159885077", - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-09-19T21:44:45.077Z", + "date_last_updated": "2023-09-19T21:44:45.077Z", + "date_of_expiration": "2023-09-19T21:44:45.077Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -108442,10 +79567,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "14ad9e2ebc974f1d9025b6bf", + "revision": "91c6a22e586b493b8aa46fa3", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108453,10 +79578,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", - "revision": "2babd0084ee94890b52fbb6f", + "revision": "10967f5ee54f44298c220720", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108465,24 +79590,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-31T14:53:42.012Z", - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + ".val": "2023-10-31T14:53:42.012Z" }, - "revision": "f8955b3f2ec043dca90e4945", + "revision": "ed8f970c708942ca8625e9f6", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108498,24 +79611,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "costs": [] }, - "revision": "8b68a147befd429784d81ed4", + "revision": "e12f17ae7a6242dfa7b77613", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108523,10 +79624,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1696172022012", - "revision": "b46165b8502f441ea4861d12", + "revision": "ae34a7eee2054c83aa9077e5", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108542,29 +79643,19 @@ "total_amount": 100000, "id": "1696172022012", "history_id": "1696172022012", - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-10-01T14:53:42.012Z", + "date_last_updated": "2023-10-01T14:53:42.012Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "IVIP", "base_currency_id": "IVIP", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "status_detail": "pending_waiting_payment" }, - "revision": "d81afd293feb42d7bd4edb58", + "revision": "e278bce9d1304f8fa92002d1", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108572,10 +79663,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100.000,00 IVIP para a carteira iVip 1251.9390.3817.0948-30", - "revision": "5474bb35cf2041d3b9ef6145", + "revision": "24b2e3d4252b4819a6a90add", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108584,24 +79675,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-11T12:17:09.373Z", - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + ".val": "2023-11-11T12:17:09.373Z" }, - "revision": "414ed39babf64c6aa3c299e9", + "revision": "aad813c46b7440519c583f15", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108617,24 +79696,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "costs": [] }, - "revision": "09a5f52a7a564eb38f46a538", + "revision": "1fd6276af41f4333a48b0f2f", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108642,10 +79709,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1697113029373", - "revision": "15f5cd8075f8427ba59e9ae5", + "revision": "1637486365584dd4a496b2f5", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108661,14 +79728,8 @@ "total_amount": 2500, "id": "1697113029373", "history_id": "1697113029373", - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-10-12T12:17:09.373Z", + "date_last_updated": "2023-10-12T12:23:24.981Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -108678,16 +79739,12 @@ "date_approved": "2023-10-12T12:23:24.981Z", "money_release_date": "2023-10-12T12:23:24.981Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "wasDebited": true }, - "revision": "b0dd5149659c4b019faceb15", + "revision": "2f87973667d14328a217ac01", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108695,10 +79752,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 2.500,00 BRL para a carteira iVip 1251.9390.3817.0948-30", - "revision": "140149d31075450e975c17c1", + "revision": "1ad2631c84794dfc98c1d981", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108714,24 +79771,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "costs": [] }, - "revision": "93ff2b0284cf45e5b4adc4f5", + "revision": "24f4b1fe5e824693b389879a", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108739,10 +79784,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1697159292046", - "revision": "274a507b5c524f82aca0ede9", + "revision": "e6065d05bac54c8194772e80", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108758,18 +79803,9 @@ "total_amount": 3812023, "id": "1697159292046", "history_id": "1697159292046", - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-10-13T01:08:12.046Z", + "date_last_updated": "2023-10-13T01:08:12.046Z", + "date_of_expiration": "2023-10-13T01:08:12.046Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -108778,10 +79814,10 @@ "description": "Compra de 3.812.023,00 IVIP por 2.034,00 BRL", "status_detail": "accredited" }, - "revision": "d8c06523c90f465db48518ff", + "revision": "9ace8d295446461f8366b99a", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108789,10 +79825,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8b94de6bb15f4f84864d8413", + "revision": "4c0f6d3e4d1e4e09abb35162", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108802,24 +79838,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "amount": 100 }, - "revision": "367044cd1bfe4dedafcb79d6", + "revision": "788bbaedb7454e97a27eddbf", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108833,26 +79857,15 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-03-19T21:59:10.490Z", "history_id": 1679263150490, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "status": "paid" }, - "revision": "6c790c06d8794a199408bba8", + "revision": "34d593b44ee44e3ea59a57f4", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108860,10 +79873,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "4263bab2ae004c72beacf9fd", + "revision": "684b2e83f37c40c88bcb4e91", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108871,10 +79884,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "72e982f315214ea4a4d88aff", + "revision": "1222c0449a2041f5a1ba6c27", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108882,10 +79895,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "62c23a8fbb9f4f80a6b18521", + "revision": "299d02d5106543f58bde8829", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108895,24 +79908,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "amount": 100 }, - "revision": "3e40f6c319d146d191b12662", + "revision": "3786bf3301344496b880f3a5", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108926,26 +79927,15 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-03-19T21:59:10.490Z", "history_id": 1679263150490, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "status": "paid" }, - "revision": "62ca7f77ed8747deb843e56c", + "revision": "68bf243a01ce47a1944c5112", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108953,10 +79943,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "b1dbd8c9b428467695370db5", + "revision": "39c3d9a00489433293e598da", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108964,10 +79954,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "511586e2a9724f2e80363333", + "revision": "36909a9265d3463db888c6d8", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108975,10 +79965,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "271ed9be2d714e009c1f9c3f", + "revision": "9c35094b10d140b09c1ee749", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -108988,24 +79978,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "amount": 100 }, - "revision": "7f144cb394174aabbd7384bd", + "revision": "95ed8511cf8344289595c5bd", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109019,26 +79997,15 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-03-19T21:59:10.490Z", "history_id": 1679263150490, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "status": "paid" }, - "revision": "73b2f681d4d04e8383d70cda", + "revision": "4e50846d3369494ea95c96b2", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109046,10 +80013,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "87f5604ba1884b278292291e", + "revision": "426b4ac5889b48be9133ef83", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109057,10 +80024,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "abb32a58a4b94f3993e2aec2", + "revision": "360f284515ca404f8f79153f", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109070,24 +80037,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 48, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "amount": 48 }, - "revision": "9011d852da8442889990caf1", + "revision": "880b554b2da14d768d97aeab", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109101,26 +80056,15 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-05-15T13:48:30.574Z", "history_id": 1684158510574, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "status": "paid" }, - "revision": "a711ec7092d446d9b594bf74", + "revision": "be5a0f1a09804a1186a76b8b", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109128,10 +80072,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "66c4c0df973040af8ef36c30", + "revision": "cb37bc4152254d3da275f57f", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109139,10 +80083,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e0f964ad877a4381aecf5d81", + "revision": "e393eef8efa746599e3e7b7d", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109150,10 +80094,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "44571ee1d624493f8beb9959", + "revision": "43d25ceb5d7b420f97812dfa", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109163,24 +80107,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "amount": 100 }, - "revision": "4d8f33602bf34c0ebf70b444", + "revision": "b50396cbd741423db6d137a2", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109194,26 +80126,16 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-03-19T21:59:10.490Z", "history_id": 1679263150490, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "date_last_updated": "2023-09-19T21:44:44.751Z" }, - "revision": "9b694f217dd44cfc93b9b2e9", + "revision": "0118625328804915a35da20c", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109221,10 +80143,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "b2672eb9e8c34bd8bac7bc88", + "revision": "4b45157aafa049d1a5fe6500", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109232,10 +80154,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b039ea7a42b441129eb4076e", + "revision": "5181c8471d164df0b4e135c8", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109245,24 +80167,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 48, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "amount": 48 }, - "revision": "6d5cc79783cb44d3a7e29b71", + "revision": "a7de6d6126184dfab2e16ebb", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109276,26 +80186,16 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-05-15T13:48:30.574Z", "history_id": 1684158510574, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "date_last_updated": "2023-09-19T21:44:44.809Z" }, - "revision": "1f39d1d11f7747b49d96d360", + "revision": "497b988794db4fcfa969a4c2", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109303,10 +80203,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "77cf427e44464597b1a96e7c", + "revision": "48e12e0a3bd543deae293114", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109314,10 +80214,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "28c3657379a44d3a99b81b18", + "revision": "c5cd10254ff248fabc2157ab", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109325,10 +80225,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "46e623bdfb3643fea9cf9b26", + "revision": "957782afd49342ca812cd8b1", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109338,24 +80238,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", - "amount": 100, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "amount": 100 }, - "revision": "480a5d5bed5d495ab0316f62", + "revision": "ac69c8f0644142c1a940706d", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109369,26 +80257,16 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-03-19T21:59:10.490Z", "history_id": 1679263150490, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "date_last_updated": "2023-09-19T21:44:44.904Z" }, - "revision": "bb55b0e1496a4557b00580e6", + "revision": "a82eab82e8814c3e9a5d6628", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109396,10 +80274,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "03e812aac48a4253b76460db", + "revision": "5b5a8e32346d440db52e3a9a", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109407,10 +80285,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "a92363473e3c4fd5a0f3f318", + "revision": "2f86229814114ec090f21021", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109420,24 +80298,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 48, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "amount": 48 }, - "revision": "352237cdb4a948198cc2fb72", + "revision": "85cfc9d764b54644aefe45e0", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109451,26 +80317,16 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-05-15T13:48:30.574Z", "history_id": 1684158510574, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "date_last_updated": "2023-09-19T21:44:44.962Z" }, - "revision": "44e782da054f4228be31683b", + "revision": "a6d8727115744b2da4157e65", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109478,10 +80334,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "f2377c44ebfa41a0a6405611", + "revision": "0fc46bac128d41689a170942", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109489,10 +80345,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "da1d80ea536e47858de7e783", + "revision": "1ee1e2ab10964b75ab4bd1aa", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109500,10 +80356,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2a73767048f04ccdb51fb06f", + "revision": "ad7c22a4bd1c452a84575cd6", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509598, + "modified": 1701463509598 } }, { @@ -109513,24 +80369,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", - "amount": 48, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "amount": 48 }, - "revision": "753d98dbb6004d258cba604d", + "revision": "3ae16a83fb3f4e02a4382401", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109544,26 +80388,16 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-05-15T13:48:30.574Z", "history_id": 1684158510574, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "date_last_updated": "2023-09-19T21:44:45.096Z" }, - "revision": "230b951a59e249dba77f2831", + "revision": "a88d01c21dcb4550a694a232", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109571,10 +80405,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "303183ae7254477a9fd7378c", + "revision": "7a07fc5cfb4e47fa8960879e", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109582,10 +80416,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "c11cea95fe7841548529286f", + "revision": "80ee9ae82dc646b38c77ee7a", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109593,10 +80427,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3d01b73646ef4b79baab52bc", + "revision": "fb369c1b3cf547e4828df02b", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109604,10 +80438,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "784d1b890ff24f6084521f89", + "revision": "4e829c1c11714533b7ca1c0c", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109618,24 +80452,12 @@ "approvedLimit": 1000, "limitUsed": 850, "analysisRequested": "2023-03-18T16:32:25.695Z", - "lastReview": "2023-03-19T21:27:43.210Z", - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "lastReview": "2023-03-19T21:27:43.210Z" }, - "revision": "9cedacfe9a224cc880c6b4eb", + "revision": "bdb7b44835f747a892a8831f", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109647,24 +80469,12 @@ "dateValidity": 1679152336550, "totalValue": 1379.3, "currencyType": "USD", - "balancesModificacao": "2023-10-14T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "balancesModificacao": "2023-10-14T03:00:00.000Z" }, - "revision": "46e83a25ecfe4a0983656420", + "revision": "b75d92a09b224a1890985a89", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109672,24 +80482,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "costs": [] }, - "revision": "8e815a91efde482bb1bcfd9f", + "revision": "9442c0461f67495eba88e216", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109704,18 +80502,9 @@ "total_amount": 1500, "history_id": 1677727950406, "id": 1677727950406, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-03-02T03:32:30.406Z", + "date_last_updated": "2023-03-02T03:38:03.262Z", + "date_of_expiration": "2023-04-01T03:32:30.406Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -109725,10 +80514,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "1930547e71764f44994987ba", + "revision": "858feb2ad07c4113b5bf6694", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109736,10 +80525,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "8cc793dd939341c0bb996e7c", + "revision": "06ab851b0fba45f2b3ff4599", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109747,24 +80536,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "costs": [] }, - "revision": "dc60bebb2edf417da9c976eb", + "revision": "0e185b80331f49659b284e93", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109779,18 +80556,9 @@ "total_amount": 100, "history_id": 1677797747321, "id": 1677797747321, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-03-02T22:55:47.321Z", + "date_last_updated": "2023-03-03T00:25:24.428Z", + "date_of_expiration": "2023-04-01T22:55:47.321Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -109800,10 +80568,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "6fda46fef573492eaf60b3c1", + "revision": "8513c2d7769645768cc01e4c", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109811,10 +80579,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "8d401b439bda470dbd003481", + "revision": "b7af9118ebf64c7fa4bc7e31", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109822,24 +80590,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - } + "costs": [] }, - "revision": "b0cec0a331914266bf637062", + "revision": "210eb26aff0a48e3bfbdff1b", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109854,18 +80610,9 @@ "total_amount": 1000, "history_id": 1678363438960, "id": 1678363438960, - "date_created": { - "type": 6, - "value": 1701459383538 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383538 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383538 - }, + "date_created": "2023-03-09T12:03:58.960Z", + "date_last_updated": "2023-03-13T12:44:21.621Z", + "date_of_expiration": "2023-04-08T12:03:58.960Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -109873,10 +80620,10 @@ "money_release_date": "2023-03-13T12:44:21.621Z", "money_release_status": "rejected" }, - "revision": "d87f149d9ffc4ebeb0f29703", + "revision": "c26112cf3f7d436da4165443", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109884,10 +80631,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "a45a7af8fde54efbae0cbfa1", + "revision": "c3916b768937465489d2453a", "revision_nr": 1, - "created": 1701459383538, - "modified": 1701459383538 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109905,24 +80652,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "3e286660d3004cb7881b4500", + "revision": "adb0d6cfc263415b9a3eba1e", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109938,18 +80673,9 @@ "original_amount": 11439584, "total_amount": 11439584, "id": 1678155991324, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-03-07T02:26:31.324Z", + "date_last_updated": "2023-03-07T02:26:31.324Z", + "date_of_expiration": "2023-03-07T02:26:31.324Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -109958,10 +80684,10 @@ "history_id": 1678155991324, "description": "Compra de 11439584 IVIP por 1600 BRL" }, - "revision": "b23010ed18804544b8285a96", + "revision": "ff57bd04c2004746a60fa5de", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109971,24 +80697,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 1.9800000000000002, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "amount": 1.9800000000000002 }, - "revision": "fdca6cfd8c9e41328085d599", + "revision": "7e2c278bf96f411e8352a350", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -109996,10 +80710,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e0cf2d57f5514dd2b0c60a17", + "revision": "2e0f65de9df9461194c49e66", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110007,24 +80721,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "Paulo Fagner de Oliveira", - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "11a66c175b804a588f9093fb", + "revision": "5d5202427dd6473f9dad24eb", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110032,10 +80734,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "528decd8b53149b699b102c7", + "revision": "eaf7b12c19a444c486cd8b0f", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110047,24 +80749,12 @@ "net_received_amount": 0, "total_paid_amount": 201.98, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "installment_amount": 0 }, - "revision": "ff0b4d4214754e779e689af8", + "revision": "2777f427faef473f807aaf6b", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110072,10 +80762,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55108764779/ticket?caller_id=1310149122&hash=bd26ec14-a4ce-4255-b152-2a7df041f5dd", - "revision": "9dab94d1ef484a208e7ff58f", + "revision": "09e6909702f74779845c17b0", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110083,10 +80773,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI5ElEQVR42u3dUa7jNgwFUO3A+9+ld+Bi0E6TkFdyBh0UrXz8Eby8xPZx/ghSV+P6Hx3noKWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaX9/dpRj+PH/46/P/j514+z/nx5Ha8L/PXBz3Nf33u/x88PXl9+P60zaGlpaWlpaWlpaWlpH6I93ku28jZd/fVBuWP7CcoZk0/fHzIxaGlpaWlpaWlpaWlpH6AtBWR+jPHpbj24sTj3o058PcGicKWlpaWlpaWlpaWlpX229vxs7K1kpe333gD8qCLLs+QXWlpaWlpaWlpaWlpa2jBm2UrJaf03Pmcoi7ZUkWUwk5aWlpaWlpaWlpaW9snaKb5971yugUsPNO3pjbt+IC0tLS0tLS0tLS0t7UO005SSf/fln2aq0NLS0tLS0tLS0tLS/k+1+eihji2WJH0wWTW3Xg13b6GlpaWlpaWlpaWlpd1be7YKbrrALXTeYsOu/JUDJkvy5DTmhJaWlpaWlpaWlpaWdnft67bnJ/S42yetJJKUL+eK8QzPXIrPUlnS0tLS0tLS0tLS0tLurj1zzn6jHOGO7cKrRXTTkrPvErCseWlpaWlpaWlpaWlpaTfT9tvmdXHTht1kHDNtEFAeN/9KdzOitLS0tLS0tLS0tLS0m2knFV7DT8rLEiH5Pp2ZAKvN13ItSktLS0tLS0tLS0tLu7f2XZa2V+t1YioMS2VZoHmxXa9j86e0tLS0tLS0tLS0tLR7a1sYSdpUbXW5El+SjGmkMq2zy2vlaGlpaWlpaWlpaWlp99Y2RW/dhfPjOrY0UpmOFodSmoeLqUtaWlpaWlpaWlpaWtr9tIuhyTQWOYn7b8vkyv+mdzvydOZNzUtLS0tLS0tLS0tLS7ubNhWBrWwcbdbyvQydrIZrW2b3ec6W5X/epvrT0tLS0tLS0tLS0tJupG0XGe3Utrbtbtfqui6ujXdOb3S3CzYtLS0tLS0tLS0tLe2O2mN2pf5BOS1tpdZKxKt18qbL39KNaGlpaWlpaWlpaWlpd9e2AjLtp3aFEnG0vlxu5022zG6jl4uQf1paWlpaWlpaWlpa2p21eUHaZIVcgeZEknTGdLFdKjSPm5qXlpaWlpaWlpaWlpZ2M+2Y3TG17qbRkJP9sAsq/UDrGU9aWlpaWlpaWlpaWtrdtS2j/2zL1RZBjyt8qhjzXOW12JqNlpaWlpaWlpaWlpb2IdqRUxxTQEl6m7IgcwTJGYY1++bZtLS0tLS0tLS0tLS0z9GmoP7yQcmCLLx222mdWLRpk+3zm0wVWlpaWlpaWlpaWlrarbQ5xTF5JvOXbf/qEarSSbbkdOkcLS0tLS0tLS0tLS3tk7TlIq2GG61rd+Twx1aQ9sj+Uq5Osyq/ybqkpaWlpaWlpaWlpaXdQ1tWr7VokduAkrYQbkKZ/jbt7IOWlpaWlpaWlpaWlvZJ2kLOb/v+1WkLgNe50ybeumLMUSW0tLS0tLS0tLS0tLSP0t4Fj0wmLKfDmnep/unc6+sqkpaWlpaWlpaWlpaWdgNt6+ldOd+/NPZSQEmrBPtKulYnTirQWRVJS0tLS0tLS0tLS0u7qfauJrwWS90W535UkdOfYH1fWlpaWlpaWlpaWlra3bWLOnHS9ksDkq2xV9JHxuf/fumgpaWlpaWlpaWlpaXdXTtt2PUeXKsOr7td2VrWyTULRhl5U2xaWlpaWlpaWlpaWtqHaNsOZxE6DepfPOn1i7mULWqSlpaWlpaWlpaWlpZ2b22p+krt2Da7Lgn+k7iRcka7wHF3PVpaWlpaWlpaWlpa2udo095p00ZcypEs+f65NP2oMVMBWW5+34ukpaWlpaWlpaWlpaXdRdvKweOrirGhWkuuL4SbXnT1Y9DS0tLS0tLS0tLS0u6uTVXfohF3hIc8QgE5QjTkt1OXjUZLS0tLS0tLS0tLS7uztlyklHStL9efr6WKXKHavPIGAbna/KrmpaWlpaWlpaWlpaWl3UX7PvPYm3NtMLN04/qRBjjTWrlcwt5nqtDS0tLS0tLS0tLS0u6nLYXcyCvapnGRrVgcn929Y1Z89u/l02hpaWlpaWlpaWlpaR+gLa221NjLk5ilDJ10/MrgZUpCKVOXtLS0tLS0tLS0tLS0T9SmjP53d1L0gJLWpuup/ouq9Ph6z25aWlpaWlpaWlpaWtp9tFeoCY9FX679NUIX8MjjmCllsm0LcD8jSktLS0tLS0tLS0tLu5G2VG7tZeSgx/x8Yza7OVo9macz73dbo6WlpaWlpaWlpaWl3U87WdGWvrJo7KWkkZRSsp66zJUlLS0tLS0tLS0tLS3tztppSknbGXuyZq005/Ls5pWX073fbbSESlpaWlpaWlpaWlpa2odoSw9u1cRr/cCyiK7PaS5yTfpKunzQ0tLS0tLS0tLS0tI+QJvmJct6t6YdIXTyav279JXyA6Ui9X4XbFpaWlpaWlpaWlpa2l20raO2umbbgW18oiaTky0V8sxL7L5eDUdLS0tLS0tLS0tLS7ufdizaebk6LKkipQw929s8rHl+nphTK2lpaWlpaWlpaWlpaXfWLmSr+cvppthpIdz6cVNVSktLS0tLS0tLS0tL+xztqMcRMvqPuzVw6SUZ36vIyZW/7O7R0tLS0tLS0tLS0tLuo51um5ZGJfskZq4iy/9KkMmZV759U0XS0tLS0tLS0tLS0tJuqV2Ug2OWUrKanGxJI6mDeMxK2LFKKaGlpaWlpaWlpaWlpX2GdrQYkfdVbqliHIt1cWXM8ousE1paWlpaWlpaWlpa2qdry4ULZRI1mbdmS1OXI1y5R03S0tLS0tLS0tLS0tI+R5tbdyPn+5fblnun3P7W8Ssx/mfLNaGlpaWlpaWlpaWlpX2SduShybToLZeSV1gSd7QNsHPe5Lm4JS0tLS0tLS0tLS0t7SO0//2DlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlva3af8AAVry9+WFQ1kAAAAASUVORK5CYII=", - "revision": "9c2db483e6814defa4c24db2", + "revision": "e59b7f7189e34a059b679487", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110094,10 +80784,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d127175204000053039865406201.985802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter551087647796304A631", - "revision": "b48e356226f740889a01e8f0", + "revision": "59ca99a1efe34b00b155a58c", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110105,10 +80795,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "3c0fa6980c3f4d89aea67dfa", + "revision": "3f696d8094fb48b39e5bfdf1", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110123,28 +80813,19 @@ "total_amount": 201.98, "history_id": 1677377774383, "id": 55108764779, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-02-25T22:16:15.134-04:00", + "date_last_updated": "2023-02-25T22:16:15.134-04:00", + "date_of_expiration": "2023-02-26T22:16:14.923-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "6be2dc2b388a4d78806f74d5", + "revision": "1ab1967ee90e486a9e33fd6f", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110152,10 +80833,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "55dff9d6af3445f382b70be0", + "revision": "0d59db63d4d342e8aa5d226e", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110165,24 +80846,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "amount": 600 }, - "revision": "8632473e851541339a438909", + "revision": "714847c1be9f4ae0b3df05ed", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110190,10 +80859,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a748b3cd2f36437dae2a1f13", + "revision": "1049c84ccc69434ea99e23b6", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110201,10 +80870,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "ec5d5c344b67466199e0a968", + "revision": "74998691a58541c38abff38d", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110219,28 +80888,19 @@ "total_amount": 3600, "history_id": 1679262602609, "id": 1679262602609, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-03-19T21:50:02.609Z", + "date_last_updated": "2023-03-19T21:50:02.609Z", + "date_of_expiration": "2023-04-18T21:50:02.609Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "8b7df4d9b3be4ac38d187c57", + "revision": "6955ac4b361148df98304361", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110248,10 +80908,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "f8fd2d8256a9423f9285255a", + "revision": "5764818f9b6d48c99e80bc8e", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110269,24 +80929,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "391af18842b84699a8a2cdc1", + "revision": "35a95f8c943841db9a6d20b3", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110302,18 +80950,9 @@ "original_amount": 17473846, "total_amount": 17473846, "id": 1679266870095, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-03-19T23:01:10.095Z", + "date_last_updated": "2023-03-19T23:01:10.095Z", + "date_of_expiration": "2023-03-19T23:01:10.095Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -110322,10 +80961,10 @@ "history_id": 1679266870095, "description": "Compra de 17473846 IVIP por 3000 BRL" }, - "revision": "7df3076b79ad434aaf417039", + "revision": "a29ced931e924a01ac442b39", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110335,24 +80974,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "amount": 600 }, - "revision": "e498dcb9b088426495773371", + "revision": "9b2d18edc2ca474db154f61a", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110360,10 +80987,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e70ad7672a9e4fed80bc801c", + "revision": "0446d0c5687f4445815b977d", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110371,10 +80998,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e7413835456143fa846d98f0", + "revision": "8f9cfa88bb064514a09b62fa", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110389,18 +81016,9 @@ "total_amount": 3600, "history_id": 1678654062362, "id": 1678654062362, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-03-12T20:47:42.362Z", + "date_last_updated": "2023-03-21T13:30:48.783Z", + "date_of_expiration": "2023-04-11T20:47:42.362Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -110410,10 +81028,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "9b213ef7731b44ba8a6e653d", + "revision": "eb427a78c43042ccbb0d7c8d", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110421,10 +81039,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "4259a46259214b32a957091a", + "revision": "f8e149ef54da4972b57c018b", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110432,24 +81050,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "a6cfc56c556844b381aba6ee", + "revision": "aee5734cc3a74d18b7454182", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110464,27 +81070,18 @@ "total_amount": 100, "history_id": 1679871546323, "id": 1679871546323, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-03-26T22:59:06.323Z", + "date_last_updated": "2023-03-26T22:59:06.323Z", + "date_of_expiration": "2023-04-25T22:59:06.323Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "fa9937ace7164a85963818f8", + "revision": "f2b313e87cd74f50b19d6da9", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110492,10 +81089,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "354dd6ac98034b58b4bd89f6", + "revision": "5c4b0496c51348acb6f0f3ca", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110503,24 +81100,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "cb11226bec9f403d8f44e1e3", + "revision": "f0b9b43fa6c44110a9ed11f4", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110535,18 +81120,9 @@ "total_amount": 360, "history_id": 1682619072709, "id": 1682619072709, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-04-27T18:11:12.709Z", + "date_last_updated": "2023-04-27T18:30:34.522Z", + "date_of_expiration": "2023-05-27T18:11:12.709Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -110556,10 +81132,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3020c9e84e1443c8aa050640", + "revision": "e0e2e3a015b34f558a81dec5", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110567,10 +81143,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 360,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "6be1e3082c9042d0b2c3bdf5", + "revision": "f1aed890474147f28e350b60", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110590,24 +81166,12 @@ "installment_amount": 360, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "45d6c0fbea7c4707be66a031", + "revision": "d171e332bf5d4258b71e7a40", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110624,18 +81188,9 @@ "total_amount": 360, "id": 1682620551210, "contract_id": "1679262602609", - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-04-27T18:35:51.210Z", + "date_last_updated": "2023-04-27T18:35:51.210Z", + "date_of_expiration": "2023-04-27T18:35:51.210Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -110643,10 +81198,10 @@ "currency_id": "BRL", "history_id": 1682620551210 }, - "revision": "84656e65ce8c43228e6ec1ae", + "revision": "3b7c07b4b3354a6490a9d2d4", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110654,10 +81209,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "3067c01472d64f3faad9624a", + "revision": "f811973346de43a8bfdb2e1c", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110665,24 +81220,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "6d866ceb87ca4d2f99dc9a95", + "revision": "62f187e327f64ddb8a245bba", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110697,18 +81240,9 @@ "total_amount": 200, "history_id": 1683422461919, "id": 1683422461919, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-05-07T01:21:01.919Z", + "date_last_updated": "2023-05-07T11:45:42.487Z", + "date_of_expiration": "2023-06-06T01:21:01.919Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -110718,10 +81252,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "09f382b1abe3410eb46d6362", + "revision": "46e40aca5da64ea58f746fae", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110729,10 +81263,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "e1df9f1bfb034e8494d8a57a", + "revision": "6f5f816f9c534a6ba7141b96", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110740,24 +81274,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "5958d46e0d404bd2ade6cd18", + "revision": "e9d217483d1d460ba2bc8328", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110772,18 +81294,9 @@ "total_amount": 200, "history_id": 1683947136546, "id": 1683947136546, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-05-13T03:05:36.546Z", + "date_last_updated": "2023-05-13T03:09:15.818Z", + "date_of_expiration": "2023-06-12T03:05:36.546Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -110793,10 +81306,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "74cfa9d44af7433ebbe480c2", + "revision": "08dd8e30a09f40b6bff8ed13", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110804,10 +81317,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "2e7c9f7272f14dbbafa470b7", + "revision": "cf16b8a8a32744e4957c358b", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110827,24 +81340,12 @@ "installment_amount": 360, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "d370314d61c44ec1b5121845", + "revision": "21f1e8c9f4954570aa542c0e", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110861,18 +81362,9 @@ "total_amount": 360, "id": 1683947563493, "contract_id": "1679262602609", - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-05-13T03:12:43.493Z", + "date_last_updated": "2023-05-13T03:12:43.493Z", + "date_of_expiration": "2023-05-13T03:12:43.493Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -110880,10 +81372,10 @@ "currency_id": "BRL", "history_id": 1683947563493 }, - "revision": "12f99af48bb44be980c98451", + "revision": "a41d09da79b84e4f839ba102", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110891,10 +81383,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "e85b073d43f04cf8b356a51c", + "revision": "e51a4077e4e1413db3b94c18", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110902,24 +81394,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "593d793f1e0e4bb6b06201b7", + "revision": "51ea0baf9b424f2f9f306f63", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110934,18 +81414,9 @@ "total_amount": 66.32, "history_id": 1683948027523, "id": 1683948027523, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-05-13T03:20:27.523Z", + "date_last_updated": "2023-05-13T03:21:20.092Z", + "date_of_expiration": "2023-06-12T03:20:27.523Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -110955,10 +81426,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "104a49c9fcaf4d79aca2f207", + "revision": "b02ca2c088fc46ef9b3801cb", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110966,10 +81437,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 66,32 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "7663fed28f0940de87a52721", + "revision": "93745c4063464c0db529104d", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -110987,24 +81458,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "bb357cc1dae541cd822f7601", + "revision": "1974f4f507244f66b3e17726", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -111020,18 +81479,9 @@ "original_amount": 574594, "total_amount": 574594, "id": 1684018958560, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-05-13T23:02:38.560Z", + "date_last_updated": "2023-05-13T23:02:38.560Z", + "date_of_expiration": "2023-05-13T23:02:38.560Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -111040,10 +81490,10 @@ "history_id": 1684018958560, "description": "Compra de 574.594,00 IVIP por 106,32 BRL" }, - "revision": "58163dfe0cc7432b9cf507b7", + "revision": "5e159bf2f534449e8dbf63c2", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -111051,24 +81501,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "86566b57075f4e48ac75c4d1", + "revision": "fbaaad9efaf642b999803a06", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -111083,18 +81521,9 @@ "total_amount": 130, "history_id": 1684158010439, "id": 1684158010439, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-05-15T13:40:10.439Z", + "date_last_updated": "2023-05-15T15:13:10.445Z", + "date_of_expiration": "2023-06-14T13:40:10.439Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -111104,10 +81533,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "4051c039a55c46af8f132aa4", + "revision": "238fccc4811544a89812789d", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -111115,10 +81544,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 130,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "f65695911bd145e2902f421c", + "revision": "5c4c4ca30c924ac7a238bf2b", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -111126,24 +81555,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "836e047b4c9d4478b7cd638b", + "revision": "5f4d4c810ff74603a0acd4c9", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -111158,18 +81575,9 @@ "total_amount": 55, "history_id": 1684458859068, "id": 1684458859068, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-05-19T01:14:19.068Z", + "date_last_updated": "2023-05-19T01:25:57.882Z", + "date_of_expiration": "2023-06-18T01:14:19.068Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -111179,10 +81587,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "bd2525c3fcd14a31a3e7c58e", + "revision": "a15b1759403341b2a63be274", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -111190,10 +81598,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 55,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "ffbf375154fd4913834f85ce", + "revision": "33cb8bd0f4a54e11a5cdd0e3", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -111211,24 +81619,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "2a71640bad834e988d602ce1", + "revision": "848c3fb9d46744bb9c873017", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -111244,18 +81640,9 @@ "original_amount": 901085, "total_amount": 901085, "id": 1684624396163, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-05-20T23:13:16.163Z", + "date_last_updated": "2023-05-20T23:13:16.163Z", + "date_of_expiration": "2023-05-20T23:13:16.163Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -111264,10 +81651,10 @@ "history_id": 1684624396163, "description": "Compra de 901.085,00 IVIP por 185,00 BRL" }, - "revision": "6fedca4b303447a6b0a632f2", + "revision": "9dcfa4281df84f85a74b1553", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -111285,24 +81672,12 @@ "installment_amount": 5000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "ea67288e544141b38f984a8d", + "revision": "efc211dc135d41b29f925c65", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -111317,18 +81692,9 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1685667418933, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-06-02T00:56:58.933Z", + "date_last_updated": "2023-06-02T00:56:58.933Z", + "date_of_expiration": "2025-06-02T00:56:58.933Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -111337,10 +81703,10 @@ "history_id": 1685667418933, "wasDebited": true }, - "revision": "145f492c0ef34f60b53db80f", + "revision": "51fd9fce934347649dfdeb6b", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -111348,10 +81714,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "6cfb1fb2fd3b4a9da89cedfd", + "revision": "1be473286a6144689f92bf5f", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509599, + "modified": 1701463509599 } }, { @@ -111369,24 +81735,12 @@ "installment_amount": 4000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "a22bcba7798d4969bac62409", + "revision": "43680dcf42794ec3aebe9e2f", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111401,18 +81755,9 @@ "original_amount": 4000000, "total_amount": 4000000, "id": 1685668065254, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-06-02T01:07:45.254Z", + "date_last_updated": "2023-06-02T01:07:45.254Z", + "date_of_expiration": "2024-06-02T01:07:45.254Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -111420,10 +81765,10 @@ "currency_id": "IVIP", "history_id": 1685668065254 }, - "revision": "ac7c0f7b21e34a73b4e05e91", + "revision": "ce1db390589347d788201856", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111431,10 +81776,10 @@ "content": { "type": "STRING", "value": "Investimento de 4.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "9426538859324ee9af04e8fa", + "revision": "e81bdfdcfac54dc18269eef1", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111452,24 +81797,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "ddb72c0d345c41249b4c367f", + "revision": "813fb08210914d968d1ae981", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111484,18 +81817,9 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685668086801, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-06-02T01:08:06.801Z", + "date_last_updated": "2023-06-02T01:08:06.801Z", + "date_of_expiration": "2023-07-02T01:08:06.801Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -111503,10 +81827,10 @@ "currency_id": "IVIP", "history_id": 1685668086801 }, - "revision": "195d887b1cea4eaebcab55e5", + "revision": "132aa98ec8444e5b82114a1d", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111514,10 +81838,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "04eb9972f3e94150a2ec7eba", + "revision": "b99daa1aef174a69884f5c9d", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111535,24 +81859,12 @@ "installment_amount": 5000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "cb1f5c1c30054ed189940dff", + "revision": "cde95d0925e54010bc92461a", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111567,18 +81879,9 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1685668239552, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-06-02T01:10:39.552Z", + "date_last_updated": "2023-06-02T01:10:39.552Z", + "date_of_expiration": "2023-12-02T01:10:39.552Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -111586,10 +81889,10 @@ "currency_id": "IVIP", "history_id": 1685668239552 }, - "revision": "907239936b1e409086505275", + "revision": "fb19f03d42714e59963afae2", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111597,10 +81900,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", - "revision": "6a043965bb9c4ca5b77890e8", + "revision": "fceec261c68b4d6f9661b52a", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111608,24 +81911,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - } + "costs": [] }, - "revision": "1ba7197cbbd645f59c9022b7", + "revision": "696262307b9e4243979ddde8", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111640,18 +81931,9 @@ "total_amount": 400, "history_id": 1686858477834, "id": 1686858477834, - "date_created": { - "type": 6, - "value": 1701459383539 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383539 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383539 - }, + "date_created": "2023-06-15T19:47:57.834Z", + "date_last_updated": "2023-06-15T20:00:25.618Z", + "date_of_expiration": "2023-07-15T19:47:57.834Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -111661,10 +81943,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "2d7b7c85956f4804a5114465", + "revision": "c1314786ff264b7aa9f156a0", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111672,10 +81954,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 400,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "66203d41c87e47b89e3ec1c6", + "revision": "dd7673ae936d42999a9bd6c0", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111695,24 +81977,12 @@ "installment_amount": 360, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "costs": [] }, - "revision": "7f3f3372c8384f4f88f5c720", + "revision": "7d0aacb61b6f41b7be83323d", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111729,18 +81999,9 @@ "total_amount": 360, "id": 1686859298764, "contract_id": "1679262602609", - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-06-15T20:01:38.764Z", + "date_last_updated": "2023-06-15T20:01:38.764Z", + "date_of_expiration": "2023-06-15T20:01:38.764Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -111748,10 +82009,10 @@ "currency_id": "BRL", "history_id": 1686859298764 }, - "revision": "d4492ab4269c4e32a2d0a93f", + "revision": "b0689f01a16c46ac9adb4506", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111759,10 +82020,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "5c4c097147e14d36aaebde70", + "revision": "ac4311e6e9034a1ea8af0056", "revision_nr": 1, - "created": 1701459383539, - "modified": 1701459383539 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111780,24 +82041,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "costs": [] }, - "revision": "b664a2a5ec4d43b2b6880145", + "revision": "f33e14da866244c39a0b0549", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111813,18 +82062,9 @@ "original_amount": 256510, "total_amount": 256510, "id": 1686859421606, - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-06-15T20:03:41.606Z", + "date_last_updated": "2023-06-15T20:03:41.606Z", + "date_of_expiration": "2023-06-15T20:03:41.606Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -111833,10 +82073,10 @@ "history_id": 1686859421606, "description": "Compra de 256.510,00 IVIP por 40,00 BRL" }, - "revision": "512830e4be4c4274a21792d4", + "revision": "798245b58e9e4d6180507505", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111854,24 +82094,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "costs": [] }, - "revision": "63481df5c99f4737a3c111d7", + "revision": "b12376381ee84cf8a247ae3f", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111886,18 +82114,9 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1688400452024, - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-07-03T16:07:32.024Z", + "date_last_updated": "2023-07-03T16:07:32.024Z", + "date_of_expiration": "2023-07-03T16:07:32.024Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -111906,10 +82125,10 @@ "history_id": 1688400452024, "wasDebited": true }, - "revision": "6500f339bb9c46e893e9e50d", + "revision": "65b63a10e02d4d888f5cdead", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111917,10 +82136,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "ac4b881e2f674304877c51de", + "revision": "a976228b5d364abd9f7644be", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111938,24 +82157,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "costs": [] }, - "revision": "893a74bbb3c54438929e4500", + "revision": "e4e50e85d6b543aa88e87765", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -111970,18 +82177,9 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1688403103597, - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-07-03T16:51:43.597Z", + "date_last_updated": "2023-07-03T16:51:43.597Z", + "date_of_expiration": "2023-08-03T16:51:43.597Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -111989,10 +82187,10 @@ "currency_id": "IVIP", "history_id": 1688403103597 }, - "revision": "213b71e707e34f82be5ebab1", + "revision": "61ad056f15194d818458329a", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112000,10 +82198,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "0e6adecb347b49dc9c57b47b", + "revision": "e03f3e950ba04b2e87d9d586", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112011,24 +82209,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "costs": [] }, - "revision": "3293b6f975554c63822a31db", + "revision": "7568fda929154a27a77cadf8", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112043,27 +82229,18 @@ "total_amount": 8000000, "history_id": 1688735047266, "id": 1688735047266, - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-07-07T13:04:07.266Z", + "date_last_updated": "2023-07-07T13:04:07.266Z", + "date_of_expiration": "2023-07-07T13:04:07.266Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "ec366650f7b943e5832d798e", + "revision": "3f925a7ca6704c118d86ca97", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112071,10 +82248,10 @@ "content": { "type": "STRING", "value": "Saque de 8.000.000,00 IVIP para a carteira 0x3e35E81481645fafD6C410b1833719A8E633ae35", - "revision": "deac97d8f0b14d558678b97b", + "revision": "2fe7e75a36e0433790f944ec", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112082,24 +82259,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "costs": [] }, - "revision": "d936a052a7014565bd25f37f", + "revision": "d2792227aca842c7a1c06bcb", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112114,27 +82279,18 @@ "total_amount": 11000000, "history_id": 1689292258052, "id": 1689292258052, - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-07-13T23:50:58.052Z", + "date_last_updated": "2023-07-13T23:50:58.052Z", + "date_of_expiration": "2023-07-13T23:50:58.052Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "9ce8a5c5db584f65badbf088", + "revision": "faee4de5340245ef8ad54fd6", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112142,10 +82298,10 @@ "content": { "type": "STRING", "value": "Saque de 11.000.000,00 IVIP para a carteira 0x3e35E81481645fafD6C410b1833719A8E633ae35", - "revision": "ec3f2d0fe9554b7bacbd4a06", + "revision": "04d7fd2ad7004e8ba7a40d9f", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112163,24 +82319,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "costs": [] }, - "revision": "ba0f7f77e4214b1882332571", + "revision": "5b27c2777b3b46f8890a3e73", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112195,18 +82339,9 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1691081627683, - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-08-03T16:53:47.683Z", + "date_last_updated": "2023-08-03T16:53:47.683Z", + "date_of_expiration": "2023-08-03T16:53:47.683Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -112215,10 +82350,10 @@ "history_id": 1691081627683, "wasDebited": true }, - "revision": "b9af3624b12444d5b82bb35d", + "revision": "410967e0a53544e8927c44d0", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112226,10 +82361,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "c21cf0fca0c5402f9f317ea1", + "revision": "59f04da11b4d498088002150", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112245,24 +82380,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "costs": [] }, - "revision": "aa43fdbcfb234ff68333ec29", + "revision": "de7f3be4aa0e49dba072ed97", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112270,10 +82393,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1691082859805", - "revision": "a1605fe8c3ff4a54a445fbe7", + "revision": "671f8a1e38a248bd81e80228", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112288,18 +82411,9 @@ "total_amount": 8000000, "id": 1691082859805, "history_id": 1691082859805, - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-08-03T17:14:19.805Z", + "date_last_updated": "2023-08-03T17:14:19.805Z", + "date_of_expiration": "2023-09-03T17:14:19.804Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -112307,10 +82421,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "216f4870c6ff4020a1559d18", + "revision": "c7258a65bb594fef88f184bd", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112318,10 +82432,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "2672ef0f788d429d8b155bd9", + "revision": "644be2a910844c10b5fbc75f", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112330,24 +82444,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-07T22:34:09.576Z", - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + ".val": "2023-09-07T22:34:09.576Z" }, - "revision": "c6a9f0b07311490382399d52", + "revision": "f864b5bf12a04b5389e7853f", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112363,24 +82465,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "costs": [] }, - "revision": "d1859f8c4c7f4e37bc34e694", + "revision": "de9f539fa28c41bcb782d428", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112388,10 +82478,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1691534049577", - "revision": "999c83f3ae5446b796bc9b74", + "revision": "ba5af2f3638c497faa75c60f", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112406,14 +82496,8 @@ "total_amount": 360, "id": 1691534049577, "history_id": 1691534049577, - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-08-08T22:34:09.577Z", + "date_last_updated": "2023-08-08T23:21:48.177Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -112423,16 +82507,12 @@ "date_approved": "2023-08-08T23:21:48.177Z", "money_release_date": "2023-08-08T23:21:48.177Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "wasDebited": true }, - "revision": "c45d27d2944f4663a21bb4a0", + "revision": "2de12f80affa45408adaf9cc", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112440,10 +82520,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 360,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "8bc4853004d442758920da65", + "revision": "5f9a060725c34653b5dc2949", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112459,24 +82539,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "costs": [] }, - "revision": "0a5939e5f09a4c098c292752", + "revision": "596be338b91448feaeb6e136", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112484,10 +82552,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1693761380582", - "revision": "0ff00c9d4a4645efbbf5207e", + "revision": "c5832f8544fe4984bfecf22a", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112502,18 +82570,9 @@ "total_amount": 8160000, "id": "1693761380582", "history_id": "1693761380582", - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-09-03T17:16:20.582Z", + "date_last_updated": "2023-09-03T17:16:20.582Z", + "date_of_expiration": "2023-09-03T17:16:20.582Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -112521,10 +82580,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "4a1e9bce75e6426eb276b432", + "revision": "4ddb5789c7654181a5b4f1e9", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112532,10 +82591,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "0bc8738794f847118813882b", + "revision": "f59da14fa90f44dfb175ac5d", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112551,24 +82610,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "costs": [] }, - "revision": "ce8768b33c694a86981489b5", + "revision": "a73b81f8290447879dbe73ab", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112576,10 +82623,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1693780032051", - "revision": "d914b65f9cf04aa9974a81c4", + "revision": "262314a5e86345c9bc048c9b", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112594,18 +82641,9 @@ "total_amount": 8000000, "id": "1693780032051", "history_id": "1693780032051", - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-09-03T22:27:12.051Z", + "date_last_updated": "2023-09-03T22:27:12.051Z", + "date_of_expiration": "2023-10-03T22:27:12.050Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -112613,10 +82651,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "6a6450e8c73b4f6c85df375a", + "revision": "97373e81045e4e058abbd07a", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112624,10 +82662,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "15ec1846839f4ec6bfacd01c", + "revision": "f0c391fa7cf944bdbefe1e61", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112636,24 +82674,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-21T18:47:30.195Z", - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + ".val": "2023-10-21T18:47:30.195Z" }, - "revision": "95807638e2f84e3c84c5ec45", + "revision": "8d5f66506737474782e78a0c", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112669,24 +82695,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "costs": [] }, - "revision": "aec142ae513d44e0bea3be3b", + "revision": "8704a3b700dc4faa8a8fcf6e", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112694,10 +82708,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695322050196", - "revision": "bd210031cffc44f69214bc69", + "revision": "7f463737a71948c8beb3f139", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112712,14 +82726,8 @@ "total_amount": 720, "id": "1695322050196", "history_id": "1695322050196", - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-09-21T18:47:30.196Z", + "date_last_updated": "2023-09-22T18:08:25.258Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -112729,16 +82737,12 @@ "date_approved": "2023-09-22T18:08:25.258Z", "money_release_date": "2023-09-22T18:08:25.258Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "wasDebited": true }, - "revision": "87721dc600484d89985d970f", + "revision": "43399503916f4c969c9dc1f3", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112746,10 +82750,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 720,00 BRL para a carteira iVip 1257.9763.0999.3744-60", - "revision": "6b38193c7a9a4c96a902779a", + "revision": "12df3a2b17e241bb82585f18", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112767,24 +82771,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 4, - "installments_payable": 6, - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "installments_payable": 6 }, - "revision": "fc725c5cb6a64a26b0165105", + "revision": "5b2e0a602c214ac7a9fbc4db", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112792,10 +82784,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451385", - "revision": "f3fc923641b04f45bd91d1a9", + "revision": "10c35066ce374d1a9d67088a", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112810,18 +82802,9 @@ "total_amount": 360, "id": "1695423451385", "history_id": "1695423451385", - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-09-22T22:57:31.385Z", + "date_last_updated": "2023-09-22T22:57:31.385Z", + "date_of_expiration": "2023-09-22T22:57:31.385Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -112829,10 +82812,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "224811a43c0345aa810732de", + "revision": "694059ac60e646bf8352f1f7", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112840,10 +82823,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "e2f5ba9ac96448eeb5026c42", + "revision": "6c0fa57c2ff442cb9b964d0b", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112861,24 +82844,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 5, - "installments_payable": 5, - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "installments_payable": 5 }, - "revision": "2f8a8056b82740d0bf140386", + "revision": "6a02faac05744d77bf73e490", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112886,10 +82857,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451505", - "revision": "39ccb43eb29742868b10bccc", + "revision": "f5047a6077a941c9b12f66e3", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112904,18 +82875,9 @@ "total_amount": 360, "id": "1695423451505", "history_id": "1695423451505", - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-09-22T22:57:31.505Z", + "date_last_updated": "2023-09-22T22:57:31.505Z", + "date_of_expiration": "2023-09-22T22:57:31.505Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -112923,10 +82885,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "798126926be24089ba7cf7ea", + "revision": "44bda5ee854145cb925378ff", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112934,10 +82896,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 5 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "9d4f38a704fd4ad284c3d8d3", + "revision": "8cd8eba348af4b03a9c1a60b", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112955,24 +82917,12 @@ "financial_institution": "ivipcoin", "costs": [], "installment_paid": 6, - "installments_payable": 4, - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "installments_payable": 4 }, - "revision": "e39d737526ff4d5a907f807d", + "revision": "1a15df00baf14206a0fcafa3", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -112980,10 +82930,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451671", - "revision": "db25c802dc774ebab64f446b", + "revision": "9e6f14fe54e44dbca712e4bf", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -112998,18 +82948,9 @@ "total_amount": 360, "id": "1695423451671", "history_id": "1695423451671", - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-09-22T22:57:31.671Z", + "date_last_updated": "2023-09-22T22:57:31.671Z", + "date_of_expiration": "2023-09-22T22:57:31.671Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -113017,10 +82958,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "b337827b1f65455c8e28e503", + "revision": "1c15c8d7a75945c8b3532572", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113028,10 +82969,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 6 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "6fbfaa722468428d970e3267", + "revision": "d98be5fc9d994da4b718e595", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509600, + "modified": 1701463509600 } }, { @@ -113047,24 +82988,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "costs": [] }, - "revision": "ba3e39c6239b42fdbb87740c", + "revision": "05e7848870914db89abf7c50", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113072,10 +83001,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380984974", - "revision": "50c28122616a4d13b41d279e", + "revision": "1bc242ecf3594b3d822f8dec", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113091,18 +83020,9 @@ "total_amount": 8160000, "id": "1696380984974", "history_id": "1696380984974", - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-10-04T00:56:24.974Z", + "date_last_updated": "2023-10-04T00:56:24.974Z", + "date_of_expiration": "2023-10-04T00:56:24.974Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -113110,10 +83030,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "61bebbdcdfa746b18178d6c6", + "revision": "f343e30b0ad94249875c40b5", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113121,10 +83041,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "08b9f32e076d4c85a0f7cf96", + "revision": "45d206196fa94569a9cc8aac", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113140,24 +83060,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "costs": [] }, - "revision": "16067bb8953243578b4a51b6", + "revision": "f26d7ee8fcf94892bdcd2915", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113165,10 +83073,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380984991", - "revision": "95cb666d10ad42e6a4b6fa25", + "revision": "e7e399942e9e46c8950438f4", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113184,18 +83092,9 @@ "total_amount": 8160000, "id": "1696380984991", "history_id": "1696380984991", - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-10-04T00:56:24.991Z", + "date_last_updated": "2023-10-04T00:56:24.991Z", + "date_of_expiration": "2023-10-04T00:56:24.991Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -113203,10 +83102,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "755190a0a65b45878aa4f4a9", + "revision": "b78383ce79824f5c96daaadd", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113214,10 +83113,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "62ec55f4a2794dd996dd826a", + "revision": "d569182ab20442a7b965108e", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113233,24 +83132,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "costs": [] }, - "revision": "bd956dc30ed040a6b6b57fa8", + "revision": "26a2959f2b1b44d0acb9ba0f", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113258,10 +83145,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380985024", - "revision": "cc51378dcd8640e282a8415b", + "revision": "74fed235ce8748d789071c0b", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113277,18 +83164,9 @@ "total_amount": 8160000, "id": "1696380985024", "history_id": "1696380985024", - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-10-04T00:56:25.024Z", + "date_last_updated": "2023-10-04T00:56:25.024Z", + "date_of_expiration": "2023-10-04T00:56:25.024Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -113296,10 +83174,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "59c05495af1f41f791bf6ee6", + "revision": "d76f93fc7efb4812ae600fd0", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113307,10 +83185,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "49d11de4ed86460e99ed8070", + "revision": "c00124ee023f4573bf60dc21", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113326,24 +83204,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "costs": [] }, - "revision": "38c31ba883ba4708a8bdada3", + "revision": "362a09b3dfa04717ad6a9d63", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113351,10 +83217,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380985244", - "revision": "395b4dcb68fb4faa8581a939", + "revision": "558328f9ba4f45768e16654a", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113370,18 +83236,9 @@ "total_amount": 8160000, "id": "1696380985244", "history_id": "1696380985244", - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-10-04T00:56:25.244Z", + "date_last_updated": "2023-10-04T00:56:25.244Z", + "date_of_expiration": "2023-10-04T00:56:25.244Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -113389,10 +83246,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "290acd984cab4e649aaa2687", + "revision": "53c4782681a34635810967b4", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113400,10 +83257,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "8ab31bdc70a9456296e7c6c8", + "revision": "71bb92377fc44ad2a01ded9c", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113419,24 +83276,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - } + "costs": [] }, - "revision": "92857bf74a3b4da8963d88c0", + "revision": "cc5b8cc16cfb47328d987e21", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113444,10 +83289,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384232144", - "revision": "079d21481c68476eb38ad05f", + "revision": "e465526809644d219d207fea", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113463,18 +83308,9 @@ "total_amount": 8160000, "id": "1696384232144", "history_id": "1696384232144", - "date_created": { - "type": 6, - "value": 1701459383540 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383540 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383540 - }, + "date_created": "2023-10-04T01:50:32.144Z", + "date_last_updated": "2023-10-04T01:50:32.144Z", + "date_of_expiration": "2023-10-04T01:50:32.144Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -113482,10 +83318,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "f40665cf3cf44246ba4691d1", + "revision": "fe84b08b432f4e81bb86ae75", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113493,10 +83329,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "2c3fb822f31c4b46979de33a", + "revision": "89b288e304984c108dc40f6b", "revision_nr": 1, - "created": 1701459383540, - "modified": 1701459383540 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113512,24 +83348,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "costs": [] }, - "revision": "1f41c337f55f40ceb31d00a2", + "revision": "88f8da8030b0433e9f419d11", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113537,10 +83361,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384243583", - "revision": "367a2b9b326f40c0b68bd2ad", + "revision": "9d8b957462814b1b8cbab23f", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113556,18 +83380,9 @@ "total_amount": 8160000, "id": "1696384243583", "history_id": "1696384243583", - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-10-04T01:50:43.583Z", + "date_last_updated": "2023-10-04T01:50:43.583Z", + "date_of_expiration": "2023-10-04T01:50:43.583Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -113575,10 +83390,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "a43287c1540b40d68028ea48", + "revision": "8486bf4c6ce4496d842f26fa", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113586,10 +83401,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "65e36a50f0ae450dbd6a61a3", + "revision": "9535053a30204463a68f3953", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113605,24 +83420,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "costs": [] }, - "revision": "af5d4c6523ba4e7580f0f6d2", + "revision": "fb72c67d0bc64ac4a7eed298", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113630,10 +83433,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384243588", - "revision": "695976fabb394c49b132b628", + "revision": "ca9c70e97d1e4e4f91dc6513", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113649,18 +83452,9 @@ "total_amount": 8160000, "id": "1696384243588", "history_id": "1696384243588", - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-10-04T01:50:43.588Z", + "date_last_updated": "2023-10-04T01:50:43.588Z", + "date_of_expiration": "2023-10-04T01:50:43.588Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -113668,10 +83462,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "276bc5d2e9534fcc96f73de2", + "revision": "bc46cf1830274bf89b6aedd4", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113679,10 +83473,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "4909c8b2b8fd4e898e598f75", + "revision": "d23b439375b64d41bac63b9c", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113698,24 +83492,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "costs": [] }, - "revision": "6b4ba8ae4dd8462e8bf18965", + "revision": "f99dfd7892bb48cd932db3df", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113723,10 +83505,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696406601868", - "revision": "5719c42ae0b3485a9c130e87", + "revision": "6abda445353a4989a0b84510", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113742,18 +83524,9 @@ "total_amount": 8000000, "id": "1696406601868", "history_id": "1696406601868", - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-10-04T08:03:21.868Z", + "date_last_updated": "2023-10-04T08:03:21.868Z", + "date_of_expiration": "2023-11-04T08:03:21.847Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -113761,10 +83534,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "dbde6c5eb5bb42a0b535683e", + "revision": "fd2f5d77d6f1476cb1902d55", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113772,10 +83545,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "e4c3ddd99700440d987bc292", + "revision": "2a60d4aaeedb49b49dc5f24d", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113783,10 +83556,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2f6d08c78187480897bebc3e", + "revision": "3c86e479a669479c96f4d0a5", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113796,24 +83569,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "amount": 600 }, - "revision": "a0fd77aecf254125bd4c4acd", + "revision": "b7fbd75913234ed892ae793f", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113827,26 +83588,15 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-03-19T21:50:02.609Z", "history_id": 1679262602609, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "status": "paid" }, - "revision": "3050078e4e564e61879b1c82", + "revision": "2250fe0e85694a6db8da677b", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113854,10 +83604,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "de916a861e4e4e5c911fd4a4", + "revision": "6c208d2cab9a40dfa5d21122", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113865,10 +83615,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "af384d3d02ee4a7ea2eb6c2e", + "revision": "a07b274c752d4f6b84e4e877", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113876,10 +83626,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2e222bfe532744d3b5b73ab2", + "revision": "1b3a9a79d60d45be967d07e0", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113889,24 +83639,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "amount": 600 }, - "revision": "c4e91aa7405a4ba995287b29", + "revision": "9bdbcf85918a46569b9f8ba8", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113920,26 +83658,15 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-03-19T21:50:02.609Z", "history_id": 1679262602609, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "status": "paid" }, - "revision": "bd51992d087b46638c6f82e0", + "revision": "0377f8bb9c5742da94337101", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113947,10 +83674,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "0f6e9bc3814f409fb81ee2f5", + "revision": "0e4104006f484bb9acc96159", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113958,10 +83685,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "462a21438a9e4413b9cf633b", + "revision": "70b20d1d1fa34b28878c7813", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113969,10 +83696,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9d0e80ea29504daea71367bb", + "revision": "8f07b9bd28ae4addabf3dab5", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -113982,24 +83709,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "amount": 600 }, - "revision": "be629b0e0b4d4e2298d3790d", + "revision": "65bd287ba5974e6aa73050ae", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114013,26 +83728,15 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-03-19T21:50:02.609Z", "history_id": 1679262602609, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "status": "paid" }, - "revision": "6470cb3991684b2092c2e438", + "revision": "3f7e12b021eb41e49b487d0a", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114040,10 +83744,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "e50a3215e56d4ca8bfb080f9", + "revision": "403f631fff0244fbb2595dcb", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114051,10 +83755,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "86da90e5c58043928f9cc0da", + "revision": "1d1b242cc5c340f88b22633d", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114062,10 +83766,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b63b96174a2640768fb8fa33", + "revision": "5fa52dd23a7340248940b50e", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114075,24 +83779,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "amount": 600 }, - "revision": "1592c976cdc649bc893190f5", + "revision": "9de5fdb5ac2147a79bed3533", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114106,26 +83798,16 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-03-19T21:50:02.609Z", "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "date_last_updated": "2023-09-22T22:57:31.406Z" }, - "revision": "43654693ed5b484dab72c8c0", + "revision": "ff2d2b7f692a441185188586", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114133,10 +83815,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "ee58252abce64722b2f7affd", + "revision": "d6b4e68946fe4ae48f7c6098", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114144,10 +83826,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "aafdb41413284fd896d5c7cf", + "revision": "febd9b9e07ec451b8cd26182", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114155,10 +83837,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "268803dbf7374c018b522a72", + "revision": "e76d92309010469a807d8e58", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114168,24 +83850,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "amount": 600 }, - "revision": "50906b16bc274dbc9aaa19f4", + "revision": "490098bffb9445aca789b8c2", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114199,26 +83869,16 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-03-19T21:50:02.609Z", "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "date_last_updated": "2023-09-22T22:57:31.526Z" }, - "revision": "e738763055264fe9822008e9", + "revision": "0391cb42b8c74556be6d56ff", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114226,10 +83886,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "eb827652015b4ccea560d464", + "revision": "891b55832aae40e39326ee21", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114237,10 +83897,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "89bf0082b70c4bd7a5b2a0e7", + "revision": "71e46835dee44beb8652ae59", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114248,10 +83908,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e689394161164515b395de73", + "revision": "c19594c9c15f42b3bd7da592", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114261,24 +83921,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "amount": 600 }, - "revision": "88b47bdf0f994ac79f42cc17", + "revision": "7d38ab3d07f14a0190139005", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114292,26 +83940,16 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-03-19T21:50:02.609Z", "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "date_last_updated": "2023-09-22T22:57:31.684Z" }, - "revision": "a3183c6432614d31a285237c", + "revision": "e25310694129485ea081eeb3", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114319,10 +83957,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "3b75241af9ad458195baa22a", + "revision": "05735b2d5bb444ad9cc4157a", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114330,10 +83968,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "05450301f1554179b4b9615f", + "revision": "74fc6eede4554fa6abed262d", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114341,10 +83979,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0d8e17ceb7124e2ea20b7711", + "revision": "5e08e7ef0f2946388af98dc6", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114354,24 +83992,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "amount": 600 }, - "revision": "9986f066798b47d58af17919", + "revision": "d0591a246ed64a8b810b8792", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114385,25 +84011,14 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-03-19T21:50:02.609Z", "history_id": 1679262602609, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "currency_id": "BRL" }, - "revision": "641a53db2bba41638212def2", + "revision": "7e6819508cff4e79a7d2abed", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114411,10 +84026,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "03d0eda856b34689ab7c7806", + "revision": "166bc566178749d28931cd7c", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114422,10 +84037,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "60a133af130444628a36926c", + "revision": "a43aa13a0e064194b244b777", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114433,10 +84048,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "59d384d3939b4a53888614e4", + "revision": "94c513f2f73e429088ce0fd5", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114446,24 +84061,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "amount": 600 }, - "revision": "5277a1dbdb0c4719af5bed0b", + "revision": "a50b76a29dfa4df78e776850", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114477,25 +84080,14 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-03-19T21:50:02.609Z", "history_id": 1679262602609, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "currency_id": "BRL" }, - "revision": "2bb902cd73bc4c5d89393af9", + "revision": "34158f3af7284b2384aee9ee", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114503,10 +84095,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "ba66fee8f5a14ab885884ee6", + "revision": "2d80bc33c738410998b3c442", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114514,10 +84106,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "01f839f235d445c1859485f3", + "revision": "c869473241564900a49523fb", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114525,10 +84117,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "da0c576c392b4529968b288c", + "revision": "14715ed2d6234af3afea5d83", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114538,24 +84130,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "amount": 600 }, - "revision": "f1de2dc4458f4bac900cba31", + "revision": "03fa1c82b6a740aaba885651", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114569,25 +84149,14 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-03-19T21:50:02.609Z", "history_id": 1679262602609, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "currency_id": "BRL" }, - "revision": "c36d5b281df04bda87e79d75", + "revision": "06ab867748ce451bb035fd43", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114595,10 +84164,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "3e17bfbbe9634db7940ee78e", + "revision": "2cd17af2417947dc960f6b2a", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114606,10 +84175,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "fe22ac7fb5ed4d388fe05db9", + "revision": "e177c6345b484129a320719d", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114617,10 +84186,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "666b7eba581f4be1a2f164fc", + "revision": "5f223feaaf664fbdb2e5227c", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114630,24 +84199,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", - "amount": 600, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "amount": 600 }, - "revision": "df55a08a7be244fda4a5a679", + "revision": "f3d25a5dead0477d9ab01042", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114661,25 +84218,14 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-03-19T21:50:02.609Z", "history_id": 1679262602609, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "currency_id": "BRL" }, - "revision": "b894057fac684301840d4f38", + "revision": "75b2f67c941940ffb8051316", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114687,10 +84233,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "f9fba92a089547e5837523ac", + "revision": "ce43520ac629401586fa6ac8", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114698,10 +84244,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "5da46d4dd11348c0bdc90367", + "revision": "3d5e6e74b6d947f398005a45", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114709,10 +84255,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "278eeb8045034a4a9ccb7d98", + "revision": "fef6b7975e1141ac87d35c77", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114720,10 +84266,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9567981bf96849a5aa80f2ad", + "revision": "e11e483319114bf4b399b7b0", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114734,24 +84280,12 @@ "approvedLimit": 3000, "limitUsed": 2100, "analysisRequested": "2023-03-19T00:10:39.579Z", - "lastReview": "2023-03-19T21:22:36.380Z", - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "lastReview": "2023-03-19T21:22:36.380Z" }, - "revision": "80ef58f7ef664426b2a4be77", + "revision": "eb2e10d6fce447c2adf7fdf5", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114761,24 +84295,12 @@ "value": { "available": "9285619.00000000", "symbol": "IVIP", - "value": 990, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "value": 990 }, - "revision": "ee6d11165b2c4eb1b3e7725a", + "revision": "f4f6a1ccd2804628b0198710", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114786,10 +84308,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "330385536f594283aa35b39d", + "revision": "d7b84ee8d30e4574becd3d54", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114801,24 +84323,12 @@ "dateValidity": 1679033074324, "totalValue": 3498.3833869132864, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "balancesModificacao": "2023-10-16T03:00:00.000Z" }, - "revision": "c2aec2f740a7464e88d5bb28", + "revision": "3615677c357d436797cc05f4", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114828,24 +84338,12 @@ "value": { "symbol": "BRL", "available": "454.90000000", - "value": 90.844, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "value": 90.844 }, - "revision": "c9d6d31f7dbf404e8ce867ad", + "revision": "238a064bd5884148a2759c03", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114853,10 +84351,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "aefe4bb67336465eba2588ee", + "revision": "619ddf09d07e4356b832c81e", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114874,24 +84372,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "costs": [] }, - "revision": "bf0fac6bc6ee48de91057b60", + "revision": "b1c5b6c1904b4c618d56835b", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114907,18 +84393,9 @@ "original_amount": 7, "total_amount": 7, "id": 1679266939492, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-03-19T23:02:19.492Z", + "date_last_updated": "2023-03-19T23:02:19.492Z", + "date_of_expiration": "2023-03-19T23:02:19.492Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -114926,10 +84403,10 @@ "currency_id": "BRL", "history_id": 1679266939492 }, - "revision": "28c5fc57875647de96fef0f3", + "revision": "560f4a0eef114a5687375bc5", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114937,10 +84414,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "c5ed66a88d064f3885697792", + "revision": "18308f10ab444e08ae7f4371", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114958,24 +84435,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "costs": [] }, - "revision": "4215f3df996248ef84ce8b4f", + "revision": "40ec7372fa83483383b612a6", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -114991,18 +84456,9 @@ "original_amount": 50, "total_amount": 50, "id": 1679266973884, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-03-19T23:02:53.884Z", + "date_last_updated": "2023-03-19T23:02:53.884Z", + "date_of_expiration": "2023-03-19T23:02:53.884Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -115010,10 +84466,10 @@ "currency_id": "BRL", "history_id": 1679266973884 }, - "revision": "d4b5a541d6b143deb6381733", + "revision": "485c2b89180c4cd185b51a42", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -115021,10 +84477,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "28db794776fd4de79bf233a4", + "revision": "86801ca4c41f4fa3b8f38dba", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -115042,24 +84498,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "costs": [] }, - "revision": "4bb1091305ae49329909bc4e", + "revision": "aae26ad293674ea19e063132", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -115075,18 +84519,9 @@ "original_amount": 100, "total_amount": 100, "id": 1679267111761, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-03-19T23:05:11.761Z", + "date_last_updated": "2023-03-19T23:05:11.761Z", + "date_of_expiration": "2023-03-19T23:05:11.761Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -115094,10 +84529,10 @@ "currency_id": "BRL", "history_id": 1679267111761 }, - "revision": "0da8525e6f7140eeac48fe56", + "revision": "3d08f0378a0347efb4eca885", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -115105,10 +84540,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "989083c101974e2682bc92fb", + "revision": "b3807776648746f8b767448d", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -115126,24 +84561,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "costs": [] }, - "revision": "fa5526ecbefc445589b2ec5f", + "revision": "460d99b1bbae431c941362c6", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -115159,18 +84582,9 @@ "original_amount": 25, "total_amount": 25, "id": 1679872001608, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-03-26T23:06:41.608Z", + "date_last_updated": "2023-03-26T23:06:41.608Z", + "date_of_expiration": "2023-03-26T23:06:41.608Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -115178,10 +84592,10 @@ "currency_id": "BRL", "history_id": 1679872001608 }, - "revision": "a463eb0c070a4ef88b9dcc8a", + "revision": "0353aa96c2dd410199adeca8", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -115189,10 +84603,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "82bcd46f3fb047259354e928", + "revision": "ec7aaf8063bc4409af24f4aa", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -115210,24 +84624,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "costs": [] }, - "revision": "5a0afaec0eec4698929d41a9", + "revision": "7f86f4634da34212934e5f3b", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -115243,18 +84645,9 @@ "original_amount": 120, "total_amount": 120, "id": 1684018958586, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-05-13T23:02:38.586Z", + "date_last_updated": "2023-05-13T23:02:38.586Z", + "date_of_expiration": "2023-05-13T23:02:38.586Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -115262,10 +84655,10 @@ "currency_id": "BRL", "history_id": 1684018958586 }, - "revision": "aa132f0587044ea593677aca", + "revision": "5d45452fcdea4c78ad13be1c", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -115273,10 +84666,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "865a00b8359546848afc0732", + "revision": "f39a7b9f80f148daadc348b3", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -115294,24 +84687,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "costs": [] }, - "revision": "2eaaec200c0448f5ae6a6920", + "revision": "958bb881452f43d79f095b8a", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -115327,18 +84708,9 @@ "original_amount": 13, "total_amount": 13, "id": 1684348450676, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-05-17T18:34:10.676Z", + "date_last_updated": "2023-05-17T18:34:10.676Z", + "date_of_expiration": "2023-05-17T18:34:10.676Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -115346,10 +84718,10 @@ "currency_id": "BRL", "history_id": 1684348450676 }, - "revision": "99c6f067f60a4d71a6af29c1", + "revision": "b7960a3ded1c41f9a4427fcc", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -115357,10 +84729,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "d79fced42d2242e1aa6df43c", + "revision": "1be1035e32e44b7f955565cc", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509601, + "modified": 1701463509601 } }, { @@ -115378,24 +84750,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - } + "costs": [] }, - "revision": "e9eab16f3fc34aeaadc47b2d", + "revision": "fbedda7d9efd4402913f801e", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115411,18 +84771,9 @@ "original_amount": 30, "total_amount": 30, "id": 1684624165029, - "date_created": { - "type": 6, - "value": 1701459383541 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383541 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383541 - }, + "date_created": "2023-05-20T23:09:25.029Z", + "date_last_updated": "2023-05-20T23:09:25.029Z", + "date_of_expiration": "2023-05-20T23:09:25.029Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -115430,10 +84781,10 @@ "currency_id": "BRL", "history_id": 1684624165029 }, - "revision": "1060ecc303c94a78a0e66a1d", + "revision": "b30fd29446e64915b5090772", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115441,10 +84792,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "bb40ec5217c94858a60d1a87", + "revision": "11688a18542d4bf6af400adb", "revision_nr": 1, - "created": 1701459383541, - "modified": 1701459383541 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115462,24 +84813,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "c3c9539a1233493b9a7d9256", + "revision": "2ecd8056e70b47cb917acfd4", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115495,18 +84834,9 @@ "original_amount": 109.9, "total_amount": 109.9, "id": 1684624981228, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-05-20T23:23:01.228Z", + "date_last_updated": "2023-05-20T23:23:01.228Z", + "date_of_expiration": "2023-05-20T23:23:01.228Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -115514,10 +84844,10 @@ "currency_id": "BRL", "history_id": 1684624981228 }, - "revision": "dd917df957a44f239eee70f5", + "revision": "ea39b849235441dd917251da", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115525,10 +84855,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "bc3c9b5de42a4bd9b953985c", + "revision": "d5dc120c6dac40dab1f4b007", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115536,10 +84866,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "85fa93c0943742f080413927", + "revision": "73fa4c8dfcaf4357aa4d7b8f", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115550,24 +84880,12 @@ "dataModificacao": 1677885325302, "dateValidity": 1677929034802, "totalValue": 89.197, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "currencyType": "USD" }, - "revision": "d64a4ab7f1274a91ad93fc39", + "revision": "78913265dbfb478ab0db2665", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115575,10 +84893,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "582ea8cb653c42a1916697a6", + "revision": "0338cd2d9d5a4c3cb65bbd20", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115586,10 +84904,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "bbb60aa0a41f44d0beb6009b", + "revision": "abb5ffd7f796440aa50f9d9e", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115597,10 +84915,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "94fde8fd0cba411780787926", + "revision": "ab6212ab7d114df0bfa784b9", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115609,24 +84927,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "limitUsed": 0 }, - "revision": "3d8768652a324781a5c8dc6c", + "revision": "c0f12f8e75b8418da322916f", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115637,24 +84943,12 @@ "dataModificacao": 1695173270592, "dateValidity": 1695173270620, "currencyType": "USD", - "balancesModificacao": "2023-09-20T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "balancesModificacao": "2023-09-20T03:00:00.000Z" }, - "revision": "a294d8e926134d8e841d59b6", + "revision": "4ed714d666964130b2d1ab6f", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115662,10 +84956,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "dbcfdddea9604ea6920f63d6", + "revision": "a3c7d55d4c2e47eebf763d56", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115673,10 +84967,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a73932070ac44558ae105925", + "revision": "13f83623dd4e437bacc20eac", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115687,24 +84981,12 @@ "dataModificacao": 1678268990831, "dateValidity": 1678279790864, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "currencyType": "USD" }, - "revision": "7d10502e5a814735a1230516", + "revision": "468ea6596daa4f03a18bc50e", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115714,24 +84996,12 @@ "value": { "available": "15415938.00000000", "symbol": "IVIP", - "value": 3434.39, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "value": 3434.39 }, - "revision": "76301de0308e4891b9670458", + "revision": "5788c857d33d49dfb5aede0c", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115739,10 +85009,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4c5c946169b9456d8e6e9c7c", + "revision": "ecb9bfea163846d9be72b3cf", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115750,24 +85020,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "68bf51563aa7461fbb5eba1d", + "revision": "de4e4b497521453bb8a02a78", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115782,18 +85040,9 @@ "total_amount": 2000, "history_id": 1677726769800, "id": 1677726769800, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-02T03:12:49.800Z", + "date_last_updated": "2023-03-02T11:00:57.517Z", + "date_of_expiration": "2023-04-01T03:12:49.800Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -115803,10 +85052,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "99bef6be62d04f00bd88c581", + "revision": "52755e64ec374286a082f2a4", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115814,10 +85063,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80", - "revision": "d38285701896478abb8f5866", + "revision": "5447374d7aef4cc5b58f4eef", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115825,24 +85074,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "1011b75078c048bdb32e0ec5", + "revision": "27c68ec2570244f8b1b0c1d3", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115857,18 +85094,9 @@ "total_amount": 3000, "history_id": 1678032850996, "id": 1678032850996, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-05T16:14:10.996Z", + "date_last_updated": "2023-03-05T18:41:48.688Z", + "date_of_expiration": "2023-04-04T16:14:10.996Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -115878,10 +85106,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "fe37b19eca044ae2a064a6b2", + "revision": "415d479d37f346feb4404906", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115889,10 +85117,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1287.0114.4173.8232-80", - "revision": "e1fedfbbf8cf4ae592edc214", + "revision": "ef3e2aa78cdb45a684d25425", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115910,24 +85138,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "b5f5e3e19e524146913f42aa", + "revision": "f2927a064402445f8edba70a", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115943,18 +85159,9 @@ "original_amount": 35378057, "total_amount": 35378057, "id": 1678076967863, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-06T04:29:27.863Z", + "date_last_updated": "2023-03-06T04:29:27.863Z", + "date_of_expiration": "2023-03-06T04:29:27.863Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -115963,10 +85170,10 @@ "history_id": 1678076967863, "description": "Compra de 35378057 IVIP por 5000 BRL" }, - "revision": "68282391c69844d9b7b7f656", + "revision": "0c6537ec418245f89824931d", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -115976,24 +85183,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 240, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "amount": 240 }, - "revision": "2db03c60aaa3453886e989ed", + "revision": "66a1ced4efb24bfca531af4f", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116001,10 +85196,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b66f8ece4f3f4e9da49b5146", + "revision": "76318debdf2a4a83b33c00a3", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116012,10 +85207,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "5705826ae6b54310811b414f", + "revision": "df6c2b58ba2f47fb84710d83", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116030,28 +85225,19 @@ "total_amount": 2240, "history_id": 1679268249425, "id": 1679268249425, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-19T23:24:09.425Z", + "date_last_updated": "2023-03-19T23:24:09.425Z", + "date_of_expiration": "2023-04-18T23:24:09.425Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "0b5ebb0f89274f0da00f0942", + "revision": "f37113a1537c47f48c69e254", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116059,10 +85245,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "93bf360201a44de19663d41b", + "revision": "5d2ce9bfbc2847ab9d3fb1f9", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116080,24 +85266,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "f055e9f58e1943cb94aee199", + "revision": "498b52fe6721413fb69d6a41", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116113,18 +85287,9 @@ "original_amount": 10651254, "total_amount": 10651254, "id": 1679871677212, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-26T23:01:17.212Z", + "date_last_updated": "2023-03-26T23:01:17.212Z", + "date_of_expiration": "2023-03-26T23:01:17.212Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -116133,10 +85298,10 @@ "history_id": 1679871677212, "description": "Compra de 10.651.254,00 IVIP por 2.000,00 BRL" }, - "revision": "05cbb65e13d3412b8b9c4ff8", + "revision": "28df884b53e3408698624880", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116146,24 +85311,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "amount": 120 }, - "revision": "2ccfe44449d243929fa86859", + "revision": "30f5c149af954ccd94f505e6", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116171,10 +85324,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "65276a1b5a2e4f3d9099bb5a", + "revision": "d41c62588c1043e099ffd78d", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116182,10 +85335,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "02072f3faa8342a29e072509", + "revision": "56200ddbe3cc457d9fa41a26", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116200,28 +85353,19 @@ "total_amount": 1120, "history_id": 1679872304314, "id": 1679872304314, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-26T23:11:44.314Z", + "date_last_updated": "2023-03-26T23:11:44.314Z", + "date_of_expiration": "2023-04-25T23:11:44.314Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "11f863566cf1493880a4a6e8", + "revision": "978d6473c25b4d968db659c9", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116229,10 +85373,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "d3ef6a701e76426ba7c7a89b", + "revision": "068743ba3d6d4f7094a488fb", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116250,24 +85394,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "fdc9a38b5d404e7bb57c22f0", + "revision": "88480fcb0a264bfd8e08df87", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116283,18 +85415,9 @@ "original_amount": 5325627, "total_amount": 5325627, "id": 1679872334513, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-26T23:12:14.513Z", + "date_last_updated": "2023-03-26T23:12:14.513Z", + "date_of_expiration": "2023-03-26T23:12:14.513Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -116303,10 +85426,10 @@ "history_id": 1679872334513, "description": "Compra de 5.325.627,00 IVIP por 1.000,00 BRL" }, - "revision": "cefeec51c66b493c98be62ab", + "revision": "714a1f7e27c748dfa7d4f0df", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116314,24 +85437,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "a7b8616a4bf44d398464d311", + "revision": "a8d4b2bd9b114f77af11073e", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116346,18 +85457,9 @@ "total_amount": 840, "history_id": 1682619398300, "id": 1682619398300, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-04-27T18:16:38.300Z", + "date_last_updated": "2023-04-27T18:22:41.924Z", + "date_of_expiration": "2023-05-27T18:16:38.300Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -116367,10 +85469,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3718b99c4fe0439cbead7926", + "revision": "40397ba3d9f74bdd9ec4ce44", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116378,10 +85480,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 840,00 para a carteira iVip 1287.0114.4173.8232-80", - "revision": "5335b90db38541429f8b3b26", + "revision": "4e0567775f404fb69d228116", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116401,24 +85503,12 @@ "installment_amount": 560, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "32bd9bfd20714a5dbee0589a", + "revision": "dcc0572d169f498ab109b8c2", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116435,18 +85525,9 @@ "total_amount": 560, "id": 1682619932343, "contract_id": "1679268249425", - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-04-27T18:25:32.343Z", + "date_last_updated": "2023-04-27T18:25:32.343Z", + "date_of_expiration": "2023-04-27T18:25:32.343Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -116454,10 +85535,10 @@ "currency_id": "BRL", "history_id": 1682619932343 }, - "revision": "b07f1ff92b3a44988e6b5ab4", + "revision": "ee4e13c33bf74a189a2aa08d", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116465,10 +85546,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 4 no valor de 560,00 BRL referente ao contrato 1679268249425", - "revision": "153592c48b48458590c83599", + "revision": "c664dad40b4a476ea8be24fa", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116488,24 +85569,12 @@ "installment_amount": 280, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "2f528baf189347d3afa4c5c4", + "revision": "78dcf520854249bda42f791c", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116522,18 +85591,9 @@ "total_amount": 280, "id": 1682619932484, "contract_id": "1679872304314", - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-04-27T18:25:32.484Z", + "date_last_updated": "2023-04-27T18:25:32.484Z", + "date_of_expiration": "2023-04-27T18:25:32.484Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -116541,10 +85601,10 @@ "currency_id": "BRL", "history_id": 1682619932484 }, - "revision": "1a31a7d3987a441c95c0f387", + "revision": "f559dcd41a134fe294d7a9f5", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116552,10 +85612,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 4 no valor de 280,00 BRL referente ao contrato 1679872304314", - "revision": "70db7eece0744d1aa9c22212", + "revision": "542a339b92c442dfa95df9c2", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116573,24 +85633,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "28d637104f5e4f2f8e0d9f71", + "revision": "79902eccd7f54a58a8ea2fc8", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116605,18 +85653,9 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667547180, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-06-02T00:59:07.180Z", + "date_last_updated": "2023-06-02T00:59:07.180Z", + "date_of_expiration": "2025-06-02T00:59:07.180Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -116625,10 +85664,10 @@ "history_id": 1685667547180, "wasDebited": true }, - "revision": "91d73cc24c0f469cabb16ffa", + "revision": "7e301ce822b94deaa39ce34a", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116636,10 +85675,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "265ae33af90d4c398a64328e", + "revision": "f655509910e54e1f9fe777a2", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116647,24 +85686,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "a976e0320f9d492a8de9a6d5", + "revision": "8fbe8f02a5524af580c77311", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116679,18 +85706,9 @@ "total_amount": 3000000, "history_id": 1688772261924, "id": 1688772261924, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-07-07T23:24:21.924Z", + "date_last_updated": "2023-07-10T17:24:09.267Z", + "date_of_expiration": "2023-07-07T23:24:21.924Z", "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", @@ -116700,10 +85718,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "b137546a0aea4e288dc25b7c", + "revision": "ba95c8acdb0940c49662e8b1", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116711,10 +85729,10 @@ "content": { "type": "STRING", "value": "Saque de 3.000.000,00 IVIP para a carteira 0xDB45185C1086eFFBAA2d0b64862c83Bd9D29DE62", - "revision": "4972e33520d84b288a436323", + "revision": "1ded726d9de443a197f732c3", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116724,24 +85742,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 748170, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "amount": 748170 }, - "revision": "614a5ca0777e41fb8e964660", + "revision": "a0084932cbc44a8ea6a17502", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116756,24 +85762,12 @@ "installment_amount": 24939000, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "financial_institution": "ivipcoin" }, - "revision": "dcf03ab3dfd44ada82b8461a", + "revision": "5baee843e65549a98bc64c68", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116781,10 +85775,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/128701144173823280/history/1692276235458", - "revision": "40518159a8ca4659b4d46051", + "revision": "7ebe19100d6b411d98cdef86", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116792,10 +85786,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "2e08a2482c084d0e97a848b2", + "revision": "082ddc29af7e4073b9684736", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116810,18 +85804,9 @@ "total_amount": 24190830, "id": 1692276235458, "history_id": 1692276235458, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-08-17T12:43:55.458Z", + "date_last_updated": "2023-08-18T13:47:15.287Z", + "date_of_expiration": "2023-08-17T12:43:55.458Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -116833,10 +85818,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "17ee4bc971a147a1843c3b37", + "revision": "bc356211436b4843919a3487", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116844,10 +85829,10 @@ "content": { "type": "STRING", "value": "Saque de 24.190.830,00 IVIP para a carteira 0xDB45185C1086eFFBAA2d0b64862c83Bd9D29DE62", - "revision": "301203b043e34451a0a812eb", + "revision": "0bc33d018bfc4bb486e408b2", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116855,10 +85840,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9254f703542a463191ba4ca6", + "revision": "9aef850184c74b45bbb7e6ae", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116868,24 +85853,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 240, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "amount": 240 }, - "revision": "916bf181c8184dfca634534d", + "revision": "6ae2f2dd97c64f269e4aebb6", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116899,26 +85872,15 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-19T23:24:09.425Z", "history_id": 1679268249425, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "status": "paid" }, - "revision": "87329205794845ac8cd7d3bc", + "revision": "dce520d5fb6942f7a6095a3b", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116926,10 +85888,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "bf6b29450b324448b53a8aba", + "revision": "5cf1c47455f249a7a8bb90a1", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116937,10 +85899,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "0e12e6a5383045b3bb32cfff", + "revision": "4dc4363654dc403fa99ace9d", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116950,24 +85912,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "amount": 120 }, - "revision": "ce2a19294e6d4fc5b6c03913", + "revision": "dca65c2a39714563b9a5cd71", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -116981,26 +85931,15 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-26T23:11:44.314Z", "history_id": 1679872304314, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "status": "paid" }, - "revision": "03088513dbe44cc6bc11a12b", + "revision": "f7dac66b2a9441b6925678db", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117008,10 +85947,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "871327a7bedb4b4cbe292472", + "revision": "fcace0aa258944938e8fab3b", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117019,10 +85958,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "ae64cdd38bde4d2fa561dde4", + "revision": "3d6dc6f816434d0f89cc60c4", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117030,10 +85969,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4a862e6a7dd444588719d14b", + "revision": "7925576826444df09b2e25bb", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117043,24 +85982,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 240, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "amount": 240 }, - "revision": "509c92e8ceae4b07bfbf20f8", + "revision": "a854cfa0c8194454aefd5f72", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117074,25 +86001,14 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-19T23:24:09.425Z", "history_id": 1679268249425, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "currency_id": "BRL" }, - "revision": "5050bc318981427fbbdc45ff", + "revision": "87f6567d8d9a4803bba24f17", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117100,10 +86016,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "9fe3581f6f5b4df483b8ec1f", + "revision": "ac30bc7c512d488eaf8c6c12", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117111,10 +86027,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "26f9460723c14a57a5d83241", + "revision": "9b75e5c9891e4aa18c74f059", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117124,24 +86040,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "amount": 120 }, - "revision": "bf3ebaf5f7d1476db110585f", + "revision": "34463a2572b3488caf64421a", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117155,25 +86059,14 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-26T23:11:44.314Z", "history_id": 1679872304314, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "currency_id": "BRL" }, - "revision": "fea97b635b3e493293af1149", + "revision": "33e7cc3eb2c84870ae1b3347", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117181,10 +86074,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "bba9057e2a9f4199b4aa06ff", + "revision": "e4f144906f0544ca8a2d6661", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117192,10 +86085,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "9d28b58bd0234a6aaff85869", + "revision": "8e1c1521ed65404c80c8553b", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117203,10 +86096,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "07ec72b779c945f78ac6097b", + "revision": "fb85a3f692e44428b8345031", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117216,24 +86109,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 240, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "amount": 240 }, - "revision": "2fe1675716c947138a246d0d", + "revision": "6e75eae6ca1d4181a1c9e6d3", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117247,25 +86128,14 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-19T23:24:09.425Z", "history_id": 1679268249425, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "currency_id": "BRL" }, - "revision": "4303437ba9de4b9a82a1e2bf", + "revision": "6aa0e96a19114007a3b2e58a", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117273,10 +86143,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "8dcd0423120448c6917338b8", + "revision": "4237b39203854e2ea4931e3b", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117284,10 +86154,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "403d5cc12e844b04ba32c924", + "revision": "395d8b1213444620ad323a13", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117297,24 +86167,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "amount": 120 }, - "revision": "b7cef5ea7bab429680e1b119", + "revision": "33d33541f00e4d96ad3d7d4e", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117328,25 +86186,14 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-26T23:11:44.314Z", "history_id": 1679872304314, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "currency_id": "BRL" }, - "revision": "7f3ae895c35f4dc5ab52d084", + "revision": "ec371841adb64d37811a65db", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117354,10 +86201,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "22380b2de7f14946bd503342", + "revision": "58441949d5834ef099aa0bef", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117365,10 +86212,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "2eeb7c2e4a2a40b8ac55a65b", + "revision": "2d37ed900e5047e48ebc0c57", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117376,10 +86223,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "864151c1a9e14451bb421385", + "revision": "9a13fa0ca9c5485b8dac4858", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117389,24 +86236,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 240, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "amount": 240 }, - "revision": "03f326e5d50846119996f3c3", + "revision": "740d62459cf640d5aa514e89", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117420,25 +86255,14 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-19T23:24:09.425Z", "history_id": 1679268249425, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "currency_id": "BRL" }, - "revision": "922da28d19614cafa2f4da7d", + "revision": "1f1aa34d10eb48ac8b82e03c", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117446,10 +86270,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "dcdc6d5af5b043c6bda4062a", + "revision": "4a910a5841334638ba3a2276", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117457,10 +86281,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "41d19f02851d477b9313de95", + "revision": "63996f8f910a4cef8424804b", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117470,24 +86294,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", - "amount": 120, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "amount": 120 }, - "revision": "f9f20e38534b4dcc8fd4f28d", + "revision": "33935ab8b365433281f8607c", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117501,25 +86313,14 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-26T23:11:44.314Z", "history_id": 1679872304314, - "currency_id": "BRL", - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "currency_id": "BRL" }, - "revision": "3423affbf6e044bbb61ad6c4", + "revision": "469f0071c22042698f5a7e46", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117527,10 +86328,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "d226d413031149c9b5fe59cf", + "revision": "db88c50f349f49a9b1d94ae8", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117538,10 +86339,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e00e40e385584b22a6602cb9", + "revision": "e5d5c51447f14d59a82550f1", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117549,10 +86350,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5e786fe248954481b7344e86", + "revision": "9706550af32f4102886773a3", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117560,10 +86361,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8443e6172dac4ec6aaabfc4f", + "revision": "2999fc185e214d7fac0a5217", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117574,24 +86375,12 @@ "approvedLimit": 10000, "limitUsed": 2250, "analysisRequested": "2023-03-19T23:03:43.911Z", - "lastReview": "2023-03-19T23:09:16.871Z", - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "lastReview": "2023-03-19T23:09:16.871Z" }, - "revision": "f9f2e4680ca0421dbc2b2b9e", + "revision": "75390dcd225145b1bc4ad9be", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117603,24 +86392,12 @@ "dateValidity": 1678206220392, "totalValue": 6834.92, "currencyType": "USD", - "balancesModificacao": "2023-09-28T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "balancesModificacao": "2023-09-28T03:00:00.000Z" }, - "revision": "cddad37a42aa4714b04d0b3c", + "revision": "6ab1ebd52c7a432ab94139a1", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117628,10 +86405,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d599a1c3ebcb4855be7f115f", + "revision": "477a3137520c4027ab78102f", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509602, + "modified": 1701463509602 } }, { @@ -117639,24 +86416,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "e21358db79b447d2a6d121a8", + "revision": "b76a9a803a1942898c62d0b5", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -117671,27 +86436,18 @@ "total_amount": 500, "history_id": 1684145604531, "id": 1684145604531, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-05-15T10:13:24.531Z", + "date_last_updated": "2023-05-15T10:13:24.531Z", + "date_of_expiration": "2023-06-14T10:13:24.531Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "fe5973c06e76426ca2c49f84", + "revision": "36e92129e38f402294b06d42", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -117699,10 +86455,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1302.5146.4382.3786-70", - "revision": "760459e99f624ca996bf5154", + "revision": "6547a401095642d7a9177ddf", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -117710,10 +86466,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "15034c3da89945f9a93a4c45", + "revision": "e5db3e6c733f4a228714ad1d", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -117721,10 +86477,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4bf4cad50bcf409cbd975488", + "revision": "9da194ce696144f993391905", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -117733,24 +86489,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "limitUsed": 0 }, - "revision": "e884e38adee04aeea7fc8d9f", + "revision": "cbd997ad544047b2a5733460", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -117761,24 +86505,12 @@ "dataModificacao": 1684145436275, "dateValidity": 1684145436275, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "currencyType": "USD" }, - "revision": "02f206a032b9403daf281346", + "revision": "4944cd507bc640578c1737a9", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -117788,24 +86520,12 @@ "value": { "symbol": "BRL", "value": 0, - "available": "0.00000000", - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "available": "0.00000000" }, - "revision": "86a9ff97c44b41559504c8ac", + "revision": "19df4143cba941b38510f083", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -117815,24 +86535,12 @@ "value": { "symbol": "IVIP", "available": "1069072.00000000", - "value": 37.92, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "value": 37.92 }, - "revision": "b08a62d906d04a4a9bf08d11", + "revision": "9e2e5eaea3ff41658aaad37d", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -117840,10 +86548,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b484a649a4ad400d95239c60", + "revision": "154cc94bc5a54e9da448c997", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -117851,24 +86559,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "a1b68eba6e0f4afaaf239c31", + "revision": "ef35eb82d6c149b684592380", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -117883,18 +86579,9 @@ "total_amount": 20, "history_id": 1677984009002, "id": 1677984009002, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-05T02:40:09.002Z", + "date_last_updated": "2023-03-10T12:42:28.101Z", + "date_of_expiration": "2023-04-04T02:40:09.002Z", "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", @@ -117902,10 +86589,10 @@ "money_release_date": "2023-03-10T12:42:28.101Z", "money_release_status": "rejected" }, - "revision": "643a152a339b4f07a1a5037e", + "revision": "401483fc2a99401cbf1ac7bf", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -117913,10 +86600,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1328.9266.1243.2543-80", - "revision": "65f0f4dae91448c1ba109aff", + "revision": "a24ae8b01e7e4d8792790478", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -117924,24 +86611,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "d5ee99b43f5d4047b757c1cd", + "revision": "ab200b0271ec400fb15c935a", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -117956,27 +86631,18 @@ "total_amount": 200, "history_id": 1678119185082, "id": 1678119185082, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-06T16:13:05.082Z", + "date_last_updated": "2023-03-06T16:13:05.082Z", + "date_of_expiration": "2023-04-05T16:13:05.082Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "d8c9443bc99e4ed982240707", + "revision": "98f7e8dfd0394aefbe656287", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -117984,10 +86650,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1328.9266.1243.2543-80", - "revision": "9521e13124e74807a1b42281", + "revision": "4c519c4167574762937b7cf7", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -117995,24 +86661,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "28d8014681cb44b5a9be3535", + "revision": "cdc996a61ba146cbb4d0bcea", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118027,18 +86681,9 @@ "total_amount": 200, "history_id": 1678119441612, "id": 1678119441612, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-06T16:17:21.612Z", + "date_last_updated": "2023-03-09T14:31:06.897Z", + "date_of_expiration": "2023-04-05T16:17:21.612Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -118048,10 +86693,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "dfad3b9813f44ed7a03d0363", + "revision": "856c2cfc539e4afcb75d7cc3", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118059,10 +86704,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1328.9266.1243.2543-80", - "revision": "e63ad69df51c42fbaae7e605", + "revision": "d1d654ca027045bcbe8bde1c", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118080,24 +86725,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "f75cce2845bd42a4bc2338fc", + "revision": "2e531b869e004488a01f883a", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118113,18 +86746,9 @@ "original_amount": 1069072, "total_amount": 1069072, "id": 1679940518294, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-03-27T18:08:38.294Z", + "date_last_updated": "2023-03-27T18:08:38.294Z", + "date_of_expiration": "2023-03-27T18:08:38.294Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -118133,10 +86757,10 @@ "history_id": 1679940518294, "description": "Compra de 1.069.072,00 IVIP por 200,00 BRL" }, - "revision": "a087f6304fd04570ba9359f1", + "revision": "c7f5ee74594a43aaae84fd70", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118144,10 +86768,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "13d3d594511a42c4a7faed53", + "revision": "5480369ebb8e453da520fafc", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118158,24 +86782,12 @@ "dataModificacao": 1677983983862, "dateValidity": 1678983329949, "totalValue": 37.76, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "currencyType": "USD" }, - "revision": "94dbe95469f64980bf1bb4ff", + "revision": "6c16b2cace2f43ed9119bce7", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118185,24 +86797,12 @@ "value": { "available": "30608.00000000", "symbol": "IVIP", - "value": 3.42, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "value": 3.42 }, - "revision": "48302f1e77554096bcc2988b", + "revision": "fc0987b9de094bb49d18c54c", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118212,24 +86812,12 @@ "value": { "available": "0.00000000", "symbol": "BRL", - "value": 0, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "value": 0 }, - "revision": "d90828f7855c4ad280e42d1a", + "revision": "879713e485c04e2da43afc30", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118237,10 +86825,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2e748fca480140c3b5110165", + "revision": "810a75ff559b446b84623697", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118249,24 +86837,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-06T21:00:23.188Z", - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + ".val": "2023-09-06T21:00:23.188Z" }, - "revision": "cc1860fdbcb8491bbf84c113", + "revision": "b056043e0f1941e2aa6e3f5c", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118282,24 +86858,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "757f0a4716f2466eb267e527", + "revision": "8bb67f481f68401395bd93ba", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118307,10 +86871,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691442023188", - "revision": "a076f04ab7f348c880b2a66f", + "revision": "003000733b914387be5429d2", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118325,29 +86889,19 @@ "total_amount": 20, "id": 1691442023188, "history_id": 1691442023188, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-08-07T21:00:23.188Z", + "date_last_updated": "2023-08-07T21:00:23.188Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "status_detail": "pending_waiting_payment" }, - "revision": "02b0373901144d60bf089da4", + "revision": "283d90dd73a2408099fab20a", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118355,10 +86909,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 para a carteira iVip 1336.7505.4149.0212-50", - "revision": "febbce68dfcd493c8b2035fa", + "revision": "5f96ba0a9823492a8b8a7431", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118367,24 +86921,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-07T22:30:56.606Z", - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + ".val": "2023-09-07T22:30:56.606Z" }, - "revision": "42f84b4cb8b04d0a9a7dd5d5", + "revision": "7385b707de3e4c1199b0bf90", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118400,24 +86942,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "costs": [] }, - "revision": "71bcd2213eeb466382c0573c", + "revision": "df46c4f63d3d44b0b56502ff", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118425,10 +86955,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691533856606", - "revision": "633613ce81c14cf998f5a58b", + "revision": "3a9105d97bb64cc893e8baad", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118443,14 +86973,8 @@ "total_amount": 20, "id": 1691533856606, "history_id": 1691533856606, - "date_created": { - "type": 6, - "value": 1701459383542 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383542 - }, + "date_created": "2023-08-08T22:30:56.606Z", + "date_last_updated": "2023-08-08T23:24:11.872Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -118460,16 +86984,12 @@ "date_approved": "2023-08-08T23:24:11.872Z", "money_release_date": "2023-08-08T23:24:11.872Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383542 - } + "wasDebited": true }, - "revision": "fe0d070376384d45a31dad1f", + "revision": "ff6d06873e8c4832badc8f6a", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118477,10 +86997,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 para a carteira iVip 1336.7505.4149.0212-50", - "revision": "84312cf97a8a410ab8339d9f", + "revision": "dac35db47c804851a8ad4607", "revision_nr": 1, - "created": 1701459383542, - "modified": 1701459383542 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118496,24 +87016,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "b0dc68b602db466e89de2984", + "revision": "7f00ef537b6141b197a7dcf2", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118521,10 +87029,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691597759364", - "revision": "49987494df7f4740ae2b101b", + "revision": "8ac1cce492bd4166b8897bb0", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118539,18 +87047,9 @@ "total_amount": 30608, "id": 1691597759364, "history_id": 1691597759364, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-08-09T16:15:59.364Z", + "date_last_updated": "2023-08-09T16:15:59.364Z", + "date_of_expiration": "2023-08-09T16:15:59.364Z", "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -118559,10 +87058,10 @@ "description": "Compra de 30.608,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "fcc588bab68149b58887e3ac", + "revision": "c7e5d7027142481595fdfd58", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118570,10 +87069,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "45d24a2220494b37af15b7e1", + "revision": "6f2a3891f5784f82b2f35153", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118581,10 +87080,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "36f3fa6a795c4d11b40318a1", + "revision": "7833a48bd8c94e34ac97da7f", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118593,24 +87092,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "limitUsed": 0 }, - "revision": "85afded077ad49f89c85c3b0", + "revision": "a22bb6cc31554d3a93f976d5", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118621,24 +87108,12 @@ "dataModificacao": 1691441898494, "dateValidity": 1691441898538, "currencyType": "USD", - "balancesModificacao": "2023-08-11T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "balancesModificacao": "2023-08-11T03:00:00.000Z" }, - "revision": "0e83bb2978354c5f8866b519", + "revision": "bc247f6029ee433e9d8ae866", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118646,10 +87121,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e9d9442b4d3c490295ae0927", + "revision": "1fc6fec71e2b4cd9bfc679ae", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118657,24 +87132,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "f1800d6fd1d7451c9445464f", + "revision": "bee4fa464deb429baba4c811", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118689,27 +87152,18 @@ "total_amount": 20, "history_id": 1689202732019, "id": 1689202732019, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-07-12T22:58:52.019Z", + "date_last_updated": "2023-07-12T22:58:52.019Z", + "date_of_expiration": "2023-08-11T22:58:52.019Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "8be3bace2db8436aa7b4a6cd", + "revision": "711b0fa29d084d8689bb5a55", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118717,10 +87171,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", - "revision": "372e37a96d1140d9a6465379", + "revision": "bccb7c6076ad4045801501ae", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118728,24 +87182,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "c7925c19a5c741ee9a02ced9", + "revision": "c55df0f80a98412cb4818f00", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118760,27 +87202,18 @@ "total_amount": 20, "history_id": 1689455294552, "id": 1689455294552, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-07-15T21:08:14.552Z", + "date_last_updated": "2023-07-15T21:08:14.552Z", + "date_of_expiration": "2023-08-14T21:08:14.552Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "ada0120da94f408aaea8e3b6", + "revision": "538c77926121432ab5130f53", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118788,10 +87221,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", - "revision": "2574b4fe3f434bb99163a6be", + "revision": "7df7b1f1403640409fa4f102", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118799,24 +87232,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "f73c794203a645feafb522d0", + "revision": "4de2231d0ca447a48e917144", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118831,27 +87252,18 @@ "total_amount": 20, "history_id": 1689455325352, "id": 1689455325352, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-07-15T21:08:45.352Z", + "date_last_updated": "2023-07-15T21:08:45.352Z", + "date_of_expiration": "2023-08-14T21:08:45.352Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "8fb80a1cf2b14d9986fca2b6", + "revision": "f526cbd91768434bafc4370f", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118859,10 +87271,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", - "revision": "2143c36fe5554b3aaa64d57d", + "revision": "97cd1078e171457b827aea56", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118870,10 +87282,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "bcd6a1fece9d476e9f0d3637", + "revision": "16364d526739434fa100650a", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118881,10 +87293,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "68598ed5dae943c6ac4c29c1", + "revision": "d7f8b1ebcc0140428432d1ea", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118893,24 +87305,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "limitUsed": 0 }, - "revision": "efb3e7b9b52742a1885aed67", + "revision": "4966a54effc14a3592886350", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118921,24 +87321,12 @@ "dataModificacao": 1689199381511, "dateValidity": 1689199381511, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "currencyType": "USD" }, - "revision": "06552389305747d996997529", + "revision": "2329abc0b16e485b962f6057", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118946,10 +87334,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "633abf9be6454208a9490c22", + "revision": "4c68954d6acc435facf6bfcb", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118957,24 +87345,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "ec6b4e856fce4d11b4838d0d", + "revision": "7263dd73eb264f96a91dd0f0", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -118989,27 +87365,18 @@ "total_amount": 1700, "history_id": 1684183743876, "id": 1684183743876, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-05-15T20:49:03.876Z", + "date_last_updated": "2023-05-15T20:49:03.876Z", + "date_of_expiration": "2023-06-14T20:49:03.876Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "1c0dad3771f74dc68d77e7b6", + "revision": "6d068c9a44cb4b4a8bc57f39", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119017,10 +87384,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.700,00 para a carteira iVip 1346.8212.0797.4517-90", - "revision": "e6e2709aa3944739a84abcee", + "revision": "023c0ab82e244793aedea7cc", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119028,10 +87395,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d11bc111434d4f8e8ec2c62a", + "revision": "6c5620835136482aa0eb48c7", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119039,10 +87406,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "55315b8c9d7f4ab88b200d57", + "revision": "420e35244db04f12966f21b5", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119051,24 +87418,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "limitUsed": 0 }, - "revision": "f1b302ca18374b28827ce6d1", + "revision": "c8aa58ab391d441fa441ccac", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119079,24 +87434,12 @@ "dataModificacao": 1684171343507, "dateValidity": 1684171343507, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "currencyType": "USD" }, - "revision": "b7e4726f7e844c5388d24f1f", + "revision": "ca9bc99daa9f44bf8273e030", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119104,10 +87447,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "758076082a214129a0cb1ca9", + "revision": "109093f811014fa0be0da3b3", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119115,10 +87458,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "aa01a9a10f7a46178f1290f1", + "revision": "dcb47331e6b14fd98366c0c0", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119129,24 +87472,12 @@ "dataModificacao": 1678373632630, "dateValidity": 1678388032664, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "currencyType": "USD" }, - "revision": "c41476253fa74d299f2d3602", + "revision": "786c884518944b8bb77b78b3", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119154,10 +87485,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5901e24b05c44711a743fb71", + "revision": "2b06f8721c1c428db3483b21", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119165,24 +87496,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "ec51bd17472a44b3b9476281", + "revision": "107d5f8ef4d84ae89418b1ed", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119197,27 +87516,18 @@ "total_amount": 20, "history_id": 1689208709356, "id": 1689208709356, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-07-13T00:38:29.356Z", + "date_last_updated": "2023-07-13T00:38:29.356Z", + "date_of_expiration": "2023-08-12T00:38:29.356Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "18e8ae2d8ba344559e1c225e", + "revision": "07fddaed0f824ff0b679b02c", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119225,10 +87535,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1384.8850.0273.9255-70", - "revision": "85390baee2744734b5613599", + "revision": "f46ac87824d5487386df1315", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119236,10 +87546,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "816b17e1e052419eb9cfffe0", + "revision": "5369d2c4c7aa4b0cb4ebd97d", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119247,10 +87557,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "bdcc414fe49147528750544f", + "revision": "4e79863ba2ab4123ad8773bd", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119259,24 +87569,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "limitUsed": 0 }, - "revision": "a4549e5083644ab891823559", + "revision": "7d0a654274f4463280553b53", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119287,24 +87585,12 @@ "dataModificacao": 1689183505496, "dateValidity": 1689183505496, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "currencyType": "USD" }, - "revision": "1c1113c33dc64f05914f0a1a", + "revision": "ea54c498f05740449ce0d1e1", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119314,24 +87600,12 @@ "value": { "available": "919038.84000000", "symbol": "IVIP", - "value": 654.99, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "value": 654.99 }, - "revision": "41b6d1682fe0463db57c5cf2", + "revision": "b92185cc0b7b4cdc82a77a3c", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119339,10 +87613,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "45072d29df7b4974a9e9ee35", + "revision": "a52102e4e0284e4693cf7595", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119350,24 +87624,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "934a55cbd78840d9b1bbb3ec", + "revision": "b705aa50b7d8492aaa1d16ad", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119382,18 +87644,9 @@ "total_amount": 1000, "history_id": 1677847333011, "id": 1677847333011, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-03-03T12:42:13.011Z", + "date_last_updated": "2023-03-03T16:22:44.643Z", + "date_of_expiration": "2023-04-02T12:42:13.011Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -119403,10 +87656,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c5cf63b39d3c4aaeade86bf4", + "revision": "7cb2ec0683ad465db2b96c64", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119414,10 +87667,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1385.8527.3860.3328-20", - "revision": "f65936af72c74c6da34e5f09", + "revision": "8f1f930bf0334756a35af560", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119435,24 +87688,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "7e2084c7fa4b4f8a8500cf55", + "revision": "7fbd455db8cb461eac1a4799", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119468,18 +87709,9 @@ "original_amount": 7131208, "total_amount": 7131208, "id": 1678180078100, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-03-07T09:07:58.100Z", + "date_last_updated": "2023-03-07T09:07:58.100Z", + "date_of_expiration": "2023-03-07T09:07:58.100Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -119488,10 +87720,10 @@ "history_id": 1678180078100, "description": "Compra de 7131208 IVIP por 1000 BRL" }, - "revision": "1631999fa7874148bdee77ac", + "revision": "06ad89f2b5b04caf9a2286c5", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119509,24 +87741,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "1664d9b202524c1482eecc71", + "revision": "9860c17efcf44b288c7cd59e", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119542,18 +87762,9 @@ "original_amount": 2000, "total_amount": 2000, "id": 1678198835623, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-03-07T14:20:35.623Z", + "date_last_updated": "2023-03-07T14:20:35.623Z", + "date_of_expiration": "2023-03-07T14:20:35.623Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -119561,10 +87772,10 @@ "currency_id": "BRL", "history_id": 1678198835623 }, - "revision": "3f316e7edf2943b186b8f49e", + "revision": "ca76c9c3228d4f3c8aa427cd", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119572,10 +87783,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "dbc0dd7309e04528b825a26b", + "revision": "083cd8dd3270426cb0135d57", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119593,24 +87804,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "0510db99d30348f7926eb3b2", + "revision": "b510d3ca7730466e8a3d6c49", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119626,18 +87825,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1678228246387, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-03-07T22:30:46.387Z", + "date_last_updated": "2023-03-07T22:30:46.387Z", + "date_of_expiration": "2023-03-07T22:30:46.387Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -119645,10 +87835,10 @@ "currency_id": "BRL", "history_id": 1678228246387 }, - "revision": "b715b3c7807c405db286a685", + "revision": "f0d82ba7c22148f5ba98c3de", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119656,10 +87846,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "601fcef662a445b0bded6d68", + "revision": "7fc9a9dc404c4458a63399b7", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119677,24 +87867,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "2fdc154d4bf54c998a2e2472", + "revision": "e5e59c7cfe34474e87e1b784", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119710,18 +87888,9 @@ "original_amount": 1000, "total_amount": 1000, "id": 1679266874503, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-03-19T23:01:14.503Z", + "date_last_updated": "2023-03-19T23:01:14.503Z", + "date_of_expiration": "2023-03-19T23:01:14.503Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -119729,10 +87898,10 @@ "currency_id": "BRL", "history_id": 1679266874503 }, - "revision": "e94de3057e084879b54d3986", + "revision": "bcce0b8836a64ed9ba4716b2", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119740,10 +87909,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "1b3744569e5c45ee838538a5", + "revision": "27fc6c72357d407890695679", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509603, + "modified": 1701463509603 } }, { @@ -119761,24 +87930,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "33eceefa473449619e69863d", + "revision": "76a64655e0a441e58df96216", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -119794,18 +87951,9 @@ "original_amount": 23286153, "total_amount": 23286153, "id": 1679267008673, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-03-19T23:03:28.673Z", + "date_last_updated": "2023-03-19T23:03:28.673Z", + "date_of_expiration": "2023-03-19T23:03:28.673Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -119814,10 +87962,10 @@ "history_id": 1679267008673, "description": "Compra de 23286153 IVIP por 4000 BRL" }, - "revision": "353920d7ab2c4e8faa7b0343", + "revision": "3058e1599e184deaada4a922", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -119827,24 +87975,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "amount": 2400 }, - "revision": "708b24d3432a45f19e63b01a", + "revision": "8db873d828164b8eb5d97e0f", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -119852,10 +87988,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c668b51aceb042fc967bd57b", + "revision": "61fa853aa9874ea682b4135d", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -119863,10 +87999,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f284e398c68d453ebf221d47", + "revision": "85a042ed0f1c4ca8b311197d", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -119881,28 +88017,19 @@ "total_amount": 12400, "history_id": 1684019947547, "id": 1684019947547, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-05-13T23:19:07.547Z", + "date_last_updated": "2023-05-13T23:19:07.547Z", + "date_of_expiration": "2023-06-12T23:19:07.547Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "37fdb70a4cbb4250ae9ae542", + "revision": "930fd0847bfe412fbfbfbd9f", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -119910,10 +88037,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "c7ec762d8880426f966f6dc2", + "revision": "b2be8f1a14574319ba7d2b3f", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -119931,24 +88058,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "2663b9a4c326441c98067cd3", + "revision": "964415d7bd53403e841e0d56", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -119964,18 +88079,9 @@ "original_amount": 1040, "total_amount": 1040, "id": 1684348689379, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-05-17T18:38:09.379Z", + "date_last_updated": "2023-05-17T18:38:09.379Z", + "date_of_expiration": "2023-05-17T18:38:09.379Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -119983,10 +88089,10 @@ "currency_id": "BRL", "history_id": 1684348689379 }, - "revision": "ef0d9800a89b45e3b7567da6", + "revision": "6ac202432d5d44da8e202402", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -119994,10 +88100,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "c6170542746e450d99d0b2f4", + "revision": "83d56cc81b8e445080aeabe8", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120015,24 +88121,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "2272a2338645471c81b847b4", + "revision": "f62d9356d72e43be81fd9967", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120048,18 +88142,9 @@ "original_amount": 53772878, "total_amount": 53772878, "id": 1684624162871, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-05-20T23:09:22.871Z", + "date_last_updated": "2023-05-20T23:09:22.871Z", + "date_of_expiration": "2023-05-20T23:09:22.871Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -120068,10 +88153,10 @@ "history_id": 1684624162871, "description": "Compra de 53.772.878,00 IVIP por 11.040,00 BRL" }, - "revision": "e7d53f1f30a44960ac8b1c56", + "revision": "9ab9a40835b84f12855b379d", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120089,24 +88174,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "ae4cd906c906482c89aeddef", + "revision": "efdc5acf00f34fcd8c3830c5", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120122,18 +88195,9 @@ "original_amount": 258.1, "total_amount": 258.1, "id": 1684624267520, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-05-20T23:11:07.520Z", + "date_last_updated": "2023-05-20T23:11:07.520Z", + "date_of_expiration": "2023-05-20T23:11:07.520Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -120141,10 +88205,10 @@ "currency_id": "BRL", "history_id": 1684624267520 }, - "revision": "a3ec72f25c594479ab93392d", + "revision": "4d34e5f4204f49a18db70f71", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120152,10 +88216,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "d046cc6c29974a55aaba0013", + "revision": "28ddf41ffd5947539dea94a0", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120173,24 +88237,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "e29e0023397d4d0fa1284e41", + "revision": "ed4e8827daa74f6ea2db5744", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120206,18 +88258,9 @@ "original_amount": 1257135, "total_amount": 1257135, "id": 1684624311448, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-05-20T23:11:51.448Z", + "date_last_updated": "2023-05-20T23:11:51.448Z", + "date_of_expiration": "2023-05-20T23:11:51.448Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -120226,10 +88269,10 @@ "history_id": 1684624311448, "description": "Compra de 1.257.135,00 IVIP por 258,10 BRL" }, - "revision": "1c9cdd216ae44ba789380619", + "revision": "36a5a5ddd8f144649b480919", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120247,24 +88290,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "d0f7e14f4e964cfdadcfc6c7", + "revision": "d1ed10ebb6eb467a9e68875c", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120280,18 +88311,9 @@ "original_amount": 12.600000000000001, "total_amount": 12.600000000000001, "id": 1684624493050, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-05-20T23:14:53.050Z", + "date_last_updated": "2023-05-20T23:14:53.050Z", + "date_of_expiration": "2023-05-20T23:14:53.050Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -120299,10 +88321,10 @@ "currency_id": "BRL", "history_id": 1684624493050 }, - "revision": "3c676272796e49cbb0d5bbf1", + "revision": "4f4490c31ee04ca1a1686329", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120310,10 +88332,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "c079d40a9eee4f95a6fbf3b0", + "revision": "428a7b4fbbc14e6cbc790b21", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120331,24 +88353,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "c26cd9d48f5f474f9e728f0f", + "revision": "9fd35c2c131b46449b4fc29a", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120364,18 +88374,9 @@ "original_amount": 13, "total_amount": 13, "id": 1684627629023, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-05-21T00:07:09.023Z", + "date_last_updated": "2023-05-21T00:07:09.023Z", + "date_of_expiration": "2023-05-21T00:07:09.023Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -120383,10 +88384,10 @@ "currency_id": "BRL", "history_id": 1684627629023 }, - "revision": "23d73c99b53242a48b90855a", + "revision": "c70ca3e870ec4b80bf170e35", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120394,10 +88395,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "3588f09822c3491193ead9bb", + "revision": "1ff5b2a386d345b3802ced5f", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120415,24 +88416,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "08cd9b72a3ed4c26a0ea8ca9", + "revision": "bfaad7fefa3b49c2baa7aa07", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120448,18 +88437,9 @@ "original_amount": 3.2, "total_amount": 3.2, "id": 1684692136128, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-05-21T18:02:16.128Z", + "date_last_updated": "2023-05-21T18:02:16.128Z", + "date_of_expiration": "2023-05-21T18:02:16.128Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -120467,10 +88447,10 @@ "currency_id": "BRL", "history_id": 1684692136128 }, - "revision": "b35a219630da42d08f6710c6", + "revision": "61c3b18b19774746bbee8ba4", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120478,10 +88458,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "562756b5c7164a469a98f675", + "revision": "85fa2b01babd4710b770fecf", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120499,24 +88479,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "1624c02eb05042ff9b30e677", + "revision": "8564e76971014b0991407842", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120532,18 +88500,9 @@ "original_amount": 139785, "total_amount": 139785, "id": 1684710449691, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-05-21T23:07:29.691Z", + "date_last_updated": "2023-05-21T23:07:29.691Z", + "date_of_expiration": "2023-05-21T23:07:29.691Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -120552,10 +88511,10 @@ "history_id": 1684710449691, "description": "Compra de 139.785,00 IVIP por 28,80 BRL" }, - "revision": "3780076754094088982366d6", + "revision": "4e363d1ef7e14218922ec946", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120563,24 +88522,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "4885b901262c424bb3a7e25a", + "revision": "5e7498c373c64b6d99563856", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120595,27 +88542,18 @@ "total_amount": 30550000, "history_id": 1689025596946, "id": 1689025596946, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-07-10T21:46:36.946Z", + "date_last_updated": "2023-07-10T21:46:36.946Z", + "date_of_expiration": "2023-07-10T21:46:36.946Z", "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "bdab69a2f83a46848d7ba9d6", + "revision": "b65fe10d6f0649ecae518050", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120623,10 +88561,10 @@ "content": { "type": "STRING", "value": "Saque de 30.550.000,00 IVIP para a carteira 0xe19A954Bb3bc15ff05fDD30BB22AE96bF4425Bf0", - "revision": "97cb17967ab74d1f81840720", + "revision": "18ad4139d83d4dbb9726a384", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120634,24 +88572,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "b032d2baee834902a63afe92", + "revision": "85bea69fc5b648e787bf251a", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120666,18 +88592,9 @@ "total_amount": 48707317, "history_id": 1690515792985, "id": 1690515792985, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-07-28T03:43:12.985Z", + "date_last_updated": "2023-07-28T03:43:12.985Z", + "date_of_expiration": "2023-07-28T03:43:12.985Z", "operation_type": "regular_payment", "status": "refunded", "status_detail": "cc_discounted_due_default", @@ -120687,10 +88604,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "f375d3d8de47481f99b6162f", + "revision": "33dff2b89af24dc99e6e1173", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120698,10 +88615,10 @@ "content": { "type": "STRING", "value": "Devolução de 48.707.317,00 IVIP da carteira 1385.8527.3860.3328-20", - "revision": "3af683e6de784b45a37508f3", + "revision": "08d90d42e096417a8b9d4c11", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120711,24 +88628,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", - "amount": 1047600, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "amount": 1047600 }, - "revision": "474cf1ba411d496b9eea6630", + "revision": "c3ba02a2c32f4d65938118eb", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120743,24 +88648,12 @@ "installment_amount": 36000000, "installments": 1, "reference_currency_id": "IVIP", - "financial_institution": "ivipcoin", - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "financial_institution": "ivipcoin" }, - "revision": "0b4ae75900d04bfd9d8c78e3", + "revision": "f96b6bad96254c508ddf955c", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120768,10 +88661,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1690812074851", - "revision": "ab3341af634a4d569c487bd2", + "revision": "cfccf1990ea545329fb717f2", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120779,10 +88672,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "37bedbcc44c74a45991fbd2c", + "revision": "974c5184c7bb41c493ebee22", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120797,18 +88690,9 @@ "total_amount": 34920000, "id": 1690812074851, "history_id": 1690812074851, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-07-31T14:01:14.851Z", + "date_last_updated": "2023-08-04T21:27:13.764Z", + "date_of_expiration": "2023-07-31T14:01:14.851Z", "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", @@ -120820,10 +88704,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "dedcb20b4d554c38a0836589", + "revision": "67b49b4b3c8c4c38af1d847c", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120831,10 +88715,10 @@ "content": { "type": "STRING", "value": "Saque de 34.920.000,00 IVIP para a carteira 0xe19A954Bb3bc15ff05fDD30BB22AE96bF4425Bf0", - "revision": "cc6ec864561d4aeb9fb0fc12", + "revision": "87aafd0a595043458cf3b1cb", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120850,24 +88734,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "3d711378dbc4438ea5169de9", + "revision": "24bb2c245d2f414b964598d7", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120875,10 +88747,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1691235380464", - "revision": "d42399f61d78440582fcf52b", + "revision": "a32524a0e7e7444a97251e89", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120893,18 +88765,9 @@ "total_amount": 1959842, "id": 1691235380464, "history_id": 1691235380464, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-08-05T11:36:20.464Z", + "date_last_updated": "2023-08-05T11:36:20.464Z", + "date_of_expiration": "2023-09-05T11:36:20.463Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -120912,10 +88775,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "3ce871eeb09a4a9582c0aa0f", + "revision": "f491936860e6475da54f111a", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120923,10 +88786,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.959.842,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", - "revision": "fe115a264bec4f5baa23e597", + "revision": "43464afbd53447339db1c450", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120942,24 +88805,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "costs": [] }, - "revision": "a6aa85f3c03e46abb04edd2e", + "revision": "b325b35a146043f8917737ba", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120967,10 +88818,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1693914295943", - "revision": "513507f45f1342738379a8ba", + "revision": "22bfebdf87db49b9932e3d57", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -120985,18 +88836,9 @@ "total_amount": 1999038.84, "id": "1693914295943", "history_id": "1693914295943", - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-09-05T11:44:55.943Z", + "date_last_updated": "2023-09-05T11:44:55.943Z", + "date_of_expiration": "2023-09-05T11:44:55.943Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -121004,10 +88846,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ac1d534850ef4ae78391f14a", + "revision": "932b51d1dc2646a3a5a6a8b1", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121015,10 +88857,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 1.959.842,00 IVIP com um rendimento de +39.196,84 IVIP (2,00%) - Y12XDT27", - "revision": "3a30ad6b8b9744c5a94f60c8", + "revision": "b8d8d8d0ae3543eda98040e5", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121026,10 +88868,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7ba9fb0d89df469797d40a64", + "revision": "ce4dd4dbeb0f40b6988b1e08", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121039,24 +88881,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "amount": 2400 }, - "revision": "c7786e076e4f4c18937c470c", + "revision": "a930c5d1f00d44b19f292051", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121070,26 +88900,15 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-05-13T23:19:07.547Z", "history_id": 1684019947547, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "status": "paid" }, - "revision": "6263a2e550c74dd791ad83dc", + "revision": "64a08a0263624519988c9fa5", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121097,10 +88916,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "386e6b34e68b4008a2477bab", + "revision": "16cc5dd938e74be7af4603ab", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121108,10 +88927,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "10aa35f00f7e472c939923b7", + "revision": "582a24b213d344b8a469e072", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121119,10 +88938,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1a9f8bf794bc4d7b891abc0f", + "revision": "93cd7697819d445e8d98476d", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121132,24 +88951,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "amount": 2400 }, - "revision": "746e1b0919bc41219ff5b41c", + "revision": "53b8914e7fda429f9b130852", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121163,26 +88970,15 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-05-13T23:19:07.547Z", "history_id": 1684019947547, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "status": "paid" }, - "revision": "781ce9f5e6334d2183a73ff6", + "revision": "8b10597d5a6e4951aa7a73ae", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121190,10 +88986,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "f270022244ed461cb71a8987", + "revision": "adcaec4f12de4b868556155c", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121201,10 +88997,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "158829292bbf4183b18feb04", + "revision": "68d8449a29cb488abdcd1cab", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121212,10 +89008,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a4a279cd8d484885839eab87", + "revision": "979566ad8611483e8f27b93e", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121225,24 +89021,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400, - "date_created": { - "type": 6, - "value": 1701459383543 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "amount": 2400 }, - "revision": "fba2363dde6e4a22b2a4e51b", + "revision": "ffd0a64c126947ddac0f3273", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121256,26 +89040,15 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { - "type": 6, - "value": 1701459383543 - }, + "date_created": "2023-05-13T23:19:07.547Z", "history_id": 1684019947547, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383543 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383543 - } + "status": "paid" }, - "revision": "220c445aa714479f9f33eff1", + "revision": "c79c226baa88479a983845f1", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121283,10 +89056,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "68fc1fc7a3f24812b49dde61", + "revision": "23f0841ffd144dbe8bbcbec0", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121294,10 +89067,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "80ee8f03519845b4a5c2e3ed", + "revision": "b48dd2085fe64c1f93a5414a", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121305,10 +89078,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "881b40e95a284c5aa8fedd94", + "revision": "f805a3a932544c4fb4bcd131", "revision_nr": 1, - "created": 1701459383543, - "modified": 1701459383543 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121318,24 +89091,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "amount": 2400 }, - "revision": "dab0ac0252644ea08581c9f7", + "revision": "9a70a86c665f4395a732a5e9", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121349,26 +89110,15 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-05-13T23:19:07.547Z", "history_id": 1684019947547, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "status": "paid" }, - "revision": "32f36d313c2e44c4bf695038", + "revision": "3d8eb7e312874b05bc7368ec", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121376,10 +89126,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "b0e9ab35dea04cc0b00d53f3", + "revision": "fe55817cf9554a34abab0b6f", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121387,10 +89137,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f759622a07414019b3518aed", + "revision": "a81f8a43ca2c4bc480346386", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121398,10 +89148,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7741932027e94ae1918163cb", + "revision": "c382f522ef02408bb9315958", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509604, + "modified": 1701463509604 } }, { @@ -121411,24 +89161,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "amount": 2400 }, - "revision": "65fd333f90d04bd6a0b7b8f7", + "revision": "2e7b0a2b39944225bbb9c703", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121442,26 +89180,15 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-05-13T23:19:07.547Z", "history_id": 1684019947547, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "status": "paid" }, - "revision": "6facab474ff94921a55ec915", + "revision": "434919d516704c9499e043f9", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121469,10 +89196,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "781613cf58834bb386a95388", + "revision": "3cd5a29da64a484b84ec5f17", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121480,10 +89207,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "ed1f51951448404ab18c5004", + "revision": "144fe2aba0f944289e7a06c9", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121491,10 +89218,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "bdd3db2fc8244c67af8f4504", + "revision": "8ea21f6ae26d47cfaebfaecf", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121504,24 +89231,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "amount": 2400 }, - "revision": "3bb1b7e549fb4a28999b98c1", + "revision": "311b5342ecf34f6cbab0519d", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121535,26 +89250,15 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-05-13T23:19:07.547Z", "history_id": 1684019947547, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "status": "paid" }, - "revision": "08e86a65eb514639b40863b0", + "revision": "3e7cd2dae437460791a738be", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121562,10 +89266,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "e26eb9fc78a042ac9431e139", + "revision": "b1f8462c2d244d81af42967f", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121573,10 +89277,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f822ac2ec9024d5ebbfdbf44", + "revision": "d03fea76500343388348a1a6", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121584,10 +89288,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0709ec91140540dcb73cd258", + "revision": "88b3100c04f741f9a208640e", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121597,24 +89301,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "amount": 2400 }, - "revision": "87aa1d31ca524a568cf4b5d3", + "revision": "087e470b3a29410c83d67d97", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121628,26 +89320,15 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-05-13T23:19:07.547Z", "history_id": 1684019947547, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "status": "paid" }, - "revision": "0fb076e35aef4b11920667a6", + "revision": "6ce13cdec0204b19b01336fb", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121655,10 +89336,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "a092322e287a43c38d28b28e", + "revision": "ca3a5110099f4aaa8ca1c74d", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121666,10 +89347,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "36942e5c179044d4958edd61", + "revision": "6ea898a62f5c4d57bdf22c3d", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121677,10 +89358,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ecd7508afc754d00a75e26f4", + "revision": "17ccfdf4836245388d6daf89", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121690,24 +89371,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "amount": 2400 }, - "revision": "d9cbeda863bc427a99b09506", + "revision": "88521da467a94d158fa50573", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121721,26 +89390,15 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-05-13T23:19:07.547Z", "history_id": 1684019947547, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "status": "paid" }, - "revision": "2c3a18b667f54e36a3d1cf70", + "revision": "d090267141844f788254705e", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121748,10 +89406,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "ae806d9e5e734ea49cf38310", + "revision": "c7b8b1ff90f14ab0ad9ea71c", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121759,10 +89417,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "1cc3cbdbac3347d29a219133", + "revision": "02ff30d45172416fb6772b00", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121770,10 +89428,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "00314bedd3254edcb6d46fde", + "revision": "5440de6b0e9040a48a4566ba", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121783,24 +89441,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "amount": 2400 }, - "revision": "c556992fd65f4149834153c1", + "revision": "bb82066498da4bd7a556c7da", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121814,26 +89460,15 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-05-13T23:19:07.547Z", "history_id": 1684019947547, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "status": "paid" }, - "revision": "e1f01192129449f3adee9df5", + "revision": "adbcdbee2b4f47678403f07e", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121841,10 +89476,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "2314ef263b1f4e0286459927", + "revision": "48b9ed4a0efc473990ccfc30", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121852,10 +89487,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "debab021e04640dbbc90f51d", + "revision": "16c820c6450540bfb5aedbe9", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121863,10 +89498,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9964d6be33a4461d9a76bcc2", + "revision": "c214b765bdfb45cd9fcf294a", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121876,24 +89511,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "amount": 2400 }, - "revision": "0512af2defed47cd8da9bb26", + "revision": "c285e23ff2414a0890e6ab64", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121907,26 +89530,15 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-05-13T23:19:07.547Z", "history_id": 1684019947547, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "status": "paid" }, - "revision": "dc7517a1cbfa43fd8756cef0", + "revision": "64eaf38cb4da4f04a6a99dfd", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121934,10 +89546,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "331a67ee6b0647229170d5c9", + "revision": "d6b540f658b645cf9f495932", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121945,10 +89557,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b37cebafc7394affad279451", + "revision": "a920541bd6af4323b2940cd9", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121956,10 +89568,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "941bc1d03b204ef8a9d09c11", + "revision": "4c93b33865494252bbb290da", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -121969,24 +89581,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "amount": 2400 }, - "revision": "72b296aba8114df0b5a89a90", + "revision": "071a4f092e0144109e82e4ac", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122000,26 +89600,15 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-05-13T23:19:07.547Z", "history_id": 1684019947547, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "status": "paid" }, - "revision": "e4b0a5baea854a18b94f2cb5", + "revision": "92400c86be884dd798ebfb0e", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122027,10 +89616,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "0f3e898a2951428d80c05797", + "revision": "e23a29e5c8a743eaa16b8dfc", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122038,10 +89627,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "0aa4942c333c4705bb107343", + "revision": "eaa2f6b14e4f434eb3ac073f", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122049,10 +89638,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "47d14825872046c9ae96ad6e", + "revision": "e90fb60951814259a78b2003", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122062,24 +89651,12 @@ "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", - "amount": 2400, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "amount": 2400 }, - "revision": "f9c3ae3ee1bc40e4a526fae5", + "revision": "616563b537b44c6eb620930e", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122093,26 +89670,15 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-05-13T23:19:07.547Z", "history_id": 1684019947547, "currency_id": "BRL", - "status": "paid", - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "status": "paid" }, - "revision": "ecc3c3859dd64823a33fcaaa", + "revision": "b67fbeb0e6e84121a8543b8d", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122120,10 +89686,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "7c53b7aca2f74052a908d7c2", + "revision": "be20e67db73f4060b421a015", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122131,10 +89697,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "fc9dcd3d433e496d99a37c84", + "revision": "e70d3af02fb247378f34159c", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122142,10 +89708,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "17540d897909476ea43226a0", + "revision": "dcdf3a5bd6ca41c2b510083c", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122153,10 +89719,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "762ffbba0f9f440bbf3fd107", + "revision": "e1ca016d24544ff1b1802ac1", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122167,24 +89733,12 @@ "approvedLimit": 10000, "limitUsed": 10000, "analysisRequested": "2023-05-13T11:07:07.691Z", - "lastReview": "2023-05-13T19:52:36.024Z", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "lastReview": "2023-05-13T19:52:36.024Z" }, - "revision": "5d8bc489acbe43cfa86d463e", + "revision": "55c261d16ff6498b88e8d9d2", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122196,24 +89750,12 @@ "dateValidity": 1678311387021, "totalValue": 3272.893, "currencyType": "USD", - "balancesModificacao": "2023-10-07T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "balancesModificacao": "2023-10-07T03:00:00.000Z" }, - "revision": "e514a003afe14cc58e3ae92c", + "revision": "82dd568f5fe348eeb8bda07a", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122221,10 +89763,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4f77ad12c7984f6eb0fc18aa", + "revision": "3e55c7b3d634456986a10d4b", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122232,10 +89774,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4f1f934991db404aa130c789", + "revision": "f732d31c1976400db45f7c51", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122246,24 +89788,12 @@ "dataModificacao": 1696229796136, "dateValidity": 1696229796165, "currencyType": "USD", - "balancesModificacao": "2023-10-02T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "balancesModificacao": "2023-10-02T03:00:00.000Z" }, - "revision": "cefb53e139e041899057dc8e", + "revision": "303bf0cba7f14dabae3b7cc7", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122273,24 +89803,12 @@ "value": { "available": "220191.58000000", "symbol": "IVIP", - "value": 29.61, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "value": 29.61 }, - "revision": "642b71238b8f495ba53ab859", + "revision": "bba18198947d4586a695366e", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122298,10 +89816,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ade953b1ba004dcc92bb3844", + "revision": "e9b39696763e4ae091d6cdf4", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122309,24 +89827,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "costs": [] }, - "revision": "6bfa4b82475e4692bc347c09", + "revision": "bca94b36bd0845be866a19a2", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122341,18 +89847,9 @@ "total_amount": 1600, "history_id": 1685110971189, "id": 1685110971189, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-05-26T14:22:51.189Z", + "date_last_updated": "2023-05-26T23:32:38.384Z", + "date_of_expiration": "2023-06-25T14:22:51.189Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -122362,10 +89859,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "066ddfd74dcc4302bed95e50", + "revision": "ab9e7146f58b4bf083ea0c6b", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122373,10 +89870,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 1404.9875.6876.3405-00", - "revision": "52c03199f968475a972b175f", + "revision": "58dd3b8a499f4b8694544fb3", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122394,24 +89891,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "costs": [] }, - "revision": "481498b2583a4dc3a12df199", + "revision": "9a4c33f03c9541d797b52211", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122427,18 +89912,9 @@ "original_amount": 5398200, "total_amount": 5398200, "id": 1685727229028, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-06-02T17:33:49.028Z", + "date_last_updated": "2023-06-02T17:33:49.028Z", + "date_of_expiration": "2023-06-02T17:33:49.028Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -122447,10 +89923,10 @@ "history_id": 1685727229028, "description": "Compra de 5.398.200,00 IVIP por 1.600,00 BRL" }, - "revision": "17b3d29d071741bfa39c9219", + "revision": "c74c3f6551c14fad888d5c20", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122468,24 +89944,12 @@ "installment_amount": 5000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "costs": [] }, - "revision": "a4cb67d5c2f140e3b026a3a6", + "revision": "b7e6639c2cbe4120874a17ca", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122500,18 +89964,9 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1687318007517, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-06-21T03:26:47.517Z", + "date_last_updated": "2023-06-21T03:26:47.517Z", + "date_of_expiration": "2025-06-21T03:26:47.517Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -122519,10 +89974,10 @@ "currency_id": "IVIP", "history_id": 1687318007517 }, - "revision": "78ef7d6b61fd4a9c8a8d7952", + "revision": "d1b951f137e544b1b0158199", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122530,10 +89985,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2025", - "revision": "ae6d76f4d4e446a2ba443fba", + "revision": "973a9d0f4e624ea7b5c56d27", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122551,24 +90006,12 @@ "installment_amount": 320960, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "costs": [] }, - "revision": "96128f9e9d8d476386e1062a", + "revision": "02cf65d3d77d4a86aabcdd2b", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122583,18 +90026,9 @@ "original_amount": 320960, "total_amount": 320960, "id": 1688408922424, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-07-03T18:28:42.424Z", + "date_last_updated": "2023-07-03T18:28:42.424Z", + "date_of_expiration": "2023-08-03T18:28:42.424Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -122602,10 +90036,10 @@ "currency_id": "IVIP", "history_id": 1688408922424 }, - "revision": "7cbf84a8f2784553912c2f4a", + "revision": "2cacdf7c09e34d4fb8f3c446", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122613,10 +90047,10 @@ "content": { "type": "STRING", "value": "Investimento de 320.960,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "46451838774c4d6386dd71c8", + "revision": "11767b7a725e4c849b4b5d02", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122634,24 +90068,12 @@ "installment_amount": 320960, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "costs": [] }, - "revision": "6c4c50e42db04e6a93b810b5", + "revision": "d1f70411e52a4e45aedacdb9", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122666,18 +90088,9 @@ "original_amount": 327379.2, "total_amount": 327379.2, "id": 1691087650613, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-08-03T18:34:10.613Z", + "date_last_updated": "2023-08-03T18:34:10.613Z", + "date_of_expiration": "2023-08-03T18:34:10.613Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -122686,10 +90099,10 @@ "history_id": 1691087650613, "wasDebited": true }, - "revision": "d99b610bce324fb3b8b3b2f1", + "revision": "fbe002f435f74f26a740bed4", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122697,10 +90110,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 320.960,00 IVIP com um rendimento de +6.419,2 IVIP (2,00%)", - "revision": "825935c0a37444179960f504", + "revision": "57acb8aa8ff440cba00cf500", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122716,24 +90129,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "costs": [] }, - "revision": "f72f04caede0483ebf752f16", + "revision": "3055348837614c2688559f1c", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122741,10 +90142,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1691114916429", - "revision": "40d4909dcefa4809a7808775", + "revision": "4520ac8e2fe245a38c9241f5", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122759,18 +90160,9 @@ "total_amount": 366669, "id": 1691114916429, "history_id": 1691114916429, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-08-04T02:08:36.429Z", + "date_last_updated": "2023-08-04T02:08:36.429Z", + "date_of_expiration": "2023-09-04T02:08:36.390Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -122778,10 +90170,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "50e6eeed88cf40618fc73593", + "revision": "cd25901c6bf942f790c6b2cd", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122789,10 +90181,10 @@ "content": { "type": "STRING", "value": "Investimento de 366.669,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "29dfd5bd0b024fda9afbbb88", + "revision": "59d083f667854fc1ad8a6416", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122808,24 +90200,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "costs": [] }, - "revision": "abd1b6f52cb54f2db83e4f68", + "revision": "4d62ccf6cc7b4b80843835ae", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122833,10 +90213,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1693793335003", - "revision": "7b3f747ebc564a1fae198f91", + "revision": "d186e971590c4d0eb90be188", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122851,18 +90231,9 @@ "total_amount": 374002.38, "id": "1693793335003", "history_id": "1693793335003", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-09-04T02:08:55.003Z", + "date_last_updated": "2023-09-04T02:08:55.003Z", + "date_of_expiration": "2023-09-04T02:08:55.003Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -122870,10 +90241,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "8fcf6aad25d14902b8012331", + "revision": "7d2814d5155a414c8f6db25e", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122881,10 +90252,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 366.669,00 IVIP com um rendimento de +7.333,38 IVIP (2,00%) - Y12XDT27", - "revision": "841d51ba770247f4a8b1a352", + "revision": "7b4979f5ac9444d8b41ee18a", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122900,24 +90271,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "costs": [] }, - "revision": "2b2c5d9f410d45ca99ece59c", + "revision": "f4c631eeaae444a180730de6", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122925,10 +90284,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1693793542322", - "revision": "a68273ee28b745009c82c09d", + "revision": "182d31897ec1462998c5b34a", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122943,18 +90302,9 @@ "total_amount": 411950, "id": "1693793542322", "history_id": "1693793542322", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-09-04T02:12:22.322Z", + "date_last_updated": "2023-09-04T02:12:22.322Z", + "date_of_expiration": "2023-10-04T02:12:22.321Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -122962,10 +90312,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c945d22f931041dea9a5898d", + "revision": "f1ebbf97999d4d29a50955c0", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122973,10 +90323,10 @@ "content": { "type": "STRING", "value": "Investimento de 411.950,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "28f097f50bb4473c8991a210", + "revision": "bc96a4543d344526bea5df79", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -122992,24 +90342,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "costs": [] }, - "revision": "4ab853bd867043fb94369fcd", + "revision": "79e40f9696f34eeb858c9d88", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123017,10 +90355,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1696395329903", - "revision": "23bae78fe4024e5798d286fa", + "revision": "55238b344f0c484298c86d64", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123036,18 +90374,9 @@ "total_amount": 420189, "id": "1696395329903", "history_id": "1696395329903", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-10-04T04:55:29.903Z", + "date_last_updated": "2023-10-04T04:55:29.903Z", + "date_of_expiration": "2023-10-04T04:55:29.903Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -123055,10 +90384,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "f32ba1e0d19a49848d898915", + "revision": "9886340ddc4e46dabe37dac5", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123066,10 +90395,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 411.950,00 IVIP com um rendimento de +8.239,00 IVIP (2,00%) - Y12XDT27", - "revision": "37ec442b5d8541d1ad045f78", + "revision": "5c60b1479c254148895a9a74", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123085,24 +90414,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "costs": [] }, - "revision": "2cf28b4e444349398da7252f", + "revision": "334077ea621d430caffb0e69", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123110,10 +90427,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1696472422028", - "revision": "f745af9f766c411899ab3585", + "revision": "f5f7bd925a6a4947a5119d48", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123129,18 +90446,9 @@ "total_amount": 200000, "id": "1696472422028", "history_id": "1696472422028", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-10-05T02:20:22.028Z", + "date_last_updated": "2023-10-05T02:20:22.028Z", + "date_of_expiration": "2023-11-05T02:20:21.996Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -123148,10 +90456,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "81870e10d0be416098cc86cd", + "revision": "1ea7da51f5e94fd5806a67b4", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123159,10 +90467,10 @@ "content": { "type": "STRING", "value": "Investimento de 200.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "756851b5642845e8a2821730", + "revision": "bc92b6a692054143a2653ec7", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123170,10 +90478,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "911f552953744f3fb32e9e9a", + "revision": "d3b1bd45a608400ca771ee70", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123181,10 +90489,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2cb7e8db6a714389aa35ca78", + "revision": "e6f7e7a0b16e4ff88fd05f72", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123193,24 +90501,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "limitUsed": 0 }, - "revision": "ca2cecce24a64ae99d4e0db5", + "revision": "ff8e8639b21847fa94036d0e", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123222,24 +90518,12 @@ "dateValidity": 1684358980805, "totalValue": 82.79825942258582, "currencyType": "USD", - "balancesModificacao": "2023-10-07T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "balancesModificacao": "2023-10-07T03:00:00.000Z" }, - "revision": "1c22897041da46128ceb8fcd", + "revision": "82e4dc942af64af89ac7ba26", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123249,24 +90533,12 @@ "value": { "available": "2112486.00000000", "symbol": "IVIP", - "value": 239.28, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "value": 239.28 }, - "revision": "48dc5abbaf7e4cb2b15acfdf", + "revision": "bdb03a849d9343f68ec16032", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123274,10 +90546,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d07f88947cba4da59882ce06", + "revision": "3bdcdf30117e4041a245c0dd", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123285,24 +90557,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "costs": [] }, - "revision": "5820507bbbaf42088add2240", + "revision": "17249d538ed3439990fc9a69", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123317,18 +90577,9 @@ "total_amount": 5000, "history_id": 1689206251825, "id": 1689206251825, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-07-12T23:57:31.825Z", + "date_last_updated": "2023-07-13T00:14:19.742Z", + "date_of_expiration": "2023-08-11T23:57:31.825Z", "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", @@ -123338,10 +90589,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3b3eac34efd845caaa963a88", + "revision": "face888afd77435fba02e3c8", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123349,10 +90600,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 5.000,00 para a carteira iVip 1429.7769.3689.8883-40", - "revision": "a63ecc8965064f7eb02d580c", + "revision": "4e8f9d8cc3864b499b18a692", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123370,24 +90621,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "costs": [] }, - "revision": "730ca85515ad400ba3a8031a", + "revision": "24f71a9743124b5b92012110", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123403,18 +90642,9 @@ "original_amount": 2112486, "total_amount": 2112486, "id": 1689208259450, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-07-13T00:30:59.450Z", + "date_last_updated": "2023-07-13T00:30:59.450Z", + "date_of_expiration": "2023-07-13T00:30:59.450Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -123423,10 +90653,10 @@ "history_id": 1689208259450, "description": "Compra de 2.112.486,00 IVIP por 5.000,00 BRL" }, - "revision": "e1641a0710554cd48aa85bde", + "revision": "0aae8406a9324fe6a5dce338", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123434,10 +90664,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e5c79851522748fd81c16af3", + "revision": "1d584728fa2b4ea7b0ef14a2", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123445,10 +90675,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "16cef4248a4d4e5b92e16d26", + "revision": "ed017b1bb7db40a2bddbc4c9", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123457,24 +90687,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "limitUsed": 0 }, - "revision": "13c1bc7458f443d4953cfaf1", + "revision": "99ba1781c2f1406e84ec4a72", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123486,24 +90704,12 @@ "dateValidity": 1689206116426, "totalValue": 1030, "currencyType": "USD", - "balancesModificacao": "2023-10-12T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "balancesModificacao": "2023-10-12T03:00:00.000Z" }, - "revision": "5aa07e57a6d44e73899d4186", + "revision": "6cb37b834aad472da77ab70a", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123511,10 +90717,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7dd75cd73e244a41921ace2f", + "revision": "e9be060be7f54101ac53a623", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123522,10 +90728,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d4a27686478a490eb043de29", + "revision": "e9f126d3dc9343fcb4a3caca", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123537,24 +90743,12 @@ "dateValidity": 1679078857171, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": "2023-10-07T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "balancesModificacao": "2023-10-07T03:00:00.000Z" }, - "revision": "d01ae268adf14a14bcd4c61c", + "revision": "3c136cd3dfc2492280d5cb28", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123562,10 +90756,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ea4e9284fddb41a4bf25e971", + "revision": "dcf96d3b87bd44be809814e4", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123573,10 +90767,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "81671ed0aa204db28c2662f7", + "revision": "266d726b4b734532943a6a61", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123587,24 +90781,12 @@ "dataModificacao": 1679356008303, "dateValidity": 1679356008303, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "currencyType": "USD" }, - "revision": "4538b3c02989462e9a633db7", + "revision": "422c2688b9d3464fb982220d", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123612,10 +90794,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3fbfed37d81d441689d23539", + "revision": "84d040f7bfcc4034a4d5aa6d", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123624,24 +90806,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-17T18:47:13.538Z", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + ".val": "2023-10-17T18:47:13.538Z" }, - "revision": "23025c5ff9104a64a3b8f70f", + "revision": "accb2b6fc38f451385cf804f", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123657,24 +90827,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "costs": [] }, - "revision": "e09a0151b6cd409c8ebd990d", + "revision": "fe048360112149c0997d9ef6", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123682,10 +90840,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/146193775313990370/history/1694976433538", - "revision": "58aa158cdc3a4c61b47b19f5", + "revision": "e2eb1a49568e4c50b5e88804", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123700,29 +90858,19 @@ "total_amount": 20, "id": "1694976433538", "history_id": "1694976433538", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-09-17T18:47:13.538Z", + "date_last_updated": "2023-09-17T18:47:13.538Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "currency_id": "BRL", "base_currency_id": "BRL", - "status_detail": "pending_waiting_payment", - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "status_detail": "pending_waiting_payment" }, - "revision": "e2fc06836bbd4146b543dc1a", + "revision": "f62a86b55b63405688270a42", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123730,10 +90878,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 1461.9377.5313.9903-70", - "revision": "d3d7b2c812124e2d8d28851a", + "revision": "6203d33a50a9492aa39861e3", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123741,10 +90889,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d8c27c2efa8b453aa489e6e7", + "revision": "d73059d706de4cbfb0f91319", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123752,10 +90900,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a7ad1ae7a888499ab8625995", + "revision": "ce2db9e7fbbc4cff980ba192", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123764,24 +90912,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "limitUsed": 0 }, - "revision": "ab727bec5653498581970a42", + "revision": "6f3210091055472b9612c652", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123792,24 +90928,12 @@ "dataModificacao": 1694975442899, "dateValidity": 1694975443028, "currencyType": "USD", - "balancesModificacao": "2023-10-10T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "balancesModificacao": "2023-10-10T03:00:00.000Z" }, - "revision": "ddaf5f2337994264ac8e5597", + "revision": "bd6563bab96a46e498cb3ffe", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123817,10 +90941,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fa28e2976444458a80aadf47", + "revision": "c9231364e1744579b42b7663", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123828,10 +90952,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "189623d5284e43dca92203f2", + "revision": "732549acfb25400b91fa7e31", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123839,10 +90963,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0639827b748b4673a8721c74", + "revision": "c63baf4a737d45d78faebaf0", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123851,24 +90975,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "limitUsed": 0 }, - "revision": "a0652f789ad848f19f868a24", + "revision": "42ab7fdadb594cb08e6593b2", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123879,24 +90991,12 @@ "dataModificacao": 1677393088450, "dateValidity": 1677393088450, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "currencyType": "USD" }, - "revision": "fc70784bf3024aa6a350779e", + "revision": "fb4941402afa4d7f9463818b", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123904,10 +91004,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4516ffe90460452fab0bd132", + "revision": "07d3477500b043d5a6bd58d8", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123915,10 +91015,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "80d43a1a8da04212aab8d674", + "revision": "d6ca3d195e8c48979e85eb9b", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123929,24 +91029,12 @@ "dataModificacao": 1677820583824, "dateValidity": 1677838584623, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "currencyType": "USD" }, - "revision": "130d6c25a4ac44548d6fd3d3", + "revision": "6c5670e06c71469b8f9bb42b", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123954,10 +91042,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4fffc7cc125b49938a117d28", + "revision": "41ca317f99984735b151edf8", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509605, + "modified": 1701463509605 } }, { @@ -123967,24 +91055,12 @@ "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", - "amount": 0.9900000000000001, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "amount": 0.9900000000000001 }, - "revision": "3d443f743a354b90a5480f23", + "revision": "cd08031ecf314fd7b7ae3571", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -123992,10 +91068,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f8bda5865f1f459392d4ee0b", + "revision": "da59dc9f9ec24ac2a09e75c1", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124003,24 +91079,12 @@ "content": { "type": "OBJECT", "value": { - "account_holder_name": "IVIPCOIN LTDA", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "a3599e254c6a431187e62a0c", + "revision": "79cd12c36e314c56afb27683", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124028,10 +91092,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2f02411b49904a96ae81be60", + "revision": "a2257367f3694ef9a88f3012", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124043,24 +91107,12 @@ "net_received_amount": 0, "total_paid_amount": 100.99, "overpaid_amount": 0, - "installment_amount": 0, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "installment_amount": 0 }, - "revision": "4f7cd31846194e8d861afbfa", + "revision": "7521801d68cf441e970fcfca", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124068,10 +91120,10 @@ "content": { "type": "STRING", "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter5566184887363046119", - "revision": "44c265386bf5423d8fe9f0e8", + "revision": "26e39bb96d8e4802846bd9a3", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124079,10 +91131,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55661848873/ticket?caller_id=1310149122&hash=e13553d1-ab9f-45c3-ab92-c23df003b316", - "revision": "1e78962342524ec9bd0c5718", + "revision": "9c48d258d81a4b97956c9576", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124090,10 +91142,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIxklEQVR42u3dW27kNhAFUO5A+9+ldqAgwWDcYt2inGSAZMSjD8N2d0uH/Veo17h+o+sctLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/Xjvm6/jxv69Xp09Pb/nzdrePnT9+/PW/9KAfb6mfnRi0tLS0tLS0tLS0tLSbaI9C+fztvAO+7nT+PNBxf+zxeaDpBOW4t49lFS0tLS0tLS0tLS0t7QbazwCyGqdI8MudT3COmDyc8Om5hUFLS0tLS0tLS0tLS7ut9rrHiV/P+SyGrDm9+mr+87pHm7S0tLS0tLS0tLS0tLRzNFcVJQicqi5v13TclC2c3kxLS0tLS0tLS0tLS7u3Ngd36bFnaVeb7l5eGE+ydfEnLS0tLS0tLS0tLS3t+7VpSsl/8ONfzFShpaWlpaWlpaWlpaX9nbXrq40EP8PL8x4O1vfloSVNOWa5aGlpaWlpaWlpaWlp365NRZNnl787Fy1xKRYtB5qGTl5l/OQyu0dLS0tLS0tLS0tLS/s+bZqpX0aQXPdOtdQSd3WD+tMs/yusZhvdkH9aWlpaWlpaWlpaWtp3a9M+tTKeP0WCdTL/p+JaJAXLhMp6PlpaWlpaWlpaWlpa2n20JSZsRz5eJbtX7n6G7F5y1+8hP42WlpaWlpaWlpaWlnYD7Xqp2qRIh0xPbF9t84YJREtLS0tLS0tLS0tLu4W2tL+lBreauitpuqtPzo28JeDMtwp4WlpaWlpaWlpaWlra12tzSJfmhtQl1qnBbZHEm2o82y68g5aWlpaWlpaWlpaWdidt+i0PFLm6+SJX2KA9FWHeyjHLWJIR8LS0tLS0tLS0tLS0tFtop0RcKq6s5FIbeS22W6cCzul9Jaw9aGlpaWlpaWlpaWlpt9O226jTMJJ0vuJJceLolq+NUJ1JS0tLS0tLS0tLS0u7lTa1xKXgLg/gb5N9YzGSMoWmz7vhaGlpaWlpaWlpaWlpX6UtY0RS+m3cb3KWmsyQkusHRz5VbNLS0tLS0tLS0tLS0u6oTbm1Zgxkvh7Hl5ThlMcib0hLS0tLS0tLS0tLS7uT9pa/Sy1x7ZrqHGM2icI06ySlAsNESVpaWlpaWlpaWlpa2ndrz9yklu9UM3llT9qqwa3L343pLs8xLy0tLS0tLS0tLS0t7Xu0tzhx2oRWKjHHvYXtDJ5RutxKiFhnUE5B5UPMS0tLS0tLS0tLS0tL+yJt7k9r/ixjRL7XSdfypshyeoGWlpaWlpaWlpaWlnYL7VNe7gi3axJxeV7JVTrf2gLO6RuhpaWlpaWlpaWlpaXdQpsfNsLwxxT6pa65NhU44Ztk37IbjpaWlpaWlpaWlpaW9o3aEUbsj/znFOtN8V+JOx/zd0Vbv0NaWlpaWlpaWlpaWtottGkESUrnPc3tv40ladvk0uK29uG0tLS0tLS0tLS0tLTv1x6hfDL1sV0lEZdLL2sjXAovF+MnL1paWlpaWlpaWlpa2r20zT3TFuxSG3nmrrnS/nZ2GcTHjjtaWlpaWlpaWlpaWtq3a9NkkLJy7SypuzQpsm2Ty+1v6bnjcaYKLS0tLS0tLS0tLS3t27Sju6aKyDKC5OgmnNQzpwg0V11OBZe0tLS0tLS0tLS0tLQbaEs0dy4ptZnt6q5Uibmu4pyCT1paWlpaWlpaWlpa2p20V7nx1A2XR5Uc3XNSBDrl+VZfwUMukpaWlpaWlpaWlpaW9lXa6/6OM8wmuUJZ5AhxZ5MefKqwTL/R0tLS0tLS0tLS0tLuo20WrS0630anbZaqpVxiXpn9rapLWlpaWlpaWlpaWlral2mvboL/Y/lk6WhrtmBPKwByyecoAyZpaWlpaWlpaWlpaWm30JZd1bXwcepjSzm4Endez0vVpuBzlOJPWlpaWlpaWlpaWlranbQ16ktTStYJwLIj+wyfGN1q7ZOWlpaWlpaWlpaWlnZr7ehWrl0hxrzypJF2UXYbi6bvgZaWlpaWlpaWlpaWdjttEwSmELG0xNXutZSrS0NQ0vm6WZW0tLS0tLS0tLS0tLRv1n6+N5VKNh1tizLLUXrb8oGOru5z+gQtLS0tLS0tLS0tLe27tW3727I/beSM37FYmT1l8koAWb85WlpaWlpaWlpaWlraLbQpMGwjxkUR5hG65lI9Z1qPPb16PGT3aGlpaWlpaWlpaWlpX6VNe9LKp2rur0SHacxJwre72BZBJS0tLS0tLS0tLS0t7eu1i23UzWTHfMjmpK1sijG/OVOFlpaWlpaWlpaWlpb2Zdo2sVfzbe2Ukm/MHClB5QivHrHGk5aWlpaWlpaWlpaWdgPtFEo2JZCLR5y54HL6CtIMyvSl0dLS0tLS0tLS0tLS7qNNDWnT59NU/24Afwwln7ZlX4tcIi0tLS0tLS0tLS0t7fu1TQy3HkbS1mmWCLQa2xuUWlBaWlpaWlpaWlpaWtoNtG37W44YU21kXWxdijBTVFr75765s5uWlpaWlpaWlpaWlvaN2tHNh2xCyacwtNZVTrJ1KElLS0tLS0tLS0tLS7uPNl2L4Y9tiHiUz+aEXTME5TPtN120tLS0tLS0tLS0tLTv1o75Wg3qn4LAVHBZQslUdVnd/2CqPy0tLS0tLS0tLS0t7Vu0Rwggm/LJsii7ni8VV5bzTVHp34kiaWlpaWlpaWlpaWlpX6ld1FqO0Op2hM9WSj7p6gRp7xotLS0tLS0tLS0tLe3e2jTycQr42mUAeWdbM8a/nJSWlpaWlpaWlpaWlnZvbTti/7on4s4wXySFg7V1rg0bH3Z209LS0tLS0tLS0tLSvlK7xufosM39jfvu61VfXOmue551SUtLS0tLS0tLS0tL+z5tLXzMTWpnSAA+FmF+5u+a0LQ0xy2rLmlpaWlpaWlpaWlpad+m/f9ftLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/TPsHcCgepoe7LrMAAAAASUVORK5CYII=", - "revision": "75574ce6d20748dabc3c0c66", + "revision": "b9df56cf30204588ad3d4514", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124101,10 +91153,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "c086cae4e2a143b0bdaad19f", + "revision": "cb9683e3f7c9466286c721c4", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124119,28 +91171,19 @@ "total_amount": 100.99, "history_id": 1678652275580, "id": 55661848873, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-03-12T16:17:56.428-04:00", + "date_last_updated": "2023-03-13T16:21:02.000-04:00", + "date_of_expiration": "2023-03-13T16:17:56.084-04:00", "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", "status_detail": "expired", "currency_id": "BRL" }, - "revision": "bd3dabff69f5401dad65ce51", + "revision": "8077d4edf42f40a08b8f9ad8", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124148,10 +91191,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1470.0699.3684.7822-00", - "revision": "6c2de9afa762481586f78f71", + "revision": "980c47aaeee34e6b953d0248", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124159,10 +91202,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "733ea9518f794e9c8d8a1d86", + "revision": "617ee839bd1849d49dd974ea", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124173,24 +91216,12 @@ "dataModificacao": 1678651931786, "dateValidity": 1678669931823, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "currencyType": "USD" }, - "revision": "bde0916fe7494e64a01e1d47", + "revision": "c02f51aa96bd465984e061b2", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124198,10 +91229,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0c6ec732da524a6ca4c629ee", + "revision": "8b5825c4177a4b39844be0c7", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124209,10 +91240,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a8afe19aa7164c039b23dcc2", + "revision": "3a28afabeb9e41ab97e3fb82", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124220,10 +91251,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "735fcca5f23f4bbea0862ea7", + "revision": "f88e61046253495cb3237417", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124232,24 +91263,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "limitUsed": 0 }, - "revision": "490a0d114f4b496eba6090c4", + "revision": "6587298118184a7cb7b57f33", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124261,24 +91280,12 @@ "dateValidity": 1685823720836, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "balancesModificacao": "2023-10-09T03:00:00.000Z" }, - "revision": "3903230eb15e496481c64c1f", + "revision": "7ed5fbddfba24deea54a545c", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124286,10 +91293,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "24578b6ab7ab4e989a4eee69", + "revision": "b8a392e8d5e340ee8ccb0d7f", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124297,10 +91304,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "40d5cca728224ef38d5e3c92", + "revision": "040e41fb900a4b3d83dcf87f", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124311,24 +91318,12 @@ "dataModificacao": 1678155962477, "dateValidity": 1678510544290, "totalValue": 0, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "currencyType": "USD" }, - "revision": "971b63dd30c14615a56c32f5", + "revision": "c104fbf18df14b6a8fefb141", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124336,10 +91331,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "011258245d714241b6777ad1", + "revision": "d12f8adf199742d0908f0da4", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124347,10 +91342,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f146be9342c54ef49450e581", + "revision": "b08d37f353c14a2e9630e06b", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124360,24 +91355,12 @@ "value": { "dataModificacao": 1696981676486, "dateValidity": 1696981676516, - "currencyType": "USD", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "currencyType": "USD" }, - "revision": "0af41e29bde844e1ac6b75dd", + "revision": "b1c9c825fb39466283bfa841", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124385,10 +91368,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6a527785dbb74a62a1a589f3", + "revision": "bbc390d6aad143babf50d2ef", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124397,24 +91380,12 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-05T23:48:45.001Z", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + ".val": "2023-10-05T23:48:45.001Z" }, - "revision": "7d346e6dcab24c39a7c53b7f", + "revision": "357e7385ffce4479aa20809a", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124430,24 +91401,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "costs": [] }, - "revision": "0005ac4874304d25a6b610b1", + "revision": "fa8ff75ab45244ad8bb8d4fd", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124455,10 +91414,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/152557644739400160/history/1693957725002", - "revision": "bc16d7a1b1cc46ef9e076534", + "revision": "7f472a7c09874750a9c39330", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124473,14 +91432,8 @@ "total_amount": 1000, "id": "1693957725002", "history_id": "1693957725002", - "date_created": { - "type": 6, - "value": 1701459383544 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383544 - }, + "date_created": "2023-09-05T23:48:45.002Z", + "date_last_updated": "2023-09-06T00:56:31.127Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -124490,16 +91443,12 @@ "date_approved": "2023-09-06T00:56:31.127Z", "money_release_date": "2023-09-06T00:56:31.127Z", "money_release_status": "approved", - "wasDebited": true, - "date_of_expiration": { - "type": 6, - "value": 1701459383544 - } + "wasDebited": true }, - "revision": "8e404c332eb94794b6518051", + "revision": "178cfd602ca2422a9bfde985", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124507,10 +91456,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 1525.5764.4739.4001-60", - "revision": "1dc40266c303430bbadee4a0", + "revision": "5b9716befe0341519d258fa3", "revision_nr": 1, - "created": 1701459383544, - "modified": 1701459383544 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124526,24 +91475,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [], - "date_created": { - "type": 6, - "value": 1701459383545 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383545 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383545 - } + "costs": [] }, - "revision": "abd6ab102afe4952853e7ba1", + "revision": "56294c568a1d4398afd78028", "revision_nr": 1, - "created": 1701459383545, - "modified": 1701459383545 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124551,10 +91488,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/152557644739400160/history/1694615393430", - "revision": "70954db8e4cf44898496ebaf", + "revision": "ea31a053c7f247b2ab11459c", "revision_nr": 1, - "created": 1701459383545, - "modified": 1701459383545 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124569,18 +91506,9 @@ "total_amount": 1000, "id": "1694615393430", "history_id": "1694615393430", - "date_created": { - "type": 6, - "value": 1701459383545 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383545 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383545 - }, + "date_created": "2023-09-13T14:29:53.430Z", + "date_last_updated": "2023-09-13T14:29:53.430Z", + "date_of_expiration": "2025-09-13T14:29:53.429Z", "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -124588,10 +91516,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "5fbb2f7c3db943ae84443f56", + "revision": "e80437031d6048de901a229f", "revision_nr": 1, - "created": 1701459383545, - "modified": 1701459383545 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124599,10 +91527,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 13/09/2025 - P9A02KSL", - "revision": "cefde908d2954ef1b399e338", + "revision": "d641cde587bc4b8799833520", "revision_nr": 1, - "created": 1701459383545, - "modified": 1701459383545 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124610,10 +91538,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9fa8de725961411db834e6b7", + "revision": "7e80a9be3c954918a7df84ce", "revision_nr": 1, - "created": 1701459383545, - "modified": 1701459383545 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124621,10 +91549,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "074957312b644224b8c5d132", + "revision": "275d2e48281049dca6492350", "revision_nr": 1, - "created": 1701459383545, - "modified": 1701459383545 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124633,24 +91561,12 @@ "type": "OBJECT", "value": { "approvedLimit": 0, - "limitUsed": 0, - "date_created": { - "type": 6, - "value": 1701459383545 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383545 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383545 - } + "limitUsed": 0 }, - "revision": "baab15a918a04c078b8a5774", + "revision": "e84d574397aa4eaeb60c84e6", "revision_nr": 1, - "created": 1701459383545, - "modified": 1701459383545 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124661,24 +91577,12 @@ "dataModificacao": 1693436516681, "dateValidity": 1693436516720, "currencyType": "USD", - "balancesModificacao": "2023-09-19T03:00:00.000Z", - "date_created": { - "type": 6, - "value": 1701459383545 - }, - "date_last_updated": { - "type": 6, - "value": 1701459383545 - }, - "date_of_expiration": { - "type": 6, - "value": 1701459383545 - } + "balancesModificacao": "2023-09-19T03:00:00.000Z" }, - "revision": "eaf3a428c4af4a1f8a562b4f", + "revision": "5ac3040ecb8241c6b54be06f", "revision_nr": 1, - "created": 1701459383545, - "modified": 1701459383545 + "created": 1701463509606, + "modified": 1701463509606 } }, { @@ -124686,10 +91590,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "533a7dba9bf4449d9b381117", + "revision": "4fd098464d9041a295f6a432", "revision_nr": 1, - "created": 1701459383545, - "modified": 1701459383545 + "created": 1701463509606, + "modified": 1701463509606 } } ] \ No newline at end of file diff --git a/test/resultWithPath.ts b/test/resultWithPath.ts index de890fcd..283f6429 100644 --- a/test/resultWithPath.ts +++ b/test/resultWithPath.ts @@ -120,7 +120,7 @@ function transform(json: Record, prefix: string = ""): Result[] path: `${prefix.replace(/^\//, "")}`, content: { type: getType(nonObjectKeys), - value: filterKeysFromObject(otherObject, ["date_created", "date_last_updated", "date_of_expiration"]), + value: filterKeysFromObject(otherObject), revision: generateShortUUID(), revision_nr: 1, created: Date.now(), @@ -128,21 +128,6 @@ function transform(json: Record, prefix: string = ""): Result[] }, }; - nonObjectResult.content.value.date_created = { - type: 6, - value: Date.now(), - }; - - nonObjectResult.content.value.date_last_updated = { - type: 6, - value: Date.now(), - }; - - nonObjectResult.content.value.date_of_expiration = { - type: 6, - value: Date.now(), - }; - if (nonObjectResult.path) { results.push(nonObjectResult); } @@ -151,16 +136,33 @@ function transform(json: Record, prefix: string = ""): Result[] } } - function filterKeysFromObject(obj, keysToFilter) { + function filterKeysFromObject(obj) { const filteredObject = {}; + + function checkIsValidDate(string) { + // Expressão regular para validar o padrão da string de data + const datePattern = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d{3})?(-\d{2}:\d{2})?$/; + + if (datePattern.test(string)) { + let date = new Date(string); + // console.log(date.getTime()); + return !isNaN(date.getTime()); + } + + return false; + } + for (const key in obj) { - if (obj.history_id !== undefined) { - if (!keysToFilter.includes(key)) { - filteredObject[key] = obj[key]; - } + if (checkIsValidDate(obj[key])) { + let newDate = new Date(obj[key]); + filteredObject[key] = { + type: 6, + value: newDate.getTime(), + }; } return obj; } + return filteredObject; } From de6b4e71ffe75b035fc8845ac778dc1219612113 Mon Sep 17 00:00:00 2001 From: Pedro Henrique Feitosa <50965091+pedrofeitosa97@users.noreply.github.com> Date: Fri, 1 Dec 2023 18:25:50 -0300 Subject: [PATCH 21/36] Fix: Fixed bug that some dates dont convert to object. --- test/outputResultWithPathJSON.json | 56149 ++++++++++++++++----------- test/resultWithPath.ts | 34 +- 2 files changed, 34397 insertions(+), 21786 deletions(-) diff --git a/test/outputResultWithPathJSON.json b/test/outputResultWithPathJSON.json index 648772c1..4e4f765b 100644 --- a/test/outputResultWithPathJSON.json +++ b/test/outputResultWithPathJSON.json @@ -8,10 +8,10 @@ "symbol": "BRL", "value": 494.23 }, - "revision": "73b1a09ebdc84a5b93134270", + "revision": "7531bc0c66f847da8413e498", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820478, + "modified": 1701465820478 } }, { @@ -23,10 +23,10 @@ "symbol": "IVIP", "value": 158.48 }, - "revision": "1eea2225ffa94663a77fd5a4", + "revision": "ca0f59e5e087425f91745173", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820478, + "modified": 1701465820478 } }, { @@ -34,10 +34,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "04155bce69d9448bb8c7dd66", + "revision": "0993a6dd6da848d3acd89c27", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820478, + "modified": 1701465820478 } }, { @@ -47,10 +47,10 @@ "value": { "content": "23796927400000606493380261019404283200633330" }, - "revision": "8ed9d152867a4613b0c5f93b", + "revision": "f01a33e59fcd477cbb6123e0", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820478, + "modified": 1701465820478 } }, { @@ -62,10 +62,10 @@ "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "e3c93784066d4828aeea2472", + "revision": "17a09f2caf014114b4c0cb7c", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820478, + "modified": 1701465820478 } }, { @@ -83,10 +83,10 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "ea503885dc5f41a3b8aebb35", + "revision": "94341b6b6806427d8959701f", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820478, + "modified": 1701465820478 } }, { @@ -94,10 +94,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1311772470/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772470&payment_method_reference_id=10194042832&hash=af674271-1e58-4fd7-be5a-99a2285e1e5a", - "revision": "9b4c3a61b71d4520a0240d70", + "revision": "ae33173fc33849f096e93bba", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820478, + "modified": 1701465820478 } }, { @@ -105,10 +105,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "cedbf51c205e4ae3a67db480", + "revision": "4858a98192e34f549141ab68", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820478, + "modified": 1701465820478 } }, { @@ -122,9 +122,18 @@ "original_amount": 603, "total_amount": 606.49, "id": 1311772470, - "date_created": "2023-02-23T03:44:23.122-04:00", - "date_last_updated": "2023-02-23T03:44:23.122-04:00", - "date_of_expiration": "2023-02-27T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1677138263122 + }, + "date_last_updated": { + "type": 6, + "value": 1677138263122 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -132,10 +141,10 @@ "currency_id": "BRL", "history_id": "1677138262468" }, - "revision": "baf913eab78d436ebf3049fa", + "revision": "f1a4a7f9b2074f23b8c4a6c1", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820478, + "modified": 1701465820478 } }, { @@ -143,10 +152,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 603,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", - "revision": "d99e2526f6fa49b78219a360", + "revision": "dad0148ae27b4367a123963b", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820478, + "modified": 1701465820478 } }, { @@ -156,10 +165,10 @@ "value": { "content": "23799927400000595493380261019404380900633330" }, - "revision": "ba1a7b0111044e5db35a24ab", + "revision": "f76d59f9a90e45a780b43d67", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -171,10 +180,10 @@ "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "4db84344d2f44001a8caaa4c", + "revision": "6e5fe2ee906046f7a55e57ec", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -192,10 +201,10 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "d86a41cc47b24285a91c2656", + "revision": "e79d5eacde7b4806a9313004", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -203,10 +212,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1311772488/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772488&payment_method_reference_id=10194043809&hash=73ef0e48-e863-4567-bdcb-8711a40d76b2", - "revision": "40d0899be7254f189410b003", + "revision": "080b7fb216d14dfc968167de", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -214,10 +223,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "87e881e903824267a9f179cd", + "revision": "1b1e06224b954f27a9d2f04c", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -231,9 +240,18 @@ "original_amount": 592, "total_amount": 595.49, "id": 1311772488, - "date_created": "2023-02-23T03:50:56.477-04:00", - "date_last_updated": "2023-02-23T03:50:56.477-04:00", - "date_of_expiration": "2023-02-27T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1677138656477 + }, + "date_last_updated": { + "type": 6, + "value": 1677138656477 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -241,10 +259,10 @@ "currency_id": "BRL", "history_id": "1677138655788" }, - "revision": "2d60769137fa4914875d110c", + "revision": "baf4a01a2f2644268827d65d", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -252,10 +270,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 592,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", - "revision": "0b3a784db3254f8bbc07ff4c", + "revision": "2924db24429b46bd9a2e6aaa", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820478, + "modified": 1701465820478 } }, { @@ -263,10 +281,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "31d8c2c537124c1c86a36c97", + "revision": "c85ce7e933364dfe95f75ea5", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -276,10 +294,10 @@ "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "ea99f94705d243dba0c002c9", + "revision": "f03fe3ef2d044f0fab6c3c4a", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -287,10 +305,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2c0f3f0be9e54b84bb8f4ded", + "revision": "45aacd589db547cebf43e494", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -302,10 +320,10 @@ "label": "Taxa de 0.99%", "amount": 4.95 }, - "revision": "fbece02870ae45f88d6fe3d1", + "revision": "966eba807b874ed4aa101a05", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -319,10 +337,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "19ae04c039024409abb3b62f", + "revision": "b0dfc4694d4949b197ba3b25", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -330,10 +348,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406504.955802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter1312722165630407FD", - "revision": "d8204627c68d475fac0a8b98", + "revision": "d410c0a3a2d74bf89ddf92b6", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -341,10 +359,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1312722165/ticket?caller_id=1310149122&hash=db7e8cb4-20ed-4664-aa3c-fa50b3f2d6e8", - "revision": "3d1c8a2a9f1748f9be01f2c0", + "revision": "d33e10de8dc04b6d8bfc6274", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -352,10 +370,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dQY7kNgwFUN3A97+lb+Agi8zY4qeqkgyCjPxq0ehu29Jz7QhS5Lh+o885aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXbMn+PP/x0/Lhw/7vvrwp/P3y78XOX+2znGc8fxc9H7Ao8LE4OWlpaWlpaWlpaWlvYl2mnbn4s8ANN9d0V6q2nb826cLty/h6SipaWlpaWlpaWlpaV9gXYKIHN02ER9047liRqBtvtmBi0tLS0tLS0tLS0t7Uu1Ics25++mz6d0Xo1Kyw9aWlpaWlpaWlpaWlraEAlO/7vn6prPnXeWMHRa4FMwS0tLS0tLS0tLS0tL+wJtwi9qMq+QpjtK2WZ5qyMcwDuWxZ+0tLS0tLS0tLS0tLSv0LZdSv7bH/+2pwotLS0tLS0tLS0tLe1vqs2f81lIeZaeI/mo25UbTKbeJPcfnyy0tLS0tLS0tLS0tLR7a5tjbevDbDkCnV5oPFN8R/4y2vejpaWlpaWlpaWlpaV9hTb1F8ld+Ef5szQjaUoq7xulw3GpWPOipaWlpaWlpaWlpaV9ibYEhnWo2lQgOe29ePYM6bwrD9luT9fR0tLS0tLS0tLS0tLurk2bpXNx7adN8U15vil5OBlLAvCipaWlpaWlpaWlpaV9jbaumZJ9ZQp2msp2lsb/Ye+xrLD81FOFlpaWlpaWlpaWlpZ2P2065XaU5Fx7Gi49kfN8o0sFnuFbumhpaWlpaWlpaWlpaV+jPT6tubil7jM1N0lZu9RMsgSzBy0tLS0tLS0tLS0t7Wu0NZ3XduFPQWWeeD3Kn+U10m4jtpqkpaWlpaWlpaWlpaXdWZvSdCkwTJ3578+eZbM8FqDpNzlZaGlpaWlpaWlpaWlpX6bN09FS/u7MOb3y9ke5uf0KpndeVl3S0tLS0tLS0tLS0tJuqi1ptWaI9RQdLppEHiEgrWfq0hf0dcxLS0tLS0tLS0tLS0u7mzYHhmmlx3Ipp9fGiWWjM2T8TlpaWlpaWlpaWlpa2hdqp+aPI/+WaiMnQGo3kjpK5rEAX9aI0tLS0tLS0tLS0tLSbqQtgeGj50hJyR0hvJwyfmWzUbqepBizHbdNS0tLS0tLS0tLS0u7u/ZYpvhSV5EUcrah5JGPun0Rn9LS0tLS0tLS0tLS0r5Hm0+lHTlX1xZStqOw8xG7Ky/1OYqkpaWlpaWlpaWlpaXdSpvrL5uyyHSOLeXq8ty1qepy5MReiGNpaWlpaWlpaWlpaWm3164XTiFnexBukeKrlZiL16WlpaWlpaWlpaWlpX2fNrlbYyrHvC9Vo8gSqVZy/qpoaWlpaWlpaWlpaWl315Ym+nUK9tFVTp5d3Fl7nZSrV5iWXVOLtLS0tLS0tLS0tLS0u2vzEOsRyieP/GrpSFzp5d/MyJ4C13SVlpaWlpaWlpaWlpZ2f+0oLfsXFZFpYPUo8V9bZpneOQ3U7rJ7tLS0tLS0tLS0tLS0+2nzwOrpXNy5GHFdjE3VZTk6t4o7P+QiaWlpaWlpaWlpaWlpt9JeeUL1p6b8q+nW5Thd09ekxJPjb/RUoaWlpaWlpaWlpaWl3UWbKidHmLvW1GSmksopTkypu3U55jcxLy0tLS0tLS0tLS0t7Uba8ttVyixLsq/J33Wd+furqUXKMoqkpaWlpaWlpaWlpaXdStsOQbvHhFNHyatk8iZ3KrMsTxyh9HI8T83R0tLS0tLS0tLS0tK+QJsUOeo7+/RbvHkq6pxyeuXmdkoALS0tLS0tLS0tLS3tC7Rl4vVRXqPk4K5FW5JplfI9fNfun5aWlpaWlpaWlpaW9iXaqzu4dpVHU+VkygKW0PQMj6W+lDnnSEtLS0tLS0tLS0tLu7N2WjNHkRWQ84FpbNr5VYVlO4uNlpaWlpaWlpaWlpZ2d20bRZY2kM3s62mL+31Xzt/lqstHtElLS0tLS0tLS0tLS/sm7Zll6ZBaORw3wkG46eoR0nln19KkTm+jpaWlpaWlpaWlpaXdXVvuOEO3xyNUSY7liOv0Vov83Zji0+eL09LS0tLS0tLS0tLS7qxN7nSY7dM+TWQZeo6MnCMcoU8KLS0tLS0tLS0tLS3tC7S5IvIqW5Szclf5reQIR6nEzK/R9jChpaWlpaWlpaWlpaV9gTZPrT5LcLfoQ1ILOMu5uLOUcpZw9QwlmrS0tLS0tLS0tLS0tK/QXiH91tRftquHLebQdHq/dhZb+B8tLS0tLS0tLS0tLe322qnm8f7olRvwT6HkPQKt75fXezyRelDS0tLS0tLS0tLS0tK+QrvIra06O5aYMF04ywG3FEpOGcTPNaK0tLS0tLS0tLS0tLRbaVM4OG0xBZppslpeYHRdSo4wKLuJVGlpaWlpaWlpaWlpaV+ibeol2xHXKZ23OFiXcn9fFGHS0tLS0tLS0tLS0tK+RztCEm+UtiQ5/jvKzLaSzrsyJceOpbckLS0tLS0tLS0tLS3tztoUMaZh1xMvB5/JWDcqzUjOUqfZRZG0tLS0tLS0tLS0tLTbaseTlxqKtA39z9F8ju7mo3Sj/LLqkpaWlpaWlpaWlpaWdj9t+qTYcb1w7ihZe/6nTij5xN1FS0tLS0tLS0tLS0v7Em0O/Y6culs0k2zGXi+iyFWJ5ueYl5aWlpaWlpaWlpaWdh9tivVSQ5F6c+rCPzUomRZt8V9HkbS0tLS0tLS0tLS0tFtqPwWQj8LMdFaujUVzGNo0opwstLS0tLS0tLS0tLS0b9ee4SBc8y6pOnPqOZLx1z/I7tHS0tLS0tLS0tLS0r5AW/9Myb42z1dCydrSJM3c7r4RWlpaWlpaWlpaWlra7bUL/Hgea0s7HlmbajKnVyvNJHPISUtLS0tLS0tLS0tLu7e2Fj7mCC/Ff+f3wWeKNu//mzpU0tLS0tLS0tLS0tLSvkX7///Q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v4y7R8J/gb3YnjEPQAAAABJRU5ErkJggg==", - "revision": "ef3292890f794c5ea05072ab", + "revision": "66feefc2406d48a6928eb1e5", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -363,10 +381,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "62fbb5d7c9ac4ac2a8245eab", + "revision": "f6006460bf774a3588734827", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -380,9 +398,18 @@ "original_amount": 500, "total_amount": 504.95, "id": 1312722165, - "date_created": "2023-02-23T04:06:05.681-04:00", - "date_last_updated": "2023-02-23T04:06:05.681-04:00", - "date_of_expiration": "2023-02-24T04:06:05.440-04:00", + "date_created": { + "type": 6, + "value": 1677139565681 + }, + "date_last_updated": { + "type": 6, + "value": 1677139565681 + }, + "date_of_expiration": { + "type": 6, + "value": 1677225965440 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -390,10 +417,10 @@ "currency_id": "BRL", "history_id": "1677139564865" }, - "revision": "a5400310e0e64cf5b4961063", + "revision": "391ccfb205fa416b84a772ac", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -401,10 +428,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "767ea36974b840a193caa5d9", + "revision": "dbe7c8aa461d4713a2ba5d17", "revision_nr": 1, - "created": 1701463509505, - "modified": 1701463509505 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -416,10 +443,10 @@ "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "d04cc4d27946437692353a3e", + "revision": "71bfcc61df4b4bcfa051e831", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -427,10 +454,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "aca56ae7a60b43398e6bf986", + "revision": "157d6f1aea084cdda5f21fe9", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -440,10 +467,10 @@ "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "0f47390d26374e0ab3153088", + "revision": "6c051f7fb06c4141b6c4e3fc", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -451,10 +478,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fefa5960ec6745a78acda3a0", + "revision": "61b9bf6a9b4249588059a529", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -468,10 +495,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "93340aaa9c7e45fa81a32cdb", + "revision": "52f3b7f15ad145f8a44198e6", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -479,10 +506,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dW27kNhAFUO5A+9+ldqAgQGZGYl1S7ckgiMmjD8NttcRD/xXqwXZ9o+tstLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLR/Xtv66/j7b8fPG8fP7/24cX/s8fHn29s/P67w5R93f328r/Zg0NLS0tLS0tLS0tLSbqI97iHb/SUPQLfYfdm0q7xsS/ju/1BUtLS0tLS0tLS0tLS0G2i7ALKL/7rny4bOZ/B5PIPKX295hJdp3cygpaWlpaWlpaWlpaXdVPsrDixB4HEHFEoXGJ7hBS3sj5aWlpaWlpaWlpaWlrYPAs9nJebjt1yx2UoNZcoHpn8GLS0tLS0tLS0tLS3t3tqELwWX6eOgTa7ri0vbTcWav1cjSktLS0tLS0tLS0tL+921wykl/+2PfztThZaWlpaWlpaWlpaW9ptq83XeH0zFlfMpk+m3bjZJmjI5stDS0tLS0tLS0tLS0q6tPUsEV3rW6o151WXe7lGWvO/qHCX7aGlpaWlpaWlpaWlp19Z2lDTjcRg25sBwWJ1Zw9A8TLK1NooiaWlpaWlpaWlpaWlp19PmlNyZZ/mXprc0UbILTRPqmJyMPZ1SQktLS0tLS0tLS0tLu542fSN9DEm3Nlx7fqVTtcsLaGlpaWlpaWlpaWlpd9S20vQ2nB45Kam88p675GFXdTmZUElLS0tLS0tLS0tLS7u2NiXnym/1nLS3pOCXmuNqtvC96pKWlpaWlpaWlpaWlnYdbRcxpla369kX192YFVcOz2dLLXHp9bS0tLS0tLS0tLS0tKtrS07v8VQJDI9yN405SXdLpHqMJlSetLS0tLS0tLS0tLS0O2k/emcNKifjImub3Hx/af4JLS0tLS0tLS0tLS3tZtpUV3nHH9NmtpoF7Io1S6BZt1vuXrS0tLS0tLS0tLS0tDtpu6s0uA2rKWeZwTzpf76rt+mRtLS0tLS0tLS0tLS0a2vToMcr83Jz3Bn6565R11ydUPm1qktaWlpaWlpaWlpaWtpVtFeZG5J627qALw+EHD6W1vhgV7S0tLS0tLS0tLS0tPtou2VTH9tVetaGtZspKk3VmTlvOK26pKWlpaWlpaWlpaWlXU1bjp9uZchIV1eZe+Vqh1yZQVkzefOKTVpaWlpaWlpaWlpa2n204Rv9kdRdg9t9Q0d4Vcudb4lX4ti3KJKWlpaWlpaWlpaWlnYpbZehK9HhIKdXUoHH6FUtjyDpUobTvCEtLS0tLS0tLS0tLe3y2hLDnaFoMgWQLYSDx+QF5fVnmFX5lRpRWlpaWlpaWlpaWlra1bSlSnIWReYmulrFOT8tO9+lpaWlpaWlpaWlpaXdR9s91VVEDgK+ble5L+4Mg0xqrWVZqISctLS0tLS0tLS0tLS0K2vzUWrtGeu1Fp9I8/2HvXLd/6YLTfPoE1paWlpaWlpaWlpa2i20Lcdw8863kufr1j7y/2EeMY6CT1paWlpaWlpaWlpa2pW1RXHkHZSQMw2OPEJM2N7GRZbFj09ykbS0tLS0tLS0tLS0tOtoaxtaTr8NjqnOUWQbnc82G4fSpRFpaWlpaWlpaWlpaWk30Q4qJ/Oh2IPjsXPlZP1KnjI5L9akpaWlpaWlpaWlpaXdQtv91m2jDoQcbu2KVz1jbb7kSxRJS0tLS0tLS0tLS0u7kLbLt5XgbliEeZZuuBxUHmXjKdBMh7nR0tLS0tLS0tLS0tJups3npF35ALVSOdnKMMlyDsAxChbPcsDbexRJS0tLS0tLS0tLS0u7inZY+JgW62K9roWtVE4OdlDWOHMoSUtLS0tLS0tLS0tLu4W2C/i6vxVZnR45aaJr4ZC2Wo7Zvfk95qWlpaWlpaWlpaWlpV1KmyonC6o9z10bJOzejseeHbed/kZLS0tLS0tLS0tLS7uJNlVJ1jxfurrosMyMHCQPJ7HjRzNVaGlpaWlpaWlpaWlpl9KmGsoUDnbZuKy4cjtdkdWQcxqf0tLS0tLS0tLS0tLSbqCtEV5O+6U8X03dDXeVizDPEne+RJG0tLS0tLS0tLS0tLQLaRMqhX4f1GSWDF06B+AMZZb17Ouv1IjS0tLS0tLS0tLS0tJ+b223dq6IPMuM/py/m62dyjG732hpaWlpaWlpaWlpaXfUlhRfC3Mk65Wm/3eyHE/Wj+XQgIOWlpaWlpaWlpaWlnYnbcnQnWEOSVdhWW/MtzachBIqLN+mlNDS0tLS0tLS0tLS0q6mHSbY8hKzrF1J3Q0mnJRA88rnuNHS0tLS0tLS0tLS0u6jLSMkj7e/TcZFDuo0U9ovhbAfV13S0tLS0tLS0tLS0tKuon2sU16XxkqeoentnI6V7FZL7kEnHS0tLS0tLS0tLS0t7era8s6zLFHe1M19rDm9e7KvfpxUXeaKTVpaWlpaWlpaWlpa2pW1d08CpPjvEQSmx8r3BlWXOXYshwHQ0tLS0tLS0tLS0tKurC2FlOeoLPLMvDTkf5j2++B8tg9jXlpaWlpaWlpaWlpa2sW0LRx41g0eSUWTVx5VkvKBJXBNj31YdUlLS0tLS0tLS0tLS7uQNl3DEDEflF03+ZYUvJ7pweGztLS0tLS0tLS0tLS0G2iHgVw6q3r49mHEmA9zS2cD1NCUlpaWlpaWlpaWlpZ2E+2RA8huQ8MQsexguJf2nFdyTXY/jiJpaWlpaWlpaWlpaWmX1KYqyRRA3uPOo8R/k8fSSMph1WWbTSmhpaWlpaWlpaWlpaXdSFujvtCpFmf0lwGT9bHSdvd5do+WlpaWlpaWlpaWlnYPbVo29cWlu3ny5FWeyC1xBy0tLS0tLS0tLS0t7XbaCb5m3roJ/rnqsg7qHxZXFt5FS0tLS0tLS0tLS0u7l7YWPqZmtnsA2XW0XWWuSZ5NMpiEUg54m1Zd0tLS0tLS0tLS0tLSrqb9/1+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+xf7jbt53CJCnQAAAABJRU5ErkJggg==", - "revision": "bbf7a31f4f4140928541292b", + "revision": "40bbe9bfd543419fbe4cdcef", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -490,10 +517,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b61520400005303986540520.205802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131177255663042F4F", - "revision": "e1d0fd81bf144b2a9a37d540", + "revision": "2bb557817c264e049d1e078c", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -501,10 +528,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1311772556/ticket?caller_id=1310149122&hash=317c7ec8-4131-44a3-a5d4-81d3bd707a5f", - "revision": "9a1212fbae7a44b1adc56b36", + "revision": "dade0f9934904a6aa914b2db", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -512,10 +539,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "71909f6bb1fd487c96ce01c5", + "revision": "aa828c8f3f894455afe6469d", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -529,9 +556,18 @@ "original_amount": 20, "total_amount": 20.2, "id": 1311772556, - "date_created": "2023-02-23T04:16:53.522-04:00", - "date_last_updated": "2023-02-23T04:16:53.522-04:00", - "date_of_expiration": "2023-02-24T04:16:53.246-04:00", + "date_created": { + "type": 6, + "value": 1677140213522 + }, + "date_last_updated": { + "type": 6, + "value": 1677140213522 + }, + "date_of_expiration": { + "type": 6, + "value": 1677226613246 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", @@ -539,10 +575,10 @@ "currency_id": "BRL", "history_id": "1677140212667" }, - "revision": "61add99fe64044b1a88e3b90", + "revision": "2c2ab9541bde44ec91aa18b7", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -550,10 +586,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "b7d72fc8be984fe3859bf01b", + "revision": "2c600f8a95e842b9b6fd8637", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -563,10 +599,10 @@ "value": { "content": "23791927400000051993380260600338163800633330" }, - "revision": "26c87b54a5014710b1d86e66", + "revision": "bfb79928e65b4b01805b387b", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -578,10 +614,10 @@ "label": "Taxa de 3.99%", "amount": 1.9949999999999999 }, - "revision": "1170b292b1694803b6721458", + "revision": "ede55c6103544d60ba875c7a", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -599,10 +635,10 @@ "installment_amount": 0, "financial_institution": "10850221" }, - "revision": "a3093ee0299a42f48435e579", + "revision": "f118ec7286f84e2d9af10d0c", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -610,10 +646,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1311772574/ticket?caller_id=1310149122&payment_method_id=pec&payment_id=1311772574&payment_method_reference_id=6003381638&hash=676a5569-4884-42d3-9e67-bfdb72450090", - "revision": "705727a279604c35a942ee04", + "revision": "cd8675178173409a8f7c674b", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -621,10 +657,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "57fff1e9d0674ef682a9fd7f", + "revision": "78ea86cec6f6441f9c4465c7", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -638,9 +674,18 @@ "original_amount": 50, "total_amount": 51.99, "id": 1311772574, - "date_created": "2023-02-23T04:31:15.312-04:00", - "date_last_updated": "2023-02-23T04:31:15.312-04:00", - "date_of_expiration": "2023-02-27T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1677141075312 + }, + "date_last_updated": { + "type": 6, + "value": 1677141075312 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -648,10 +693,10 @@ "currency_id": "BRL", "history_id": "1677141074675" }, - "revision": "0ea5542e83884503a6787e7f", + "revision": "a6750d1e284342b5b3e87948", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -659,10 +704,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "28cfb19be26d4c89b5d5fd58", + "revision": "2360b02559bd46c19d844105", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -672,10 +717,10 @@ "value": { "content": "23792927400000075493380261019405215900633330" }, - "revision": "40b6ce8d276442668fe61fc8", + "revision": "3d7a116a52ed457fbf990b49", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -687,10 +732,10 @@ "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "ef6dc9391839468eb1ec6542", + "revision": "b885f5b63d44417eb8ebadbe", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -708,10 +753,10 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "f04dc2c8f28c484a96f3a75d", + "revision": "a88a0f4282444eb1975cac73", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -719,10 +764,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1312722387/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1312722387&payment_method_reference_id=10194052159&hash=0fea3a36-6354-4019-aec5-950b140fc21c", - "revision": "4617085ffa3b44229719f3e6", + "revision": "9bae00e0c4284b808cb3e184", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -730,10 +775,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "75fdce7d404d4daf8d9f6664", + "revision": "76bfab93f31a4b7389fb628c", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -746,9 +791,18 @@ "payment_method": "bolbradesco", "total_amount": 75.49, "id": 1312722387, - "date_created": "2023-02-23T05:08:54.435-04:00", - "date_last_updated": "2023-02-23T05:08:54.435-04:00", - "date_of_expiration": "2023-02-27T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1677143334435 + }, + "date_last_updated": { + "type": 6, + "value": 1677143334435 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -757,10 +811,10 @@ "original_amount": 72, "history_id": "1677143332353" }, - "revision": "288272b9d5544d3ba1588bc2", + "revision": "cd9bf33ea9514842aff324e9", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -768,10 +822,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 72,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "13b5bab9da9f4fb8acbd649c", + "revision": "e76e7eaebffa44d8beb98158", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -781,10 +835,10 @@ "value": { "content": "23791927400000803493380261019405351400633330" }, - "revision": "d8b8eaf01c59420bac2c406a", + "revision": "748d9ed3e09f427eb928acf3", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -796,10 +850,10 @@ "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "6a3cdff81064452db70d77ef", + "revision": "09e639b37e5f42c0b39ef4bc", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -817,10 +871,10 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "83b419370ed4453eb7e21049", + "revision": "3353df26ade74e82b7d3e7ab", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -828,10 +882,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1311772850/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772850&payment_method_reference_id=10194053514&hash=7f37a98d-46a5-4410-9837-bd450923e2de", - "revision": "5e1a81f2687948c195c77d85", + "revision": "1c705db936f04f0aa08b02f7", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -839,10 +893,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "af7fa6670afa40bf8bb1f185", + "revision": "f64de41a203a49aa9576d9a5", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -856,9 +910,18 @@ "original_amount": 800, "total_amount": 803.49, "id": 1311772850, - "date_created": "2023-02-23T05:59:23.578-04:00", - "date_last_updated": "2023-02-23T05:59:23.578-04:00", - "date_of_expiration": "2023-02-27T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1677146363578 + }, + "date_last_updated": { + "type": 6, + "value": 1677146363578 + }, + "date_of_expiration": { + "type": 6, + "value": 1677553199000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -866,10 +929,10 @@ "currency_id": "BRL", "history_id": "1677146361537" }, - "revision": "16a19da16b4f40bc9c1984da", + "revision": "1ed953b2ba434d4cbb11a36e", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -877,10 +940,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "9cc114846c9547f3ba2ab5b2", + "revision": "ec974486918540c8829bc125", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820479, + "modified": 1701465820479 } }, { @@ -888,10 +951,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e0e5b531f3134239867ccf7f", + "revision": "548fde989a7342abbc9f1859", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -901,10 +964,10 @@ "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "0363a3fae2bc4e00aa92ca14", + "revision": "ded32fbbddb74370b4eacf13", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -912,10 +975,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c8a969eeacfe407da618a596", + "revision": "a182051bd0da48d48d15ec72", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -927,10 +990,10 @@ "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "94b0d33d5fb044d9b686abe8", + "revision": "ff810c50826749b4bbfee545", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -944,10 +1007,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "6431bf8391454854b95cb48f", + "revision": "c725885b664c422a91f71bd5", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -955,10 +1018,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55087284163/ticket?caller_id=1310149122&hash=d505f218-1883-4e4e-8be7-431e65cdf030", - "revision": "deb7edb58d89405486c51c75", + "revision": "f24218ea34ee43eeacb39d6e", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -966,10 +1029,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter55087284163630456C0", - "revision": "b01c5155cabd4fdea8b022c8", + "revision": "c20016bdedc54664afbf0dfa", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -977,10 +1040,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dW27kNhAFUO2A+98ld6BgkMlAzbpF2cggyEhHH4bt1uOo/wpVvDzOP+iYBy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS3t79ce6zF+/G/8+uCf335cVU9ZPh1/3/349ZxjecbP/32cfH3aB4OWlpaWlpaWlpaWlvYl2nEt2ZY/r8YKvZ4yPnkfpywvdPXM600zg5aWlpaWlpaWlpaW9gXahXK9YH6WkktNeG7IbaVaysuxYdDS0tLS0tLS0tLS0r5TO0OXrQKKp3ndpTAs7UFaWlpaWlpaWlpaWlraUM1tysGlqBybOvFu9DLdhZaWlpaWlpaWlpaW9n3ajN/NWrbV5rV2nJ9v0HxBd8OftLS0tLS0tLS0tLS0T9fuZP/hj3+bqUJLS0tLS0tLS0tLS/uHavMxSyMuhYws6SPLOGbrWW56b6GlpaWlpaWlpaWlpX22dpYKrtxp5v7dVdscJcZ/WU5X8/233T1aWlpaWlpaWlpaWtqHaq+/LSvVZhcSuVSbZ4klWd55uV877RkeSUtLS0tLS0tLS0tL+2RtucnxCTg+e3pHADTQJY2ydPxSj/AI70JLS0tLS0tLS0tLS/sCbYkROUL6yNGVg0eoLEferq3UiU22JC0tLS0tLS0tLS0t7cu0eV/qNFI58pxmqRjbVW4zr5UrXxUtLS0tLS0tLS0tLe1btIW8iyXJaf2z1H8Z0NaJZ1dj0tLS0tLS0tLS0tLSvkI7w01SEVgTJZdUkTRmmffSbr6CvFaOlpaWlpaWlpaWlpb22dpl4DJNYpbCcG7GMcsL1ePqmZvKkpaWlpaWlpaWlpaW9iXakYvAtEyuZEvW6vB67Qhfxixzmnnp3KClpaWlpaWlpaWlpX2N9sg5+0tzbgGkXJN2W4D84u3b36f609LS0tLS0tLS0tLSPkibhiH3lWAOLakpJeXa2hTcfDpoaWlpaWlpaWlpaWlfo505aSQFPS43Tp6lz5c6iPs4lO3UJS0tLS0tLS0tLS0t7WO1bZk3Sjcuhfen3t+SBdmuritF6ritImlpaWlpaWlpaWlpaR+kLVGOZ9fOG6XubBfHlfvVkvOu0DxpaWlpaWlpaWlpaWlfoz1KJZgS/EspeeQlbItsKSXLF3R0tx+0tLS0tLS0tLS0tLQv0YYPY4uvLQJzvkjaGXvXLdwGmdDS0tLS0tLS0tLS0r5AWxfClaMlN+OY+dlnecn9ECYtLS0tLS0tLS0tLe3TtUtmZLnTcs9js2F1WQ13my3Z5prQ0tLS0tLS0tLS0tK+R5sDHJt68voGcztNmWY3P85rZze3q+FoaWlpaWlpaWlpaWmfqD1LW61NJGnDSNpqs/Da2vHbe8PR0tLS0tLS0tLS0tI+Q7s8cTlyKH9tBd6NaM6u2XeG5w5aWlpaWlpaWlpaWto3ab+wIG3pt7W85eTvV4yl2UdLS0tLS0tLS0tLS/sW7UIuq9fO/L9rFZnKxmMzdZlLzu/0ImlpaWlpaWlpaWlpaZ+hTR21Am0rxjqnWYYw6zhmu/wth6DQ0tLS0tLS0tLS0tK+QFtQI3f8yrP3k5N16VyZ4pz5MlpaWlpaWlpaWlpa2vdo27nKtsbM6f/Lp81dSm5/jvGnpaWlpaWlpaWlpaV9kXbpqKW+XOrBlXbe0rqrm2LnhmLTMqSlpaWlpaWlpaWlpX2PdsntL8XdzO28zZbZM3QBF1TztK4qpaWlpaWlpaWlpaWlfbJ2mXQso5IjLHBb4vmbYc3rmGWb6r9swT3i10JLS0tLS0tLS0tLS/ts7VGqyLJr9VnuXk5O/cAj9/TS1GV+NVpaWlpaWlpaWlpa2ldpU0ZILhG/usptaQC2+2anzQBoaWlpaWlpaWlpaWlfpj1LvGOuE0dY0Za3SOtl7c7YX64iaWlpaWlpaWlpaWlpH6UdeZBynzRSZjLH198lT13WK2hpaWlpaWlpaWlpaV+hzZR5twPbUhNuFsKdYe/rWnJuvhZaWlpaWlpaWlpaWtoXaHMof02ALKvcaubIdllb7PilBXjbrEtaWlpaWlpaWlpaWtrnadto/9KSa7t2M6ypO8KfR958rR30pKWlpaWlpaWlpaWlfbo2FYupMCwF31mMeSbzCCvfmqd9OdWflpaWlpaWlpaWlpb2Udr0nKPbFPsMbzBD+shRYiCXtl+qVO+nLmlpaWlpaWlpaWlpaZ+oXarIXbRIKgJT2biZxFzOS6Xpd7p7tLS0tLS0tLS0tLS0f7y2DD6mxx6liZemKUsYySy7st1NXebKkpaWlpaWlpaWlpaW9vHa3LA7SuZIUdQaM62Gy6c0G2rfpJTQ0tLS0tLS0tLS0tI+Tbvwypjl7R5ry5hlvvPI7cH2e7iZuqSlpaWlpaWlpaWlpX2QdnlYmoNMvb99ZH/aULudukzn3fciaWlpaWlpaWlpaWlpn6JNq9dKx2+ELuDIOZKpb7gY2z23v5jqT0tLS0tLS0tLS0tL+0RtjSpJbbq2qCxl6PKms1sDt2yKPUKcJS0tLS0tLS0tLS0t7bO16UgjlblYnLkVuFyRCsjUIyx5JbS0tLS0tLS0tLS0tC/QluTHFB7S/jnK++XtrOdd+n/eMpuWlpaWlpaWlpaWlvYV2hEKyCZupHTjUkhkbdOV7dWaXbC/UkXS0tLS0tLS0tLS0tI+UltKuo96MidFtrutfVwWnl0ftL+WlpaWlpaWlpaWlpb2jdrRzVrOLkcyLadLxeIMG2ofZZ0dLS0tLS0tLS0tLS0tbb8NW0kfqfgUaVJ4MzT7zttdsGlpaWlpaWlpaWlpaR+pzfhaRS53b1+tnHfkD5YMk2VOk5aWlpaWlpaWlpaW9iXatKxtlmT+pWxMc5ppJjPtwFbuN8NiO1paWlpaWlpaWlpa2rdo//8HLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLe1v0/4FnajhovaFiOwAAAAASUVORK5CYII=", - "revision": "e4847a85f60b4edf9273fd4e", + "revision": "4d918a9dff684bcc94357092", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -988,10 +1051,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "fe68a7739e914694907d3bd1", + "revision": "0e373eea52c743df93ed2a5b", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1006,19 +1069,28 @@ "total_amount": 20.2, "history_id": 1677340892851, "id": 55087284163, - "date_created": "2023-02-25T12:01:36.928-04:00", - "date_last_updated": "2023-02-25T12:01:36.000-04:00", - "date_of_expiration": "2023-02-26T12:01:36.705-04:00", + "date_created": { + "type": 6, + "value": 1677340896928 + }, + "date_last_updated": { + "type": 6, + "value": 1677340896000 + }, + "date_of_expiration": { + "type": 6, + "value": 1677427296705 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "f71e42c57a9e4beea8ed4747", + "revision": "c497231756614653a90dae6c", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1026,10 +1098,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "20a6e35ac76347b993077c8a", + "revision": "3534362b5e374329a4f826f5", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1037,10 +1109,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "109d848b3cb34c9fb7e571af", + "revision": "b8c907c20bd4472d82dbdbd1", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1050,10 +1122,10 @@ "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "359338b1c3b14e7a92b13f5d", + "revision": "d0c9ecaa4eb9468d9f835143", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1061,10 +1133,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "88b688dd127f476fbd2bdcae", + "revision": "20115b172137421e891ba8f0", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1076,10 +1148,10 @@ "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "ee548926fd5e48ca918a690f", + "revision": "cfbfa4f4ac4e4ceb9608febc", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1093,10 +1165,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "fdceb42b024642e8842960d6", + "revision": "68a3c47d62cb444d8e2a0047", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1104,10 +1176,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55094059932/ticket?caller_id=1310149122&hash=bd1d3d80-d457-4eee-a797-cd6306ae8561", - "revision": "69dc146d7a324bda94bff1cd", + "revision": "65301bd5a0e443a1822ddfa7", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1115,10 +1187,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter550940599326304816F", - "revision": "849693deae564e99a55cbac8", + "revision": "deded5eaa6e0443082693b39", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1126,10 +1198,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI6UlEQVR42u3dWw7bNhAFUO5A+9+ldqAiRR8S5w7toEXRUEcfQRLL4pH/BvMa1y90nYOWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaW9t/Xjvk6fvzf8dcHf/7tx7dut/z+z78f8Menjw+mW/6+b7r5ftp4nkFLS0tLS0tLS0tLS/sK7XEP2aZ/3o3TuxzPW6Y3eNwyvdD0zuV51/x4WlpaWlpaWlpaWlra7bUT5f6F8xlKXvnmHEU2kWoJL48Fg5aWlpaWlpaWlpaW9p3aM2TZKqB4mtedAsMpFqWlpaWlpaWlpaWlpaWN0dwiHJyCymMRJ+bSy0fecB3M0tLS0tLS0tLS0tLSvkKb8bXWsnytRpv32PF8vkHzA30q/qSlpaWlpaWlpaWlpd1dOxb9bv/hH/90pgotLS0tLS0tLS0tLe0vqs3X+UzTnXnIyDR9ZCrHbD3TQz9baGlpaWlpaWlpaWlp99aeJYIrLWxnCS+nF2qvMsZ/aqer8/2X2T1aWlpaWlpaWlpaWtpNtfe/1YgxdcOtO9rK867SYtdWe5bIkpaWlpaWlpaWlpaWdm9tecgI0WFKzl05u3d/jSOPkFwv2f7cDUdLS0tLS0tLS0tLS7ufNgeLo6umTOQEHaFYc3yeLXl+07tHS0tLS0tLS0tLS0u7lTbvpU4llUeo0zzCo5okXo4nazkmLS0tLS0tLS0tLS3te7T5nGYsyWJa//SNBGjjxKuLMWlpaWlpaWlpaWlpaV+gzWMg01DHOlFymiqSyizzLu3mJ8jBJy0tLS0tLS0tLS0t7e7aMWJQWaaPHKWuMpVjlheq191zLiJLWlpaWlpaWlpaWlraV2jXI/tzeHmW/rkESOMny6fp3OPjDgJaWlpaWlpaWlpaWtrdtCWjdnVFk8dirkmp2BxdieZ0+BkKOC9aWlpaWlpaWlpaWtrXaNv6y/G5ty2Ffu26tpoUXHx60NLS0tLS0tLS0tLSvkabor5pRdoYq3zgCDP6py63K/fKTUd2gSYtLS0tLS0tLS0tLe0LtI+KyHuY12y3LpSa+8sJwKu85BSpfll1SUtLS0tLS0tLS0tLu4t2McpxSucdJe5sm+Pa3F+aUjIZww9ES0tLS0tLS0tLS0u7tzaFjXWCfwkl0xtMx46SKFz8QClSpaWlpaWlpaWlpaWlfYE2fFh71togsKYHS6Iw7dKu13KQCS0tLS0tLS0tLS0t7Qu0YzG8/1vyF4P/c3nnVHU5Psy6pKWlpaWlpaWlpaWl3Uo7zYxMLXHlmc2gx9IN93G2ZJ5rcq2qLmlpaWlpaWlpaWlpaXfT5in8Z6m/vH/QlGOmasr7zdfz/dIatjMORqGlpaWlpaWlpaWlpd1be5XyyXYiSTuMJI+GrCHiInb8yd1wtLS0tLS0tLS0tLS0u2inE6crrVxLqcByHWGrdkr2XeHcg5aWlpaWlpaWlpaW9k3aLxrSpnxby0tFmD8VMeZRJbS0tLS0tLS0tLS0tC/QTuTSvXZ13XDnMmwci6rLHHJ+n4ukpaWlpaWlpaWlpaXdRZsyagWa0n5XniNZijBrOWbb/lZSgbS0tLS0tLS0tLS0tG/RFtSRM35TweUi43eEHGGq4jzz12hpaWlpaWlpaWlpad+jbcPGNsZMa6/Tp+kpZW5/HuNPS0tLS0tLS0tLS0v7Iu0XqbuUgyslmnW4ydT+lhOKzbm0tLS0tLS0tLS0tLTv0eaR/U2cOAWLhVdzf20TXT5jxKiUlpaWlpaWlpaWlpZ2Z+1U6VhKJY/Q4DaN55+CwKMrs0xT/acV3Ef8WWhpaWlpaWlpaWlpaffWNqFfnr1/Lm+e8oEj5/QWAeT53ZQSWlpaWlpaWlpaWlraLbVpRkieXLLucqt5vkTJI00eWwJoaWlpaWlpaWlpaWnfpK3ZuE9B5Xim6a4wquQMnXarzdhfR5G0tLS0tLS0tLS0tLRbaY9cSJm61+4Pubq92R/fJVdd1m/Q0tLS0tLS0tLS0tK+QpvGO+YF2Efun8vNbKNsVkt9dvd84NFbaGlpaWlpaWlpaWlpt9eWcSMrQGl6O0JLXE7TxYxfyiAuZ13S0tLS0tLS0tLS0tLup03TR6arTJlsxpe0rW7Tj5HqPrut2rS0tLS0tLS0tLS0tDtrp0CueM4u4LsW5ZjT88pbNad9PdWflpaWlpaWlpaWlpZ2K206p5lXcs/ppZhwXaw5QqTaJAC7qktaWlpaWlpaWlpaWtr9tCXqO8Im61UQ+MWe63TfIjRd5iJpaWlpaWlpaWlpaWm31KYJItMckrQUe1FXmYLKI8Sn9fDlVH9aWlpaWlpaWlpaWtr9tNP0kfLPKfN2lVAy/a0dOlnmn4zwQp9rRGlpaWlpaWlpaWlpabfSTjm4WmaZY8xmvVr+HY6cHkxFmCXrSEtLS0tLS0tLS0tLu7f2flhTB5krIlcj+9NC7bbqMt33ORdJS0tLS0tLS0tLS0u7izaNi7xXP05puvN5xHq+SIo7m/65Nm9IS0tLS0tLS0tLS0v7Eu14RnhNmm6R7Btd2ebIe9zSfelwWlpaWlpaWlpaWlra3bXrqK/wzm6M/5HffvHONUeYvkZLS0tLS0tLS0tLS7u7dszXsTi7DTkXf6Rxke0C7PF1do+WlpaWlpaWlpaWlnYf7bEIIEv811ZiHl0V5xXWqzVbsL+JImlpaWlpaWlpaWlpabfUppCuPbvdcz3NHCnlk/W7OYQdqykltLS0tLS0tLS0tLS079COUFzZ7FhbtNOlYDEt1B6lz46WlpaWlpaWlpaWlvbt2qOMEbkfO55nT4nCM480KbwzJPuub7Zg09LS0tLS0tLS0tLS7qfN+DqbJG2yTq9WJpKM/EG5JS14o6WlpaWlpaWlpaWl3V07coNb3qxWn17mizzKJ9MGtvK8MzTb0dLS0tLS0tLS0tLSvkX7/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817W9Rdol/1PnhcgAAAABJRU5ErkJggg==", - "revision": "a17a814065aa40419acdefc2", + "revision": "44fa3c4560054886ba6c920e", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1137,10 +1209,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "7e2059de2a97448ba6dc46ed", + "revision": "96d3ac64a0c847df9c1d9db1", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1155,22 +1227,37 @@ "total_amount": 20.2, "history_id": 1677340905412, "id": 55094059932, - "date_created": "2023-02-25T12:01:49.292-04:00", - "date_last_updated": "2023-02-25T12:04:00.000-04:00", - "date_of_expiration": "2023-02-26T12:01:49.106-04:00", + "date_created": { + "type": 6, + "value": 1677340909292 + }, + "date_last_updated": { + "type": 6, + "value": 1677341040000 + }, + "date_of_expiration": { + "type": 6, + "value": 1677427309106 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "date_approved": "2023-02-25T12:03:11.000-04:00", - "money_release_date": "2023-02-25T12:03:11.000-04:00", + "date_approved": { + "type": 6, + "value": 1677340991000 + }, + "money_release_date": { + "type": 6, + "value": 1677340991000 + }, "wasDebited": true }, - "revision": "fa871ff3af884e66b6dc2196", + "revision": "7c38b1d8306a48eb96fbf4b6", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1178,10 +1265,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "96786938127b4a3eb636dd61", + "revision": "02a3c132f5e14c2b9eb24fb7", "revision_nr": 1, - "created": 1701463509506, - "modified": 1701463509506 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1193,10 +1280,10 @@ "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "039db8c03d5045d9876104d2", + "revision": "964976b53d0042fa8e4f05e7", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1204,10 +1291,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7f80c716c0d64347b95db1bd", + "revision": "2263150cb6e245c58205d931", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1217,10 +1304,10 @@ "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "c22ba06fe42a466392aafda1", + "revision": "272ec49881fe4005937c4b11", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1228,10 +1315,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b853719e9c8f4986a2ce1633", + "revision": "c5fbf53e6f6548d6ab448edd", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1245,10 +1332,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "c15197562ae6444dbf66bb49", + "revision": "f21878e9d3ae4635ab39a948", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1256,10 +1343,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55095321700/ticket?caller_id=1310149122&hash=6c50eaaf-2a5f-4be4-a6b8-fd6340b379a5", - "revision": "19e6699f4b124ec7b310d540", + "revision": "6c43d91334b74d888d59e3c4", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1267,10 +1354,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dW47cNhAFUO5A+9+ldqDAiB8t1i12T2IEsXj0YXhGI+lIfxdVLI7rDzrOQUtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v7+7VjPo5vvzt+nvjxv29XzX/36wbfzx5/3338fM6YnvH9d7c/fn1avT0tLS0tLS0tLS0tLe3ztcdrZJt+TMbpXRL019+lF0rXLhi0tLS0tLS0tLS0tLQbaCfK6wXnPUpe94dNbzWlyCaplnh5LBi0tLS0tLS0tLS0tLR7as9QZauA4mledwqGr7zpH1paWlpaWlpaWlpaWtp7m2WOg1OoPBY58bXN8tfZqRPzoqWlpaWlpaWlpaWl3V2b8anXMtX+psVxRzAeIUWmy/5JjygtLS0tLS0tLS0tLe2frl3J/sN//u1MFVpaWlpaWlpaWlpa2j9Um4/zXqY7uw7LcZ8FeYWyX/W83rRWEIOFlpaWlpaWlpaWlpb22dqzJLhykzOU+G4v1B5ljP+0nK7O919W92hpaWlpaWlpaWlpaR+qnRaupZmRU4AsafMqY0mmnDh9h7bbM3wqWlpaWlpaWlpaWlraJ2vLTUZIh6k4d5V3maBT5CwVv1QjHOFdaGlpaWlpaWlpaWlpN9C+C4tX2W1tTS5VwOZ1F1+JlpaWlpaWlpaWlpZ2K23elzq1VB6hT7O2Y7a9ljlP1s9CS0tLS0tLS0tLS0u7j7aQm9bLPK2/JssFoM2JV5cxaWlpaWlpaWlpaWlpN9DmMZC1fTJNlCwbqB3dkrgrr3xLufNN1yUtLS0tLS0tLS0tLe3TtOnIK9+O0leZ2jHLC9Xj9X7nIlnS0tLS0tLS0tLS0tJuol2N7C9r5c4yUGRKh2m4SXlabdYsS+cOWlpaWlpaWlpaWlranbQlJ14xzdVxI6u2zbScLt20vP1HexDQ0tLS0tLS0tLS0tI+R9v2X6YRJNd9bVuKfu12bbUouDh70NLS0tLS0tLS0tLSbqNNqW/aIm2MVT1whBn97R5rzUbZuRRIS0tLS0tLS0tLS0u7j/bWEfka845c4itTRUap/ZXldOOObx70YdclLS0tLS0tLS0tLS3tU7RllGNtfMxnU4dlc0WKnO+C5kVLS0tLS0tLS0tLS7uNdiw2wJ7C4pQ2U8FukpVy3vSB0jK5c/42tLS0tLS0tLS0tLS0T9aGk6PU6toQeIUeyqlQmPbSrqXF5SATWlpaWlpaWlpaWlraDbRpIdw02j8lxjqqZD34P7d31iEotLS0tLS0tLS0tLS0+2hTOS9vcf31qt3b2ZLtXBNaWlpaWlpaWlpaWtp9tHmA43l/2LgHzZHbMdO7TKNKJlmp6Z2xAEhLS0tLS0tLS0tLS/tsbT3aiSR537WjGw1ZI+IiO35xbzhaWlpaWlpaWlpaWtqnaMvKt1FiY6nzjTI4shxH2FU7Ffuu8NyDlpaWlpaWlpaWlpZ2J+0HC9KmelvLm/7464kxjyqhpaWlpaWlpaWlpaXdQDuR19P605DIHBvHousyR87Pa5G0tLS0tLS0tLS0tLRP0aaKWh4SOcrqtanXsnRdXrkds13+VkqBtLS0tLS0tLS0tLS0+2jbpslUeUsDStINxqjbbZ+ldzNdRktLS0tLS0tLS0tLu4+2jY1txkzbXqez6S5lbn8e409LS0tLS0tLS0tLS7uRto1+6xpcSptT0JyWv+WCYlMypKWlpaWlpaWlpaWl3Ufb7XAWc2Ia9587LJtey/wG56KLk5aWlpaWlpaWlpaW9unaqdOxtEoeYYHbNJ4/5cm65dr0bdIwydTtSUtLS0tLS0tLS0tL+3xtXeBWdq2+yt1Tw+V0q1IeHN390rW0tLS0tLS0tLS0tLT7adOMkNxh+XaVW3p2ftAIZwctLS0tLS0tLS0tLe2G2itU49ahso4vaXsyc9dlG01PWlpaWlpaWlpaWlravbRHbqRMi+OmVXNtq+T6XXLXZb2ClpaWlpaWlpaWlpZ2C20a77gOgaUKeOY5kmkb7elNpxVynYWWlpaWlpaWlpaWlvbx2jyUP/VaplVuUwxdLGuLnyBVEN/PuqSlpaWlpaWlpaWlpX2UNk0fmY40KTJ1TrZL3aaPkfo+u121aWlpaWlpaWlpaWlpn6ydglzxnF3gayuD9f3KWzVP+3iqPy0tLS0tLS0tLS0t7aO0R3hOM6/ktaZXGylTm2U78780XF6fdF3S0tLS0tLS0tLS0tI+UTulyPW4kRoC2ymTuRNzCpBjMf+ElpaWlpaWlpaWlpZ2H22aIJJaJcsEyJFX0uVQeYR8euVZlbS0tLS0tLS0tLS0tPtoc8Eu1e8+2IZtXd1LoyZHeKHllBJaWlpaWlpaWlpaWtqHa5MsPTZXAUdIh+eiPJiaMAONlpaWlpaWlpaWlpb28dpSybvy/tU5O16vjy3GugauHTDZbQZAS0tLS0tLS0tLS0v7ZG273q0t8ZUrrhAHr/J+LX5RN6SlpaWlpaWlpaWlpd1HW0eVpDLd648TZSzbNs+8Bq4cRxhnSUtLS0tLS0tLS0tL+2ztOvUV3tnNIWn7L888oCTVCMu8ElpaWlpaWlpaWlpa2g20bZDLs/fTj80m1rlkeC03wB4fV/doaWlpaWlpaWlpaWmfoz1CgGzGjUxVuzYJlhi6Gvz/tRRJS0tLS0tLS0tLS0v7SG2JdLfhISUONvtcp8vCs0cKqYtraWlpaWlpaWlpaWlpd9Qei17LvIFaWk6XwuIZNtQeZZ0dLS0tLS0tLS0tLS0t7TWNG3l97Lg/+yr4NNKk8M5Q7Lve7IJNS0tLS0tLS0tLS0v7UG3G1xSZJo2kVyt/N/KJ9L3ep0haWlpaWlpaWlpaWtqHaUde4JZ3Vju7ASVpcsnIO7ClLs70SFpaWlpaWlpaWlpa2i20//+DlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlva3af8CP/KbUvmRbJkAAAAASUVORK5CYII=", - "revision": "b4e00def1eb54b509a60f59f", + "revision": "7a91350a8ab049a2a156fc2a", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1278,10 +1365,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter550953217006304FF73", - "revision": "3c1fc579890147989b1244d6", + "revision": "21a777ff25094f99b1c6bd0b", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1289,10 +1376,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "a722020e77b34afbb113f99d", + "revision": "987de334971a4717bc66bfb2", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1307,22 +1394,37 @@ "total_amount": 20.2, "history_id": 1677342602434, "id": 55095321700, - "date_created": "2023-02-25T12:30:06.615-04:00", - "date_last_updated": "2023-02-25T12:32:35.000-04:00", - "date_of_expiration": "2023-02-26T12:30:06.238-04:00", + "date_created": { + "type": 6, + "value": 1677342606615 + }, + "date_last_updated": { + "type": 6, + "value": 1677342755000 + }, + "date_of_expiration": { + "type": 6, + "value": 1677429006238 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "date_approved": "2023-02-25T12:32:20.000-04:00", - "money_release_date": "2023-02-25T12:32:20.000-04:00", + "date_approved": { + "type": 6, + "value": 1677342740000 + }, + "money_release_date": { + "type": 6, + "value": 1677342740000 + }, "wasDebited": true }, - "revision": "8a3fb7aef4d64999882bb7c7", + "revision": "a2dfe886e3a5422a8cfc889d", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1330,10 +1432,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "ad8619e14a7e4ccf9e45575b", + "revision": "2117da7eed874b93ba4ca210", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1345,10 +1447,10 @@ "label": "Taxa de 0.99%", "amount": 3.9600000000000004 }, - "revision": "6f27896536264c8280814aff", + "revision": "83e68a064d08481f961544ba", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1356,10 +1458,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "03c5c2c8f75541b79d601079", + "revision": "b87b1816d1b14daa8e809656", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1369,10 +1471,10 @@ "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "a03a198e0eef4b7f81272758", + "revision": "8024baced511473a9c468c47", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1380,10 +1482,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f6e5cc68e839482980a475ce", + "revision": "9247214e050846ac8a113900", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1397,10 +1499,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "b8208fe95be847db8ca11e2b", + "revision": "341465237ea34dccae98df74", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1408,10 +1510,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55103336998/ticket?caller_id=1310149122&hash=9ef20da2-8e33-4bd3-baa0-734357868736", - "revision": "2e255465a1474c698df63647", + "revision": "3f42042805a64abf9d57ea44", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1419,10 +1521,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2ElEQVR42u3dW47jNhAFUO6A+9+ldqBgkJnYZl1SBjIIMuTxR6PdtqTD/ivUq91/0OtqtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/X9vGV//xt/7PB79++3HV3z9eH7xu8PODX9e+vvf+jF8fvL78flll0NLS0tLS0tLS0tLSHqLt7yHb8DY/7H5/zvtv6ysmn74fMjFoaWlpaWlpaWlpaWkP0A4B5HDBEEpmxfUZWdZnvwLE17WLwJWWlpaWlpaWlpaWlvZs7fV5k/dLWwkbP9J+JQH4kg2nTz9oaWlpaWlpaWlpaWlpQ5llSrrl+K991lAO2hYO1N7PQktLS0tLS0tLS0tLe6x2ik8fvJ6diiZLD1zK6fWv8oG0tLS0tLS0tLS0tLSHaKdTSv7bH/92pgotLS0tLS0tLS0tLe0fqs2vOtSxjCVJH9yha27aDVeThzMLLS0tLS0tLS0tLS3t3tqrRHDlduvmuHtRdZnwOY04TfbR0tLS0tLS0tLS0tLurn09NvGGtrYrvM0tbLXWMpVeTpKMDzEvLS0tLS0tLS0tLS3tVtorzNmvwV0ZX3LPVrOltrbVM57uQktLS0tLS0tLS0tLu7v2fh8tMtwuJeLeE3YtTylJNZlpXknau/ZcI0pLS0tLS0tLS0tLS7uZ9grQaeatf6bu7hJormPM9fK14X60tLS0tLS0tLS0tLRHaHMP3HCTSa1lSQ+miPFezPdfMG5aWlpaWlpaWlpaWtpDtENtZIoEp8Mfywa2XqLDLJv02eUIlJaWlpaWlpaWlpaWdm/t8LChmjLtuU6zIN9vdX2m/eqrxJ1D8nBRdUlLS0tLS0tLS0tLS7ufNi9Lu/Pw/pLdG1ripn+rTyvxaRpuQktLS0tLS0tLS0tLe4o2vc0tcauSynLcVuLElFDMVZw3LS0tLS0tLS0tLS3tIdpSNNmWI0juvNi6TCm5QhR5LQ755RZsWlpaWlpaWlpaWlraHbXDQMi67Lpk6Ca8HCLeJZOXp/qnVCAtLS0tLS0tLS0tLe0B2pK/a8s914/1lyWdd5W0X8kW9och/7S0tLS0tLS0tLS0tDtrU0Naejtk6PJEkskVKU5cBJr9IealpaWlpaWlpaWlpaXdTJsok2H7aTRkDkj7YoHa8A9aCGhpaWlpaWlpaWlpaQ/Qln63K6yuXg96bGFmZF/sC0jZwjTIhJaWlpaWlpaWlpaW9iRtK1McB22unOwhsuzLESRXeFAagkJLS0tLS0tLS0tLS3uKdnr3EiL2vIutPHaV8UtDUPLBaWlpaWlpaWlpaWlpT9EOdZWlK22IMXvIy/Ulqi1mS+aqy05LS0tLS0tLS0tLS3uWdrhJieHiMMnhVKUws4V/QfuccHKXSf/P29ZoaWlpaWlpaWlpaWn30w7TQhZTSuoGttIIt6JMg89ydaelpaWlpaWlpaWlpT1JO5Dz2z4rmqwpuTybpIaXKWLMo0poaWlpaWlpaWlpaWmP0qaqy4JaD5gcAs3a5ZZi1rQKm5aWlpaWlpaWlpaW9ghtHhI52VC9GDWZIsGhG+4qCcDF8uyblpaWlpaWlpaWlpb2QO1jXDeUaE7PXFazTSLQp1iUlpaWlpaWlpaWlpb2AG1qXCt3mmT8Sudbmgo5rMdueeb/4kVLS0tLS0tLS0tLS7u3drGcuoXt1n3WK9cKqsw6STWerWT8HmJeWlpaWlpaWlpaWlra/bRDHeT9HifmU915gv9wvkVl55UnSqaj0dLS0tLS0tLS0tLS7q4t6bc0oGQSba4DyHS+ISAtGwFSApCWlpaWlpaWlpaWlnZ37b2cuF9vkrJ7QxA4fGWaLUwFnOGmtLS0tLS0tLS0tLS0O2un4WDebl3zcnn6f3seF1lLOWfL3GhpaWlpaWlpaWlpaXfWTm9SEnF3ifoWW9laGA35bdVlodHS0tLS0tLS0tLS0u6sLWFjzxP3Q5Nay1P479xil+aaLKo4Oy0tLS0tLS0tLS0t7SHaVPM4TeKVbFx9pfOVkHMVwj5MKaGlpaWlpaWlpaWlpd1Pe4UCySs0s/XcNVeCxfaZ3etZlr6XL6OlpaWlpaWlpaWlpT1AW1rdrtL5thj+OGy87uHZqacuhbAXLS0tLS0tLS0tLS3tmdoSJ/Ywxr9WWE6XYq+P+xSVdlpaWlpaWlpaWlpa2rO0H+T3O/VFbWTpaFtfe+cvh0mRX9SI0tLS0tLS0tLS0tLS7qi9P1vdegjzpum3aWFmSh5OvpdXZtPS0tLS0tLS0tLS0h6gnXa0DQ9bJ/FKSeU1m1KyrrrMkSUtLS0tLS0tLS0tLe3O2oQqabrJdrRy0iu0v9XzPTXMfVV1SUtLS0tLS0tLS0tLu6l2msQrPXC9RIepTjPv0r7D8uzpi5aWlpaWlpaWlpaW9gBtGe9Yo770nJLOu0v+Ln2lBK49JBQ7LS0tLS0tLS0tLS3tIdo8LrKWQA7GlJybVk6WqZCTbOE33XC0tLS0tLS0tLS0tLSbalv8Wu1Zq2fJYei0Q+7OQ1BywSUtLS0tLS0tLS0tLe0B2vQanrg4Ri2pLI1w07RfD9Fma+2bGlFaWlpaWlpaWlpaWtqNtDmQS7/12aLsO28ESEHq+5cnd/4yu0dLS0tLS0tLS0tLS7uPtra6Tfvi3mPHNBryzk8sg0yu3Pn2TRRJS0tLS0tLS0tLS0u7pTaFdDkITAP9rxKJpuEmJYPYn0JYWlpaWlpaWlpaWlra07U1bEwdcjkvV68oe7NT3PlVdo+WlpaWlpaWlpaWlvYobR3ePx01mf82OeS02W65BZuWlpaWlpaWlpaWlnZTbcH3PKg/xX8lxVfn9peJJCkWnVRx0tLS0tLS0tLS0tLS7q+thY9DAFnuNJlSkkLTcshpGHqFM9PS0tLS0tLS0tLS0h6g/f+/aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/m/Yv5+S5wPHlkOQAAAAASUVORK5CYII=", - "revision": "aaa6ba1997fa4cf4bbcfa409", + "revision": "8bfbbd59e4934e65b989b033", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1430,10 +1532,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d127175204000053039865406403.965802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter551033369986304804E", - "revision": "1eb6363111ec42a2a197c934", + "revision": "1847c2f449db47c3a377b576", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1441,10 +1543,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "9e7a28ae4ca44689922bb260", + "revision": "c2a4991918944f12b7f14652", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1459,19 +1561,28 @@ "total_amount": 403.96, "history_id": 1677356987387, "id": 55103336998, - "date_created": "2023-02-25T16:29:48.037-04:00", - "date_last_updated": "2023-02-25T16:29:48.037-04:00", - "date_of_expiration": "2023-02-26T16:29:47.844-04:00", + "date_created": { + "type": 6, + "value": 1677356988037 + }, + "date_last_updated": { + "type": 6, + "value": 1677356988037 + }, + "date_of_expiration": { + "type": 6, + "value": 1677443387844 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "21eb980419e34b6e8c627c1d", + "revision": "ea54673cba704c71b1c340d6", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1479,10 +1590,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "88ccef205f3041e082eb904e", + "revision": "f78816cf62944b5f8ec12946", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1494,10 +1605,10 @@ "label": "Taxa de 0.99%", "amount": 9.9 }, - "revision": "00362925597743068c8d4bd2", + "revision": "b87ebc9966bb4f0abd54044f", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1505,10 +1616,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0984010637e84a6d80ed45ff", + "revision": "8fc877c1f06743cfab49ed62", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1518,10 +1629,10 @@ "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "0f04a4ac5247480ba60e4cf1", + "revision": "0f7f78c4abfa460cb831e9c1", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1529,10 +1640,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "161532e8eb54418888864320", + "revision": "37fecc2f5991433f99d62fb9", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1546,10 +1657,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "076b409a66db4eaca7e5861c", + "revision": "047fbb7625df4a1abb8befe0", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1557,10 +1668,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55096573577/ticket?caller_id=1310149122&hash=90c37e8f-66e2-44f0-8c67-647e232f6bda", - "revision": "40089ebab0b04f8fa8b1e1dd", + "revision": "9c096858e2c446cba73c5560", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1568,10 +1679,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d1271752040000530398654071009.905802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter5509657357763045E7D", - "revision": "41e4ccea5f4a4715857a845c", + "revision": "5c344602879b4f97adeebffd", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1579,10 +1690,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIy0lEQVR42u3dW47jNhAFUO5A+9+ldqBgkMdYrFu0ggRBRjz+MNwtSzry30UVi+P6hV7noKWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaX997Vjfh0//nf8deDPTz/OGj8/TRf44+jxeZfpQLnU8TtlfN7txqClpaWlpaWlpaWlpd1EO93iKDFuhNcn+ZyvfrvjmZ+vaFsGLS0tLS0tLS0tLS3tBtopQE4npK/8Qb7uxp+86/PTlBM/D7TBlZaWlpaWlpaWlpaWdm/tVHS7RcTQFplKcnNlsNwyvdHS0tLS0tLS0tLS0tLGiHiFZJnyX1P7m5owP59vhKBJS0tLS0tLS0tLS0u7n3aBn5bETaedy6LgKKhy4Pje/ElLS0tLS0tLS0tLS/t2bTul5L99+6czVWhpaWlpaWlpaWlpaX9RbX6dechIeapbce6ziNcup6ur4b5baGlpaWlpaWlpaWlp3609u9GQ6cCtsLd+jHKp1cz/6St9iqSlpaWlpaWlpaWlpX2bdrpmu1wtxcv2MfIDPVtnVyah0NLS0tLS0tLS0tLSbqD9vOPIC9zKLMjbpth5oH86cHWbbN9+jO89orS0tLS0tLS0tLS0tO/RphEkqaaXPrVbZh+lfpe6LtO+a19SJC0tLS0tLS0tLS0t7cu1paaX2iKnrFf/nAp7U3mwjau5RZOWlpaWlpaWlpaWlvbd2nKlqUuylt/C5UY6d51Kv4XPi5aWlpaWlpaWlpaWdhPtVFabCmwlLI6QDpNxasycZEco56Vb0tLS0tLS0tLS0tLSbqDNFz5zw+V0NFUG21kni+GUR6gqXrS0tLS0tLS0tLS0tJto00bUZQlbbalMS+LKWMlcqxupnJcbOGlpaWlpaWlpaWlpabfQNtNHEjQHvpaXNgg4855tJYFetLS0tLS0tLS0tLS022iPsCBtGv44RtyfrcjSmrrRjew/l8W+g5aWlpaWlpaWlpaWdhtt0yo5DSNpJ/gvlrqNbhfsZq7Jk65LWlpaWlpaWlpaWlrat2nTfUrGTGNJmjmSZeVbKiMe4c+65zYtLS0tLS0tLS0tLe0m2tWMx6nsl0dIpqGT4/4YjTHvIXCsUiQtLS0tLS0tLS0tLe3btNNquPDdftRk6qFM6+emq0wFwJQ2H04poaWlpaWlpaWlpaWlfYF2mj4yVe0WK+S+7oJdfof0Y0zG712XtLS0tLS0tLS0tLS0L9WOMOOxBsM8VjKR0+5tzbjI0nU5+umRtLS0tLS0tLS0tLS079MuAuTRLWE7w9z+o8TB1FeZF9Fd3bI7WlpaWlpaWlpaWlraDbSpLjedP5Xp2iklKVmW57u6qf5T2qSlpaWlpaWlpaWlpd1He93LapPiDLHxKrzUmFmGljTJMrVyPpl1SUtLS0tLS0tLS0tL+w7tZw/luLdZtrc98qSRcoFUD7zCGP/mXFpaWlpaWlpaWlpa2i207fltWMxr2+q5i6n+TWLMo0poaWlpaWlpaWlpaWm30ibZt0VvdZDJYvTJFRJo+2PQ0tLS0tLS0tLS0tJuoF3kujpfJCS8kZLg8+3VUgKlpaWlpaWlpaWlpaXdT/stE14hVF6LzslUqys/wbjvHDA1f9LS0tLS0tLS0tLS0u6i/Uxz436lq6yVa8eXlH3XGk+e279+0dLS0tLS0tLS0tLSvl17ho7II5BH2Rk7nVGSYJ08mQej1B+IlpaWlpaWlpaWlpZ2C+1Uzitj/Nedk81ebFN3Zn6Cupd23iOblpaWlpaWlpaWlpb23dqyB/XtmikYFsqDPs2rjCBJ4yfTVWhpaWlpaWlpaWlpad+vXbQ7jgcZMzVcliR4dRW/K2+eTUtLS0tLS0tLS0tLu5N2de+2LTJFztTKWRbCnSGVHuG+tLS0tLS0tLS0tLS0u2gnSm6GrI+WNrGeLpqeOf1A6Za0tLS0tLS0tLS0tLQ7aWt8+0yMqxVy5Su1kle2UrvyJtvpDFpaWlpaWlpaWlpa2u20tThXHqNds3aVQSZ5XGRzt+VO27S0tLS0tLS0tLS0tG/WrmtwaTVcHvc/PWTahq0m1RJXc7alpaWlpaWlpaWlpaV9s7Ydtl+S4LGMg+3gkStvBjAJcsmQlpaWlpaWlpaWlpZ2A20pv4379JErZMc6LnIa2Z8y5nrIfzmXlpaWlpaWlpaWlpZ2F23Odc1ytdIleeU7truypQElbY6lpaWlpaWlpaWlpaXdRHssd7Ie93mOaYFbSqAjLHBLhcJ1xqSlpaWlpaWlpaWlpd1A2zZNpkyYym+fDzTKcJP0aE8XzNHS0tLS0tLS0tLS0m6mXUwpScNIUsHuXPRurguA7Y9BS0tLS0tLS0tLS0u7mTYly1Lxm27WNmbeKoNtn2aOkhctLS0tLS0tLS0tLe1O2hIWV/uk5S9PyfIqtb/pbQqay8V2tLS0tLS0tLS0tLS0b9YWzxnqbefzHdjaLs626zL3adLS0tLS0tLS0tLS0m6mHSUE5iVsqSh4hGQ5XfnMe6yluSZhcRwtLS0tLS0tLS0tLe2btelVxpJMc/unhWvNnymVPtif7UmPKC0tLS0tLS0tLS0t7Yu06yA3/a+81dPSWy72pdPG4+oeLS0tLS0tLS0tLS3te7THIkCWjdHOsGZtSoLtp3N5lYcpkpaWlpaWlpaWlpaW9pXaxCsZs50eeYU8OeZJIyONi8wRdqymlNDS0tLS0tLS0tLS0u6hPboxkNdiouSUGNuttVN2/DvVPVpaWlpaWlpaWlpa2q20Zxfurhwqy6iSYzHpf7rHdD1aWlpaWlpaWlpaWtp9tO29fxbn1rP3015suZJXF8fl0Se0tLS0tLS0tLS0tLT7aGvjY7lIPZBkJQmObqD/EaZHTttj09LS0tLS0tLS0tLS7qL9/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817W9ibLveeVntBwAAAABJRU5ErkJggg==", - "revision": "09fee973d49b42f6b6334b50", + "revision": "468e4dfc316947e8a257e1a7", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1590,10 +1701,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "da1eb8a9d15f46ed96a1f1f7", + "revision": "6da8572c54004e419eb38e03", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1608,19 +1719,28 @@ "total_amount": 1009.9, "history_id": 1677357024740, "id": 55096573577, - "date_created": "2023-02-25T16:30:25.343-04:00", - "date_last_updated": "2023-02-25T16:30:25.343-04:00", - "date_of_expiration": "2023-02-26T16:30:25.167-04:00", + "date_created": { + "type": 6, + "value": 1677357025343 + }, + "date_last_updated": { + "type": 6, + "value": 1677357025343 + }, + "date_of_expiration": { + "type": 6, + "value": 1677443425167 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "444a5f0da747482ba0e73fd5", + "revision": "b16bf35fe021457dbfa885e7", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1628,10 +1748,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "c12c3df8c4244a1687e2f924", + "revision": "1be6496fae654f13850fd5f2", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820480, + "modified": 1701465820480 } }, { @@ -1639,10 +1759,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1114c71b388b42e188293eeb", + "revision": "9b53fda8f55e41e9a5a00bee", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1652,10 +1772,10 @@ "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "4f44bc02309140e8b29580c8", + "revision": "b76dc61b4f7c4270b94eddc6", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1663,10 +1783,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0562d6ed74614a89b0d70dee", + "revision": "ab72683a5ef34ac0881092f0", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1678,10 +1798,10 @@ "label": "Taxa de 0.99%", "amount": 0.34650000000000003 }, - "revision": "925d59567721461c91eeb0eb", + "revision": "8f9a37c34ee04f9e81a905e9", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1695,10 +1815,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "c3d724e99ace4acdb6640e2b", + "revision": "76a79aa3b6394848861e2154", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1706,10 +1826,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55102778083/ticket?caller_id=1310149122&hash=732fd12f-b6ab-488b-bf46-c6e842577653", - "revision": "6788f412e53c42bc97fea699", + "revision": "a170c493ffa04edbba9e930d", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1717,10 +1837,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIyElEQVR42u3dW47jNhAFUO5A+9+ldqAgyMti3aKVTBBkxKOPRnfblg79V6jXuH6i6xy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tP++dszX8ev/jj9f+OO3Xz/1cU03+P3V47e7jz+fM6Zn/P6/25s/n3Zj0NLS0tLS0tLS0tLSbqI9PkO26c/PuzdnSdC/3pcOlD67YNDS0tLS0tLS0tLS0m6gnSjTBz5DySkmvJ2qRJFNpFrCy2PBoKWlpaWlpaWlpaWl3VPbZPJKTm/ypOPeIsspxiw/aGlpaWlpaWlpaWlpae9lluk5kzYVTT4vvUx3oaWlpaWlpaWlpaWl3U+b8bVDrpzgLN1rn+9r++em0svrh2pEaWlpaWlpaWlpaWlpf3ZtO6Xkv/3xozNVaGlpaWlpaWlpaWlpf1Jtvs6SiJsSdmWsZJv2q55804WFlpaWlpaWlpaWlpb23dqzRHA5iXfcp0LeDtReZYz/1E53hhmUi+weLS0tLS0tLS0tLS3tS7Wfv02damc3JHKKNq8wVvIskyJTi91UiRkeSUtLS0tLS0tLS0tL+2ZtuUltf8vJuZZ3lbgzrWH7fNDIQ0toaWlpaWlpaWlpaWn30ZYxIhP5KtvWplhvel+qyUzHbWdL0tLS0tLS0tLS0tLSbqbN+DOUVKYCydF5UqvbmXvl0ldFS0tLS0tLS0tLS0u7hfYzCFwNIynT+o/uaC2gjROvLsakpaWlpaWlpaWlpaXdQJtniaTU3bkIEdMMk1KJOb25fgW5V46WlpaWlpaWlpaWlvbd2nTlzrdpNklTjrnIDI7Q73YuIktaWlpaWlpaWlpaWtottFPn23ST3L12lv65BPhsibvuJ62PTOsDaGlpaWlpaWlpaWlpt9C2c/ZTArDUWrZxZ7OLLYSI9fSPdhDQ0tLS0tLS0tLS0tK+R9vKUnh5lYAvT/A/QxSZhpu0rx60tLS0tLS0tLS0tLTbaFPU16xIS3HndL7pQPku02bs6VbLGlFaWlpaWlpaWlpaWtqXaq8SDrbZuMk4UVLnW5aliDF/N7S0tLS0tLS0tLS0tG/Wrkc5lldrFjA1x5X71TixjVRL8SctLS0tLS0tLS0tLe3btWn44/Vl/1kdCJmG/FdyejUPMjloaWlpaWlpaWlpaWk30YYX458PgsB0lnUsWuLOR1WXtLS0tLS0tLS0tLS0b9SOsvCsRIptM1uaD3l2z66vliLM8WXWJS0tLS0tLS0tLS0t7au0pbftLCm+9L40OLJ0w32dLVnC0PNLFElLS0tLS0tLS0tLS/s+bZ7CP3lGSPGdXa3lkePT6X2L4POgpaWlpaWlpaWlpaXdS5tKII9yllRhmTra2tmS32LHf7IbjpaWlpaWlpaWlpaW9gXa6Yl5+kgTaKZ5JW3ImZN96/JOWlpaWlpaWlpaWlraDbQPGtK+3X3k+O/vR4x5VAktLS0tLS0tLS0tLe0G2gnVdq+FishV2DgWVZc55Hyei6SlpaWlpaWlpaWlpX2LNmXUvg2JbIf8X+GFWo7Ztr+VVCAtLS0tLS0tLS0tLe0u2pK1OxY5vZwATJWT9S3rjQB5KxstLS0tLS0tLS0tLe27tVOaLp/gyJNLUhRZPNcdcI46ujJZaGlpaWlpaWlpaWlpt9KW2SRNTu9btJkWaqfp/2kwSh1JSUtLS0tLS0tLS0tLu4W2PGcK7s6c7GuXpaXwsqCmE9TfaGlpaWlpaWlpaWlp99GmJF472TGP52+KJj/LLJvT5xa7g5aWlpaWlpaWlpaWdidtieueBZDtUuwcXtasXTpzmvlPS0tLS0tLS0tLS0v7fu0oK67bzWqpa650ud1KL/OfKYBMN6WlpaWlpaWlpaWlpd1H2+TvUqBZknh5RVodDTm+3flxFElLS0tLS0tLS0tLS/sq7dGl2q77s+vVlkquz5KXbNdP0NLS0tLS0tLS0tLSbqFN4x1LSJfa1Uboi5vWY59lj1up9ryVd3YWWlpaWlpaWlpaWlra12uncSMpEkxVlylNt2xrixm/3Bx30NLS0tLS0tLS0tLS7qTNhY816is5uBr/LSZKjvtZat3nk6n+tLS0tLS0tLS0tLS0b9Oup5SkWZBTWWT5RD3fFCe2p38y1Z+WlpaWlpaWlpaWlvZ92qP0u6WBkCUfWJ+TyizTzP88avJ6UnVJS0tLS0tLS0tLS0v7Pm0pvTzCArUmCExpupwAHGU/W6rxLN8XLS0tLS0tLS0tLS3tFto6GrItlWyXWOfd12dorGurLuv2bVpaWlpaWlpaWlpa2i20+WFpQ/W5nE3yILuXRk22M1FoaWlpaWlpaWlpaWn30Y7FVMg0N+T5erWpz269ALuJaGlpaWlpaWlpaWlpad+uLVHfCLymra0d2V8Wap+LqsuyeHuZi6SlpaWlpaWlpaWlpX2bNnWvfX5qFFSKGPN8kRqGpqrLdcxKS0tLS0tLS0tLS0u7iXbc71lrKMtjp2TfWJRtprOkas/yFdDS0tLS0tLS0tLS0m6gTVdZfTbK2P1cQ1lPn/N8V+iku8oISVpaWlpaWlpaWlpa2i20Y76OLjC8FqP4203WeVxkuwB7PM7u0dLS0tLS0tLS0tLSvkd7hAAyoc571m6UzrdcxZlu2kzwfxJF0tLS0tLS0tLS0tLSvlKbQ7pjMRUyBZopIA3P7iPV6ZG0tLS0tLS0tLS0tLR7a8vwkDOvwn7QTlfqNJvY8WF2j5aWlpaWlpaWlpaWdg/tZ+pu5JH9efDIdW+TG7lhbrpfasWjpaWlpaWlpaWlpaXdR7uuuiy3G2FtWjNCMnXcrZvjfrQbjpaWlpaWlpaWlpaW9qfTplLJpvNtSsTl+SI3fNrAttjUlhe80dLS0tLS0tLS0tLSvln7/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817S/WesxQ9BOm/QAAAABJRU5ErkJggg==", - "revision": "ff651f4eed9f4eb9948f3dd5", + "revision": "0411e04800f0403d9fbdb776", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1728,10 +1848,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540535.355802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter55102778083630472DE", - "revision": "ad60ff63c1944b15af9e1d6a", + "revision": "040b749965094f0aba944b02", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1739,10 +1859,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "93f7a6532b42481fa2a80408", + "revision": "2d579c9834d347c2833c8d0c", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1757,19 +1877,28 @@ "total_amount": 35.35, "history_id": 1677366880189, "id": 55102778083, - "date_created": "2023-02-25T19:14:40.808-04:00", - "date_last_updated": "2023-02-25T19:14:40.808-04:00", - "date_of_expiration": "2023-02-26T19:14:40.616-04:00", + "date_created": { + "type": 6, + "value": 1677366880808 + }, + "date_last_updated": { + "type": 6, + "value": 1677366880808 + }, + "date_of_expiration": { + "type": 6, + "value": 1677453280616 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "0a5db03aef5d473ea4e33be4", + "revision": "db07b8185bfd4e1abb08b178", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1777,10 +1906,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 35,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "6c01104fe3ba4c93a8625560", + "revision": "f8d13e40eff741c9a2c3d7b5", "revision_nr": 1, - "created": 1701463509507, - "modified": 1701463509507 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1788,12 +1917,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "433402a261864fca9e261665", + "revision": "caf7f139867b4aa1a390643a", "revision_nr": 1, - "created": 1701463509508, - "modified": 1701463509508 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1807,19 +1936,28 @@ "total_amount": 234.59, "history_id": 1677710195891, "id": 1677710195891, - "date_created": "2023-03-01T22:36:35.891Z", - "date_last_updated": "2023-03-01T22:36:35.891Z", - "date_of_expiration": "2023-03-31T22:36:35.891Z", + "date_created": { + "type": 6, + "value": 1677710195891 + }, + "date_last_updated": { + "type": 6, + "value": 1677710195891 + }, + "date_of_expiration": { + "type": 6, + "value": 1680302195891 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL", "payment_method": "whatsapp" }, - "revision": "1f8e597c8faf4289bfed15db", + "revision": "ff21661531244871a015ab9c", "revision_nr": 1, - "created": 1701463509508, - "modified": 1701463509508 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1827,10 +1965,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 234,59 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "dd9670d77b47401b94128426", + "revision": "31be0511d7cc46c1914efb12", "revision_nr": 1, - "created": 1701463509508, - "modified": 1701463509508 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1838,12 +1976,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "bfed3737ce064139bf0e5b4f", + "revision": "8263faac28d64b7db8a7d9fd", "revision_nr": 1, - "created": 1701463509508, - "modified": 1701463509508 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1857,24 +1995,39 @@ "total_amount": 35.99, "history_id": 1677710725908, "id": 1677710725908, - "date_created": "2023-03-01T22:45:25.908Z", - "date_last_updated": "2023-03-01T22:59:31.236Z", - "date_of_expiration": "2023-03-31T22:45:25.908Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-01T22:59:31.236Z", - "money_release_date": "2023-03-01T22:59:31.236Z", + "date_created": { + "type": 6, + "value": 1677710725908 + }, + "date_last_updated": { + "type": 6, + "value": 1677711571236 + }, + "date_of_expiration": { + "type": 6, + "value": 1680302725908 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677711571236 + }, + "money_release_date": { + "type": 6, + "value": 1677711571236 + }, "money_release_status": "approved", "wasDebited": true, "payment_method_id": "whatsapp", "payment_method": "whatsapp" }, - "revision": "20ac7a3392f94bfcbd8001a6", + "revision": "98791f8e539a41b3b92fef65", "revision_nr": 1, - "created": 1701463509508, - "modified": 1701463509508 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1882,10 +2035,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 35,99 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "7688fdbbbe7b4b389d2f8fda", + "revision": "02c11baff72d4ff5959ba689", "revision_nr": 1, - "created": 1701463509508, - "modified": 1701463509508 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1893,12 +2046,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "65a0b7e2738f4434b2ce0ac1", + "revision": "cf99c23ab0c7446da2de551a", "revision_nr": 1, - "created": 1701463509508, - "modified": 1701463509508 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1912,24 +2065,39 @@ "total_amount": 450.32, "history_id": 1677711669840, "id": 1677711669840, - "date_created": "2023-03-01T23:01:09.840Z", - "date_last_updated": "2023-03-01T23:09:24.561Z", - "date_of_expiration": "2023-03-31T23:01:09.840Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "money_release_date": "2023-03-01T23:09:24.561Z", + "date_created": { + "type": 6, + "value": 1677711669840 + }, + "date_last_updated": { + "type": 6, + "value": 1677712164561 + }, + "date_of_expiration": { + "type": 6, + "value": 1680303669840 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "money_release_date": { + "type": 6, + "value": 1677712164561 + }, "money_release_status": "approved", - "date_approved": "2023-03-01T23:09:24.561Z", + "date_approved": { + "type": 6, + "value": 1677712164561 + }, "wasDebited": true, "payment_method_id": "whatsapp", "payment_method": "whatsapp" }, - "revision": "31d8e6609b2449509676a771", + "revision": "d54ea5507e864c8a989e6788", "revision_nr": 1, - "created": 1701463509508, - "modified": 1701463509508 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1937,10 +2105,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 450,32 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "6cbea7ef9ebc4129b7ca6894", + "revision": "aa30cad8a2974801b6b64eab", "revision_nr": 1, - "created": 1701463509508, - "modified": 1701463509508 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1948,12 +2116,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "6509bc31bd4a4a938bd2fb9d", + "revision": "cc4b21d58e67447193d40cdf", "revision_nr": 1, - "created": 1701463509509, - "modified": 1701463509509 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1968,20 +2136,32 @@ "total_amount": 600.2, "history_id": 1677716372778, "id": 1677716372778, - "date_created": "2023-03-02T00:19:32.778Z", - "date_last_updated": "2023-03-02T00:20:44.134Z", - "date_of_expiration": "2023-04-01T00:19:32.778Z", + "date_created": { + "type": 6, + "value": 1677716372778 + }, + "date_last_updated": { + "type": 6, + "value": 1677716444134 + }, + "date_of_expiration": { + "type": 6, + "value": 1680308372778 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-03-02T00:20:44.134Z", + "money_release_date": { + "type": 6, + "value": 1677716444134 + }, "money_release_status": "rejected" }, - "revision": "d46a0764457547ceaa2a994a", + "revision": "4b9b811019894b3386810571", "revision_nr": 1, - "created": 1701463509509, - "modified": 1701463509509 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -1989,10 +2169,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 600,20 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "61bc525c94fa4803a0a7f9a4", + "revision": "b617a88591e64ccdb5b85f3d", "revision_nr": 1, - "created": 1701463509509, - "modified": 1701463509509 + "created": 1701465820481, + "modified": 1701465820481 } }, { @@ -2000,12 +2180,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "e925da0abf974c6fa8a54665", + "revision": "f1a43dd035fc4e2c87db50eb", "revision_nr": 1, - "created": 1701463509509, - "modified": 1701463509509 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2020,20 +2200,32 @@ "total_amount": 602.99, "history_id": 1677721233156, "id": 1677721233156, - "date_created": "2023-03-02T01:40:33.156Z", - "date_last_updated": "2023-03-02T02:17:46.177Z", - "date_of_expiration": "2023-04-01T01:40:33.156Z", + "date_created": { + "type": 6, + "value": 1677721233156 + }, + "date_last_updated": { + "type": 6, + "value": 1677723466177 + }, + "date_of_expiration": { + "type": 6, + "value": 1680313233156 + }, "operation_type": "regular_payment", "status": "in_process", "status_detail": "pending_review_manual", "currency_id": "BRL", - "money_release_date": "2023-03-02T02:17:46.177Z", + "money_release_date": { + "type": 6, + "value": 1677723466177 + }, "money_release_status": "in_process" }, - "revision": "ef3a1d8a0f9d44448350654f", + "revision": "f6fb5ba9924042f6a8f55b8c", "revision_nr": 1, - "created": 1701463509509, - "modified": 1701463509509 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2041,10 +2233,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 602,99 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "eb978f9fb83c45679b8c8afd", + "revision": "681daeace50a4fb29d9c2020", "revision_nr": 1, - "created": 1701463509509, - "modified": 1701463509509 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2052,12 +2244,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "3f282c370a174a54a3a21afa", + "revision": "74a75ad077794106bd102e99", "revision_nr": 1, - "created": 1701463509510, - "modified": 1701463509510 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2072,20 +2264,32 @@ "total_amount": 34.89, "history_id": 1677761687105, "id": 1677761687105, - "date_created": "2023-03-02T12:54:47.105Z", - "date_last_updated": "2023-03-02T12:58:14.846Z", - "date_of_expiration": "2023-04-01T12:54:47.105Z", + "date_created": { + "type": 6, + "value": 1677761687105 + }, + "date_last_updated": { + "type": 6, + "value": 1677761894846 + }, + "date_of_expiration": { + "type": 6, + "value": 1680353687105 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", - "money_release_date": "2023-03-02T12:58:14.846Z", + "money_release_date": { + "type": 6, + "value": 1677761894846 + }, "money_release_status": "cancelled" }, - "revision": "b8bd90703c524cc6a47d969e", + "revision": "fb89edf7beab49a6934f87e7", "revision_nr": 1, - "created": 1701463509510, - "modified": 1701463509510 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2093,10 +2297,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 34,89 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "b9cfadb199cb4f76817b7028", + "revision": "e32d18a5b96f4a5d84d7766f", "revision_nr": 1, - "created": 1701463509510, - "modified": 1701463509510 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2104,12 +2308,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "830bb6d4f2274d599fa85919", + "revision": "4285373c2ec8411fb024eb79", "revision_nr": 1, - "created": 1701463509510, - "modified": 1701463509510 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2124,22 +2328,37 @@ "total_amount": 43.78, "history_id": 1677762883870, "id": 1677762883870, - "date_created": "2023-03-02T13:14:43.870Z", - "date_last_updated": "2023-03-02T13:17:43.393Z", - "date_of_expiration": "2023-04-01T13:14:43.870Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-02T13:17:43.393Z", - "money_release_date": "2023-03-02T13:17:43.393Z", + "date_created": { + "type": 6, + "value": 1677762883870 + }, + "date_last_updated": { + "type": 6, + "value": 1677763063393 + }, + "date_of_expiration": { + "type": 6, + "value": 1680354883870 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677763063393 + }, + "money_release_date": { + "type": 6, + "value": 1677763063393 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "f952b4cdcd784787980a9418", + "revision": "06a8b7b697bb4d25ae06cccb", "revision_nr": 1, - "created": 1701463509510, - "modified": 1701463509510 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2147,10 +2366,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 43,78 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "bcb8b78f47f24d6983e64b32", + "revision": "294b972fc6c9422ca8f86bdd", "revision_nr": 1, - "created": 1701463509510, - "modified": 1701463509510 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2158,12 +2377,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "4fc769f89e5b479291ceb1fa", + "revision": "90aa5ab3d38a4a07b57eca94", "revision_nr": 1, - "created": 1701463509510, - "modified": 1701463509510 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2178,22 +2397,37 @@ "total_amount": 29.91, "history_id": 1677822431645, "id": 1677822431645, - "date_created": "2023-03-03T05:47:11.645Z", - "date_last_updated": "2023-03-03T05:48:12.770Z", - "date_of_expiration": "2023-04-02T05:47:11.645Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-03T05:48:12.770Z", - "money_release_date": "2023-03-03T05:48:12.770Z", + "date_created": { + "type": 6, + "value": 1677822431645 + }, + "date_last_updated": { + "type": 6, + "value": 1677822492770 + }, + "date_of_expiration": { + "type": 6, + "value": 1680414431645 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677822492770 + }, + "money_release_date": { + "type": 6, + "value": 1677822492770 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "54e9db468208403c94779f57", + "revision": "aadfac7779b643d18531a0d5", "revision_nr": 1, - "created": 1701463509510, - "modified": 1701463509510 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2201,10 +2435,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 29,91 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "df1eb4dc598c4d27a2d7bef4", + "revision": "2dbfbe4e915c418e855bb9e8", "revision_nr": 1, - "created": 1701463509510, - "modified": 1701463509510 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2212,12 +2446,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "7047cd0086ec4b3ebf97f584", + "revision": "b4d37db62628438f82cef6b8", "revision_nr": 1, - "created": 1701463509510, - "modified": 1701463509510 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2232,22 +2466,37 @@ "total_amount": 50, "history_id": 1677831643976, "id": 1677831643976, - "date_created": "2023-03-03T08:20:43.976Z", - "date_last_updated": "2023-03-03T08:23:18.262Z", - "date_of_expiration": "2023-04-02T08:20:43.976Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-03T08:23:18.262Z", - "money_release_date": "2023-03-03T08:23:18.262Z", + "date_created": { + "type": 6, + "value": 1677831643976 + }, + "date_last_updated": { + "type": 6, + "value": 1677831798262 + }, + "date_of_expiration": { + "type": 6, + "value": 1680423643976 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677831798262 + }, + "money_release_date": { + "type": 6, + "value": 1677831798262 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "478097a75c564372b721a209", + "revision": "b6080ec0eb9e4ac7a839d690", "revision_nr": 1, - "created": 1701463509510, - "modified": 1701463509510 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2255,10 +2504,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "3b666101e7d44d598a8faa20", + "revision": "59544d4b1bc241518dd3a7ae", "revision_nr": 1, - "created": 1701463509510, - "modified": 1701463509510 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2266,12 +2515,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "32f5aff4e4e04627ba7ccbe8", + "revision": "12bb054ba1f3411d851a51bb", "revision_nr": 1, - "created": 1701463509510, - "modified": 1701463509510 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2286,20 +2535,32 @@ "total_amount": 100, "history_id": 1677952604160, "id": 1677952604160, - "date_created": "2023-03-04T17:56:44.160Z", - "date_last_updated": "2023-03-13T13:32:24.731Z", - "date_of_expiration": "2023-04-03T17:56:44.160Z", + "date_created": { + "type": 6, + "value": 1677952604160 + }, + "date_last_updated": { + "type": 6, + "value": 1678714344731 + }, + "date_of_expiration": { + "type": 6, + "value": 1680544604160 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-03-13T13:32:24.731Z", + "money_release_date": { + "type": 6, + "value": 1678714344731 + }, "money_release_status": "rejected" }, - "revision": "8521b70760794758930c026e", + "revision": "6973caaf65694f9ea0707c8d", "revision_nr": 1, - "created": 1701463509510, - "modified": 1701463509510 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2307,10 +2568,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "7090d3ebf3e74874b1b7eb94", + "revision": "18a21c4d8f004015b30f4b3a", "revision_nr": 1, - "created": 1701463509510, - "modified": 1701463509510 + "created": 1701465820482, + "modified": 1701465820482 } }, { @@ -2328,12 +2589,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "13c993bd1c0b4a2da19eddee", + "revision": "f2c66aec2e874d93a955d079", "revision_nr": 1, - "created": 1701463509510, - "modified": 1701463509510 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2349,9 +2610,18 @@ "original_amount": 141586, "total_amount": 141586, "id": 1678033196645, - "date_created": "2023-03-05T16:19:56.645Z", - "date_last_updated": "2023-03-05T16:19:56.645Z", - "date_of_expiration": "2023-03-05T16:19:56.645Z", + "date_created": { + "type": 6, + "value": 1678033196645 + }, + "date_last_updated": { + "type": 6, + "value": 1678033196645 + }, + "date_of_expiration": { + "type": 6, + "value": 1678033196645 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2360,10 +2630,10 @@ "history_id": 1678033196645, "description": "Compra de 141586 IVIP por 20 BRL" }, - "revision": "d348a57a35cd4f54b9fbf691", + "revision": "4dc5b7be70f945aaa520ad7d", "revision_nr": 1, - "created": 1701463509510, - "modified": 1701463509510 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2381,12 +2651,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "9329f1dfda0b436fa425f1df", + "revision": "8ba72ec76d9d4559b363c2d7", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2402,9 +2672,18 @@ "original_amount": 269014, "total_amount": 269014, "id": 1678033334564, - "date_created": "2023-03-05T16:22:14.564Z", - "date_last_updated": "2023-03-05T16:22:14.564Z", - "date_of_expiration": "2023-03-05T16:22:14.564Z", + "date_created": { + "type": 6, + "value": 1678033334564 + }, + "date_last_updated": { + "type": 6, + "value": 1678033334564 + }, + "date_of_expiration": { + "type": 6, + "value": 1678033334564 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2413,10 +2692,10 @@ "history_id": 1678033334564, "description": "Compra de 269014 IVIP por 38 BRL" }, - "revision": "267c5f92275d4c1d81eef0dc", + "revision": "874a06c7944545e08505dc02", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2434,12 +2713,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "aae83ebe1b704a32a3744611", + "revision": "d4d3fc09437a4d4085f3a4db", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2455,9 +2734,18 @@ "original_amount": 297331, "total_amount": 297331, "id": 1678033849155, - "date_created": "2023-03-05T16:30:49.155Z", - "date_last_updated": "2023-03-05T16:30:49.155Z", - "date_of_expiration": "2023-03-05T16:30:49.155Z", + "date_created": { + "type": 6, + "value": 1678033849155 + }, + "date_last_updated": { + "type": 6, + "value": 1678033849155 + }, + "date_of_expiration": { + "type": 6, + "value": 1678033849155 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2466,10 +2754,10 @@ "history_id": 1678033849155, "description": "Compra de 297331 IVIP por 42 BRL" }, - "revision": "1fd72ff9774d4f1ea4a02ccd", + "revision": "5902bc22292e421e87d690a7", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2487,12 +2775,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "dac8823b6078421195aec385", + "revision": "c2a2a57c51164680b1b17a6a", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2508,9 +2796,18 @@ "original_amount": 141660, "total_amount": 141660, "id": 1678034274118, - "date_created": "2023-03-05T16:37:54.118Z", - "date_last_updated": "2023-03-05T16:37:54.118Z", - "date_of_expiration": "2023-03-05T16:37:54.118Z", + "date_created": { + "type": 6, + "value": 1678034274118 + }, + "date_last_updated": { + "type": 6, + "value": 1678034274118 + }, + "date_of_expiration": { + "type": 6, + "value": 1678034274118 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2519,10 +2816,10 @@ "history_id": 1678034274118, "description": "Compra de 141660 IVIP por 20 BRL" }, - "revision": "8fa38d13224342f28aa299f6", + "revision": "0755642d8b694f24b7fa3ab3", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2540,12 +2837,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b399390f7a14411aa0a0d290", + "revision": "40dc8f866e3043868aac239f", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2561,9 +2858,18 @@ "original_amount": 141586, "total_amount": 141586, "id": 1678034346295, - "date_created": "2023-03-05T16:39:06.295Z", - "date_last_updated": "2023-03-05T16:39:06.295Z", - "date_of_expiration": "2023-03-05T16:39:06.295Z", + "date_created": { + "type": 6, + "value": 1678034346295 + }, + "date_last_updated": { + "type": 6, + "value": 1678034346295 + }, + "date_of_expiration": { + "type": 6, + "value": 1678034346295 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2572,10 +2878,10 @@ "history_id": 1678034346295, "description": "Compra de 141586 IVIP por 20 BRL" }, - "revision": "319669a80f63485e826eb2ae", + "revision": "6806b35aeb794ecf86469b37", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2593,12 +2899,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "4472e7f4bff842da99f872ad", + "revision": "27607c757de449a0a821a3d9", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2614,9 +2920,18 @@ "original_amount": 424981, "total_amount": 424981, "id": 1678034463284, - "date_created": "2023-03-05T16:41:03.284Z", - "date_last_updated": "2023-03-05T16:41:03.284Z", - "date_of_expiration": "2023-03-05T16:41:03.284Z", + "date_created": { + "type": 6, + "value": 1678034463284 + }, + "date_last_updated": { + "type": 6, + "value": 1678034463284 + }, + "date_of_expiration": { + "type": 6, + "value": 1678034463284 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2625,10 +2940,10 @@ "history_id": 1678034463284, "description": "Compra de 424981 IVIP por 60 BRL" }, - "revision": "bc07cb5a130142b9a40f5cb5", + "revision": "d4b9784c492a41beb990845e", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2646,12 +2961,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "5c52140794864a528e97969f", + "revision": "09f990ecc329443096c287e6", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2667,9 +2982,18 @@ "original_amount": 141586, "total_amount": 141586, "id": 1678034665927, - "date_created": "2023-03-05T16:44:25.927Z", - "date_last_updated": "2023-03-05T16:44:25.927Z", - "date_of_expiration": "2023-03-05T16:44:25.927Z", + "date_created": { + "type": 6, + "value": 1678034665927 + }, + "date_last_updated": { + "type": 6, + "value": 1678034665927 + }, + "date_of_expiration": { + "type": 6, + "value": 1678034665927 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2678,10 +3002,10 @@ "history_id": 1678034665927, "description": "Compra de 141586 IVIP por 20 BRL" }, - "revision": "6582a9ee9c0b412f9bda8297", + "revision": "2992b23137e1487f83c5d78a", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2699,12 +3023,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "66b0587608a94de4b34f8b07", + "revision": "bc567fa172a84e85a59eb3ce", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2720,9 +3044,18 @@ "original_amount": 2000, "total_amount": 2000, "id": 1678041814665, - "date_created": "2023-03-05T18:43:34.665Z", - "date_last_updated": "2023-03-05T18:43:34.665Z", - "date_of_expiration": "2023-03-05T18:43:34.665Z", + "date_created": { + "type": 6, + "value": 1678041814665 + }, + "date_last_updated": { + "type": 6, + "value": 1678041814665 + }, + "date_of_expiration": { + "type": 6, + "value": 1678041814665 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2730,10 +3063,10 @@ "currency_id": "BRL", "history_id": 1678041814665 }, - "revision": "8f0f412bf3374c57906adf4f", + "revision": "badd91ebfc954411ab4abf49", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2741,10 +3074,10 @@ "content": { "type": "STRING", "value": "Ganho 10% na pré-venda ao indicar o nosso aplicativo", - "revision": "5a963c37ad9b4bab9a654e01", + "revision": "3e12cb07853345d399c0cabc", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2752,12 +3085,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "c2ff9ec3be0443c9934cd2ff", + "revision": "7a1bf9e1d97640b4aef0149d", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2772,20 +3105,32 @@ "total_amount": 60, "history_id": 1678047987815, "id": 1678047987815, - "date_created": "2023-03-05T20:26:27.815Z", - "date_last_updated": "2023-03-13T13:43:04.618Z", - "date_of_expiration": "2023-04-04T20:26:27.815Z", + "date_created": { + "type": 6, + "value": 1678047987815 + }, + "date_last_updated": { + "type": 6, + "value": 1678714984618 + }, + "date_of_expiration": { + "type": 6, + "value": 1680639987815 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-03-13T13:43:04.618Z", + "money_release_date": { + "type": 6, + "value": 1678714984618 + }, "money_release_status": "rejected" }, - "revision": "c908686b14c6434d9e93e23b", + "revision": "5ec5e9422cb74f7782676363", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2793,10 +3138,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 60,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "26abeaaf0f25495bbf83ca83", + "revision": "8c2135a1e6074e4cb424d916", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2814,12 +3159,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "16f0f86ffacb45c5b747bb07", + "revision": "3ae0432d955b4796a77541ec", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2835,9 +3180,18 @@ "original_amount": 14306893, "total_amount": 14306893, "id": 1678160538199, - "date_created": "2023-03-07T03:42:18.199Z", - "date_last_updated": "2023-03-07T03:42:18.199Z", - "date_of_expiration": "2023-03-07T03:42:18.199Z", + "date_created": { + "type": 6, + "value": 1678160538199 + }, + "date_last_updated": { + "type": 6, + "value": 1678160538199 + }, + "date_of_expiration": { + "type": 6, + "value": 1678160538199 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2846,10 +3200,10 @@ "history_id": 1678160538199, "description": "Compra de 14306893 IVIP por 2000 BRL" }, - "revision": "8ad143c3cde647568b76b5f2", + "revision": "3bfd90b0115b4fc591f15485", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2867,12 +3221,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "40a834cd1c8543ea931e177f", + "revision": "7cd6fd9b4e284ce88e2f0bcd", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2888,9 +3242,18 @@ "original_amount": 142846, "total_amount": 142846, "id": 1678284807612, - "date_created": "2023-03-08T14:13:27.612Z", - "date_last_updated": "2023-03-08T14:13:27.612Z", - "date_of_expiration": "2023-03-08T14:13:27.612Z", + "date_created": { + "type": 6, + "value": 1678284807612 + }, + "date_last_updated": { + "type": 6, + "value": 1678284807612 + }, + "date_of_expiration": { + "type": 6, + "value": 1678284807612 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -2899,10 +3262,10 @@ "history_id": 1678284807612, "description": "Compra de 142846 IVIP por 20 BRL" }, - "revision": "22817128251e4570b94a254e", + "revision": "bc222a89952c4799b31d5a8a", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2914,10 +3277,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 32 }, - "revision": "20a5fc343de2403c8a47c759", + "revision": "fe9c40622af04750b21a6a2f", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2925,10 +3288,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3c082d968e4145f0b6b7f03f", + "revision": "e0c5d9e4addc43f0a13f1ed6", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2936,10 +3299,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "c2454c62cec54255a6b9d52f", + "revision": "bc4f2bed9d484a48b75d20fb", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2954,19 +3317,28 @@ "total_amount": 432, "history_id": 1678325359354, "id": 1678325359354, - "date_created": "2023-03-09T01:29:19.354Z", - "date_last_updated": "2023-03-09T01:29:19.354Z", - "date_of_expiration": "2023-04-08T01:29:19.354Z", + "date_created": { + "type": 6, + "value": 1678325359354 + }, + "date_last_updated": { + "type": 6, + "value": 1678325359354 + }, + "date_of_expiration": { + "type": 6, + "value": 1680917359354 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "db9f4044c24c497b8e35f91d", + "revision": "6878a414096a4b3f821990f1", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2974,10 +3346,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês e liberação final", - "revision": "a33a9ae40a694ea4b219c1f8", + "revision": "f5322a7f505040a3a90a9c02", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -2989,10 +3361,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 120 }, - "revision": "2198f920f0d44b52beb0bbe9", + "revision": "b72e8e5238f348e1aac4e3d2", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -3000,10 +3372,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "44fca3302a574b8cbc1a6d64", + "revision": "d8c51de038204750a71c8520", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -3011,10 +3383,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "bf1a0355c1e549b5be7917ec", + "revision": "8f9b7c12f32343528d0737cf", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -3029,21 +3401,36 @@ "total_amount": 3120, "history_id": 1678400755247, "id": 1678400755247, - "date_created": "2023-03-09T22:25:55.247Z", - "date_last_updated": "2023-03-09T22:27:52.142Z", - "date_of_expiration": "2023-04-08T22:25:55.247Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-09T22:27:52.142Z", - "money_release_date": "2023-03-09T22:27:52.142Z", + "date_created": { + "type": 6, + "value": 1678400755247 + }, + "date_last_updated": { + "type": 6, + "value": 1678400872142 + }, + "date_of_expiration": { + "type": 6, + "value": 1680992755247 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678400872142 + }, + "money_release_date": { + "type": 6, + "value": 1678400872142 + }, "money_release_status": "approved" }, - "revision": "a86e8c628ab64edebce1eb87", + "revision": "8af8679998594e4dbfade224", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -3051,10 +3438,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 3.120,00", - "revision": "2d590a4063be43fca8d25be0", + "revision": "4fbada32e2e94123ba2b2549", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820483, + "modified": 1701465820483 } }, { @@ -3066,10 +3453,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 16 }, - "revision": "24630b2d7e9f4bc1abf1cc6e", + "revision": "eb7d9595ee8d4bfc8c91a124", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3077,10 +3464,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fc186a6be3c7417eba5be2ef", + "revision": "ab323ea97bce4b399fe9e105", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3088,10 +3475,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "00d8af20a1da4b2b8fc02cb5", + "revision": "8acab75ea342439a9711b80f", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3106,22 +3493,37 @@ "total_amount": 416, "history_id": 1678401099895, "id": 1678401099895, - "date_created": "2023-03-09T22:31:39.895Z", - "date_last_updated": "2023-03-09T22:32:36.010Z", - "date_of_expiration": "2023-04-08T22:31:39.895Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-09T22:32:36.010Z", - "money_release_date": "2023-03-09T22:32:36.010Z", + "date_created": { + "type": 6, + "value": 1678401099895 + }, + "date_last_updated": { + "type": 6, + "value": 1678401156010 + }, + "date_of_expiration": { + "type": 6, + "value": 1680993099895 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678401156010 + }, + "money_release_date": { + "type": 6, + "value": 1678401156010 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "16448329fd1648088bf7ba6e", + "revision": "e3712234f6254e32bd1f6085", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3129,10 +3531,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 416,00", - "revision": "88dbb4e5869e441f93a08fd7", + "revision": "bed4607d402d4df1b39226f1", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3144,10 +3546,10 @@ "label": "Em 9 parcela(s) 18.00%", "amount": 108 }, - "revision": "0f7de24bdb2b4e59a260bbb4", + "revision": "eeb00d2e549e41469aefd62f", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3155,10 +3557,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5b3d365974e845ce9dc4dca2", + "revision": "33078afc111b41f8828bec97", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3166,10 +3568,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "af55780937094c1fb49faff8", + "revision": "1b8b9095e1ec4f15bb03a4b6", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3184,20 +3586,32 @@ "total_amount": 708, "history_id": 1678401292954, "id": 1678401292954, - "date_created": "2023-03-09T22:34:52.954Z", - "date_last_updated": "2023-03-09T22:35:45.264Z", - "date_of_expiration": "2023-04-08T22:34:52.954Z", + "date_created": { + "type": 6, + "value": 1678401292954 + }, + "date_last_updated": { + "type": 6, + "value": 1678401345264 + }, + "date_of_expiration": { + "type": 6, + "value": 1680993292954 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-03-09T22:35:45.264Z", + "money_release_date": { + "type": 6, + "value": 1678401345264 + }, "money_release_status": "rejected" }, - "revision": "75b26afd0d824b69993e4854", + "revision": "7471d0d1e6f744be9ab02de0", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3205,10 +3619,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 600,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 9 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 708,00", - "revision": "2d0490bc2bd04ff894c860a3", + "revision": "3b0a64ecd79d407092b94dc9", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3220,10 +3634,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 12 }, - "revision": "2d69762f15ce4737832bf0ed", + "revision": "0e9635ae4dc94fc08ac23655", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3231,10 +3645,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6b7fad4fa24643aea231b582", + "revision": "3c240c44d5b44e6ebbcc410b", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3242,10 +3656,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "9497edcb1069429895539b13", + "revision": "7a851369b390447983977787", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3260,22 +3674,37 @@ "total_amount": 312, "history_id": 1678401795273, "id": 1678401795273, - "date_created": "2023-03-09T22:43:15.273Z", - "date_last_updated": "2023-03-21T13:21:47.084Z", - "date_of_expiration": "2023-04-08T22:43:15.273Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-21T13:21:47.084Z", - "money_release_date": "2023-03-21T13:21:47.084Z", + "date_created": { + "type": 6, + "value": 1678401795273 + }, + "date_last_updated": { + "type": 6, + "value": 1679404907084 + }, + "date_of_expiration": { + "type": 6, + "value": 1680993795273 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679404907084 + }, + "money_release_date": { + "type": 6, + "value": 1679404907084 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "34e6c76a497d46289a91e22f", + "revision": "5ae08e24594e4d1197dbdce6", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3283,10 +3712,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 312,00", - "revision": "ffca6fdfd5a347dba2d6f14a", + "revision": "b48d3adbceed4f9999406638", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3296,10 +3725,10 @@ "value": { "content": "23796929000000023493380261020453727300633330" }, - "revision": "33e6da92e7dc4d88b7ad2e46", + "revision": "692c88030ad04439a6f29972", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3311,10 +3740,10 @@ "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "42a48a8119244245bd561880", + "revision": "f58b4d850d344db2b72f6f89", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3332,10 +3761,10 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "2fec71f5ec4048a6b11efd9b", + "revision": "a964f0635f254b6289ec8dff", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3343,10 +3772,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55645430279/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55645430279&payment_method_reference_id=10204537273&hash=557e269b-6b88-40a8-b95a-ce41d6734e10", - "revision": "1b86021785f94bf5b75e34da", + "revision": "02c20514dff244f68d7de2bc", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3354,10 +3783,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "3091e1a35a014450a157ee27", + "revision": "6c08c0988f1e4ae6a2d737ed", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3372,19 +3801,28 @@ "total_amount": 23.490000000000002, "history_id": 1678595791470, "id": 55645430279, - "date_created": "2023-03-12T00:36:32.384-04:00", - "date_last_updated": "2023-03-12T00:36:32.384-04:00", - "date_of_expiration": "2023-03-15T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1678595792384 + }, + "date_last_updated": { + "type": 6, + "value": 1678595792384 + }, + "date_of_expiration": { + "type": 6, + "value": 1678935599000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "bdb1130afbcc43b49add8455", + "revision": "a1f2e2d42976465eb30ef20c", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3392,10 +3830,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "68e22cf9affd48fc9b87bd3c", + "revision": "c066bfc4a3d9433a8afec8bd", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3405,10 +3843,10 @@ "value": { "content": "23791929000000023493380261020453555300633330" }, - "revision": "f44a53410f46461daceec1c7", + "revision": "c0af763cee3149c7b331aa11", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3420,10 +3858,10 @@ "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "db008d3265f9461facdfbf19", + "revision": "17803806158d476aa4d37f5b", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3441,10 +3879,10 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "5f9e70a1590f42a6a55fa462", + "revision": "6c6fe7c5a13641f6b06e8062", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3452,10 +3890,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55645448309/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55645448309&payment_method_reference_id=10204535553&hash=3a19b388-0268-4177-bbf8-d1aeb0efa481", - "revision": "3f63173828c24590a7279a8b", + "revision": "e5cbe6d56560448db4a6d361", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3463,10 +3901,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b224b5a3b1b84aacb5a328b9", + "revision": "65023a90870842eb8f743f05", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3481,19 +3919,28 @@ "total_amount": 23.490000000000002, "history_id": 1678595892940, "id": 55645448309, - "date_created": "2023-03-12T00:38:13.379-04:00", - "date_last_updated": "2023-03-12T00:38:13.379-04:00", - "date_of_expiration": "2023-03-15T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1678595893379 + }, + "date_last_updated": { + "type": 6, + "value": 1678595893379 + }, + "date_of_expiration": { + "type": 6, + "value": 1678935599000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "70d4be22ce624fe49cef6ff2", + "revision": "42fed788b7314ab6ad371562", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3501,10 +3948,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "c22ecec259bf4644addca3cd", + "revision": "f6c69497b84c4446bfa4e708", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3512,10 +3959,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "af5b9e017ae54d588f72182c", + "revision": "b1d6f95a18264475a783de1e", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3525,10 +3972,10 @@ "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "0607db063c684165a52d2c98", + "revision": "dc38e13080794b4489dca4a9", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3536,10 +3983,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9f1838b6cc33491798610e77", + "revision": "1223dde8e97d4f4b8326ed5a", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3551,10 +3998,10 @@ "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "a4cb6e9b44584dbfb70f6f96", + "revision": "687b5dfabf924ffaaa707911", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3568,10 +4015,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "c94f8250ec034df5ba621462", + "revision": "f462e44a962a423fbde6f914", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3579,10 +4026,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55645618353/ticket?caller_id=1310149122&hash=8fcfd6de-ecd4-4d03-89e3-76d87270fb3b", - "revision": "9bb3718e955d4a5e857ffe74", + "revision": "8fd249e3007f47128f42accf", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3590,10 +4037,10 @@ "content": { "type": "STRING", "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540520.205802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter556456183536304B75F", - "revision": "496d544175734b38992ab110", + "revision": "aa1828e4004a44f18eead4ca", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3601,10 +4048,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJgElEQVR42u3dQZLiyA4G4PSKY3BUc1QfYZasyImKnoaUlC6oefEieuyPTRMNtj/XyhJ/Klv/419/NUZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGxj/beG/xdf31P+vvj369WXq//f7o12v5Onj79eb2+z/X13m3dvn6Z/jon/+pRw0nZGRkZGRkZGRkZDyLcfzwC1LfROP6usjXdx7hzrbXRS9fH63jmWeHTxmMjIyMjIyMjIyMZzDefj+tPy/769H+n+v31zP+syB4pKLh8rqzRzAOR9Vr3V8FCiMjIyMjIyMjI+PJjWPTfaBlderHP4YG/DrJwwz3cWdkZGRkZGRkZGRkzM/v3zTUn3XAyG+vwwd1LCzWcjgjIyMjIyMjIyPjyY09JlyWvRLh/srF5MPvqZ1fMzitlBr/Pt/DyMjIyMjIyMjI+F831rWkS+ms/3/e/C/rXRkZGRkZGRkZGRn/y8adV0ijx3Z+L7H0cK/PJaT30sW/9E9fjIyMjIyMjIyMjEc3PlK1cEllxHXsxz/T6I9h/mItNXoMvMcvh3tdPujZMzIyMjIyMjIyMh7UeE3/kyIzS6BtJfCe72ydzjjfCeOsjIyMjIyMjIyMjKc0rmPRkBd6tjKvZXutHM1zX/qkr1/T8ZdXqr0PK1kZGRkZGRkZGRkZz2K8p2DLNjX2WXamxUGMj9K8b+nOLq8qJNI2RkZGRkZGRkZGxnMZc4lQ5yZex3qil907W0ishy7+I015uZcvz34xYGRkZGRkZGRkZDy+cZaLGRvzvfcSkNn2cu6tjGkJsZo+US/phIyMjIyMjIyMjIwnMj7rgCEpcwklQtoFtG5MFC87iOLK0TQt5pMMOyMjIyMjIyMjI+PxjDl7filXG77TAj8/499i0VBnK47lSPtpvoeRkZGRkZGRkZHxMMYe4uRDrXDdG1J+i0GbOtF8Cd+ZlRH3kMpp79e7MjIyMjIyMjIyMh7LmNPoW8G2cVp5D+rZXkP1PHG4S5+OXXyTnWFkZGRkZGRkZGQ8oDE8ttd+fNwjKMTS393i+lEq55PsDCMjIyMjIyMjI+OBjMPz+yMkXIYQek/d99qqv47nyrQ2j+esk+QOIyMjIyMjIyMj41mMO7PJr5Pv7KwunU1b3NIol/ZNh56RkZGRkZGRkZHxbMZ7CrbkNHqA9JJY3yksemnVr9OLzv4ejIyMjIyMjIyMjMc3xtWct8nOQq1Ezp9HzbYPynNf8kfrzpDFhZGRkZGRkZGRkfFMxrH7HsIv9yRqKV+TXjUXM64lbTH5vrPMlJGRkZGRkZGRkfEcxtlGQDkOc3mjTnMTp7MV194nhUUsRxgZGRkZGRkZGRnPYswJl1AHTLfoDK36nrYPuo4LRqeJm9lHW/tsDjsjIyMjIyMjIyPjQYxxEWfAtsncxJYqg/66Wt/LztSPagbnk549IyMjIyMjIyMj44GMsTG/vVIwOdW+pRTMbawe+neRmUfYMnQ44WX+p2JkZGRkZGRkZGQ8g3GWRu8lRFN3+AyP/887260DdjYIrcUHIyMjIyMjIyMj4+GNz4ErS0q15zTN82o5X7N3VP0RYJlh1/e1AiMjIyMjIyMjI+OxjH0yAXHasw+t+ppzj2PL096hvVQY+Vpv1pIyMjIyMjIyMjIyHsuYdxbKU15mj//X3uejXHqMw+yMXQxFw8ezFRkZGRkZGRkZGRkPZawpmJbC7LMpLzuQUCuM5Ui6oRZO+Hb+IyMjIyMjIyMjI+OxjHkfoSG6HmeTt7gd6OPtsPOesjN9jN7EXww2RkZGRkZGRkZGxnMZ89ZA4fl9jK4PwxFDvqalePvuKJc85aWVDA4jIyMjIyMjIyPjWYz5iT5kz7/fq3PIue92329x3Ms4djHVHJ2RkZGRkZGRkZHxZMZeGvNDidBaHXZ+CZVBvY8QmZnt+fn4WXaGkZGRkZGRkZGR8YDG2/erQuN3bmWieZvMdKkZnBqKv5Z6gpGRkZGRkZGRkfF0xpbS6H2SNM8595ymmW1edCmXiBMZGyMjIyMjIyMjI+MpjX0aY8lDFuui0qF5fymrQuuQmEvp4scMDiMjIyMjIyMjI+NZjDXPEs/UJstMr2WAYkjTxMWpITszrR7W+udiZGRkZGRkZGRkPLYxz1YMCZc+e5MWg+ZYzWy0eVw5Wmcr9jSRkZGRkZGRkZGRkfHgxphYv8Uh5d8PMp8VBNveuMS94S7Lz3r2jIyMjIyMjIyMjIcw9kK7h7HlqQ6ou3e+/2g3O1PrEkZGRkZGRkZGRsYTGdOuQdMBim2MzLT5qtA1htkfaVjjffJrwBjPYWRkZGRkZGRkZDyLcbhsbNXXLv42GXbe0u5Dw00/gzY7uxgNtI2RkZGRkZGRkZHxXMaITZmXR+LfS2WQh52HLHwL99qSOpQI94/mzjAyMjIyMjIyMjIexDhcdtl7xm8pBRPGLrb5kMWanelpP6I22eCIkZGRkZGRkZGR8SzGlpaHtnSm2TN+VNcQTRpkvlM9XMtfiJGRkZGRkZGRkfEcxhqiiQMUW6GFO4sR+JBhb2GZaV05enstV20/yc4wMjIyMjIyMjIyHsQ4iPL+P2GA4n2/RBiwS4mu9yH53sZr9TIJhpGRkZGRkZGRkfEMxhxj2UqHPtDqKMRHmQRTh523MuUl/oUYGRkZGRkZGRkZz2kMBUF8kG/jkMU8weXe6muZn2dearSP9vxkZGRkZGRkZGRkPJZxJ0TTxmBL2pBzurHn7pSXIcxex8bE3wcYGRkZGRkZGRkZz2LMD/vX7/LpdZJi3mtotjj1Uhrz98lRCyMjIyMjIyMjI+OZjEuJsbQwiyWE2R8Fm2uF3dmKW+r9/6RWYGRkZGRkZGRkZDyg8Raf+pehMb+OQfVcB1z32/Dh8P5mKWr5WYCRkZGRkZGRkZHxfMadgHmY19JL973G25dhlEtqzD9+lrNnZGRkZGRkZGRkPL5xKY/2O8YtzWtZx1jNrFYYPxpi8ldGRkZGRkZGRkbGExr7zpnia0uP9rfxYb9OK4/Vw62c8BY7/YyMjIyMjIyMjIynMua1pE/s8CZmZ1qacR52+Mxz0LdxlepOKudtdoaRkZGRkZGRkZHxWMY/88XIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyPgHGv8Gg3eEIKcvUa8AAAAASUVORK5CYII=", - "revision": "75068c73ff02400da9ea61ad", + "revision": "73bbd9de324a4d54b55d78ab", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3612,10 +4059,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "1b8ce49071004dbb8092c1bb", + "revision": "1465bf722182497d82d6b4b2", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3630,22 +4077,37 @@ "total_amount": 20.2, "history_id": 1678596937174, "id": 55645618353, - "date_created": "2023-03-12T00:55:37.889-04:00", - "date_last_updated": "2023-03-12T00:56:04.000-04:00", - "date_of_expiration": "2023-03-13T00:55:37.650-04:00", + "date_created": { + "type": 6, + "value": 1678596937889 + }, + "date_last_updated": { + "type": 6, + "value": 1678596964000 + }, + "date_of_expiration": { + "type": 6, + "value": 1678683337650 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "date_approved": "2023-03-12T00:56:04.000-04:00", - "money_release_date": "2023-03-12T00:56:04.000-04:00", + "date_approved": { + "type": 6, + "value": 1678596964000 + }, + "money_release_date": { + "type": 6, + "value": 1678596964000 + }, "wasDebited": true }, - "revision": "9b7d72857b8f48f5b84b4f66", + "revision": "6bda623dcba44765b510cf62", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3653,10 +4115,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "95c9b1e5a77d47e99a8e06ee", + "revision": "85907b186f194766a7f6b444", "revision_nr": 1, - "created": 1701463509511, - "modified": 1701463509511 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3668,10 +4130,10 @@ "label": "Taxa de 0.99%", "amount": 0.20790000000000003 }, - "revision": "5513345e592e4c3e8d07c654", + "revision": "c04c1c19ca9f49a897cc90df", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3679,10 +4141,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e1222a6c469a444d8e47cf9b", + "revision": "9a4ede078d1a464c9b4143c2", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3692,10 +4154,10 @@ "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "6dfb9d6720b84c6ca91ef68d", + "revision": "42489f55e0854fc48da55a68", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3703,10 +4165,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a86bb4616cb8446b864f4227", + "revision": "c65bb77a83ba44a89aad7694", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3720,10 +4182,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "84fef2629336417098f7376b", + "revision": "083b627da8d8450681ed89ef", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3731,10 +4193,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55660781347/ticket?caller_id=1310149122&hash=d81b289f-e1b7-45ae-9f11-f314a4fdb9e1", - "revision": "bb300702f6ad4ad4b290c30a", + "revision": "021c31dec038458b9a8cf10d", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3742,10 +4204,10 @@ "content": { "type": "STRING", "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540521.215802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter5566078134763047D77", - "revision": "a0429e1d4e524de692b7111c", + "revision": "650af5adb2a84a19acdfa97c", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3753,10 +4215,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJfklEQVR42u3dQXLbOhIGYGilY+io0lF5hFlyJUxeHFPobtBW5tVUJeTHlUoUiY9eEe0fjdb/+OM/jZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGR8c82ri0et49v7j9PXT5/8+PD4/PUx/Hz1PLx4fH55f3HN9ePa359mJ+KVw03ZGRkZGRkZGRkZDyLcTz5DyR/aD/u/Qz8bZB/flNP/Tp+XnV/YeeXTxmMjIyMjIyMjIyMZzA+Pt/Wt2E/7v1r/O2b9jmN+EUbJg3X15M9k7GFyUcYa31NUBgZGRkZGRkZGRlPbhyL7luJvUd1rcc/hwL8fZKHCZMGRkZGRkZGRkZGRsb0/j4tqKcK/ZadGcMvQR0nFmGGEav4jIyMjIyMjIyMjOc0huzMmgZZUnZmqMeHnHss53+ZwYmn/od8DyMjIyMjIyMjI+PfbqxrSS+lsv7/+fBv1rsyMjIyMjIyMjIy/s3G2TFG11sp5w9PVr/J04hZT5c3DkZGRkZGRkZGRsajG59ptjAM0matXPq0it+Sui5FrU+2vKYI69dzBUZGRkZGRkZGRsZDGm/pZT21VBwT6/dy78dnLH0YrfY4769nzc0aGRkZGRkZGRkZGU9mXEu7xNqSfNZkMdKWBKnNXWq3mMdrrHfyPYyMjIyMjIyMjIwHMsbragfE+TdbhX64/FmK9xG7lN2HWmuleM/IyMjIyMjIyMh4GuNQoW+ltXnvQ3PEPu/70ifrRK+ppWKu0Idmjd/n7BkZGRkZGRkZGRkPZIyR83sJyKRh48SitoTJbVpCrKZP1Jd0Q0ZGRkZGRkZGRsYTGXNTlhp+qbuAhqJ7DrwPorhy9BG7xbyXYWdkZGRkZGRkZGQ8mrGlO9XR1vli0BRvz7X/NumtOE5H2tvZGUZGRkZGRkZGRsajGXt5/Y/G2SAhRLO7j9CWfO/phrdXk8XYRp2RkZGRkZGRkZHxLMadRuYp1R53H7qVenzda2gpc4Vc+09P3xkZGRkZGRkZGRlPZryPTVli55X0HJe9tuVt/oj3neWqz6B+LzvDyMjIyMjIyMjIeBhjTws9l1RrDxX6PmmgeAn9y3u5qgbVl7St6J2RkZGRkZGRkZHxfMbvhl2m7/j5gWYdzadDTCr0jIyMjIyMjIyMjGczrinY0lOIpvZiuU+SMrvHY6dC38J9bvkyRkZGRkZGRkZGxmMbe2rBMivVx60+76+rbpPRKj8uIb3vNFm8MDIyMjIyMjIyMp7J2FOepZdgSw+dFEPgvXZJzLRZqX7dW2bKyMjIyMjIyMjIeA5j3QhoTYtBZ5HzXtq9DM1dam/FWqof4znbjxkZGRkZGRkZGRnPYtx+1UJhflbFX8ace8bGCHyfrkndPbW8UbNnZGRkZGRkZGRkPJAxNym/TdsltnSnmqbJ+wi16cZEcb3pkMF5p2bPyMjIyMjIyMjIeCBjS7mY+No+myu012ZB13CqRmZay03Tww2v5U/FyMjIyMjIyMjIeBrjLI2e3/G/eOtvpeQ/nwfUDUJzpZ+RkZGRkZGRkZHxLMZLaNxSdwRaSlB92Yuup6vqfOIyw96/nyswMjIyMjIyMjIyHsvYJx0Qp63Nh1R7G3u6XNJ8Iv8ToM5LbpOxvllLysjIyMjIyMjIyHgs41pK9dm4G35Jc4XaQHGn7WKYNLzXW5GRkZGRkZGRkZHxWMa4a9Cw0HNJ905dXqbRm/sUu/NAafLByMjIyMjIyMjIeCJj7mg+BNVr38Re9iPqISBT0+h1E9Fe+Pfva/aMjIyMjIyMjIyMhzX2odl5GHYn/NLHruf9dflOK5d8qpUMDiMjIyMjIyMjI+NZjPFlP2XPn6k7y5pq9kO+Zqf6/ojtXsa2i3XOwcjIyMjIyMjIyHgqY5gHxJ6IjxiZybt35shM6M7yTJX+dS+M822+h5GRkZGRkZGRkfGAxsd0LelOCD3NFdoQgQ/YnJ2pofjbZHRGRkZGRkZGRkbGkxljsOU2/uBZ9gUdRXvrRLcb9rJD0WX2DSMjIyMjIyMjI+PJjLde14nGJou91yblW619mURvapOYa6nixwwOIyMjIyMjIyMj41mM614dfQvR1GWmwzv+YIxV/JYaoid13qHoyww7IyMjIyMjIyMj49GMPbRXuccthvL4uTvL8ECzHo3PEKtZUpeXPpmXMDIyMjIyMjIyMp7DGLcGmizrHJ+jzWv2Iah+nZfh95q7XN6q2TMyMjIyMjIyMjIeyxhf9mvb8q2u/2izDYXeObWbnQmrSzsjIyMjIyMjIyPjeYzbXKGF3orhBrlxyzJOHGIKJofZQ7PG3C1mGTcdYmRkZGRkZGRkZDyn8RLyLMP7+5pq7fk5HrEBTA7a7OxiNIvAMzIyMjIyMjIyMp7DGLEt5lkyf51MGuJ8opX+izmVMxT4W/kzMDIyMjIyMjIyMp7DuL6K7pfwjp8hj5Jh7wXSY2/FmJ3ppQ96DtowMjIyMjIyMjIynseYl4cOt2ypt+KwcrSnHYpy28Wtrt/3EuuPcRNRRkZGRkZGRkZGxlMZ42j3SQPFocSejzpp6JMZxnXf2MPTMzIyMjIyMjIyMp7T2Mb3916mCLmlYj7Vp7TYf7FNnv635gqMjIyMjIyMjIyMf79xLW/9ueFKKOdfygrUnezMkmYY97Kt6PAXYmRkZGRkZGRkZDynsZXoeu+1J2Ir04h4hC4vMURT4zltGm9nZGRkZGRkZGRkPIOxHrlmfyu/WEocZrclTAiz59/08e/RGRkZGRkZGRkZGc9jXCex9JYq6190UmxlMWhdnHothfk17VD07nyGkZGRkZGRkZGR8TDGS4mxtNSL5Vo+tFDFD8+x21txyNf89lyBkZGRkZGRkZGR8YDGx+StP2zR2VMcZk0BmfYVNgbVU3Ymp+MZGRkZGRkZGRkZz2r8OvOyleHnl88yOM9SmH/+Xs6ekZGRkZGRkZGR8fjGS3m1z5GZWH1/xLWk2292photNXd5o6cLIyMjIyMjIyMj4wGNfXqnVEePGwrlDUJ76Va+0yt9GCtU+hkZGRkZGRkZGRlPZcxrSTfs8CH2Jl/G0Z5ph89WeqW3kLhJqZzn9O/ByMjIyMjIyMjIeGzjn3kwMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL+gcb/Am9FACpuHEp1AAAAAElFTkSuQmCC", - "revision": "35583eee6d234e278be66da7", + "revision": "84749771643b4c499d010f98", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3764,10 +4226,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e900d04c0d15465987bb26c1", + "revision": "097a82e629bc4e32a0774e31", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3782,19 +4244,28 @@ "total_amount": 21.21, "history_id": 1678649850085, "id": 55660781347, - "date_created": "2023-03-12T15:37:30.913-04:00", - "date_last_updated": "2023-03-13T15:40:52.000-04:00", - "date_of_expiration": "2023-03-13T15:37:30.656-04:00", + "date_created": { + "type": 6, + "value": 1678649850913 + }, + "date_last_updated": { + "type": 6, + "value": 1678736452000 + }, + "date_of_expiration": { + "type": 6, + "value": 1678736250656 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", "status_detail": "expired", "currency_id": "BRL" }, - "revision": "852d046560d244afb5ff520b", + "revision": "f0d0ff3460b24bd487f71cbb", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3802,10 +4273,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 21,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "9ef35032654f493589a32a70", + "revision": "103bd6fe6b62451ebe63f50c", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3813,12 +4284,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "ec74807a385548be96251b33", + "revision": "35a46e1fb746472ba489cc3f", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3833,18 +4304,27 @@ "total_amount": 70, "history_id": 1679007163675, "id": 1679007163675, - "date_created": "2023-03-16T22:52:43.675Z", - "date_last_updated": "2023-03-16T22:52:43.675Z", - "date_of_expiration": "2023-04-15T22:52:43.675Z", + "date_created": { + "type": 6, + "value": 1679007163675 + }, + "date_last_updated": { + "type": 6, + "value": 1679007163675 + }, + "date_of_expiration": { + "type": 6, + "value": 1681599163675 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "68cf04dcaa3c4d41aca86ab6", + "revision": "2f1238dac50c4796b23d5622", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3852,10 +4332,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 70,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "d4be0b75644042cebc141b22", + "revision": "d393982cc7cc4e878f7a655d", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3863,12 +4343,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "7d0e97274b0d47dd8c256860", + "revision": "6703f4528a34484ca9a769dd", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3883,18 +4363,27 @@ "total_amount": 22, "history_id": 1679010027708, "id": 1679010027708, - "date_created": "2023-03-16T23:40:27.708Z", - "date_last_updated": "2023-03-16T23:40:27.708Z", - "date_of_expiration": "2023-04-15T23:40:27.708Z", + "date_created": { + "type": 6, + "value": 1679010027708 + }, + "date_last_updated": { + "type": 6, + "value": 1679010027708 + }, + "date_of_expiration": { + "type": 6, + "value": 1681602027708 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "9da74c873f87481ba80de851", + "revision": "7bf2affce801411fba1c750e", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3902,10 +4391,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 22,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "f3b821ff33bc4743b0fccca0", + "revision": "1be3cbdcd6f6461da727cfe0", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3913,12 +4402,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "96e1101ce88f4c8495e5b7ec", + "revision": "a06e294e397e4f2195a33a7f", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3933,18 +4422,27 @@ "total_amount": 34.53, "history_id": 1679010677912, "id": 1679010677912, - "date_created": "2023-03-16T23:51:17.912Z", - "date_last_updated": "2023-03-16T23:51:17.912Z", - "date_of_expiration": "2023-04-15T23:51:17.912Z", + "date_created": { + "type": 6, + "value": 1679010677912 + }, + "date_last_updated": { + "type": 6, + "value": 1679010677912 + }, + "date_of_expiration": { + "type": 6, + "value": 1681602677912 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "768613a8f81a49a4a504aa4d", + "revision": "89f3cd97d8774fc896bcf76f", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3952,10 +4450,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 34,53 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "2979f92d63f04159b1031a75", + "revision": "071c82c2ecd5452db795afba", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3965,10 +4463,10 @@ "value": { "content": "23797929500000053493380261020810012400633330" }, - "revision": "27453b21e7994065b055567e", + "revision": "fda5db2b70094f9089419913", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -3980,10 +4478,10 @@ "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "f72766953bfb487092acb8a7", + "revision": "2867826dc52e4b189aeb832e", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4001,10 +4499,10 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "c0afb1fa39f24702a7f136ed", + "revision": "aba88f4dc92e4f64a690a6c6", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4012,10 +4510,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55844330172/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55844330172&payment_method_reference_id=10208100124&hash=b65fca1f-6eb0-406a-adf2-94d1c5555b8a", - "revision": "67257e6c0b5b4455895ff5c6", + "revision": "d03966fc56ef480791519abb", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4023,10 +4521,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "062ae44eed7f4dae874111e3", + "revision": "fad6a0d51e4541de8db617c4", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4041,19 +4539,28 @@ "total_amount": 53.49, "history_id": 1679012344229, "id": 55844330172, - "date_created": "2023-03-16T20:19:04.871-04:00", - "date_last_updated": "2023-03-16T20:19:04.871-04:00", - "date_of_expiration": "2023-03-20T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1679012344871 + }, + "date_last_updated": { + "type": 6, + "value": 1679012344871 + }, + "date_of_expiration": { + "type": 6, + "value": 1679367599000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "4231152947bc46f3a3f98a2f", + "revision": "5eb8c6223f2146e2b5083b4a", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4061,10 +4568,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "87ff2e52581e43e4b76d2519", + "revision": "d0ab66a908b547ef8e12333b", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4072,12 +4579,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "f9382e0c90c3413b85c150f5", + "revision": "fa52321fbcad483a9b385cc2", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4092,18 +4599,27 @@ "total_amount": 23.54, "history_id": 1679012395493, "id": 1679012395493, - "date_created": "2023-03-17T00:19:55.493Z", - "date_last_updated": "2023-03-17T00:19:55.493Z", - "date_of_expiration": "2023-04-16T00:19:55.493Z", + "date_created": { + "type": 6, + "value": 1679012395493 + }, + "date_last_updated": { + "type": 6, + "value": 1679012395493 + }, + "date_of_expiration": { + "type": 6, + "value": 1681604395493 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "206a22afa05e48829ea45f82", + "revision": "927d6531ba8444d88c3c60dc", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4111,10 +4627,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 23,54 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "a7c4c95045424ebca35b6cdf", + "revision": "174377edf4c845a7b96d130e", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4126,10 +4642,10 @@ "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "99f024a978f84d5185a3a216", + "revision": "98406803efa54d2d8dc3eaba", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4137,10 +4653,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "41befc2dfe844217b5c02251", + "revision": "21d9355ebb6f49c4bc04a92e", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4148,10 +4664,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "15098cf0934d4c04b3cd9843", + "revision": "f3ebe7a305b34151bb01217a", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4166,19 +4682,28 @@ "total_amount": 224, "history_id": 1679181025084, "id": 1679181025084, - "date_created": "2023-03-18T23:10:25.084Z", - "date_last_updated": "2023-03-18T23:10:25.084Z", - "date_of_expiration": "2023-04-17T23:10:25.084Z", + "date_created": { + "type": 6, + "value": 1679181025084 + }, + "date_last_updated": { + "type": 6, + "value": 1679181025084 + }, + "date_of_expiration": { + "type": 6, + "value": 1681773025084 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "336acf1869fd4161bcb72725", + "revision": "d12ca2b9cc88444aaa871d50", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4186,10 +4711,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "cfa5ad2ce29b4f6fa21cb125", + "revision": "2c95185e2b5141688ba61de4", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4201,10 +4726,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, - "revision": "a421bfa2f3864172a60d805a", + "revision": "8cadd83fb31743369a236fa1", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4212,10 +4737,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8093040c66b34862bf9f6ee5", + "revision": "d4cb2c9e74fe449bbec8db87", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4223,10 +4748,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "2604820db79a4e50acea26da", + "revision": "b3ab32ff987242748abcbc8d", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4241,19 +4766,28 @@ "total_amount": 459, "history_id": 1679181157805, "id": 1679181157805, - "date_created": "2023-03-18T23:12:37.805Z", - "date_last_updated": "2023-03-18T23:12:37.805Z", - "date_of_expiration": "2023-04-17T23:12:37.805Z", + "date_created": { + "type": 6, + "value": 1679181157805 + }, + "date_last_updated": { + "type": 6, + "value": 1679181157805 + }, + "date_of_expiration": { + "type": 6, + "value": 1681773157805 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "db04aa5216794fbd8c6aac77", + "revision": "a894cd963b464214ad7f7885", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4261,10 +4795,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "201fd3a60d9f4697b4bd0d7f", + "revision": "43741797a69d44a29208e9fd", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4276,10 +4810,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 9.200000000000001 }, - "revision": "0cb34a1842d34f4f92a712a5", + "revision": "7ce1b016ee114776aafdcff5", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4287,10 +4821,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d7460e957fde44859c9945be", + "revision": "d7ad3e56924849cca1b3a45d", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4298,10 +4832,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "cefe24878b03450e950ddb1c", + "revision": "af75680c8e2f490aa10c714a", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4316,19 +4850,28 @@ "total_amount": 239.2, "history_id": 1679183534080, "id": 1679183534080, - "date_created": "2023-03-18T23:52:14.080Z", - "date_last_updated": "2023-03-18T23:52:14.080Z", - "date_of_expiration": "2023-04-17T23:52:14.080Z", + "date_created": { + "type": 6, + "value": 1679183534080 + }, + "date_last_updated": { + "type": 6, + "value": 1679183534080 + }, + "date_of_expiration": { + "type": 6, + "value": 1681775534080 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "b9b3f4ec325545fead9c2eee", + "revision": "fc01b3e4fc9845a99ea747d4", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4336,10 +4879,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", - "revision": "54ed570d2387438786259e48", + "revision": "b0bd22e8d87c4747919a6847", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4351,10 +4894,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 8 }, - "revision": "2512dfb257ef4a8cbabfa65b", + "revision": "cfc2564542094f55ad8f3669", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4362,10 +4905,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c0cc0bc8cd474b328b5a37dc", + "revision": "c4eb39d9737f4b409f5038a0", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4373,10 +4916,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "7b2b0b51f3c8430cbf0f6988", + "revision": "6eb59e584abb433eaec783ce", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4391,19 +4934,28 @@ "total_amount": 208, "history_id": 1679184046128, "id": 1679184046128, - "date_created": "2023-03-19T00:00:46.128Z", - "date_last_updated": "2023-03-19T00:00:46.128Z", - "date_of_expiration": "2023-04-18T00:00:46.128Z", + "date_created": { + "type": 6, + "value": 1679184046128 + }, + "date_last_updated": { + "type": 6, + "value": 1679184046128 + }, + "date_of_expiration": { + "type": 6, + "value": 1681776046128 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "7f596b2aeb884cecb5e30a9d", + "revision": "235db943dbab470bad2870ef", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4411,10 +4963,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", - "revision": "d9905e8470fa4956892b3728", + "revision": "14fa8c368f624b85be5160a4", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820484, + "modified": 1701465820484 } }, { @@ -4426,10 +4978,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 8.4 }, - "revision": "2b723390c8f1408a8fb7b596", + "revision": "b8205fcbcc3a4c29bf227366", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4437,10 +4989,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "643a5f5597e444c0a5092a6e", + "revision": "350c918e8f0f46518601ecbb", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4448,10 +5000,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "8f0f12fc08304e3786d95949", + "revision": "06bcad539471493989d9d1c8", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4466,19 +5018,28 @@ "total_amount": 218.4, "history_id": 1679184832424, "id": 1679184832424, - "date_created": "2023-03-19T00:13:52.424Z", - "date_last_updated": "2023-03-19T00:13:52.424Z", - "date_of_expiration": "2023-04-18T00:13:52.424Z", + "date_created": { + "type": 6, + "value": 1679184832424 + }, + "date_last_updated": { + "type": 6, + "value": 1679184832424 + }, + "date_of_expiration": { + "type": 6, + "value": 1681776832424 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "1693e01c46d2406593b4391f", + "revision": "e1a894fb80834c8381c5eac4", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4486,10 +5047,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", - "revision": "55c67624674b40aca0cda18c", + "revision": "76b97088993245e09dadc4eb", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4507,12 +5068,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "58e6991c004743f386134216", + "revision": "9a840fb4d8fa49f1a71f11e6", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4528,9 +5089,18 @@ "original_amount": 50, "total_amount": 50, "id": 1679780561471, - "date_created": "2023-03-25T21:42:41.471Z", - "date_last_updated": "2023-03-25T21:42:41.471Z", - "date_of_expiration": "2023-03-25T21:42:41.471Z", + "date_created": { + "type": 6, + "value": 1679780561471 + }, + "date_last_updated": { + "type": 6, + "value": 1679780561471 + }, + "date_of_expiration": { + "type": 6, + "value": 1679780561471 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -4538,10 +5108,10 @@ "currency_id": "IVIPAY", "history_id": 1679780561471 }, - "revision": "952f5f52c5fa4caf8b3a96e0", + "revision": "8be3489e42ef4833966b8a95", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4549,10 +5119,10 @@ "content": { "type": "STRING", "value": "Compra de 50,00 IVIPAY por 5,00 IVIP estabilizando US$ 0,00", - "revision": "c9d6ed8c1d804525be2178a3", + "revision": "7c69a06a4d924925b11f0062", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4570,12 +5140,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "3f9db4f2d5ad4d1480d1593e", + "revision": "4b0d185aea964762b4400e1d", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4591,9 +5161,18 @@ "original_amount": 50000, "total_amount": 50000, "id": 1679780730626, - "date_created": "2023-03-25T21:45:30.626Z", - "date_last_updated": "2023-03-25T21:45:30.626Z", - "date_of_expiration": "2023-03-25T21:45:30.626Z", + "date_created": { + "type": 6, + "value": 1679780730626 + }, + "date_last_updated": { + "type": 6, + "value": 1679780730626 + }, + "date_of_expiration": { + "type": 6, + "value": 1679780730626 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -4601,10 +5180,10 @@ "currency_id": "IVIPAY", "history_id": 1679780730626 }, - "revision": "dd662efcc3f4437cba6b91ef", + "revision": "4ebdb473c5bb4e37b978b434", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4612,10 +5191,10 @@ "content": { "type": "STRING", "value": "Compra de 50.000,00 IVIPAY por 5.000,00 IVIP estabilizando US$ 0,18", - "revision": "054ac2fb5e2942d2be22f1c8", + "revision": "f2e6712bec9f4dc7b0e8155b", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4633,12 +5212,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "52f1947908f64a0b82398a98", + "revision": "d7ea6c3875a14e48a861c15d", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4654,9 +5233,18 @@ "original_amount": 100000, "total_amount": 100000, "id": 1679798199684, - "date_created": "2023-03-26T02:36:39.684Z", - "date_last_updated": "2023-03-26T02:36:39.684Z", - "date_of_expiration": "2023-03-26T02:36:39.684Z", + "date_created": { + "type": 6, + "value": 1679798199684 + }, + "date_last_updated": { + "type": 6, + "value": 1679798199684 + }, + "date_of_expiration": { + "type": 6, + "value": 1679798199684 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -4664,10 +5252,10 @@ "currency_id": "IVIPAY", "history_id": 1679798199684 }, - "revision": "24d2de553b8e4b1eb73375c5", + "revision": "ef24b9ac29414f299e060afe", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4675,10 +5263,10 @@ "content": { "type": "STRING", "value": "Compra de 100.000,00 IVIPAY por 10.000,00 IVIP estabilizando US$ 0,32", - "revision": "ecdff076964f48e1afe58ab8", + "revision": "e65bb340bd5c4afda49508db", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4696,12 +5284,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "14a9d426362c4931903076df", + "revision": "1f31a159c06c42bb9ff484cf", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4717,9 +5305,18 @@ "original_amount": 3964758, "total_amount": 3964758, "id": 1681764788277, - "date_created": "2023-04-17T20:53:08.277Z", - "date_last_updated": "2023-04-17T20:53:08.277Z", - "date_of_expiration": "2023-04-17T20:53:08.277Z", + "date_created": { + "type": 6, + "value": 1681764788277 + }, + "date_last_updated": { + "type": 6, + "value": 1681764788277 + }, + "date_of_expiration": { + "type": 6, + "value": 1681764788277 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -4728,10 +5325,10 @@ "history_id": 1681764788277, "description": "Compra de 3.964.758,00 IVIP por 700,00 BRL" }, - "revision": "a0e3d762df7a45d0babd2ad7", + "revision": "6cb248e604454aee9b20b7cb", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4749,12 +5346,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "1c69b8e703664c87a0b6668e", + "revision": "dec5315a331446909c2973fa", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4770,9 +5367,18 @@ "original_amount": 175.094, "total_amount": 175.094, "id": 1682323304615, - "date_created": "2023-04-24T08:01:44.615Z", - "date_last_updated": "2023-04-24T08:01:44.615Z", - "date_of_expiration": "2023-04-24T08:01:44.615Z", + "date_created": { + "type": 6, + "value": 1682323304615 + }, + "date_last_updated": { + "type": 6, + "value": 1682323304615 + }, + "date_of_expiration": { + "type": 6, + "value": 1682323304615 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4780,10 +5386,10 @@ "currency_id": "BRL", "history_id": 1682323304615 }, - "revision": "eb087295388b46a787c900b3", + "revision": "03c1d113b0404fc6a9c4d0d2", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4801,12 +5407,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "e9a246b3f1314052b37712d6", + "revision": "425affdcc3d14c9b99480cb2", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4822,9 +5428,18 @@ "original_amount": 119.6, "total_amount": 119.6, "id": 1682323486538, - "date_created": "2023-04-24T08:04:46.538Z", - "date_last_updated": "2023-04-24T08:04:46.538Z", - "date_of_expiration": "2023-04-24T08:04:46.538Z", + "date_created": { + "type": 6, + "value": 1682323486538 + }, + "date_last_updated": { + "type": 6, + "value": 1682323486538 + }, + "date_of_expiration": { + "type": 6, + "value": 1682323486538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4832,10 +5447,10 @@ "currency_id": "BRL", "history_id": 1682323486538 }, - "revision": "018c97d522864b70a8a24a62", + "revision": "0d93781188a048c4b2debd6f", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4853,12 +5468,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "066a6344bc8c4f1eba83fce7", + "revision": "b2c7d635f9fb418a9dc5d886", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4874,9 +5489,18 @@ "original_amount": 104, "total_amount": 104, "id": 1682324590308, - "date_created": "2023-04-24T08:23:10.308Z", - "date_last_updated": "2023-04-24T08:23:10.308Z", - "date_of_expiration": "2023-04-24T08:23:10.308Z", + "date_created": { + "type": 6, + "value": 1682324590308 + }, + "date_last_updated": { + "type": 6, + "value": 1682324590308 + }, + "date_of_expiration": { + "type": 6, + "value": 1682324590308 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4884,10 +5508,10 @@ "currency_id": "BRL", "history_id": 1682324590308 }, - "revision": "530eeb09b036444491cb15dc", + "revision": "adf598c4e7e04f1ab5db14ef", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4905,12 +5529,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a90e515e3dd74246bce9780d", + "revision": "8c9780bca7a44eebbc1e9c85", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4926,9 +5550,18 @@ "original_amount": 109.2, "total_amount": 109.2, "id": 1682324593569, - "date_created": "2023-04-24T08:23:13.569Z", - "date_last_updated": "2023-04-24T08:23:13.569Z", - "date_of_expiration": "2023-04-24T08:23:13.569Z", + "date_created": { + "type": 6, + "value": 1682324593569 + }, + "date_last_updated": { + "type": 6, + "value": 1682324593569 + }, + "date_of_expiration": { + "type": 6, + "value": 1682324593569 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4936,10 +5569,10 @@ "currency_id": "BRL", "history_id": 1682324593569 }, - "revision": "f762dc806624419aa6960f51", + "revision": "f3babc00f8d743928b97d679", "revision_nr": 1, - "created": 1701463509512, - "modified": 1701463509512 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4957,12 +5590,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "4628e318127c411cae079061", + "revision": "1f93b7fa448d4ef6bd74e56a", "revision_nr": 1, - "created": 1701463509513, - "modified": 1701463509513 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -4978,9 +5611,18 @@ "original_amount": 104, "total_amount": 104, "id": 1682325423689, - "date_created": "2023-04-24T08:37:03.689Z", - "date_last_updated": "2023-04-24T08:37:03.689Z", - "date_of_expiration": "2023-04-24T08:37:03.689Z", + "date_created": { + "type": 6, + "value": 1682325423689 + }, + "date_last_updated": { + "type": 6, + "value": 1682325423689 + }, + "date_of_expiration": { + "type": 6, + "value": 1682325423689 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -4988,10 +5630,10 @@ "currency_id": "BRL", "history_id": 1682325423689 }, - "revision": "a44961927bfb4e47a97a89e5", + "revision": "c8e07703e54349239391ee12", "revision_nr": 1, - "created": 1701463509513, - "modified": 1701463509513 + "created": 1701465820485, + "modified": 1701465820485 } }, { @@ -5009,12 +5651,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "3e94fc1cf8314788b0a5f3fd", + "revision": "6fe0abb25a504ee2a00df7c7", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820487, + "modified": 1701465820487 } }, { @@ -5030,9 +5672,18 @@ "original_amount": 109.2, "total_amount": 109.2, "id": 1682325428664, - "date_created": "2023-04-24T08:37:08.664Z", - "date_last_updated": "2023-04-24T08:37:08.664Z", - "date_of_expiration": "2023-04-24T08:37:08.664Z", + "date_created": { + "type": 6, + "value": 1682325428664 + }, + "date_last_updated": { + "type": 6, + "value": 1682325428664 + }, + "date_of_expiration": { + "type": 6, + "value": 1682325428664 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -5040,10 +5691,10 @@ "currency_id": "BRL", "history_id": 1682325428664 }, - "revision": "6a40397e93a34f5c87122a0e", + "revision": "cafb45e4622d44428394ea7b", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820487, + "modified": 1701465820487 } }, { @@ -5063,12 +5714,12 @@ "installment_amount": 37.333, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "aaef5f5b45f74d01b7f7423e", + "revision": "39ee2b62d25c422893eac765", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820487, + "modified": 1701465820487 } }, { @@ -5085,9 +5736,18 @@ "total_amount": 37.333, "id": 1682578544384, "contract_id": "1679181025084", - "date_created": "2023-04-27T06:55:44.384Z", - "date_last_updated": "2023-04-27T06:55:44.384Z", - "date_of_expiration": "2023-04-27T06:55:44.384Z", + "date_created": { + "type": 6, + "value": 1682578544384 + }, + "date_last_updated": { + "type": 6, + "value": 1682578544384 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578544384 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -5095,10 +5755,10 @@ "currency_id": "BRL", "history_id": 1682578544384 }, - "revision": "18404b061bcd47c780542982", + "revision": "020820fc2ff64b51bab3a31c", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820487, + "modified": 1701465820487 } }, { @@ -5106,10 +5766,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "17cd9854857f4de8a45c1b72", + "revision": "1e5827d548ed43d094dc9b0f", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820487, + "modified": 1701465820487 } }, { @@ -5129,12 +5789,12 @@ "installment_amount": 114.75, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "2b33a258bdd74beaa4a3a685", + "revision": "48a683771e71455e9744f0ca", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820487, + "modified": 1701465820487 } }, { @@ -5151,9 +5811,18 @@ "total_amount": 114.75, "id": 1682578544557, "contract_id": "1679181157805", - "date_created": "2023-04-27T06:55:44.557Z", - "date_last_updated": "2023-04-27T06:55:44.557Z", - "date_of_expiration": "2023-04-27T06:55:44.557Z", + "date_created": { + "type": 6, + "value": 1682578544557 + }, + "date_last_updated": { + "type": 6, + "value": 1682578544557 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578544557 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -5161,10 +5830,10 @@ "currency_id": "BRL", "history_id": 1682578544557 }, - "revision": "449c73ae447f4adfaf4635ed", + "revision": "0f5f05f514b14a43abc3eda5", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820487, + "modified": 1701465820487 } }, { @@ -5172,10 +5841,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", - "revision": "863a8c3b04434f2489178955", + "revision": "3f5b25d6c61944d9a9448aae", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820487, + "modified": 1701465820487 } }, { @@ -5195,12 +5864,12 @@ "installment_amount": 119.6, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "64f182b66e1149a6ab40d502", + "revision": "78df81ca5bf447ce944d23c7", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5217,9 +5886,18 @@ "total_amount": 119.6, "id": 1682578984558, "contract_id": "1679183534080", - "date_created": "2023-04-27T07:03:04.558Z", - "date_last_updated": "2023-04-27T07:03:04.558Z", - "date_of_expiration": "2023-04-27T07:03:04.558Z", + "date_created": { + "type": 6, + "value": 1682578984558 + }, + "date_last_updated": { + "type": 6, + "value": 1682578984558 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578984558 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -5227,10 +5905,10 @@ "currency_id": "BRL", "history_id": 1682578984558 }, - "revision": "5e0ec363280141c0b3f9a4a2", + "revision": "90344fa5408644e0acf64d57", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5238,10 +5916,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 2 no valor de 119,60 BRL referente ao contrato 1679183534080", - "revision": "ab57bd1751614488bd60682b", + "revision": "bd6bba7b5d074badb8fba21d", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820487, + "modified": 1701465820487 } }, { @@ -5261,12 +5939,12 @@ "installment_amount": 104, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d007fdda34664201a298fb29", + "revision": "e117b100e95845e68cc2db85", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5283,9 +5961,18 @@ "total_amount": 104, "id": 1682578984726, "contract_id": "1679184046128", - "date_created": "2023-04-27T07:03:04.726Z", - "date_last_updated": "2023-04-27T07:03:04.726Z", - "date_of_expiration": "2023-04-27T07:03:04.726Z", + "date_created": { + "type": 6, + "value": 1682578984726 + }, + "date_last_updated": { + "type": 6, + "value": 1682578984726 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578984726 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -5293,10 +5980,10 @@ "currency_id": "BRL", "history_id": 1682578984726 }, - "revision": "43e8a763a9de430c88988ca5", + "revision": "628cd1cff6a24166b78a4c1a", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5304,10 +5991,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 2 no valor de 104,00 BRL referente ao contrato 1679184046128", - "revision": "82072ba760b748a5a9204bbf", + "revision": "fe54b66aface49cca5851016", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5327,12 +6014,12 @@ "installment_amount": 109.2, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "3170a631f24b4e4a8911a98e", + "revision": "09bea5f7965f4ea983a50c68", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5349,9 +6036,18 @@ "total_amount": 109.2, "id": 1682578984913, "contract_id": "1679184832424", - "date_created": "2023-04-27T07:03:04.913Z", - "date_last_updated": "2023-04-27T07:03:04.913Z", - "date_of_expiration": "2023-04-27T07:03:04.913Z", + "date_created": { + "type": 6, + "value": 1682578984913 + }, + "date_last_updated": { + "type": 6, + "value": 1682578984913 + }, + "date_of_expiration": { + "type": 6, + "value": 1682578984913 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -5359,10 +6055,10 @@ "currency_id": "BRL", "history_id": 1682578984913 }, - "revision": "21f710a69e014f6d9704d69b", + "revision": "e9904aebca4a48909651e156", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5370,10 +6066,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 2 no valor de 109,20 BRL referente ao contrato 1679184832424", - "revision": "9aa07e6de7e4421cba2f936d", + "revision": "1bb3b2aec1b648848b5e2953", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5385,10 +6081,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 4 }, - "revision": "bcc3a26a53f44d018a2f9176", + "revision": "c89d9f16906a4ebfbe17f656", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5396,10 +6092,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d067574ac4134e11a83adad5", + "revision": "1cd722cd45e343698b013ce6", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5407,10 +6103,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "349bab5ccf6a4bd9acbea671", + "revision": "45d8327ba6044b47935281db", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5425,19 +6121,28 @@ "total_amount": 204, "history_id": 1683665355468, "id": 1683665355468, - "date_created": "2023-05-09T20:49:15.468Z", - "date_last_updated": "2023-05-09T20:49:15.468Z", - "date_of_expiration": "2023-06-08T20:49:15.468Z", + "date_created": { + "type": 6, + "value": 1683665355468 + }, + "date_last_updated": { + "type": 6, + "value": 1683665355468 + }, + "date_of_expiration": { + "type": 6, + "value": 1686257355468 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", "wasDebited": true }, - "revision": "c58fd370098448b48bf200e9", + "revision": "e92b8cbc668d4eb7870678d9", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5445,10 +6150,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 204,00", - "revision": "6f36347ad954467db71532b9", + "revision": "0ffaabf5a4c04d49acacfbc2", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5460,10 +6165,10 @@ "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, - "revision": "27ece2a576cf427cb8ecf848", + "revision": "a34d3b7f323d48c98bcaba18", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5471,10 +6176,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b25c27ed66284c7e9973497f", + "revision": "1ed676fb16e14717a5893b86", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5482,10 +6187,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "9031de3528fe4c9d982acf5e", + "revision": "0c4af8024cd0471da230c80e", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5500,19 +6205,28 @@ "total_amount": 212, "history_id": 1683667472591, "id": 1683667472591, - "date_created": "2023-05-09T21:24:32.591Z", - "date_last_updated": "2023-05-09T21:24:32.591Z", - "date_of_expiration": "2023-06-08T21:24:32.591Z", + "date_created": { + "type": 6, + "value": 1683667472591 + }, + "date_last_updated": { + "type": 6, + "value": 1683667472591 + }, + "date_of_expiration": { + "type": 6, + "value": 1686259472591 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", "wasDebited": true }, - "revision": "a10ddb863cdd4cc6bd7f27f9", + "revision": "df5e874335b84371a3dfc809", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5520,10 +6234,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", - "revision": "f1b573eb34654227b8474492", + "revision": "478f1dedfcd84067a777a161", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5531,12 +6245,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "74b3414062e748628171216e", + "revision": "4ae9f106ad3d4c0ab224aea7", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5551,22 +6265,37 @@ "total_amount": 250, "history_id": 1684303097186, "id": 1684303097186, - "date_created": "2023-05-17T05:58:17.186Z", - "date_last_updated": "2023-05-17T05:59:31.953Z", - "date_of_expiration": "2023-06-16T05:58:17.186Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-17T05:59:31.953Z", - "money_release_date": "2023-05-17T05:59:31.953Z", + "date_created": { + "type": 6, + "value": 1684303097186 + }, + "date_last_updated": { + "type": 6, + "value": 1684303171953 + }, + "date_of_expiration": { + "type": 6, + "value": 1686895097186 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684303171953 + }, + "money_release_date": { + "type": 6, + "value": 1684303171953 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "707fb7b238344034a31ef47a", + "revision": "a371dad100c34f83966d1149", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5574,10 +6303,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "c0ddd4690f774f6f935f7ecb", + "revision": "4cc5f7d0420943d1a03f1e8e", "revision_nr": 1, - "created": 1701463509515, - "modified": 1701463509515 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5595,12 +6324,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "9580e56d7ac44e65a0509661", + "revision": "a834dc1b6ca94e29b7d6df69", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5616,9 +6345,18 @@ "original_amount": 630, "total_amount": 630, "id": 1684348051817, - "date_created": "2023-05-17T18:27:31.817Z", - "date_last_updated": "2023-05-17T18:27:31.817Z", - "date_of_expiration": "2023-05-17T18:27:31.817Z", + "date_created": { + "type": 6, + "value": 1684348051817 + }, + "date_last_updated": { + "type": 6, + "value": 1684348051817 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348051817 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -5626,10 +6364,10 @@ "currency_id": "BRL", "history_id": 1684348051817 }, - "revision": "2a30766f0641477b93e0e034", + "revision": "6772cb85fabc42bfad11ef85", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5637,10 +6375,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "5ac97e64d31645f68afa5a0e", + "revision": "0b624c892bc44e848c22f0c8", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5660,12 +6398,12 @@ "installment_amount": 37.333, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a60c4e26299440e4931cdc4d", + "revision": "7f85d761a0cb4a77a57cb745", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5682,9 +6420,18 @@ "total_amount": 37.333, "id": 1684436739701, "contract_id": "1679181025084", - "date_created": "2023-05-18T19:05:39.701Z", - "date_last_updated": "2023-05-18T19:05:39.701Z", - "date_of_expiration": "2023-05-18T19:05:39.701Z", + "date_created": { + "type": 6, + "value": 1684436739701 + }, + "date_last_updated": { + "type": 6, + "value": 1684436739701 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436739701 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -5692,10 +6439,10 @@ "currency_id": "BRL", "history_id": 1684436739701 }, - "revision": "1c50b55c2c614e5da0b69287", + "revision": "2f51ee5ab04840a291a81a19", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5703,10 +6450,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "d398325c009e4748a96e8fe8", + "revision": "4a9b4fe3862a4b44b9ed58f2", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5726,12 +6473,12 @@ "installment_amount": 114.75, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "6333af662aae45ecbbbdf81e", + "revision": "fbe056b8dc704eacbeeef4ec", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5748,9 +6495,18 @@ "total_amount": 114.75, "id": 1684436739822, "contract_id": "1679181157805", - "date_created": "2023-05-18T19:05:39.822Z", - "date_last_updated": "2023-05-18T19:05:39.822Z", - "date_of_expiration": "2023-05-18T19:05:39.822Z", + "date_created": { + "type": 6, + "value": 1684436739822 + }, + "date_last_updated": { + "type": 6, + "value": 1684436739822 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436739822 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -5758,10 +6514,10 @@ "currency_id": "BRL", "history_id": 1684436739822 }, - "revision": "9b5899d3a7924ffa94b5f2d3", + "revision": "dbcdcd3b41564471a270ee68", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5769,10 +6525,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", - "revision": "08cb20da23ae4847895ff2e3", + "revision": "caeaacc121ba4221a80d0852", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5792,12 +6548,12 @@ "installment_amount": 119.6, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d631786785534705bd5a55d6", + "revision": "a54c2e92657c492e886ab517", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5814,9 +6570,18 @@ "total_amount": 119.6, "id": 1684436739934, "contract_id": "1679183534080", - "date_created": "2023-05-18T19:05:39.934Z", - "date_last_updated": "2023-05-18T19:05:39.934Z", - "date_of_expiration": "2023-05-18T19:05:39.934Z", + "date_created": { + "type": 6, + "value": 1684436739934 + }, + "date_last_updated": { + "type": 6, + "value": 1684436739934 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436739934 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -5824,10 +6589,10 @@ "currency_id": "BRL", "history_id": 1684436739934 }, - "revision": "2a7bd6bf0f77409f89952705", + "revision": "6f6930f1252c411f82fa50f9", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5835,10 +6600,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 2 no valor de 119,60 BRL referente ao contrato 1679183534080", - "revision": "11da1cd2c88343089ee6622c", + "revision": "ec84e871081944668cf00649", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5858,12 +6623,12 @@ "installment_amount": 104, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "5e4831179bd9491dac46e7be", + "revision": "65e85fb7e233475ea0e8fea5", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5880,9 +6645,18 @@ "total_amount": 104, "id": 1684436740031, "contract_id": "1679184046128", - "date_created": "2023-05-18T19:05:40.031Z", - "date_last_updated": "2023-05-18T19:05:40.031Z", - "date_of_expiration": "2023-05-18T19:05:40.031Z", + "date_created": { + "type": 6, + "value": 1684436740031 + }, + "date_last_updated": { + "type": 6, + "value": 1684436740031 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436740031 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -5890,10 +6664,10 @@ "currency_id": "BRL", "history_id": 1684436740031 }, - "revision": "eb09581ded7e40d6b5a2cb0d", + "revision": "d6c29f64e1844ab7ba39550b", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5901,10 +6675,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 2 no valor de 104,00 BRL referente ao contrato 1679184046128", - "revision": "a43490979ddf4e2896e6f844", + "revision": "d3fd44c5d99d41a69ca05877", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5924,12 +6698,12 @@ "installment_amount": 109.2, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "386176e0c5614f90afe694e4", + "revision": "b4ac6433ebac4b65a2dbff66", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5946,9 +6720,18 @@ "total_amount": 109.2, "id": 1684436740155, "contract_id": "1679184832424", - "date_created": "2023-05-18T19:05:40.155Z", - "date_last_updated": "2023-05-18T19:05:40.155Z", - "date_of_expiration": "2023-05-18T19:05:40.155Z", + "date_created": { + "type": 6, + "value": 1684436740155 + }, + "date_last_updated": { + "type": 6, + "value": 1684436740155 + }, + "date_of_expiration": { + "type": 6, + "value": 1684436740155 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -5956,10 +6739,10 @@ "currency_id": "BRL", "history_id": 1684436740155 }, - "revision": "23daab1e78384b93b1a213a3", + "revision": "4e02963a9fd64a44bf87fe69", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5967,10 +6750,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 2 no valor de 109,20 BRL referente ao contrato 1679184832424", - "revision": "747a3285472344f9bffd1097", + "revision": "af44b8ba76d4417d9f1bbde9", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -5988,12 +6771,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "4dd56e05a47b4ae7a0711374", + "revision": "e2cf2b2ce36c4d378cae9fea", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -6009,9 +6792,18 @@ "original_amount": 5850731, "total_amount": 5850731, "id": 1684790150988, - "date_created": "2023-05-22T21:15:50.988Z", - "date_last_updated": "2023-05-22T21:15:50.988Z", - "date_of_expiration": "2023-05-22T21:15:50.988Z", + "date_created": { + "type": 6, + "value": 1684790150988 + }, + "date_last_updated": { + "type": 6, + "value": 1684790150988 + }, + "date_of_expiration": { + "type": 6, + "value": 1684790150988 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6020,10 +6812,10 @@ "history_id": 1684790150988, "description": "Compra de 5.850.731,00 IVIP por 1.200,00 BRL" }, - "revision": "9c000298f7d44a33bc95e915", + "revision": "54ac83f5600d4c6fb4965d3f", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -6041,12 +6833,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "f1a8b5a3b26042c89ace068e", + "revision": "da9c031d39d645258160c695", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -6062,9 +6854,18 @@ "original_amount": 1065.7, "total_amount": 1065.7, "id": 1684790990972, - "date_created": "2023-05-22T21:29:50.972Z", - "date_last_updated": "2023-05-22T21:29:50.972Z", - "date_of_expiration": "2023-05-22T21:29:50.972Z", + "date_created": { + "type": 6, + "value": 1684790990972 + }, + "date_last_updated": { + "type": 6, + "value": 1684790990972 + }, + "date_of_expiration": { + "type": 6, + "value": 1684790990972 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6072,10 +6873,10 @@ "currency_id": "BRL", "history_id": 1684790990972 }, - "revision": "82f1de2d68f4481084b71e9d", + "revision": "8d340f7801c546e2a4ab9216", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -6083,10 +6884,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "9dfb78ae1a944a729260f686", + "revision": "e4b47e4260e447368b092cd5", "revision_nr": 1, - "created": 1701463509516, - "modified": 1701463509516 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -6094,12 +6895,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "2408adda92434f46a6e81e80", + "revision": "1e9a9145814c4247aa1753f2", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -6114,18 +6915,27 @@ "total_amount": 2337199, "history_id": 1685376471814, "id": 1685376471814, - "date_created": "2023-05-29T16:07:51.814Z", - "date_last_updated": "2023-05-29T16:07:51.814Z", - "date_of_expiration": "2023-05-29T16:07:51.814Z", + "date_created": { + "type": 6, + "value": 1685376471814 + }, + "date_last_updated": { + "type": 6, + "value": 1685376471814 + }, + "date_of_expiration": { + "type": 6, + "value": 1685376471814 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "fda02c2ca1f245dbb31761b9", + "revision": "45c9d80234ce4a1ba0c4deff", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -6133,10 +6943,10 @@ "content": { "type": "STRING", "value": "Saque de 2.337.199,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "dd169e387c944ecba94b4741", + "revision": "75ef89b8bf75466a93e0beea", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820488, + "modified": 1701465820488 } }, { @@ -6144,12 +6954,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "75449345f48c4c47b968ffc2", + "revision": "a2c5d62cd42d415d9fd48c3a", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6164,18 +6974,27 @@ "total_amount": 1357502, "history_id": 1685376968807, "id": 1685376968807, - "date_created": "2023-05-29T16:16:08.807Z", - "date_last_updated": "2023-05-29T16:16:08.807Z", - "date_of_expiration": "2023-05-29T16:16:08.807Z", + "date_created": { + "type": 6, + "value": 1685376968807 + }, + "date_last_updated": { + "type": 6, + "value": 1685376968807 + }, + "date_of_expiration": { + "type": 6, + "value": 1685376968807 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "127bfa6481b14dea98141cde", + "revision": "9f26855dba6f4158a44093ec", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6183,10 +7002,10 @@ "content": { "type": "STRING", "value": "Saque de 1.357.502,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "afdcc907d1704727938179d1", + "revision": "927a75dc80d048329e0211c1", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6194,12 +7013,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "76007a8c66af488d8d12cf89", + "revision": "14d9087e04fb4ba6b1cbd62d", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6214,22 +7033,37 @@ "total_amount": 754612, "history_id": 1685379763814, "id": 1685379763814, - "date_created": "2023-05-29T17:02:43.814Z", - "date_last_updated": "2023-05-29T21:52:34.691Z", - "date_of_expiration": "2023-05-29T17:02:43.814Z", + "date_created": { + "type": 6, + "value": 1685379763814 + }, + "date_last_updated": { + "type": 6, + "value": 1685397154691 + }, + "date_of_expiration": { + "type": 6, + "value": 1685379763814 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-05-29T21:52:34.691Z", - "money_release_date": "2023-05-29T21:52:34.691Z", + "date_approved": { + "type": 6, + "value": 1685397154691 + }, + "money_release_date": { + "type": 6, + "value": 1685397154691 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "368d36dea3174d72abacaa9b", + "revision": "c13d66f0661a4e059e022ff3", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6237,10 +7071,10 @@ "content": { "type": "STRING", "value": "Saque de 754.612,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "6b75558ae6be4b0a83c59941", + "revision": "09c5aa05d18746c98481cba0", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6248,12 +7082,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "24837431832942af84388adf", + "revision": "db9239d7344e4b0d84595c5d", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6268,18 +7102,27 @@ "total_amount": 1432864, "history_id": 1685379960399, "id": 1685379960399, - "date_created": "2023-05-29T17:06:00.399Z", - "date_last_updated": "2023-05-29T17:06:00.399Z", - "date_of_expiration": "2023-05-29T17:06:00.399Z", + "date_created": { + "type": 6, + "value": 1685379960399 + }, + "date_last_updated": { + "type": 6, + "value": 1685379960399 + }, + "date_of_expiration": { + "type": 6, + "value": 1685379960399 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "6bf20ebf42c643b1baeb2d63", + "revision": "2a69c258e8ac499bac060afc", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6287,10 +7130,10 @@ "content": { "type": "STRING", "value": "Saque de 1.432.864,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "6afe5355430f4c38a3d12dcd", + "revision": "50cbf64b9829425ab6d6ce84", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6298,12 +7141,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "771278842a3041a5bf626bbf", + "revision": "1791a51353fb43ab8b089835", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6318,20 +7161,32 @@ "total_amount": 2248, "history_id": 1685382789817, "id": 1685382789817, - "date_created": "2023-05-29T17:53:09.817Z", - "date_last_updated": "2023-05-29T17:53:41.235Z", - "date_of_expiration": "2023-06-28T17:53:09.817Z", + "date_created": { + "type": 6, + "value": 1685382789817 + }, + "date_last_updated": { + "type": 6, + "value": 1685382821235 + }, + "date_of_expiration": { + "type": 6, + "value": 1687974789817 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-05-29T17:53:41.235Z", + "money_release_date": { + "type": 6, + "value": 1685382821235 + }, "money_release_status": "rejected" }, - "revision": "e856bb5850f74a1ca4d4d19e", + "revision": "1ef5a40476184cefb60eb8a8", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6339,10 +7194,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.248,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "62cd90e9a48d40f0a8aa24e2", + "revision": "d42ec00f9c344388a07b4849", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6360,12 +7215,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "aeef19d619384ddfad820448", + "revision": "c7af55bac2b54dae9ff18b67", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6381,9 +7236,18 @@ "original_amount": 15, "total_amount": 15, "id": 1685391703693, - "date_created": "2023-05-29T20:21:43.693Z", - "date_last_updated": "2023-05-29T20:21:43.693Z", - "date_of_expiration": "2023-05-29T20:21:43.693Z", + "date_created": { + "type": 6, + "value": 1685391703693 + }, + "date_last_updated": { + "type": 6, + "value": 1685391703693 + }, + "date_of_expiration": { + "type": 6, + "value": 1685391703693 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6392,10 +7256,10 @@ "history_id": 1685391703693, "description": "Compra de 15,00 IVIP por 150,00 IVIPAY" }, - "revision": "84eb63d5001445599243b98b", + "revision": "59e6bea6c4464fb2baef1010", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6413,12 +7277,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a06aa4f217fb464c9c1b4a02", + "revision": "b5184596182f4a3d87eef81b", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6434,9 +7298,18 @@ "original_amount": 5000, "total_amount": 5000, "id": 1685392276817, - "date_created": "2023-05-29T20:31:16.817Z", - "date_last_updated": "2023-05-29T20:31:16.817Z", - "date_of_expiration": "2023-05-29T20:31:16.817Z", + "date_created": { + "type": 6, + "value": 1685392276817 + }, + "date_last_updated": { + "type": 6, + "value": 1685392276817 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392276817 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6445,10 +7318,10 @@ "history_id": 1685392276817, "description": "Compra de 5.000,00 IVIP por 50.000,00 IVIPAY" }, - "revision": "c95d3b4385974f68b7447cdc", + "revision": "21073a23ac8f46199f835bb9", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6466,12 +7339,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "173c8aa1ff90402ea91609a9", + "revision": "5191f5605cc94c09912dff8b", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6487,9 +7360,18 @@ "original_amount": 500, "total_amount": 500, "id": 1685393515405, - "date_created": "2023-05-29T20:51:55.405Z", - "date_last_updated": "2023-05-29T20:51:55.405Z", - "date_of_expiration": "2023-05-29T20:51:55.405Z", + "date_created": { + "type": 6, + "value": 1685393515405 + }, + "date_last_updated": { + "type": 6, + "value": 1685393515405 + }, + "date_of_expiration": { + "type": 6, + "value": 1685393515405 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6498,10 +7380,10 @@ "history_id": 1685393515405, "description": "Compra de 500,00 IVIP por 5.000,00 IVIPAY" }, - "revision": "c0f7cda53d294f14aa6c3a7c", + "revision": "987e82800a2b47cfae0eed38", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6519,12 +7401,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "1ea59c40ac144857b099a06e", + "revision": "3be35554a17b4714958e378e", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6540,9 +7422,18 @@ "original_amount": 5200, "total_amount": 5200, "id": 1685393559293, - "date_created": "2023-05-29T20:52:39.293Z", - "date_last_updated": "2023-05-29T20:52:39.293Z", - "date_of_expiration": "2023-05-29T20:52:39.293Z", + "date_created": { + "type": 6, + "value": 1685393559293 + }, + "date_last_updated": { + "type": 6, + "value": 1685393559293 + }, + "date_of_expiration": { + "type": 6, + "value": 1685393559293 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6551,10 +7442,10 @@ "history_id": 1685393559293, "description": "Compra de 5.200,00 IVIP por 52.000,00 IVIPAY" }, - "revision": "54c755f6f7fe458fb9368bb7", + "revision": "3cb4ba46792841f2827de853", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6572,12 +7463,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "82dabea780e04351a7acdf80", + "revision": "a46caa04232e492f82b52959", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6593,9 +7484,18 @@ "original_amount": 4200, "total_amount": 4200, "id": 1685394959774, - "date_created": "2023-05-29T21:15:59.774Z", - "date_last_updated": "2023-05-29T21:15:59.774Z", - "date_of_expiration": "2023-05-29T21:15:59.774Z", + "date_created": { + "type": 6, + "value": 1685394959774 + }, + "date_last_updated": { + "type": 6, + "value": 1685394959774 + }, + "date_of_expiration": { + "type": 6, + "value": 1685394959774 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6604,10 +7504,10 @@ "history_id": 1685394959774, "description": "Compra de 4.200,00 IVIP por 42.000,00 IVIPAY" }, - "revision": "c51f170abcfa454b9c9b3bad", + "revision": "89a66289584c4310a97e0918", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6625,12 +7525,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "dc5d6360b4464193af9181d9", + "revision": "0daf399f15b546b7ae19f311", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6646,9 +7546,18 @@ "original_amount": 9, "total_amount": 9, "id": 1685395256711, - "date_created": "2023-05-29T21:20:56.711Z", - "date_last_updated": "2023-05-29T21:20:56.711Z", - "date_of_expiration": "2023-05-29T21:20:56.711Z", + "date_created": { + "type": 6, + "value": 1685395256711 + }, + "date_last_updated": { + "type": 6, + "value": 1685395256711 + }, + "date_of_expiration": { + "type": 6, + "value": 1685395256711 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6657,10 +7566,10 @@ "history_id": 1685395256711, "description": "Compra de 9,00 IVIP por 95,00 IVIPAY" }, - "revision": "36ea9c36cab64fb2b8632680", + "revision": "a586c3c278094c19b26b7acf", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6678,12 +7587,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "e4348af132464065aa422dea", + "revision": "ad5451f413f541e1aa47aa38", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6699,9 +7608,18 @@ "original_amount": 10000, "total_amount": 10000, "id": 1685395602952, - "date_created": "2023-05-29T21:26:42.952Z", - "date_last_updated": "2023-05-29T21:26:42.952Z", - "date_of_expiration": "2023-05-29T21:26:42.952Z", + "date_created": { + "type": 6, + "value": 1685395602952 + }, + "date_last_updated": { + "type": 6, + "value": 1685395602952 + }, + "date_of_expiration": { + "type": 6, + "value": 1685395602952 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6709,10 +7627,10 @@ "currency_id": "IVIPAY", "history_id": 1685395602952 }, - "revision": "916652675eb64e4ca8e13837", + "revision": "a2a40d48bde04d47b1d6be25", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6720,10 +7638,10 @@ "content": { "type": "STRING", "value": "Compra de 10.000,00 IVIPAY por 1.000,00 IVIP estabilizando US$ 0,09", - "revision": "eb32f54e4044468581b81aff", + "revision": "cfdfc4505cf4492ab117bbd2", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6741,12 +7659,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "7df79a5a6b254a5bb5e85b35", + "revision": "80dd96f9bcfd484f8b9cf48e", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6762,9 +7680,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685395698830, - "date_created": "2023-05-29T21:28:18.830Z", - "date_last_updated": "2023-05-29T21:28:18.830Z", - "date_of_expiration": "2023-05-29T21:28:18.830Z", + "date_created": { + "type": 6, + "value": 1685395698830 + }, + "date_last_updated": { + "type": 6, + "value": 1685395698830 + }, + "date_of_expiration": { + "type": 6, + "value": 1685395698830 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6773,10 +7700,10 @@ "history_id": 1685395698830, "description": "Compra de 1.000,00 IVIP por 10.000,00 IVIPAY" }, - "revision": "71733752f8e74d56b3782b1d", + "revision": "7ebedcc4eff845efbb30bc2b", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6794,12 +7721,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "77166aba67df469b82afcdd9", + "revision": "b724116765e84078b623a2dc", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6815,9 +7742,18 @@ "original_amount": 30000, "total_amount": 30000, "id": 1685457147497, - "date_created": "2023-05-30T14:32:27.497Z", - "date_last_updated": "2023-05-30T14:32:27.497Z", - "date_of_expiration": "2023-05-30T14:32:27.497Z", + "date_created": { + "type": 6, + "value": 1685457147497 + }, + "date_last_updated": { + "type": 6, + "value": 1685457147497 + }, + "date_of_expiration": { + "type": 6, + "value": 1685457147497 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6825,10 +7761,10 @@ "currency_id": "IVIPAY", "history_id": 1685457147497 }, - "revision": "181f6b98b0464d05973d16ab", + "revision": "184357632e824df8aee6046d", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6836,10 +7772,10 @@ "content": { "type": "STRING", "value": "Compra de 30.000,00 IVIPAY por 3.000,00 IVIP estabilizando US$ 0,22", - "revision": "5fc3667bdd1d4bda8bd65d1f", + "revision": "bcd1bd734f804d79941232cd", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6857,12 +7793,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "c32f11ca3f014602923dcc8d", + "revision": "929a25b30f2f4e95ad38e851", "revision_nr": 1, - "created": 1701463509517, - "modified": 1701463509517 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6878,9 +7814,18 @@ "original_amount": 3000, "total_amount": 3000, "id": 1685457225462, - "date_created": "2023-05-30T14:33:45.462Z", - "date_last_updated": "2023-05-30T14:33:45.462Z", - "date_of_expiration": "2023-05-30T14:33:45.462Z", + "date_created": { + "type": 6, + "value": 1685457225462 + }, + "date_last_updated": { + "type": 6, + "value": 1685457225462 + }, + "date_of_expiration": { + "type": 6, + "value": 1685457225462 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6889,10 +7834,10 @@ "history_id": 1685457225462, "description": "Compra de 3.000,00 IVIP por 30.000,00 IVIPAY" }, - "revision": "8f3891f1c0d3447ba6705e4d", + "revision": "f287f25d0c964bb4a823ec13", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6910,12 +7855,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "ef40cc723a0f47109f22e7a6", + "revision": "81f4ea41304d41d9a0e4de01", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6931,9 +7876,18 @@ "original_amount": 70000, "total_amount": 70000, "id": 1685458042396, - "date_created": "2023-05-30T14:47:22.396Z", - "date_last_updated": "2023-05-30T14:47:22.396Z", - "date_of_expiration": "2023-05-30T14:47:22.396Z", + "date_created": { + "type": 6, + "value": 1685458042396 + }, + "date_last_updated": { + "type": 6, + "value": 1685458042396 + }, + "date_of_expiration": { + "type": 6, + "value": 1685458042396 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -6941,10 +7895,10 @@ "currency_id": "IVIPAY", "history_id": 1685458042396 }, - "revision": "b7a63bc3aafb454b83a38023", + "revision": "2bb2eb0f060947e4b8b7efcc", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6952,10 +7906,10 @@ "content": { "type": "STRING", "value": "Compra de 70.000,00 IVIPAY por 7.000,00 IVIP estabilizando US$ 0,46", - "revision": "c624c524e4e84b49bd5d524f", + "revision": "13ce49c229274844b29dba6f", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6973,12 +7927,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "136352f4a5974c089102f20f", + "revision": "ae8dd924ac024d0782a650d6", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -6994,9 +7948,18 @@ "original_amount": 7000, "total_amount": 7000, "id": 1685458118470, - "date_created": "2023-05-30T14:48:38.470Z", - "date_last_updated": "2023-05-30T14:48:38.470Z", - "date_of_expiration": "2023-05-30T14:48:38.470Z", + "date_created": { + "type": 6, + "value": 1685458118470 + }, + "date_last_updated": { + "type": 6, + "value": 1685458118470 + }, + "date_of_expiration": { + "type": 6, + "value": 1685458118470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -7005,10 +7968,10 @@ "history_id": 1685458118470, "description": "Compra de 7.000,00 IVIP por 70.000,00 IVIPAY" }, - "revision": "48e2208408a34ecd8db83028", + "revision": "f9c74da99e5d435b8065d5d2", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820489, + "modified": 1701465820489 } }, { @@ -7026,12 +7989,12 @@ "installment_amount": 100000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "98c3553f3b344bee87a6764b", + "revision": "fed69f2bd764401cb1e423dc", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7046,9 +8009,18 @@ "original_amount": 100000, "total_amount": 100000, "id": 1685663081137, - "date_created": "2023-06-01T23:44:41.137Z", - "date_last_updated": "2023-06-01T23:44:41.137Z", - "date_of_expiration": "2023-07-01T23:44:41.137Z", + "date_created": { + "type": 6, + "value": 1685663081137 + }, + "date_last_updated": { + "type": 6, + "value": 1685663081137 + }, + "date_of_expiration": { + "type": 6, + "value": 1688255081137 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -7058,10 +8030,10 @@ "description": "", "wasDebited": true }, - "revision": "1499ca6ad8744463a914ac11", + "revision": "b14350d8c42a4628a844a624", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7079,12 +8051,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "1b78acd510a249d1877c4319", + "revision": "d6af5ffc15884ffa83fa0493", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7100,9 +8072,18 @@ "original_amount": 0, "total_amount": 0, "id": 1685732640623, - "date_created": "2023-06-02T19:04:00.623Z", - "date_last_updated": "2023-06-02T19:04:00.623Z", - "date_of_expiration": "2023-06-02T19:04:00.623Z", + "date_created": { + "type": 6, + "value": 1685732640623 + }, + "date_last_updated": { + "type": 6, + "value": 1685732640623 + }, + "date_of_expiration": { + "type": 6, + "value": 1685732640623 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -7111,10 +8092,10 @@ "history_id": 1685732640623, "description": "Compra de 0,00 IVIP por 75,00 BRL" }, - "revision": "89d7f7453aee4e42893187f7", + "revision": "54690799e1ac413993515906", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7122,12 +8103,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "3d8e5db906b6423e9685eca7", + "revision": "cfa4bf600aa545c0a8a865e6", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7142,18 +8123,27 @@ "total_amount": 220, "history_id": 1686686158496, "id": 1686686158496, - "date_created": "2023-06-13T19:55:58.496Z", - "date_last_updated": "2023-06-13T19:55:58.496Z", - "date_of_expiration": "2023-07-13T19:55:58.496Z", + "date_created": { + "type": 6, + "value": 1686686158496 + }, + "date_last_updated": { + "type": 6, + "value": 1686686158496 + }, + "date_of_expiration": { + "type": 6, + "value": 1689278158496 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "70460a41a1b84566866807af", + "revision": "8b019453e10b4ff6b8d736e2", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7161,10 +8151,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 220,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "be0fe713d8a546c5904c5d71", + "revision": "bee280a3229746f5b310e9c2", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7184,12 +8174,12 @@ "installment_amount": 37.333, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "bf010986653b4cdeba3d3c29", + "revision": "42d21ae8904d41e9834199dd", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7206,9 +8196,18 @@ "total_amount": 37.333, "id": 1687279230710, "contract_id": "1679181025084", - "date_created": "2023-06-20T16:40:30.710Z", - "date_last_updated": "2023-06-20T16:40:30.710Z", - "date_of_expiration": "2023-06-20T16:40:30.710Z", + "date_created": { + "type": 6, + "value": 1687279230710 + }, + "date_last_updated": { + "type": 6, + "value": 1687279230710 + }, + "date_of_expiration": { + "type": 6, + "value": 1687279230710 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -7216,10 +8215,10 @@ "currency_id": "BRL", "history_id": 1687279230710 }, - "revision": "532fc7a8025d4369b9c509b7", + "revision": "08dadd340576450e8d8f3132", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7227,10 +8226,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "d59f1e287ee940e4a6df6460", + "revision": "d1858943c19b4baa980c11a3", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7238,12 +8237,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "43f8ddd43c1c44f886648bce", + "revision": "75f934db278d41738127e22b", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7258,18 +8257,27 @@ "total_amount": 865324, "history_id": 1687291349985, "id": 1687291349985, - "date_created": "2023-06-20T20:02:29.985Z", - "date_last_updated": "2023-06-20T20:02:29.985Z", - "date_of_expiration": "2023-06-20T20:02:29.985Z", + "date_created": { + "type": 6, + "value": 1687291349985 + }, + "date_last_updated": { + "type": 6, + "value": 1687291349985 + }, + "date_of_expiration": { + "type": 6, + "value": 1687291349985 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "49da637b29bb4c2e9d7764b2", + "revision": "5eef77a0322848079f8bff15", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7277,10 +8285,10 @@ "content": { "type": "STRING", "value": "Saque de 865.324,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "89b4f8a420ee4dc8ad62cca0", + "revision": "21e3aecd39ad4237aa6c9688", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7298,12 +8306,12 @@ "installment_amount": 100000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "3f40124a17c846d3b1957aea", + "revision": "0dbd2ab2a6b8491aa624f38d", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7318,9 +8326,18 @@ "original_amount": 102000, "total_amount": 102000, "id": 1688400997533, - "date_created": "2023-07-03T16:16:37.533Z", - "date_last_updated": "2023-07-03T16:16:37.533Z", - "date_of_expiration": "2023-07-03T16:16:37.533Z", + "date_created": { + "type": 6, + "value": 1688400997533 + }, + "date_last_updated": { + "type": 6, + "value": 1688400997533 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400997533 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -7329,10 +8346,10 @@ "history_id": 1688400997533, "wasDebited": true }, - "revision": "11fb9658b673416ba80c5800", + "revision": "5ce5ad116a14454092ec6360", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7340,10 +8357,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 100.000,00 IVIP com um rendimento de +2.000,00 IVIP (2,00%)", - "revision": "67e01e657c8e477fa4ade008", + "revision": "360d9024088f42f0ba980728", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7361,12 +8378,12 @@ "installment_amount": 960, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "1d5e42432cba41b4bc4f165b", + "revision": "6293bef75fc249ceb8f63379", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7381,9 +8398,18 @@ "original_amount": 960, "total_amount": 960, "id": 1689203359364, - "date_created": "2023-07-12T23:09:19.364Z", - "date_last_updated": "2023-07-12T23:09:19.364Z", - "date_of_expiration": "2024-05-12T23:09:19.364Z", + "date_created": { + "type": 6, + "value": 1689203359364 + }, + "date_last_updated": { + "type": 6, + "value": 1689203359364 + }, + "date_of_expiration": { + "type": 6, + "value": 1715555359364 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -7391,10 +8417,10 @@ "currency_id": "BRL", "history_id": 1689203359364 }, - "revision": "1d5a466967da4b62a4f6b0f8", + "revision": "9709e3eff1684a2b98e94b26", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7402,10 +8428,10 @@ "content": { "type": "STRING", "value": "Investimento de 960,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/12/2024", - "revision": "98267343ccb64841a5a601f1", + "revision": "dd77f4547e014ebab99e8fde", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7414,12 +8440,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-19T18:23:22.188Z" + ".val": { + "type": 6, + "value": 1692469402188 + } }, - "revision": "581481391ff64bb2bf410000", + "revision": "f2eb84bfd36d417781edf0da", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7435,12 +8464,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "554acb74c23d4295966e7b98", + "revision": "c7f6239a941c4ae6b65b1c57", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7448,10 +8477,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/extract/000523147298669313/order/1689877402188", - "revision": "a5de809d69ee4d6c86d3cd43", + "revision": "330d5976ce6141e789264a26", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7466,8 +8495,14 @@ "total_amount": 7104, "id": 1689877402192, "history_id": 1689877402192, - "date_created": "2023-07-20T18:23:22.192Z", - "date_last_updated": "2023-07-20T18:23:22.192Z", + "date_created": { + "type": 6, + "value": 1689877402192 + }, + "date_last_updated": { + "type": 6, + "value": 1689877402192 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -7475,10 +8510,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "2468d851b8dc43a6ac482220", + "revision": "3fe077fd85864244b106cb9a", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7486,10 +8521,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 7.104,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "a29f344e29fc4e75bd60ca6d", + "revision": "47cc1caa352f4445ad5a321d", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7498,12 +8533,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-19T20:01:24.161Z" + ".val": { + "type": 6, + "value": 1692475284161 + } }, - "revision": "71ad3fa87d1c4be68fa69ed3", + "revision": "51a13e7319e64dd195d11185", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7519,12 +8557,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "3cf7639ef7c14220b23e4122", + "revision": "1dd12f7212574cc38875427d", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7532,10 +8570,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1689883284161", - "revision": "fdc8fef8d6114642896af7f1", + "revision": "a941805c09a846beb782d83f", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7550,22 +8588,31 @@ "total_amount": 1391, "id": 1689883284161, "history_id": 1689883284161, - "date_created": "2023-07-20T20:01:24.161Z", - "date_last_updated": "2023-07-20T20:02:07.692Z", + "date_created": { + "type": 6, + "value": 1689883284161 + }, + "date_last_updated": { + "type": 6, + "value": 1689883327692 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "rejected", - "money_release_date": "2023-07-20T20:02:07.692Z", + "money_release_date": { + "type": 6, + "value": 1689883327692 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "a41bdde08d114d0f8c36e1c7", + "revision": "864c3feca2db4e8fb25bd023", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7573,10 +8620,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.391,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "cb949dddf3c844d1a5321f51", + "revision": "5eb6cd6e82ed4620b274b441", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7588,10 +8635,10 @@ "label": "Taxa de 3%", "amount": 145.5 }, - "revision": "245e5f26cf354b7d9ecc04ee", + "revision": "d320ddca064544ccab8b6af3", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7608,10 +8655,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "4ec42503efe54a8d8d7a1811", + "revision": "9ac185c80d7d427a8686d5cc", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7619,10 +8666,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566158772", - "revision": "6f4b986223414ea48c9f3267", + "revision": "d82ec40efe68417eb2e13331", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7630,10 +8677,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "8a1143e20def411da8316a7a", + "revision": "427f52e721a84039907ed04f", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7648,23 +8695,35 @@ "total_amount": 4850, "id": 1690566158772, "history_id": 1690566158772, - "date_created": "2023-07-28T17:42:38.772Z", - "date_last_updated": "2023-07-28T18:25:14.945Z", - "date_of_expiration": "2023-07-28T17:42:38.772Z", + "date_created": { + "type": 6, + "value": 1690566158772 + }, + "date_last_updated": { + "type": 6, + "value": 1690568714945 + }, + "date_of_expiration": { + "type": 6, + "value": 1690566158772 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": "2023-07-28T18:25:14.945Z", + "money_release_date": { + "type": 6, + "value": 1690568714945 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "1b5c861ddb094b479986bd54", + "revision": "a6c736792d0f4bc48fb616f2", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7672,10 +8731,10 @@ "content": { "type": "STRING", "value": "Saque de 50,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "2a250b46c99641c3bc13da2f", + "revision": "1cf75d28cf264bf19f9f9290", "revision_nr": 1, - "created": 1701463509518, - "modified": 1701463509518 + "created": 1701465820490, + "modified": 1701465820490 } }, { @@ -7687,10 +8746,10 @@ "label": "Taxa de 3%", "amount": 29.099999999999998 }, - "revision": "8c81b74155564f7dbed8bb81", + "revision": "cdf68640f30b4fabb1425bbf", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7707,10 +8766,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "8c0095985eb641089ab80d8b", + "revision": "612f0ace8bd24c64bfac01b3", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7718,10 +8777,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566489489", - "revision": "a8873f06f9ea4f509a11c5f0", + "revision": "a662d6ae386d41b5a04fbee0", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7729,10 +8788,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f8264caa14c44dacb566a27e", + "revision": "3034ea5bc1a74ba4b6cf7c9b", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7747,24 +8806,39 @@ "total_amount": 970, "id": 1690566489489, "history_id": 1690566489489, - "date_created": "2023-07-28T17:48:09.489Z", - "date_last_updated": "2023-07-28T18:25:45.368Z", - "date_of_expiration": "2023-07-28T17:48:09.489Z", + "date_created": { + "type": 6, + "value": 1690566489489 + }, + "date_last_updated": { + "type": 6, + "value": 1690568745368 + }, + "date_of_expiration": { + "type": 6, + "value": 1690566489489 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": "2023-07-28T18:25:45.368Z", - "money_release_date": "2023-07-28T18:25:45.368Z", + "date_approved": { + "type": 6, + "value": 1690568745368 + }, + "money_release_date": { + "type": 6, + "value": 1690568745368 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "a5edb5963598493692b5969f", + "revision": "934083c802ae4b34852f21a4", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7772,10 +8846,10 @@ "content": { "type": "STRING", "value": "Saque de 10,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "4bbea124d22c46f18bca07a2", + "revision": "cefa83e6ff9c449cbde96fa2", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7787,10 +8861,10 @@ "label": "Taxa de 3%", "amount": 34.92 }, - "revision": "1fe95731d46449f3a8fcaddb", + "revision": "a79e0c66b0434a9ba5f39287", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7807,10 +8881,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "88b118ae5fc347578ae342e6", + "revision": "9b215f62ac8c4998b456a914", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7818,10 +8892,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566618435", - "revision": "beed5457d13f47aab1e038af", + "revision": "2b018ee2a0044fef9272fbe5", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7829,10 +8903,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "ca687228c45f4c5db01f591c", + "revision": "788a25a360de4393bae51bd2", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7847,23 +8921,35 @@ "total_amount": 1164, "id": 1690566618435, "history_id": 1690566618435, - "date_created": "2023-07-28T17:50:18.435Z", - "date_last_updated": "2023-07-28T18:26:54.405Z", - "date_of_expiration": "2023-07-28T17:50:18.435Z", + "date_created": { + "type": 6, + "value": 1690566618435 + }, + "date_last_updated": { + "type": 6, + "value": 1690568814405 + }, + "date_of_expiration": { + "type": 6, + "value": 1690566618435 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": "2023-07-28T18:26:54.405Z", + "money_release_date": { + "type": 6, + "value": 1690568814405 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "051d0526710b452aa85bbe77", + "revision": "629bc6e30b4f42498699118e", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7871,10 +8957,10 @@ "content": { "type": "STRING", "value": "Saque de 1164 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "a1c1d7fed21e46ec8238a1d9", + "revision": "772bab573208437abcdd4e11", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7886,10 +8972,10 @@ "label": "Taxa de 3,00%", "amount": 392.84999999999997 }, - "revision": "fae4a85bf4994067a5077570", + "revision": "f4e8cf2722144a51bbb0e931", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7906,10 +8992,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "60d7cb37d34b429bb601e8c5", + "revision": "493739923b5e423486036cd7", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7917,10 +9003,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690568586623", - "revision": "ae6a2e9e6d8f47a39e958c92", + "revision": "5fbfc7300682469a8b9c560f", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7928,10 +9014,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e29b9292476e455e91b44003", + "revision": "fc63bed908584111a31f6cb2", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7946,23 +9032,35 @@ "total_amount": 13095, "id": 1690568586623, "history_id": 1690568586623, - "date_created": "2023-07-28T18:23:06.623Z", - "date_last_updated": "2023-07-28T18:27:14.472Z", - "date_of_expiration": "2023-07-28T18:23:06.623Z", + "date_created": { + "type": 6, + "value": 1690568586623 + }, + "date_last_updated": { + "type": 6, + "value": 1690568834472 + }, + "date_of_expiration": { + "type": 6, + "value": 1690568586623 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": "2023-07-28T18:27:14.472Z", + "money_release_date": { + "type": 6, + "value": 1690568834472 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "938d870b85af4e52b448cd89", + "revision": "0417fa1cedde4a43bb12eb0e", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7970,10 +9068,10 @@ "content": { "type": "STRING", "value": "Saque de 13.095,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "bed997ce982943f9954b901d", + "revision": "2ad72a49b6ff4f0a8329ea28", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -7989,12 +9087,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "e52d73c106b24aa18ffe8af7", + "revision": "92009c65124e4d35b6dbaf30", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8002,10 +9100,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1691685725174", - "revision": "d81e56a3bf444c4cb66e190a", + "revision": "d6a551e5bfcb48f9a2046e60", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8020,9 +9118,18 @@ "total_amount": 155950, "id": 1691685725174, "history_id": 1691685725174, - "date_created": "2023-08-10T16:42:05.174Z", - "date_last_updated": "2023-08-10T16:42:05.174Z", - "date_of_expiration": "2023-08-10T16:42:05.174Z", + "date_created": { + "type": 6, + "value": 1691685725174 + }, + "date_last_updated": { + "type": 6, + "value": 1691685725174 + }, + "date_of_expiration": { + "type": 6, + "value": 1691685725174 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -8031,10 +9138,10 @@ "description": "Compra de 155.950,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "45f35651c928404da70ac074", + "revision": "22463e0d2283435fbcee95a7", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8043,12 +9150,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-16T18:40:23.442Z" + ".val": { + "type": 6, + "value": 1694889623442 + } }, - "revision": "9903170f7fb947569bd012d4", + "revision": "8be839bac8e34adca0871130", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8064,12 +9174,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "82e39471934e4dd1bcabfe5b", + "revision": "e1469eb452254e8ba37384d0", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8077,10 +9187,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692297623443", - "revision": "9db515a1439d42dbab33db98", + "revision": "064d95fc8a6f4f118f1ef6fa", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8095,8 +9205,14 @@ "total_amount": 50, "id": 1692297623443, "history_id": 1692297623443, - "date_created": "2023-08-17T18:40:23.443Z", - "date_last_updated": "2023-08-17T18:40:23.443Z", + "date_created": { + "type": 6, + "value": 1692297623443 + }, + "date_last_updated": { + "type": 6, + "value": 1692297623443 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -8104,10 +9220,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "a76463ebe6d54ca481793548", + "revision": "58d49f1db08940869a6e9bb9", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8115,10 +9231,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 50,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "333ccca900f44ee6a5d91053", + "revision": "1967544922a049a88ddb710a", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8127,12 +9243,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-16T18:42:48.550Z" + ".val": { + "type": 6, + "value": 1694889768550 + } }, - "revision": "32a988ed6969417db74abe80", + "revision": "5a0516a6fa4d451491995501", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8148,12 +9267,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "63ed8e872ebe4ed8b0e4b4a3", + "revision": "23ceefab2cce4306b17e06be", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8161,10 +9280,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692297768550", - "revision": "677dbf591327433bac4b0d52", + "revision": "a1a4ffd5a4c74ab283cb7a25", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8179,22 +9298,31 @@ "total_amount": 25, "id": 1692297768550, "history_id": 1692297768550, - "date_created": "2023-08-17T18:42:48.550Z", - "date_last_updated": "2023-08-17T18:43:22.788Z", + "date_created": { + "type": 6, + "value": 1692297768550 + }, + "date_last_updated": { + "type": 6, + "value": 1692297802788 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "rejected", - "money_release_date": "2023-08-17T18:43:22.788Z", + "money_release_date": { + "type": 6, + "value": 1692297802788 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "10a8ab97d2b1494a8a8148e1", + "revision": "7f62f601c0414600809cd20d", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8202,10 +9330,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 25,00 BRL para a carteira iVip 0005.2314.7298.6693-13", - "revision": "788ed54f311045de865a25c7", + "revision": "72689ad73b9442ff90fb45bf", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8214,12 +9342,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-16T20:37:26.621Z" + ".val": { + "type": 6, + "value": 1694896646621 + } }, - "revision": "e127fb37e7cd4638b8103cdc", + "revision": "51036b2816b24b3aae136824", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8235,12 +9366,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "fef0d7ce06a340b29f32f573", + "revision": "4dc8839ba6354b23af4c4feb", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8248,10 +9379,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692304646621", - "revision": "0dc03039bc144548bba44227", + "revision": "8e03b7c3bb954a069ed5d920", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8266,22 +9397,31 @@ "total_amount": 1200, "id": 1692304646621, "history_id": 1692304646621, - "date_created": "2023-08-17T20:37:26.621Z", - "date_last_updated": "2023-08-17T20:40:02.388Z", + "date_created": { + "type": 6, + "value": 1692304646621 + }, + "date_last_updated": { + "type": 6, + "value": 1692304802388 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": "2023-08-17T20:40:02.388Z", + "money_release_date": { + "type": 6, + "value": 1692304802388 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "24bf9cb20ca7481fb05e7bfd", + "revision": "6037d35522314eadb9af1ac8", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8289,10 +9429,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.200,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", - "revision": "53c3013f6964492d934bd187", + "revision": "1043b77216a1413286837a0f", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8301,12 +9441,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-16T20:41:33.953Z" + ".val": { + "type": 6, + "value": 1694896893953 + } }, - "revision": "e80ec4df544247bdbc3ba1e7", + "revision": "66f3b9f5cf6244068f23214e", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8322,12 +9465,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "a582d1f286fc4aa7bc450e2d", + "revision": "001358ad8b964af395105401", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8335,10 +9478,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692304893954", - "revision": "102bf249f09944c0a3aed1de", + "revision": "d900a400a75b43958c5046a5", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8353,23 +9496,35 @@ "total_amount": 23000, "id": 1692304893954, "history_id": 1692304893954, - "date_created": "2023-08-17T20:41:33.954Z", - "date_last_updated": "2023-08-17T20:41:56.494Z", + "date_created": { + "type": 6, + "value": 1692304893954 + }, + "date_last_updated": { + "type": 6, + "value": 1692304916494 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": "2023-08-17T20:41:56.494Z", - "money_release_date": "2023-08-17T20:41:56.494Z", + "date_approved": { + "type": 6, + "value": 1692304916494 + }, + "money_release_date": { + "type": 6, + "value": 1692304916494 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "e135ceb4b2b248cdb748c4d1", + "revision": "f14bc0dc2d2c4b4fa4d40d03", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8377,10 +9532,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 23.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", - "revision": "f52015c677fb4383a93f22de", + "revision": "98a7a4eb57d54738916eac67", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820491, + "modified": 1701465820491 } }, { @@ -8389,12 +9544,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-16T23:06:58.376Z" + ".val": { + "type": 6, + "value": 1694905618376 + } }, - "revision": "29ada87786404bb8a3d6e06a", + "revision": "2c54ae3dee0c49059d6bc926", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8410,12 +9568,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "791c698b91de46b79ee53f55", + "revision": "32378cf368b74ca8a76fd5b7", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8423,10 +9581,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692313618376", - "revision": "7cedd7e0139349d99c118c92", + "revision": "6b5f88b34c644da4a5d0e4ee", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8441,8 +9599,14 @@ "total_amount": 10000000, "id": 1692313618376, "history_id": 1692313618376, - "date_created": "2023-08-17T23:06:58.376Z", - "date_last_updated": "2023-08-17T23:06:58.376Z", + "date_created": { + "type": 6, + "value": 1692313618376 + }, + "date_last_updated": { + "type": 6, + "value": 1692313618376 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -8450,10 +9614,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "de9219a508f24b579a5345da", + "revision": "af3e13fc3159425fa4de0c67", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8461,10 +9625,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 10.000.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", - "revision": "8f7ca8fa6b3b4b4483ac04f5", + "revision": "97963a83d9814248be331d4f", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8473,12 +9637,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-17T14:16:26.664Z" + ".val": { + "type": 6, + "value": 1694960186664 + } }, - "revision": "e6e2b4c0ef6941bf8cec4ed3", + "revision": "780158a221e2453493647baa", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8494,12 +9661,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "67087e6a1ec443b08baa7677", + "revision": "c2f9c2ff564c486d99aa4712", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8507,10 +9674,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692368186664", - "revision": "a34e04f141334a5dbe390ce1", + "revision": "72b0721ee1be4c51859b6e27", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8525,8 +9692,14 @@ "total_amount": 125000000, "id": 1692368186664, "history_id": 1692368186664, - "date_created": "2023-08-18T14:16:26.664Z", - "date_last_updated": "2023-08-18T14:16:26.664Z", + "date_created": { + "type": 6, + "value": 1692368186664 + }, + "date_last_updated": { + "type": 6, + "value": 1692368186664 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -8534,10 +9707,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "f9933c1031514597bacdd859", + "revision": "933018fcebce4649958d7a99", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8545,10 +9718,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 125.000.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", - "revision": "b041396cffaf4a7c851ecc9d", + "revision": "95a346988128403bb2d4da1c", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8564,14 +9737,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 3, "installments_payable": 1 }, - "revision": "c29e138268304d058dc6e1cf", + "revision": "8f18a038e2a94740afd299b7", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8579,10 +9752,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651485901", - "revision": "d5e14c52c809400abc67c51b", + "revision": "5c693f94dc444cd882a9b44d", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8597,9 +9770,18 @@ "total_amount": 114.75, "id": "1692651485901", "history_id": "1692651485901", - "date_created": "2023-08-21T20:58:05.901Z", - "date_last_updated": "2023-08-21T20:58:05.901Z", - "date_of_expiration": "2023-08-21T20:58:05.901Z", + "date_created": { + "type": 6, + "value": 1692651485901 + }, + "date_last_updated": { + "type": 6, + "value": 1692651485901 + }, + "date_of_expiration": { + "type": 6, + "value": 1692651485901 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -8607,10 +9789,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "24c9b859cda1485a86c59d17", + "revision": "3b36c7282198419eb3d1bb48", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8618,10 +9800,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", - "revision": "e2dc4ebc32364a169b0fe8a9", + "revision": "7feebac437a94bd6a30544e4", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8637,14 +9819,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 4, "installments_payable": 2 }, - "revision": "a6aabfb4634e47b68af642f8", + "revision": "8be754540472427a9869ccb5", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8652,10 +9834,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651487214", - "revision": "946b126c47004e5296d53cac", + "revision": "ebf8f035919448b3bc079beb", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8670,9 +9852,18 @@ "total_amount": 37.333333333333336, "id": "1692651487214", "history_id": "1692651487214", - "date_created": "2023-08-21T20:58:07.214Z", - "date_last_updated": "2023-08-21T20:58:07.214Z", - "date_of_expiration": "2023-08-21T20:58:07.214Z", + "date_created": { + "type": 6, + "value": 1692651487214 + }, + "date_last_updated": { + "type": 6, + "value": 1692651487214 + }, + "date_of_expiration": { + "type": 6, + "value": 1692651487214 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -8680,10 +9871,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "83211f3f38864d1eb7eba5ff", + "revision": "b3bec9b6dd3847ef97e2a810", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8691,10 +9882,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "2422ba8a779d49e1a25f9e1b", + "revision": "4acf02b12b1746e3b2d4cefb", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8710,14 +9901,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 5, "installments_payable": 1 }, - "revision": "b90a8cab42b7486bbfec87a0", + "revision": "da7fa9b8c54d4a069fe796ab", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8725,10 +9916,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651816060", - "revision": "f418a56bcfdf435bbd299d63", + "revision": "cb054d24d3f343e1819cbc7b", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8743,9 +9934,18 @@ "total_amount": 37.333333333333336, "id": "1692651816060", "history_id": "1692651816060", - "date_created": "2023-08-21T21:03:36.060Z", - "date_last_updated": "2023-08-21T21:03:36.060Z", - "date_of_expiration": "2023-08-21T21:03:36.060Z", + "date_created": { + "type": 6, + "value": 1692651816060 + }, + "date_last_updated": { + "type": 6, + "value": 1692651816060 + }, + "date_of_expiration": { + "type": 6, + "value": 1692651816060 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -8753,10 +9953,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "dd495c02232a4ff98c5a09f6", + "revision": "b48d6abc1d5e4328bde4264f", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8764,10 +9964,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 5 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "46117802a1e4487e87282149", + "revision": "953efb756ea14c9799aab5ae", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8783,14 +9983,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 4, "installments_payable": 0 }, - "revision": "d12d9f53ecfe46ffb08b907b", + "revision": "9030cdd74ab541ffb7640a33", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8798,10 +9998,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692658113429", - "revision": "5221d4a6f5ce4a8589746acc", + "revision": "6e2d0b2b9bfe47a59c40021b", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8816,9 +10016,18 @@ "total_amount": 114.75, "id": "1692658113429", "history_id": "1692658113429", - "date_created": "2023-08-21T22:48:33.429Z", - "date_last_updated": "2023-08-21T22:48:33.429Z", - "date_of_expiration": "2023-08-21T22:48:33.429Z", + "date_created": { + "type": 6, + "value": 1692658113429 + }, + "date_last_updated": { + "type": 6, + "value": 1692658113429 + }, + "date_of_expiration": { + "type": 6, + "value": 1692658113429 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -8826,10 +10035,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "a88d3821394b4dde8d2d86ff", + "revision": "6f7c8e5fd5624c36aff0336f", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8837,10 +10046,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", - "revision": "3725631fc3d94afb9f8c37bf", + "revision": "519d93d62dda4362b4242888", "revision_nr": 1, - "created": 1701463509519, - "modified": 1701463509519 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8852,10 +10061,10 @@ "label": "Taxa de 3,00%", "amount": 660000 }, - "revision": "2746fca37bdf4ea48771e67f", + "revision": "1d62df6a2fd54732a4261a18", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8872,10 +10081,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "cb84d171997841219aaa8aee", + "revision": "17608da0e8c1457d9a692ed2", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8883,10 +10092,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692976623136", - "revision": "571502eced5a40a28c4232a0", + "revision": "e05ff37dc35e48e4abcb790e", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8894,10 +10103,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "cf7284df9feb4cf892344e64", + "revision": "194cc035b7e744948f8e2d84", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8912,24 +10121,39 @@ "total_amount": 21340000, "id": "1692976623136", "history_id": "1692976623136", - "date_created": "2023-08-25T15:17:03.136Z", - "date_last_updated": "2023-08-25T15:18:37.836Z", - "date_of_expiration": "2023-08-25T15:17:03.136Z", + "date_created": { + "type": 6, + "value": 1692976623136 + }, + "date_last_updated": { + "type": 6, + "value": 1692976717836 + }, + "date_of_expiration": { + "type": 6, + "value": 1692976623136 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": "2023-08-25T15:18:37.836Z", - "money_release_date": "2023-08-25T15:18:37.836Z", + "date_approved": { + "type": 6, + "value": 1692976717836 + }, + "money_release_date": { + "type": 6, + "value": 1692976717836 + }, "money_release_status": "drawee", "wasDebited": true }, - "revision": "bb25a29b3c0c4327a90e21e5", + "revision": "79acd3f3523c426688908897", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8937,10 +10161,10 @@ "content": { "type": "STRING", "value": "Saque de 21.340.000,00 IVIP para a carteira 0x15a315a0f6917CA88693fDCCD4B753E051c2d173", - "revision": "5557e0edf9504dba8211f9e8", + "revision": "5f8f81a628384dfb8e0e387f", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8956,12 +10180,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "7156c423a56743d090d0cdc8", + "revision": "d7038d6180a04b8dbbcccae6", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8969,10 +10193,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1693346357974", - "revision": "579ae90d3025444dabe46cd3", + "revision": "6a40e5282bee4ae2a4a6b8f9", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -8987,9 +10211,18 @@ "total_amount": 2000000, "id": "1693346357974", "history_id": "1693346357974", - "date_created": "2023-08-29T21:59:17.974Z", - "date_last_updated": "2023-08-29T21:59:17.974Z", - "date_of_expiration": "2025-08-29T21:59:17.968Z", + "date_created": { + "type": 6, + "value": 1693346357974 + }, + "date_last_updated": { + "type": 6, + "value": 1693346357974 + }, + "date_of_expiration": { + "type": 6, + "value": 1756504757968 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -8997,10 +10230,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ee8cdeca72b94af3ba28a184", + "revision": "ac7c69da2dd4416fb2ffd79e", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9008,10 +10241,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 29/08/2025 - P9A02KSL", - "revision": "7bd541b3b04c4de2ab6a178c", + "revision": "92b1f7e66e904b4c9ed51e33", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9027,12 +10260,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "0a9c1e2f9735453ab644c81b", + "revision": "0d7088c4601d4a8889e0f94d", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9040,10 +10273,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1693765839188", - "revision": "541c6ff444a04b4ca6baafbb", + "revision": "bec25a92afa34def96c0979d", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9058,9 +10291,18 @@ "total_amount": 1000, "id": "1693765839188", "history_id": "1693765839188", - "date_created": "2023-09-03T18:30:39.188Z", - "date_last_updated": "2023-09-03T18:30:39.188Z", - "date_of_expiration": "2023-10-03T18:30:39.188Z", + "date_created": { + "type": 6, + "value": 1693765839188 + }, + "date_last_updated": { + "type": 6, + "value": 1693765839188 + }, + "date_of_expiration": { + "type": 6, + "value": 1696357839188 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9068,10 +10310,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "7635089d70194950b88384da", + "revision": "03f73cb1b8384e78bb1d433d", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9079,10 +10321,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "37d789df18264eaf995371d9", + "revision": "a66046225a9c4187ae8fafb8", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9098,14 +10340,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 5, "installments_payable": 1 }, - "revision": "7e217ed28e6b4c6db3444f5e", + "revision": "476041ea42d041788d0a219f", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9113,10 +10355,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554040120", - "revision": "1b234b0e8fd24d06b03b5c9d", + "revision": "d36ff8342a6e4c3ea6c20974", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9131,9 +10373,18 @@ "total_amount": 37.333333333333336, "id": "1694554040120", "history_id": "1694554040120", - "date_created": "2023-09-12T21:27:20.120Z", - "date_last_updated": "2023-09-12T21:27:20.120Z", - "date_of_expiration": "2023-09-12T21:27:20.120Z", + "date_created": { + "type": 6, + "value": 1694554040120 + }, + "date_last_updated": { + "type": 6, + "value": 1694554040120 + }, + "date_of_expiration": { + "type": 6, + "value": 1694554040120 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -9141,10 +10392,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "f9b816f0942749789a414258", + "revision": "0fee2b88711141e6aa7aed28", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9152,10 +10403,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 5 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "3076a8a412144f5fbbc54f92", + "revision": "9a4540bd29714d6f857b4c1d", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9171,14 +10422,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 3, "installments_payable": 0 }, - "revision": "7f5d83f27b1a4bd7abf449e9", + "revision": "1adf2c0ef709429f9ca0d5bc", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9186,10 +10437,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554040222", - "revision": "8c18f03c6d3d4449a3b23c0b", + "revision": "1c297cd5c2474a9fb9221973", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9204,9 +10455,18 @@ "total_amount": 70.66666666666667, "id": "1694554040222", "history_id": "1694554040222", - "date_created": "2023-09-12T21:27:20.222Z", - "date_last_updated": "2023-09-12T21:27:20.222Z", - "date_of_expiration": "2023-09-12T21:27:20.222Z", + "date_created": { + "type": 6, + "value": 1694554040222 + }, + "date_last_updated": { + "type": 6, + "value": 1694554040222 + }, + "date_of_expiration": { + "type": 6, + "value": 1694554040222 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -9214,10 +10474,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "04bfe9a1de00480ca1cb00b4", + "revision": "d183706dbe6a4b6eb95bedec", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9225,10 +10485,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 3 no valor de 70,67 BRL referente ao contrato 1683667472591", - "revision": "eedf6d54e7bd42d880138857", + "revision": "baaecdc852164da9bd3a0ddd", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9244,14 +10504,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 6, "installments_payable": 0 }, - "revision": "98abc86274c540a39737773d", + "revision": "38fce21d934f44c3b2361057", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9259,10 +10519,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554084107", - "revision": "ec0635e79c9948668eea05a0", + "revision": "66ac3bb42061483190fac091", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9277,9 +10537,18 @@ "total_amount": 37.333333333333336, "id": "1694554084107", "history_id": "1694554084107", - "date_created": "2023-09-12T21:28:04.107Z", - "date_last_updated": "2023-09-12T21:28:04.107Z", - "date_of_expiration": "2023-09-12T21:28:04.107Z", + "date_created": { + "type": 6, + "value": 1694554084107 + }, + "date_last_updated": { + "type": 6, + "value": 1694554084107 + }, + "date_of_expiration": { + "type": 6, + "value": 1694554084107 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -9287,10 +10556,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "838b2fc31cf34815ad24ce43", + "revision": "9f6f88f92cc1432ca7c24739", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9298,10 +10567,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 6 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "d0f679be0b5740869f5e11aa", + "revision": "d1fc33973b814f4997a9ef6d", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820492, + "modified": 1701465820492 } }, { @@ -9317,12 +10586,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "eb690540420848b7a3e27a08", + "revision": "fa7e7894a99f4a3b97875fa6", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9330,10 +10599,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696114300558", - "revision": "38fcc5bbeaef465985054879", + "revision": "feba84e822d94103a89c78bb", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9349,9 +10618,18 @@ "total_amount": 100000, "id": "1696114300558", "history_id": "1696114300558", - "date_created": "2023-09-30T22:51:40.558Z", - "date_last_updated": "2023-09-30T22:51:40.558Z", - "date_of_expiration": "2023-09-30T22:51:40.558Z", + "date_created": { + "type": 6, + "value": 1696114300558 + }, + "date_last_updated": { + "type": 6, + "value": 1696114300558 + }, + "date_of_expiration": { + "type": 6, + "value": 1696114300558 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9360,10 +10638,10 @@ "description": "Ganho de 100.000,00 IVIP pelo VOUCHER", "status_detail": "accredited" }, - "revision": "9a37b17f1a04461a82389ae1", + "revision": "ae5de2d6916c4e53ad061708", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9379,12 +10657,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "53356225b90d45249420f5a6", + "revision": "7b9aa4e01ac649ccadad1355", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9392,10 +10670,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696118036096", - "revision": "2e19510e25e341c78964e9f2", + "revision": "06f12f5becd0499981cb19f1", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9411,9 +10689,18 @@ "total_amount": 100000, "id": "1696118036096", "history_id": "1696118036096", - "date_created": "2023-09-30T23:53:56.096Z", - "date_last_updated": "2023-09-30T23:53:56.096Z", - "date_of_expiration": "2023-09-30T23:53:56.096Z", + "date_created": { + "type": 6, + "value": 1696118036096 + }, + "date_last_updated": { + "type": 6, + "value": 1696118036096 + }, + "date_of_expiration": { + "type": 6, + "value": 1696118036096 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9421,10 +10708,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "6623ebda0ca44ffb8c93e5c0", + "revision": "102516b92f69455a96e6ae87", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9432,10 +10719,10 @@ "content": { "type": "STRING", "value": "Ganho de 100.000,00 IVIP pelo VOUCHER com o número 1037", - "revision": "ed95434fc30c48c08279af4f", + "revision": "de7663111a3e476eb2b28d39", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9451,12 +10738,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "13da6bc781054e37a3dcd405", + "revision": "b020f0f6409041f2ba16dc30", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9464,10 +10751,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696118157622", - "revision": "e8c3d8e50e96485eb0a42af4", + "revision": "76f7c88b5fa84b8da31ad150", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9483,9 +10770,18 @@ "total_amount": 50000, "id": "1696118157622", "history_id": "1696118157622", - "date_created": "2023-09-30T23:55:57.622Z", - "date_last_updated": "2023-09-30T23:55:57.622Z", - "date_of_expiration": "2023-09-30T23:55:57.622Z", + "date_created": { + "type": 6, + "value": 1696118157622 + }, + "date_last_updated": { + "type": 6, + "value": 1696118157622 + }, + "date_of_expiration": { + "type": 6, + "value": 1696118157622 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9493,10 +10789,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "b063617d195a4730a586c4fe", + "revision": "901cde7c814942b6ab650db7", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9504,10 +10800,10 @@ "content": { "type": "STRING", "value": "Ganho de 50.000,00 IVIP pelo VOUCHER com o número 0023", - "revision": "2ed51d0fd09c40e79e495019", + "revision": "574e39cdc1ed48459460f499", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9523,12 +10819,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "6df0043c2d1d4d6ca6d688b2", + "revision": "4fc8e905d60b432a828e42a5", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9536,10 +10832,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696360843684", - "revision": "c190332a4f1a4561984d7627", + "revision": "110587f4210542979f661679", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9555,9 +10851,18 @@ "total_amount": 1020, "id": "1696360843684", "history_id": "1696360843684", - "date_created": "2023-10-03T19:20:43.684Z", - "date_last_updated": "2023-10-03T19:20:43.684Z", - "date_of_expiration": "2023-10-03T19:20:43.684Z", + "date_created": { + "type": 6, + "value": 1696360843684 + }, + "date_last_updated": { + "type": 6, + "value": 1696360843684 + }, + "date_of_expiration": { + "type": 6, + "value": 1696360843684 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9565,10 +10870,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "1f72b8fd0c874936b3dd05ac", + "revision": "59a52d73f08d4f57951a0cbe", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9576,10 +10881,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%) - Y12XDT27", - "revision": "22d9de47a4d340d5b9f2af40", + "revision": "3e8ff779e5c043c9a80ac52f", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9595,12 +10900,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "f2c94418556f48ddbc0ec5f6", + "revision": "95c363a02cbe4ba0b6dae293", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9608,10 +10913,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696362317186", - "revision": "3e778139371c464b959b0e33", + "revision": "12f04317bada4951a2e62145", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9627,9 +10932,18 @@ "total_amount": 1020, "id": "1696362317186", "history_id": "1696362317186", - "date_created": "2023-10-03T19:45:17.186Z", - "date_last_updated": "2023-10-03T19:45:17.186Z", - "date_of_expiration": "2023-10-03T19:45:17.186Z", + "date_created": { + "type": 6, + "value": 1696362317186 + }, + "date_last_updated": { + "type": 6, + "value": 1696362317186 + }, + "date_of_expiration": { + "type": 6, + "value": 1696362317186 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -9637,10 +10951,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "3520f09dd4c14fe9812170d7", + "revision": "2a97e6daec00499eac90f573", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9648,10 +10962,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%) - Y12XDT27", - "revision": "309c9050578e4be7a866ae13", + "revision": "7457f4b812ee4e4f9f972d55", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9659,10 +10973,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a9be43b67e0f4070b2c3bf5e", + "revision": "a1d717634d484113babc4085", "revision_nr": 1, - "created": 1701463509520, - "modified": 1701463509520 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9674,10 +10988,10 @@ "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "a27aaba7458b4069b0184121", + "revision": "d2f0897070cc46a4b2156719", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9691,15 +11005,18 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": "2023-03-18T23:10:25.084Z", + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid" }, - "revision": "19700cb408cb494297ae332d", + "revision": "44376cc77b6e43c0a51929a2", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9707,10 +11024,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "3502db40c77e4b38b602f466", + "revision": "1a4e4f8d5d604b92bd69e38c", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9718,10 +11035,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "4e30ae0fe5fd4b82a47bc596", + "revision": "8d5bc0c92ef54600bb4247e0", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9733,10 +11050,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, - "revision": "e8f1a66d82ec4334b17e19e8", + "revision": "664dfc9dfa6a43429f7f1de4", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9750,15 +11067,18 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": "2023-03-18T23:12:37.805Z", + "date_created": { + "type": 6, + "value": 1679181157805 + }, "history_id": 1679181157805, "currency_id": "BRL", "status": "paid" }, - "revision": "7d65d732200343059bc9a89b", + "revision": "535e841ed0d94a47a4ddb198", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9766,10 +11086,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "fc72c1844f0648439331d0f9", + "revision": "cab5951320b94473bd202b62", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9777,10 +11097,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "2bc8d962191149d9a996566d", + "revision": "2d7aa968a8344c4eb602273c", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9792,10 +11112,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 9.200000000000001 }, - "revision": "9ca50b803dc749dcb8635225", + "revision": "232c7883355d45548690a010", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9809,15 +11129,18 @@ "total_amount": 239.2, "installments": 2, "installment_amount": 119.6, - "date_created": "2023-03-18T23:52:14.080Z", + "date_created": { + "type": 6, + "value": 1679183534080 + }, "history_id": 1679183534080, "currency_id": "BRL", "status": "paid" }, - "revision": "b8978c4656a849a5a55560ad", + "revision": "8a0db30ccd7a4b69b4408ae0", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9825,10 +11148,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", - "revision": "612332a2c28e44dd8ee119de", + "revision": "e29fa8d6c4e1482090712832", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9836,10 +11159,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "de371accb1964fbea235ba15", + "revision": "f97ed7558cda4e909696b7db", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9851,10 +11174,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 8 }, - "revision": "4e8ab081c3cb4728929502c4", + "revision": "ba56370c15de4de3abc5def0", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9868,15 +11191,18 @@ "total_amount": 208, "installments": 2, "installment_amount": 104, - "date_created": "2023-03-19T00:00:46.128Z", + "date_created": { + "type": 6, + "value": 1679184046128 + }, "history_id": 1679184046128, "currency_id": "BRL", "status": "paid" }, - "revision": "be22f7412b694387ad0bca21", + "revision": "0150f351516b46c982480c6e", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9884,10 +11210,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", - "revision": "a31d26a8edca4f47a31bce3b", + "revision": "1b0a18dcfd13446bbba81b83", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9895,10 +11221,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "38658dd2ad7846baa49f8672", + "revision": "4e38acf9c80f4bc9ac1386ba", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9910,10 +11236,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 8.4 }, - "revision": "b5164ff66e7b44638831ed55", + "revision": "ca190534ba5643dea28467fe", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9927,15 +11253,18 @@ "total_amount": 218.4, "installments": 2, "installment_amount": 109.2, - "date_created": "2023-03-19T00:13:52.424Z", + "date_created": { + "type": 6, + "value": 1679184832424 + }, "history_id": 1679184832424, "currency_id": "BRL", "status": "paid" }, - "revision": "e18ad65a49dd40ee834fa435", + "revision": "53f77242fcaa4ce98ea894a3", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9943,10 +11272,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", - "revision": "2bfd61cf0a3044938d45fb39", + "revision": "24d2505116f34197a6569760", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9954,10 +11283,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "09947e36eb464f1889fcea04", + "revision": "dfe3faaa17f543f4ba72bca1", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9965,10 +11294,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d647df3603684ab390663d2d", + "revision": "bf8b89fd54f341ff8f8138aa", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9980,10 +11309,10 @@ "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "391bb97ce8464fb0a7107fa0", + "revision": "935fe675ce6b4cae8b152f18", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -9997,15 +11326,18 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": "2023-03-18T23:10:25.084Z", + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid" }, - "revision": "6068a5e61fef4238a97448bf", + "revision": "98d82865d8b440a09ab4204a", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10013,10 +11345,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "706d9fb7ea8a4e768499db39", + "revision": "ce7f15006e884f6cacd8eba1", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10024,10 +11356,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "3b5f508b76e743b2970a3a97", + "revision": "1b82cd8cddf44db298851552", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10039,10 +11371,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, - "revision": "4d422f9e707d488b9569ad97", + "revision": "07c08cc39c8f4db5bc646c8a", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10056,15 +11388,18 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": "2023-03-18T23:12:37.805Z", + "date_created": { + "type": 6, + "value": 1679181157805 + }, "history_id": 1679181157805, "currency_id": "BRL", "status": "paid" }, - "revision": "1ff9443f3e694b5cb3be4cb3", + "revision": "5e835260936c4e3d8e82f156", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10072,10 +11407,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "0a03cf49c97b4a5bbbc16b0f", + "revision": "04aa9b832e5c413cb4c5fc8d", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10083,10 +11418,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "cec211af47af4095bc53a533", + "revision": "3f9e55c075e940e38d129314", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10098,10 +11433,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 9.200000000000001 }, - "revision": "57d79b3218ba4597b2df362d", + "revision": "b38130c3fded4e0ea67dfa4a", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10115,15 +11450,18 @@ "total_amount": 239.2, "installments": 2, "installment_amount": 119.6, - "date_created": "2023-03-18T23:52:14.080Z", + "date_created": { + "type": 6, + "value": 1679183534080 + }, "history_id": 1679183534080, "currency_id": "BRL", "status": "paid" }, - "revision": "c731b35e2ed445b989133375", + "revision": "169967c0ea3847d0be97858a", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10131,10 +11469,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", - "revision": "120b3bef68cb4f22947be549", + "revision": "86752665dd174ce3a1905d9b", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10142,10 +11480,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "44fc7e0ae07f45b3a4589d0c", + "revision": "84dda3d6d6af4a9ea962d9bb", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10157,10 +11495,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 8 }, - "revision": "b94274f3241743079c7b97ee", + "revision": "2b48c51b8d3e459696c58849", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10174,15 +11512,18 @@ "total_amount": 208, "installments": 2, "installment_amount": 104, - "date_created": "2023-03-19T00:00:46.128Z", + "date_created": { + "type": 6, + "value": 1679184046128 + }, "history_id": 1679184046128, "currency_id": "BRL", "status": "paid" }, - "revision": "fc2c63c8c75e4ce3b09efe80", + "revision": "ee27a9a8cb9c4ac690397937", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10190,10 +11531,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", - "revision": "6c4dd70d8359487bb3b6e96b", + "revision": "653911d65a59482eb0fb816c", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10201,10 +11542,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "8e9f21acb4d44f2494b26194", + "revision": "e3da5387c964449a8ca07d08", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10216,10 +11557,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 8.4 }, - "revision": "9783c23c789641679a04ad19", + "revision": "732b6eef6b924d45ab91827f", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10233,15 +11574,18 @@ "total_amount": 218.4, "installments": 2, "installment_amount": 109.2, - "date_created": "2023-03-19T00:13:52.424Z", + "date_created": { + "type": 6, + "value": 1679184832424 + }, "history_id": 1679184832424, "currency_id": "BRL", "status": "paid" }, - "revision": "439dcbb9a1834aef88d8cc01", + "revision": "a2a305da626a4676b29aecd1", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10249,10 +11593,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", - "revision": "421ee93277de47c1aceb3cfc", + "revision": "50b22876b3e24403af4e344e", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10260,10 +11604,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "725ae3559e2f4b55bf935ea9", + "revision": "efde902e302c4f43a489f702", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10271,10 +11615,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d72de019840741b2baf982b9", + "revision": "1801f62bb04346a8a4bdf51a", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10286,10 +11630,10 @@ "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "50eec9f228004efc96fed53e", + "revision": "ec2c714639e141eba436f63f", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10303,15 +11647,18 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": "2023-03-18T23:10:25.084Z", + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid" }, - "revision": "2af57b71303c43bfbd8d5e0b", + "revision": "89fa8b8c5242441f96894693", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10319,10 +11666,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "348992fea34644fa9a575a97", + "revision": "903d7431476c4ac2905992b9", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10330,10 +11677,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "35b461075c6f45e0b818c916", + "revision": "468873fbde4c4f7a80efdbc6", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10345,10 +11692,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, - "revision": "ea2a7863224b468b846eb84f", + "revision": "dbe344a78a664e56b4bdb9b7", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10362,15 +11709,18 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": "2023-03-18T23:12:37.805Z", + "date_created": { + "type": 6, + "value": 1679181157805 + }, "history_id": 1679181157805, "currency_id": "BRL", "status": "paid" }, - "revision": "b73bfc718bea4213a63222f9", + "revision": "55fad4567eee4394813add5a", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10378,10 +11728,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "67b51eeb23124925a7949881", + "revision": "d74c59b224e74f8a9c50e61e", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10389,10 +11739,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "4fe9b61ef59e472d8befa253", + "revision": "a43ad3154d504c38bef6445c", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10404,10 +11754,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 4 }, - "revision": "972fdb74500a4f7cb8da44e8", + "revision": "303d84f0e4a942d5bcfb7b36", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10421,15 +11771,18 @@ "total_amount": 204, "installments": 1, "installment_amount": 204, - "date_created": "2023-05-09T20:49:15.468Z", + "date_created": { + "type": 6, + "value": 1683665355468 + }, "history_id": 1683665355468, "currency_id": "BRL", "status": "paid" }, - "revision": "9d9f24c376b24f0ab18519dd", + "revision": "a1dbc5c850154f61b49b81ee", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10437,10 +11790,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 204,00", - "revision": "c7e79ce826884500bef1104c", + "revision": "220c806cfed4478781330fa3", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820493, + "modified": 1701465820493 } }, { @@ -10448,10 +11801,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "2ca024068b50457d8170856c", + "revision": "2cf76ea7894d4db095a12ee4", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10463,10 +11816,10 @@ "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, - "revision": "aec0ac4054ea47fa8b9ccc96", + "revision": "f6527c62ba214051803aae53", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10480,15 +11833,18 @@ "total_amount": 212, "installments": 3, "installment_amount": 70.66666666666667, - "date_created": "2023-05-09T21:24:32.591Z", + "date_created": { + "type": 6, + "value": 1683667472591 + }, "history_id": 1683667472591, "currency_id": "BRL", "status": "paid" }, - "revision": "9b3b558dceef4c4fb3bed4cc", + "revision": "8baf8fad5ccd4f1e83a10b5b", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10496,10 +11852,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", - "revision": "6e09d78f34a5455bbf5b4bb1", + "revision": "868a892091854204b5dd9577", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10507,10 +11863,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "142fd736cc9b49c29066c591", + "revision": "241fba238216450d82c38f86", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10518,10 +11874,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "489679b40b0844ab85c802fb", + "revision": "f22a03e73ec947228063312e", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10533,10 +11889,10 @@ "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "16e92851ee7d4de49aadd9dd", + "revision": "66bdb7c5645443aebe27f39f", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10550,15 +11906,18 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": "2023-03-18T23:10:25.084Z", + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid" }, - "revision": "6006ed223e7c47d4a06ad558", + "revision": "11d63b7aabd04a1593e611f0", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10566,10 +11925,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "2d87e05c95dd414b8ad39837", + "revision": "a22951b212eb4031bd8372e4", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10577,10 +11936,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "de59d60fb49146fcbf9bcc7c", + "revision": "56aa5f7fc73e452c881092c1", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10592,10 +11951,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, - "revision": "5ee47ce483354ac9822f4192", + "revision": "4d4adf9bf03f4427a7c54605", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10609,15 +11968,18 @@ "total_amount": 459, "installments": 4, "installment_amount": 114.75, - "date_created": "2023-03-18T23:12:37.805Z", + "date_created": { + "type": 6, + "value": 1679181157805 + }, "history_id": 1679181157805, "currency_id": "BRL", "status": "paid" }, - "revision": "2de14e238b1544a0b77432a1", + "revision": "10f58aa0b55146db8dca2812", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10625,10 +11987,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "8f4105fd03104af88eab7132", + "revision": "95d26979021e41ec9f7526e4", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10636,10 +11998,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "79bf40bcb0fa4eeca13174a5", + "revision": "4c462d600ee14b82b2077950", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10651,10 +12013,10 @@ "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, - "revision": "f3fbcaac6a2541b696202b39", + "revision": "56598c3f3c1b4496820a1091", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10668,15 +12030,18 @@ "total_amount": 212, "installments": 3, "installment_amount": 70.66666666666667, - "date_created": "2023-05-09T21:24:32.591Z", + "date_created": { + "type": 6, + "value": 1683667472591 + }, "history_id": 1683667472591, "currency_id": "BRL", "status": "paid" }, - "revision": "974962330eaf4231844d0b26", + "revision": "e822fdc2e57544288a59e17d", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10684,10 +12049,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", - "revision": "c02773276e5a488eae471348", + "revision": "97af53523a3e4e0bbfdf128a", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10695,10 +12060,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "22eb6397d9274754a3fab023", + "revision": "4e406de4b4874a73b3906e3f", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10706,10 +12071,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "418e1861838546cc872e998e", + "revision": "4bf26d1738054c888983c7f8", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10721,10 +12086,10 @@ "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "4e377a6fef6e480bb19b1908", + "revision": "37d2cd2c1a0442cbae29123c", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10738,16 +12103,22 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": "2023-03-18T23:10:25.084Z", + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-12T21:27:20.136Z" + "date_last_updated": { + "type": 6, + "value": 1694554040136 + } }, - "revision": "96322b6ab2914418b1f9a1b7", + "revision": "06939d980b8940e3a23ff83e", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10755,10 +12126,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "0dcb26b36f5e43c0aad28134", + "revision": "3d86846e0f2b449091425adf", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10766,10 +12137,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "80066928d64a46cdbc7273ed", + "revision": "bb725d1b25b443b5925c02e9", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10781,10 +12152,10 @@ "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, - "revision": "d1a45c60c21d4346970c25c9", + "revision": "0d39e1e9f30b49a287799c93", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10798,16 +12169,22 @@ "total_amount": 212, "installments": 3, "installment_amount": 70.66666666666667, - "date_created": "2023-05-09T21:24:32.591Z", + "date_created": { + "type": 6, + "value": 1683667472591 + }, "history_id": 1683667472591, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-12T21:27:20.249Z" + "date_last_updated": { + "type": 6, + "value": 1694554040249 + } }, - "revision": "11055df4e7e5479fa4f2e95f", + "revision": "aabae027721945b390e91ff9", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10815,10 +12192,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", - "revision": "5e749776c7784812b202900a", + "revision": "a01e90c5d7214638a6d2ac01", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10826,10 +12203,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "9b2ef3130cd44872aa2611a3", + "revision": "69adf80a6f794fa281b254b7", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10837,10 +12214,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "44a342596119446cac26e9d9", + "revision": "578fba44f5f244508023db61", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10852,10 +12229,10 @@ "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "5efc81a1bbb944f9b28030f1", + "revision": "976e726831774bbe8f88fd07", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10869,16 +12246,22 @@ "total_amount": 224, "installments": 6, "installment_amount": 37.333333333333336, - "date_created": "2023-03-18T23:10:25.084Z", + "date_created": { + "type": 6, + "value": 1679181025084 + }, "history_id": 1679181025084, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-12T21:28:04.147Z" + "date_last_updated": { + "type": 6, + "value": 1694554084147 + } }, - "revision": "01e3b3066aa54f2fb0152f38", + "revision": "af4ba2dbbf9d4807866bf6e5", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10886,10 +12269,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "fbb2a1a41a35482ab5bc6f3a", + "revision": "7bcaff9b30af41c99a1418d3", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10897,10 +12280,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "ce41628dd3ba4d8b95cf2b97", + "revision": "9b81d0ba5d204700b0aff09f", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10908,10 +12291,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "837a931510fd4eef8e44acb9", + "revision": "8ef4740b440e4ebebf4bf706", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10919,10 +12302,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d900c8fba8bf4ece9d0a2927", + "revision": "2cb4b847c2a44a97a16a304c", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10932,13 +12315,19 @@ "value": { "approvedLimit": 1500, "limitUsed": 312.50000000000006, - "analysisRequested": "2023-03-17T05:24:01.192Z", - "lastReview": "2023-03-17T05:27:11.310Z" + "analysisRequested": { + "type": 6, + "value": 1679030641192 + }, + "lastReview": { + "type": 6, + "value": 1679030831310 + } }, - "revision": "34f354b3c7d14fdc880cc49c", + "revision": "ac0c018fef3541adbc710e2c", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10950,12 +12339,15 @@ "dateValidity": 1679011956662, "totalValue": 12518.651018650135, "currencyType": "USD", - "balancesModificacao": "2023-10-13T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697166000000 + } }, - "revision": "7d9a862d799e4c8180cddce9", + "revision": "f3eaa3876e084083861f1b0b", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10963,10 +12355,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "384313b3f1034727bd41b417", + "revision": "22ac86469f80470baf271081", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10974,10 +12366,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "febf5437e43b4c81a202cef4", + "revision": "2717045147854363bcec085f", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10985,10 +12377,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f110057aed8e424687efc0c6", + "revision": "48fe66c9a0674bc7be522b5e", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -10999,10 +12391,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "9d7b70d727c04fee95477350", + "revision": "6922126bb2ee44bb8aad91cc", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11013,12 +12405,15 @@ "dataModificacao": 1695928321328, "dateValidity": 1695928321874, "currencyType": "USD", - "balancesModificacao": "2023-10-11T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696993200000 + } }, - "revision": "9eb615632d654d4e8ace450f", + "revision": "b8cd31e9d299403385d52a08", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11030,10 +12425,10 @@ "symbol": "IVIP", "value": -452.027 }, - "revision": "b9455d2d426e432886106070", + "revision": "6b46afbf14d44107af2f4b68", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11041,10 +12436,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "bfda6f196cb149be8607a129", + "revision": "c17db717e6a44a10b2fa9dc1", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11052,12 +12447,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "698bafc846fe45809346876c", + "revision": "134d9ba5c3fa4da3ae254487", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11072,22 +12467,37 @@ "total_amount": 500, "history_id": 1684093592429, "id": 1684093592429, - "date_created": "2023-05-14T19:46:32.429Z", - "date_last_updated": "2023-05-14T20:29:22.499Z", - "date_of_expiration": "2023-06-13T19:46:32.429Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-14T20:29:22.499Z", - "money_release_date": "2023-05-14T20:29:22.499Z", + "date_created": { + "type": 6, + "value": 1684093592429 + }, + "date_last_updated": { + "type": 6, + "value": 1684096162499 + }, + "date_of_expiration": { + "type": 6, + "value": 1686685592429 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684096162499 + }, + "money_release_date": { + "type": 6, + "value": 1684096162499 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "79677e41734e444a87b4b904", + "revision": "91be748cd5314f208494680e", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11095,10 +12505,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "64a1ae61390f49958368435a", + "revision": "fb7a7d316c4c4c149ede4f22", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11110,10 +12520,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 10.02 }, - "revision": "b7539b70c16f4e349645be09", + "revision": "8d9158e5ba024ece8172e463", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11121,10 +12531,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "836fc011d4674cec87e7c949", + "revision": "8f6af52b6e424c819ea7fdd9", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11132,10 +12542,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "13dd85834b304a19975dec3b", + "revision": "6424ed4416ff43259a8612ee", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11150,19 +12560,28 @@ "total_amount": 511.02, "history_id": 1684399661939, "id": 1684399661939, - "date_created": "2023-05-18T08:47:41.939Z", - "date_last_updated": "2023-05-18T08:47:41.939Z", - "date_of_expiration": "2023-06-17T08:47:41.939Z", + "date_created": { + "type": 6, + "value": 1684399661939 + }, + "date_last_updated": { + "type": 6, + "value": 1684399661939 + }, + "date_of_expiration": { + "type": 6, + "value": 1686991661939 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "718ff4addbec4ac68d2db5ef", + "revision": "a5b1ec05e9964fb389b52f8c", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11170,10 +12589,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 501,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 511,02", - "revision": "f7cdbcc613ce449b8737ac75", + "revision": "65d9abe0b8af41248b32a66b", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11185,10 +12604,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 9.98 }, - "revision": "168b911dfa3343888be620f3", + "revision": "12210f6afb7d43d2b368aca9", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11196,10 +12615,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f09173f585db464bbd1d348c", + "revision": "170f0f3534f1435fbc274905", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11207,10 +12626,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "beb9cf4c46bd4d9e9cbb19ed", + "revision": "f0c1e6a87981400f97b86bb7", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11225,19 +12644,28 @@ "total_amount": 508.98, "history_id": 1684612673872, "id": 1684612673872, - "date_created": "2023-05-20T19:57:53.872Z", - "date_last_updated": "2023-05-20T19:57:53.872Z", - "date_of_expiration": "2023-06-19T19:57:53.872Z", + "date_created": { + "type": 6, + "value": 1684612673872 + }, + "date_last_updated": { + "type": 6, + "value": 1684612673872 + }, + "date_of_expiration": { + "type": 6, + "value": 1687204673872 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "164d1be5d3374e0b84d40df9", + "revision": "8ba2d798255d4ec380e4b163", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11245,10 +12673,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 499,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 508,98", - "revision": "c1326a28ddd44af6ac3e4b5c", + "revision": "82c5258821804b4e9ff3b0ec", "revision_nr": 1, - "created": 1701463509521, - "modified": 1701463509521 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11266,12 +12694,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "e53b7982edb64b998fc03a70", + "revision": "2ed9f323f54a4f67b7d642be", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11287,9 +12715,18 @@ "original_amount": 7306097, "total_amount": 7306097, "id": 1684624250482, - "date_created": "2023-05-20T23:10:50.482Z", - "date_last_updated": "2023-05-20T23:10:50.482Z", - "date_of_expiration": "2023-05-20T23:10:50.482Z", + "date_created": { + "type": 6, + "value": 1684624250482 + }, + "date_last_updated": { + "type": 6, + "value": 1684624250482 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624250482 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -11298,10 +12735,10 @@ "history_id": 1684624250482, "description": "Compra de 7.306.097,00 IVIP por 1.500,00 BRL" }, - "revision": "e9ff9cac8b464c93b7de8e36", + "revision": "e639f23f5a664ccc91615ffa", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11309,12 +12746,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "633c5de53671485ea1a82e96", + "revision": "6b0ff6563ac743a08a7ac91f", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11329,18 +12766,27 @@ "total_amount": 562, "history_id": 1684792076230, "id": 1684792076230, - "date_created": "2023-05-22T21:47:56.230Z", - "date_last_updated": "2023-05-22T21:47:56.230Z", - "date_of_expiration": "2023-06-21T21:47:56.230Z", + "date_created": { + "type": 6, + "value": 1684792076230 + }, + "date_last_updated": { + "type": 6, + "value": 1684792076230 + }, + "date_of_expiration": { + "type": 6, + "value": 1687384076230 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "6be4427521cf48f0a521f39a", + "revision": "ca1271def49a4be098be3733", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11348,10 +12794,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "50902c5b254f4f10a938d17a", + "revision": "b78689d5297e47a484ad22e1", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11359,12 +12805,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "1c1e5736fe894c619b9106a5", + "revision": "5cf8f4052e93413f9eaba7ed", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11379,18 +12825,27 @@ "total_amount": 562, "history_id": 1684942997083, "id": 1684942997083, - "date_created": "2023-05-24T15:43:17.083Z", - "date_last_updated": "2023-05-24T15:43:17.083Z", - "date_of_expiration": "2023-06-23T15:43:17.083Z", + "date_created": { + "type": 6, + "value": 1684942997083 + }, + "date_last_updated": { + "type": 6, + "value": 1684942997083 + }, + "date_of_expiration": { + "type": 6, + "value": 1687534997083 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "30cd9cc38c4345c1b675de95", + "revision": "b8cb31338f244feeab06a7aa", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11398,10 +12853,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "e1334e07327947bbabb8b92c", + "revision": "9a397141f7204c4db9aca3f3", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11409,12 +12864,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "f25bd9cca8e24defb29b1226", + "revision": "66b842026c6641d6981e575b", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11429,22 +12884,37 @@ "total_amount": 562, "history_id": 1684973822893, "id": 1684973822893, - "date_created": "2023-05-25T00:17:02.893Z", - "date_last_updated": "2023-05-25T11:43:28.165Z", - "date_of_expiration": "2023-06-24T00:17:02.893Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-25T11:43:28.165Z", - "money_release_date": "2023-05-25T11:43:28.165Z", + "date_created": { + "type": 6, + "value": 1684973822893 + }, + "date_last_updated": { + "type": 6, + "value": 1685015008165 + }, + "date_of_expiration": { + "type": 6, + "value": 1687565822893 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685015008165 + }, + "money_release_date": { + "type": 6, + "value": 1685015008165 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "ea9cfa4d1e6d48e984602ede", + "revision": "05951b16a30844489c0d47f5", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11452,10 +12922,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "fd7e3982ccb64773ae268b86", + "revision": "88f8b0749f0a45dfaa4b5ed2", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11463,12 +12933,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "263b8738d2624c01b58ad23a", + "revision": "fb2d10d20176425b96a64b23", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11483,22 +12953,37 @@ "total_amount": 517, "history_id": 1685116940519, "id": 1685116940519, - "date_created": "2023-05-26T16:02:20.519Z", - "date_last_updated": "2023-05-29T14:07:27.276Z", - "date_of_expiration": "2023-06-25T16:02:20.519Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-29T14:07:27.276Z", - "money_release_date": "2023-05-29T14:07:27.276Z", + "date_created": { + "type": 6, + "value": 1685116940519 + }, + "date_last_updated": { + "type": 6, + "value": 1685369247276 + }, + "date_of_expiration": { + "type": 6, + "value": 1687708940519 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685369247276 + }, + "money_release_date": { + "type": 6, + "value": 1685369247276 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "8a72723745fa4fd2afcc3651", + "revision": "ba40cffea0ae4c82964d0122", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11506,10 +12991,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 517,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "8a7501db4ec34254bc5aa377", + "revision": "984c1b1177e145db9f2882ec", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11517,12 +13002,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "3319ed374efd468085d71e80", + "revision": "b6b3774db2304289b2e1a153", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11537,22 +13022,37 @@ "total_amount": 329, "history_id": 1685202990180, "id": 1685202990180, - "date_created": "2023-05-27T15:56:30.180Z", - "date_last_updated": "2023-05-29T12:48:37.239Z", - "date_of_expiration": "2023-06-26T15:56:30.180Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-29T12:48:37.239Z", - "money_release_date": "2023-05-29T12:48:37.239Z", + "date_created": { + "type": 6, + "value": 1685202990180 + }, + "date_last_updated": { + "type": 6, + "value": 1685364517239 + }, + "date_of_expiration": { + "type": 6, + "value": 1687794990180 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685364517239 + }, + "money_release_date": { + "type": 6, + "value": 1685364517239 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "d567e8786ea8464fb1760a2f", + "revision": "5f0ba64e53924f49a5229f12", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11560,10 +13060,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 329,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "ce66a8b2877c421ba55bba99", + "revision": "02e87c6bcc87444093090d34", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11581,12 +13081,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "90523eacc16b46b28b57cd25", + "revision": "84cffec0b39343caa3c8aac2", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11602,9 +13102,18 @@ "original_amount": 45000, "total_amount": 45000, "id": 1685384470907, - "date_created": "2023-05-29T18:21:10.907Z", - "date_last_updated": "2023-05-29T18:21:10.907Z", - "date_of_expiration": "2023-05-29T18:21:10.907Z", + "date_created": { + "type": 6, + "value": 1685384470907 + }, + "date_last_updated": { + "type": 6, + "value": 1685384470907 + }, + "date_of_expiration": { + "type": 6, + "value": 1685384470907 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -11612,10 +13121,10 @@ "currency_id": "IVIPAY", "history_id": 1685384470907 }, - "revision": "ce603bb4130f4828b6c7fc4c", + "revision": "a0c17bbac7ce41b08bf6e158", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11623,10 +13132,10 @@ "content": { "type": "STRING", "value": "Compra de 45.000,00 IVIPAY por 4.500,00 IVIP estabilizando US$ 0,42", - "revision": "7e0fa1b1b11d44ee8014dacd", + "revision": "4584fc3e835a4899b2e5da98", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11634,12 +13143,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "173f2d612b79404ba88f88af", + "revision": "e4c7c573217547e7bf3fc9c4", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -11654,22 +13163,37 @@ "total_amount": 96, "history_id": 1685389853107, "id": 1685389853107, - "date_created": "2023-05-29T19:50:53.107Z", - "date_last_updated": "2023-06-22T12:16:16.583Z", - "date_of_expiration": "2023-06-28T19:50:53.107Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-06-22T12:16:16.583Z", - "money_release_date": "2023-06-22T12:16:16.583Z", + "date_created": { + "type": 6, + "value": 1685389853107 + }, + "date_last_updated": { + "type": 6, + "value": 1687436176583 + }, + "date_of_expiration": { + "type": 6, + "value": 1687981853107 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1687436176583 + }, + "money_release_date": { + "type": 6, + "value": 1687436176583 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "bb442f8c6e1a4ddda8912b02", + "revision": "801b01407a41452ca7911b8e", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -11677,10 +13201,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 96,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "b530f2ad4e1e474cad984948", + "revision": "0ec970e6cd9c44e6bb18f5cb", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820494, + "modified": 1701465820494 } }, { @@ -11698,12 +13222,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "af23b1b27b5341458970a414", + "revision": "b23cafa53ffa48858e70a869", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -11719,9 +13243,18 @@ "original_amount": 3000000, "total_amount": 3000000, "id": 1685392262218, - "date_created": "2023-05-29T20:31:02.218Z", - "date_last_updated": "2023-05-29T20:31:02.218Z", - "date_of_expiration": "2023-05-29T20:31:02.218Z", + "date_created": { + "type": 6, + "value": 1685392262218 + }, + "date_last_updated": { + "type": 6, + "value": 1685392262218 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392262218 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -11729,10 +13262,10 @@ "currency_id": "IVIPAY", "history_id": 1685392262218 }, - "revision": "e1d2da4761af4611aec2ad68", + "revision": "1f54a93c0203487f9a90d05d", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -11740,10 +13273,10 @@ "content": { "type": "STRING", "value": "Compra de 3.000.000,00 IVIPAY por 300.000,00 IVIP estabilizando US$ 26,95", - "revision": "27194db89bda43ccbe612c73", + "revision": "ae271b3d208746b5b301ba24", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -11761,12 +13294,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "3f7d8224453042b6922b8efe", + "revision": "30730eeffdd34209a46485d7", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -11782,9 +13315,18 @@ "original_amount": 30000000, "total_amount": 30000000, "id": 1685392563175, - "date_created": "2023-05-29T20:36:03.175Z", - "date_last_updated": "2023-05-29T20:36:03.175Z", - "date_of_expiration": "2023-05-29T20:36:03.175Z", + "date_created": { + "type": 6, + "value": 1685392563175 + }, + "date_last_updated": { + "type": 6, + "value": 1685392563175 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392563175 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -11792,10 +13334,10 @@ "currency_id": "IVIPAY", "history_id": 1685392563175 }, - "revision": "4cd295dd707045d8bf7e6669", + "revision": "30f9fa79b64e4306891277dd", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -11803,10 +13345,10 @@ "content": { "type": "STRING", "value": "Compra de 30.000.000,00 IVIPAY por 3.000.000,00 IVIP estabilizando US$ 269,53", - "revision": "c71a11965322447086b7521e", + "revision": "27d85367b6d2494d9fc902cb", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -11824,12 +13366,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "77ddf62b27804f6db263063c", + "revision": "42b4ff0fb6f74a72bbc550c4", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -11845,9 +13387,18 @@ "original_amount": 3300000, "total_amount": 3300000, "id": 1685394042885, - "date_created": "2023-05-29T21:00:42.885Z", - "date_last_updated": "2023-05-29T21:00:42.885Z", - "date_of_expiration": "2023-05-29T21:00:42.885Z", + "date_created": { + "type": 6, + "value": 1685394042885 + }, + "date_last_updated": { + "type": 6, + "value": 1685394042885 + }, + "date_of_expiration": { + "type": 6, + "value": 1685394042885 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -11855,10 +13406,10 @@ "currency_id": "IVIP", "history_id": 1685394042885 }, - "revision": "cb6d82292074458783b4d374", + "revision": "ed22c0928737400e933a44c7", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -11866,10 +13417,10 @@ "content": { "type": "STRING", "value": "Compra de 3.300.000,00 IVIP por 33.000.000,00 IVIPAY", - "revision": "5d08767546944d898845f925", + "revision": "3357e4c3624b47ea94619d35", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -11887,12 +13438,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "8aacc3e8705748dc962ffb97", + "revision": "3b2fcd61b81a4ddda7d00641", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -11908,9 +13459,18 @@ "original_amount": 50000000, "total_amount": 50000000, "id": 1685450530237, - "date_created": "2023-05-30T12:42:10.237Z", - "date_last_updated": "2023-05-30T12:42:10.237Z", - "date_of_expiration": "2023-05-30T12:42:10.237Z", + "date_created": { + "type": 6, + "value": 1685450530237 + }, + "date_last_updated": { + "type": 6, + "value": 1685450530237 + }, + "date_of_expiration": { + "type": 6, + "value": 1685450530237 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -11918,10 +13478,10 @@ "currency_id": "IVIPAY", "history_id": 1685450530237 }, - "revision": "5d340427011848c2b6dae009", + "revision": "10fc46ee6fb24e14b24157c1", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -11929,10 +13489,10 @@ "content": { "type": "STRING", "value": "Compra de 50.000.000,00 IVIPAY por 5.000.000,00 IVIP estabilizando US$ 456,73", - "revision": "b91c4bbfe2f74c3985e971c7", + "revision": "5df9af3974724ab58178ace3", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -11950,12 +13510,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "27c6e80b95a546c287e04074", + "revision": "1c8a9dfb495045b2a8463019", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -11971,9 +13531,18 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1685455769977, - "date_created": "2023-05-30T14:09:29.977Z", - "date_last_updated": "2023-05-30T14:09:29.977Z", - "date_of_expiration": "2023-05-30T14:09:29.977Z", + "date_created": { + "type": 6, + "value": 1685455769977 + }, + "date_last_updated": { + "type": 6, + "value": 1685455769977 + }, + "date_of_expiration": { + "type": 6, + "value": 1685455769977 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -11981,10 +13550,10 @@ "currency_id": "IVIP", "history_id": 1685455769977 }, - "revision": "c5823157115e472fb382f0a3", + "revision": "493e0d0ece974261a45c43da", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -11992,10 +13561,10 @@ "content": { "type": "STRING", "value": "Compra de 5.000.000,00 IVIP por 50.000.000,00 IVIPAY", - "revision": "78933427a2ce40e898b3aaf5", + "revision": "2c2218be175043acaad58f71", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12013,12 +13582,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "49bef71138854de480481ef4", + "revision": "491bd38b0d6c4efd95e78312", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12034,9 +13603,18 @@ "original_amount": 4940350, "total_amount": 4940350, "id": 1685743296302, - "date_created": "2023-06-02T22:01:36.302Z", - "date_last_updated": "2023-06-02T22:01:36.302Z", - "date_of_expiration": "2023-06-02T22:01:36.302Z", + "date_created": { + "type": 6, + "value": 1685743296302 + }, + "date_last_updated": { + "type": 6, + "value": 1685743296302 + }, + "date_of_expiration": { + "type": 6, + "value": 1685743296302 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12045,10 +13623,10 @@ "history_id": 1685743296302, "description": "Compra de 4.940.350,00 IVIP por 1.408,00 BRL" }, - "revision": "247467f800774ccea09e317e", + "revision": "17e241b5b2d64fd3b1ff6121", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12066,12 +13644,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "c145077a140c45a8a1b476c4", + "revision": "4dab2955a5c24637a3b13c8e", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12087,9 +13665,18 @@ "original_amount": 41.900000000000006, "total_amount": 41.900000000000006, "id": 1685744480429, - "date_created": "2023-06-02T22:21:20.429Z", - "date_last_updated": "2023-06-02T22:21:20.429Z", - "date_of_expiration": "2023-06-02T22:21:20.429Z", + "date_created": { + "type": 6, + "value": 1685744480429 + }, + "date_last_updated": { + "type": 6, + "value": 1685744480429 + }, + "date_of_expiration": { + "type": 6, + "value": 1685744480429 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12097,10 +13684,10 @@ "currency_id": "BRL", "history_id": 1685744480429 }, - "revision": "700fa96870d842e892c06537", + "revision": "7da99fc880eb482cba4f054c", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12108,10 +13695,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "8c6c6d7f13ab4fa689bb6805", + "revision": "ae140a6bb71a445ba3688252", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12129,12 +13716,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "4cd9c4976ded4ec5a2f93089", + "revision": "5045e0d8eda648d093ddacb8", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12150,9 +13737,18 @@ "original_amount": 147164, "total_amount": 147164, "id": 1685745152104, - "date_created": "2023-06-02T22:32:32.104Z", - "date_last_updated": "2023-06-02T22:32:32.104Z", - "date_of_expiration": "2023-06-02T22:32:32.104Z", + "date_created": { + "type": 6, + "value": 1685745152104 + }, + "date_last_updated": { + "type": 6, + "value": 1685745152104 + }, + "date_of_expiration": { + "type": 6, + "value": 1685745152104 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12161,10 +13757,10 @@ "history_id": 1685745152104, "description": "Compra de 147.164,00 IVIP por 41,90 BRL" }, - "revision": "fc4dc3b2caec4c5ab6dc9462", + "revision": "f628fdeb3b8f4d4ab402c216", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12172,12 +13768,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "40aed81e73904f489fc3b939", + "revision": "7267402bd90f47688b78688a", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12192,22 +13788,37 @@ "total_amount": 1191, "history_id": 1686664360099, "id": 1686664360099, - "date_created": "2023-06-13T13:52:40.099Z", - "date_last_updated": "2023-06-13T14:00:09.214Z", - "date_of_expiration": "2023-07-13T13:52:40.099Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-06-13T14:00:09.214Z", - "money_release_date": "2023-06-13T14:00:09.214Z", + "date_created": { + "type": 6, + "value": 1686664360099 + }, + "date_last_updated": { + "type": 6, + "value": 1686664809214 + }, + "date_of_expiration": { + "type": 6, + "value": 1689256360099 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686664809214 + }, + "money_release_date": { + "type": 6, + "value": 1686664809214 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "46d7d91dace146a694697a70", + "revision": "985b4e5da47f48979be479c9", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12215,10 +13826,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.191,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "1eb3e4a8afc2444280fce527", + "revision": "a505ea1b7d1043d18ce3cedb", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12238,12 +13849,12 @@ "installment_amount": 511.02, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "deb07194a6e84c37914fd0be", + "revision": "7bf2890ef7af40deb38141ec", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12260,9 +13871,18 @@ "total_amount": 511.02, "id": 1686844436781, "contract_id": "1684399661939", - "date_created": "2023-06-15T15:53:56.781Z", - "date_last_updated": "2023-06-15T15:53:56.781Z", - "date_of_expiration": "2023-06-15T15:53:56.781Z", + "date_created": { + "type": 6, + "value": 1686844436781 + }, + "date_last_updated": { + "type": 6, + "value": 1686844436781 + }, + "date_of_expiration": { + "type": 6, + "value": 1686844436781 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -12270,10 +13890,10 @@ "currency_id": "BRL", "history_id": 1686844436781 }, - "revision": "b65b7fece8614b9985c9ad9f", + "revision": "d26d2324a7a14a5799a72c49", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12281,10 +13901,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 1 no valor de 511,02 BRL referente ao contrato 1684399661939", - "revision": "79ff29760b5141ec89ed2cc6", + "revision": "9106f8e944ea46cba225ef9d", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12304,12 +13924,12 @@ "installment_amount": 508.98, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "03efa9fe6dad4f64a50addf9", + "revision": "5b4703a47726449a9741f256", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12326,9 +13946,18 @@ "total_amount": 508.98, "id": 1686844436954, "contract_id": "1684612673872", - "date_created": "2023-06-15T15:53:56.954Z", - "date_last_updated": "2023-06-15T15:53:56.954Z", - "date_of_expiration": "2023-06-15T15:53:56.954Z", + "date_created": { + "type": 6, + "value": 1686844436954 + }, + "date_last_updated": { + "type": 6, + "value": 1686844436954 + }, + "date_of_expiration": { + "type": 6, + "value": 1686844436954 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -12336,10 +13965,10 @@ "currency_id": "BRL", "history_id": 1686844436954 }, - "revision": "2702e964e89d4ffc824ee7e8", + "revision": "db77120b62bb4163b1ebea42", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12347,10 +13976,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 1 no valor de 508,98 BRL referente ao contrato 1684612673872", - "revision": "7433822ffa4149baa472617b", + "revision": "1be729330b76427ebfe90760", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12368,12 +13997,12 @@ "installment_amount": 11152973, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "301ba6d37b3a42e98bc0c270", + "revision": "42d49aecdb344bef8657240b", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12388,9 +14017,18 @@ "original_amount": 11152973, "total_amount": 11152973, "id": 1687345768938, - "date_created": "2023-06-21T11:09:28.938Z", - "date_last_updated": "2023-06-21T11:09:28.938Z", - "date_of_expiration": "2024-06-21T11:09:28.938Z", + "date_created": { + "type": 6, + "value": 1687345768938 + }, + "date_last_updated": { + "type": 6, + "value": 1687345768938 + }, + "date_of_expiration": { + "type": 6, + "value": 1718968168938 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12399,10 +14037,10 @@ "history_id": 1687345768938, "wasDebited": true }, - "revision": "3767dc254b3d47b2a1beb8b4", + "revision": "4de45f771e7841cc99b890e9", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12410,10 +14048,10 @@ "content": { "type": "STRING", "value": "Investimento de 11.152.973,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2024", - "revision": "fdae2d0ecc9b4f0e8c87f4d3", + "revision": "4958a862ddec4961842b2d96", "revision_nr": 1, - "created": 1701463509522, - "modified": 1701463509522 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12431,12 +14069,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "eaa2f41330914ca88017baf8", + "revision": "3c91a4369dc743ad970802b4", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820495, + "modified": 1701465820495 } }, { @@ -12452,9 +14090,18 @@ "original_amount": 818586, "total_amount": 818586, "id": 1687393215194, - "date_created": "2023-06-22T00:20:15.194Z", - "date_last_updated": "2023-06-22T00:20:15.194Z", - "date_of_expiration": "2023-06-22T00:20:15.194Z", + "date_created": { + "type": 6, + "value": 1687393215194 + }, + "date_last_updated": { + "type": 6, + "value": 1687393215194 + }, + "date_of_expiration": { + "type": 6, + "value": 1687393215194 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12463,10 +14110,10 @@ "history_id": 1687393215194, "description": "Compra de 818.586,00 IVIP por 171,00 BRL" }, - "revision": "2a9f9196e64d4f619d509ecd", + "revision": "2eba72742db84f1c87e4b414", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12484,12 +14131,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b913da2483444ea6960eab8c", + "revision": "3cc81620899949919c39724c", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12505,9 +14152,18 @@ "original_amount": 496157, "total_amount": 496157, "id": 1687495116294, - "date_created": "2023-06-23T04:38:36.294Z", - "date_last_updated": "2023-06-23T04:38:36.294Z", - "date_of_expiration": "2023-06-23T04:38:36.294Z", + "date_created": { + "type": 6, + "value": 1687495116294 + }, + "date_last_updated": { + "type": 6, + "value": 1687495116294 + }, + "date_of_expiration": { + "type": 6, + "value": 1687495116294 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12516,10 +14172,10 @@ "history_id": 1687495116294, "description": "Compra de 496.157,00 IVIP por 96,00 BRL" }, - "revision": "f7d1eead54154b98a0cdd874", + "revision": "8a10dccb6c344d22a2440d3d", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12537,12 +14193,12 @@ "installment_amount": 12152954, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "36e557b2b7364686a2dd0f4b", + "revision": "4256dc2c3ff44fa9869fc414", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12557,9 +14213,18 @@ "original_amount": 12152954, "total_amount": 12152954, "id": 1687547056698, - "date_created": "2023-06-23T19:04:16.698Z", - "date_last_updated": "2023-06-23T19:04:16.698Z", - "date_of_expiration": "2025-06-23T19:04:16.698Z", + "date_created": { + "type": 6, + "value": 1687547056698 + }, + "date_last_updated": { + "type": 6, + "value": 1687547056698 + }, + "date_of_expiration": { + "type": 6, + "value": 1750705456698 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -12568,10 +14233,10 @@ "history_id": 1687547056698, "wasDebited": true }, - "revision": "13f23b8a118646c5be030e87", + "revision": "ca7974c59efd4acfb7dd282b", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12579,10 +14244,10 @@ "content": { "type": "STRING", "value": "Investimento de 12.152.954,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", - "revision": "d280491b6a3f44a7b74548e3", + "revision": "33224257506443648ba9f6f3", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12590,12 +14255,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "68e4e1c9a7be47728d5bdfd7", + "revision": "6f7fc99817f04cbb8d3adeee", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12610,18 +14275,27 @@ "total_amount": 526, "history_id": 1688994491622, "id": 1688994491622, - "date_created": "2023-07-10T13:08:11.622Z", - "date_last_updated": "2023-07-10T13:08:11.622Z", - "date_of_expiration": "2023-08-09T13:08:11.622Z", + "date_created": { + "type": 6, + "value": 1688994491622 + }, + "date_last_updated": { + "type": 6, + "value": 1688994491622 + }, + "date_of_expiration": { + "type": 6, + "value": 1691586491622 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "963d452fa67040b3b5a77c8d", + "revision": "6f449f13dae8453082c3574a", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12629,10 +14303,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 526,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "7f774cbab12940bab1d4bee5", + "revision": "97e62faae86e4e87a203df82", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12640,12 +14314,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "d4b79b3c42694d55874aab62", + "revision": "cad3a26546c94cd982bcc6fc", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12660,22 +14334,37 @@ "total_amount": 2224, "history_id": 1689000633630, "id": 1689000633630, - "date_created": "2023-07-10T14:50:33.630Z", - "date_last_updated": "2023-07-10T15:21:46.324Z", - "date_of_expiration": "2023-08-09T14:50:33.630Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-10T15:21:46.324Z", - "money_release_date": "2023-07-10T15:21:46.324Z", + "date_created": { + "type": 6, + "value": 1689000633630 + }, + "date_last_updated": { + "type": 6, + "value": 1689002506324 + }, + "date_of_expiration": { + "type": 6, + "value": 1691592633630 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689002506324 + }, + "money_release_date": { + "type": 6, + "value": 1689002506324 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "38e059369fb24354bd1912d7", + "revision": "227502936936434bba719bc8", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12683,10 +14372,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.224,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "4831dcc70ccf4ca2802da3cd", + "revision": "0d58d9562bfc4e4aab23b9b2", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12704,12 +14393,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "dba08bf2a82741978c4f1b2c", + "revision": "4351e37ad3af47f0a1483b56", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12725,9 +14414,18 @@ "original_amount": 180125, "total_amount": 180125, "id": 1689082225194, - "date_created": "2023-07-11T13:30:25.194Z", - "date_last_updated": "2023-07-11T13:30:25.194Z", - "date_of_expiration": "2023-07-11T13:30:25.194Z", + "date_created": { + "type": 6, + "value": 1689082225194 + }, + "date_last_updated": { + "type": 6, + "value": 1689082225194 + }, + "date_of_expiration": { + "type": 6, + "value": 1689082225194 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12736,10 +14434,10 @@ "history_id": 1689082225194, "description": "Compra de 180.125,00 IVIP por 224,00 BRL" }, - "revision": "8f5d3c5f6a59416bb2472652", + "revision": "1b81e3f74c27443682c596b3", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12757,12 +14455,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "61d1782f5f5741b6bd67b7ad", + "revision": "a73c3654bcd540e2a0bb7a66", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12778,9 +14476,18 @@ "original_amount": 305476, "total_amount": 305476, "id": 1689114929852, - "date_created": "2023-07-11T22:35:29.852Z", - "date_last_updated": "2023-07-11T22:35:29.852Z", - "date_of_expiration": "2023-07-11T22:35:29.852Z", + "date_created": { + "type": 6, + "value": 1689114929852 + }, + "date_last_updated": { + "type": 6, + "value": 1689114929852 + }, + "date_of_expiration": { + "type": 6, + "value": 1689114929852 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12789,10 +14496,10 @@ "history_id": 1689114929852, "description": "Compra de 305.476,00 IVIP por 500,00 BRL" }, - "revision": "7983b9bd2bbc4bd8b0b74d91", + "revision": "a167a5e6204d4f589e51f344", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12800,12 +14507,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "62ad365a372c4b81a6dbbba1", + "revision": "9e3666804aec494ebd52b742", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12820,22 +14527,37 @@ "total_amount": 726, "history_id": 1689115029893, "id": 1689115029893, - "date_created": "2023-07-11T22:37:09.893Z", - "date_last_updated": "2023-07-12T08:23:29.959Z", - "date_of_expiration": "2023-08-10T22:37:09.893Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-12T08:23:29.959Z", - "money_release_date": "2023-07-12T08:23:29.959Z", + "date_created": { + "type": 6, + "value": 1689115029893 + }, + "date_last_updated": { + "type": 6, + "value": 1689150209959 + }, + "date_of_expiration": { + "type": 6, + "value": 1691707029893 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689150209959 + }, + "money_release_date": { + "type": 6, + "value": 1689150209959 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "471971d49cea42ffa913ad7b", + "revision": "2cd6d74d69c34f3b89976667", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12843,10 +14565,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 726,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "6f819bb7ff8b449cb786c569", + "revision": "d5c819ea5341431eb8bc9edb", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12864,12 +14586,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "0f9d3c2d22cd4803979c541d", + "revision": "78fd833684994f13b5690f0d", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12885,9 +14607,18 @@ "original_amount": 93754, "total_amount": 93754, "id": 1689195736692, - "date_created": "2023-07-12T21:02:16.692Z", - "date_last_updated": "2023-07-12T21:02:16.692Z", - "date_of_expiration": "2023-07-12T21:02:16.692Z", + "date_created": { + "type": 6, + "value": 1689195736692 + }, + "date_last_updated": { + "type": 6, + "value": 1689195736692 + }, + "date_of_expiration": { + "type": 6, + "value": 1689195736692 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12896,10 +14627,10 @@ "history_id": 1689195736692, "description": "Compra de 93.754,00 IVIP por 226,00 BRL" }, - "revision": "f6725b43579c469ba681d005", + "revision": "b530d407d690440a901120ae", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12917,12 +14648,12 @@ "installment_amount": 1904, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "f0a6a0cdf22643369ebd910d", + "revision": "b7f1b34246e649f09bdf7542", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12937,9 +14668,18 @@ "original_amount": 1904, "total_amount": 1904, "id": 1689204261841, - "date_created": "2023-07-12T23:24:21.841Z", - "date_last_updated": "2023-07-12T23:24:21.841Z", - "date_of_expiration": "2024-05-12T23:24:21.841Z", + "date_created": { + "type": 6, + "value": 1689204261841 + }, + "date_last_updated": { + "type": 6, + "value": 1689204261841 + }, + "date_of_expiration": { + "type": 6, + "value": 1715556261841 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -12948,10 +14688,10 @@ "history_id": 1689204261841, "wasDebited": true }, - "revision": "55e1b609eabf43f78ae2c3da", + "revision": "247e30b548764f44837ef892", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12959,10 +14699,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.904,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/12/2024", - "revision": "5bc392cc93b141b59f8a6f03", + "revision": "2ed97c4862c84d38805db730", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -12980,12 +14720,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "3fa10114c42d4d1482431cca", + "revision": "d2259b7091ab412bab1c209d", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -13001,9 +14741,18 @@ "original_amount": 40949, "total_amount": 40949, "id": 1689204343069, - "date_created": "2023-07-12T23:25:43.069Z", - "date_last_updated": "2023-07-12T23:25:43.069Z", - "date_of_expiration": "2023-07-12T23:25:43.069Z", + "date_created": { + "type": 6, + "value": 1689204343069 + }, + "date_last_updated": { + "type": 6, + "value": 1689204343069 + }, + "date_of_expiration": { + "type": 6, + "value": 1689204343069 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13012,10 +14761,10 @@ "history_id": 1689204343069, "description": "Compra de 40.949,00 IVIP por 96,00 BRL" }, - "revision": "ac6f43318c1747e182829add", + "revision": "37cd986744f040dd896559ed", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -13023,12 +14772,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "51164048efba4d63bf5072b2", + "revision": "182308274f4c4b9fa52eee08", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -13043,18 +14792,27 @@ "total_amount": 1423, "history_id": 1689347614368, "id": 1689347614368, - "date_created": "2023-07-14T15:13:34.368Z", - "date_last_updated": "2023-07-14T15:13:34.368Z", - "date_of_expiration": "2023-08-13T15:13:34.368Z", + "date_created": { + "type": 6, + "value": 1689347614368 + }, + "date_last_updated": { + "type": 6, + "value": 1689347614368 + }, + "date_of_expiration": { + "type": 6, + "value": 1691939614368 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "2e4821538c3d4c578bfa65c5", + "revision": "e02283a982484df8b045566a", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -13062,10 +14820,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.423,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "7f48c94fe20249169a34132c", + "revision": "496cf2b90866440f8e360a47", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820496, + "modified": 1701465820496 } }, { @@ -13073,12 +14831,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "fb2b52e5070e4d0785b20849", + "revision": "8eb95cd69a804e7bbc76578e", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13093,22 +14851,37 @@ "total_amount": 1379, "history_id": 1689618134136, "id": 1689618134136, - "date_created": "2023-07-17T18:22:14.136Z", - "date_last_updated": "2023-07-17T18:39:06.304Z", - "date_of_expiration": "2023-08-16T18:22:14.136Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-17T18:39:06.304Z", - "money_release_date": "2023-07-17T18:39:06.304Z", + "date_created": { + "type": 6, + "value": 1689618134136 + }, + "date_last_updated": { + "type": 6, + "value": 1689619146304 + }, + "date_of_expiration": { + "type": 6, + "value": 1692210134136 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689619146304 + }, + "money_release_date": { + "type": 6, + "value": 1689619146304 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "6496f340e5d94bec9cb6eb0e", + "revision": "88b361c2062b4cfabc71fdc0", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13116,10 +14889,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.379,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "f27255ba4c8a48bfbf4c11aa", + "revision": "e9af378ff32545fdb0171586", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13137,12 +14910,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "8387b4906e4a4620bbe8d9e8", + "revision": "eca9a32320ca477b877b7c54", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13158,9 +14931,18 @@ "original_amount": 326875, "total_amount": 326875, "id": 1689619360780, - "date_created": "2023-07-17T18:42:40.780Z", - "date_last_updated": "2023-07-17T18:42:40.780Z", - "date_of_expiration": "2023-07-17T18:42:40.780Z", + "date_created": { + "type": 6, + "value": 1689619360780 + }, + "date_last_updated": { + "type": 6, + "value": 1689619360780 + }, + "date_of_expiration": { + "type": 6, + "value": 1689619360780 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13169,10 +14951,10 @@ "history_id": 1689619360780, "description": "Compra de 326.875,00 IVIP por 500,00 BRL" }, - "revision": "fb95d66568ec4e048e525fc4", + "revision": "085bf7d989834f4f8acec7e5", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13190,12 +14972,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "ef118aa85a2545729005d77e", + "revision": "a8d10a376f3b426495cff345", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13211,9 +14993,18 @@ "original_amount": 318321, "total_amount": 318321, "id": 1690237331737, - "date_created": "2023-07-24T22:22:11.737Z", - "date_last_updated": "2023-07-24T22:22:11.737Z", - "date_of_expiration": "2023-07-24T22:22:11.737Z", + "date_created": { + "type": 6, + "value": 1690237331737 + }, + "date_last_updated": { + "type": 6, + "value": 1690237331737 + }, + "date_of_expiration": { + "type": 6, + "value": 1690237331737 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13222,10 +15013,10 @@ "history_id": 1690237331737, "description": "Compra de 318.321,00 IVIP por 450,00 BRL" }, - "revision": "2865540551d54d0dbd795259", + "revision": "8aca4a87dfc74d8a8179c5a4", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13243,12 +15034,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a18e4896a9c54e21b0758c75", + "revision": "a58ecd078818420eb8b4d4c9", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13264,9 +15055,18 @@ "original_amount": 338652, "total_amount": 338652, "id": 1690273510959, - "date_created": "2023-07-25T08:25:10.959Z", - "date_last_updated": "2023-07-25T08:25:10.959Z", - "date_of_expiration": "2023-07-25T08:25:10.959Z", + "date_created": { + "type": 6, + "value": 1690273510959 + }, + "date_last_updated": { + "type": 6, + "value": 1690273510959 + }, + "date_of_expiration": { + "type": 6, + "value": 1690273510959 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13275,10 +15075,10 @@ "history_id": 1690273510959, "description": "Compra de 338.652,00 IVIP por 429,00 BRL" }, - "revision": "fee559e10fc345f79cbd5b13", + "revision": "df63703cb0bd49788b8518d6", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13287,12 +15087,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-20T11:04:14.014Z" + ".val": { + "type": 6, + "value": 1695207854014 + } }, - "revision": "b164605d63574a7e961eccd9", + "revision": "eb9c549b006748bd92ede2ab", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13308,12 +15111,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "9683e70433f44ef2ab26caf9", + "revision": "1c68ea03aab14f3a94ac78aa", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13321,10 +15124,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1692615854014", - "revision": "1d344beef1904a8aa8ddaf5b", + "revision": "a59c80d339ed41eba066fcb7", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13339,8 +15142,14 @@ "total_amount": 450, "id": 1692615854014, "history_id": 1692615854014, - "date_created": "2023-08-21T11:04:14.014Z", - "date_last_updated": "2023-08-21T11:04:14.014Z", + "date_created": { + "type": 6, + "value": 1692615854014 + }, + "date_last_updated": { + "type": 6, + "value": 1692615854014 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -13348,10 +15157,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "0f6de3b335474191b89db0f9", + "revision": "ebba3fb6a44e42fe8c526e79", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13359,10 +15168,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 450,00 BRL para a carteira iVip 0013.4542.5233.2609-77", - "revision": "f0d698c38cc14ebd8729b63d", + "revision": "c471cb68d6be4b4bab858cfd", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13378,12 +15187,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "8b720b52b0de4c87b24eac2a", + "revision": "606b5a34b33a444bbc9b9ce7", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13391,10 +15200,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1693771767267", - "revision": "c08d041fea684320a59bed82", + "revision": "f6a75270c81f406a9d8f3e37", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13409,9 +15218,18 @@ "total_amount": 3384929, "id": "1693771767267", "history_id": "1693771767267", - "date_created": "2023-09-03T20:09:27.267Z", - "date_last_updated": "2023-09-03T20:09:27.267Z", - "date_of_expiration": "2023-10-03T20:09:27.265Z", + "date_created": { + "type": 6, + "value": 1693771767267 + }, + "date_last_updated": { + "type": 6, + "value": 1693771767267 + }, + "date_of_expiration": { + "type": 6, + "value": 1696363767265 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13419,10 +15237,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c8fe5ad454ad416b943412c3", + "revision": "418d0c6f18e742c28f721133", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13430,10 +15248,10 @@ "content": { "type": "STRING", "value": "Investimento de 3.384.929,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "3411b9dac07c447eabbee537", + "revision": "ecdc0ec6a7ec42d684df56ef", "revision_nr": 1, - "created": 1701463509523, - "modified": 1701463509523 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13449,12 +15267,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "dead83e951454d43af0f5f9d", + "revision": "50919b57780a46daae396ef1", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13462,10 +15280,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696371493428", - "revision": "6330028ed8c348528e7a0c2f", + "revision": "eb7d1cc4e7db49b99b0cc152", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13481,9 +15299,18 @@ "total_amount": 3452627.58, "id": "1696371493428", "history_id": "1696371493428", - "date_created": "2023-10-03T22:18:13.428Z", - "date_last_updated": "2023-10-03T22:18:13.428Z", - "date_of_expiration": "2023-10-03T22:18:13.428Z", + "date_created": { + "type": 6, + "value": 1696371493428 + }, + "date_last_updated": { + "type": 6, + "value": 1696371493428 + }, + "date_of_expiration": { + "type": 6, + "value": 1696371493428 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -13491,10 +15318,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "b1fb956f766e44e884f0dc6f", + "revision": "c647b3f2363d4b2db1b8cafe", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13502,10 +15329,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 3.384.929,00 IVIP com um rendimento de +67.698,58 IVIP (2,00%) - Y12XDT27", - "revision": "f608b84c5f8041c1a895f916", + "revision": "964fa4ced8c049a785d0a151", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13521,12 +15348,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "80fb7a0bc48545b795cde7f4", + "revision": "126ea6a502bb49d681d1616a", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13534,10 +15361,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696371493371", - "revision": "3ed299989a5943da9e0b7111", + "revision": "10901be372854ed79524cad3", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13553,9 +15380,18 @@ "total_amount": 3452627.58, "id": "1696371493371", "history_id": "1696371493371", - "date_created": "2023-10-03T22:18:13.371Z", - "date_last_updated": "2023-10-03T22:18:13.371Z", - "date_of_expiration": "2023-10-03T22:18:13.371Z", + "date_created": { + "type": 6, + "value": 1696371493371 + }, + "date_last_updated": { + "type": 6, + "value": 1696371493371 + }, + "date_of_expiration": { + "type": 6, + "value": 1696371493371 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13563,10 +15399,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c66bff8bef994c9b94eecd23", + "revision": "cf077aca27854939837679fc", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13574,10 +15410,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 3.384.929,00 IVIP com um rendimento de +67.698,58 IVIP (2,00%) - Y12XDT27", - "revision": "2853136f723f4cadb5d48f5d", + "revision": "4d5f1d6f157447068809fe3d", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13593,12 +15429,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "2b1288c4a9c9429b9797779b", + "revision": "46433d68600248c491717b07", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13606,10 +15442,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696459483900", - "revision": "1b613ceb253049aea4f6530f", + "revision": "afdbf87aabee4fc7a71d8acb", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13625,9 +15461,18 @@ "total_amount": 7624011, "id": "1696459483900", "history_id": "1696459483900", - "date_created": "2023-10-04T22:44:43.900Z", - "date_last_updated": "2023-10-04T22:44:43.900Z", - "date_of_expiration": "2023-11-04T22:44:43.861Z", + "date_created": { + "type": 6, + "value": 1696459483900 + }, + "date_last_updated": { + "type": 6, + "value": 1696459483900 + }, + "date_of_expiration": { + "type": 6, + "value": 1699137883861 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -13635,10 +15480,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "b87411c9175345189f26600a", + "revision": "bf182e3df7af40209ae008a1", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13646,10 +15491,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.624.011,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "9efc28bb7cc64a7f929ed97e", + "revision": "e6b9539c97b04ba6addb95f4", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13658,12 +15503,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-05T22:09:19.538Z" + ".val": { + "type": 6, + "value": 1699222159538 + } }, - "revision": "b3ea5087659244829c4d283f", + "revision": "e272e069b5944753bab3c589", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13679,12 +15527,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "f35c7c7865854efa9466be52", + "revision": "901cab6667f24f7780289331", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13692,10 +15540,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696630159545", - "revision": "6ec86845d0af45c9831c1ac5", + "revision": "ab852f56005e4aa5ab2994cb", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13711,8 +15559,14 @@ "total_amount": 1000, "id": "1696630159545", "history_id": "1696630159545", - "date_created": "2023-10-06T22:09:19.545Z", - "date_last_updated": "2023-10-06T22:09:19.545Z", + "date_created": { + "type": 6, + "value": 1696630159545 + }, + "date_last_updated": { + "type": 6, + "value": 1696630159545 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -13720,10 +15574,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "d9469b90383641f59f0e34e6", + "revision": "285d217a98e14da9abd287dc", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13731,10 +15585,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0013.4542.5233.2609-77", - "revision": "a08df761e4e2436596076bc8", + "revision": "a26809dbfa984f318370b895", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13742,10 +15596,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8d704a87a8794d8793e3c407", + "revision": "cceacec5a9bf43c0a88a0ec7", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13757,10 +15611,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 10.02 }, - "revision": "66daceb0061445dcb0476936", + "revision": "0609539cdacf4ae7a02f46c8", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13774,15 +15628,18 @@ "total_amount": 511.02, "installments": 1, "installment_amount": 511.02, - "date_created": "2023-05-18T08:47:41.939Z", + "date_created": { + "type": 6, + "value": 1684399661939 + }, "history_id": 1684399661939, "currency_id": "BRL", "status": "paid" }, - "revision": "386766a52d7b4ba89b6ddc1a", + "revision": "49a437f51ade464abec422d7", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13790,10 +15647,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 501,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 511,02", - "revision": "6e1506ae56274a5db9ae5f44", + "revision": "95ec822f3c74494e9740853d", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13801,10 +15658,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "0480bbc900d541d6b8002c08", + "revision": "e0225e329d2b4bec92f22269", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13816,10 +15673,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 9.98 }, - "revision": "4d9e6e49e74e4572907d102a", + "revision": "a94b0d893f1347b092ac7b56", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13833,15 +15690,18 @@ "total_amount": 508.98, "installments": 1, "installment_amount": 508.98, - "date_created": "2023-05-20T19:57:53.872Z", + "date_created": { + "type": 6, + "value": 1684612673872 + }, "history_id": 1684612673872, "currency_id": "BRL", "status": "paid" }, - "revision": "95779265e0534679aae7732a", + "revision": "71e5a812c7ac4fa9a07988ca", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13849,10 +15709,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 499,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 508,98", - "revision": "b6ec896509c147c685b9f7a6", + "revision": "da31dd0311bc48d09e11b7ba", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13860,10 +15720,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e82958199ddb4a5e97e8c38b", + "revision": "828fe5431be24904b45c98db", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820499, + "modified": 1701465820499 } }, { @@ -13871,10 +15731,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "510a389766164218ab2002f1", + "revision": "08aa82c889074505b2feed69", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -13882,10 +15742,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6a65989b33c54c8ead162735", + "revision": "724153468f5b4f39b90dc4be", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -13895,13 +15755,19 @@ "value": { "approvedLimit": 1000, "limitUsed": 0, - "analysisRequested": "2023-05-17T11:09:17.322Z", - "lastReview": "2023-05-17T13:23:34.101Z" + "analysisRequested": { + "type": 6, + "value": 1684321757322 + }, + "lastReview": { + "type": 6, + "value": 1684329814101 + } }, - "revision": "3f508a041e13478f87e9d0e9", + "revision": "d6fd4e628b844c73997383ca", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -13913,12 +15779,15 @@ "dateValidity": 1684091909123, "totalValue": 5846.89, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } }, - "revision": "b96d615a21a04e1d840b5c3a", + "revision": "a79b1d37db33441986efff98", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -13930,10 +15799,10 @@ "available": "100.00000000", "value": 20.09 }, - "revision": "9074ddbc3ae84aaf81680f40", + "revision": "40e0efe980ab40d3b70010e8", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -13941,10 +15810,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "faa9cd09d1a04b09b0bdabd7", + "revision": "8a158b387a604e4e920a7dcc", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -13952,12 +15821,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "2baee921349b4120b9c7e2f4", + "revision": "31c957de989c4238a3786489", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -13972,22 +15841,37 @@ "total_amount": 100, "history_id": 1684119457629, "id": 1684119457629, - "date_created": "2023-05-15T02:57:37.629Z", - "date_last_updated": "2023-05-15T03:02:14.913Z", - "date_of_expiration": "2023-06-14T02:57:37.629Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-15T03:02:14.913Z", - "money_release_date": "2023-05-15T03:02:14.913Z", + "date_created": { + "type": 6, + "value": 1684119457629 + }, + "date_last_updated": { + "type": 6, + "value": 1684119734913 + }, + "date_of_expiration": { + "type": 6, + "value": 1686711457629 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684119734913 + }, + "money_release_date": { + "type": 6, + "value": 1684119734913 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "a5cdf629d1f646e5b10a84ae", + "revision": "1fd78aaf97724499a23b5f9b", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -13995,10 +15879,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0024.4576.8964.9692-86", - "revision": "b07e998796b6465d90430b2b", + "revision": "f773c3aa732d4d94861b5046", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14006,10 +15890,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3172379f1b1f4a049d9ef0ae", + "revision": "9812771c455f4401a29d1028", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14017,10 +15901,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b86cd408529f44f78d460944", + "revision": "529c8d82b27f4e6780293a61", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14031,10 +15915,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "56e5a3f8ee314f2198482c18", + "revision": "b20c34a56ec14a119db77bae", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14047,10 +15931,10 @@ "totalValue": 20.09, "currencyType": "USD" }, - "revision": "4a41a533581449c7a29d06ff", + "revision": "059f9b299a6245eb9384ba32", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14062,10 +15946,10 @@ "symbol": "IVIP", "value": 1075.36 }, - "revision": "4e2c01261e824a40991d8a4f", + "revision": "35f837b7e5e949e9af6a6524", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14073,10 +15957,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e97905869dc54298bc440022", + "revision": "5ff981bc30be46dcb3a93fd9", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14084,12 +15968,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "df3dd10fe9a146cf81c81c88", + "revision": "a611e08d81f14123b7bab90d", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14104,20 +15988,32 @@ "total_amount": 2000, "history_id": 1677798769726, "id": 1677798769726, - "date_created": "2023-03-02T23:12:49.726Z", - "date_last_updated": "2023-03-13T13:16:05.659Z", - "date_of_expiration": "2023-04-01T23:12:49.726Z", + "date_created": { + "type": 6, + "value": 1677798769726 + }, + "date_last_updated": { + "type": 6, + "value": 1678713365659 + }, + "date_of_expiration": { + "type": 6, + "value": 1680390769726 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-03-13T13:16:05.659Z", + "money_release_date": { + "type": 6, + "value": 1678713365659 + }, "money_release_status": "rejected" }, - "revision": "06773a55ed324a379353d1bb", + "revision": "ac1e7e9fef78400699cfe982", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14125,10 +16021,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0037.5729.7582.0925-33", - "revision": "ec4444829fad45b695f7a8af", + "revision": "2f09ca68541e40eebec67ea6", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14136,12 +16032,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "1d03a5e94c4944c9af2db673", + "revision": "5233aae83a1446b591323643", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14156,20 +16052,32 @@ "total_amount": 1000, "history_id": 1678058459792, "id": 1678058459792, - "date_created": "2023-03-05T23:20:59.792Z", - "date_last_updated": "2023-03-13T13:41:25.155Z", - "date_of_expiration": "2023-04-04T23:20:59.792Z", + "date_created": { + "type": 6, + "value": 1678058459792 + }, + "date_last_updated": { + "type": 6, + "value": 1678714885155 + }, + "date_of_expiration": { + "type": 6, + "value": 1680650459792 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-03-13T13:41:25.155Z", + "money_release_date": { + "type": 6, + "value": 1678714885155 + }, "money_release_status": "rejected" }, - "revision": "87a9ec647c9e40bc96bedae4", + "revision": "2c38b987168d45b9b3c94583", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14177,10 +16085,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0037.5729.7582.0925-33", - "revision": "be97609924124242a5bfca47", + "revision": "a40387ab0b7c445085f3436d", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14188,12 +16096,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "2124df2bc29e4f4c9f9cf4d2", + "revision": "03efc7c094cf4fcb8b6d01b1", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14208,22 +16116,37 @@ "total_amount": 1000, "history_id": 1678527306058, "id": 1678527306058, - "date_created": "2023-03-11T09:35:06.058Z", - "date_last_updated": "2023-03-11T14:22:04.146Z", - "date_of_expiration": "2023-04-10T09:35:06.058Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-11T14:22:04.146Z", - "money_release_date": "2023-03-11T14:22:04.146Z", + "date_created": { + "type": 6, + "value": 1678527306058 + }, + "date_last_updated": { + "type": 6, + "value": 1678544524146 + }, + "date_of_expiration": { + "type": 6, + "value": 1681119306058 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678544524146 + }, + "money_release_date": { + "type": 6, + "value": 1678544524146 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "547976b72bc6422c80ef30ad", + "revision": "73c53e5d009d470c8fb9eaf6", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14231,10 +16154,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0037.5729.7582.0925-33", - "revision": "b4f0bdf2a53b44ee94c1626d", + "revision": "4b14dcb15fc04f8fa982acd5", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14252,12 +16175,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "58d681a9f6bd43bdbed3373a", + "revision": "45655ac5a29e4746ba937ed5", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14273,9 +16196,18 @@ "original_amount": 5325627, "total_amount": 5325627, "id": 1679908062539, - "date_created": "2023-03-27T09:07:42.539Z", - "date_last_updated": "2023-03-27T09:07:42.539Z", - "date_of_expiration": "2023-03-27T09:07:42.539Z", + "date_created": { + "type": 6, + "value": 1679908062539 + }, + "date_last_updated": { + "type": 6, + "value": 1679908062539 + }, + "date_of_expiration": { + "type": 6, + "value": 1679908062539 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14284,10 +16216,10 @@ "history_id": 1679908062539, "description": "Compra de 5.325.627,00 IVIP por 1.000,00 BRL" }, - "revision": "573e48df3cfd451dbd2198f2", + "revision": "a0a3f5a806264d17b626d614", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14305,12 +16237,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "de7e9d27a541418994b22417", + "revision": "4ecde8f64a1846388c1ba398", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14325,9 +16257,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687109837625, - "date_created": "2023-06-18T17:37:17.625Z", - "date_last_updated": "2023-06-18T17:37:17.625Z", - "date_of_expiration": "2023-12-18T17:37:17.625Z", + "date_created": { + "type": 6, + "value": 1687109837625 + }, + "date_last_updated": { + "type": 6, + "value": 1687109837625 + }, + "date_of_expiration": { + "type": 6, + "value": 1702921037625 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14335,10 +16276,10 @@ "currency_id": "IVIP", "history_id": 1687109837625 }, - "revision": "3070a7f73e1e44799dbdf4f3", + "revision": "ffae9b9f9483485285e4a713", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14346,10 +16287,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/18/2023", - "revision": "4550908df4e8435dbeed593e", + "revision": "842fb38929da4383905f99e2", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14357,10 +16298,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "dbfa26b22da74080827000ab", + "revision": "1fc4e6cd1b79487eac714915", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14368,10 +16309,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1e159d008a334ea8915ec44a", + "revision": "ad70fe8e4c93457992bc1a35", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14382,10 +16323,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "69dfa5968fd64704801ad73b", + "revision": "16c25bd6827c4727bc00d707", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14397,12 +16338,15 @@ "dateValidity": 1678995120507, "totalValue": 249.76613748285868, "currencyType": "USD", - "balancesModificacao": "2023-10-01T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696129200000 + } }, - "revision": "94b7fe362ae2436abae1f532", + "revision": "d5f2430a458e445da610e08c", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14410,10 +16354,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e56b26afb27a4cf8be209628", + "revision": "6484d6c587094d23959915b9", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14421,10 +16365,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "987301d360d14ac0a7857009", + "revision": "ef5ea4d7070348108eab63ca", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14437,10 +16381,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "60da4c4599fc43998102e19a", + "revision": "1cff53ce0ab244238aea9002", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14452,10 +16396,10 @@ "symbol": "BRL", "value": 29.27 }, - "revision": "d5f0fa911ae3480e9478d174", + "revision": "04c7cc63a10a4a6a8b9b4f2f", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14463,10 +16407,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4a68509995f84e89b4db28ee", + "revision": "74fee9ea0a1f4c8fab5de816", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14474,12 +16418,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "e84c07bbbcf74546a38011ac", + "revision": "4cdc0b11f8734944a63d2590", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14494,21 +16438,33 @@ "total_amount": 100, "history_id": 1689373938365, "id": 1689373938365, - "date_created": "2023-07-14T22:32:18.365Z", - "date_last_updated": "2023-07-26T21:41:01.153Z", - "date_of_expiration": "2023-08-13T22:32:18.365Z", + "date_created": { + "type": 6, + "value": 1689373938365 + }, + "date_last_updated": { + "type": 6, + "value": 1690407661153 + }, + "date_of_expiration": { + "type": 6, + "value": 1691965938365 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", - "money_release_date": "2023-07-26T21:41:01.153Z", + "money_release_date": { + "type": 6, + "value": 1690407661153 + }, "money_release_status": "cancelled", "wasDebited": true }, - "revision": "8c9fe6ec9bb94270a9ba0e83", + "revision": "c920e8887a294a28b13523c2", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14516,10 +16472,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0072.1969.3774.2530-22", - "revision": "ffe95894f725467ca7f02113", + "revision": "0362c130e3e040c9b4094649", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14527,12 +16483,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "5534e13c0298415ba40a58a8", + "revision": "fea74ad57b0c4458aaf0a3c7", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14547,21 +16503,33 @@ "total_amount": 130, "history_id": 1689719003118, "id": 1689719003118, - "date_created": "2023-07-18T22:23:23.118Z", - "date_last_updated": "2023-07-26T21:40:36.264Z", - "date_of_expiration": "2023-08-17T22:23:23.118Z", + "date_created": { + "type": 6, + "value": 1689719003118 + }, + "date_last_updated": { + "type": 6, + "value": 1690407636264 + }, + "date_of_expiration": { + "type": 6, + "value": 1692311003118 + }, "operation_type": "regular_payment", "status": "cancelled", "status_detail": "cancelled", "currency_id": "BRL", - "money_release_date": "2023-07-26T21:40:36.264Z", + "money_release_date": { + "type": 6, + "value": 1690407636264 + }, "money_release_status": "cancelled", "wasDebited": true }, - "revision": "6ac9cf65197f483aba287d4e", + "revision": "69afa59a731f43ab91cccdde", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14569,10 +16537,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0072.1969.3774.2530-22", - "revision": "86755ce8609446d186d562bd", + "revision": "d4ea0b7067dd475ba5c3bb99", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14581,12 +16549,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-23T16:27:21.978Z" + ".val": { + "type": 6, + "value": 1692808041978 + } }, - "revision": "8d96f4eeee634bf78efbbae0", + "revision": "f757d963814346ffa503ea96", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14602,12 +16573,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "debe89fb876f4cff90ac93ae", + "revision": "222c0fe11ac6475d86054f4f", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14615,10 +16586,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/007219693774253022/history/1690216041978", - "revision": "ab421d1d38cf45558f6a88d4", + "revision": "5d34dbb68fd9407d8900d5b5", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14633,23 +16604,35 @@ "total_amount": 150, "id": 1690216041978, "history_id": 1690216041978, - "date_created": "2023-07-24T16:27:21.978Z", - "date_last_updated": "2023-07-24T17:23:10.794Z", + "date_created": { + "type": 6, + "value": 1690216041978 + }, + "date_last_updated": { + "type": 6, + "value": 1690219390794 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-07-24T17:23:10.794Z", - "money_release_date": "2023-07-24T17:23:10.794Z", + "date_approved": { + "type": 6, + "value": 1690219390794 + }, + "money_release_date": { + "type": 6, + "value": 1690219390794 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "556d309412184f61a361a4a4", + "revision": "9baac3317f8c4db6b85ce22f", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14657,10 +16640,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0072.1969.3774.2530-22", - "revision": "04bc07c5159144599f82548b", + "revision": "7f77502d8c804934b0b00636", "revision_nr": 1, - "created": 1701463509524, - "modified": 1701463509524 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14668,10 +16651,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "222d77105ee44ce8b1b55620", + "revision": "f1b9c0a4fed6436e8919cfeb", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14679,10 +16662,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e4783f8d46bb422d9c34d6e6", + "revision": "6ccbf325eab54997837941c2", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14693,10 +16676,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "7cbf8bb627c44162bc204b2a", + "revision": "029f689d9e1e4468a7af8a9c", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14708,12 +16691,15 @@ "dateValidity": 1689373828234, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": "2023-10-14T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } }, - "revision": "566563cd8ae14d16a16ddd8c", + "revision": "da31f314b17f4e8eb9d7636d", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14721,10 +16707,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3dcd10ef339f42fd8156ee5e", + "revision": "5d38511b5af044eeacf43826", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14732,10 +16718,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "765dfa3e57d842d383963546", + "revision": "311c3ffb60cb42028bec1828", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14748,10 +16734,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "c117190948a84c3cb4753bf5", + "revision": "f5a9a02f06b44833add73023", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14759,10 +16745,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d2595aed10304c69b17f2487", + "revision": "9a577079631747b6948cbbe7", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14770,10 +16756,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "11581ee5aae849eb8d167dce", + "revision": "5b0c2547bfce40f8a5386242", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14786,10 +16772,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "9fa7bc5d361c46acbccc5754", + "revision": "1419d5d813ba491dbd78e0ab", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14797,10 +16783,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "25e2aa13a7f248c4940b9690", + "revision": "b578b6481f8e4d21a674e7c9", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14808,12 +16794,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "1822aedc7780403494aa9115", + "revision": "ce5594d929774a52b91fe1d1", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14828,22 +16814,37 @@ "total_amount": 507, "history_id": 1684424340055, "id": 1684424340055, - "date_created": "2023-05-18T15:39:00.055Z", - "date_last_updated": "2023-05-18T17:02:50.415Z", - "date_of_expiration": "2023-06-17T15:39:00.055Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-18T17:02:50.415Z", - "money_release_date": "2023-05-18T17:02:50.415Z", + "date_created": { + "type": 6, + "value": 1684424340055 + }, + "date_last_updated": { + "type": 6, + "value": 1684429370415 + }, + "date_of_expiration": { + "type": 6, + "value": 1687016340055 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684429370415 + }, + "money_release_date": { + "type": 6, + "value": 1684429370415 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "3b9cdad90d7e4129a7c95f15", + "revision": "83843e949aff4869827af805", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -14851,10 +16852,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 507,00 para a carteira iVip 0117.2048.7643.9274-14", - "revision": "870dffb83a4f410d862819ba", + "revision": "6261f46aa93a4953ad18b7b1", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820500, + "modified": 1701465820500 } }, { @@ -14862,12 +16863,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "dd5e8b68de604e81a8d74982", + "revision": "5afbfd857ed147e99e1ae534", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -14882,22 +16883,37 @@ "total_amount": 1093, "history_id": 1684539875683, "id": 1684539875683, - "date_created": "2023-05-19T23:44:35.683Z", - "date_last_updated": "2023-05-19T23:57:17.031Z", - "date_of_expiration": "2023-06-18T23:44:35.683Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-19T23:57:17.031Z", - "money_release_date": "2023-05-19T23:57:17.031Z", + "date_created": { + "type": 6, + "value": 1684539875683 + }, + "date_last_updated": { + "type": 6, + "value": 1684540637031 + }, + "date_of_expiration": { + "type": 6, + "value": 1687131875683 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684540637031 + }, + "money_release_date": { + "type": 6, + "value": 1684540637031 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "57d742ff2ceb443bb303a142", + "revision": "ca6bc8beddd649fcb15027d1", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -14905,10 +16921,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.093,00 para a carteira iVip 0117.2048.7643.9274-14", - "revision": "1353fd519a9b4261acb49020", + "revision": "7deef3e32d8e46c5ab48be8b", "revision_nr": 1, - "created": 1701463509527, - "modified": 1701463509527 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -14926,12 +16942,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d8fe5ebd66d0438aa4a2cf79", + "revision": "4be01bde0b034addb62ba4ad", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -14947,9 +16963,18 @@ "original_amount": 7793170, "total_amount": 7793170, "id": 1684625025298, - "date_created": "2023-05-20T23:23:45.298Z", - "date_last_updated": "2023-05-20T23:23:45.298Z", - "date_of_expiration": "2023-05-20T23:23:45.298Z", + "date_created": { + "type": 6, + "value": 1684625025298 + }, + "date_last_updated": { + "type": 6, + "value": 1684625025298 + }, + "date_of_expiration": { + "type": 6, + "value": 1684625025298 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -14958,10 +16983,10 @@ "history_id": 1684625025298, "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" }, - "revision": "a1f83ac38c814b8c898bb15c", + "revision": "313353547e774b0cb714e9ea", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -14969,12 +16994,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "9d680292073b43e4b7caa2a4", + "revision": "4bd62451ff374bf49a891b28", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -14989,22 +17014,37 @@ "total_amount": 5588008, "history_id": 1685465338404, "id": 1685465338404, - "date_created": "2023-05-30T16:48:58.404Z", - "date_last_updated": "2023-05-30T18:43:23.347Z", - "date_of_expiration": "2023-05-30T16:48:58.404Z", + "date_created": { + "type": 6, + "value": 1685465338404 + }, + "date_last_updated": { + "type": 6, + "value": 1685472203347 + }, + "date_of_expiration": { + "type": 6, + "value": 1685465338404 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-05-30T18:43:23.347Z", - "money_release_date": "2023-05-30T18:43:23.347Z", + "date_approved": { + "type": 6, + "value": 1685472203347 + }, + "money_release_date": { + "type": 6, + "value": 1685472203347 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "7713881ff2574537aa596dfd", + "revision": "fed8b4a39bea4b669a4d22c5", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -15012,10 +17052,10 @@ "content": { "type": "STRING", "value": "Saque de 5.588.008,00 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", - "revision": "6cb9e32a75a44c01828cf3fc", + "revision": "c22c4c88fb194425b745f1ca", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -15033,12 +17073,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "60947c7204184653b3206a85", + "revision": "e23bb799cebf401bb6c2e099", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -15053,9 +17093,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685720288992, - "date_created": "2023-06-02T15:38:08.992Z", - "date_last_updated": "2023-06-02T15:38:08.992Z", - "date_of_expiration": "2023-12-02T15:38:08.992Z", + "date_created": { + "type": 6, + "value": 1685720288992 + }, + "date_last_updated": { + "type": 6, + "value": 1685720288992 + }, + "date_of_expiration": { + "type": 6, + "value": 1701531488992 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15063,10 +17112,10 @@ "currency_id": "IVIP", "history_id": 1685720288992 }, - "revision": "a3a5f11b17474e15b7fed641", + "revision": "193845bd1e184232b492b4cb", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -15074,10 +17123,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/2/2023", - "revision": "dde66fa8d5624734bdadb11f", + "revision": "0cd6953478bf4c53b5253149", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -15095,12 +17144,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "99f367a2268245cfb62fc168", + "revision": "afd4a15b6aef4e5bacdead8b", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -15115,9 +17164,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685720363618, - "date_created": "2023-06-02T15:39:23.618Z", - "date_last_updated": "2023-06-02T15:39:23.618Z", - "date_of_expiration": "2023-07-02T15:39:23.618Z", + "date_created": { + "type": 6, + "value": 1685720363618 + }, + "date_last_updated": { + "type": 6, + "value": 1685720363618 + }, + "date_of_expiration": { + "type": 6, + "value": 1688312363618 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15125,10 +17183,10 @@ "currency_id": "IVIP", "history_id": 1685720363618 }, - "revision": "9200772446914ccfb917cf7e", + "revision": "e3cd0073080f4f5cacdb9ae1", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -15136,10 +17194,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/2/2023", - "revision": "afcfb12437eb43bcacdbb7c6", + "revision": "c37e5f4f54244de2a8dd4c7a", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -15157,12 +17215,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "37db1f3ef2e34c30a3a4a936", + "revision": "fa3c8d0d76ad46b5b6f0180b", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -15177,9 +17235,18 @@ "original_amount": 1020, "total_amount": 1020, "id": 1688400602023, - "date_created": "2023-07-03T16:10:02.023Z", - "date_last_updated": "2023-07-03T16:10:02.023Z", - "date_of_expiration": "2023-07-03T16:10:02.023Z", + "date_created": { + "type": 6, + "value": 1688400602023 + }, + "date_last_updated": { + "type": 6, + "value": 1688400602023 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400602023 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15188,10 +17255,10 @@ "history_id": 1688400602023, "wasDebited": true }, - "revision": "af7d8455385644779b26eaeb", + "revision": "79366f799ef84159ae049594", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -15199,10 +17266,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%)", - "revision": "33935e57e6e8430c9e32bf40", + "revision": "02a5df96a43e4f25a9f3bc6d", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -15220,12 +17287,12 @@ "installment_amount": 2154096, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d55afe3b76f049deadf812b0", + "revision": "363691a4a03c47f7bb1ce033", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -15240,9 +17307,18 @@ "original_amount": 2154096, "total_amount": 2154096, "id": 1688595538475, - "date_created": "2023-07-05T22:18:58.475Z", - "date_last_updated": "2023-07-05T22:18:58.475Z", - "date_of_expiration": "2023-08-05T22:18:58.475Z", + "date_created": { + "type": 6, + "value": 1688595538475 + }, + "date_last_updated": { + "type": 6, + "value": 1688595538475 + }, + "date_of_expiration": { + "type": 6, + "value": 1691273938475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15250,10 +17326,10 @@ "currency_id": "IVIP", "history_id": 1688595538475 }, - "revision": "f0b95831c65a42178b3a6522", + "revision": "6012feecbd894d8280491d0a", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -15261,10 +17337,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.154.096,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", - "revision": "260e506e2b5145d386eef294", + "revision": "27882e6591ff4c37868d8fba", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820501, + "modified": 1701465820501 } }, { @@ -15280,12 +17356,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "c41e28238c7442288133180e", + "revision": "4aaae8d8511b4ab3866bab52", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15293,10 +17369,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691274110792", - "revision": "2aea9f50c5f848ff901ea941", + "revision": "eb798d75778142a9af272998", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15311,9 +17387,18 @@ "total_amount": 2197177.92, "id": 1691274110792, "history_id": 1691274110792, - "date_created": "2023-08-05T22:21:50.792Z", - "date_last_updated": "2023-08-05T22:21:50.792Z", - "date_of_expiration": "2023-08-05T22:21:50.792Z", + "date_created": { + "type": 6, + "value": 1691274110792 + }, + "date_last_updated": { + "type": 6, + "value": 1691274110792 + }, + "date_of_expiration": { + "type": 6, + "value": 1691274110792 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15321,10 +17406,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "82a19dedd3c94c23be5d2bc3", + "revision": "ad2888836919400f9b190164", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15332,10 +17417,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.154.096,00 IVIP com um rendimento de +43.081,92 IVIP (2,00%)", - "revision": "bfe40a262a204a82b6e39920", + "revision": "9eb333c366524a3c8ccce67e", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15347,10 +17432,10 @@ "label": "Taxa de 3,00%", "amount": 36290.1735 }, - "revision": "4f394f2355d54d829f7d20d8", + "revision": "7e0332003730436b98d3e604", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15367,10 +17452,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "57c583b7e260498d9b5cce36", + "revision": "70b8e7b98b5442e88a6f9e13", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15378,10 +17463,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691439593377", - "revision": "8471e6dc290a4ce58cba3885", + "revision": "888ea6328d264ec493c18ddc", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15389,10 +17474,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "0fed2c5cfe1e48648e52627f", + "revision": "7ae2ae66bc4d42cb9e22bcbb", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15407,23 +17492,35 @@ "total_amount": 1209672.45, "id": 1691439593377, "history_id": 1691439593377, - "date_created": "2023-08-07T20:19:53.377Z", - "date_last_updated": "2023-08-16T13:13:21.115Z", - "date_of_expiration": "2023-08-07T20:19:53.377Z", + "date_created": { + "type": 6, + "value": 1691439593377 + }, + "date_last_updated": { + "type": 6, + "value": 1692191601115 + }, + "date_of_expiration": { + "type": 6, + "value": 1691439593377 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_amount", - "money_release_date": "2023-08-16T13:13:21.115Z", + "money_release_date": { + "type": 6, + "value": 1692191601115 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "cdc66b063aec40c7a9143a4e", + "revision": "3cd6ce87541b4d5d9a254aa2", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15431,10 +17528,10 @@ "content": { "type": "STRING", "value": "Saque de 1.209.672,45 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", - "revision": "c05ad4e7e5594d699896b714", + "revision": "4dd2e0b054c8427e8cbd7021", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15446,10 +17543,10 @@ "label": "Taxa de 3,00%", "amount": 36184.977 }, - "revision": "5c33d827277841bbb4afa395", + "revision": "11139f3a681d4946a47160af", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15466,10 +17563,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "06ae48d46dd3432eb9af94da", + "revision": "dcfa9987215444bb915c1340", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15477,10 +17574,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691439992266", - "revision": "9b79975148d849e4920ea0a2", + "revision": "5fe519a6525b4e6a80698249", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15488,10 +17585,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "0541eb0c6a5841f1a367d583", + "revision": "e417a890de7d4f03a1b4f42d", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15506,23 +17603,35 @@ "total_amount": 1206165.9, "id": 1691439992266, "history_id": 1691439992266, - "date_created": "2023-08-07T20:26:32.266Z", - "date_last_updated": "2023-08-16T13:12:57.715Z", - "date_of_expiration": "2023-08-07T20:26:32.266Z", + "date_created": { + "type": 6, + "value": 1691439992266 + }, + "date_last_updated": { + "type": 6, + "value": 1692191577715 + }, + "date_of_expiration": { + "type": 6, + "value": 1691439992266 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_amount", - "money_release_date": "2023-08-16T13:12:57.715Z", + "money_release_date": { + "type": 6, + "value": 1692191577715 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "94443a6b0070459d85f21fa5", + "revision": "6b3b94c0cbb448dbbbc851c8", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15530,10 +17639,10 @@ "content": { "type": "STRING", "value": "Saque de 1.206.165,9 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", - "revision": "4173e439c2c646bfb690f6da", + "revision": "a20d5da5834145bf88775ff5", "revision_nr": 1, - "created": 1701463509528, - "modified": 1701463509528 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15545,10 +17654,10 @@ "label": "Taxa de 3,00%", "amount": 65395.38 }, - "revision": "1b282edee8824998a81a3b41", + "revision": "c6bb5d7d5df24634ba36b9f6", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15565,10 +17674,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "a7412a89aabd49f4822d9642", + "revision": "ba462484443b498a802d129b", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15576,10 +17685,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691447884361", - "revision": "e689e42d3b424a759234743d", + "revision": "63d75a97ac9b44ceb7bb2fcc", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15587,10 +17696,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "25ceed2dda5c46bb8be59cfc", + "revision": "0559ad765eba4ef9b2f5f5d6", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15605,24 +17714,39 @@ "total_amount": 2179846, "id": 1691447884361, "history_id": 1691447884361, - "date_created": "2023-08-07T22:38:04.361Z", - "date_last_updated": "2023-08-08T13:28:08.315Z", - "date_of_expiration": "2023-08-07T22:38:04.361Z", + "date_created": { + "type": 6, + "value": 1691447884361 + }, + "date_last_updated": { + "type": 6, + "value": 1691501288315 + }, + "date_of_expiration": { + "type": 6, + "value": 1691447884361 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": "2023-08-08T13:28:08.315Z", - "money_release_date": "2023-08-08T13:28:08.315Z", + "date_approved": { + "type": 6, + "value": 1691501288315 + }, + "money_release_date": { + "type": 6, + "value": 1691501288315 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "254b5ebd518c4b92b5fd22e6", + "revision": "dbd3c91149364cb4a4c21fa0", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15630,10 +17754,10 @@ "content": { "type": "STRING", "value": "Saque de 2.179.846,00 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", - "revision": "61466500143048ca8f768249", + "revision": "ab1ca1a4ca3545d0ba138172", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15641,10 +17765,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f903ce914c0f4ba683193f18", + "revision": "3571bda12988455abd711c2f", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15652,10 +17776,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2d11650e961f4724a75acb90", + "revision": "1bc0aacf4cda4c60989c50d2", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15666,10 +17790,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "477b9264e66748be9c38878c", + "revision": "4f692ca9600c4fce89bd354d", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15681,12 +17805,15 @@ "dateValidity": 1684369387404, "totalValue": 4.914821489351172, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } }, - "revision": "bff2e27b186148939ce32038", + "revision": "69f99221bcd144b69871b8c3", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15694,10 +17821,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7236271737b949d7924f1369", + "revision": "1f0d95b2db084db48f5af88c", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15705,10 +17832,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d2b8c12f465d41cc8bd0ef29", + "revision": "cd4356f9424c4ebbae88b49b", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15719,12 +17846,15 @@ "dataModificacao": 1696522229806, "dateValidity": 1696522229867, "currencyType": "USD", - "balancesModificacao": "2023-10-05T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696474800000 + } }, - "revision": "42dadf6b529448d9ab99d610", + "revision": "1bdf239000464a3a97487cd1", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15732,10 +17862,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "18107f764de44b939859b407", + "revision": "ec07517dba45412c895a0d33", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15743,12 +17873,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "34c44e834e8b41d6a0c3d1d8", + "revision": "0c669b4606c84ffd86cfe446", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15763,22 +17893,37 @@ "total_amount": 50, "history_id": 1678555308384, "id": 1678555308384, - "date_created": "2023-03-11T17:21:48.384Z", - "date_last_updated": "2023-03-12T14:35:22.207Z", - "date_of_expiration": "2023-04-10T17:21:48.384Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-12T14:35:22.207Z", - "money_release_date": "2023-03-12T14:35:22.207Z", + "date_created": { + "type": 6, + "value": 1678555308384 + }, + "date_last_updated": { + "type": 6, + "value": 1678631722207 + }, + "date_of_expiration": { + "type": 6, + "value": 1681147308384 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678631722207 + }, + "money_release_date": { + "type": 6, + "value": 1678631722207 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "9fb95166a6aa4a5480ff3324", + "revision": "0a314c9763f241baa528da3d", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15786,10 +17931,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0128.8622.7244.5948-72", - "revision": "e43556b054204c94aa54d8c1", + "revision": "5ff99d575d4c405192557588", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15807,12 +17952,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "7cdde43c689749d4b5c352f8", + "revision": "a89de7ce6a0247ef9ad5b789", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15828,9 +17973,18 @@ "original_amount": 291076, "total_amount": 291076, "id": 1679266899414, - "date_created": "2023-03-19T23:01:39.414Z", - "date_last_updated": "2023-03-19T23:01:39.414Z", - "date_of_expiration": "2023-03-19T23:01:39.414Z", + "date_created": { + "type": 6, + "value": 1679266899414 + }, + "date_last_updated": { + "type": 6, + "value": 1679266899414 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266899414 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15839,10 +17993,10 @@ "history_id": 1679266899414, "description": "Compra de 291076 IVIP por 50 BRL" }, - "revision": "02ef5c1642e8475a99b7e215", + "revision": "d3123975ee3441eb9664d510", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15860,12 +18014,12 @@ "installment_amount": 291076, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "1c74fdec10de46e182711959", + "revision": "b3b9d2c5adee47109b9a68b6", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15880,9 +18034,18 @@ "original_amount": 291076, "total_amount": 291076, "id": 1685668294321, - "date_created": "2023-06-02T01:11:34.321Z", - "date_last_updated": "2023-06-02T01:11:34.321Z", - "date_of_expiration": "2025-06-02T01:11:34.321Z", + "date_created": { + "type": 6, + "value": 1685668294321 + }, + "date_last_updated": { + "type": 6, + "value": 1685668294321 + }, + "date_of_expiration": { + "type": 6, + "value": 1748826694321 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -15891,10 +18054,10 @@ "history_id": 1685668294321, "wasDebited": true }, - "revision": "7edd71108243472187b665c4", + "revision": "02440fdbc959494b9408bee7", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15902,10 +18065,10 @@ "content": { "type": "STRING", "value": "Investimento de 291.076,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "de719f2f7f24476795aa3d85", + "revision": "0998faca1854462387a83391", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15913,10 +18076,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "bdda88095ca14aba8ec19878", + "revision": "4de2a0b747ad4142b3b5aed0", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15924,10 +18087,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f054d44aefeb4137a93b3314", + "revision": "0888b0994a464c10ae179853", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15938,10 +18101,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "367cf99d9594437b9d8b473e", + "revision": "51e57b482c584e6c8f365d9a", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15953,12 +18116,15 @@ "dateValidity": 1678668725687, "totalValue": 16.26, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } }, - "revision": "f8725bf7aa0241eba2ab8331", + "revision": "5f63629d9bc945a6a6fb686e", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15970,10 +18136,10 @@ "symbol": "IVIP", "value": 77.94 }, - "revision": "fad1c5c000b9409486e90ef8", + "revision": "7931951af42e4c2c8581209e", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15981,10 +18147,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f37af56c2edf4ccf8ad16e78", + "revision": "50621f4e4c534ae0a748122b", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -15992,12 +18158,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "41f31733b0344708a2178c6c", + "revision": "16547301fe844972a88f372d", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -16012,22 +18178,37 @@ "total_amount": 150, "history_id": 1684102091531, "id": 1684102091531, - "date_created": "2023-05-14T22:08:11.531Z", - "date_last_updated": "2023-05-14T22:23:10.115Z", - "date_of_expiration": "2023-06-13T22:08:11.531Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-14T22:23:10.115Z", - "money_release_date": "2023-05-14T22:23:10.115Z", + "date_created": { + "type": 6, + "value": 1684102091531 + }, + "date_last_updated": { + "type": 6, + "value": 1684102990115 + }, + "date_of_expiration": { + "type": 6, + "value": 1686694091531 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684102990115 + }, + "money_release_date": { + "type": 6, + "value": 1684102990115 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "3c60f6bbe5ab466880b177d5", + "revision": "07765c4459354ab2a058e1f5", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -16035,10 +18216,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0150.9473.3487.9762-98", - "revision": "ea4768219a5745bb84d152da", + "revision": "e980f814ba5142e7843fc7ef", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820502, + "modified": 1701465820502 } }, { @@ -16056,12 +18237,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "1daf48e8271d4597b2c17ad4", + "revision": "ff4bb77a75aa4a7285a57c96", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16077,9 +18258,18 @@ "original_amount": 730609, "total_amount": 730609, "id": 1684624257232, - "date_created": "2023-05-20T23:10:57.232Z", - "date_last_updated": "2023-05-20T23:10:57.232Z", - "date_of_expiration": "2023-05-20T23:10:57.232Z", + "date_created": { + "type": 6, + "value": 1684624257232 + }, + "date_last_updated": { + "type": 6, + "value": 1684624257232 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624257232 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16088,10 +18278,10 @@ "history_id": 1684624257232, "description": "Compra de 730.609,00 IVIP por 150,00 BRL" }, - "revision": "dbcf67c8cec64442be7905a4", + "revision": "6eb933f9668d486988074608", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16109,12 +18299,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "7606c68c33404e0085af3571", + "revision": "7f7ae100f56b419c893f6e93", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16129,9 +18319,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687113576960, - "date_created": "2023-06-18T18:39:36.960Z", - "date_last_updated": "2023-06-18T18:39:36.960Z", - "date_of_expiration": "2023-12-18T18:39:36.960Z", + "date_created": { + "type": 6, + "value": 1687113576960 + }, + "date_last_updated": { + "type": 6, + "value": 1687113576960 + }, + "date_of_expiration": { + "type": 6, + "value": 1702924776960 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16140,10 +18339,10 @@ "history_id": 1687113576960, "wasDebited": true }, - "revision": "f4faffcfb36244f9b07dfbe3", + "revision": "394614e05a124a8f969535cf", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16151,10 +18350,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/18/2023", - "revision": "5d12cd62cf6a40dc927a4692", + "revision": "f0054c75fd194401a07a7188", "revision_nr": 1, - "created": 1701463509529, - "modified": 1701463509529 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16172,12 +18371,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "9b0b28e48fe541a08415493c", + "revision": "6ecc3e685cdc45d3bc230b18", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16192,9 +18391,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687113714689, - "date_created": "2023-06-18T18:41:54.689Z", - "date_last_updated": "2023-06-18T18:41:54.689Z", - "date_of_expiration": "2024-06-18T18:41:54.689Z", + "date_created": { + "type": 6, + "value": 1687113714689 + }, + "date_last_updated": { + "type": 6, + "value": 1687113714689 + }, + "date_of_expiration": { + "type": 6, + "value": 1718736114689 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16202,10 +18410,10 @@ "currency_id": "IVIP", "history_id": 1687113714689 }, - "revision": "535cf78c630d4dd5b0a1b407", + "revision": "1e039c2b91dd4ef48cf89ece", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16213,10 +18421,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/18/2024", - "revision": "2a4af757ec1a4f06bbbf389b", + "revision": "fd8aad25eb6a427eb79912ba", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16234,12 +18442,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "da72fe8fe3a14a2dbde30b28", + "revision": "5cb593e9e7d248d48f2cedfd", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16254,9 +18462,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687113759469, - "date_created": "2023-06-18T18:42:39.469Z", - "date_last_updated": "2023-06-18T18:42:39.469Z", - "date_of_expiration": "2025-06-18T18:42:39.469Z", + "date_created": { + "type": 6, + "value": 1687113759469 + }, + "date_last_updated": { + "type": 6, + "value": 1687113759469 + }, + "date_of_expiration": { + "type": 6, + "value": 1750272159469 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16264,10 +18481,10 @@ "currency_id": "IVIP", "history_id": 1687113759469 }, - "revision": "ad8188202a184a16903f62ec", + "revision": "e4c6b53f1bfc435789d3c2a7", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16275,10 +18492,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/18/2025", - "revision": "d4756f786950429cbfecb9a4", + "revision": "f9554cb9d84647ccb64f0cc1", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16296,12 +18513,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "5f6c63d0a59147c297373d49", + "revision": "07a62049a69c4b6889d7190b", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16316,9 +18533,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687313544564, - "date_created": "2023-06-21T02:12:24.564Z", - "date_last_updated": "2023-06-21T02:12:24.564Z", - "date_of_expiration": "2025-06-21T02:12:24.564Z", + "date_created": { + "type": 6, + "value": 1687313544564 + }, + "date_last_updated": { + "type": 6, + "value": 1687313544564 + }, + "date_of_expiration": { + "type": 6, + "value": 1750471944564 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16326,10 +18552,10 @@ "currency_id": "IVIP", "history_id": 1687313544564 }, - "revision": "7c242cf7cc074e2a80e563d0", + "revision": "270d22b64eb342329c2b2665", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16337,10 +18563,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2025", - "revision": "5a08146a39284ca7a79a5e8f", + "revision": "3e545402e23f435eb1eec516", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16358,12 +18584,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "e7916efb9d554451953cdc8f", + "revision": "8fc747775cf644bfb358018d", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16378,9 +18604,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1687313588225, - "date_created": "2023-06-21T02:13:08.225Z", - "date_last_updated": "2023-06-21T02:13:08.225Z", - "date_of_expiration": "2024-06-21T02:13:08.225Z", + "date_created": { + "type": 6, + "value": 1687313588225 + }, + "date_last_updated": { + "type": 6, + "value": 1687313588225 + }, + "date_of_expiration": { + "type": 6, + "value": 1718935988225 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16388,10 +18623,10 @@ "currency_id": "IVIP", "history_id": 1687313588225 }, - "revision": "dc222ab0bd4e4903b8a98c60", + "revision": "01243cae902b4ea6ae2b607f", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16399,10 +18634,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", - "revision": "e43546ea598a4c68a0ae8057", + "revision": "de6c98e25a2e43798ac371b4", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16420,12 +18655,12 @@ "installment_amount": 713651, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "4730ac8a13de4cf5a8c4344c", + "revision": "44482841b8d04c28aa8d8c37", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16440,9 +18675,18 @@ "original_amount": 713651, "total_amount": 713651, "id": 1688595606369, - "date_created": "2023-07-05T22:20:06.369Z", - "date_last_updated": "2023-07-05T22:20:06.369Z", - "date_of_expiration": "2023-08-05T22:20:06.369Z", + "date_created": { + "type": 6, + "value": 1688595606369 + }, + "date_last_updated": { + "type": 6, + "value": 1688595606369 + }, + "date_of_expiration": { + "type": 6, + "value": 1691274006369 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16450,10 +18694,10 @@ "currency_id": "IVIP", "history_id": 1688595606369 }, - "revision": "f7b49a52524d4325ba88fc19", + "revision": "fc2c307fc4354b82bc55ab9b", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16461,10 +18705,10 @@ "content": { "type": "STRING", "value": "Investimento de 713.651,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", - "revision": "3d92b30f3b7041b6b0fe0910", + "revision": "473787768d3043759a2c0ab8", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16480,12 +18724,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "2bc8e30cb9854de19f38522c", + "revision": "4de423a2eba24d208a0aad99", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16493,10 +18737,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/015094733487976298/history/1691274110709", - "revision": "5fc090510a404eebaf48d8e3", + "revision": "1ef173ec033d47e884fc4f59", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16511,9 +18755,18 @@ "total_amount": 727924.02, "id": 1691274110709, "history_id": 1691274110709, - "date_created": "2023-08-05T22:21:50.709Z", - "date_last_updated": "2023-08-05T22:21:50.709Z", - "date_of_expiration": "2023-08-05T22:21:50.709Z", + "date_created": { + "type": 6, + "value": 1691274110709 + }, + "date_last_updated": { + "type": 6, + "value": 1691274110709 + }, + "date_of_expiration": { + "type": 6, + "value": 1691274110709 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16521,10 +18774,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "48fe71f4b993467c9a416fa8", + "revision": "162bfac1c4d34b6a880231e4", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16532,10 +18785,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 713.651,00 IVIP com um rendimento de +14.273,02 IVIP (2,00%)", - "revision": "aa005b1263a54262bc7baf90", + "revision": "5c792473edc5409ba179d8a2", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16543,10 +18796,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "011a34b6b52b4661817af528", + "revision": "70ff73a351b24b6691ce3c00", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16554,10 +18807,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2017cf4e25ac48fe9dabca03", + "revision": "87371c3fa3f64b0294a534b0", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16568,10 +18821,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "df1e788e5eb74a518173dfda", + "revision": "2e243a31c23b4757b1f5a456", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16583,12 +18836,15 @@ "dateValidity": 1684102027322, "totalValue": 1.39, "currencyType": "USD", - "balancesModificacao": "2023-10-14T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } }, - "revision": "687ff6ce4127460abe7ede8b", + "revision": "d36a295e52364188b4528577", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16596,10 +18852,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "12b8d54431b74086a8b5d749", + "revision": "75532c3c861f485c958cb161", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16607,10 +18863,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d6f40e05965343e8b9f76d56", + "revision": "b0a107375a5e4e979e67e94f", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16618,10 +18874,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6e0d6299789241c3a54b6c74", + "revision": "3b8ca280c03a471e859b726c", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16632,10 +18888,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "a4533bf629fe476ea135fb0b", + "revision": "dc08873c1ec545569ba2a99d", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16648,10 +18904,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "fbc2718e5d4745d581e0c465", + "revision": "4461751fed8c4d4db0fe1637", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16663,10 +18919,10 @@ "available": "0.00000000", "value": 0 }, - "revision": "d567fab8f75644f1922f2185", + "revision": "833f36a881ec41f5975d008a", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16678,10 +18934,10 @@ "available": "0.00000000", "value": 0 }, - "revision": "ddc72a75ac484849906a65ed", + "revision": "6d52154801cb417db234464d", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16689,10 +18945,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c22daa0a3eec4bf1925d2e5d", + "revision": "ad2db4a0e34b4496a0f248f5", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16700,12 +18956,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "527ee6081c8a475cbe38de9b", + "revision": "172c7a723bd347fd8460e41c", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16720,20 +18976,32 @@ "total_amount": 1000, "history_id": 1684198299992, "id": 1684198299992, - "date_created": "2023-05-16T00:51:39.992Z", - "date_last_updated": "2023-05-20T04:50:35.747Z", - "date_of_expiration": "2023-06-15T00:51:39.992Z", + "date_created": { + "type": 6, + "value": 1684198299992 + }, + "date_last_updated": { + "type": 6, + "value": 1684558235747 + }, + "date_of_expiration": { + "type": 6, + "value": 1686790299992 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-05-20T04:50:35.747Z", + "money_release_date": { + "type": 6, + "value": 1684558235747 + }, "money_release_status": "rejected" }, - "revision": "003bea610a1e402dab192052", + "revision": "66a8a674cccb49d3a621ef6a", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16741,10 +19009,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0164.7568.6934.0474-40", - "revision": "a24266e106e14a06a7d4dd7d", + "revision": "99ba3db1869a4867a8c8dda2", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16752,12 +19020,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "45f4831f386a41a5a2c16f3b", + "revision": "a4eeb9772e6f48f9bd40d954", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16772,22 +19040,37 @@ "total_amount": 1000, "history_id": 1684201414429, "id": 1684201414429, - "date_created": "2023-05-16T01:43:34.429Z", - "date_last_updated": "2023-05-16T14:08:50.715Z", - "date_of_expiration": "2023-06-15T01:43:34.429Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-16T14:08:50.715Z", - "money_release_date": "2023-05-16T14:08:50.715Z", + "date_created": { + "type": 6, + "value": 1684201414429 + }, + "date_last_updated": { + "type": 6, + "value": 1684246130715 + }, + "date_of_expiration": { + "type": 6, + "value": 1686793414429 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684246130715 + }, + "money_release_date": { + "type": 6, + "value": 1684246130715 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "32a9a1fd88e74c0aac315e2d", + "revision": "5caf864f37924d0f8a7f2d50", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16795,10 +19078,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0164.7568.6934.0474-40", - "revision": "d1aadc5bb3d64bff86ff6884", + "revision": "a1de140500534678acafe191", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16806,12 +19089,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "b5375e42e4ee431a85fa8517", + "revision": "67f090e89a674aaabff56345", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16826,22 +19109,37 @@ "total_amount": 600, "history_id": 1684440954255, "id": 1684440954255, - "date_created": "2023-05-18T20:15:54.255Z", - "date_last_updated": "2023-05-18T21:09:15.806Z", - "date_of_expiration": "2023-06-17T20:15:54.255Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-18T21:09:15.806Z", - "money_release_date": "2023-05-18T21:09:15.806Z", + "date_created": { + "type": 6, + "value": 1684440954255 + }, + "date_last_updated": { + "type": 6, + "value": 1684444155806 + }, + "date_of_expiration": { + "type": 6, + "value": 1687032954255 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684444155806 + }, + "money_release_date": { + "type": 6, + "value": 1684444155806 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "8090edd645d042878f1bad08", + "revision": "0bdc0e20482c4387b91ebae0", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16849,10 +19147,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 600,00 para a carteira iVip 0164.7568.6934.0474-40", - "revision": "2635051cd563434196dfb9e0", + "revision": "d75b7b13dc314006aa1484d8", "revision_nr": 1, - "created": 1701463509530, - "modified": 1701463509530 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16870,12 +19168,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b8586c94bf2249adb61cd5c5", + "revision": "99868b43d30244cd80f1e86a", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16891,9 +19189,18 @@ "original_amount": 7793170, "total_amount": 7793170, "id": 1684626826140, - "date_created": "2023-05-20T23:53:46.140Z", - "date_last_updated": "2023-05-20T23:53:46.140Z", - "date_of_expiration": "2023-05-20T23:53:46.140Z", + "date_created": { + "type": 6, + "value": 1684626826140 + }, + "date_last_updated": { + "type": 6, + "value": 1684626826140 + }, + "date_of_expiration": { + "type": 6, + "value": 1684626826140 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -16902,10 +19209,10 @@ "history_id": 1684626826140, "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" }, - "revision": "89d8dfb3170c48d5af385208", + "revision": "56d2c93f60974ce2920b2ac2", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16913,12 +19220,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "42cc7844b9fc49079cbcf796", + "revision": "724af4c8777d4d7eb0b7fa27", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16933,18 +19240,27 @@ "total_amount": 788564, "history_id": 1685396913259, "id": 1685396913259, - "date_created": "2023-05-29T21:48:33.259Z", - "date_last_updated": "2023-05-29T21:48:33.259Z", - "date_of_expiration": "2023-05-29T21:48:33.259Z", + "date_created": { + "type": 6, + "value": 1685396913259 + }, + "date_last_updated": { + "type": 6, + "value": 1685396913259 + }, + "date_of_expiration": { + "type": 6, + "value": 1685396913259 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "955ce1698645462496102e0f", + "revision": "2dc33a9a360d4e3b8c2cc6db", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16952,10 +19268,10 @@ "content": { "type": "STRING", "value": "Saque de 788.564,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", - "revision": "fc3396e466b243b9b092c9b8", + "revision": "ecc140e783c449ae904f8116", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16963,12 +19279,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "a838e9b1278f4326a017bc40", + "revision": "b3380ee611f145ddb2903da4", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -16983,20 +19299,32 @@ "total_amount": 788564, "history_id": 1685470076106, "id": 1685470076106, - "date_created": "2023-05-30T18:07:56.106Z", - "date_last_updated": "2023-05-31T12:12:11.930Z", - "date_of_expiration": "2023-05-30T18:07:56.106Z", + "date_created": { + "type": 6, + "value": 1685470076106 + }, + "date_last_updated": { + "type": 6, + "value": 1685535131930 + }, + "date_of_expiration": { + "type": 6, + "value": 1685470076106 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": "2023-05-31T12:12:11.930Z", + "money_release_date": { + "type": 6, + "value": 1685535131930 + }, "money_release_status": "rejected" }, - "revision": "d8b78186076949fb9eb53908", + "revision": "e3cd35aeccdc4da5ad257a3f", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17004,10 +19332,10 @@ "content": { "type": "STRING", "value": "Saque de 788.564,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", - "revision": "f3023326777e469d8be82889", + "revision": "8f5ce38b0a974e8fba4a68ac", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17015,12 +19343,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "d301d606b0904f51beb67fee", + "revision": "3169ebeaeabe414a85256579", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17035,22 +19363,37 @@ "total_amount": 7793170, "history_id": 1685470615415, "id": 1685470615415, - "date_created": "2023-05-30T18:16:55.415Z", - "date_last_updated": "2023-05-31T12:45:25.835Z", - "date_of_expiration": "2023-05-30T18:16:55.415Z", + "date_created": { + "type": 6, + "value": 1685470615415 + }, + "date_last_updated": { + "type": 6, + "value": 1685537125835 + }, + "date_of_expiration": { + "type": 6, + "value": 1685470615415 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-05-31T12:45:25.835Z", - "money_release_date": "2023-05-31T12:45:25.835Z", + "date_approved": { + "type": 6, + "value": 1685537125835 + }, + "money_release_date": { + "type": 6, + "value": 1685537125835 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "ffae6053e7a74d9ea42f453a", + "revision": "b4b71d2b034e48b480234907", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17058,10 +19401,10 @@ "content": { "type": "STRING", "value": "Saque de 7.793.170,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", - "revision": "8790059bb3e14585bc5757f0", + "revision": "dc42ad96c18c4951be9cd20b", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17069,12 +19412,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "1263b62a2cbb42e6972f0cda", + "revision": "c70213cc03544c558cd02efd", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17089,20 +19432,32 @@ "total_amount": 7793170, "history_id": 1685537035322, "id": 1685537035322, - "date_created": "2023-05-31T12:43:55.322Z", - "date_last_updated": "2023-05-31T12:44:28.819Z", - "date_of_expiration": "2023-05-31T12:43:55.322Z", + "date_created": { + "type": 6, + "value": 1685537035322 + }, + "date_last_updated": { + "type": 6, + "value": 1685537068819 + }, + "date_of_expiration": { + "type": 6, + "value": 1685537035322 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": "2023-05-31T12:44:28.819Z", + "money_release_date": { + "type": 6, + "value": 1685537068819 + }, "money_release_status": "rejected" }, - "revision": "5eb30ad126f448d18cfa3ac3", + "revision": "7999c419a7d24c6994a5bec1", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17110,10 +19465,10 @@ "content": { "type": "STRING", "value": "Saque de 7.793.170,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", - "revision": "0ea33f2f26e548e894ec5c77", + "revision": "2603656fd5be403eb74956e9", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17121,10 +19476,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "295d734de87740d3bcc92f96", + "revision": "7311b14bb95849efb2331488", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17132,10 +19487,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5c3b307f360649aa9cbb7dfb", + "revision": "4916385f8e2e4f48870b7e9c", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17146,10 +19501,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "7cc41fa7c3e945cda5bf84e4", + "revision": "bd0fc6091b42477793e36c66", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17162,10 +19517,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "d417b6ea62a8455d82213e34", + "revision": "4099ecfcd1c04b629783284f", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17173,10 +19528,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d6850f801b534cb78298fb31", + "revision": "28b3328e6a4b4fdaa19beca1", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17184,10 +19539,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b0a4b86f24e548769861eec5", + "revision": "794fdd6d87d746b5aa897fe6", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17195,10 +19550,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ad68acae2751415995193854", + "revision": "a0a5c999f0f64668ba1bc743", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17209,10 +19564,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "68940e2aceca4e6dbcddf9aa", + "revision": "ec6a33a21eb749278abc00c1", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17225,10 +19580,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "91d3b01a1e1240de9281cc54", + "revision": "851a52590beb41699896ab7b", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17240,10 +19595,10 @@ "symbol": "IVIP", "value": 0.000077 }, - "revision": "2fe73fe291b842a49a7d8412", + "revision": "cd4100f73d1e4d8e9d5be8e4", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17251,10 +19606,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6170d598eeb74fe4af5114a4", + "revision": "1c60424236bf401785c36345", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820503, + "modified": 1701465820503 } }, { @@ -17262,12 +19617,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "fe9c04120e574fa8b7e870e1", + "revision": "83e7f1effde644db8a9b53ed", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17282,22 +19637,37 @@ "total_amount": 500, "history_id": 1683998693589, "id": 1683998693589, - "date_created": "2023-05-13T17:24:53.589Z", - "date_last_updated": "2023-05-13T17:52:34.399Z", - "date_of_expiration": "2023-06-12T17:24:53.589Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-13T17:52:34.399Z", - "money_release_date": "2023-05-13T17:52:34.399Z", + "date_created": { + "type": 6, + "value": 1683998693589 + }, + "date_last_updated": { + "type": 6, + "value": 1684000354399 + }, + "date_of_expiration": { + "type": 6, + "value": 1686590693589 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684000354399 + }, + "money_release_date": { + "type": 6, + "value": 1684000354399 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "f657a87d808d49a2a52b1db5", + "revision": "93f4b87f79184c6f82fb241d", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17305,10 +19675,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "3c614c93cefc48bd9f604a1e", + "revision": "f83ba09fcd08441ab426564f", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17320,10 +19690,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "9318f76a4c4f4065bc3fcb44", + "revision": "9e9d1eff40714e07a909b1d3", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17331,10 +19701,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2d38188cd1fc45fca4b130f0", + "revision": "4f0812af7e4a4678a62425ba", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17342,10 +19712,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "c9f939c9387b45798902b52a", + "revision": "a4434bf4064f4b39b640ab9e", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17360,19 +19730,28 @@ "total_amount": 1100, "history_id": 1684003059388, "id": 1684003059388, - "date_created": "2023-05-13T18:37:39.388Z", - "date_last_updated": "2023-05-13T18:37:39.388Z", - "date_of_expiration": "2023-06-12T18:37:39.388Z", + "date_created": { + "type": 6, + "value": 1684003059388 + }, + "date_last_updated": { + "type": 6, + "value": 1684003059388 + }, + "date_of_expiration": { + "type": 6, + "value": 1686595059388 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "9ec7f4afaba14ce28539b2a2", + "revision": "420cc34b63ef4065b7672c40", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17380,10 +19759,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "e25e985bd9a84031bf63e399", + "revision": "c270191acc924a368fc17dde", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17401,12 +19780,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b53a5d6a6bb041ddb59c6bb0", + "revision": "d7261bb4a3144b6faa16f384", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17422,9 +19801,18 @@ "original_amount": 8106588, "total_amount": 8106588, "id": 1684018960001, - "date_created": "2023-05-13T23:02:40.001Z", - "date_last_updated": "2023-05-13T23:02:40.001Z", - "date_of_expiration": "2023-05-13T23:02:40.001Z", + "date_created": { + "type": 6, + "value": 1684018960001 + }, + "date_last_updated": { + "type": 6, + "value": 1684018960001 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018960001 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17433,10 +19821,10 @@ "history_id": 1684018960001, "description": "Compra de 8.106.588,00 IVIP por 1.500,00 BRL" }, - "revision": "6c5fba46e5104c1b98288942", + "revision": "2e110b4ddae449bb9701e5d9", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17444,12 +19832,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "dae6e339ca394ca4b5607a63", + "revision": "dd6c357fd1904dcc9245af5a", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17464,22 +19852,37 @@ "total_amount": 100, "history_id": 1684106238297, "id": 1684106238297, - "date_created": "2023-05-14T23:17:18.297Z", - "date_last_updated": "2023-05-16T12:14:40.222Z", - "date_of_expiration": "2023-06-13T23:17:18.297Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-16T12:14:40.222Z", - "money_release_date": "2023-05-16T12:14:40.222Z", + "date_created": { + "type": 6, + "value": 1684106238297 + }, + "date_last_updated": { + "type": 6, + "value": 1684239280222 + }, + "date_of_expiration": { + "type": 6, + "value": 1686698238297 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684239280222 + }, + "money_release_date": { + "type": 6, + "value": 1684239280222 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "873db6724a5b4be6bf8d312f", + "revision": "e1a9582a8fe448518cdfc913", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17487,10 +19890,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "9de52e6ad2a442928d173eeb", + "revision": "6b91ca8460804817a2b41feb", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17508,12 +19911,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d7c45cb508fd4b1181797fff", + "revision": "bf000f5796f44e48b1348453", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17529,9 +19932,18 @@ "original_amount": 487804, "total_amount": 487804, "id": 1684631103258, - "date_created": "2023-05-21T01:05:03.258Z", - "date_last_updated": "2023-05-21T01:05:03.258Z", - "date_of_expiration": "2023-05-21T01:05:03.258Z", + "date_created": { + "type": 6, + "value": 1684631103258 + }, + "date_last_updated": { + "type": 6, + "value": 1684631103258 + }, + "date_of_expiration": { + "type": 6, + "value": 1684631103258 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17540,10 +19952,10 @@ "history_id": 1684631103258, "description": "Compra de 487.804,00 IVIP por 100,00 BRL" }, - "revision": "47a680b99c934e6e83a31d82", + "revision": "2ba8d9460eae452ea25df69a", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17551,12 +19963,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "38a05e74274d4d1db0a49fe8", + "revision": "881330e224a24a96a3d16898", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17571,18 +19983,27 @@ "total_amount": 4297196, "history_id": 1685388293760, "id": 1685388293760, - "date_created": "2023-05-29T19:24:53.760Z", - "date_last_updated": "2023-05-29T19:24:53.760Z", - "date_of_expiration": "2023-05-29T19:24:53.760Z", + "date_created": { + "type": 6, + "value": 1685388293760 + }, + "date_last_updated": { + "type": 6, + "value": 1685388293760 + }, + "date_of_expiration": { + "type": 6, + "value": 1685388293760 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "70485247ba774f1e842d416c", + "revision": "6aa17fc807414ceda1bc078f", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17590,10 +20011,10 @@ "content": { "type": "STRING", "value": "Saque de 4.297.196,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "517dbfba22f742cdb5e8d687", + "revision": "c7ebd7debf914f21b3968dbe", "revision_nr": 1, - "created": 1701463509531, - "modified": 1701463509531 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17601,12 +20022,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "bcf1de8ec7a54e25bf69ed55", + "revision": "6f3280af207a4b43888c850f", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17621,22 +20042,37 @@ "total_amount": 250, "history_id": 1686323712726, "id": 1686323712726, - "date_created": "2023-06-09T15:15:12.726Z", - "date_last_updated": "2023-06-12T17:38:39.918Z", - "date_of_expiration": "2023-07-09T15:15:12.726Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-06-12T17:38:39.918Z", - "money_release_date": "2023-06-12T17:38:39.918Z", + "date_created": { + "type": 6, + "value": 1686323712726 + }, + "date_last_updated": { + "type": 6, + "value": 1686591519918 + }, + "date_of_expiration": { + "type": 6, + "value": 1688915712726 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686591519918 + }, + "money_release_date": { + "type": 6, + "value": 1686591519918 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "768b3571d8cb4ae1be7324e8", + "revision": "9dd89ae399b94cc183742fe2", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17644,10 +20080,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "001935c1bb3342f5a739f7f5", + "revision": "d318bc822c594e648bae044f", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17667,12 +20103,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d9294690cb9d437cbed7948b", + "revision": "9edc5aa025624993bba92e53", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17689,9 +20125,18 @@ "total_amount": 220, "id": 1686591730981, "contract_id": "1684003059388", - "date_created": "2023-06-12T17:42:10.981Z", - "date_last_updated": "2023-06-12T17:42:10.981Z", - "date_of_expiration": "2023-06-12T17:42:10.981Z", + "date_created": { + "type": 6, + "value": 1686591730981 + }, + "date_last_updated": { + "type": 6, + "value": 1686591730981 + }, + "date_of_expiration": { + "type": 6, + "value": 1686591730981 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -17699,10 +20144,10 @@ "currency_id": "BRL", "history_id": 1686591730981 }, - "revision": "f746f72f6ee64b3b9b68dc7a", + "revision": "f8bb7b694f624217900e8526", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17710,10 +20155,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "61a57d3724fe436bbc2f7acf", + "revision": "0fc4cd75548c46a9a140845e", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17721,12 +20166,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "e64b1fd6d1a440d48915dfb2", + "revision": "dd7d2fb87dff4392b1c0c3d7", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17741,22 +20186,37 @@ "total_amount": 200, "history_id": 1688314787645, "id": 1688314787645, - "date_created": "2023-07-02T16:19:47.645Z", - "date_last_updated": "2023-07-02T16:23:34.952Z", - "date_of_expiration": "2023-08-01T16:19:47.645Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-02T16:23:34.952Z", - "money_release_date": "2023-07-02T16:23:34.952Z", + "date_created": { + "type": 6, + "value": 1688314787645 + }, + "date_last_updated": { + "type": 6, + "value": 1688315014952 + }, + "date_of_expiration": { + "type": 6, + "value": 1690906787645 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1688315014952 + }, + "money_release_date": { + "type": 6, + "value": 1688315014952 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "344a652522af4f96812662d5", + "revision": "27d790dbd06e4f4da1f6cd95", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17764,10 +20224,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "c03d4c9556e04742941dd529", + "revision": "b6917cbab761455a9c7cdd17", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17787,12 +20247,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "c41e6756babc47689738f0ce", + "revision": "d0c24cc7c105478ba57d8f4d", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17809,9 +20269,18 @@ "total_amount": 220, "id": 1688315152944, "contract_id": "1684003059388", - "date_created": "2023-07-02T16:25:52.944Z", - "date_last_updated": "2023-07-02T16:25:52.944Z", - "date_of_expiration": "2023-07-02T16:25:52.944Z", + "date_created": { + "type": 6, + "value": 1688315152944 + }, + "date_last_updated": { + "type": 6, + "value": 1688315152944 + }, + "date_of_expiration": { + "type": 6, + "value": 1688315152944 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -17819,10 +20288,10 @@ "currency_id": "BRL", "history_id": 1688315152944 }, - "revision": "5f7ecdcbe4e94e2e813d4c49", + "revision": "5a8670ea5a174261aa5cccbc", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17830,10 +20299,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "45152eb73d7d40948f196996", + "revision": "2518467f8c304f059a9be5be", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17851,12 +20320,12 @@ "installment_amount": 344736, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "c5de2c343fa14371b5d95502", + "revision": "35b808d0115e40f6b2659bae", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17871,9 +20340,18 @@ "original_amount": 344736, "total_amount": 344736, "id": 1688426195717, - "date_created": "2023-07-03T23:16:35.717Z", - "date_last_updated": "2023-07-03T23:16:35.717Z", - "date_of_expiration": "2023-08-03T23:16:35.717Z", + "date_created": { + "type": 6, + "value": 1688426195717 + }, + "date_last_updated": { + "type": 6, + "value": 1688426195717 + }, + "date_of_expiration": { + "type": 6, + "value": 1691104595717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -17882,10 +20360,10 @@ "history_id": 1688426195717, "wasDebited": true }, - "revision": "e9e3072e95c74c3bbcc7270b", + "revision": "dd034bae33284e9b9e469237", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17893,10 +20371,10 @@ "content": { "type": "STRING", "value": "Investimento de 344.736,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "94003390697b47f093d544c8", + "revision": "89cb397642fc4041b9410456", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17904,12 +20382,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "265afeaf04c94d779adcaebd", + "revision": "459d9298033b4290be2a02e7", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17924,22 +20402,37 @@ "total_amount": 430, "history_id": 1689095226322, "id": 1689095226322, - "date_created": "2023-07-11T17:07:06.322Z", - "date_last_updated": "2023-07-11T18:16:10.658Z", - "date_of_expiration": "2023-08-10T17:07:06.322Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-11T18:16:10.658Z", - "money_release_date": "2023-07-11T18:16:10.658Z", + "date_created": { + "type": 6, + "value": 1689095226322 + }, + "date_last_updated": { + "type": 6, + "value": 1689099370658 + }, + "date_of_expiration": { + "type": 6, + "value": 1691687226322 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689099370658 + }, + "money_release_date": { + "type": 6, + "value": 1689099370658 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "e2c34097cfe842fa9d574fcd", + "revision": "cf96e2b24d434b01b4a69f52", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -17947,10 +20440,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 430,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "b6d1336868bc4a64a416ddf7", + "revision": "8bf00fba4e604f159a1628fb", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820504, + "modified": 1701465820504 } }, { @@ -17968,12 +20461,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "0cbef56a43fa489eb63bd7ff", + "revision": "d62780a5aeab4096a51038cf", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -17989,9 +20482,18 @@ "original_amount": 284782, "total_amount": 284782, "id": 1689349679189, - "date_created": "2023-07-14T15:47:59.189Z", - "date_last_updated": "2023-07-14T15:47:59.189Z", - "date_of_expiration": "2023-07-14T15:47:59.189Z", + "date_created": { + "type": 6, + "value": 1689349679189 + }, + "date_last_updated": { + "type": 6, + "value": 1689349679189 + }, + "date_of_expiration": { + "type": 6, + "value": 1689349679189 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18000,10 +20502,10 @@ "history_id": 1689349679189, "description": "Compra de 284.782,00 IVIP por 440,00 BRL" }, - "revision": "a5b2e48fcb204f9baf7ffb8c", + "revision": "f0fa55f3b27f465a8adb84cd", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18011,12 +20513,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "f368131466ff430cabcd666a", + "revision": "a5e57b5ff4584c8180b7e9f0", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18031,22 +20533,37 @@ "total_amount": 284782, "history_id": 1689349971065, "id": 1689349971065, - "date_created": "2023-07-14T15:52:51.065Z", - "date_last_updated": "2023-07-14T15:54:58.919Z", - "date_of_expiration": "2023-07-14T15:52:51.065Z", + "date_created": { + "type": 6, + "value": 1689349971065 + }, + "date_last_updated": { + "type": 6, + "value": 1689350098919 + }, + "date_of_expiration": { + "type": 6, + "value": 1689349971065 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-07-14T15:54:58.919Z", - "money_release_date": "2023-07-14T15:54:58.919Z", + "date_approved": { + "type": 6, + "value": 1689350098919 + }, + "money_release_date": { + "type": 6, + "value": 1689350098919 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "41a0f9cb341540cd9e052fcf", + "revision": "f601cb28d3c7440691308401", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18054,10 +20571,10 @@ "content": { "type": "STRING", "value": "Saque de 284.782,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "7b1e38b39e51406081267b07", + "revision": "a997fa2b415840c7a7e6f407", "revision_nr": 1, - "created": 1701463509532, - "modified": 1701463509532 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18075,12 +20592,12 @@ "installment_amount": 500000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "1faeb6a5dd4e486da690a607", + "revision": "39f7f058eb4c4dde9ab74c51", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18095,9 +20612,18 @@ "original_amount": 500000, "total_amount": 500000, "id": 1689794977578, - "date_created": "2023-07-19T19:29:37.578Z", - "date_last_updated": "2023-07-19T19:29:37.578Z", - "date_of_expiration": "2025-07-19T19:29:37.578Z", + "date_created": { + "type": 6, + "value": 1689794977578 + }, + "date_last_updated": { + "type": 6, + "value": 1689794977578 + }, + "date_of_expiration": { + "type": 6, + "value": 1752953377578 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18105,10 +20631,10 @@ "currency_id": "IVIP", "history_id": 1689794977578 }, - "revision": "b5ee42c9b599409a8b8dc854", + "revision": "66b5db1d6af4463fb5bedbf5", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18116,10 +20642,10 @@ "content": { "type": "STRING", "value": "Investimento de 500.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/19/2025", - "revision": "337cc507fc5a43b99e33c0bc", + "revision": "ba04229a12014f80b2079d66", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18127,12 +20653,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "32ea1a3d54cd4cdb9706212c", + "revision": "8464008471f348f4b1786d31", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18147,18 +20673,27 @@ "total_amount": 345419, "history_id": 1689796488476, "id": 1689796488476, - "date_created": "2023-07-19T19:54:48.476Z", - "date_last_updated": "2023-07-19T19:54:48.476Z", - "date_of_expiration": "2023-07-19T19:54:48.476Z", + "date_created": { + "type": 6, + "value": 1689796488476 + }, + "date_last_updated": { + "type": 6, + "value": 1689796488476 + }, + "date_of_expiration": { + "type": 6, + "value": 1689796488476 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "ce594d36a0314a3fb604066f", + "revision": "3139badb6bc74cd3a3207ed6", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18166,10 +20701,10 @@ "content": { "type": "STRING", "value": "Saque de 345.419,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "7b678187a6264d718b51503a", + "revision": "d55e4cf66e574fa4804b60c2", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18185,12 +20720,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "f75ef736b9c3466698ff4967", + "revision": "5ac30e2b6588418fa9a82e2d", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18198,10 +20733,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1690130150231", - "revision": "d3796a52deeb457899e7d13a", + "revision": "fb40a9b8cc9c48809e1da84e", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18216,9 +20751,18 @@ "total_amount": 1908099, "id": 1690130150231, "history_id": 1690130150231, - "date_created": "2023-07-23T16:35:50.231Z", - "date_last_updated": "2023-07-23T16:35:50.231Z", - "date_of_expiration": "2023-07-23T16:35:50.231Z", + "date_created": { + "type": 6, + "value": 1690130150231 + }, + "date_last_updated": { + "type": 6, + "value": 1690130150231 + }, + "date_of_expiration": { + "type": 6, + "value": 1690130150231 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -18226,10 +20770,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "b093b268793a4378ad617ea7", + "revision": "d0985d36c8d2483dbaf3c206", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18237,10 +20781,10 @@ "content": { "type": "STRING", "value": "Saque de 1.908.099,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "3e0cd52a95694619abf5d34a", + "revision": "30d8a4ce8a61402a837dd9ee", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18256,12 +20800,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "fc2e19469ea24a29bde3ab06", + "revision": "7d09a48dd5ad4521918b25b3", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18269,10 +20813,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1690225429559", - "revision": "96400fc0ac794c5394eb2d09", + "revision": "a6b74e858f204b97813cf2c6", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18287,9 +20831,18 @@ "total_amount": 1829159, "id": 1690225429559, "history_id": 1690225429559, - "date_created": "2023-07-24T19:03:49.559Z", - "date_last_updated": "2023-07-24T19:03:49.559Z", - "date_of_expiration": "2023-07-24T19:03:49.559Z", + "date_created": { + "type": 6, + "value": 1690225429559 + }, + "date_last_updated": { + "type": 6, + "value": 1690225429559 + }, + "date_of_expiration": { + "type": 6, + "value": 1690225429559 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -18297,10 +20850,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "0266529cb11740d5a1f086e6", + "revision": "506239df13b84951b0bf20b6", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18308,10 +20861,10 @@ "content": { "type": "STRING", "value": "Saque de 1.829.159,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "072d3550ae794c5d994d15ca", + "revision": "48c0d33b262d4e02821d6a51", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18327,12 +20880,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "c55f098720064ef1872650ad", + "revision": "35a1ce3fce754e2b88187216", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18340,10 +20893,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1691104619419", - "revision": "7a0660a1b4aa4dfa9995f750", + "revision": "a3700491255747e2bd9764ed", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18358,9 +20911,18 @@ "total_amount": 351630.72000000003, "id": 1691104619419, "history_id": 1691104619419, - "date_created": "2023-08-03T23:16:59.419Z", - "date_last_updated": "2023-08-03T23:16:59.419Z", - "date_of_expiration": "2023-08-03T23:16:59.419Z", + "date_created": { + "type": 6, + "value": 1691104619419 + }, + "date_last_updated": { + "type": 6, + "value": 1691104619419 + }, + "date_of_expiration": { + "type": 6, + "value": 1691104619419 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18368,10 +20930,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "a8eb46ce9b46411492bb2045", + "revision": "5ca94bb15d2c472b8119e83e", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18379,10 +20941,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 344.736,00 IVIP com um rendimento de +6.894,72 IVIP (2,00%)", - "revision": "f50f041102eb43fa9b09f904", + "revision": "0a84e23abb3f44a9b2d7cb91", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18398,12 +20960,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "24a57c7c009d4e4fb78ff11d", + "revision": "35d806e57eb34bd7a9455c8b", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18411,10 +20973,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1691246155706", - "revision": "cea0ed176987466bafdcc758", + "revision": "b8d1461b6b2f41f28ea216e2", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18429,9 +20991,18 @@ "total_amount": 4123251, "id": 1691246155706, "history_id": 1691246155706, - "date_created": "2023-08-05T14:35:55.706Z", - "date_last_updated": "2023-08-05T14:35:55.706Z", - "date_of_expiration": "2023-09-05T14:35:55.705Z", + "date_created": { + "type": 6, + "value": 1691246155706 + }, + "date_last_updated": { + "type": 6, + "value": 1691246155706 + }, + "date_of_expiration": { + "type": 6, + "value": 1693924555705 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18439,10 +21010,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c800e81cfcd8439ca5ef552e", + "revision": "78863a682fc64a5992623afb", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18450,10 +21021,10 @@ "content": { "type": "STRING", "value": "Investimento de 4.123.251,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", - "revision": "954c1bcb03fe4cb486a76a05", + "revision": "5abd2c4b1bcf4bbd97c4059f", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18462,12 +21033,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-14T17:56:58.629Z" + ".val": { + "type": 6, + "value": 1694714218629 + } }, - "revision": "0bc3f0d58cce44a6a3d2671a", + "revision": "65c7d9226c8946bea2b61934", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18483,12 +21057,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "8e760af176a14147bcf5cd8b", + "revision": "eedd10404942440f87e4162a", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18496,10 +21070,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1692122218629", - "revision": "375909bc7fbb49208ccc85a9", + "revision": "9477355a76a14731a2e0aca9", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18514,23 +21088,35 @@ "total_amount": 220, "id": 1692122218629, "history_id": 1692122218629, - "date_created": "2023-08-15T17:56:58.629Z", - "date_last_updated": "2023-08-15T18:13:29.335Z", + "date_created": { + "type": 6, + "value": 1692122218629 + }, + "date_last_updated": { + "type": 6, + "value": 1692123209335 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-15T18:13:29.335Z", - "money_release_date": "2023-08-15T18:13:29.335Z", + "date_approved": { + "type": 6, + "value": 1692123209335 + }, + "money_release_date": { + "type": 6, + "value": 1692123209335 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "2b1bbad6aaee4a359958aef5", + "revision": "6508d633a8c84c08bbf8e238", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18538,10 +21124,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 220,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "6d8ed7f0c3864279bab2ab92", + "revision": "e42c500d49994e3ab4ac0465", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18561,12 +21147,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "470cecb6586f42d39e19468c", + "revision": "31f7842085ef465aa284b227", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18583,9 +21169,18 @@ "total_amount": 220, "id": 1692210661601, "contract_id": "1684003059388", - "date_created": "2023-08-16T18:31:01.601Z", - "date_last_updated": "2023-08-16T18:31:01.601Z", - "date_of_expiration": "2023-08-16T18:31:01.601Z", + "date_created": { + "type": 6, + "value": 1692210661601 + }, + "date_last_updated": { + "type": 6, + "value": 1692210661601 + }, + "date_of_expiration": { + "type": 6, + "value": 1692210661601 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -18593,10 +21188,10 @@ "currency_id": "BRL", "history_id": 1692210661601 }, - "revision": "1e3d14af27c8453eb8a4cbe7", + "revision": "cc1cae5eb3444d208cbedd82", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18604,10 +21199,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "b6b681849bd449399afabd36", + "revision": "f6a1fa6ba8914595b65305f6", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18623,12 +21218,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "ca8d2bd4cd9e4708882aff70", + "revision": "ef74af9200fe4931985feabe", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18636,10 +21231,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1693924607794", - "revision": "d8910e782d8c43b7887dcfde", + "revision": "84d72165fccd41d3b768550e", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18654,9 +21249,18 @@ "total_amount": 4205716.02, "id": "1693924607794", "history_id": "1693924607794", - "date_created": "2023-09-05T14:36:47.794Z", - "date_last_updated": "2023-09-05T14:36:47.794Z", - "date_of_expiration": "2023-09-05T14:36:47.794Z", + "date_created": { + "type": 6, + "value": 1693924607794 + }, + "date_last_updated": { + "type": 6, + "value": 1693924607794 + }, + "date_of_expiration": { + "type": 6, + "value": 1693924607794 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -18664,10 +21268,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "55b917b266164f4dbba3c208", + "revision": "65c5d9741acc4b0483948526", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18675,10 +21279,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 4.123.251,00 IVIP com um rendimento de +82.465,02 IVIP (2,00%) - Y12XDT27", - "revision": "dfeeeca8b71c46e79634bdfa", + "revision": "aefbf6d275c54eaa89b780cc", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18690,10 +21294,10 @@ "label": "Taxa de 3,00%", "amount": 107596.65 }, - "revision": "0a9d24438c2e474586dbc30a", + "revision": "dbb8429f1203495cbf650aa0", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18710,10 +21314,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "f9ecd8a6e1fd4e8590e436e7", + "revision": "48472de11b4f41d9952b0b42", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18721,10 +21325,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694019139358", - "revision": "61c8ac20bde1411ba72e40c6", + "revision": "e35b11817a6b4b5eb82d3310", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18732,10 +21336,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b1c334e0def045708879d625", + "revision": "42d6052e75c74227988d0a99", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18750,24 +21354,39 @@ "total_amount": 3478958.35, "id": "1694019139358", "history_id": "1694019139358", - "date_created": "2023-09-06T16:52:19.358Z", - "date_last_updated": "2023-09-11T22:23:22.474Z", - "date_of_expiration": "2023-09-06T16:52:19.358Z", + "date_created": { + "type": 6, + "value": 1694019139358 + }, + "date_last_updated": { + "type": 6, + "value": 1694471002474 + }, + "date_of_expiration": { + "type": 6, + "value": 1694019139358 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": "2023-09-11T22:23:22.474Z", - "money_release_date": "2023-09-11T22:23:22.474Z", + "date_approved": { + "type": 6, + "value": 1694471002474 + }, + "money_release_date": { + "type": 6, + "value": 1694471002474 + }, "money_release_status": "drawee", "wasDebited": true }, - "revision": "3bb0f81d0449498895c7e948", + "revision": "dcceb77595dc4c0da583dae7", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18775,10 +21394,10 @@ "content": { "type": "STRING", "value": "Saque de 3.478.958,35 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "11ebe32121ea421ab0f148f2", + "revision": "9d22ed48d1454739b6a43b06", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820505, + "modified": 1701465820505 } }, { @@ -18794,12 +21413,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "91d3ae821d674358a3f62246", + "revision": "a9c63c5e7c5b4d21b78fa7aa", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -18807,10 +21426,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694530925477", - "revision": "29d3988b713b43eca4715a85", + "revision": "e1bd7ddbb0e64bbba3729511", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -18825,23 +21444,35 @@ "total_amount": 13248, "id": "1694530925477", "history_id": "1694530925477", - "date_created": "2023-09-12T15:02:05.477Z", - "date_last_updated": "2023-10-04T23:31:59.830Z", - "date_of_expiration": "2023-10-12T15:02:05.475Z", + "date_created": { + "type": 6, + "value": 1694530925477 + }, + "date_last_updated": { + "type": 6, + "value": 1696462319830 + }, + "date_of_expiration": { + "type": 6, + "value": 1697122925475 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": "2023-10-04T23:31:59.830Z", + "money_release_date": { + "type": 6, + "value": 1696462319830 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "1c81c831d3c24e2fb58c21fb", + "revision": "06e368f871a34e0283e7c16b", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -18849,10 +21480,10 @@ "content": { "type": "STRING", "value": "Investimento de 13.248,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 12/10/2023 - Y12XDT27", - "revision": "643753f326974ea489e11ac9", + "revision": "99538fe7f03849c4889cbb34", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -18861,12 +21492,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-12T22:54:09.010Z" + ".val": { + "type": 6, + "value": 1697151249010 + } }, - "revision": "2223932851594c7690cb0443", + "revision": "78c47198dacd4032a12cf9ca", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -18882,12 +21516,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "b6f0f014486e4dcf9d8e66c2", + "revision": "cccd2da3c4384da28732b290", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -18895,10 +21529,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694559249011", - "revision": "c87a7a696a174ccd92bbfcf5", + "revision": "f7337c17ddd64675a2e07292", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -18913,23 +21547,35 @@ "total_amount": 220, "id": "1694559249011", "history_id": "1694559249011", - "date_created": "2023-09-12T22:54:09.011Z", - "date_last_updated": "2023-09-12T23:10:55.083Z", + "date_created": { + "type": 6, + "value": 1694559249011 + }, + "date_last_updated": { + "type": 6, + "value": 1694560255083 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-09-12T23:10:55.083Z", - "money_release_date": "2023-09-12T23:10:55.083Z", + "date_approved": { + "type": 6, + "value": 1694560255083 + }, + "money_release_date": { + "type": 6, + "value": 1694560255083 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "866e942aa524414a8cb656c4", + "revision": "8ed5793ffc2444fdb43a9473", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -18937,10 +21583,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 220,00 BRL para a carteira iVip 0176.0919.3050.0250-62", - "revision": "be5509aa565b419d811eb720", + "revision": "17e3124ccd244df780705efc", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -18956,14 +21602,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 4, "installments_payable": 1 }, - "revision": "e22d3f00fecd4cf8ac751259", + "revision": "2c4460ab64c74149b032f6b7", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -18971,10 +21617,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694560328887", - "revision": "0e05784b7f524aef8efbee8c", + "revision": "cee71804b86f45c1b7c9630e", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -18989,9 +21635,18 @@ "total_amount": 220, "id": "1694560328887", "history_id": "1694560328887", - "date_created": "2023-09-12T23:12:08.887Z", - "date_last_updated": "2023-09-12T23:12:08.887Z", - "date_of_expiration": "2023-09-12T23:12:08.887Z", + "date_created": { + "type": 6, + "value": 1694560328887 + }, + "date_last_updated": { + "type": 6, + "value": 1694560328887 + }, + "date_of_expiration": { + "type": 6, + "value": 1694560328887 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -18999,10 +21654,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "8b5de6d1602a445a9ec18247", + "revision": "151e12e8959744b880a8417b", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19010,10 +21665,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "320dd5d558ee45269d2679d6", + "revision": "849532eceb89478bac187883", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19029,12 +21684,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "1af96e161baf467eac230abf", + "revision": "e52279b0af8741408565b4ae", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19042,10 +21697,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1695164776163", - "revision": "3036ec7e0b66461fbe816578", + "revision": "670c56e651584e87846ea4a6", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19060,23 +21715,35 @@ "total_amount": 4583948, "id": "1695164776163", "history_id": "1695164776163", - "date_created": "2023-09-19T23:06:16.163Z", - "date_last_updated": "2023-09-25T21:44:45.837Z", - "date_of_expiration": "2024-03-19T23:06:16.135Z", + "date_created": { + "type": 6, + "value": 1695164776163 + }, + "date_last_updated": { + "type": 6, + "value": 1695678285837 + }, + "date_of_expiration": { + "type": 6, + "value": 1710889576135 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": "2023-09-25T21:44:45.837Z", + "money_release_date": { + "type": 6, + "value": 1695678285837 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "a7a76cf08e11460a86f2431c", + "revision": "63e0b3ea494b45188d29cb18", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19084,10 +21751,10 @@ "content": { "type": "STRING", "value": "Investimento de 4.583.948,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", - "revision": "84c4406417bf4caf822ed28a", + "revision": "d69dc41a19f54443b1378537", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19103,12 +21770,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "dfcbceaeef8249debf5e92f7", + "revision": "20beacff4e9c4c6c83062dd1", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19116,10 +21783,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1696551378554", - "revision": "a2da2f17a94b450685f2fa26", + "revision": "1ec9b719cc4b4c5fb8514cb4", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19135,9 +21802,18 @@ "total_amount": 4597196, "id": "1696551378554", "history_id": "1696551378554", - "date_created": "2023-10-06T00:16:18.554Z", - "date_last_updated": "2023-10-06T00:16:18.554Z", - "date_of_expiration": "2023-11-06T00:16:18.481Z", + "date_created": { + "type": 6, + "value": 1696551378554 + }, + "date_last_updated": { + "type": 6, + "value": 1696551378554 + }, + "date_of_expiration": { + "type": 6, + "value": 1699229778481 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19145,10 +21821,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "3aa30bd4861b4ba084109c70", + "revision": "ddb5e2a5541440b0908eebeb", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19156,10 +21832,10 @@ "content": { "type": "STRING", "value": "Investimento de 4.597.196,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", - "revision": "e4428b373f0942c387ec6e4d", + "revision": "161d4d9318f64d2788a580b0", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19168,12 +21844,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-12T12:26:40.740Z" + ".val": { + "type": 6, + "value": 1699792000740 + } }, - "revision": "bf7b2a2777fb47d69571d265", + "revision": "535f7ad6c4f348c889341871", "revision_nr": 1, - "created": 1701463509533, - "modified": 1701463509533 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19189,12 +21868,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "e01fb3ded5bc483fb3469c88", + "revision": "b3d58b2ea596428cabf0d84e", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19202,10 +21881,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1697200000740", - "revision": "32f76cfe79284ab4a2ec9bd0", + "revision": "f3a3900ca19c4f839e7e7f97", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19221,23 +21900,35 @@ "total_amount": 220, "id": "1697200000740", "history_id": "1697200000740", - "date_created": "2023-10-13T12:26:40.740Z", - "date_last_updated": "2023-10-13T13:19:44.767Z", + "date_created": { + "type": 6, + "value": 1697200000740 + }, + "date_last_updated": { + "type": 6, + "value": 1697203184767 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-10-13T13:19:44.767Z", - "money_release_date": "2023-10-13T13:19:44.767Z", + "date_approved": { + "type": 6, + "value": 1697203184767 + }, + "money_release_date": { + "type": 6, + "value": 1697203184767 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "a541fcbbbe9e4fbeae307a12", + "revision": "5a3277cb1be7469b8a419f0b", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19245,10 +21936,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 220,00 BRL para a carteira iVip 0176.0919.3050.0250-62", - "revision": "ecff14a3550549609e6b6a76", + "revision": "0996394ade5d43c29b1e8677", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19264,14 +21955,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 5, "installments_payable": 0 }, - "revision": "85c91286bb8a4547ac28f4f6", + "revision": "e7a641d89b8345bea4ecda0b", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19279,10 +21970,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1697203305717", - "revision": "3c24754ee2494fe4b59dde9b", + "revision": "98e2877a0bea402eb934ac54", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19298,9 +21989,18 @@ "total_amount": 220, "id": "1697203305717", "history_id": "1697203305717", - "date_created": "2023-10-13T13:21:45.717Z", - "date_last_updated": "2023-10-13T13:21:45.717Z", - "date_of_expiration": "2023-10-13T13:21:45.717Z", + "date_created": { + "type": 6, + "value": 1697203305717 + }, + "date_last_updated": { + "type": 6, + "value": 1697203305717 + }, + "date_of_expiration": { + "type": 6, + "value": 1697203305717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -19308,10 +22008,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "df3662401f064981b43614cc", + "revision": "b124518e1fa44654a76b33d7", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19319,10 +22019,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "1094d7cf1d6c452a808c6eb5", + "revision": "95e6707f1b9244c1bdfb9a61", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19330,10 +22030,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "46170bf1d841442ba6b64e76", + "revision": "27d8aa9cf2604a03ae89b741", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19345,10 +22045,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "b7bbc8ba46664d318bdbb0ba", + "revision": "66ed05082d7940f1840c8287", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19362,15 +22062,18 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-13T18:37:39.388Z", + "date_created": { + "type": 6, + "value": 1684003059388 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid" }, - "revision": "eac4c63b336f476c9e7b183b", + "revision": "eb68e09cefcb4a94a80c77cc", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19378,10 +22081,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "4da381f4310345d2bf60f9f6", + "revision": "3ec8c9dbe6b84408bf507cd7", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19389,10 +22092,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "47523ff53f3f438789f7881e", + "revision": "3294094e6667411f91b6016c", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19400,10 +22103,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "eaaab73429ea4bff902c9ac0", + "revision": "94b6040dd11641c6bd327c02", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19415,10 +22118,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "6399505e5bc34dbb993edf46", + "revision": "10f2a87c5f304c6ea7dd0d37", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19432,15 +22135,18 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-13T18:37:39.388Z", + "date_created": { + "type": 6, + "value": 1684003059388 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid" }, - "revision": "a4f1e0658ba44e18aab56365", + "revision": "bb6fde636f514e77aaaa8a70", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19448,10 +22154,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "257060ec65d547e594df938f", + "revision": "ec4c0a9ebb9e4630b70fb0ae", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19459,10 +22165,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "2ec92fd7db5e4123971df1be", + "revision": "c71e712e0846485c83ab6e7a", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19470,10 +22176,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b2f0f7c2f6fb4c5a9ae33c0c", + "revision": "a287d04a72a6491e8cf611a4", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19485,10 +22191,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "95ba1c68bea747cda17f044a", + "revision": "31d0324e31af4a369bd1f782", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19502,15 +22208,18 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-13T18:37:39.388Z", + "date_created": { + "type": 6, + "value": 1684003059388 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid" }, - "revision": "f354d55b3f8c4756ad42e814", + "revision": "9e54977013be4795858137c1", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19518,10 +22227,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "54eee370f3fc4bae8e3ceb0e", + "revision": "cd60c922e3a64efbabef3ef7", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19529,10 +22238,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "a6b3482d6d9b4e8f82ba0dfa", + "revision": "df195d4a9efc409f82f71986", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19540,10 +22249,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c6c8301f46bc4232bdf03475", + "revision": "31e4341f8b5d4a35ad316590", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19555,10 +22264,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "297b786f0ce44ca8a50b265c", + "revision": "c111ad11740a45d685bf9bfa", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19572,16 +22281,22 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-13T18:37:39.388Z", + "date_created": { + "type": 6, + "value": 1684003059388 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-12T23:12:08.902Z" + "date_last_updated": { + "type": 6, + "value": 1694560328902 + } }, - "revision": "010df45a243640afb8272009", + "revision": "09686f1c10104aa39fca4d81", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19589,10 +22304,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "9d4ad6e8cfa14d1b8c6929a4", + "revision": "ad9d54824dac4ae6878f4f02", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19600,10 +22315,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "a98240cacb89437e88354d4c", + "revision": "fcbd48895300420f8bdd9b2f", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19611,10 +22326,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6ca37eb562fb470aae83843d", + "revision": "e50218d0967041bcb3048034", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19626,10 +22341,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "d17f96f45fc04f3086e85af8", + "revision": "b17b9f1cafae4dd3a64ce802", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19643,16 +22358,22 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-13T18:37:39.388Z", + "date_created": { + "type": 6, + "value": 1684003059388 + }, "history_id": 1684003059388, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-10-13T13:21:45.729Z" + "date_last_updated": { + "type": 6, + "value": 1697203305729 + } }, - "revision": "c157b0fff88946e1bfb2f310", + "revision": "b7c75567fe634351ae67ef56", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19660,10 +22381,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "79a43b50b8ec47518a8d274e", + "revision": "24e0a002609b4577ad4e2874", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19671,10 +22392,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "2f88f5be4b57426a9e450325", + "revision": "9fe43c578bc646b3add1b7d9", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19682,10 +22403,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8e96bf4cc52142cfa1d0396c", + "revision": "4fe0383d76eb49038ab10a2d", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19693,10 +22414,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "efe7d75c16e84f06af3178ca", + "revision": "c891021ce3954a25b3978b7a", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19706,13 +22427,19 @@ "value": { "approvedLimit": 1000, "limitUsed": 400, - "analysisRequested": "2023-05-13T18:00:13.915Z", - "lastReview": "2023-05-13T18:03:09.928Z" + "analysisRequested": { + "type": 6, + "value": 1684000813915 + }, + "lastReview": { + "type": 6, + "value": 1684000989928 + } }, - "revision": "3403206a07b94a7184f2283c", + "revision": "80bf9d27876943f8b0382c85", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19724,12 +22451,15 @@ "dateValidity": 1682097646342, "totalValue": 2544.535, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } }, - "revision": "f6820a222c164eb0b04461fa", + "revision": "a8490a1e11b44643a307e1ac", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820506, + "modified": 1701465820506 } }, { @@ -19737,12 +22467,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "27f976a49e8f44c19ad3c4b3", + "revision": "777a22d7ec4944a29a6eea99", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -19757,22 +22487,37 @@ "total_amount": 15000, "history_id": 1684943727392, "id": 1684943727392, - "date_created": "2023-05-24T15:55:27.392Z", - "date_last_updated": "2023-05-24T15:55:53.725Z", - "date_of_expiration": "2023-06-23T15:55:27.392Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-24T15:55:53.725Z", - "money_release_date": "2023-05-24T15:55:53.725Z", + "date_created": { + "type": 6, + "value": 1684943727392 + }, + "date_last_updated": { + "type": 6, + "value": 1684943753725 + }, + "date_of_expiration": { + "type": 6, + "value": 1687535727392 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684943753725 + }, + "money_release_date": { + "type": 6, + "value": 1684943753725 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "55cf919dbc87473584c21989", + "revision": "abc89ab24b1c48daa0cbe8d5", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -19780,10 +22525,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 15.000,00 para a carteira iVip 0176.2260.5984.9780-02", - "revision": "efdcc7704a064db291caa0b8", + "revision": "07d7f58e3bc54b9695d85bbb", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -19801,12 +22546,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "fe19976c85ad40a8bdb6d22f", + "revision": "595944987fb64f0aae9b9832", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -19822,9 +22567,18 @@ "original_amount": 200000000, "total_amount": 200000000, "id": 1685471938618, - "date_created": "2023-05-30T18:38:58.618Z", - "date_last_updated": "2023-05-30T18:38:58.618Z", - "date_of_expiration": "2023-05-30T18:38:58.618Z", + "date_created": { + "type": 6, + "value": 1685471938618 + }, + "date_last_updated": { + "type": 6, + "value": 1685471938618 + }, + "date_of_expiration": { + "type": 6, + "value": 1685471938618 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -19833,10 +22587,10 @@ "history_id": 1685471938618, "description": "Compra de 200.000.000,00 IVIP por 15.000,00 BRL" }, - "revision": "f0c3a3f2097948c8b5eb03b5", + "revision": "15962e19053544f1951a9116", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -19844,10 +22598,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "abb944c4b66d496d93d33b11", + "revision": "a64f552149ae4301956af509", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -19855,10 +22609,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1943d0667c8d40208e691431", + "revision": "d73dba9041b04c85a542f84c", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -19869,10 +22623,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "43fa8344d0494ba28c2703cb", + "revision": "c82ad3000da346398bd89050", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -19884,10 +22638,10 @@ "symbol": "IVIP", "value": 20332.55 }, - "revision": "835156b387cf4954b4310939", + "revision": "e3ea636e4e9840de9c39058b", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -19895,10 +22649,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a6b8260f8fae4f76b1463bfc", + "revision": "37e02167660c40349108499e", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -19910,12 +22664,15 @@ "dateValidity": 1683153627758, "totalValue": 13477.18, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } }, - "revision": "d526884ca705418d920ba884", + "revision": "6e33ca7c50a749adb4ddf186", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -19923,10 +22680,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7636521c11244edea025bcf4", + "revision": "16585bec626e44f6b1889725", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -19934,10 +22691,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6dc7faeb79a04f36aea35ace", + "revision": "de04195f97a24605ba21c205", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -19950,10 +22707,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "c5ec32a6d8dc42b9a99d2e55", + "revision": "0dae032f040548bd85768b33", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -19965,10 +22722,10 @@ "symbol": "IVIP", "value": 0.000081 }, - "revision": "ac1024634ad04619813e4669", + "revision": "2e1da8f442ce4022a6d43f82", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -19976,10 +22733,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6134468b4c324f49a315af40", + "revision": "6c68f072e35f4a8c8b63e66f", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -19987,12 +22744,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "635d51f4d8534f459685dc35", + "revision": "b81a3cabfa044125a0c8b6df", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20007,20 +22764,32 @@ "total_amount": 100, "history_id": 1678138020034, "id": 1678138020034, - "date_created": "2023-03-06T21:27:00.034Z", - "date_last_updated": "2023-03-06T21:31:53.569Z", - "date_of_expiration": "2023-04-05T21:27:00.034Z", + "date_created": { + "type": 6, + "value": 1678138020034 + }, + "date_last_updated": { + "type": 6, + "value": 1678138313569 + }, + "date_of_expiration": { + "type": 6, + "value": 1680730020034 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-03-06T21:31:53.569Z", + "money_release_date": { + "type": 6, + "value": 1678138313569 + }, "money_release_status": "rejected" }, - "revision": "aa7703bea8904dc5892cb06c", + "revision": "2e9fe4416bc5410e9de3c08f", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20028,10 +22797,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0192.1172.1108.0322-64", - "revision": "eb76a015322f4046909e74e4", + "revision": "6399cf1bd712414a8bebbeba", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20039,12 +22808,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "b81ea812ac764312ba0b382b", + "revision": "49fc6c0284ec43c58c160063", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20059,22 +22828,37 @@ "total_amount": 2000, "history_id": 1677965965594, "id": 1677965965594, - "date_created": "2023-03-04T21:39:25.594Z", - "date_last_updated": "2023-03-05T00:07:26.209Z", - "date_of_expiration": "2023-04-03T21:39:25.594Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-05T00:07:26.209Z", - "money_release_date": "2023-03-05T00:07:26.209Z", + "date_created": { + "type": 6, + "value": 1677965965594 + }, + "date_last_updated": { + "type": 6, + "value": 1677974846209 + }, + "date_of_expiration": { + "type": 6, + "value": 1680557965594 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677974846209 + }, + "money_release_date": { + "type": 6, + "value": 1677974846209 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "94eb2ae3e9f24dc6ab988748", + "revision": "7b4348d4f23e4839b555df30", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20082,10 +22866,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0192.1172.1108.0322-64", - "revision": "2a1c42eae7d549ce8adbe1f3", + "revision": "2c08bbffc0884f629e8f6a5d", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20093,12 +22877,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "9f16f3d1e4614d1196262d07", + "revision": "a808eb1d524c490586b3e4a2", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20113,21 +22897,36 @@ "total_amount": 1000, "history_id": 1678138148348, "id": 1678138148348, - "date_created": "2023-03-06T21:29:08.348Z", - "date_last_updated": "2023-03-07T15:01:46.976Z", - "date_of_expiration": "2023-04-05T21:29:08.348Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-07T15:01:46.976Z", - "money_release_date": "2023-03-07T15:01:46.976Z", + "date_created": { + "type": 6, + "value": 1678138148348 + }, + "date_last_updated": { + "type": 6, + "value": 1678201306976 + }, + "date_of_expiration": { + "type": 6, + "value": 1680730148348 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678201306976 + }, + "money_release_date": { + "type": 6, + "value": 1678201306976 + }, "money_release_status": "approved" }, - "revision": "7a82e6dc79df4f15b1709759", + "revision": "4de972d7192f48c78f74ecaf", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20135,10 +22934,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0192.1172.1108.0322-64", - "revision": "1dbf50d82ef34bda8b6a9d6e", + "revision": "4bdb941968e24453a268d880", "revision_nr": 1, - "created": 1701463509534, - "modified": 1701463509534 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20156,12 +22955,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "856ad43908e04dad9a88af4c", + "revision": "b907da3075fc441394e30392", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20177,9 +22976,18 @@ "original_amount": 14292068, "total_amount": 14292068, "id": 1678162119494, - "date_created": "2023-03-07T04:08:39.494Z", - "date_last_updated": "2023-03-07T04:08:39.494Z", - "date_of_expiration": "2023-03-07T04:08:39.494Z", + "date_created": { + "type": 6, + "value": 1678162119494 + }, + "date_last_updated": { + "type": 6, + "value": 1678162119494 + }, + "date_of_expiration": { + "type": 6, + "value": 1678162119494 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20188,10 +22996,10 @@ "history_id": 1678162119494, "description": "Compra de 14292068 IVIP por 2000 BRL" }, - "revision": "e77d8c3f5871406e9162dec2", + "revision": "6a2d1f69b05c49b2b40f4a48", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20209,12 +23017,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "94bcc3b865104b958f000fc4", + "revision": "232f334595814b8990fe53ce", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20230,9 +23038,18 @@ "original_amount": 7083024, "total_amount": 7083024, "id": 1678201718893, - "date_created": "2023-03-07T15:08:38.893Z", - "date_last_updated": "2023-03-07T15:08:38.893Z", - "date_of_expiration": "2023-03-07T15:08:38.893Z", + "date_created": { + "type": 6, + "value": 1678201718893 + }, + "date_last_updated": { + "type": 6, + "value": 1678201718893 + }, + "date_of_expiration": { + "type": 6, + "value": 1678201718893 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20241,10 +23058,10 @@ "history_id": 1678201718893, "description": "Compra de 7083024 IVIP por 1000 BRL" }, - "revision": "062df4ca71bf434aa20cbd56", + "revision": "89514c53e0074f77948acf6b", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20252,12 +23069,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "3317d7b0dd5743fbb55e5aab", + "revision": "b6aa67fcc52641ba859b75e8", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20272,20 +23089,32 @@ "total_amount": 15000000, "history_id": 1687306180932, "id": 1687306180932, - "date_created": "2023-06-21T00:09:40.932Z", - "date_last_updated": "2023-06-22T13:14:46.349Z", - "date_of_expiration": "2023-06-21T00:09:40.932Z", + "date_created": { + "type": 6, + "value": 1687306180932 + }, + "date_last_updated": { + "type": 6, + "value": 1687439686349 + }, + "date_of_expiration": { + "type": 6, + "value": 1687306180932 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": "2023-06-22T13:14:46.349Z", + "money_release_date": { + "type": 6, + "value": 1687439686349 + }, "money_release_status": "rejected" }, - "revision": "4855976712064709a1f8116d", + "revision": "416ea69a014f479aa97f2181", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20293,10 +23122,10 @@ "content": { "type": "STRING", "value": "Saque de 15.000.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", - "revision": "aeb01b6dcdb2435f9d2c3dc2", + "revision": "072ecadbc62045c697f3fd14", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20304,12 +23133,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "755087bc3bbd42229a1375ea", + "revision": "74e8294f09954b88b7149c65", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20324,22 +23153,37 @@ "total_amount": 15000000, "history_id": 1687306331776, "id": 1687306331776, - "date_created": "2023-06-21T00:12:11.776Z", - "date_last_updated": "2023-06-22T13:15:07.717Z", - "date_of_expiration": "2023-06-21T00:12:11.776Z", + "date_created": { + "type": 6, + "value": 1687306331776 + }, + "date_last_updated": { + "type": 6, + "value": 1687439707717 + }, + "date_of_expiration": { + "type": 6, + "value": 1687306331776 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-06-22T13:15:07.717Z", - "money_release_date": "2023-06-22T13:15:07.717Z", + "date_approved": { + "type": 6, + "value": 1687439707717 + }, + "money_release_date": { + "type": 6, + "value": 1687439707717 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "18be4b6ccec54526a7c75f69", + "revision": "11b0f9880ba64a0e90240aa1", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20347,10 +23191,10 @@ "content": { "type": "STRING", "value": "Saque de 15.000.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", - "revision": "b604f9a1cee6450bb17653c6", + "revision": "ab14a87956e14b08978de5f7", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20368,12 +23212,12 @@ "installment_amount": 6375092, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "4b6080e36e344e29a38c8638", + "revision": "f2830bc9be504efdae616010", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20388,9 +23232,18 @@ "original_amount": 6375092, "total_amount": 6375092, "id": 1687525932247, - "date_created": "2023-06-23T13:12:12.247Z", - "date_last_updated": "2023-06-23T13:12:12.247Z", - "date_of_expiration": "2025-06-23T13:12:12.247Z", + "date_created": { + "type": 6, + "value": 1687525932247 + }, + "date_last_updated": { + "type": 6, + "value": 1687525932247 + }, + "date_of_expiration": { + "type": 6, + "value": 1750684332247 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20399,10 +23252,10 @@ "history_id": 1687525932247, "wasDebited": true }, - "revision": "7705dc44760d4172a9090627", + "revision": "400698d511ca4aecbf1da0eb", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20410,10 +23263,10 @@ "content": { "type": "STRING", "value": "Investimento de 6.375.092,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", - "revision": "e918815976a14af0a68ea11c", + "revision": "323e54bf1254481fbc8f5eb0", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20431,12 +23284,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "7ee66a4c4abb4f5e8cb8a29c", + "revision": "d8f79801d55048dfb0d134e6", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20451,9 +23304,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1688054453004, - "date_created": "2023-06-29T16:00:53.004Z", - "date_last_updated": "2023-06-29T16:00:53.004Z", - "date_of_expiration": "2024-06-29T16:00:53.004Z", + "date_created": { + "type": 6, + "value": 1688054453004 + }, + "date_last_updated": { + "type": 6, + "value": 1688054453004 + }, + "date_of_expiration": { + "type": 6, + "value": 1719676853004 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20462,10 +23324,10 @@ "history_id": 1688054453004, "wasDebited": true }, - "revision": "730554e98f9f4e34b5d12a58", + "revision": "80cdd23f05574c5fb890718d", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20473,10 +23335,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/29/2024", - "revision": "39c713c73dc54e179f799709", + "revision": "c9e69deca864425c904acb3d", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20484,12 +23346,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "4c11e2324dc94c5ca5f423b6", + "revision": "a524aef66abe45a09ca792c2", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20504,18 +23366,27 @@ "total_amount": 1375000, "history_id": 1688055217395, "id": 1688055217395, - "date_created": "2023-06-29T16:13:37.395Z", - "date_last_updated": "2023-06-29T16:13:37.395Z", - "date_of_expiration": "2023-06-29T16:13:37.395Z", + "date_created": { + "type": 6, + "value": 1688055217395 + }, + "date_last_updated": { + "type": 6, + "value": 1688055217395 + }, + "date_of_expiration": { + "type": 6, + "value": 1688055217395 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "3341548a63444e4a98eb3056", + "revision": "f77937b84f784a599301878c", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20523,10 +23394,10 @@ "content": { "type": "STRING", "value": "Saque de 1.375.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", - "revision": "ef4e35e69ab9493fbeba1c65", + "revision": "1185aeda4cd24b9bb3a5baf9", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20544,12 +23415,12 @@ "installment_amount": 5000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "0d5ce6edc727499cabcbc3b7", + "revision": "be50c7feb7ee4e0da8f3e4fa", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20564,9 +23435,18 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1688400574946, - "date_created": "2023-07-03T16:09:34.946Z", - "date_last_updated": "2023-07-03T16:09:34.946Z", - "date_of_expiration": "2023-08-03T16:09:34.946Z", + "date_created": { + "type": 6, + "value": 1688400574946 + }, + "date_last_updated": { + "type": 6, + "value": 1688400574946 + }, + "date_of_expiration": { + "type": 6, + "value": 1691078974946 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20574,10 +23454,10 @@ "currency_id": "IVIP", "history_id": 1688400574946 }, - "revision": "1827e6c16c2a4c229677fbe3", + "revision": "60b95a0a8e4a48ddb9ab5611", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20585,10 +23465,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "73da39ecb0944556a4b6c122", + "revision": "2ce02a3e4a0341f0b045cb76", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20606,12 +23486,12 @@ "installment_amount": 5000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "7ea5aa7cba0c4e5593881366", + "revision": "432b25d7baf4422ebf5d2dda", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20626,9 +23506,18 @@ "original_amount": 5100000, "total_amount": 5100000, "id": 1691079119787, - "date_created": "2023-08-03T16:11:59.787Z", - "date_last_updated": "2023-08-03T16:11:59.787Z", - "date_of_expiration": "2023-08-03T16:11:59.787Z", + "date_created": { + "type": 6, + "value": 1691079119787 + }, + "date_last_updated": { + "type": 6, + "value": 1691079119787 + }, + "date_of_expiration": { + "type": 6, + "value": 1691079119787 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20637,10 +23526,10 @@ "history_id": 1691079119787, "wasDebited": true }, - "revision": "deb81104728142bd8da7b8f8", + "revision": "e1939560866b413baa732741", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20648,10 +23537,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 5.000.000,00 IVIP com um rendimento de +100.000,00 IVIP (2,00%)", - "revision": "dbbaee63b0324ece8dbe07d8", + "revision": "b1e133203ab547b1ae116d0e", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820507, + "modified": 1701465820507 } }, { @@ -20669,12 +23558,12 @@ "installment_amount": 5000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "956a69983d914e0db688b4e6", + "revision": "ce81f904b2014fcd92d49e73", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20689,9 +23578,18 @@ "original_amount": 5100000, "total_amount": 5100000, "id": 1691079120545, - "date_created": "2023-08-03T16:12:00.545Z", - "date_last_updated": "2023-08-03T16:12:00.545Z", - "date_of_expiration": "2023-08-03T16:12:00.545Z", + "date_created": { + "type": 6, + "value": 1691079120545 + }, + "date_last_updated": { + "type": 6, + "value": 1691079120545 + }, + "date_of_expiration": { + "type": 6, + "value": 1691079120545 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20700,10 +23598,10 @@ "history_id": 1691079120545, "wasDebited": true }, - "revision": "0316e0873d094f348ddba2d3", + "revision": "fa486a755c534426a37d193b", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20711,10 +23609,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 5.000.000,00 IVIP com um rendimento de +100.000,00 IVIP (2,00%)", - "revision": "fe2174a83f2b4ec5bafd573f", + "revision": "ff446ba08d164556a0d3b1a7", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20730,12 +23628,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "57321edb0d914b458e8e5858", + "revision": "640f3eee4c134a82991fa1a5", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20743,10 +23641,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1691085199409", - "revision": "5d5d60a0e93c4f4db3ce0fb8", + "revision": "7994bf4dff8b460dabd5cba3", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20761,9 +23659,18 @@ "total_amount": 5199000, "id": 1691085199409, "history_id": 1691085199409, - "date_created": "2023-08-03T17:53:19.409Z", - "date_last_updated": "2023-08-03T17:53:19.409Z", - "date_of_expiration": "2023-09-03T17:53:19.408Z", + "date_created": { + "type": 6, + "value": 1691085199409 + }, + "date_last_updated": { + "type": 6, + "value": 1691085199409 + }, + "date_of_expiration": { + "type": 6, + "value": 1693763599408 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20771,10 +23678,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "e7e78b419f2b4b19a1602772", + "revision": "168eb4d61b004169bceaaa53", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20782,10 +23689,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.199.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "0e2ff3d7c254467e9e3420fd", + "revision": "919554527d39497b81f9889d", "revision_nr": 1, - "created": 1701463509535, - "modified": 1701463509535 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20801,12 +23708,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "0f577676b2084567a0591340", + "revision": "6f46d70bca90448cb4f33454", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20814,10 +23721,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1693763776046", - "revision": "34780fa965b047b8bc995c51", + "revision": "8788365775254d1f83a7a19b", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20832,9 +23739,18 @@ "total_amount": 5302980, "id": "1693763776046", "history_id": "1693763776046", - "date_created": "2023-09-03T17:56:16.046Z", - "date_last_updated": "2023-09-03T17:56:16.046Z", - "date_of_expiration": "2023-09-03T17:56:16.046Z", + "date_created": { + "type": 6, + "value": 1693763776046 + }, + "date_last_updated": { + "type": 6, + "value": 1693763776046 + }, + "date_of_expiration": { + "type": 6, + "value": 1693763776046 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20842,10 +23758,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "3395c3299fab43218541cf38", + "revision": "c9713851f91e417f988037dd", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20853,10 +23769,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 5.199.000,00 IVIP com um rendimento de +103.980,00 IVIP (2,00%) - Y12XDT27", - "revision": "08ca418555d1450d8f437b0d", + "revision": "2942fce73bf84a8e9db994fb", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20872,12 +23788,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "fad6151c04154f80bd021f3f", + "revision": "17d51180e3aa4a32b4f9f83e", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20885,10 +23801,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1693924633176", - "revision": "c3e0d6c5e6084b89b0a99981", + "revision": "5332c87a17b7415bbc80a588", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20903,9 +23819,18 @@ "total_amount": 5302980, "id": "1693924633176", "history_id": "1693924633176", - "date_created": "2023-09-05T14:37:13.176Z", - "date_last_updated": "2023-09-05T14:37:13.176Z", - "date_of_expiration": "2023-10-05T14:37:13.174Z", + "date_created": { + "type": 6, + "value": 1693924633176 + }, + "date_last_updated": { + "type": 6, + "value": 1693924633176 + }, + "date_of_expiration": { + "type": 6, + "value": 1696516633174 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20913,10 +23838,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "abb85102b8da4a6686d7df1b", + "revision": "2296443c4c574d1181287130", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20924,10 +23849,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.302.980,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", - "revision": "078607124865427088c9f7d1", + "revision": "2a94ffbf25554f468e3e7193", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20943,12 +23868,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "1ccbc3a484174d0290dd917e", + "revision": "605b1419bee441e6a993ce77", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20956,10 +23881,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1696516664226", - "revision": "badd6aa8097d4e8bb75b65b6", + "revision": "1e7775c31cf34185af453c28", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20975,9 +23900,18 @@ "total_amount": 5409039.6, "id": "1696516664226", "history_id": "1696516664226", - "date_created": "2023-10-05T14:37:44.226Z", - "date_last_updated": "2023-10-05T14:37:44.226Z", - "date_of_expiration": "2023-10-05T14:37:44.226Z", + "date_created": { + "type": 6, + "value": 1696516664226 + }, + "date_last_updated": { + "type": 6, + "value": 1696516664226 + }, + "date_of_expiration": { + "type": 6, + "value": 1696516664226 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -20985,10 +23919,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "4c9676b5102f4b73ac6b49f4", + "revision": "f592b7b656fd4866a1ea2df0", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -20996,10 +23930,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 5.302.980,00 IVIP com um rendimento de +106.059,6 IVIP (2,00%) - Y12XDT27", - "revision": "ef227160a91a43c3aeefd98d", + "revision": "9f56de15b0304428a95699fa", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21015,12 +23949,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "f4203aabd1314ddabf280059", + "revision": "aee33fdb54154e0f98093866", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21028,10 +23962,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1696621887766", - "revision": "b28f7340dc1c40f3b7ab620d", + "revision": "9c2be0f035e741f18b0d0b82", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21047,9 +23981,18 @@ "total_amount": 5409039, "id": "1696621887766", "history_id": "1696621887766", - "date_created": "2023-10-06T19:51:27.766Z", - "date_last_updated": "2023-10-06T19:51:27.766Z", - "date_of_expiration": "2023-11-06T19:51:27.733Z", + "date_created": { + "type": 6, + "value": 1696621887766 + }, + "date_last_updated": { + "type": 6, + "value": 1696621887766 + }, + "date_of_expiration": { + "type": 6, + "value": 1699300287733 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21057,10 +24000,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "6d1042ea0a7d43c693bed83d", + "revision": "ecd4f17f568343a28a74f06e", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21068,10 +24011,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.409.039,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", - "revision": "0e5e5313b3694451a244bbed", + "revision": "3d35ee5b9b534e26a1cb5fe9", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21079,10 +24022,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "afdf748d01ce4b37b5510d5c", + "revision": "154a11eb9cc146f8b71d5a8c", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21090,10 +24033,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e395cd226a034f589aa60ca0", + "revision": "8b27c028d3884537bcf50382", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21103,12 +24046,15 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-07-19T15:26:56.218Z" + "analysisRequested": { + "type": 6, + "value": 1689780416218 + } }, - "revision": "27f85d76a32a48c39f1b2d51", + "revision": "7c9acf7abe474b889eb09dad", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21120,12 +24066,15 @@ "dateValidity": 1678664927087, "totalValue": 1001.4056590358118, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } }, - "revision": "cee9760f3be6472a8ebbf6d3", + "revision": "6cf449acd7374d808f9253b1", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21137,10 +24086,10 @@ "symbol": "BRL", "value": 16.58 }, - "revision": "9212838d0ffa4c20a96682e0", + "revision": "5dd54721c1974784bc610429", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21148,10 +24097,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2af31361b9004c0093eed06f", + "revision": "5a2192b4d8b6415bbef72c69", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21159,12 +24108,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "71a4beca9e694aec931fa229", + "revision": "3e20d63d6bdd41828d7856dd", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21179,21 +24128,36 @@ "total_amount": 100, "history_id": 1679011728068, "id": 1679011728068, - "date_created": "2023-03-17T00:08:48.068Z", - "date_last_updated": "2023-03-17T12:47:59.547Z", - "date_of_expiration": "2023-04-16T00:08:48.068Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-17T12:47:59.547Z", - "money_release_date": "2023-03-17T12:47:59.547Z", + "date_created": { + "type": 6, + "value": 1679011728068 + }, + "date_last_updated": { + "type": 6, + "value": 1679057279547 + }, + "date_of_expiration": { + "type": 6, + "value": 1681603728068 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679057279547 + }, + "money_release_date": { + "type": 6, + "value": 1679057279547 + }, "money_release_status": "approved" }, - "revision": "e55c8f0f06df483d9b4773e1", + "revision": "daa4382c6eb14745942d19bb", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21201,10 +24165,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0199.6555.6064.9756-30", - "revision": "2049123350954d2d892b7bf4", + "revision": "de0e7019c5ea4fa3976706b7", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21220,12 +24184,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "3ff0a5d11f8c40c4aeff7890", + "revision": "a5c6ee7dbd6e4105922d7ea3", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21233,10 +24197,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/019965556064975630/history/1689901373588", - "revision": "569efd68683b44afa6fb2504", + "revision": "db151ba216724124bb0aa9af", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21251,9 +24215,18 @@ "total_amount": 20, "id": 1689901373588, "history_id": 1689901373588, - "date_created": "2023-07-21T01:02:53.588Z", - "date_last_updated": "2023-07-21T01:02:53.588Z", - "date_of_expiration": "2024-05-21T01:02:53.584Z", + "date_created": { + "type": 6, + "value": 1689901373588 + }, + "date_last_updated": { + "type": 6, + "value": 1689901373588 + }, + "date_of_expiration": { + "type": 6, + "value": 1716253373584 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21261,10 +24234,10 @@ "base_currency_id": "BRL", "status_detail": "accredited" }, - "revision": "6932eb7a9b9a4886a13ad5b0", + "revision": "ddd8a0e687d04c3aae16cccd", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21272,10 +24245,10 @@ "content": { "type": "STRING", "value": "Investimento de 20,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/20/2024", - "revision": "2a08ed8c96de45f38a706fcc", + "revision": "a728294623124f519b9b8ac4", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21283,10 +24256,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "dbcc20ccfd7645e589368fbd", + "revision": "c49a6f2119734f44ade928f7", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21294,10 +24267,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d1b21ffc601247a2b44fb1d4", + "revision": "f08fd0fb9bdc42d8acf18f6e", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21308,10 +24281,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "ac9134d398f842d8beff765f", + "revision": "38b55f1c148b40a191a1084d", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21325,10 +24298,10 @@ "currencyType": "USD", "balancesModificacao": 1689822000000 }, - "revision": "1c8f8f75b1604306bd853efd", + "revision": "ea52225a9cb64cf98b434dbe", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21340,10 +24313,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "fb24433938534f97ac8acc84", + "revision": "2c9be654157a454a80e23c95", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21355,10 +24328,10 @@ "symbol": "IVIP", "value": 10477.68 }, - "revision": "14a7daf48ac5461c9e6830e8", + "revision": "029db868bdac4cb0b790a199", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21366,10 +24339,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "18fb2c4ece624ba2a41fdd16", + "revision": "c83cbf8aa6464ecc94689a23", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21377,12 +24350,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "74449b16a95546bb8fb5d355", + "revision": "a25f7e3c5ce04074b1d7cbb6", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21397,22 +24370,37 @@ "total_amount": 10000, "history_id": 1677725964136, "id": 1677725964136, - "date_created": "2023-03-02T02:59:24.136Z", - "date_last_updated": "2023-03-02T11:03:26.417Z", - "date_of_expiration": "2023-04-01T02:59:24.136Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-02T11:03:26.417Z", - "money_release_date": "2023-03-02T11:03:26.417Z", + "date_created": { + "type": 6, + "value": 1677725964136 + }, + "date_last_updated": { + "type": 6, + "value": 1677755006417 + }, + "date_of_expiration": { + "type": 6, + "value": 1680317964136 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677755006417 + }, + "money_release_date": { + "type": 6, + "value": 1677755006417 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "e04a7da5650a460382c1b0f9", + "revision": "d307ca2204084bc3b9dc4293", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21420,10 +24408,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0219.7710.1011.6756-04", - "revision": "dbd6d27d59b04afea3c3d3d7", + "revision": "55f773ba08d441e9bbe6e6b0", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21441,12 +24429,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "9e6ed427c75a4bbda9395919", + "revision": "509c4d27554d437988f471b7", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21462,9 +24450,18 @@ "original_amount": 71386212, "total_amount": 71386212, "id": 1678147737654, - "date_created": "2023-03-07T00:08:57.654Z", - "date_last_updated": "2023-03-07T00:08:57.654Z", - "date_of_expiration": "2023-03-07T00:08:57.654Z", + "date_created": { + "type": 6, + "value": 1678147737654 + }, + "date_last_updated": { + "type": 6, + "value": 1678147737654 + }, + "date_of_expiration": { + "type": 6, + "value": 1678147737654 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21473,10 +24470,10 @@ "history_id": 1678147737654, "description": "Compra de 71386212 IVIP por 10000 BRL" }, - "revision": "367b3d7934764cb69aaa6893", + "revision": "2790ae09277b49dda9c35588", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21494,12 +24491,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "6fef6802a4344efeb5cd4c34", + "revision": "e008318cd72340cd9e8bcef7", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21515,9 +24512,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1678160584706, - "date_created": "2023-03-07T03:43:04.706Z", - "date_last_updated": "2023-03-07T03:43:04.706Z", - "date_of_expiration": "2023-03-07T03:43:04.706Z", + "date_created": { + "type": 6, + "value": 1678160584706 + }, + "date_last_updated": { + "type": 6, + "value": 1678160584706 + }, + "date_of_expiration": { + "type": 6, + "value": 1678160584706 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21525,10 +24531,10 @@ "currency_id": "BRL", "history_id": 1678160584706 }, - "revision": "1bfa83c36b1f4c50beb984b3", + "revision": "2ee1a03524bc426c908f6eac", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21536,10 +24542,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "14438326cb36482fafa78444", + "revision": "2b3afb340019414b8352ab5c", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21557,12 +24563,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d8446c1fb1cb46d788fd39f8", + "revision": "a2d6136264ef4239b9b077a4", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21578,9 +24584,18 @@ "original_amount": 7146034, "total_amount": 7146034, "id": 1678162248934, - "date_created": "2023-03-07T04:10:48.934Z", - "date_last_updated": "2023-03-07T04:10:48.934Z", - "date_of_expiration": "2023-03-07T04:10:48.934Z", + "date_created": { + "type": 6, + "value": 1678162248934 + }, + "date_last_updated": { + "type": 6, + "value": 1678162248934 + }, + "date_of_expiration": { + "type": 6, + "value": 1678162248934 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21589,10 +24604,10 @@ "history_id": 1678162248934, "description": "Compra de 7146034 IVIP por 1000 BRL" }, - "revision": "3e4bb938159e4762ace797c4", + "revision": "de565d76367f4dd5b7c9bf95", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21602,10 +24617,10 @@ "value": { "content": "23797927500010103493380261019562276900633330" }, - "revision": "2624bd3fc47f4c7d88f4e442", + "revision": "16bb61a902bb461492220019", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21617,10 +24632,10 @@ "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "6f9a6734b66f40989766756c", + "revision": "8d0038a815cc411199ce990a", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21638,10 +24653,10 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "3090fdc62d984e0dbb3d6bd0", + "revision": "23eb0345b0414cbcaed26546", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21649,10 +24664,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1311811220/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311811220&payment_method_reference_id=10195622769&hash=8d50adc1-12db-410d-a168-79594db6001b", - "revision": "21e4bacd7af84239aa6a0fc3", + "revision": "2e6dba982658440f8a1d1cf5", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21660,10 +24675,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b0bb72e2cd594b7495605acc", + "revision": "d105ddef885f4f09be9bcf17", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21678,19 +24693,28 @@ "total_amount": 10103.49, "history_id": 1677379209968, "id": 1311811220, - "date_created": "2023-02-25T22:40:10.662-04:00", - "date_last_updated": "2023-02-25T22:40:10.662-04:00", - "date_of_expiration": "2023-02-28T22:59:59.000-04:00", + "date_created": { + "type": 6, + "value": 1677379210662 + }, + "date_last_updated": { + "type": 6, + "value": 1677379210662 + }, + "date_of_expiration": { + "type": 6, + "value": 1677639599000 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "f3ce0e717bdd4bb4a2d7c7e3", + "revision": "51409d44c49f4e799dd1a5e9", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21698,10 +24722,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.100,00 para a carteira iVip 0219.7710.1011.6756-04", - "revision": "67cbde2816354f7d90a770c6", + "revision": "1a2157d690014195a2546060", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820508, + "modified": 1701465820508 } }, { @@ -21719,12 +24743,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "28ade285fb2b4b899fe47ef7", + "revision": "73bcc0ec0df34b9ba38241ac", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -21740,9 +24764,18 @@ "original_amount": 326, "total_amount": 326, "id": 1684348383580, - "date_created": "2023-05-17T18:33:03.580Z", - "date_last_updated": "2023-05-17T18:33:03.580Z", - "date_of_expiration": "2023-05-17T18:33:03.580Z", + "date_created": { + "type": 6, + "value": 1684348383580 + }, + "date_last_updated": { + "type": 6, + "value": 1684348383580 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348383580 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21750,10 +24783,10 @@ "currency_id": "BRL", "history_id": 1684348383580 }, - "revision": "f7aa01b7aacf4eadaa5c92cf", + "revision": "f5de60ec03bf4f5fa58b03a0", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -21761,10 +24794,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "1264b55f91f84164b3821dc5", + "revision": "650e0bca0d4d4c799e2d851a", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -21782,12 +24815,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d9fcaf97422e46d08f7f0814", + "revision": "20219dfca7bb4b8b9c11f59e", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -21803,9 +24836,18 @@ "original_amount": 1587858, "total_amount": 1587858, "id": 1684624810300, - "date_created": "2023-05-20T23:20:10.300Z", - "date_last_updated": "2023-05-20T23:20:10.300Z", - "date_of_expiration": "2023-05-20T23:20:10.300Z", + "date_created": { + "type": 6, + "value": 1684624810300 + }, + "date_last_updated": { + "type": 6, + "value": 1684624810300 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624810300 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21814,10 +24856,10 @@ "history_id": 1684624810300, "description": "Compra de 1.587.858,00 IVIP por 326,00 BRL" }, - "revision": "96ae7e658c9b4590aacf4910", + "revision": "045d4b76fc654b11a763e9d0", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -21835,12 +24877,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "5b47c5660937463983f094ef", + "revision": "1e11249c552b48c2a9e64d16", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -21855,9 +24897,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685668591211, - "date_created": "2023-06-02T01:16:31.211Z", - "date_last_updated": "2023-06-02T01:16:31.211Z", - "date_of_expiration": "2024-06-02T01:16:31.211Z", + "date_created": { + "type": 6, + "value": 1685668591211 + }, + "date_last_updated": { + "type": 6, + "value": 1685668591211 + }, + "date_of_expiration": { + "type": 6, + "value": 1717290991211 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -21865,10 +24916,10 @@ "currency_id": "IVIP", "history_id": 1685668591211 }, - "revision": "c5a302b304b34757a995e699", + "revision": "647715b22b7e446691685724", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -21876,10 +24927,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "2458e42de865425cb1b25c03", + "revision": "5b53096822c94d1688139fe3", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -21887,12 +24938,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "16a85581330843028f252600", + "revision": "1e47c3a1140e4ee2b531d70f", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -21907,18 +24958,27 @@ "total_amount": 72120104, "history_id": 1689198160853, "id": 1689198160853, - "date_created": "2023-07-12T21:42:40.853Z", - "date_last_updated": "2023-07-12T21:42:40.853Z", - "date_of_expiration": "2023-07-12T21:42:40.853Z", + "date_created": { + "type": 6, + "value": 1689198160853 + }, + "date_last_updated": { + "type": 6, + "value": 1689198160853 + }, + "date_of_expiration": { + "type": 6, + "value": 1689198160853 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "7766e2485c5341379ecfb1e7", + "revision": "fe37256d97d546c7aa6442d4", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -21926,10 +24986,10 @@ "content": { "type": "STRING", "value": "Saque de 72.120.104,00 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", - "revision": "97fed85a1b794cf8ba859394", + "revision": "0e13371008464d179a2b64c9", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -21941,10 +25001,10 @@ "label": "Taxa de 3,00%", "amount": 2098695.0264 }, - "revision": "1c2e964641494164a1031e44", + "revision": "c367e2b4fc1542f59df7000a", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -21961,10 +25021,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "acb26230111e4d03b015c5e6", + "revision": "274d0cb568b348a08bf1385d", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -21972,10 +25032,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/021977101011675604/history/1690914468659", - "revision": "419be0fdb1c846a0ac9a9f55", + "revision": "0764ee78ae1c445a99e72857", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -21983,10 +25043,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "335bda25970c4c44a6266eb0", + "revision": "fd0577e341a34b208497fa3d", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22001,24 +25061,39 @@ "total_amount": 69956500.88, "id": 1690914468659, "history_id": 1690914468659, - "date_created": "2023-08-01T18:27:48.659Z", - "date_last_updated": "2023-08-07T14:42:48.367Z", - "date_of_expiration": "2023-08-01T18:27:48.659Z", + "date_created": { + "type": 6, + "value": 1690914468659 + }, + "date_last_updated": { + "type": 6, + "value": 1691419368367 + }, + "date_of_expiration": { + "type": 6, + "value": 1690914468659 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": "2023-08-07T14:42:48.367Z", - "money_release_date": "2023-08-07T14:42:48.367Z", + "date_approved": { + "type": 6, + "value": 1691419368367 + }, + "money_release_date": { + "type": 6, + "value": 1691419368367 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "6c0557a39c8944acb7c4fef6", + "revision": "fe4e5c3b07f9462f9f6c1001", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22026,10 +25101,10 @@ "content": { "type": "STRING", "value": "Saque de 69.956.500,88 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", - "revision": "85fba415ef784e7ca7a4a379", + "revision": "0e1acaa7749542159cbd1a82", "revision_nr": 1, - "created": 1701463509536, - "modified": 1701463509536 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22041,10 +25116,10 @@ "label": "Taxa de 3,00%", "amount": 1026103.0443000001 }, - "revision": "fe5d1499d490474c8235c9a4", + "revision": "0e099af4d031465b80f92c91", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22061,10 +25136,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "25e9c10cbabf41eeac42e6d4", + "revision": "bdd0d7890ed04276bc26ecf3", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22072,10 +25147,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/021977101011675604/history/1690914748870", - "revision": "23540c24f4064cc1a3236246", + "revision": "91425119f07f43798aab4f33", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22083,10 +25158,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "fcebb42cff69489d839ab73b", + "revision": "7bfdfe2860eb496181e2ea5f", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22101,23 +25176,35 @@ "total_amount": 34203434.81, "id": 1690914748870, "history_id": 1690914748870, - "date_created": "2023-08-01T18:32:28.870Z", - "date_last_updated": "2023-08-16T14:21:59.152Z", - "date_of_expiration": "2023-08-01T18:32:28.870Z", + "date_created": { + "type": 6, + "value": 1690914748870 + }, + "date_last_updated": { + "type": 6, + "value": 1692195719152 + }, + "date_of_expiration": { + "type": 6, + "value": 1690914748870 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": "2023-08-16T14:21:59.152Z", + "money_release_date": { + "type": 6, + "value": 1692195719152 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "74dd45cca2124459a8781ade", + "revision": "8097eff6958046c79dcb77b8", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22125,10 +25212,10 @@ "content": { "type": "STRING", "value": "Saque de 34.203.434,81 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", - "revision": "cd177c67066e4e54858d2d09", + "revision": "8bbd0ed4da584345b1dde0e2", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22136,10 +25223,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8bd33cf0385247739d10b3dc", + "revision": "7681ff23182d47b69bf12c6b", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22147,10 +25234,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "667e22ab0000415a9ad4cf16", + "revision": "e2c94c90b66741e390f1b90c", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22161,10 +25248,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "cc95b610e5e442aabbd3be2f", + "revision": "7ce6ea7db53d4e2d91548590", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22178,10 +25265,10 @@ "currencyType": "USD", "balancesModificacao": 1691419368675 }, - "revision": "8b5e987313f646e487ef117f", + "revision": "0a5545ee6d564e8598912ff6", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22193,10 +25280,10 @@ "symbol": "IVIP", "value": 6.93 }, - "revision": "42f841d736df46efbbb4575d", + "revision": "a6cf6e2db20e4d7c854e3f46", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22204,10 +25291,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e2aefa767e644f038dfa95ca", + "revision": "cc3993a2916046b7a8b51813", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22215,12 +25302,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "4c2c7fcd17214be6a3bc492a", + "revision": "40c4a7c24e1e41398e89d42a", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22235,22 +25322,37 @@ "total_amount": 100, "history_id": 1689290027436, "id": 1689290027436, - "date_created": "2023-07-13T23:13:47.436Z", - "date_last_updated": "2023-07-14T17:32:15.839Z", - "date_of_expiration": "2023-08-12T23:13:47.436Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-14T17:32:15.839Z", - "money_release_date": "2023-07-14T17:32:15.839Z", + "date_created": { + "type": 6, + "value": 1689290027436 + }, + "date_last_updated": { + "type": 6, + "value": 1689355935839 + }, + "date_of_expiration": { + "type": 6, + "value": 1691882027436 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689355935839 + }, + "money_release_date": { + "type": 6, + "value": 1689355935839 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "c5e86f90578047c098b1fb1c", + "revision": "fede065d6e5b480396ca423e", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22258,10 +25360,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", - "revision": "b81fb479187c439382954db0", + "revision": "e512c5002da24101a8746748", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22269,12 +25371,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "2afa95764ce944949e4b014c", + "revision": "7d56db7900ec41b4bb0a80f2", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22289,18 +25391,27 @@ "total_amount": 100, "history_id": 1689338968555, "id": 1689338968555, - "date_created": "2023-07-14T12:49:28.555Z", - "date_last_updated": "2023-07-14T12:49:28.555Z", - "date_of_expiration": "2023-08-13T12:49:28.555Z", + "date_created": { + "type": 6, + "value": 1689338968555 + }, + "date_last_updated": { + "type": 6, + "value": 1689338968555 + }, + "date_of_expiration": { + "type": 6, + "value": 1691930968555 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "66110f83f77f44dd94137a32", + "revision": "de9735c8e4534381ba1c7497", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22308,10 +25419,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", - "revision": "d0e85bf57a734ab3881405b8", + "revision": "cee78e819cbc4c0b99a2e332", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22319,12 +25430,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "06cc3960857f4766a05af5e3", + "revision": "257b399fd83247a79f8b2785", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22339,18 +25450,27 @@ "total_amount": 100, "history_id": 1689345853748, "id": 1689345853748, - "date_created": "2023-07-14T14:44:13.748Z", - "date_last_updated": "2023-07-14T14:44:13.748Z", - "date_of_expiration": "2023-08-13T14:44:13.748Z", + "date_created": { + "type": 6, + "value": 1689345853748 + }, + "date_last_updated": { + "type": 6, + "value": 1689345853748 + }, + "date_of_expiration": { + "type": 6, + "value": 1691937853748 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "af73dc87217745588180911a", + "revision": "9a2fc9f77fbf41dd9d5cb901", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22358,10 +25478,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", - "revision": "7e1132d758754d85bbcf63e9", + "revision": "94ae22b6830e496cbc5f34b1", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22379,12 +25499,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "dfd782af5c034af9b0f716b3", + "revision": "7dd0e433a5b54dc497f444c3", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22400,9 +25520,18 @@ "original_amount": 62553, "total_amount": 62553, "id": 1689357674118, - "date_created": "2023-07-14T18:01:14.118Z", - "date_last_updated": "2023-07-14T18:01:14.118Z", - "date_of_expiration": "2023-07-14T18:01:14.118Z", + "date_created": { + "type": 6, + "value": 1689357674118 + }, + "date_last_updated": { + "type": 6, + "value": 1689357674118 + }, + "date_of_expiration": { + "type": 6, + "value": 1689357674118 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -22411,10 +25540,10 @@ "history_id": 1689357674118, "description": "Compra de 62.553,00 IVIP por 100,00 BRL" }, - "revision": "11405f98257e47a796a5dcad", + "revision": "b5f53ce64c9c47068004c681", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22430,12 +25559,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "98ca532f5c0a422688e81c0c", + "revision": "0bd7f85643bc4977a40ce4d5", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22443,10 +25572,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/023129781601157750/history/1690557889809", - "revision": "68cc3c5cd97f4717996382c2", + "revision": "bd4f7169b5f24d3ea7b1f297", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22461,9 +25590,18 @@ "total_amount": 62553, "id": 1690557889809, "history_id": 1690557889809, - "date_created": "2023-07-28T15:24:49.809Z", - "date_last_updated": "2023-07-28T15:24:49.809Z", - "date_of_expiration": "2023-07-28T15:24:49.809Z", + "date_created": { + "type": 6, + "value": 1690557889809 + }, + "date_last_updated": { + "type": 6, + "value": 1690557889809 + }, + "date_of_expiration": { + "type": 6, + "value": 1690557889809 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -22471,10 +25609,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "18a18defd2ca43068065b1ad", + "revision": "c19fe196ea4b4e8bb031edb6", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22482,10 +25620,10 @@ "content": { "type": "STRING", "value": "Saque de 62.553,00 IVIP para a carteira 0x0f58150836c0785C212ea8Eb4eC1Cce6E595CE4a", - "revision": "6f3f7ee135954c1abe1f0a1d", + "revision": "d4974b19ce63458d94fa4959", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22493,10 +25631,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7dd9da45c1034279a9a46682", + "revision": "b73529af25324f8da7d34090", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22504,10 +25642,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5758b470528549be8a2fc07d", + "revision": "246e44d71b8d4b18ab561229", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22518,10 +25656,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "d9ccc81232ef42e49344e04f", + "revision": "89c444ff799141b19bdb0342", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22533,12 +25671,15 @@ "dateValidity": 1689289832519, "totalValue": 20.68, "currencyType": "USD", - "balancesModificacao": "2023-10-12T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697079600000 + } }, - "revision": "0eb72245b77e4b33a03052c6", + "revision": "3be963d0e839450595cce842", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22546,12 +25687,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "901d19d17eb44034b7d8e4a5", + "revision": "ae2c3e95552e473eab203203", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22566,22 +25707,37 @@ "total_amount": 62000, "history_id": 1688838966144, "id": 1688838966144, - "date_created": "2023-07-08T17:56:06.144Z", - "date_last_updated": "2023-07-08T17:56:06.144Z", - "date_of_expiration": "2023-07-08T17:56:06.144Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-08T17:56:06.144Z", - "money_release_date": "2023-07-08T17:56:06.144Z", + "date_created": { + "type": 6, + "value": 1688838966144 + }, + "date_last_updated": { + "type": 6, + "value": 1688838966144 + }, + "date_of_expiration": { + "type": 6, + "value": 1688838966144 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1688838966144 + }, + "money_release_date": { + "type": 6, + "value": 1688838966144 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "dcfc1107b6914900946b5c28", + "revision": "5f717bdd2b3840c88ab86853", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22589,10 +25745,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 62.000,00 para a carteira iVip 0255.1405.5020.5792-40", - "revision": "576ea50ee8184c1f93321506", + "revision": "5f736ad84dce4ef18e5497ba", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22610,12 +25766,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "6a6186f4c9f54ccd8268f10e", + "revision": "e25e8a09ad4f4893bb4168b8", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22631,9 +25787,18 @@ "original_amount": 100000000, "total_amount": 100000000, "id": 1688839141121, - "date_created": "2023-07-08T17:59:01.121Z", - "date_last_updated": "2023-07-08T17:59:01.121Z", - "date_of_expiration": "2023-07-08T17:59:01.121Z", + "date_created": { + "type": 6, + "value": 1688839141121 + }, + "date_last_updated": { + "type": 6, + "value": 1688839141121 + }, + "date_of_expiration": { + "type": 6, + "value": 1688839141121 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -22642,10 +25807,10 @@ "history_id": 1688839141121, "description": "Compra de 100.000.000,00 IVIP por 62.000,00 BRL" }, - "revision": "bdec8ecb450c48bd827f00e7", + "revision": "b5619cce586948bf9df23c82", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22653,12 +25818,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "3c4d77402dc74901b7ac05ca", + "revision": "a8bcb781903e48de8827de41", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22673,22 +25838,37 @@ "total_amount": 50000000, "history_id": 1689276795860, "id": 1689276795860, - "date_created": "2023-07-13T19:33:15.860Z", - "date_last_updated": "2023-07-13T19:33:15.860Z", - "date_of_expiration": "2023-07-13T19:33:15.860Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "IVIP", - "date_approved": "2023-07-13T19:33:15.860Z", - "money_release_date": "2023-07-13T19:33:15.860Z", + "date_created": { + "type": 6, + "value": 1689276795860 + }, + "date_last_updated": { + "type": 6, + "value": 1689276795860 + }, + "date_of_expiration": { + "type": 6, + "value": 1689276795860 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "IVIP", + "date_approved": { + "type": 6, + "value": 1689276795860 + }, + "money_release_date": { + "type": 6, + "value": 1689276795860 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "40f4a09f7aa542bfba23f312", + "revision": "13b17042f5994bbaacb4df38", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22696,10 +25876,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 50.000.000,00 IVIP para a carteira iVip 0255.1405.5020.5792-40", - "revision": "32439cb61c7645d881f38ded", + "revision": "b1ba40a5d555474fa2900b84", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820509, + "modified": 1701465820509 } }, { @@ -22717,12 +25897,12 @@ "installment_amount": 149517672, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "63a778820ba4494d965063a6", + "revision": "2cab820325a943abb84c3ade", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -22737,9 +25917,18 @@ "original_amount": 149517672, "total_amount": 149517672, "id": 1689278842357, - "date_created": "2023-07-13T20:07:22.357Z", - "date_last_updated": "2023-07-13T20:07:22.357Z", - "date_of_expiration": "2024-01-13T20:07:22.357Z", + "date_created": { + "type": 6, + "value": 1689278842357 + }, + "date_last_updated": { + "type": 6, + "value": 1689278842357 + }, + "date_of_expiration": { + "type": 6, + "value": 1705176442357 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -22747,10 +25936,10 @@ "currency_id": "IVIP", "history_id": 1689278842357 }, - "revision": "fe6ac04b9c3341cc84a702f1", + "revision": "5f314202e4db461d94b5362c", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -22758,10 +25947,10 @@ "content": { "type": "STRING", "value": "Investimento de 149.517.672,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 1/13/2024", - "revision": "4770b454c8754fad8cf327d6", + "revision": "019f4d0d0d4c4609badf8eb4", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -22779,12 +25968,12 @@ "installment_amount": 450820, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "959475f5111c48468a54edc5", + "revision": "ac68bfaa9997460bad1bc7f0", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -22799,9 +25988,18 @@ "original_amount": 450820, "total_amount": 450820, "id": 1689295244660, - "date_created": "2023-07-14T00:40:44.660Z", - "date_last_updated": "2023-07-14T00:40:44.660Z", - "date_of_expiration": "2025-07-14T00:40:44.660Z", + "date_created": { + "type": 6, + "value": 1689295244660 + }, + "date_last_updated": { + "type": 6, + "value": 1689295244660 + }, + "date_of_expiration": { + "type": 6, + "value": 1752453644660 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -22809,10 +26007,10 @@ "currency_id": "IVIP", "history_id": 1689295244660 }, - "revision": "9ef74e65c15343e79a530d52", + "revision": "2cd2310870b14f6cbf084e31", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -22820,10 +26018,10 @@ "content": { "type": "STRING", "value": "Investimento de 450.820,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/13/2025", - "revision": "418f668ceeff4940a07847ca", + "revision": "0d1be4dc131d4ec1800f4e5f", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -22831,12 +26029,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "e7db6a1b95204972af344fc1", + "revision": "cefe3fba4d514668a9c51a59", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -22851,18 +26049,27 @@ "total_amount": 9396, "history_id": 1689350577243, "id": 1689350577243, - "date_created": "2023-07-14T16:02:57.243Z", - "date_last_updated": "2023-07-14T16:02:57.243Z", - "date_of_expiration": "2023-08-13T16:02:57.243Z", + "date_created": { + "type": 6, + "value": 1689350577243 + }, + "date_last_updated": { + "type": 6, + "value": 1689350577243 + }, + "date_of_expiration": { + "type": 6, + "value": 1691942577243 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "8aaa15e7be46490e871ce9ae", + "revision": "ab396f7964d94a2686059eca", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -22870,10 +26077,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 9.396,00 para a carteira iVip 0255.1405.5020.5792-40", - "revision": "a83fbf29592f4184b190de67", + "revision": "6ccd631a604d4680a967262f", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -22881,12 +26088,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "fd862d6039c04ac79f1df649", + "revision": "8c368eccf32f42acb0f85e9f", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -22901,18 +26108,27 @@ "total_amount": 30010000, "history_id": 1690472510945, "id": 1690472510945, - "date_created": "2023-07-27T15:41:50.945Z", - "date_last_updated": "2023-07-27T15:41:50.945Z", - "date_of_expiration": "2023-07-27T15:41:50.945Z", + "date_created": { + "type": 6, + "value": 1690472510945 + }, + "date_last_updated": { + "type": 6, + "value": 1690472510945 + }, + "date_of_expiration": { + "type": 6, + "value": 1690472510945 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "IVIP" }, - "revision": "25880d68b76c46f4a52cd185", + "revision": "fa1d4c3657db41b0917b5927", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -22920,10 +26136,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 30.010.000,00 IVIP para a carteira iVip 0255.1405.5020.5792-40", - "revision": "cc4b9eb945ce4d25a8f48438", + "revision": "f2e4813fce424fd1b1ea6d29", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -22939,12 +26155,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "1b8d3a45ed604a8fb3a3bf05", + "revision": "75ab809bc7674353bd87880a", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -22952,10 +26168,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1691081114647", - "revision": "cc50da8c0e6f42e8ba6ed681", + "revision": "cdb68d210b05441d9dae5768", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -22970,9 +26186,18 @@ "total_amount": 6001475, "id": 1691081114647, "history_id": 1691081114647, - "date_created": "2023-08-03T16:45:14.647Z", - "date_last_updated": "2023-08-03T16:45:14.647Z", - "date_of_expiration": "2023-09-03T16:45:14.646Z", + "date_created": { + "type": 6, + "value": 1691081114647 + }, + "date_last_updated": { + "type": 6, + "value": 1691081114647 + }, + "date_of_expiration": { + "type": 6, + "value": 1693759514646 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -22980,10 +26205,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "6b224b7952944149a13720f0", + "revision": "9ec74c012e0d49109bede343", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -22991,10 +26216,10 @@ "content": { "type": "STRING", "value": "Investimento de 6.001.475,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "c3e859df853c41c4ab7f8ee5", + "revision": "4f10ef492e614e37a0521c56", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23006,10 +26231,10 @@ "label": "Taxa de 3,00%", "amount": 721200.99 }, - "revision": "62286cb4cb7143268c76a45a", + "revision": "185fb4331a07453d8881c9c5", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23026,10 +26251,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "e991079a766d4f6ca54bb0d3", + "revision": "8549628621554bcfb19ce78d", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23037,10 +26262,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1692462419697", - "revision": "9996bcd1c1924e48a70ae87a", + "revision": "050fae198799473fb9dcd80d", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23048,10 +26273,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "287c79d23827490f940c391d", + "revision": "dcae4ed9a1f54a55ad1433c1", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23066,23 +26291,35 @@ "total_amount": 23318832.01, "id": 1692462419697, "history_id": 1692462419697, - "date_created": "2023-08-19T16:26:59.697Z", - "date_last_updated": "2023-08-21T10:14:55.779Z", - "date_of_expiration": "2023-08-19T16:26:59.697Z", + "date_created": { + "type": 6, + "value": 1692462419697 + }, + "date_last_updated": { + "type": 6, + "value": 1692612895779 + }, + "date_of_expiration": { + "type": 6, + "value": 1692462419697 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": "2023-08-21T10:14:55.779Z", + "money_release_date": { + "type": 6, + "value": 1692612895779 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "8c83bcb05b484bc5b6ce84b8", + "revision": "c86f84abe2c54c50997721a1", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23090,10 +26327,10 @@ "content": { "type": "STRING", "value": "Saque de 23.318.832,01 IVIP para a carteira 0x4BA972D54bb60Db93749D2cf5c4e160a3dd735c8", - "revision": "f84f67f43b3f4212a9bba710", + "revision": "52c0b52bc37149d2b2616546", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23109,12 +26346,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "4e563203383349e7bf529864", + "revision": "8c96a7576caa4b82a1d069ea", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23122,10 +26359,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1693759701053", - "revision": "9ea2cc8b074d46b2839bf676", + "revision": "02be7a8a1a0a4e75a598fa01", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23140,9 +26377,18 @@ "total_amount": 6121504.5, "id": "1693759701053", "history_id": "1693759701053", - "date_created": "2023-09-03T16:48:21.053Z", - "date_last_updated": "2023-09-03T16:48:21.053Z", - "date_of_expiration": "2023-09-03T16:48:21.053Z", + "date_created": { + "type": 6, + "value": 1693759701053 + }, + "date_last_updated": { + "type": 6, + "value": 1693759701053 + }, + "date_of_expiration": { + "type": 6, + "value": 1693759701053 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -23150,10 +26396,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "42c9639f2ece4d289d28866d", + "revision": "11a7af6d79e14262a6dc7670", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23161,10 +26407,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 6.001.475,00 IVIP com um rendimento de +120.029,5 IVIP (2,00%) - Y12XDT27", - "revision": "d6cef46546fb4643945581b0", + "revision": "112955c490f94ab7bf85eb4f", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23180,12 +26426,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "70a786ed9db94fb09bd64ce6", + "revision": "bae351fe962d4469b29017a9", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23193,10 +26439,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1693861899974", - "revision": "8a97123bb1c04a15bc0ad062", + "revision": "6bc91507bfff4d1bb0c19943", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23211,23 +26457,35 @@ "total_amount": 7836614, "id": "1693861899974", "history_id": "1693861899974", - "date_created": "2023-09-04T21:11:39.974Z", - "date_last_updated": "2023-10-04T13:04:00.162Z", - "date_of_expiration": "2023-10-04T21:11:39.973Z", + "date_created": { + "type": 6, + "value": 1693861899974 + }, + "date_last_updated": { + "type": 6, + "value": 1696424640162 + }, + "date_of_expiration": { + "type": 6, + "value": 1696453899973 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": "2023-10-04T13:04:00.162Z", + "money_release_date": { + "type": 6, + "value": 1696424640162 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "73924d238f3f40fda4d0948d", + "revision": "30167b4179224de6b0840e8a", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23235,10 +26493,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.836.614,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/10/2023 - Y12XDT27", - "revision": "ffb6283a67e6479aacdca559", + "revision": "a1d3a8b7a8fe47618e06c6eb", "revision_nr": 1, - "created": 1701463509537, - "modified": 1701463509537 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23247,12 +26505,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-13T13:17:39.628Z" + ".val": { + "type": 6, + "value": 1697203059628 + } }, - "revision": "e0abb3457f474c1289ae88e7", + "revision": "25bc41d97e14485898dbe2bf", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23268,12 +26529,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "8e522d8a2d584537bdfd7f17", + "revision": "50aba05fcb954a8eaee4c76a", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23281,10 +26542,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694611059637", - "revision": "e5c3edc8205d4b1080faea40", + "revision": "e5fe492ce9e64cb29ca88e12", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23299,23 +26560,35 @@ "total_amount": 24582, "id": "1694611059637", "history_id": "1694611059637", - "date_created": "2023-09-13T13:17:39.637Z", - "date_last_updated": "2023-09-13T13:18:06.754Z", + "date_created": { + "type": 6, + "value": 1694611059637 + }, + "date_last_updated": { + "type": 6, + "value": 1694611086754 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-09-13T13:18:06.754Z", - "money_release_date": "2023-09-13T13:18:06.754Z", + "date_approved": { + "type": 6, + "value": 1694611086754 + }, + "money_release_date": { + "type": 6, + "value": 1694611086754 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "aa37a125bdbf4228acd4c495", + "revision": "4a92d71915a24edfb4832c2e", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23323,10 +26596,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 24.582,00 BRL para a carteira iVip 0255.1405.5020.5792-40", - "revision": "57ae8997d46e4d52be21f6c7", + "revision": "e5eb73f782a543f0bc402909", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23342,12 +26615,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "348d8b88ad4540a4805a7710", + "revision": "d347184cf8494664b78ae070", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23355,10 +26628,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694612208335", - "revision": "c4713fec33f346b1824a0f54", + "revision": "0506d4690c63442b99547863", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23373,9 +26646,18 @@ "total_amount": 39021269, "id": "1694612208335", "history_id": "1694612208335", - "date_created": "2023-09-13T13:36:48.335Z", - "date_last_updated": "2023-09-13T13:36:48.335Z", - "date_of_expiration": "2023-09-13T13:36:48.335Z", + "date_created": { + "type": 6, + "value": 1694612208335 + }, + "date_last_updated": { + "type": 6, + "value": 1694612208335 + }, + "date_of_expiration": { + "type": 6, + "value": 1694612208335 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -23384,10 +26666,10 @@ "description": "Compra de 39.021.269,00 IVIP por 24.582,00 BRL", "status_detail": "accredited" }, - "revision": "4412c1d4edc94411a926d93b", + "revision": "56a08b9d090747ebaa4328c6", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23396,12 +26678,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-13T15:48:27.989Z" + ".val": { + "type": 6, + "value": 1697212107989 + } }, - "revision": "7d0b09299d984869847a71de", + "revision": "c2d425ead4534d6cb4d45285", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23417,12 +26702,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "7d0dc3c7caeb4cb6a589f5a1", + "revision": "dd4be7d1d4624a339c019c10", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23430,10 +26715,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694620107990", - "revision": "189f80fd469b43e4958157e7", + "revision": "b2ea2c7970b24a7abb9cc8d7", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23448,23 +26733,35 @@ "total_amount": 168, "id": "1694620107990", "history_id": "1694620107990", - "date_created": "2023-09-13T15:48:27.990Z", - "date_last_updated": "2023-09-13T17:11:03.588Z", + "date_created": { + "type": 6, + "value": 1694620107990 + }, + "date_last_updated": { + "type": 6, + "value": 1694625063588 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-09-13T17:11:03.588Z", - "money_release_date": "2023-09-13T17:11:03.588Z", + "date_approved": { + "type": 6, + "value": 1694625063588 + }, + "money_release_date": { + "type": 6, + "value": 1694625063588 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "3d07ce06babf40669ddca33c", + "revision": "43da2be98f3641fa89249072", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23472,10 +26769,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 168,00 BRL para a carteira iVip 0255.1405.5020.5792-40", - "revision": "37225216f10143b1b6ca917e", + "revision": "8bb3967fc6ed49199e3f3da5", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23491,12 +26788,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "0c21bd8455cf4302ac038dea", + "revision": "896f6cc00be547cabc6349fe", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23504,10 +26801,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694641684988", - "revision": "2ac0e147f72649b0b94327a5", + "revision": "3232918ce84c4e708a8c9e7e", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23522,9 +26819,18 @@ "total_amount": 258446, "id": "1694641684988", "history_id": "1694641684988", - "date_created": "2023-09-13T21:48:04.988Z", - "date_last_updated": "2023-09-13T21:48:04.988Z", - "date_of_expiration": "2023-09-13T21:48:04.988Z", + "date_created": { + "type": 6, + "value": 1694641684988 + }, + "date_last_updated": { + "type": 6, + "value": 1694641684988 + }, + "date_of_expiration": { + "type": 6, + "value": 1694641684988 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -23533,10 +26839,10 @@ "description": "Compra de 258.446,00 IVIP por 168,00 BRL", "status_detail": "accredited" }, - "revision": "5cf70922522a499086238b8b", + "revision": "e35b74eb1cc2427298d46df2", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23548,10 +26854,10 @@ "label": "Taxa de 3,00%", "amount": 750000 }, - "revision": "a2bb5125757b4334bb3b2cf4", + "revision": "39164e0e841f406b9c0053b1", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23568,10 +26874,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "c3064074b7af477da6d92999", + "revision": "30971c4e7d144cb3bd252043", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23579,10 +26885,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694692198880", - "revision": "9f0cc8b6043f4b4b9b77ce27", + "revision": "16c8cc2b59fc460aab6ef9d2", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23590,10 +26896,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "52b1c26f9a6846a99f57b5c0", + "revision": "6f33c62893e84084b82f9651", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23608,24 +26914,39 @@ "total_amount": 24250000, "id": "1694692198880", "history_id": "1694692198880", - "date_created": "2023-09-14T11:49:58.880Z", - "date_last_updated": "2023-09-18T13:02:22.983Z", - "date_of_expiration": "2023-09-14T11:49:58.880Z", + "date_created": { + "type": 6, + "value": 1694692198880 + }, + "date_last_updated": { + "type": 6, + "value": 1695042142983 + }, + "date_of_expiration": { + "type": 6, + "value": 1694692198880 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": "2023-09-18T13:02:22.983Z", - "money_release_date": "2023-09-18T13:02:22.983Z", + "date_approved": { + "type": 6, + "value": 1695042142983 + }, + "money_release_date": { + "type": 6, + "value": 1695042142983 + }, "money_release_status": "drawee", "wasDebited": true }, - "revision": "00654ef41a234aa488857cf5", + "revision": "252ebb292f894bc79ed2535b", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23633,10 +26954,10 @@ "content": { "type": "STRING", "value": "Saque de 24.250.000,00 IVIP para a carteira 0xd3CF5Ea2Dcfb3c96d31AE10BA19cc4c7218b45b1", - "revision": "b6036dd6e2464c18a7542ce3", + "revision": "73e4e136256444e195a23374", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23652,12 +26973,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "67a32b859bfb4d5fb94a07b2", + "revision": "880a001033784e20a9f8ccc1", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23665,10 +26986,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1696451540047", - "revision": "8a7aafac1ec0479ea356b420", + "revision": "0d8de547912b4006b6a2f804", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23684,9 +27005,18 @@ "total_amount": 8000000, "id": "1696451540047", "history_id": "1696451540047", - "date_created": "2023-10-04T20:32:20.047Z", - "date_last_updated": "2023-10-04T20:32:20.047Z", - "date_of_expiration": "2023-11-04T20:32:19.879Z", + "date_created": { + "type": 6, + "value": 1696451540047 + }, + "date_last_updated": { + "type": 6, + "value": 1696451540047 + }, + "date_of_expiration": { + "type": 6, + "value": 1699129939879 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -23694,10 +27024,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "da12314ab40d4431b1e39be3", + "revision": "312a627affb14d509404e23a", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23705,10 +27035,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "32366937d66b4c2eae65bde4", + "revision": "e70beac989b646f5bb157674", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23716,10 +27046,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1ef669a01df343bd802f1605", + "revision": "748fb6d4008b435dbcbc8c00", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23727,10 +27057,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fef2660f9a574fed8187beb2", + "revision": "fadf55f51f0d46e2b4874ca8", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23740,12 +27070,15 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-09-18T16:29:37.899Z" + "analysisRequested": { + "type": 6, + "value": 1695054577899 + } }, - "revision": "7685a5b6df5d48ea8ef47a40", + "revision": "a56e1a0bea63439aa65b6043", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23757,10 +27090,10 @@ "symbol": "IVIP", "value": 4538.39 }, - "revision": "8626026b0b0a46eea12d1acf", + "revision": "be8488d728c04f319ccc1fff", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23768,10 +27101,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e102b7aee03040bba4b920ac", + "revision": "136089cc22c04632978a8aac", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820510, + "modified": 1701465820510 } }, { @@ -23783,12 +27116,15 @@ "dateValidity": 1688773726146, "totalValue": 15.572371266885096, "currencyType": "USD", - "balancesModificacao": "2023-10-11T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696993200000 + } }, - "revision": "391b0ee975b4427a9f6ca56d", + "revision": "19ca6739777d47f8a7f9f61c", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -23800,10 +27136,10 @@ "symbol": "IVIP", "value": 9273.73 }, - "revision": "8409a47168d846d0bc82ee5b", + "revision": "ed2a59d167d04b1ba2bf6910", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -23811,10 +27147,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b8af45146a63454cad5993a7", + "revision": "da0b313c0bd943cab05f0a25", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -23822,12 +27158,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "2988b8e9d68c46e2be655715", + "revision": "5868e9625c534dd7b458be8a", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -23842,22 +27178,37 @@ "total_amount": 50, "history_id": 1681332472707, "id": 1681332472707, - "date_created": "2023-04-12T20:47:52.707Z", - "date_last_updated": "2023-04-12T21:15:14.528Z", - "date_of_expiration": "2023-05-12T20:47:52.707Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-04-12T21:15:14.528Z", - "money_release_date": "2023-04-12T21:15:14.528Z", + "date_created": { + "type": 6, + "value": 1681332472707 + }, + "date_last_updated": { + "type": 6, + "value": 1681334114528 + }, + "date_of_expiration": { + "type": 6, + "value": 1683924472707 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1681334114528 + }, + "money_release_date": { + "type": 6, + "value": 1681334114528 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "c4bbc44e77294641b1768e81", + "revision": "46e8f8031fdc4979800bcd42", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -23865,10 +27216,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "be9fe1101181419b9fd95379", + "revision": "80d74e64504240b9b440c3c3", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -23876,12 +27227,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "1ef243684b5e40cf9aac62a2", + "revision": "009280c529f540a29f70f2c4", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -23896,22 +27247,37 @@ "total_amount": 350, "history_id": 1681334377618, "id": 1681334377618, - "date_created": "2023-04-12T21:19:37.618Z", - "date_last_updated": "2023-04-12T21:22:27.169Z", - "date_of_expiration": "2023-05-12T21:19:37.618Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-04-12T21:22:27.169Z", - "money_release_date": "2023-04-12T21:22:27.169Z", + "date_created": { + "type": 6, + "value": 1681334377618 + }, + "date_last_updated": { + "type": 6, + "value": 1681334547169 + }, + "date_of_expiration": { + "type": 6, + "value": 1683926377618 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1681334547169 + }, + "money_release_date": { + "type": 6, + "value": 1681334547169 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "ff24ded8bbf34d3e8d08581f", + "revision": "b70ae5f9ebca4380b8a3c610", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -23919,10 +27285,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 350,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "b5c669a2166a4af38fa11b40", + "revision": "6d3ada24751b42e48db3b5d1", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -23930,12 +27296,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "955d09b27c504be9b5501bc5", + "revision": "e0fda7c79b1140cba2435191", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -23950,22 +27316,37 @@ "total_amount": 200, "history_id": 1682092492202, "id": 1682092492202, - "date_created": "2023-04-21T15:54:52.202Z", - "date_last_updated": "2023-04-24T17:30:53.305Z", - "date_of_expiration": "2023-05-21T15:54:52.202Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-04-24T17:30:53.305Z", - "money_release_date": "2023-04-24T17:30:53.305Z", + "date_created": { + "type": 6, + "value": 1682092492202 + }, + "date_last_updated": { + "type": 6, + "value": 1682357453305 + }, + "date_of_expiration": { + "type": 6, + "value": 1684684492202 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1682357453305 + }, + "money_release_date": { + "type": 6, + "value": 1682357453305 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "3423db4e1d0c47d8b2490b86", + "revision": "9f1e06f6f1874b3e9cf0a516", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -23973,10 +27354,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "8000b5772c75490e8a528b78", + "revision": "d00d4196b0f14f77b45a1f6d", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -23984,12 +27365,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "535b79872b934911b9de4c73", + "revision": "3eb1e05dc73f4655a007bd8a", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24004,18 +27385,27 @@ "total_amount": 200, "history_id": 1682353441521, "id": 1682353441521, - "date_created": "2023-04-24T16:24:01.521Z", - "date_last_updated": "2023-04-24T16:24:01.521Z", - "date_of_expiration": "2023-05-24T16:24:01.521Z", + "date_created": { + "type": 6, + "value": 1682353441521 + }, + "date_last_updated": { + "type": 6, + "value": 1682353441521 + }, + "date_of_expiration": { + "type": 6, + "value": 1684945441521 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "22b8368120254143a3a99d4c", + "revision": "210152ab689c40978b07d259", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24023,10 +27413,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "eed9dd860d1a4fb194de2fb5", + "revision": "90455a8f0efb41f8896647d4", "revision_nr": 1, - "created": 1701463509538, - "modified": 1701463509538 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24038,10 +27428,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 20 }, - "revision": "c70ffacb87014023bb993406", + "revision": "ac74ae3385624b4f9220b415", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24049,10 +27439,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ad62ef685f9d431a9b761e4d", + "revision": "a360bf5a48c24a689d3ef2b0", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24060,10 +27450,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "963753ae554a40978d64920b", + "revision": "7591785278194a80b6bc1237", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24078,19 +27468,28 @@ "total_amount": 1020, "history_id": 1682354342344, "id": 1682354342344, - "date_created": "2023-04-24T16:39:02.344Z", - "date_last_updated": "2023-04-24T16:39:02.344Z", - "date_of_expiration": "2023-05-24T16:39:02.344Z", + "date_created": { + "type": 6, + "value": 1682354342344 + }, + "date_last_updated": { + "type": 6, + "value": 1682354342344 + }, + "date_of_expiration": { + "type": 6, + "value": 1684946342344 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "a72eab253d7b4f2c87397d30", + "revision": "567c547add7f4c868174e996", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24098,10 +27497,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0266.8515.5320.8373-72 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.020,00", - "revision": "ef9dd5693f614bac9f80f57b", + "revision": "90e09ed6cf094d149957e89b", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24119,12 +27518,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "7f91ac623c784364a7b1c36a", + "revision": "8723229c3ca6431c89b45948", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24140,9 +27539,18 @@ "original_amount": 8647027, "total_amount": 8647027, "id": 1684018921033, - "date_created": "2023-05-13T23:02:01.033Z", - "date_last_updated": "2023-05-13T23:02:01.033Z", - "date_of_expiration": "2023-05-13T23:02:01.033Z", + "date_created": { + "type": 6, + "value": 1684018921033 + }, + "date_last_updated": { + "type": 6, + "value": 1684018921033 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018921033 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24151,10 +27559,10 @@ "history_id": 1684018921033, "description": "Compra de 8.647.027,00 IVIP por 1.600,00 BRL" }, - "revision": "8dab2b38c02240c0903c9650", + "revision": "7b396ef213eb487e8ba77475", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24162,12 +27570,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "775ce78680084bc589e114d2", + "revision": "17e2240c801f47269e595867", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24182,22 +27590,37 @@ "total_amount": 400, "history_id": 1689084265995, "id": 1689084265995, - "date_created": "2023-07-11T14:04:25.995Z", - "date_last_updated": "2023-07-13T19:05:38.556Z", - "date_of_expiration": "2023-08-10T14:04:25.995Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-13T19:05:38.556Z", - "money_release_date": "2023-07-13T19:05:38.556Z", + "date_created": { + "type": 6, + "value": 1689084265995 + }, + "date_last_updated": { + "type": 6, + "value": 1689275138556 + }, + "date_of_expiration": { + "type": 6, + "value": 1691676265995 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689275138556 + }, + "money_release_date": { + "type": 6, + "value": 1689275138556 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "e7435d5620dc479b9f817f69", + "revision": "340e91824f27418bbd754d1d", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24205,10 +27628,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "fabc344e7dc64434aa353c16", + "revision": "a895e35059c04f519e9a5f9e", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24216,12 +27639,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "bd76d69eb9d8480989e740ff", + "revision": "3207d31205414306984e59f9", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24236,18 +27659,27 @@ "total_amount": 401.02, "history_id": 1689095021542, "id": 1689095021542, - "date_created": "2023-07-11T17:03:41.542Z", - "date_last_updated": "2023-07-11T17:03:41.542Z", - "date_of_expiration": "2023-08-10T17:03:41.542Z", + "date_created": { + "type": 6, + "value": 1689095021542 + }, + "date_last_updated": { + "type": 6, + "value": 1689095021542 + }, + "date_of_expiration": { + "type": 6, + "value": 1691687021542 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "0e0a36d92b65441791c06d22", + "revision": "0732919d556c4a89a7084ce4", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24255,10 +27687,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 401,02 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "088c75c750da440199ff7438", + "revision": "1afd5c93590e433c94e0841d", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24276,12 +27708,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "744375fe49ac41c7a6d25721", + "revision": "b53a2cd0e1954521a52dd395", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24297,9 +27729,18 @@ "original_amount": 168630, "total_amount": 168630, "id": 1689275206669, - "date_created": "2023-07-13T19:06:46.669Z", - "date_last_updated": "2023-07-13T19:06:46.669Z", - "date_of_expiration": "2023-07-13T19:06:46.669Z", + "date_created": { + "type": 6, + "value": 1689275206669 + }, + "date_last_updated": { + "type": 6, + "value": 1689275206669 + }, + "date_of_expiration": { + "type": 6, + "value": 1689275206669 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24308,10 +27749,10 @@ "history_id": 1689275206669, "description": "Compra de 168.630,00 IVIP por 400,00 BRL" }, - "revision": "3c7226f831a8423e93eeb623", + "revision": "37235a2d7eaf4991bcf92473", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24320,12 +27761,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-28T03:07:50.124Z" + ".val": { + "type": 6, + "value": 1693192070124 + } }, - "revision": "3273fa93333c474a8a8a1cec", + "revision": "98d55a0a66d04f978023dfc7", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24341,12 +27785,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "c53c1df4399a424990f98660", + "revision": "f519ef1dcb9a47dbb22f6120", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24354,10 +27798,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690600070124", - "revision": "25b7f2a806ac4b18a665c4d2", + "revision": "08ef6688c9b64a0d8d215dca", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24372,23 +27816,35 @@ "total_amount": 30, "id": 1690600070124, "history_id": 1690600070124, - "date_created": "2023-07-29T03:07:50.124Z", - "date_last_updated": "2023-07-31T13:14:27.089Z", + "date_created": { + "type": 6, + "value": 1690600070124 + }, + "date_last_updated": { + "type": 6, + "value": 1690809267089 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-07-31T13:14:27.089Z", - "money_release_date": "2023-07-31T13:14:27.089Z", + "date_approved": { + "type": 6, + "value": 1690809267089 + }, + "money_release_date": { + "type": 6, + "value": 1690809267089 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "9596148e479045cf800ea913", + "revision": "c75ae0bbe653414ea720d7cf", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24396,10 +27852,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 30,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "3f58bc00f000459e97ba0465", + "revision": "113ec590019f49988719ab3c", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24415,12 +27871,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "46977588e270423aaa8d9d81", + "revision": "f6e8111c67644280ba5aad9e", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24428,10 +27884,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690822928470", - "revision": "3598f5e6f01c4c3fa1b9d5c3", + "revision": "fdadc746d0bb469e94671281", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24446,9 +27902,18 @@ "total_amount": 26363, "id": 1690822928470, "history_id": 1690822928470, - "date_created": "2023-07-31T17:02:08.470Z", - "date_last_updated": "2023-07-31T17:02:08.470Z", - "date_of_expiration": "2023-07-31T17:02:08.470Z", + "date_created": { + "type": 6, + "value": 1690822928470 + }, + "date_last_updated": { + "type": 6, + "value": 1690822928470 + }, + "date_of_expiration": { + "type": 6, + "value": 1690822928470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -24457,10 +27922,10 @@ "description": "Compra de 26.363,00 IVIP por 30,00 BRL", "status_detail": "accredited" }, - "revision": "b9237c5a62dc4faab1d7cdba", + "revision": "cd2397db1ea345f0b198a1f6", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24469,12 +27934,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-31T17:04:16.427Z" + ".val": { + "type": 6, + "value": 1693501456427 + } }, - "revision": "aa285fce54eb4a18b987af51", + "revision": "5ecaaca0a3624c10b332b4ce", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24490,12 +27958,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "fb8bfea8d0074edab2a071dd", + "revision": "c3ed847d744843efaa6105b2", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24503,10 +27971,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690909456427", - "revision": "59c2fc4f8d3b416c98ed0dd4", + "revision": "dc2f6aa4847b4654b2614c79", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24521,23 +27989,35 @@ "total_amount": 100, "id": 1690909456427, "history_id": 1690909456427, - "date_created": "2023-08-01T17:04:16.427Z", - "date_last_updated": "2023-08-02T11:58:05.678Z", + "date_created": { + "type": 6, + "value": 1690909456427 + }, + "date_last_updated": { + "type": 6, + "value": 1690977485678 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-02T11:58:05.678Z", - "money_release_date": "2023-08-02T11:58:05.678Z", + "date_approved": { + "type": 6, + "value": 1690977485678 + }, + "money_release_date": { + "type": 6, + "value": 1690977485678 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "937b9a55e6d74d5cbaa0cb87", + "revision": "ff00d11bc5f54988a1b497ad", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24545,10 +28025,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "724e631259bb409d8072e59d", + "revision": "2faec6af57664dd39b66ea76", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820511, + "modified": 1701465820511 } }, { @@ -24564,12 +28044,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "09caa57b9bec4a8899524d9d", + "revision": "1ed5607240d243abb08fda06", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24577,10 +28057,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690977815869", - "revision": "09b582e11fd84bff86090b94", + "revision": "284dd9d445f24ae784ab2106", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24595,9 +28075,18 @@ "total_amount": 116013, "id": 1690977815869, "history_id": 1690977815869, - "date_created": "2023-08-02T12:03:35.869Z", - "date_last_updated": "2023-08-02T12:03:35.869Z", - "date_of_expiration": "2023-08-02T12:03:35.869Z", + "date_created": { + "type": 6, + "value": 1690977815869 + }, + "date_last_updated": { + "type": 6, + "value": 1690977815869 + }, + "date_of_expiration": { + "type": 6, + "value": 1690977815869 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -24606,10 +28095,10 @@ "description": "Compra de 116.013,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "09f511a8e97042b587b7bbdc", + "revision": "6046e8f52707438a8da11afa", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24617,10 +28106,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6ce4de5895ca4800bf07dccd", + "revision": "ed6101564b664c9fa96219ee", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24632,10 +28121,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 20 }, - "revision": "8a186a79e0694910b42faeb8", + "revision": "3d20f1ad18a54b0485851e58", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24649,14 +28138,17 @@ "total_amount": 1020, "installments": 1, "installment_amount": 1020, - "date_created": "2023-04-24T16:39:02.344Z", + "date_created": { + "type": 6, + "value": 1682354342344 + }, "history_id": 1682354342344, "currency_id": "BRL" }, - "revision": "2acaa30574e74fa3ac25daa2", + "revision": "b34fef00f2034c2393089435", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24664,10 +28156,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0266.8515.5320.8373-72 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.020,00", - "revision": "1820b2cab8324a32bc456fbf", + "revision": "29273593ceb542ae9fbcef70", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24675,10 +28167,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "315b2708aafc4720809b17a0", + "revision": "9405adb52331442d86fa023a", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24686,10 +28178,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d33fd92a33a2482c96e5761a", + "revision": "9014737fe2eb467d9e9f9af6", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24697,10 +28189,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2f3e7a6884e64134b081b4d2", + "revision": "76c220fba8d0405d9a53b53f", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24710,13 +28202,19 @@ "value": { "approvedLimit": 1000, "limitUsed": 1000, - "analysisRequested": "2023-04-21T15:53:57.620Z", - "lastReview": "2023-04-21T15:54:24.302Z" + "analysisRequested": { + "type": 6, + "value": 1682092437620 + }, + "lastReview": { + "type": 6, + "value": 1682092464302 + } }, - "revision": "71e450b9127b4989a7724cb2", + "revision": "77dbc73063f8408f86dd9947", "revision_nr": 1, - "created": 1701463509539, - "modified": 1701463509539 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24728,12 +28226,15 @@ "dateValidity": 1681239500343, "totalValue": 405.92, "currencyType": "USD", - "balancesModificacao": "2023-10-02T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696215600000 + } }, - "revision": "80871211cdbf415e8d9f166c", + "revision": "2ead9d5b096649d39c7da4ee", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24741,10 +28242,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "577c171293dc44d7a1927462", + "revision": "7200c71c0c5147d1a9278b73", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24752,10 +28253,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c0f704a0805a41418a642a94", + "revision": "5a13328dacf34bf1a4628a5c", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24768,10 +28269,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "90a3bccdc6fe4b54898bb6af", + "revision": "ed38aabf4bdc43c6a3cd697a", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24783,10 +28284,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "269048f6e8c44bfe837b4d31", + "revision": "11002c1e5f9e4c2e8a0db93a", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24798,10 +28299,10 @@ "symbol": "IVIP", "value": 2344.22 }, - "revision": "05c7bab15a264d6c90181f37", + "revision": "537e8adddd624e3b9f060733", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24809,10 +28310,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b18caf3b8e164d75a537501a", + "revision": "5124531669904fd5b4eaad11", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820512, + "modified": 1701465820512 } }, { @@ -24820,12 +28321,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "91ce9b8741c84376b37eff99", + "revision": "01e9a0386ba2483ab08a63d4", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -24840,22 +28341,37 @@ "total_amount": 1000, "history_id": 1684115687035, "id": 1684115687035, - "date_created": "2023-05-15T01:54:47.035Z", - "date_last_updated": "2023-05-15T02:11:26.172Z", - "date_of_expiration": "2023-06-14T01:54:47.035Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-15T02:11:26.172Z", - "money_release_date": "2023-05-15T02:11:26.172Z", + "date_created": { + "type": 6, + "value": 1684115687035 + }, + "date_last_updated": { + "type": 6, + "value": 1684116686172 + }, + "date_of_expiration": { + "type": 6, + "value": 1686707687035 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684116686172 + }, + "money_release_date": { + "type": 6, + "value": 1684116686172 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "9bf2e79878174cff86a62626", + "revision": "c5f550fd59764a5482985d93", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -24863,10 +28379,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0275.3660.7098.8736-24", - "revision": "857227b03cb1411f85740f4f", + "revision": "dd23572baa714b06a0665f64", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -24874,12 +28390,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "0db095f88d3b430892dae059", + "revision": "c549dd56ce294c378acd3ddd", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -24894,22 +28410,37 @@ "total_amount": 500, "history_id": 1684116712162, "id": 1684116712162, - "date_created": "2023-05-15T02:11:52.162Z", - "date_last_updated": "2023-05-15T02:12:17.988Z", - "date_of_expiration": "2023-06-14T02:11:52.162Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-15T02:12:17.988Z", - "money_release_date": "2023-05-15T02:12:17.988Z", + "date_created": { + "type": 6, + "value": 1684116712162 + }, + "date_last_updated": { + "type": 6, + "value": 1684116737988 + }, + "date_of_expiration": { + "type": 6, + "value": 1686708712162 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684116737988 + }, + "money_release_date": { + "type": 6, + "value": 1684116737988 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "6a007d75820f4ebe8b257b0a", + "revision": "03f93bd71ccb411cbde03d6a", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -24917,10 +28448,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0275.3660.7098.8736-24", - "revision": "38c01ff59eb74e0fbcfc51c4", + "revision": "976a32a0732c470bb908a39e", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -24938,12 +28469,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "167c940837c24e1ab85dfa5d", + "revision": "318bf4056b58442aaba23b52", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -24959,9 +28490,18 @@ "original_amount": 7306097, "total_amount": 7306097, "id": 1684625508072, - "date_created": "2023-05-20T23:31:48.072Z", - "date_last_updated": "2023-05-20T23:31:48.072Z", - "date_of_expiration": "2023-05-20T23:31:48.072Z", + "date_created": { + "type": 6, + "value": 1684625508072 + }, + "date_last_updated": { + "type": 6, + "value": 1684625508072 + }, + "date_of_expiration": { + "type": 6, + "value": 1684625508072 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -24970,10 +28510,10 @@ "history_id": 1684625508072, "description": "Compra de 7.306.097,00 IVIP por 1.500,00 BRL" }, - "revision": "5e710a4b4f9d436bb4150988", + "revision": "8505b51f81c24c119426d653", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -24981,12 +28521,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "7157f5396d3c464289618e8a", + "revision": "c246bcc86ad74e638688a7ae", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25001,18 +28541,27 @@ "total_amount": 7306097, "history_id": 1685398096730, "id": 1685398096730, - "date_created": "2023-05-29T22:08:16.730Z", - "date_last_updated": "2023-05-29T22:08:16.730Z", - "date_of_expiration": "2023-05-29T22:08:16.730Z", + "date_created": { + "type": 6, + "value": 1685398096730 + }, + "date_last_updated": { + "type": 6, + "value": 1685398096730 + }, + "date_of_expiration": { + "type": 6, + "value": 1685398096730 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "d7f9280c3cb046d5bd666bb7", + "revision": "e2d8ea4bc12d44c0b9303a2a", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25020,10 +28569,10 @@ "content": { "type": "STRING", "value": "Saque de 7.306.097,00 IVIP para a carteira 0x5127C3d0B17433E2f03F2bdC96157ca9B00eeD8e", - "revision": "8c69a490bd484c9ab6e35661", + "revision": "58d80f5366f74716a68a51e2", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25031,12 +28580,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "161b4c62166e43f6a80ade09", + "revision": "b1df6956f022414690556e87", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25051,18 +28600,27 @@ "total_amount": 7306097, "history_id": 1685398151765, "id": 1685398151765, - "date_created": "2023-05-29T22:09:11.765Z", - "date_last_updated": "2023-05-29T22:09:11.765Z", - "date_of_expiration": "2023-05-29T22:09:11.765Z", + "date_created": { + "type": 6, + "value": 1685398151765 + }, + "date_last_updated": { + "type": 6, + "value": 1685398151765 + }, + "date_of_expiration": { + "type": 6, + "value": 1685398151765 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "005355df99c0476aa58a67ab", + "revision": "f5102a19a3bc425096bad450", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25070,10 +28628,10 @@ "content": { "type": "STRING", "value": "Saque de 7.306.097,00 IVIP para a carteira 0x5127C3d0B17433E2f03F2bdC96157ca9B00eeD8e", - "revision": "32f20e25e6814a9f84b2c1ac", + "revision": "5b2560b8c441488989b1cb8b", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25081,10 +28639,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d14ca887cd824118b7e942ff", + "revision": "24c71073d4044d83b42d2944", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25092,10 +28650,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d94e1e0e558d4b50bff26374", + "revision": "3be42a89dcca48959bd89005", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25106,10 +28664,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "6d775ced5cc246148347a813", + "revision": "35131b97bcf248d0962a0ce2", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25123,10 +28681,10 @@ "currencyType": "USD", "balancesModificacao": 1689822000000 }, - "revision": "d4d7e97a47f64022a8e6c8f9", + "revision": "9c42d1d643204791916ed708", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25134,10 +28692,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3a001745ee41466dad822f74", + "revision": "7fd707da4a7f444e99d1412c", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25145,10 +28703,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "172241444c2c4ff7858e9223", + "revision": "bca0e65decb0470a875bd7b2", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25161,10 +28719,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "5d74f2dc61bb4d1bb6eccbb4", + "revision": "e796c3669daf4552bfe39c36", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25172,10 +28730,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3983e681b63845b683cb991a", + "revision": "67d0a1e4bee546c6b5f62b6a", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25183,10 +28741,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e017fc7742a14728a9732cce", + "revision": "ca6bc165ef804cca8688c31a", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25199,10 +28757,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "9921fc0752254d07a432939c", + "revision": "da3ace6bce5e4ccbab76a132", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25210,10 +28768,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4460c0e43b82491b8627443f", + "revision": "07730066bf644567b82cf814", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25221,10 +28779,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f97918d3e02b4b1db0eea953", + "revision": "8b36e5d819974893b16a935e", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25235,10 +28793,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "33a092be18aa4202bd133d42", + "revision": "fb0fb403305d4fa2a6bf6471", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25247,12 +28805,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-25T23:10:05.269Z" + ".val": { + "type": 6, + "value": 1693005005269 + } }, - "revision": "eb09ea9fb8b247079227a578", + "revision": "dcccc20a209e428f825480d3", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25268,12 +28829,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "f7b95cce8cbd455f978240d5", + "revision": "8b127bb00447465bbc736322", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25281,10 +28842,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1690413005269", - "revision": "338b6c9ab5b74b8b8c1c4e3a", + "revision": "f979b174854c40d88bc38cb3", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25299,8 +28860,14 @@ "total_amount": 20, "id": 1690413005269, "history_id": 1690413005269, - "date_created": "2023-07-26T23:10:05.269Z", - "date_last_updated": "2023-07-26T23:10:05.269Z", + "date_created": { + "type": 6, + "value": 1690413005269 + }, + "date_last_updated": { + "type": 6, + "value": 1690413005269 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -25308,10 +28875,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "725be1f943ed430198bbeccf", + "revision": "4ff93f26bbd84c61a1072981", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25319,10 +28886,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0292.8722.8206.6813-90", - "revision": "2edf027bf4754770aeee8f42", + "revision": "7fe20fd2a9ef460989b7d533", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25331,12 +28898,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-02T00:11:10.147Z" + ".val": { + "type": 6, + "value": 1693613470147 + } }, - "revision": "337f704ce1dd4a8784ff50a5", + "revision": "e14ffcc5554040278635ce41", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25352,12 +28922,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "3c85306b23f643cb9027852d", + "revision": "94aefe450dae4bbbb706cf3d", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25365,10 +28935,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691021470147", - "revision": "98cb8337a416432d85bbac61", + "revision": "335715e432f24448b92c7339", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25383,8 +28953,14 @@ "total_amount": 20, "id": 1691021470147, "history_id": 1691021470147, - "date_created": "2023-08-03T00:11:10.147Z", - "date_last_updated": "2023-08-03T00:11:10.147Z", + "date_created": { + "type": 6, + "value": 1691021470147 + }, + "date_last_updated": { + "type": 6, + "value": 1691021470147 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -25392,10 +28968,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "d3f91d2779d645eb8b270624", + "revision": "1bcf92c6c72341cda944c982", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25403,10 +28979,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 para a carteira iVip 0292.8722.8206.6813-90", - "revision": "d67d46cc3ed44e9e8536152c", + "revision": "bda525e6a3124f4396137dc5", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25415,12 +28991,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-06T13:35:18.336Z" + ".val": { + "type": 6, + "value": 1694007318336 + } }, - "revision": "0d661ee90c5b4f8ca34a1d3d", + "revision": "4360362eb4ca4b77ae166041", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25436,12 +29015,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "fdf00133511a42feb608a9df", + "revision": "a390b2dc846141f589810f45", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25449,10 +29028,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691415318336", - "revision": "d57fe0e63007480bb265ced4", + "revision": "bd8cc324d5cd48daa1c1e9a8", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25467,23 +29046,35 @@ "total_amount": 30, "id": 1691415318336, "history_id": 1691415318336, - "date_created": "2023-08-07T13:35:18.336Z", - "date_last_updated": "2023-08-07T13:37:52.035Z", + "date_created": { + "type": 6, + "value": 1691415318336 + }, + "date_last_updated": { + "type": 6, + "value": 1691415472035 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-07T13:37:52.035Z", - "money_release_date": "2023-08-07T13:37:52.035Z", + "date_approved": { + "type": 6, + "value": 1691415472035 + }, + "money_release_date": { + "type": 6, + "value": 1691415472035 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "f615a561590b4578acda22d6", + "revision": "d834da02b69540ae9ff7d40f", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25491,10 +29082,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 30,00 para a carteira iVip 0292.8722.8206.6813-90", - "revision": "3663a7c8567b41999c9da3e6", + "revision": "5b2a748d68ab4a579175e6be", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25510,12 +29101,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "bbe49d3fc86d4cccb5c172a3", + "revision": "47277df820e64727b01c8aac", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25523,10 +29114,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691415588273", - "revision": "9869d77c6ca84ed0bd014063", + "revision": "ab0ddfcf5d8a4ff590b36348", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25541,9 +29132,18 @@ "total_amount": 41845, "id": 1691415588273, "history_id": 1691415588273, - "date_created": "2023-08-07T13:39:48.273Z", - "date_last_updated": "2023-08-07T13:39:48.273Z", - "date_of_expiration": "2023-08-07T13:39:48.273Z", + "date_created": { + "type": 6, + "value": 1691415588273 + }, + "date_last_updated": { + "type": 6, + "value": 1691415588273 + }, + "date_of_expiration": { + "type": 6, + "value": 1691415588273 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -25552,10 +29152,10 @@ "description": "Compra de 41.845,00 IVIP por 30,00 BRL", "status_detail": "accredited" }, - "revision": "9271664a18da44fc92fb98c3", + "revision": "23696e4126934a75889ea6cf", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25567,10 +29167,10 @@ "label": "Taxa de 3,00%", "amount": 1255.35 }, - "revision": "d67bf17f959541399c62bd1c", + "revision": "ada83b03123c4b4aa66a61d0", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25587,10 +29187,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "3ac3d92fefe24fe0b0a96ca8", + "revision": "ac00684a386c40559f502547", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25598,10 +29198,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1696141267349", - "revision": "5225da0e82d9447091e24a12", + "revision": "1e4b1c6243b643b897abbe9d", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25609,10 +29209,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f9c1e08915a442dbbaddfa81", + "revision": "923a3d347c68421ab3868d36", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25628,24 +29228,39 @@ "total_amount": 40589.65, "id": "1696141267349", "history_id": "1696141267349", - "date_created": "2023-10-01T06:21:07.349Z", - "date_last_updated": "2023-10-03T00:32:36.722Z", - "date_of_expiration": "2023-10-01T06:21:07.349Z", + "date_created": { + "type": 6, + "value": 1696141267349 + }, + "date_last_updated": { + "type": 6, + "value": 1696293156722 + }, + "date_of_expiration": { + "type": 6, + "value": 1696141267349 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": "2023-10-03T00:32:36.722Z", - "money_release_date": "2023-10-03T00:32:36.722Z", + "date_approved": { + "type": 6, + "value": 1696293156722 + }, + "money_release_date": { + "type": 6, + "value": 1696293156722 + }, "money_release_status": "drawee", "wasDebited": true }, - "revision": "cd6fe54721714b06a3d6b7c8", + "revision": "8559c74ccebd412b9a5a08f8", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25653,10 +29268,10 @@ "content": { "type": "STRING", "value": "Saque de 40.589,65 IVIP para a carteira 0x8A01aF53Ea3A83B5f89C029a625Bc2B840aa0B17", - "revision": "4a47f8f1ed3e4a70af6e824c", + "revision": "a59b0b5f81ed482db70f5ae3", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25668,10 +29283,10 @@ "label": "Taxa de 3,00%", "amount": 1255.35 }, - "revision": "e08eb125e4414b2ba5329123", + "revision": "1c222e2390a34045acb2aa24", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25688,10 +29303,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "4e47debe23a8420ca426868f", + "revision": "9b0b8ecc82434f77a9fd2f9a", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25699,10 +29314,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1696142296852", - "revision": "fcaf1279e4a84a9f8673c8c6", + "revision": "5c0e6ff45c8d4a40a2d45b3a", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25710,10 +29325,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "ee2be7f86779410abd577257", + "revision": "384a70fb3a734267a941c7a1", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25729,23 +29344,35 @@ "total_amount": 40589.65, "id": "1696142296852", "history_id": "1696142296852", - "date_created": "2023-10-01T06:38:16.852Z", - "date_last_updated": "2023-10-03T00:46:17.233Z", - "date_of_expiration": "2023-10-01T06:38:16.852Z", + "date_created": { + "type": 6, + "value": 1696142296852 + }, + "date_last_updated": { + "type": 6, + "value": 1696293977233 + }, + "date_of_expiration": { + "type": 6, + "value": 1696142296852 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_amount", - "money_release_date": "2023-10-03T00:46:17.233Z", + "money_release_date": { + "type": 6, + "value": 1696293977233 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "8d2a7ebdeb3848c9bfef8ec1", + "revision": "29a680e50c5d4b348ccf0dfa", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25753,10 +29380,10 @@ "content": { "type": "STRING", "value": "Saque de 40.589,65 IVIP para a carteira 0x8A01aF53Ea3A83B5f89C029a625Bc2B840aa0B17", - "revision": "e5f46784589140219cd34f11", + "revision": "9f6c29406a06485b8d6a1ec6", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25764,10 +29391,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c8a6a8a387e74a21b12ffd9d", + "revision": "fb11abad15e14773ba64db34", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25776,12 +29403,15 @@ "type": "OBJECT", "value": { "dateValidity": 1690386695913, - "balancesModificacao": "2023-10-14T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } }, - "revision": "8046cd2e8d7c490880cda9ce", + "revision": "8defa83424c44630a287a516", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25789,10 +29419,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "948ab279ad7642a3a576378c", + "revision": "51bfc421e1f24907a465aaba", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25800,10 +29430,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d894cde42f5848b3beaa03aa", + "revision": "21b0e5cb610e466f8b06fd0e", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25816,10 +29446,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "192aa1010d0d4dcda9b88ee6", + "revision": "58b1696f11804386a2de2b21", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25827,10 +29457,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e1d700e7f4a84115934e3802", + "revision": "e3fa9211f76e4fcdae3d8f1a", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25838,10 +29468,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c1077660eafe4d75a44c1fd4", + "revision": "60859edc2359471da3aa8dd3", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25854,10 +29484,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "ad92964cf48f40d6bece0a13", + "revision": "c7147bc1345b4466b2067d09", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25865,10 +29495,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "15aa849f45e344bf88637d5b", + "revision": "4ecde0c633ea44a9a1603c0e", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25876,10 +29506,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "117f27633b76452f9a4c26b6", + "revision": "2bac6977853d40b3be6be0ee", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25891,10 +29521,10 @@ "dateValidity": 1696478671929, "currencyType": "USD" }, - "revision": "0cac0cdb61c1449da32a17d3", + "revision": "f60bddb6a4e84b5399200101", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25906,10 +29536,10 @@ "symbol": "IVIP", "value": 622.94 }, - "revision": "5eb458eaa8de4d6b872266a7", + "revision": "d199ae8e281d44998c578fc3", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25917,10 +29547,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "875aea5a67fa44ebac2cf1a1", + "revision": "83d7a67a6fe045d2a4fd690a", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820513, + "modified": 1701465820513 } }, { @@ -25928,12 +29558,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "3a786e0f68da4dd6a73bb35c", + "revision": "7ba00fe2cac440a9a9bb802e", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -25948,22 +29578,37 @@ "total_amount": 100, "history_id": 1688955478238, "id": 1688955478238, - "date_created": "2023-07-10T02:17:58.238Z", - "date_last_updated": "2023-07-10T15:24:43.693Z", - "date_of_expiration": "2023-08-09T02:17:58.238Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-10T15:24:43.693Z", - "money_release_date": "2023-07-10T15:24:43.693Z", + "date_created": { + "type": 6, + "value": 1688955478238 + }, + "date_last_updated": { + "type": 6, + "value": 1689002683693 + }, + "date_of_expiration": { + "type": 6, + "value": 1691547478238 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689002683693 + }, + "money_release_date": { + "type": 6, + "value": 1689002683693 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "6bff6d6c61d7495aafed2c8c", + "revision": "b51e5760eff24503a22a92ba", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -25971,10 +29616,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0329.8017.0462.5356-52", - "revision": "eeaa5eeaca294cecacf66c5a", + "revision": "bc9bceebdeb646e4afe2ee2e", "revision_nr": 1, - "created": 1701463509540, - "modified": 1701463509540 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -25992,12 +29637,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "def0f10372b248d4a82fdff0", + "revision": "b88873e8c7f74f6e80dd82f7", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26013,9 +29658,18 @@ "original_amount": 145670, "total_amount": 145670, "id": 1689002980878, - "date_created": "2023-07-10T15:29:40.878Z", - "date_last_updated": "2023-07-10T15:29:40.878Z", - "date_of_expiration": "2023-07-10T15:29:40.878Z", + "date_created": { + "type": 6, + "value": 1689002980878 + }, + "date_last_updated": { + "type": 6, + "value": 1689002980878 + }, + "date_of_expiration": { + "type": 6, + "value": 1689002980878 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -26024,10 +29678,10 @@ "history_id": 1689002980878, "description": "Compra de 145.670,00 IVIP por 100,00 BRL" }, - "revision": "e84af064e08d403eb23eda91", + "revision": "d8746eece24549c9b8ee2807", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26036,12 +29690,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-03T23:36:57.742Z" + ".val": { + "type": 6, + "value": 1693784217742 + } }, - "revision": "f3ea67a98a10488085993547", + "revision": "a899df4b8afb4ef2a49eaafa", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26057,12 +29714,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "c66255cd2b3c47b6881885e6", + "revision": "061083373d6a403890b26a53", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26070,10 +29727,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691192217742", - "revision": "98fe0a64a6714bf3879e6f16", + "revision": "dcea375299814f86ad1713ba", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26088,23 +29745,35 @@ "total_amount": 356, "id": 1691192217742, "history_id": 1691192217742, - "date_created": "2023-08-04T23:36:57.742Z", - "date_last_updated": "2023-08-05T15:26:29.728Z", + "date_created": { + "type": 6, + "value": 1691192217742 + }, + "date_last_updated": { + "type": 6, + "value": 1691249189728 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-05T15:26:29.728Z", - "money_release_date": "2023-08-05T15:26:29.728Z", + "date_approved": { + "type": 6, + "value": 1691249189728 + }, + "money_release_date": { + "type": 6, + "value": 1691249189728 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "9e1caae5f14541cabe4241f9", + "revision": "283b4aa2e25a4f60a276007e", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26112,10 +29781,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 356,00 para a carteira iVip 0329.8017.0462.5356-52", - "revision": "f02f0dbe847d4c9aa616de13", + "revision": "5eb67993ac6249fbaa953c6c", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26131,12 +29800,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "b8a535a0e6a74c11aa9b6e89", + "revision": "290fd59236a846fc96cd26df", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26144,10 +29813,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691277371847", - "revision": "58a715e92c8a429195612599", + "revision": "6ace964263254b38b0481a88", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26162,9 +29831,18 @@ "total_amount": 505200, "id": 1691277371847, "history_id": 1691277371847, - "date_created": "2023-08-05T23:16:11.847Z", - "date_last_updated": "2023-08-05T23:16:11.847Z", - "date_of_expiration": "2023-08-05T23:16:11.847Z", + "date_created": { + "type": 6, + "value": 1691277371847 + }, + "date_last_updated": { + "type": 6, + "value": 1691277371847 + }, + "date_of_expiration": { + "type": 6, + "value": 1691277371847 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -26173,10 +29851,10 @@ "description": "Compra de 505.200,00 IVIP por 356,00 BRL", "status_detail": "accredited" }, - "revision": "6f15bca0e2c345b1b07c7612", + "revision": "a2051be706624f7eb9ce5178", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26185,12 +29863,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-10T00:55:06.900Z" + ".val": { + "type": 6, + "value": 1694307306900 + } }, - "revision": "9fed4c880c364baf89e7d8b8", + "revision": "a1db79e83c884274b92d1b52", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26206,12 +29887,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "8491b9f5cc08455fbc8cb70b", + "revision": "b18367a60ebc4bea87f48411", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26219,10 +29900,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691715306900", - "revision": "a65ff947b0b747609a88f89b", + "revision": "bbccaa085bad454eacf13607", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26237,23 +29918,35 @@ "total_amount": 1800, "id": 1691715306900, "history_id": 1691715306900, - "date_created": "2023-08-11T00:55:06.900Z", - "date_last_updated": "2023-08-12T02:30:44.902Z", + "date_created": { + "type": 6, + "value": 1691715306900 + }, + "date_last_updated": { + "type": 6, + "value": 1691807444902 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-12T02:30:44.902Z", - "money_release_date": "2023-08-12T02:30:44.902Z", + "date_approved": { + "type": 6, + "value": 1691807444902 + }, + "money_release_date": { + "type": 6, + "value": 1691807444902 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "8f61e061daf84f56a0766a87", + "revision": "576b7ffdc611408997ef38c1", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26261,10 +29954,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.800,00 para a carteira iVip 0329.8017.0462.5356-52", - "revision": "1f222b931cc744cf8c2385eb", + "revision": "d248f4926b2a45b4a9cb2cb4", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26280,12 +29973,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "a536f6c49a5b4596b7050539", + "revision": "eace4507b5494014bc0e53ee", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26293,10 +29986,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691847078457", - "revision": "cbbc0b89c1484e0580419469", + "revision": "6e58939817164574b08b3ec8", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26311,9 +30004,18 @@ "total_amount": 3402797, "id": 1691847078457, "history_id": 1691847078457, - "date_created": "2023-08-12T13:31:18.457Z", - "date_last_updated": "2023-08-12T13:31:18.457Z", - "date_of_expiration": "2023-08-12T13:31:18.457Z", + "date_created": { + "type": 6, + "value": 1691847078457 + }, + "date_last_updated": { + "type": 6, + "value": 1691847078457 + }, + "date_of_expiration": { + "type": 6, + "value": 1691847078457 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -26322,10 +30024,10 @@ "description": "Compra de 3.402.797,00 IVIP por 1.800,00 BRL", "status_detail": "accredited" }, - "revision": "1e3cffacde074ffb94d4b054", + "revision": "ebbc6573e6a64383b95bda26", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26334,12 +30036,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-26T00:10:05.865Z" + ".val": { + "type": 6, + "value": 1698279005865 + } }, - "revision": "45cd03e7083a401091b36738", + "revision": "bf775f9ed82a472780538bd2", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26355,12 +30060,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "1fc8f766740c45eba983f464", + "revision": "86c159a5af8f45808540e51c", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26368,10 +30073,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1695687005865", - "revision": "fc5edb0b59014d4891de900c", + "revision": "6a9330fcf4c649d5832bb2cb", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26387,23 +30092,35 @@ "total_amount": 647176, "id": "1695687005865", "history_id": "1695687005865", - "date_created": "2023-09-26T00:10:05.865Z", - "date_last_updated": "2023-09-26T00:24:38.463Z", + "date_created": { + "type": 6, + "value": 1695687005865 + }, + "date_last_updated": { + "type": 6, + "value": 1695687878463 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": "2023-09-26T00:24:38.463Z", - "money_release_date": "2023-09-26T00:24:38.463Z", + "date_approved": { + "type": 6, + "value": 1695687878463 + }, + "money_release_date": { + "type": 6, + "value": 1695687878463 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "f833024e78ec4136856e1b16", + "revision": "5b42f5ea64214193aa57d79a", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26411,10 +30128,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 647.176,00 IVIP para a carteira iVip 0329.8017.0462.5356-52", - "revision": "843655ef005a443db6804984", + "revision": "0c2a2bcb93af4aea915fd96f", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26423,12 +30140,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-27T21:50:32.960Z" + ".val": { + "type": 6, + "value": 1698443432960 + } }, - "revision": "3e16583636b1454caf032bc6", + "revision": "ba84511e0d8143cd9f6b95ae", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26444,12 +30164,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "dd0f870f58ab4947ac64af72", + "revision": "4da4ccd8806a463e9389a965", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26457,10 +30177,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1695851432961", - "revision": "8f3101fcdb15409f98477d25", + "revision": "c4716120f8ac448abbde02f7", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26476,23 +30196,35 @@ "total_amount": 300000, "id": "1695851432961", "history_id": "1695851432961", - "date_created": "2023-09-27T21:50:32.961Z", - "date_last_updated": "2023-09-28T20:48:07.672Z", + "date_created": { + "type": 6, + "value": 1695851432961 + }, + "date_last_updated": { + "type": 6, + "value": 1695934087672 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": "2023-09-28T20:48:07.672Z", - "money_release_date": "2023-09-28T20:48:07.672Z", + "date_approved": { + "type": 6, + "value": 1695934087672 + }, + "money_release_date": { + "type": 6, + "value": 1695934087672 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "3af2107808a542e4a16febda", + "revision": "35c9817a8fa341918b121e57", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26500,10 +30232,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 300.000,00 IVIP para a carteira iVip 0329.8017.0462.5356-52", - "revision": "15388076aa794732b6919dc4", + "revision": "7d53d07a6fce49009c2614e7", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26511,10 +30243,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "83d2fa61b5054908abd9a92a", + "revision": "6c289668b5874496a79b26f1", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26522,10 +30254,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "600920cd78fc4122baafc960", + "revision": "b22be202f06a448db787e4f0", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26536,10 +30268,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "beb394b0a4314a5bb3cb805e", + "revision": "c71a918e2dd44185be516d8e", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26551,12 +30283,15 @@ "dateValidity": 1688955354063, "totalValue": 20.42, "currencyType": "USD", - "balancesModificacao": "2023-10-10T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696906800000 + } }, - "revision": "2d8e10d18f46467380e14526", + "revision": "dcc640ec0fe348449658f971", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820514, + "modified": 1701465820514 } }, { @@ -26568,10 +30303,10 @@ "symbol": "BRL", "value": 12.2 }, - "revision": "0dbf2c10a3ce4c8594ed7f62", + "revision": "79c80dd1fdc1482abe89aca2", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820515, + "modified": 1701465820515 } }, { @@ -26583,10 +30318,10 @@ "symbol": "IVIP", "value": 32205.5 }, - "revision": "e2c625ae067c41748a6d0b6d", + "revision": "8d5169a938b04ab28247d131", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820515, + "modified": 1701465820515 } }, { @@ -26594,10 +30329,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6a49df19224a4173a997ff6b", + "revision": "07c5376b29bc49a3af34426e", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820515, + "modified": 1701465820515 } }, { @@ -26605,12 +30340,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "136c7bb45380471c88b79926", + "revision": "d2a7343601834580ba7d5754", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820515, + "modified": 1701465820515 } }, { @@ -26625,22 +30360,37 @@ "total_amount": 5510, "history_id": 1677785461525, "id": 1677785461525, - "date_created": "2023-03-02T19:31:01.525Z", - "date_last_updated": "2023-03-02T21:53:04.457Z", - "date_of_expiration": "2023-04-01T19:31:01.525Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-02T21:53:04.457Z", - "money_release_date": "2023-03-02T21:53:04.457Z", + "date_created": { + "type": 6, + "value": 1677785461525 + }, + "date_last_updated": { + "type": 6, + "value": 1677793984457 + }, + "date_of_expiration": { + "type": 6, + "value": 1680377461525 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677793984457 + }, + "money_release_date": { + "type": 6, + "value": 1677793984457 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "a996bc60d15e42bfb4490aae", + "revision": "8cd49809cfcc41bdb8c3c13e", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820515, + "modified": 1701465820515 } }, { @@ -26648,10 +30398,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 5.510,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "07482cbd944c43ef8bc90030", + "revision": "a2bafcb8b11d471ba45442fd", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820515, + "modified": 1701465820515 } }, { @@ -26659,12 +30409,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "55d5cb44a6e44c27af392f2e", + "revision": "732c6299e7364a96adc0a9c8", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820515, + "modified": 1701465820515 } }, { @@ -26679,22 +30429,37 @@ "total_amount": 6500, "history_id": 1677785378675, "id": 1677785378675, - "date_created": "2023-03-02T19:29:38.675Z", - "date_last_updated": "2023-03-02T21:54:03.971Z", - "date_of_expiration": "2023-04-01T19:29:38.675Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-02T21:54:03.971Z", - "money_release_date": "2023-03-02T21:54:03.971Z", + "date_created": { + "type": 6, + "value": 1677785378675 + }, + "date_last_updated": { + "type": 6, + "value": 1677794043971 + }, + "date_of_expiration": { + "type": 6, + "value": 1680377378675 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677794043971 + }, + "money_release_date": { + "type": 6, + "value": 1677794043971 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "689d02f15ca84c889612a60e", + "revision": "dee392ddb521408fa96071d6", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820515, + "modified": 1701465820515 } }, { @@ -26702,10 +30467,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 6.500,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "a660057997424d0c968c3d18", + "revision": "2742d82aaf43454fae5c4734", "revision_nr": 1, - "created": 1701463509541, - "modified": 1701463509541 + "created": 1701465820515, + "modified": 1701465820515 } }, { @@ -26713,12 +30478,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "17a298a6697044c892325a19", + "revision": "5cbdab2fc8a9436dbb2d7709", "revision_nr": 1, - "created": 1701463509542, - "modified": 1701463509542 + "created": 1701465820515, + "modified": 1701465820515 } }, { @@ -26733,22 +30498,37 @@ "total_amount": 7700, "history_id": 1677785194938, "id": 1677785194938, - "date_created": "2023-03-02T19:26:34.938Z", - "date_last_updated": "2023-03-02T21:54:58.990Z", - "date_of_expiration": "2023-04-01T19:26:34.938Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-02T21:54:58.990Z", - "money_release_date": "2023-03-02T21:54:58.990Z", + "date_created": { + "type": 6, + "value": 1677785194938 + }, + "date_last_updated": { + "type": 6, + "value": 1677794098990 + }, + "date_of_expiration": { + "type": 6, + "value": 1680377194938 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677794098990 + }, + "money_release_date": { + "type": 6, + "value": 1677794098990 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "1f2694b549d7487ab224cc36", + "revision": "017bee5a23c24e8a80c96984", "revision_nr": 1, - "created": 1701463509542, - "modified": 1701463509542 + "created": 1701465820515, + "modified": 1701465820515 } }, { @@ -26756,10 +30536,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 7.700,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "1135661b6de144908dcb5361", + "revision": "90c20095d7c443e793bcf219", "revision_nr": 1, - "created": 1701463509542, - "modified": 1701463509542 + "created": 1701465820515, + "modified": 1701465820515 } }, { @@ -26767,12 +30547,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "9727ba151e3e489fb6470666", + "revision": "1dd00dbf7a7d4408bfa1af0d", "revision_nr": 1, - "created": 1701463509542, - "modified": 1701463509542 + "created": 1701465820515, + "modified": 1701465820515 } }, { @@ -26787,22 +30567,37 @@ "total_amount": 9900, "history_id": 1677748547608, "id": 1677748547608, - "date_created": "2023-03-02T09:15:47.608Z", - "date_last_updated": "2023-03-02T12:35:22.227Z", - "date_of_expiration": "2023-04-01T09:15:47.608Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-02T12:35:22.227Z", - "money_release_date": "2023-03-02T12:35:22.227Z", + "date_created": { + "type": 6, + "value": 1677748547608 + }, + "date_last_updated": { + "type": 6, + "value": 1677760522227 + }, + "date_of_expiration": { + "type": 6, + "value": 1680340547608 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677760522227 + }, + "money_release_date": { + "type": 6, + "value": 1677760522227 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "f97071913e114d3aaa25590f", + "revision": "94cc4366cd69475388f5f150", "revision_nr": 1, - "created": 1701463509542, - "modified": 1701463509542 + "created": 1701465820515, + "modified": 1701465820515 } }, { @@ -26810,10 +30605,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 9.900,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "435d6fdfc5084a5cafda7736", + "revision": "4b8c4d6173cd45bcbdf4106a", "revision_nr": 1, - "created": 1701463509542, - "modified": 1701463509542 + "created": 1701465820515, + "modified": 1701465820515 } }, { @@ -26821,12 +30616,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "10e0fe366fda4f798eb32079", + "revision": "2312e535b5a942b995adffb6", "revision_nr": 1, - "created": 1701463509542, - "modified": 1701463509542 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -26841,22 +30636,37 @@ "total_amount": 100, "history_id": 1677748489604, "id": 1677748489604, - "date_created": "2023-03-02T09:14:49.604Z", - "date_last_updated": "2023-03-02T11:11:15.426Z", - "date_of_expiration": "2023-04-01T09:14:49.604Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-02T11:11:15.426Z", - "money_release_date": "2023-03-02T11:11:15.426Z", + "date_created": { + "type": 6, + "value": 1677748489604 + }, + "date_last_updated": { + "type": 6, + "value": 1677755475426 + }, + "date_of_expiration": { + "type": 6, + "value": 1680340489604 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677755475426 + }, + "money_release_date": { + "type": 6, + "value": 1677755475426 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "cdf765a774bb483d910ae2c1", + "revision": "3e8116d317d64cbf921eabcd", "revision_nr": 1, - "created": 1701463509542, - "modified": 1701463509542 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -26864,10 +30674,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "2c3118d05ac0488287c7f83e", + "revision": "4ed0f9e37b054918acd2a308", "revision_nr": 1, - "created": 1701463509542, - "modified": 1701463509542 + "created": 1701465820515, + "modified": 1701465820515 } }, { @@ -26875,12 +30685,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "5f6b8d991d314c2b9e47ca79", + "revision": "87a3244c8b994c7196e1c0c0", "revision_nr": 1, - "created": 1701463509542, - "modified": 1701463509542 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -26895,22 +30705,37 @@ "total_amount": 12000, "history_id": 1678472649293, "id": 1678472649293, - "date_created": "2023-03-10T18:24:09.293Z", - "date_last_updated": "2023-03-11T12:56:55.180Z", - "date_of_expiration": "2023-04-09T18:24:09.293Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-11T12:56:55.180Z", - "money_release_date": "2023-03-11T12:56:55.180Z", + "date_created": { + "type": 6, + "value": 1678472649293 + }, + "date_last_updated": { + "type": 6, + "value": 1678539415180 + }, + "date_of_expiration": { + "type": 6, + "value": 1681064649293 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678539415180 + }, + "money_release_date": { + "type": 6, + "value": 1678539415180 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "61dd1a0107344eb19e740281", + "revision": "ef3c6d72ce0b47ce94d3e395", "revision_nr": 1, - "created": 1701463509542, - "modified": 1701463509542 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -26918,10 +30743,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 12.000,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "18c22f6777d8409692c3e28a", + "revision": "683f4f83a812470c8860094a", "revision_nr": 1, - "created": 1701463509542, - "modified": 1701463509542 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -26939,12 +30764,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b982dcaabb0046aab2f06851", + "revision": "098f4035d0d54052acaa9217", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -26960,9 +30785,18 @@ "original_amount": 71460340, "total_amount": 71460340, "id": 1678153842542, - "date_created": "2023-03-07T01:50:42.542Z", - "date_last_updated": "2023-03-07T01:50:42.542Z", - "date_of_expiration": "2023-03-07T01:50:42.542Z", + "date_created": { + "type": 6, + "value": 1678153842542 + }, + "date_last_updated": { + "type": 6, + "value": 1678153842542 + }, + "date_of_expiration": { + "type": 6, + "value": 1678153842542 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -26971,10 +30805,10 @@ "history_id": 1678153842542, "description": "Compra de 71460340 IVIP por 10000 BRL" }, - "revision": "ee03f4cd89a9431da5f9c619", + "revision": "9fe4b31bcb644594ba1d0b22", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -26992,12 +30826,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "294009d1eae64e1389b4a495", + "revision": "b4c6725922a041b4b2c759cc", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27013,9 +30847,18 @@ "original_amount": 71460340, "total_amount": 71460340, "id": 1678153902578, - "date_created": "2023-03-07T01:51:42.578Z", - "date_last_updated": "2023-03-07T01:51:42.578Z", - "date_of_expiration": "2023-03-07T01:51:42.578Z", + "date_created": { + "type": 6, + "value": 1678153902578 + }, + "date_last_updated": { + "type": 6, + "value": 1678153902578 + }, + "date_of_expiration": { + "type": 6, + "value": 1678153902578 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27024,10 +30867,10 @@ "history_id": 1678153902578, "description": "Compra de 71460340 IVIP por 10000 BRL" }, - "revision": "a96822722c0647c0a21fe96a", + "revision": "808465a3d5094059af4c614b", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27039,10 +30882,10 @@ "label": "Taxa de 0.99%", "amount": 19.8 }, - "revision": "28d876733a0f44db9c416ea7", + "revision": "0bd1ce906d7a4abfac48b95a", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27050,10 +30893,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "67c3cadf12d44902ad0c689a", + "revision": "43820766e8fc405894513543", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27063,10 +30906,10 @@ "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "4691aa9fefed4542ae6f19ea", + "revision": "14d1d316acb94195a6385c5e", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27074,10 +30917,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3e8e0027a7374a39b1a42852", + "revision": "ca71039d8e0f42deb99dac25", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27091,10 +30934,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "bfbb548988c24017824d1585", + "revision": "3cd8872e60df47e7a76af5a8", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27102,10 +30945,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dXYrlNhAGUO1A+9+lduAQCBlb9UnugUAS6/hhmO7rto/uW1F/7fofXaPR0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v7z2jZf/c/f9b8/6Pm+v373+PTPB98+fb6x/brlrx/73x/0zKClpaWlpaWlpaWlpT1E2++PvT/kF6o9n/6Qladfz+M+8OV7GPcvKKtoaWlpaWlpaWlpaWkP0E4BZPm0l2P8+nGKBKc/u8eYV7hlEbjS0tLS0tLS0tLS0tLSXiVNN9oiKdhLdu8eQI6S7CtGWlpaWlpaWlpaWlpa2hDNpfivZO1S0eQj5Fz+kwo4aWlpaWlpaWlpaWlpj9UmfMnk1chy2TVXGuF2mbxN8SctLS0tLS0tLS0tLe0R2lba2v6Vf9qqu46WlpaWlpaWlpaWlvbb2nxNYyDH/PeLGSa13y1Hm6MkD7cWWlpaWlpaWlpaWlrab2tTC9v0pLHtfKtVl2VySTrulNgbq2QfLS0tLS0tLS0tLS3tt7VT+9u9Z21KANa9a2lw5P2h+3rOZTw55rJNWlpaWlpaWlpaWlraL2una3pFPtD1nEOSTpWm/1/PBODIn77EvLS0tLS0tLS0tLS0tN/TjpJ+S6uwU4ZuemOBLq5pl/b+aLS0tLS0tLS0tLS0tF/XpldsSiqn371WTpaodNqbndrkxm6mCi0tLS0tLS0tLS0t7de09xCxlfkiOcas8d9UL5mb49rmHblrjpaWlpaWlpaWlpaW9gBtCd/aCrCINpdFkymyXJ6lfHOdlpaWlpaWlpaWlpb2JO2Uq/vpaMi7dpRRk6X+spcItOzIbj/JRdLS0tLS0tLS0tLS0n5W2zZJvNwNV2PC+//qCoA0LjLHmLS0tLS0tLS0tLS0tEdpy3jHviqGHOXdZb1aiglb0Kap/qOlglBaWlpaWlpaWlpaWtova6d7U05vSZkiwU0UeZUD5RGS/aXqkpaWlpaWlpaWlpaW9nva0v6WEntXHiGZai03C9RqKPm2ho2WlpaWlpaWlpaWlvYcbc/LrsuTrpziy5NGaqBZTt/L9P+XqktaWlpaWlpaWlpaWtqvaROl9MUtE3ujRKDpAUlR8GlYCi0tLS0tLS0tLS0t7QHagppCv0cRZh4IWfdXp1O93XKVp9DS0tLS0tLS0tLS0p6jDRm1lpNuNSW31KaCy1J1uSv+pKWlpaWlpaWlpaWlPUJb/qrnOftTyLlcXZ3mlZTxk/WhZZsALS0tLS0tLS0tLS3tUdo8lqTns2wqMXc9dSlIXQ75p6WlpaWlpaWlpaWlPVN7ldAvxXUTr3S0PUb2/3SZWzkGLS0tLS0tLS0tLS3tOdpR+t1K91oLG9Pa6hVVkaozU/RaZpjQ0tLS0tLS0tLS0tIeoM39blO95DT3Mc0rqTNHSjVlz5Wd6b20tLS0tLS0tLS0tLQnaWurW3ltK0FlPlp6XsrzLSLGPMOElpaWlpaWlpaWlpb229rlfJGUtSvk1Bw3GVvJB26a6HqYk0JLS0tLS0tLS0tLS/t1ba2cXObl7u6pOS5FgmlSZMtVnMuIlpaWlpaWlpaWlpaW9vvaRdZuChYnVA4ql0nB6S+ubbT5NqWElpaWlpaWlpaWlpb2e9rUx5YKJDcx4Xj+r+cg9R5A1igyrxSgpaWlpaWlpaWlpaX9traUWS6u6SGJvOyaW+YDN++jpaWlpaWlpaWlpaU9RZvLLBfvyd1wo0DTerX0jlLFOWIXHi0tLS0tLS0tLS0t7ee1U/ptOX2kLFVLEWjfxKebYZJtnQCkpaWlpaWlpaWlpaU9QFvjxFD9WB/c37J7m0g1zUT5YRRJS0tLS0tLS0tLS0v7Ne1bH1vLYyCXJ97XX07FlfngtLS0tLS0tLS0tLS052jHZgt2nvFYX5bSedNxN+f7napLWlpaWlpaWlpaWlrar2lLDq5WRG4Sdi1QFrwSWdaqy5JQpKWlpaWlpaWlpaWlPUVbCh/rWaZPl0WTG/x0Xw8ZxBEHo9DS0tLS0tLS0tLS0h6kTbFeKZqclq/1cJb2tndtuWQ7jEOhpaWlpaWlpaWlpaX9vHafb0sz+jdh6JUnkkxnfqv7pKWlpaWlpaWlpaWlPUWbSyUXxZClYa6H7F6NRcuXcYU838gtdrS0tLS0tLS0tLS0tF/X3tvfphLIGuaVAsnJvZtD8tYN18PbaGlpaWlpaWlpaWlpz9PmcZFpFfbIQyLvb6y35GTfFcLQTktLS0tLS0tLS0tLe5J2CuRSgWTuWUvNbHXcSG62u2KFZfu9GlFaWlpaWlpaWlpaWtr/vbaQW3hSihh7WAEwvbFtppQU9/jJlBJaWlpaWlpaWlpaWtrPapcj9q9V7Nie/XPXKgJdTvrvscIyNerR0tLS0tLS0tLS0tIeoJ0qLFtegJ0H/9fRIiWdVysxy1VThrS0tLS0tLS0tLS0tEdoy8vGWxHmstby3ttW037LuDMFrqsokpaWlpaWlpaWlpaW9rPaVvZX50kj16qjrb0FhjmhuBuHQktLS0tLS0tLS0tLe4Q2XVMSLy1Gm+6bQs7i6XkzdgpX36suaWlpaWlpaWlpaWlpP6XNoV/tXiuVk6lYsxftJoqsYWM5KS0tLS0tLS0tLS0t7RHangPItGMtzYxMUWRpmOur4srfjiJpaWlpaWlpaWlpaWk/qU2RYH5F3aKW4skQCbbN19Jyix0tLS0tLS0tLS0tLe3B2mWn2uO+zVl2Ryux429m92hpaWlpaWlpaWlpaU/Rpictt6ON5xrtUU41FVwuZ0a+zFShpaWlpaWlpaWlpaX9pDbhSw1lQtUGt2Vx5XL3deFdtLS0tLS0tLS0tLS0Z2lr4ePkya1u1zNX11bbsqd03iizJZfrtmlpaWlpaWlpaWlpaY/Q/vcvWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWtp/TPsHWTbkPnmLk88AAAAASUVORK5CYII=", - "revision": "48c5dc946ede4aa1a9aa9511", + "revision": "7961450d72fc4ddea85ccc21", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27113,10 +30956,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654072019.805802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13128133836304AC44", - "revision": "23a9656d02044cbf89701830", + "revision": "ece5150e77b8425f97e39382", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27124,10 +30967,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1312813383/ticket?caller_id=1310149122&hash=8e6c1cd1-3025-43b0-8279-4a0f2e9a7e7b", - "revision": "12c9379963394e14a7a7201e", + "revision": "fe6c73669e51498ebb8b8540", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27135,10 +30978,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "201b7dc7d791468f8a320a54", + "revision": "04e2c1569bb5436c8e2e4456", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27153,19 +30996,28 @@ "total_amount": 2019.8, "history_id": 1677379374499, "id": 1312813383, - "date_created": "2023-02-25T22:42:55.196-04:00", - "date_last_updated": "2023-02-25T22:42:55.196-04:00", - "date_of_expiration": "2023-02-26T22:42:54.972-04:00", + "date_created": { + "type": 6, + "value": 1677379375196 + }, + "date_last_updated": { + "type": 6, + "value": 1677379375196 + }, + "date_of_expiration": { + "type": 6, + "value": 1677465774972 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "7ddc885316f44e5bad78c994", + "revision": "04272a1391b6495c94df60d4", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27173,10 +31025,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "8ecffc100c094068b9a6878e", + "revision": "0a73ec1911f3456d9ac2e922", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27188,10 +31040,10 @@ "label": "Taxa de 0.99%", "amount": 19.8 }, - "revision": "0019e9b9ca15466cae56cf47", + "revision": "71b9e41e1cee495c8f3321a8", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27199,10 +31051,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6fed2a044722493e9627135a", + "revision": "b8550437467747edb4642d52", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27212,10 +31064,10 @@ "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "217e1eb45d7346d7944dad19", + "revision": "485c1a7543c848c888214407", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27223,10 +31075,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "983c002e829c42b38e901abb", + "revision": "9de1e1f07b914b629cabef61", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27240,10 +31092,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "5a4d55049ab946f78c6633cd", + "revision": "4991a72e8dd94ded8027f7b8", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27251,10 +31103,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654072019.805802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13128133936304E9E4", - "revision": "b20f66565c6244f2be25a459", + "revision": "53913b40cf0e497f9c97f9d2", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27262,10 +31114,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1312813393/ticket?caller_id=1310149122&hash=ba695c70-a0ed-49a1-b87f-05224cd38f84", - "revision": "23bb1b35afa242a89d16cbf8", + "revision": "56e43a7d43ae49c193092c53", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27273,10 +31125,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2UlEQVR42u3dQY7kNgwFUN3A97+lb6BggmRSFj/l7mCAZOznRaHRLstPtSNIkWP+Rtc5aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXas1/Hjf8fPG0f+3o9F1lX+/N9ff5U3Xh47f658/nxlZdDS0tLS0tLS0tLS0r5Ee3wu+7nI36/9fH7xnGH1ed3uGCPfWLSJQUtLS0tLS0tLS0tL+xbtEkCWu0fZxj+PLZHg8thnjHmJNpffYcOgpaWlpaWlpaWlpaV9qbak6Wo6L7t3WcD0E9DS0tLS0tLS0tLS0tLGaC7FfyVrl4omLyFn+7Hk/mhpaWlpaWlpaWlpad+tTfhUUnlXQ9kEn4Uywsr/ukaUlpaWlpaWlpaWlpb2d9fW9iD/yccXu5TQ0tLS0tLS0tLS0tI+TZuv1IzkyHfbKHIJEZfeJDnkzBZaWlpaWlpaWlpaWtpna9MRtmWlM9Rk1n4liyc1Mkm7X57YZvdoaWlpaWlpaWlpaWmfp12Ov32eWZt3c9da1KYR5SjT1tJv00WRtLS0tLS0tLS0tLS0z9Mu1/KKvKF57UMyY+g3UjrvU3bmuzcxLy0tLS0tLS0tLS0t7fO0Z0m/bSZeH+Gxkf9qr+XL+63R0tLS0tLS0tLS0tI+XVumW+9LKpf/LSHnGXpLpq/UKs5lDsBNr0taWlpaWlpaWlpaWtoHaZdsXErTlRjzNv7Lh+PG5h351BwtLS0tLS0tLS0tLe0LtCV8Gzmn10abbdFk6j7S7qX8cgctLS0tLS0tLS0tLe1LtGnY9T7ZV86xLeS2/vIoEWiZkT1us3u0tLS0tLS0tLS0tLTP06a4bpbm/fk0XH32868jr/K5/AxdJgctLS0tLS0tLS0tLe27tDVDt5l/dnY7SAfcRkgZnlfjgj9HKgilpaWlpaWlpaWlpaV9tnbeDbZeCimvKbvm7pHnuKUCznLi7kvZPVpaWlpaWlpaWlpa2qdo0/G3VE051ms5x7bvzD9LZLnkCMuPRktLS0tLS0tLS0tL+zLtcY0E0yjsuqFytm12x+madF4aELCtuqSlpaWlpaWlpaWlpX2etlBmeL5N7C2DslM8uVt0KcJMj9HS0tLS0tLS0tLS0j5dW1AjlF4eoTCzxHqxF2QJNNuv1FVoaWlpaWlpaWlpaWnfo81R33Hdy7KNowxVWyip4LJUXbbFn5OWlpaWlpaWlpaWlvYl2vJUUwdZdtCMrk79Ssp8tnbRmmmkpaWlpaWlpaWlpaV9hTYda8tH4moqsDSdPMIbl/USvmluQktLS0tLS0tLS0tL+ybtLKFfiutK1eWZY8z0lUVWkn3n987u0dLS0tLS0tLS0tLSPkJbh6CV02sjTEwb3SuqIs9Yq9Fr6WFCS0tLS0tLS0tLS0v7Am0+77bUS6YizHP0V66mPLpEYX0vLS0tLS0tLS0tLS3tm7SjlFmW144SVOatpfVSk/8mYsw9TGhpaWlpaWlpaWlpaZ+tbfuLpKxdGmK9RIzFOK75wGWBEV5+fDkXSUtLS0tLS0tLS0tL+whtE9e1ebny5Sb3lztFjlzF2Ua0tLS0tLS0tLS0tLS0z9emuG6ErpBLJeaxqb/MubrUnPLcFlzS0tLS0tLS0tLS0tK+R9u0d0z9HNuOJDkpOMP+moA0jxSgpaWlpaWlpaWlpaV9trZQbhuPlDLLVFd5loC0vOPYvI2WlpaWlpaWlpaWlvY92px5a96zRJZ5bNoyB2DmU25L6WVanpaWlpaWlpaWlpaW9mXaUlw5b5qHNKWXy7Mp93cp4EzlnX3VJS0tLS0tLS0tLS0t7UO1bTx5hADycnAth5y7ULJNFH45iqSlpaWlpaWlpaWlpX2a9u4c29g0hEzXvv4ytSUpRZi0tLS0tLS0tLS0tLTv0Z6bKdipXWR6WUrnLdvd7O87VZe0tLS0tLS0tLS0tLRP05YcXK2ILMvNsKtxxyuRZa26LAlFWlpaWlpaWlpaWlrat2hL4WNbf3lu+khm6BlCztrLP2UQaWlpaWlpaWlpaWlp36hNsV4pmqzD18pext3ctXbIdmiHQktLS0tLS0tLS0tL+3htzrelyHJ289mOLrKc224mcxOa0tLS0tLS0tLS0tLSvkKbSyWbYshyYO62038us5whz3fmI3a0tLS0tLS0tLS0tLRP134ef1tKIGuYVwokZzfYuvkxNqfhjvA2WlpaWlpaWlpaWlraV2jTELQ0VO3Ig9HSAOx9h5OS7KtBZR9F0tLS0tLS0tLS0tLSPk275OU+I8ua2EtH51KaLnU4yT3/Z5i0PWlpaWlpaWlpaWlpad+lPa8tSEbu219SfOmA21KnOTZdSjaLHrS0tLS0tLS0tLS0tO/SznCibamrTLHjuJ6fm9cayhFyf6PI2n4lXdUlLS0tLS0tLS0tLS3tY7XjWmaZmow0d/fdI9Nelh1sUoa0tLS0tLS0tLS0tLQv0JaX1b4hSxJvceezbaPEiTnubALXLoqkpaWlpaWlpaWlpaV9rHaU+dW508jsTrSNu8AwJxTP7omDlpaWlpaWlpaWlpb2Jdp0LUm83Idk5mzc58aPzSm3sujsxgLQ0tLS0tLS0tLS0tI+W5tDv3TKbamcnGVDS8R4F0XWsLHslJaWlpaWlpaWlpaW9hXaIwSQ+4+lpHJXolnC0JF7Rn45iqSlpaWlpaWlpaWlpX2kdlMlWXtB5raSlzA0RIIj/yxtCHvQ0tLS0tLS0tLS0tK+XduulCh3Hzv8t7N7tLS0tLS0tLS0tLS0L9C2K51rhNcPWistKec1idf0jLzpqUJLS0tLS0tLS0tLS/tIbcKXGsqEqgfc2uLKdvZ14U1aWlpaWlpaWlpaWtp3aWsSb/Hko27zmqsb3bTsXdVlSgXeVF3S0tLS0tLS0tLS0tI+Tfv/v2hpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpf5n2D0v667pa5ajGAAAAAElFTkSuQmCC", - "revision": "2ae4aadaa8bc434f9e427597", + "revision": "65ce5e99235b4796aeef0f7e", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27284,10 +31136,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "bdd19f99ce454cb08dc7e4e3", + "revision": "bb2dcb2eee7c48419c3738c8", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27302,19 +31154,28 @@ "total_amount": 2019.8, "history_id": 1677379588878, "id": 1312813393, - "date_created": "2023-02-25T22:46:29.568-04:00", - "date_last_updated": "2023-02-25T22:46:29.568-04:00", - "date_of_expiration": "2023-02-26T22:46:29.346-04:00", + "date_created": { + "type": 6, + "value": 1677379589568 + }, + "date_last_updated": { + "type": 6, + "value": 1677379589568 + }, + "date_of_expiration": { + "type": 6, + "value": 1677465989346 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "faf44c30a47b4c08ab4dbd11", + "revision": "03561045d7c8465b8f0b37f0", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27322,10 +31183,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "3f97aaed4fee47589a657bc9", + "revision": "aa3981c7654f43d3b9ae5755", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27343,12 +31204,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "1efa82df63764ef0835f04a7", + "revision": "32621ed59f8f462ea9950d85", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27364,9 +31225,18 @@ "original_amount": 126385600, "total_amount": 126385600, "id": 1679266944717, - "date_created": "2023-03-19T23:02:24.717Z", - "date_last_updated": "2023-03-19T23:02:24.717Z", - "date_of_expiration": "2023-03-19T23:02:24.717Z", + "date_created": { + "type": 6, + "value": 1679266944717 + }, + "date_last_updated": { + "type": 6, + "value": 1679266944717 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266944717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27375,10 +31245,10 @@ "history_id": 1679266944717, "description": "Compra de 126385600 IVIP por 21710 BRL" }, - "revision": "32c82bb2cc984e7eb84bdc65", + "revision": "f812048589a54d1ea8199656", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27390,10 +31260,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 51.1 }, - "revision": "48d1c83d7c69422b9d9d4409", + "revision": "8c467a79075742638d9e9362", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27401,10 +31271,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a40dd46b316f4929ae2247d8", + "revision": "aa6eed50cf46405f8adc67a3", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27412,10 +31282,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "72bf1069aad7408cb98635dd", + "revision": "037ca2c83cd241bfaa6a409a", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27430,19 +31300,28 @@ "total_amount": 2606.1, "history_id": 1679852406395, "id": 1679852406395, - "date_created": "2023-03-26T17:40:06.395Z", - "date_last_updated": "2023-03-26T17:40:06.395Z", - "date_of_expiration": "2023-04-25T17:40:06.395Z", + "date_created": { + "type": 6, + "value": 1679852406395 + }, + "date_last_updated": { + "type": 6, + "value": 1679852406395 + }, + "date_of_expiration": { + "type": 6, + "value": 1682444406395 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "880e96e41e1345b89ffd7474", + "revision": "5ef768740bf44268b8d729c7", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27450,10 +31329,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.555,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.606,10", - "revision": "e36a46e2b211464099146c32", + "revision": "c2def5e92af342bdb9a38cf3", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820516, + "modified": 1701465820516 } }, { @@ -27471,12 +31350,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "dacd037c58474e3a87814118", + "revision": "9d99dd4053404379a66b6755", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27492,9 +31371,18 @@ "original_amount": 13606977, "total_amount": 13606977, "id": 1679872071598, - "date_created": "2023-03-26T23:07:51.598Z", - "date_last_updated": "2023-03-26T23:07:51.598Z", - "date_of_expiration": "2023-03-26T23:07:51.598Z", + "date_created": { + "type": 6, + "value": 1679872071598 + }, + "date_last_updated": { + "type": 6, + "value": 1679872071598 + }, + "date_of_expiration": { + "type": 6, + "value": 1679872071598 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27503,10 +31391,10 @@ "history_id": 1679872071598, "description": "Compra de 13.606.977,00 IVIP por 2.555,00 BRL" }, - "revision": "e869b0d5e2724e98a847344c", + "revision": "12880530d77945748812ef83", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27518,10 +31406,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 52.2 }, - "revision": "6c0c403849814c8297793945", + "revision": "63fbf8a326b34071997543ba", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27529,10 +31417,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b9d14edb64204578b8ae3ff3", + "revision": "45fcc05ac0e7481cb8b65117", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27540,10 +31428,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "33bf0faf2114458d9fe45c97", + "revision": "2329fb1d76f34d44bee97993", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27558,19 +31446,28 @@ "total_amount": 2662.2, "history_id": 1682964262250, "id": 1682964262250, - "date_created": "2023-05-01T18:04:22.250Z", - "date_last_updated": "2023-05-01T18:04:22.250Z", - "date_of_expiration": "2023-05-31T18:04:22.250Z", + "date_created": { + "type": 6, + "value": 1682964262250 + }, + "date_last_updated": { + "type": 6, + "value": 1682964262250 + }, + "date_of_expiration": { + "type": 6, + "value": 1685556262250 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "37a26a82159344b3b51009e9", + "revision": "55a164cdd6ea4cdcbff09b03", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27578,10 +31475,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.662,20", - "revision": "d4ce5843bc024021941ba44b", + "revision": "effa47f22ad84c8ab80308b8", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27589,12 +31486,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "02318535d59c48bb8be06c63", + "revision": "9a5d46d4d16d4cc386e93a5b", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27609,22 +31506,37 @@ "total_amount": 2610, "history_id": 1682964678725, "id": 1682964678725, - "date_created": "2023-05-01T18:11:18.725Z", - "date_last_updated": "2023-05-01T18:19:36.565Z", - "date_of_expiration": "2023-05-31T18:11:18.725Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-01T18:19:36.565Z", - "money_release_date": "2023-05-01T18:19:36.565Z", + "date_created": { + "type": 6, + "value": 1682964678725 + }, + "date_last_updated": { + "type": 6, + "value": 1682965176565 + }, + "date_of_expiration": { + "type": 6, + "value": 1685556678725 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1682965176565 + }, + "money_release_date": { + "type": 6, + "value": 1682965176565 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "8330f145023d47ffa1ad27ce", + "revision": "52964583cd044a64af25598c", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27632,10 +31544,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "25563e6d48c54fc38fb330b6", + "revision": "20872e93e196479cb9febbf4", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27655,12 +31567,12 @@ "installment_amount": 2606.1, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d61bf219666b48f3b8d08892", + "revision": "72952e72450a4ea69d1034ea", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27677,9 +31589,18 @@ "total_amount": 2606.1, "id": 1682965648718, "contract_id": "1679852406395", - "date_created": "2023-05-01T18:27:28.718Z", - "date_last_updated": "2023-05-01T18:27:28.718Z", - "date_of_expiration": "2023-05-01T18:27:28.718Z", + "date_created": { + "type": 6, + "value": 1682965648718 + }, + "date_last_updated": { + "type": 6, + "value": 1682965648718 + }, + "date_of_expiration": { + "type": 6, + "value": 1682965648718 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -27687,10 +31608,10 @@ "currency_id": "BRL", "history_id": 1682965648718 }, - "revision": "61ffcf0e27a14c77909d9949", + "revision": "5ac5d4da946d4a688a7a46f5", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27698,10 +31619,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 1 no valor de 2.606,10 BRL referente ao contrato 1679852406395", - "revision": "312186f2871c4b95955f22b7", + "revision": "90055366b6bf462fbfab2305", "revision_nr": 1, - "created": 1701463509544, - "modified": 1701463509544 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27709,12 +31630,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "75760db9f9e94d74915349af", + "revision": "9a655bb0b5bd45d398e282cd", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27729,22 +31650,37 @@ "total_amount": 50, "history_id": 1683077498849, "id": 1683077498849, - "date_created": "2023-05-03T01:31:38.849Z", - "date_last_updated": "2023-05-03T01:44:35.310Z", - "date_of_expiration": "2023-06-02T01:31:38.849Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-03T01:44:35.310Z", - "money_release_date": "2023-05-03T01:44:35.310Z", + "date_created": { + "type": 6, + "value": 1683077498849 + }, + "date_last_updated": { + "type": 6, + "value": 1683078275310 + }, + "date_of_expiration": { + "type": 6, + "value": 1685669498849 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683078275310 + }, + "money_release_date": { + "type": 6, + "value": 1683078275310 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "780e04109f3d4356829c0493", + "revision": "d69e45ebe4b34ef8b9dde604", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27752,10 +31688,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "67f4994b76834f85855279d5", + "revision": "0a5ccca41ba244d59f308f9b", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27775,12 +31711,12 @@ "installment_amount": 2662.2, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "290697242aa74398b2b00952", + "revision": "fcfdb918236b4c169f31f905", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27797,9 +31733,18 @@ "total_amount": 2662.2, "id": 1683078471570, "contract_id": "1682964262250", - "date_created": "2023-05-03T01:47:51.570Z", - "date_last_updated": "2023-05-03T01:47:51.570Z", - "date_of_expiration": "2023-05-03T01:47:51.570Z", + "date_created": { + "type": 6, + "value": 1683078471570 + }, + "date_last_updated": { + "type": 6, + "value": 1683078471570 + }, + "date_of_expiration": { + "type": 6, + "value": 1683078471570 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -27807,10 +31752,10 @@ "currency_id": "BRL", "history_id": 1683078471570 }, - "revision": "cefe2c5b591b431e921b2feb", + "revision": "ea25b4fc2c914ee09d740c13", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27818,10 +31763,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 1 no valor de 2.662,20 BRL referente ao contrato 1682964262250", - "revision": "4ea28aeb7055421d9d630669", + "revision": "b0938c980e7448faab5e61e5", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27833,10 +31778,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "e40be3d3edcb482d85348002", + "revision": "da2c04b717ea4357a07c250f", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27844,10 +31789,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3a5653663afa42e9a19639eb", + "revision": "12555caf7b054d31a702c934", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27855,10 +31800,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "7752eb5d54c34d72890e3b37", + "revision": "acd1f2e8808a4cfe82d77a9e", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27873,19 +31818,28 @@ "total_amount": 13300, "history_id": 1683078539834, "id": 1683078539834, - "date_created": "2023-05-03T01:48:59.834Z", - "date_last_updated": "2023-05-03T01:48:59.834Z", - "date_of_expiration": "2023-06-02T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1683078539834 + }, + "date_last_updated": { + "type": 6, + "value": 1683078539834 + }, + "date_of_expiration": { + "type": 6, + "value": 1685670539834 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "ebdc4a075032416f8f5dca5f", + "revision": "5b1e730d1ff946ff84adef2b", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27893,10 +31847,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "85e2ede8cdd04cd099ead6bf", + "revision": "4566e25bdbd248bc9a80c6d7", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27914,12 +31868,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "beb43c27aafb4e66addec1e1", + "revision": "1d8a90c9748c47cf92c76667", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27935,9 +31889,18 @@ "original_amount": 54049325, "total_amount": 54049325, "id": 1684018958577, - "date_created": "2023-05-13T23:02:38.577Z", - "date_last_updated": "2023-05-13T23:02:38.577Z", - "date_of_expiration": "2023-05-13T23:02:38.577Z", + "date_created": { + "type": 6, + "value": 1684018958577 + }, + "date_last_updated": { + "type": 6, + "value": 1684018958577 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018958577 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27946,10 +31909,10 @@ "history_id": 1684018958577, "description": "Compra de 54.049.325,00 IVIP por 10.001,00 BRL" }, - "revision": "fe441dedf73344eebdf68866", + "revision": "d9e396a0554e472e8185159c", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27967,12 +31930,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "ca32b00eb72f4284b88dc17f", + "revision": "139973034f9f4b96989c679d", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -27988,9 +31951,18 @@ "original_amount": 369625820, "total_amount": 369625820, "id": 1684158157715, - "date_created": "2023-05-15T13:42:37.715Z", - "date_last_updated": "2023-05-15T13:42:37.715Z", - "date_of_expiration": "2023-05-15T13:42:37.715Z", + "date_created": { + "type": 6, + "value": 1684158157715 + }, + "date_last_updated": { + "type": 6, + "value": 1684158157715 + }, + "date_of_expiration": { + "type": 6, + "value": 1684158157715 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -27998,10 +31970,10 @@ "currency_id": "IVIPAY", "history_id": 1684158157715 }, - "revision": "0d8367ac15694760bf997146", + "revision": "1e5b1a37d19f44728f464d02", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28009,10 +31981,10 @@ "content": { "type": "STRING", "value": "Compra de 369.625.820,00 IVIPAY por 36.962.582,00 IVIP estabilizando US$ 1.380,18", - "revision": "c061a7d53a814b86a4121dc5", + "revision": "b9eb08e4bf284819ab8713dd", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28030,12 +32002,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "9e594ec4ee744df7804e9580", + "revision": "0f920a9e315b49578ff38be4", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28051,9 +32023,18 @@ "original_amount": 3989184, "total_amount": 3989184, "id": 1686924794730, - "date_created": "2023-06-16T14:13:14.730Z", - "date_last_updated": "2023-06-16T14:13:14.730Z", - "date_of_expiration": "2023-06-16T14:13:14.730Z", + "date_created": { + "type": 6, + "value": 1686924794730 + }, + "date_last_updated": { + "type": 6, + "value": 1686924794730 + }, + "date_of_expiration": { + "type": 6, + "value": 1686924794730 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28061,10 +32042,10 @@ "currency_id": "IVIP", "history_id": 1686924794730 }, - "revision": "43ec7ea16b9248f5b8ef12db", + "revision": "9043a72ebc0945939ebddc58", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28072,10 +32053,10 @@ "content": { "type": "STRING", "value": "Compra de 3.989.184,00 IVIP por 39.891.848,00 IVIPAY", - "revision": "80d79149b995423b9e8a0942", + "revision": "223f082268a94a74adda481e", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28093,12 +32074,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "1ff76a61b5f14a1088c8e248", + "revision": "ab3db7c9e5a243259ca4ff21", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28114,9 +32095,18 @@ "original_amount": 35902602, "total_amount": 35902602, "id": 1686924859436, - "date_created": "2023-06-16T14:14:19.436Z", - "date_last_updated": "2023-06-16T14:14:19.436Z", - "date_of_expiration": "2023-06-16T14:14:19.436Z", + "date_created": { + "type": 6, + "value": 1686924859436 + }, + "date_last_updated": { + "type": 6, + "value": 1686924859436 + }, + "date_of_expiration": { + "type": 6, + "value": 1686924859436 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28124,10 +32114,10 @@ "currency_id": "IVIP", "history_id": 1686924859436 }, - "revision": "c0ff646d45ab404186e6a39e", + "revision": "8d46a30497154bf09dede8a6", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28135,10 +32125,10 @@ "content": { "type": "STRING", "value": "Compra de 35.902.602,00 IVIP por 359.026.026,00 IVIPAY", - "revision": "979474e86dfa4a87a4cf7b62", + "revision": "72acce09cfb54df78a9f4380", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28146,12 +32136,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "191771e5ef01421296f76af0", + "revision": "5f51db51307b4868945394b0", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28166,22 +32156,37 @@ "total_amount": 1735, "history_id": 1688993449178, "id": 1688993449178, - "date_created": "2023-07-10T12:50:49.178Z", - "date_last_updated": "2023-07-10T20:43:20.593Z", - "date_of_expiration": "2023-08-09T12:50:49.178Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-10T20:43:20.593Z", - "money_release_date": "2023-07-10T20:43:20.593Z", + "date_created": { + "type": 6, + "value": 1688993449178 + }, + "date_last_updated": { + "type": 6, + "value": 1689021800593 + }, + "date_of_expiration": { + "type": 6, + "value": 1691585449178 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689021800593 + }, + "money_release_date": { + "type": 6, + "value": 1689021800593 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "3a25b4a4f24a4a1c82f7d7a7", + "revision": "0bff575a7fa3466288e215bf", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28189,10 +32194,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.735,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "ea09f36c2f2f4b7eb0459b65", + "revision": "5f59b075192d417fac1e995d", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28212,12 +32217,12 @@ "installment_amount": 1209.091, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "229243bcf29449399ad21f91", + "revision": "969b1f32bc9f4ecaaea4edd8", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28234,9 +32239,18 @@ "total_amount": 1209.091, "id": 1689023462249, "contract_id": "1683078539834", - "date_created": "2023-07-10T21:11:02.249Z", - "date_last_updated": "2023-07-10T21:11:02.249Z", - "date_of_expiration": "2023-07-10T21:11:02.249Z", + "date_created": { + "type": 6, + "value": 1689023462249 + }, + "date_last_updated": { + "type": 6, + "value": 1689023462249 + }, + "date_of_expiration": { + "type": 6, + "value": 1689023462249 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -28244,10 +32258,10 @@ "currency_id": "BRL", "history_id": 1689023462249 }, - "revision": "6ba0fc4f77b44d71a0f9aaec", + "revision": "76786dbf6b9041cdb6b23b10", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28255,10 +32269,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 11 no valor de 1.209,09 BRL referente ao contrato 1683078539834", - "revision": "9ba3197c24274938850cb6c6", + "revision": "5259203ec6d54454b1d28d5e", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28276,12 +32290,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b7fb6ccc8af449a886dce5d4", + "revision": "bfbe7458403842d683d4a015", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28297,9 +32311,18 @@ "original_amount": 23038, "total_amount": 23038, "id": 1689027294801, - "date_created": "2023-07-10T22:14:54.801Z", - "date_last_updated": "2023-07-10T22:14:54.801Z", - "date_of_expiration": "2023-07-10T22:14:54.801Z", + "date_created": { + "type": 6, + "value": 1689027294801 + }, + "date_last_updated": { + "type": 6, + "value": 1689027294801 + }, + "date_of_expiration": { + "type": 6, + "value": 1689027294801 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28308,10 +32331,10 @@ "history_id": 1689027294801, "description": "Compra de 23.038,00 IVIP por 26,00 BRL" }, - "revision": "213030cc6d574af5b161ecaa", + "revision": "782ad8d34d5544ddbe64d009", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28329,12 +32352,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "2e42827c3ea5435fa3dab7aa", + "revision": "9ba2bbfa6e824c30a12c00f7", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28350,9 +32373,18 @@ "original_amount": 10892, "total_amount": 10892, "id": 1689119838635, - "date_created": "2023-07-11T23:57:18.635Z", - "date_last_updated": "2023-07-11T23:57:18.635Z", - "date_of_expiration": "2023-07-11T23:57:18.635Z", + "date_created": { + "type": 6, + "value": 1689119838635 + }, + "date_last_updated": { + "type": 6, + "value": 1689119838635 + }, + "date_of_expiration": { + "type": 6, + "value": 1689119838635 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28361,10 +32393,10 @@ "history_id": 1689119838635, "description": "Compra de 10.892,00 IVIP por 20,00 BRL" }, - "revision": "f75d6798293845afbe93bb44", + "revision": "9243a936ef454090b66d6860", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28382,12 +32414,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "27e59ff2b95d40e6bc420674", + "revision": "7701633381db46aeb5686eb4", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28403,9 +32435,18 @@ "original_amount": 44060, "total_amount": 44060, "id": 1689121233961, - "date_created": "2023-07-12T00:20:33.961Z", - "date_last_updated": "2023-07-12T00:20:33.961Z", - "date_of_expiration": "2023-07-12T00:20:33.961Z", + "date_created": { + "type": 6, + "value": 1689121233961 + }, + "date_last_updated": { + "type": 6, + "value": 1689121233961 + }, + "date_of_expiration": { + "type": 6, + "value": 1689121233961 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28414,10 +32455,10 @@ "history_id": 1689121233961, "description": "Compra de 44.060,00 IVIP por 80,00 BRL" }, - "revision": "183cd3b9eb4c4960bb41c374", + "revision": "2db1d88699eb4c6cb119d2d9", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820517, + "modified": 1701465820517 } }, { @@ -28435,12 +32476,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "5af756c7b6f944c49e02f9f0", + "revision": "9828060c697e456b89169b50", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28456,9 +32497,18 @@ "original_amount": 9455, "total_amount": 9455, "id": 1689164526021, - "date_created": "2023-07-12T12:22:06.021Z", - "date_last_updated": "2023-07-12T12:22:06.021Z", - "date_of_expiration": "2023-07-12T12:22:06.021Z", + "date_created": { + "type": 6, + "value": 1689164526021 + }, + "date_last_updated": { + "type": 6, + "value": 1689164526021 + }, + "date_of_expiration": { + "type": 6, + "value": 1689164526021 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28467,10 +32517,10 @@ "history_id": 1689164526021, "description": "Compra de 9.455,00 IVIP por 20,00 BRL" }, - "revision": "8659f5a9889448cdabd76ea6", + "revision": "aaeabf4be3cb4956aaf18c21", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28488,12 +32538,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "0076531b3d0243bb889a9fd8", + "revision": "bf07d87cb0fc4ea3ab8e7970", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28509,9 +32559,18 @@ "original_amount": 12818, "total_amount": 12818, "id": 1689704009270, - "date_created": "2023-07-18T18:13:29.270Z", - "date_last_updated": "2023-07-18T18:13:29.270Z", - "date_of_expiration": "2023-07-18T18:13:29.270Z", + "date_created": { + "type": 6, + "value": 1689704009270 + }, + "date_last_updated": { + "type": 6, + "value": 1689704009270 + }, + "date_of_expiration": { + "type": 6, + "value": 1689704009270 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28520,10 +32579,10 @@ "history_id": 1689704009270, "description": "Compra de 12.818,00 IVIP por 20,00 BRL" }, - "revision": "33d47aad24274fcf919df76f", + "revision": "0a5d7ca8e3fa489d8240ef67", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28541,12 +32600,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "80b4942ccd314e04ab64ec2e", + "revision": "df9c77656c5d4c2f870f74b6", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28562,9 +32621,18 @@ "original_amount": 82033, "total_amount": 82033, "id": 1690245422296, - "date_created": "2023-07-25T00:37:02.296Z", - "date_last_updated": "2023-07-25T00:37:02.296Z", - "date_of_expiration": "2023-07-25T00:37:02.296Z", + "date_created": { + "type": 6, + "value": 1690245422296 + }, + "date_last_updated": { + "type": 6, + "value": 1690245422296 + }, + "date_of_expiration": { + "type": 6, + "value": 1690245422296 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28573,10 +32641,10 @@ "history_id": 1690245422296, "description": "Compra de 82.033,00 IVIP por 100,00 BRL" }, - "revision": "f64b3d3404e642aead3c75b4", + "revision": "793a0b4e813d4330a205ada1", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28594,12 +32662,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "044fe59e8f674e2ca2474e62", + "revision": "b09a7c60857b4bc3bf9e6d01", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28615,9 +32683,18 @@ "original_amount": 16360, "total_amount": 16360, "id": 1690245659912, - "date_created": "2023-07-25T00:40:59.912Z", - "date_last_updated": "2023-07-25T00:40:59.912Z", - "date_of_expiration": "2023-07-25T00:40:59.912Z", + "date_created": { + "type": 6, + "value": 1690245659912 + }, + "date_last_updated": { + "type": 6, + "value": 1690245659912 + }, + "date_of_expiration": { + "type": 6, + "value": 1690245659912 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28626,10 +32703,10 @@ "history_id": 1690245659912, "description": "Compra de 16.360,00 IVIP por 20,00 BRL" }, - "revision": "a230d9b2e63343c3ba8cc4b0", + "revision": "9d657992100844a2987049a3", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28645,12 +32722,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "318ff31cc20346f99dd27de8", + "revision": "162c3ed98f8e4dfbaede819a", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28658,10 +32735,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690477890638", - "revision": "6fccb58f16154d05bd5e67cc", + "revision": "a363b990f96f42579f831217", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28676,9 +32753,18 @@ "total_amount": 23044, "id": 1690477890638, "history_id": 1690477890638, - "date_created": "2023-07-27T17:11:30.638Z", - "date_last_updated": "2023-07-27T17:11:30.638Z", - "date_of_expiration": "2023-07-27T17:11:30.638Z", + "date_created": { + "type": 6, + "value": 1690477890638 + }, + "date_last_updated": { + "type": 6, + "value": 1690477890638 + }, + "date_of_expiration": { + "type": 6, + "value": 1690477890638 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -28687,10 +32773,10 @@ "description": "Compra de 23.044,00 IVIP por 30,00 BRL", "status_detail": "accredited" }, - "revision": "95f6cfe6dbab418ba774172b", + "revision": "57b342509e884b099573c9b4", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28706,12 +32792,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "d805456d595642dbaa18fa01", + "revision": "67b1b3490a7c40ccacd55908", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28719,10 +32805,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690581074985", - "revision": "2661723643b1483ea0eedc99", + "revision": "b78ff909851949fab8a8ab65", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28737,9 +32823,18 @@ "total_amount": 103259, "id": 1690581074985, "history_id": 1690581074985, - "date_created": "2023-07-28T21:51:14.985Z", - "date_last_updated": "2023-07-28T21:51:14.985Z", - "date_of_expiration": "2023-07-28T21:51:14.985Z", + "date_created": { + "type": 6, + "value": 1690581074985 + }, + "date_last_updated": { + "type": 6, + "value": 1690581074985 + }, + "date_of_expiration": { + "type": 6, + "value": 1690581074985 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -28748,10 +32843,10 @@ "description": "Compra de 103.259,00 IVIP por 110,00 BRL", "status_detail": "accredited" }, - "revision": "e197cde141dd40cf8cdbffdf", + "revision": "bea15a6888b04678b460bdef", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28767,12 +32862,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "85589aa525c34eacbcb16d25", + "revision": "be2a23d748814ac8849fd2a1", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28780,10 +32875,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690912306732", - "revision": "4def7aa6ded14bcbb814d8a0", + "revision": "a369181d07ab4b17a38b42ce", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28798,9 +32893,18 @@ "total_amount": 55731, "id": 1690912306732, "history_id": 1690912306732, - "date_created": "2023-08-01T17:51:46.732Z", - "date_last_updated": "2023-08-01T17:51:46.732Z", - "date_of_expiration": "2023-08-01T17:51:46.732Z", + "date_created": { + "type": 6, + "value": 1690912306732 + }, + "date_last_updated": { + "type": 6, + "value": 1690912306732 + }, + "date_of_expiration": { + "type": 6, + "value": 1690912306732 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -28809,10 +32913,10 @@ "description": "Compra de 55.731,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "cf0e6fe5762d4ec581b69c74", + "revision": "76ff82869d364f50963f5bf3", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28828,12 +32932,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "0b85ec47d4114fb7aaac0e4e", + "revision": "152fa669078344b598fdd936", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28841,10 +32945,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1691091813497", - "revision": "abc2f2ac46f94f26af279a2e", + "revision": "4cec7209637e45b3a24fe56f", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28859,9 +32963,18 @@ "total_amount": 7000000, "id": 1691091813497, "history_id": 1691091813497, - "date_created": "2023-08-03T19:43:33.497Z", - "date_last_updated": "2023-08-03T19:43:33.497Z", - "date_of_expiration": "2023-09-03T19:43:33.496Z", + "date_created": { + "type": 6, + "value": 1691091813497 + }, + "date_last_updated": { + "type": 6, + "value": 1691091813497 + }, + "date_of_expiration": { + "type": 6, + "value": 1693770213496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -28869,10 +32982,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "31965ef7542d4b208e065160", + "revision": "952a8b77bde642b58a3545e4", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28880,10 +32993,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "03b441455e43437892d4b842", + "revision": "0c07351a923e4744afa01539", "revision_nr": 1, - "created": 1701463509545, - "modified": 1701463509545 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28899,12 +33012,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "3a7f4c56fa1d470798ca72db", + "revision": "fbedf1fc19d54f8790222462", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28912,10 +33025,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1691190824646", - "revision": "4cdacfd4aced4dc1bbf1de61", + "revision": "8d1f5b765916488b87f3a685", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28930,9 +33043,18 @@ "total_amount": 61311, "id": 1691190824646, "history_id": 1691190824646, - "date_created": "2023-08-04T23:13:44.646Z", - "date_last_updated": "2023-08-04T23:13:44.646Z", - "date_of_expiration": "2023-08-04T23:13:44.646Z", + "date_created": { + "type": 6, + "value": 1691190824646 + }, + "date_last_updated": { + "type": 6, + "value": 1691190824646 + }, + "date_of_expiration": { + "type": 6, + "value": 1691190824646 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -28941,10 +33063,10 @@ "description": "Compra de 61.311,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "5eb6d52a40b8463ab6705303", + "revision": "f11dde140d5c40c397bf9235", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28953,12 +33075,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-24T19:13:12.970Z" + ".val": { + "type": 6, + "value": 1695582792970 + } }, - "revision": "388b46b15e734c30a2507784", + "revision": "a80624b8ad40411ebb73ee7b", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28974,12 +33099,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "8524cd9ff2e34bc69baa3652", + "revision": "f16b0e5913cb45fea9130c10", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -28987,10 +33112,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1692990792970", - "revision": "1b85f18d240647d5ac575c04", + "revision": "c6502f1786364297b6ecbbb7", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29005,8 +33130,14 @@ "total_amount": 2000, "id": "1692990792970", "history_id": "1692990792970", - "date_created": "2023-08-25T19:13:12.970Z", - "date_last_updated": "2023-08-25T19:13:12.970Z", + "date_created": { + "type": 6, + "value": 1692990792970 + }, + "date_last_updated": { + "type": 6, + "value": 1692990792970 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -29014,10 +33145,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "a7fdefcb1df142dcb32e90c5", + "revision": "d751eaf52f024ccdba346c35", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29025,10 +33156,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0331.9555.3972.0461-00", - "revision": "a3a7043d8c0a4dd6ab1b0c9e", + "revision": "aadbf76fc8dd47cb9ecab3ac", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29044,12 +33175,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "daf89a32b4284a54b7d1887e", + "revision": "ce83f4e39bc542828deb78fe", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29057,10 +33188,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1693770411115", - "revision": "0e1552407e884b92bb23e6d3", + "revision": "9fa3c6fb74364c8a816e9db5", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29075,9 +33206,18 @@ "total_amount": 7140000, "id": "1693770411115", "history_id": "1693770411115", - "date_created": "2023-09-03T19:46:51.115Z", - "date_last_updated": "2023-09-03T19:46:51.115Z", - "date_of_expiration": "2023-09-03T19:46:51.115Z", + "date_created": { + "type": 6, + "value": 1693770411115 + }, + "date_last_updated": { + "type": 6, + "value": 1693770411115 + }, + "date_of_expiration": { + "type": 6, + "value": 1693770411115 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29085,10 +33225,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "a6a2ec8caeb94736836d3727", + "revision": "d5e0b68dfde44c1b806cde00", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29096,10 +33236,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 7.000.000,00 IVIP com um rendimento de +140.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "622e856fa3cb43ce9bb62f41", + "revision": "e38dbf0854e145bcb0c2c17e", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29108,12 +33248,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-12T10:36:53.081Z" + ".val": { + "type": 6, + "value": 1697107013081 + } }, - "revision": "849071ef84214f7080a8e6f6", + "revision": "76c5e250c2da4792959c23ad", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29129,12 +33272,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "1de44b6f108b4ae5a3bbeacf", + "revision": "f065681cf3c6416bb6906d3d", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29142,10 +33285,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694515013082", - "revision": "9f88dfedfbb9405998db2878", + "revision": "a8e3428f48244e1b85b0559c", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29160,8 +33303,14 @@ "total_amount": 2000, "id": "1694515013082", "history_id": "1694515013082", - "date_created": "2023-09-12T10:36:53.082Z", - "date_last_updated": "2023-09-12T10:36:53.082Z", + "date_created": { + "type": 6, + "value": 1694515013082 + }, + "date_last_updated": { + "type": 6, + "value": 1694515013082 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -29169,10 +33318,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "eee0031985b14f53819b5f12", + "revision": "11e568ef3a0f40c0bcb2c220", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29180,10 +33329,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0331.9555.3972.0461-00", - "revision": "5de5765632bb4bed9fb426c7", + "revision": "31dc2d3f0e554f449a6dcf48", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29195,10 +33344,10 @@ "label": "Taxa de 3,00%", "amount": 30 }, - "revision": "e03ffa345ecf4d4eb52949ec", + "revision": "aff13d626b594a7195b67090", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29215,10 +33364,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "fff8c3575d884985851d639d", + "revision": "89e4cd178337474fa1533498", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29226,10 +33375,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694563336129", - "revision": "70507ea1a1844517bb238e97", + "revision": "f9c9177ab0264a669a6e179c", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29237,10 +33386,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "35a1cf517f81491e9cdb92ff", + "revision": "aaa99323157e47da937accf8", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29255,24 +33404,39 @@ "total_amount": 970, "id": "1694563336129", "history_id": "1694563336129", - "date_created": "2023-09-13T00:02:16.129Z", - "date_last_updated": "2023-09-19T13:03:18.738Z", - "date_of_expiration": "2023-09-13T00:02:16.129Z", + "date_created": { + "type": 6, + "value": 1694563336129 + }, + "date_last_updated": { + "type": 6, + "value": 1695128598738 + }, + "date_of_expiration": { + "type": 6, + "value": 1694563336129 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": "2023-09-19T13:03:18.738Z", - "money_release_date": "2023-09-19T13:03:18.738Z", + "date_approved": { + "type": 6, + "value": 1695128598738 + }, + "money_release_date": { + "type": 6, + "value": 1695128598738 + }, "money_release_status": "drawee", "wasDebited": true }, - "revision": "9a64da9bf2e74b1cba5dc4e1", + "revision": "b1cd0acd49804a90b12752fa", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29280,10 +33444,10 @@ "content": { "type": "STRING", "value": "Saque de 970,00 IVIP para a carteira 0x1250E6646AB77FF3f9708D761091ef1aD60bc9ec", - "revision": "9cc6c349378d4b6b9ed80c1b", + "revision": "2b7045dee734436c83b9d423", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29292,12 +33456,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-13T10:54:06.900Z" + ".val": { + "type": 6, + "value": 1697194446900 + } }, - "revision": "4a2dfc2501b845d18b23cbe8", + "revision": "6f7f1257f9ab4a8fb0e99cd0", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29313,12 +33480,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "996d3d2630c2412b9a76dc9f", + "revision": "ac22d6c1149644eba354fb55", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29326,10 +33493,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694602446900", - "revision": "495fd63ca4074a52a7470aad", + "revision": "02b5208b94d744d08720b1a7", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29344,23 +33511,35 @@ "total_amount": 2500, "id": "1694602446900", "history_id": "1694602446900", - "date_created": "2023-09-13T10:54:06.900Z", - "date_last_updated": "2023-09-13T14:14:25.688Z", + "date_created": { + "type": 6, + "value": 1694602446900 + }, + "date_last_updated": { + "type": 6, + "value": 1694614465688 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-09-13T14:14:25.688Z", - "money_release_date": "2023-09-13T14:14:25.688Z", + "date_approved": { + "type": 6, + "value": 1694614465688 + }, + "money_release_date": { + "type": 6, + "value": 1694614465688 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "47030745c2624f18aa980c96", + "revision": "e863516154ff4c6bbe62cc4f", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29368,10 +33547,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 2.500,00 BRL para a carteira iVip 0331.9555.3972.0461-00", - "revision": "49b9f4704b04479480ca7af5", + "revision": "de50fb25ea194ddb80e343b2", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29387,14 +33566,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 2, "installments_payable": 9 }, - "revision": "8ed1dad6e7894d8f89cc8250", + "revision": "0dc850abf1b346ec9196065c", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29402,10 +33581,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694614621977", - "revision": "0fff5994d8a8424b84bbb73f", + "revision": "a4179bf9c71f496aa2c03d36", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29420,9 +33599,18 @@ "total_amount": 1209.090909090909, "id": "1694614621977", "history_id": "1694614621977", - "date_created": "2023-09-13T14:17:01.977Z", - "date_last_updated": "2023-09-13T14:17:01.977Z", - "date_of_expiration": "2023-09-13T14:17:01.977Z", + "date_created": { + "type": 6, + "value": 1694614621977 + }, + "date_last_updated": { + "type": 6, + "value": 1694614621977 + }, + "date_of_expiration": { + "type": 6, + "value": 1694614621977 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -29430,10 +33618,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "f466df1529f349fd8f53b11b", + "revision": "69e0a956dfd045fcaa3e0ac2", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29441,10 +33629,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 11 no valor de 1.209,0909 BRL referente ao contrato 1683078539834", - "revision": "d736ca6c41344d3685c3bb8d", + "revision": "4c7373571c1d409195a2ab08", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29460,14 +33648,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 3, "installments_payable": 8 }, - "revision": "895a2cd7ed3644fdac1782d6", + "revision": "2c66fc2d74c347f9b6ee74aa", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29475,10 +33663,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694614622168", - "revision": "8b38e28646f04ad28a140d66", + "revision": "c38d6edd37664665a5c1c502", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29493,9 +33681,18 @@ "total_amount": 1209.090909090909, "id": "1694614622168", "history_id": "1694614622168", - "date_created": "2023-09-13T14:17:02.168Z", - "date_last_updated": "2023-09-13T14:17:02.168Z", - "date_of_expiration": "2023-09-13T14:17:02.168Z", + "date_created": { + "type": 6, + "value": 1694614622168 + }, + "date_last_updated": { + "type": 6, + "value": 1694614622168 + }, + "date_of_expiration": { + "type": 6, + "value": 1694614622168 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -29503,10 +33700,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "fa238b22c86e45d2ab0f8e48", + "revision": "27025cf605e6481997dde6a0", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29514,10 +33711,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 11 no valor de 1.209,0909 BRL referente ao contrato 1683078539834", - "revision": "a6f944cc01684214acd5b98b", + "revision": "9316a14f08e247c4a76d7b1f", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820518, + "modified": 1701465820518 } }, { @@ -29529,10 +33726,10 @@ "label": "Taxa de 3,00%", "amount": 942112.9199999999 }, - "revision": "b8025779e0e642d29011bf2a", + "revision": "8a94b9483be0431bbfe67fc0", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820519, + "modified": 1701465820519 } }, { @@ -29549,10 +33746,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "edc9c9ce6b4149f49347e996", + "revision": "a0622030f3214e709fe915a4", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820519, + "modified": 1701465820519 } }, { @@ -29560,10 +33757,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694707376145", - "revision": "5bcdf156820c45639b322544", + "revision": "21ac5b62dac344a7ae381a91", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820519, + "modified": 1701465820519 } }, { @@ -29571,10 +33768,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "d959a813994c4c08937100da", + "revision": "f4ecc16dd8674310bd2cdfa8", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820519, + "modified": 1701465820519 } }, { @@ -29589,24 +33786,39 @@ "total_amount": 30461651.08, "id": "1694707376145", "history_id": "1694707376145", - "date_created": "2023-09-14T16:02:56.145Z", - "date_last_updated": "2023-09-21T23:31:12.164Z", - "date_of_expiration": "2023-09-14T16:02:56.145Z", + "date_created": { + "type": 6, + "value": 1694707376145 + }, + "date_last_updated": { + "type": 6, + "value": 1695339072164 + }, + "date_of_expiration": { + "type": 6, + "value": 1694707376145 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": "2023-09-21T23:31:12.164Z", - "money_release_date": "2023-09-21T23:31:12.164Z", + "date_approved": { + "type": 6, + "value": 1695339072164 + }, + "money_release_date": { + "type": 6, + "value": 1695339072164 + }, "money_release_status": "drawee", "wasDebited": true }, - "revision": "8abce9e7055e48bb82539f19", + "revision": "110f7cb13c1e4d95b4ff39d7", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820519, + "modified": 1701465820519 } }, { @@ -29614,10 +33826,10 @@ "content": { "type": "STRING", "value": "Saque de 30.461.651,08 IVIP para a carteira 0x1250E6646AB77FF3f9708D761091ef1aD60bc9ec", - "revision": "4556a86798e647079bc6e4fb", + "revision": "78e25ace46a74f8792a632d0", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820519, + "modified": 1701465820519 } }, { @@ -29633,12 +33845,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "c5384be2378e448d9430cec5", + "revision": "c1f1a07e623a49a7a8610be5", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820519, + "modified": 1701465820519 } }, { @@ -29646,10 +33858,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1696309633832", - "revision": "88f18e00cb66418cb7102ede", + "revision": "d3487a8c42df4581805f3b14", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820519, + "modified": 1701465820519 } }, { @@ -29665,9 +33877,18 @@ "total_amount": 20, "id": "1696309633832", "history_id": "1696309633832", - "date_created": "2023-10-03T05:07:13.832Z", - "date_last_updated": "2023-10-03T05:07:13.832Z", - "date_of_expiration": "2024-08-03T05:07:13.831Z", + "date_created": { + "type": 6, + "value": 1696309633832 + }, + "date_last_updated": { + "type": 6, + "value": 1696309633832 + }, + "date_of_expiration": { + "type": 6, + "value": 1722661633831 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29675,10 +33896,10 @@ "base_currency_id": "BRL", "status_detail": "accredited" }, - "revision": "c62e2a9e6f3042989316522d", + "revision": "1ab6ce5e677245bab9d1c2ee", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820519, + "modified": 1701465820519 } }, { @@ -29686,10 +33907,10 @@ "content": { "type": "STRING", "value": "Investimento de 20,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 03/08/2024 - D03OS92M", - "revision": "a959dc44375f4d78b2fffa02", + "revision": "3f3e155f8e3e47619f3262ac", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820519, + "modified": 1701465820519 } }, { @@ -29705,12 +33926,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "e66cba9bad484f198f1e72ec", + "revision": "5b1f071d62d043d88599a62d", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29718,10 +33939,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1696433201105", - "revision": "44406131899e49298278630d", + "revision": "d3700dc6f8b944b5b6efaf4b", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29737,9 +33958,18 @@ "total_amount": 7000000, "id": "1696433201105", "history_id": "1696433201105", - "date_created": "2023-10-04T15:26:41.105Z", - "date_last_updated": "2023-10-04T15:26:41.105Z", - "date_of_expiration": "2023-11-04T15:26:41.054Z", + "date_created": { + "type": 6, + "value": 1696433201105 + }, + "date_last_updated": { + "type": 6, + "value": 1696433201105 + }, + "date_of_expiration": { + "type": 6, + "value": 1699111601054 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -29747,10 +33977,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "bf7845bc413944b594b44380", + "revision": "444d9b8bc7c540a8b8809aee", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29758,10 +33988,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "0a9e7f9a0282424d920767e3", + "revision": "11c39b98fde74b309eff50d8", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29769,10 +33999,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "35b0a4dfe9874df28edda328", + "revision": "7ab641316d6248c68ad1e9d5", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29784,10 +34014,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 51.1 }, - "revision": "ea967ed6f37441078d5af6a9", + "revision": "285921b35c5d4cd9b564f168", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29801,15 +34031,18 @@ "total_amount": 2606.1, "installments": 1, "installment_amount": 2606.1, - "date_created": "2023-03-26T17:40:06.395Z", + "date_created": { + "type": 6, + "value": 1679852406395 + }, "history_id": 1679852406395, "currency_id": "BRL", "status": "paid" }, - "revision": "f134d4877ad847c8ae9194a0", + "revision": "e043c6a8f0c3414baaf3fdb1", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29817,10 +34050,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.555,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.606,10", - "revision": "65743aefb19643098d119137", + "revision": "89d91c7f105f4130b8cf0c6f", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29828,10 +34061,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "7eeda010e9254e8ea2dfc98e", + "revision": "f5f5abf53ac94253ab176da7", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29839,10 +34072,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c2d1aa98d89045008a81b96b", + "revision": "83eddc103d194ffc896d5f25", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29854,10 +34087,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 52.2 }, - "revision": "9526294e5eb749f5b7c7cd7f", + "revision": "86378c99d9a24364bebc7382", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29871,15 +34104,18 @@ "total_amount": 2662.2, "installments": 1, "installment_amount": 2662.2, - "date_created": "2023-05-01T18:04:22.250Z", + "date_created": { + "type": 6, + "value": 1682964262250 + }, "history_id": 1682964262250, "currency_id": "BRL", "status": "paid" }, - "revision": "4e58a1865ccb48249f1e8622", + "revision": "ace7a309ed994b80a14de8cd", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29887,10 +34123,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.662,20", - "revision": "622f130345fc47529fb448e2", + "revision": "b078028047604c7faf57f675", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29898,10 +34134,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "93122f7d99364079ac3054d6", + "revision": "fa077f3e4951428d8dc1ca9a", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29913,10 +34149,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "0c685c8c0a3f41fc96950dde", + "revision": "9a88bbfa9c8d4546ae10bda8", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29930,15 +34166,18 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL", "status": "paid" }, - "revision": "2b5a4338e5d249d38ce000eb", + "revision": "556a7bfa08aa436e82e03ad1", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29946,10 +34185,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "4be9522f0b6749cbac6eabe3", + "revision": "777153790d554049ad5b0663", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29957,10 +34196,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "41a983079de8403facb1dc44", + "revision": "77f4c294172049949f496a17", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29968,10 +34207,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "598a29f1672543e6896c4de0", + "revision": "61f553cdd5a6453d94753bf3", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -29983,10 +34222,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "ae98dfa79a774cd39460def8", + "revision": "e766d291f76a489588e992b4", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30000,16 +34239,22 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-13T14:17:02.016Z" + "date_last_updated": { + "type": 6, + "value": 1694614622016 + } }, - "revision": "a91bfe256cce40608a694ca8", + "revision": "973b2c57c8be42278986db42", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30017,10 +34262,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "6a69c6d7a0f54b92b6d613fb", + "revision": "c457a341635a4ea6acf116b0", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30028,10 +34273,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "8ee83964c0874d219e2e719e", + "revision": "ffaefa34278b4c7fad3038b0", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30039,10 +34284,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "cfd1618a5b74497096d7621c", + "revision": "03b2949f319047ad8c661145", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30054,10 +34299,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "a56afd29444d4cb2a9b9b59c", + "revision": "42b831991a714308a11b22ab", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30071,16 +34316,22 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-13T14:17:02.191Z" + "date_last_updated": { + "type": 6, + "value": 1694614622191 + } }, - "revision": "0966a7a4b42744538fcb9f90", + "revision": "8a9c3eb6d8f04932a39ad3c0", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30088,10 +34339,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "8a95f73693b4413a91cad6e2", + "revision": "4c3eb9f064404ce38fc8157e", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30099,10 +34350,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "6d502d7afa534552855b80a1", + "revision": "80d8e91dd2fa4008aa60e984", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30110,10 +34361,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f59728a6833a453095236289", + "revision": "86b5d8935b5d42cdbad709d8", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30125,10 +34376,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "00611fbbb9f14ffb89d949f8", + "revision": "6f12ad4c2fad49dc86857e20", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30142,14 +34393,17 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "9999681d8a3a43c795376a37", + "revision": "5ea8f31ccf8a48f486553e31", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30157,10 +34411,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "8f1b7b7c111946cbaa1a5063", + "revision": "a0cc67c6ee824ffa94b50662", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30168,10 +34422,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "21da41de60c74f7797a42349", + "revision": "bbe9a94933724da7b99f41f7", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30179,10 +34433,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "dbe94354f257444da6621b70", + "revision": "683f74a5fb2f487c92b25f14", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30194,10 +34448,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "352aee4edd6e4ee8be0a98ef", + "revision": "eb15abf0a9c0431f9c969d5e", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30211,14 +34465,17 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "efe7f730fa874c548928e73c", + "revision": "2b1c9b33334c426ab6ced6c8", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30226,10 +34483,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "c37946b9b6be4a49a5f472b7", + "revision": "31ddbad6ea3f4fc585022b7f", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30237,10 +34494,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "84b9175cfd9a4257a5e2ed18", + "revision": "22800d252e444f2bbe20ef0d", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30248,10 +34505,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "403861cac1b84c218bd51fbf", + "revision": "e82d7c1f861641ab8f846486", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30263,10 +34520,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "d66dfbdbd151481593d64c96", + "revision": "057dcdfc52a44250a2a14fff", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30280,14 +34537,17 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "b56c2dafdfe8417e954ddc6b", + "revision": "f9ebba61c77b421f8152df73", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30295,10 +34555,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "7f21cc8434d34e8aa9f0f01b", + "revision": "bdc67808028c4caa836f3d3f", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30306,10 +34566,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e7f890117ebc406da8b6f2d7", + "revision": "fefc73ce0d064b11a77e4992", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30317,10 +34577,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "39f1d31db73e4b039d06762e", + "revision": "3268a1b46c5e4397a588608e", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30332,10 +34592,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "a883253b21824dc0b576adc6", + "revision": "54c8c2e7d1e54c34ab1940cd", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30349,14 +34609,17 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "beabf2559fc9473e82462a1c", + "revision": "06a0eb481e5b4775b5d30377", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30364,10 +34627,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "7dc9b1e6318b4c599668de1b", + "revision": "5d61fe04f9e74722817f29bb", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30375,10 +34638,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "ab1f5523c685427d84b71ebe", + "revision": "76388db3f94c4042b92c2afc", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30386,10 +34649,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "06fee3b0d2764e2698343d2f", + "revision": "e9adac8470984121abbba2bb", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30401,10 +34664,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "699d93b2d54e4ad5adaea672", + "revision": "d673fe2cd406442fa1373d56", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30418,14 +34681,17 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "8e9b1c80df4b4aaa80893e42", + "revision": "c76fdca30dc649029c5c8649", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30433,10 +34699,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "dfdbc7c42259471396cdff9c", + "revision": "2ed974e397fd4fd7b6dc79aa", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30444,10 +34710,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "99b5b92ab0374b518189d8a9", + "revision": "88fcfd31e55842ea9c03c286", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30455,10 +34721,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c03ed946d36a4f15977c6cf2", + "revision": "a35d15be152e42cf895a1fd7", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30470,10 +34736,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "dc88408e54de4b5f92e3c063", + "revision": "3ed9b87cbc3c4f53af26766a", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30487,14 +34753,17 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "f9880f0052d146598b6a034e", + "revision": "b6d479c9b4bf4eabbc8a8e92", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30502,10 +34771,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "8d4d3f739c38434386d0e2aa", + "revision": "f7564d637d9d4082a4f60dc3", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30513,10 +34782,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "fa86c695e81d419691944426", + "revision": "866bebd39d584ea2bed44105", "revision_nr": 1, - "created": 1701463509546, - "modified": 1701463509546 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30524,10 +34793,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b0625297af9b45cab49d1977", + "revision": "14c57a5de69b458eb89f626f", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30539,10 +34808,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "2bf9c03b2563462591509753", + "revision": "4ac74b7958764d76a559fcad", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30556,14 +34825,17 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "c3c1402c23bb4721afc40e26", + "revision": "5e7a4a06e12c487d89d4ef73", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30571,10 +34843,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "d093e0c08c2542fe9bb16067", + "revision": "9d99cf7757c74b27a72bc745", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30582,10 +34854,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "7e7dc4114fd5409fbc28c031", + "revision": "0a0d510940d54688b706f2f0", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30593,10 +34865,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "cccc7498c6174da29f0630d8", + "revision": "5f9f4ea0a3ae4c8bb41247a9", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30608,10 +34880,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "26462879375d4b50b3ad3cb3", + "revision": "4ceef02f3d4d4a92a8a0d66f", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30625,14 +34897,17 @@ "total_amount": 13300, "installments": 11, "installment_amount": 1209.090909090909, - "date_created": "2023-05-03T01:48:59.834Z", + "date_created": { + "type": 6, + "value": 1683078539834 + }, "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "3b95a87504ba4588a6da2d08", + "revision": "36c6080b61da4827a19f8dcc", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30640,10 +34915,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "3928a3eb47e446ab8808b9f6", + "revision": "61eae02f81d74bb2846fee77", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30651,10 +34926,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "de7bbdc8807e4820829d1ff8", + "revision": "9e0ab257207d41e684625d26", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30662,10 +34937,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1ce2cd9b774542a693f62bca", + "revision": "acab1611725d4f90a6444ed0", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30673,10 +34948,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ea8dcf4834014ad7903e7cd2", + "revision": "9a4b5ac2b657485f8a97f631", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30686,13 +34961,19 @@ "value": { "approvedLimit": 10000, "limitUsed": 9090.90909090909, - "analysisRequested": "2023-03-26T01:06:09.965Z", - "lastReview": "2023-03-26T01:17:09.922Z" + "analysisRequested": { + "type": 6, + "value": 1679792769965 + }, + "lastReview": { + "type": 6, + "value": 1679793429922 + } }, - "revision": "8a613af80d4441b1848b39ff", + "revision": "7e81c716e100471980f73ea9", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30704,12 +34985,15 @@ "dateValidity": 1678943777415, "totalValue": 13247.575, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } }, - "revision": "50f04e8ba4cf4e6ea04de313", + "revision": "66c8acfbb20f4237b2ef63a9", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30721,10 +35005,10 @@ "symbol": "IVIP", "value": 3.88 }, - "revision": "d1ee1e81ab7f4134bfa5be1a", + "revision": "d97499be55c14ffdbc91c1f3", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30732,10 +35016,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "089c23dc1a1c4ec092c14a06", + "revision": "0da77f010e51436ebd053f82", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30743,12 +35027,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "03e78e5aef9f4504b52f3d65", + "revision": "d3f5bb57fe5841de82942683", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30763,22 +35047,37 @@ "total_amount": 20, "history_id": 1689115233061, "id": 1689115233061, - "date_created": "2023-07-11T22:40:33.061Z", - "date_last_updated": "2023-07-12T08:25:46.943Z", - "date_of_expiration": "2023-08-10T22:40:33.061Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-12T08:25:46.943Z", - "money_release_date": "2023-07-12T08:25:46.943Z", + "date_created": { + "type": 6, + "value": 1689115233061 + }, + "date_last_updated": { + "type": 6, + "value": 1689150346943 + }, + "date_of_expiration": { + "type": 6, + "value": 1691707233061 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689150346943 + }, + "money_release_date": { + "type": 6, + "value": 1689150346943 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "25b2653677a74c82bf4528c8", + "revision": "6090cd80dd044d47bb4b3bc8", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30786,10 +35085,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", - "revision": "31d1bede32924a309c489034", + "revision": "15c1f41cbc69423baa55be69", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30797,12 +35096,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "166fa9424b1942fb84ccef1c", + "revision": "87616fc9ed904fb29deeb29b", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30817,22 +35116,37 @@ "total_amount": 20, "history_id": 1689278707835, "id": 1689278707835, - "date_created": "2023-07-13T20:05:07.835Z", - "date_last_updated": "2023-07-13T20:07:08.225Z", - "date_of_expiration": "2023-08-12T20:05:07.835Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-13T20:07:08.225Z", - "money_release_date": "2023-07-13T20:07:08.225Z", + "date_created": { + "type": 6, + "value": 1689278707835 + }, + "date_last_updated": { + "type": 6, + "value": 1689278828225 + }, + "date_of_expiration": { + "type": 6, + "value": 1691870707835 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689278828225 + }, + "money_release_date": { + "type": 6, + "value": 1689278828225 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "4369da111329472bbc98c3ca", + "revision": "f79a726b3f1440edb4d10481", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30840,10 +35154,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", - "revision": "2cc20ed58f334a5baa93b215", + "revision": "869b54b63f974f23acbcedc6", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30861,12 +35175,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "76fb2f269a5a405592fd7a1f", + "revision": "56857d883bdc4bd39473f903", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30882,9 +35196,18 @@ "original_amount": 25268, "total_amount": 25268, "id": 1689683815156, - "date_created": "2023-07-18T12:36:55.156Z", - "date_last_updated": "2023-07-18T12:36:55.156Z", - "date_of_expiration": "2023-07-18T12:36:55.156Z", + "date_created": { + "type": 6, + "value": 1689683815156 + }, + "date_last_updated": { + "type": 6, + "value": 1689683815156 + }, + "date_of_expiration": { + "type": 6, + "value": 1689683815156 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -30893,10 +35216,10 @@ "history_id": 1689683815156, "description": "Compra de 25.268,00 IVIP por 40,00 BRL" }, - "revision": "d048436e8e424a3fbf4f34ef", + "revision": "ff5c99ac28624d72b1efc0c8", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30904,12 +35227,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "8b80ef8f3b8b413cbc8a0ffe", + "revision": "d6eb814da8c64aae9b4ea702", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30924,22 +35247,37 @@ "total_amount": 20, "history_id": 1689684340625, "id": 1689684340625, - "date_created": "2023-07-18T12:45:40.625Z", - "date_last_updated": "2023-07-18T14:46:07.863Z", - "date_of_expiration": "2023-08-17T12:45:40.625Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-18T14:46:07.863Z", - "money_release_date": "2023-07-18T14:46:07.863Z", + "date_created": { + "type": 6, + "value": 1689684340625 + }, + "date_last_updated": { + "type": 6, + "value": 1689691567863 + }, + "date_of_expiration": { + "type": 6, + "value": 1692276340625 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689691567863 + }, + "money_release_date": { + "type": 6, + "value": 1689691567863 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "c54697da89ba4131a11b22a5", + "revision": "0e95e21edaa74a69b68fa7a4", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30947,10 +35285,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", - "revision": "2c6ff9ae09474de4a6a71291", + "revision": "eeb3a7cfcc2b47c9a441c825", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30968,12 +35306,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "50e8ba8fe6c1450680ce465e", + "revision": "07f12eef7ccb4a4ab76c52ed", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -30989,9 +35327,18 @@ "original_amount": 12869, "total_amount": 12869, "id": 1689695209900, - "date_created": "2023-07-18T15:46:49.900Z", - "date_last_updated": "2023-07-18T15:46:49.900Z", - "date_of_expiration": "2023-07-18T15:46:49.900Z", + "date_created": { + "type": 6, + "value": 1689695209900 + }, + "date_last_updated": { + "type": 6, + "value": 1689695209900 + }, + "date_of_expiration": { + "type": 6, + "value": 1689695209900 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31000,10 +35347,10 @@ "history_id": 1689695209900, "description": "Compra de 12.869,00 IVIP por 20,00 BRL" }, - "revision": "6ea0bbed58974d8e8eb75a70", + "revision": "fe1d9e099e6b497ab1c11d46", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -31011,10 +35358,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b56d31077e7a4413b0847426", + "revision": "e04e772dc65240a68d5ac6f5", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -31022,10 +35369,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3e64158687e34fe1b6b2b75b", + "revision": "cb673aa439b8445ca6103166", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -31036,10 +35383,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "e1af6421909047bdbd213427", + "revision": "82ce8843d54243cc924cfd2e", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -31051,12 +35398,15 @@ "dateValidity": 1681695529045, "totalValue": 12.39, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } }, - "revision": "f5635942fc6544e2a08b96c3", + "revision": "4dd7f37134d24533b327b51b", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -31064,10 +35414,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "133c438fa3a94d5dbadb9b17", + "revision": "9feea5173b1748c08098763e", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -31075,10 +35425,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9f58d76a39bf4effbf912735", + "revision": "b14b28951cc54ee48331d929", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -31086,10 +35436,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4b3d7294645d499bbe3510d7", + "revision": "f28f30128bac48348502bff3", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -31100,10 +35450,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "b118c56d833d46fba929ec7c", + "revision": "833bf28c591a43188fd0e71f", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -31116,10 +35466,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "a8cb288abea7465381d88952", + "revision": "0541709264cf4304828d9e49", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -31131,10 +35481,10 @@ "symbol": "IVIP", "value": 6.74 }, - "revision": "b7e5785b0ccb48bab6a4c687", + "revision": "28c531d0c9da4b5695659906", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -31142,10 +35492,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "cc2af5a32c0444b4ac69c2ca", + "revision": "3bf546fce9f54e12ba3dc205", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -31153,12 +35503,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "c60c20df90864a739f659299", + "revision": "75dc415e0ab54c3f84341b99", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31173,18 +35523,27 @@ "total_amount": 20, "history_id": 1689220381451, "id": 1689220381451, - "date_created": "2023-07-13T03:53:01.451Z", - "date_last_updated": "2023-07-13T03:53:01.451Z", - "date_of_expiration": "2023-08-12T03:53:01.451Z", + "date_created": { + "type": 6, + "value": 1689220381451 + }, + "date_last_updated": { + "type": 6, + "value": 1689220381451 + }, + "date_of_expiration": { + "type": 6, + "value": 1691812381451 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "06b4672d54ac4c86baec05a0", + "revision": "37922d3dca4f4253bd36fdcc", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31192,10 +35551,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "247245fc5a1649efb2a47f7c", + "revision": "7655e57c569e4871988dbe1b", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820521, + "modified": 1701465820521 } }, { @@ -31203,12 +35562,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "d3601b6e1bb840afa7c4f364", + "revision": "1f0ec6d766dd4ad7ade35743", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31223,22 +35582,37 @@ "total_amount": 50, "history_id": 1689220411584, "id": 1689220411584, - "date_created": "2023-07-13T03:53:31.584Z", - "date_last_updated": "2023-07-13T14:14:45.911Z", - "date_of_expiration": "2023-08-12T03:53:31.584Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-13T14:14:45.911Z", - "money_release_date": "2023-07-13T14:14:45.911Z", + "date_created": { + "type": 6, + "value": 1689220411584 + }, + "date_last_updated": { + "type": 6, + "value": 1689257685911 + }, + "date_of_expiration": { + "type": 6, + "value": 1691812411584 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689257685911 + }, + "money_release_date": { + "type": 6, + "value": 1689257685911 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "67ee33b4dc5143f99e7b4f5a", + "revision": "cd0fd0c69b3b4e42842be3f6", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31246,10 +35620,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "67eb916f39c44aa389bf10dd", + "revision": "522030a3e3df454685a56f67", "revision_nr": 1, - "created": 1701463509547, - "modified": 1701463509547 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31267,12 +35641,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a9ad4057589f434089514502", + "revision": "4c2d7ff966de4dd4aaf39d31", "revision_nr": 1, - "created": 1701463509548, - "modified": 1701463509548 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31288,9 +35662,18 @@ "original_amount": 18682, "total_amount": 18682, "id": 1689258185846, - "date_created": "2023-07-13T14:23:05.846Z", - "date_last_updated": "2023-07-13T14:23:05.846Z", - "date_of_expiration": "2023-07-13T14:23:05.846Z", + "date_created": { + "type": 6, + "value": 1689258185846 + }, + "date_last_updated": { + "type": 6, + "value": 1689258185846 + }, + "date_of_expiration": { + "type": 6, + "value": 1689258185846 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31299,10 +35682,10 @@ "history_id": 1689258185846, "description": "Compra de 18.682,00 IVIP por 50,00 BRL" }, - "revision": "fe4497a02fb740bcaba92bb4", + "revision": "f2e97798873f4d98af033eb9", "revision_nr": 1, - "created": 1701463509548, - "modified": 1701463509548 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31310,12 +35693,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "cf3d3755ae4d4dd386be7fd2", + "revision": "b612da1ad9b94028b1f5d347", "revision_nr": 1, - "created": 1701463509548, - "modified": 1701463509548 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31330,18 +35713,27 @@ "total_amount": 20, "history_id": 1689488308744, "id": 1689488308744, - "date_created": "2023-07-16T06:18:28.744Z", - "date_last_updated": "2023-07-16T06:18:28.744Z", - "date_of_expiration": "2023-08-15T06:18:28.744Z", + "date_created": { + "type": 6, + "value": 1689488308744 + }, + "date_last_updated": { + "type": 6, + "value": 1689488308744 + }, + "date_of_expiration": { + "type": 6, + "value": 1692080308744 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "86e0ce93a1de44d2a72a134e", + "revision": "8d61fe5f9c084219814cbbb3", "revision_nr": 1, - "created": 1701463509548, - "modified": 1701463509548 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31349,10 +35741,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "f24bde9839fb4af0a6ae6340", + "revision": "90a98bbd29394706b11e1ab4", "revision_nr": 1, - "created": 1701463509548, - "modified": 1701463509548 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31360,12 +35752,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "947607a156924013ab261c27", + "revision": "83315f3174904cdfb3efa6c4", "revision_nr": 1, - "created": 1701463509548, - "modified": 1701463509548 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31380,22 +35772,37 @@ "total_amount": 20, "history_id": 1689488325765, "id": 1689488325765, - "date_created": "2023-07-16T06:18:45.765Z", - "date_last_updated": "2023-07-17T17:15:08.067Z", - "date_of_expiration": "2023-08-15T06:18:45.765Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-17T17:15:08.067Z", - "money_release_date": "2023-07-17T17:15:08.067Z", + "date_created": { + "type": 6, + "value": 1689488325765 + }, + "date_last_updated": { + "type": 6, + "value": 1689614108067 + }, + "date_of_expiration": { + "type": 6, + "value": 1692080325765 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689614108067 + }, + "money_release_date": { + "type": 6, + "value": 1689614108067 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "2b0e359c14284a1cab5358bb", + "revision": "479dd7af9e3d44e588f1d804", "revision_nr": 1, - "created": 1701463509548, - "modified": 1701463509548 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31403,10 +35810,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "a7ff2f54ec7e4b768fb72396", + "revision": "6fc0e598d44c4330b80d321e", "revision_nr": 1, - "created": 1701463509548, - "modified": 1701463509548 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31414,12 +35821,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "8038839cfca9496d965bbe45", + "revision": "82f720f5089c47ef8c6d0fff", "revision_nr": 1, - "created": 1701463509548, - "modified": 1701463509548 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31434,18 +35841,27 @@ "total_amount": 20, "history_id": 1689606916771, "id": 1689606916771, - "date_created": "2023-07-17T15:15:16.771Z", - "date_last_updated": "2023-07-17T15:15:16.771Z", - "date_of_expiration": "2023-08-16T15:15:16.771Z", + "date_created": { + "type": 6, + "value": 1689606916771 + }, + "date_last_updated": { + "type": 6, + "value": 1689606916771 + }, + "date_of_expiration": { + "type": 6, + "value": 1692198916771 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "2e386b15ff184cc6bb08e4eb", + "revision": "45fc909e2379424fbebb1be1", "revision_nr": 1, - "created": 1701463509548, - "modified": 1701463509548 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31453,10 +35869,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "fbee20cb9b8d4662b56671c0", + "revision": "7172a74f6177495aa0cb6384", "revision_nr": 1, - "created": 1701463509548, - "modified": 1701463509548 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31474,12 +35890,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "1733074211d74c77991cf5c0", + "revision": "4cbf3c540521403a8fce0b49", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31495,9 +35911,18 @@ "original_amount": 12478, "total_amount": 12478, "id": 1689614163424, - "date_created": "2023-07-17T17:16:03.424Z", - "date_last_updated": "2023-07-17T17:16:03.424Z", - "date_of_expiration": "2023-07-17T17:16:03.424Z", + "date_created": { + "type": 6, + "value": 1689614163424 + }, + "date_last_updated": { + "type": 6, + "value": 1689614163424 + }, + "date_of_expiration": { + "type": 6, + "value": 1689614163424 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31506,10 +35931,10 @@ "history_id": 1689614163424, "description": "Compra de 12.478,00 IVIP por 20,00 BRL" }, - "revision": "e3fcd35f145b40d38318f6f3", + "revision": "9dad3ceb251f4a19be4ecebb", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31525,12 +35950,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "506c8efcdacf4070bf7af402", + "revision": "64a47ea0b87444f39b672e2b", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31538,10 +35963,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1690673977679", - "revision": "6b6d72b08fc7403eacff82e7", + "revision": "9914d4e8b70e401a8350dac6", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31556,9 +35981,18 @@ "total_amount": 31160, "id": 1690673977679, "history_id": 1690673977679, - "date_created": "2023-07-29T23:39:37.679Z", - "date_last_updated": "2023-07-29T23:39:37.679Z", - "date_of_expiration": "2023-08-29T23:39:37.677Z", + "date_created": { + "type": 6, + "value": 1690673977679 + }, + "date_last_updated": { + "type": 6, + "value": 1690673977679 + }, + "date_of_expiration": { + "type": 6, + "value": 1693352377677 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31566,10 +36000,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "00d14bb71dfa48c28865a83a", + "revision": "b2bebf94707c47ccab014c11", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31577,10 +36011,10 @@ "content": { "type": "STRING", "value": "Investimento de 31.160,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/29/2023", - "revision": "f476abe9dd2e4f6b99a38954", + "revision": "c6cd24c891cd41e3a59da6a1", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31589,12 +36023,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-28T23:41:03.331Z" + ".val": { + "type": 6, + "value": 1693266063331 + } }, - "revision": "14bc4bd38176494aa03913e0", + "revision": "bb532804eae846828331de6a", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31610,12 +36047,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "81c4e996edf74e1a95513fc2", + "revision": "29dd981fba454463a802f066", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31623,10 +36060,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1690674063331", - "revision": "79498c75345a4284a92de349", + "revision": "31702dd09d824a71b9c394c8", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31641,8 +36078,14 @@ "total_amount": 50, "id": 1690674063331, "history_id": 1690674063331, - "date_created": "2023-07-29T23:41:03.331Z", - "date_last_updated": "2023-07-29T23:41:03.331Z", + "date_created": { + "type": 6, + "value": 1690674063331 + }, + "date_last_updated": { + "type": 6, + "value": 1690674063331 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -31650,10 +36093,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "eafce8d37c134a108e8682dc", + "revision": "7807a2ae78ae4f70a899ec93", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31661,10 +36104,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 50,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "d8ce34c3e0fb4b4abc75f6ac", + "revision": "b22afbe15b764ea588bc5827", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31673,12 +36116,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-11T22:49:28.160Z" + ".val": { + "type": 6, + "value": 1694472568160 + } }, - "revision": "e1a79767ede249f58cf56552", + "revision": "36000113361d4ed198dd6f78", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31694,12 +36140,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "b82cb4aa4b614ee2b8b5f82e", + "revision": "805cb6b7f82b4440bb08c58d", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31707,10 +36153,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1691880568161", - "revision": "4e155497db2045e19fe55334", + "revision": "cf46bc443dc3444388af314e", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31725,8 +36171,14 @@ "total_amount": 20, "id": 1691880568161, "history_id": 1691880568161, - "date_created": "2023-08-12T22:49:28.161Z", - "date_last_updated": "2023-08-12T22:49:28.161Z", + "date_created": { + "type": 6, + "value": 1691880568161 + }, + "date_last_updated": { + "type": 6, + "value": 1691880568161 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -31734,10 +36186,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "8f14bf08d5ba4016831d0ea1", + "revision": "44a60a67664647d69295cdbe", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31745,10 +36197,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "f4fc66a293d34fa0ad4395bc", + "revision": "488756cc980243db99d4acf5", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31764,12 +36216,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "fa3c63dfa0234b2494619097", + "revision": "d611101937fc4c29b9b3531c", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31777,10 +36229,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1693353168151", - "revision": "bbd63544037c4abbba543b7f", + "revision": "9ca2c69342d94ae1abb77257", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31795,9 +36247,18 @@ "total_amount": 31783.2, "id": "1693353168151", "history_id": "1693353168151", - "date_created": "2023-08-29T23:52:48.151Z", - "date_last_updated": "2023-08-29T23:52:48.151Z", - "date_of_expiration": "2023-08-29T23:52:48.151Z", + "date_created": { + "type": 6, + "value": 1693353168151 + }, + "date_last_updated": { + "type": 6, + "value": 1693353168151 + }, + "date_of_expiration": { + "type": 6, + "value": 1693353168151 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -31805,10 +36266,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "092f8ed59c49468cbc0ecb55", + "revision": "0bdb3ab3b0f74ae1a0e4e1f0", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31816,10 +36277,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 31.160,00 IVIP com um rendimento de +623,2 IVIP (2,00%) - Y12XDT27", - "revision": "54f5c30a2a3447f49807abf5", + "revision": "620b43a821bb41c795e3fac8", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31827,10 +36288,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4d07ce3fd5574436954bf9b4", + "revision": "f56038275d4b4d068d4f2df5", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31838,10 +36299,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ff4a93106fd14b64901e727c", + "revision": "022a812dd0e6412f9fcc03bc", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31852,10 +36313,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "fe6497ec74ee4cc5bf7e80d2", + "revision": "68213744ae3948e3887ddd13", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31867,12 +36328,15 @@ "dateValidity": 1689220270724, "totalValue": 14.47, "currencyType": "USD", - "balancesModificacao": "2023-10-02T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696215600000 + } }, - "revision": "2d549dde9a9e437e89868043", + "revision": "85b6e4779d9b4b19bea60e14", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31880,10 +36344,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a5007d1374264d91a2dfa7d8", + "revision": "c77953611e36480785f0adbb", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31891,10 +36355,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "eeba121b0e294f82985b094d", + "revision": "24a0763915ca4137bd71f034", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31907,10 +36371,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "d36aba79b58f4f0f85216ce0", + "revision": "32aa77a1f88a424d8ed42e9f", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31922,10 +36386,10 @@ "symbol": "IVIP", "value": 16.044 }, - "revision": "9da2bf60af4b49b2ada3b491", + "revision": "237fb2c1aca04c95858f2e9e", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31933,10 +36397,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2f411b5eaf5c402ab1abb5e4", + "revision": "390771d4d59942a08ad067ec", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31945,12 +36409,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-04T15:32:38.190Z" + ".val": { + "type": 6, + "value": 1699111958190 + } }, - "revision": "12ed8334c52942759df0c57b", + "revision": "e90301ae1be546a3ba51c687", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31966,12 +36433,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "37dd9361e70a48629e1bbfa9", + "revision": "030743662bbf4f61a6f22cfa", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31979,10 +36446,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696519958190", - "revision": "959cb70a42ee4e7eb0fab8b4", + "revision": "ac53fa7211fa48788710f19a", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -31998,8 +36465,14 @@ "total_amount": 100, "id": "1696519958190", "history_id": "1696519958190", - "date_created": "2023-10-05T15:32:38.190Z", - "date_last_updated": "2023-10-05T15:32:38.190Z", + "date_created": { + "type": 6, + "value": 1696519958190 + }, + "date_last_updated": { + "type": 6, + "value": 1696519958190 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -32007,10 +36480,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "88049215b6af4d7094915b43", + "revision": "7054ba79c61f4c03a6a0fa4c", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -32018,10 +36491,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0397.3472.1775.6545-10", - "revision": "f6bc9e992d2445d4b562ba4a", + "revision": "b94b93799b0a41a68ed203eb", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -32030,12 +36503,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-04T21:32:52.533Z" + ".val": { + "type": 6, + "value": 1699133572533 + } }, - "revision": "67d754c12c924dce9780b6c3", + "revision": "b7ddb6e06b5641fb8f9e8878", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -32051,12 +36527,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "743c7b611d7143549774d306", + "revision": "8087ebedb72e45ec8266c88c", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -32064,10 +36540,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696541572533", - "revision": "d3f7b6aaabd04aefa17253f9", + "revision": "40020668bcfd42d281f694ff", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -32083,8 +36559,14 @@ "total_amount": 50, "id": "1696541572533", "history_id": "1696541572533", - "date_created": "2023-10-05T21:32:52.533Z", - "date_last_updated": "2023-10-05T21:32:52.533Z", + "date_created": { + "type": 6, + "value": 1696541572533 + }, + "date_last_updated": { + "type": 6, + "value": 1696541572533 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -32092,10 +36574,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "1cb8222a25994a798a5e0490", + "revision": "69faa7100f434247b178ed71", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -32103,10 +36585,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", - "revision": "1aa186009a2b4d95b529d285", + "revision": "0214d8a4f711491b8d45e401", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -32115,12 +36597,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-05T09:46:24.658Z" + ".val": { + "type": 6, + "value": 1699177584658 + } }, - "revision": "9ac7689017dd4b3b980d38d2", + "revision": "000a2feaf50149e9a914b355", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -32136,12 +36621,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "27b1091c0d13461a830d6dc4", + "revision": "fa5b863a43e54fec814f672b", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -32149,10 +36634,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696585584658", - "revision": "bc8d64b7283147588a39ae86", + "revision": "546ae7d81853474f837c2635", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -32168,23 +36653,35 @@ "total_amount": 50, "id": "1696585584658", "history_id": "1696585584658", - "date_created": "2023-10-06T09:46:24.658Z", - "date_last_updated": "2023-10-07T14:19:56.574Z", + "date_created": { + "type": 6, + "value": 1696585584658 + }, + "date_last_updated": { + "type": 6, + "value": 1696688396574 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-10-07T14:19:56.574Z", - "money_release_date": "2023-10-07T14:19:56.574Z", + "date_approved": { + "type": 6, + "value": 1696688396574 + }, + "money_release_date": { + "type": 6, + "value": 1696688396574 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "db1431e547ab4997946baa4c", + "revision": "46a217ee93e94d039265addd", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -32192,10 +36689,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", - "revision": "f4b232a869fc48a5872f0496", + "revision": "04e7eb0e060043ef90f8544e", "revision_nr": 1, - "created": 1701463509549, - "modified": 1701463509549 + "created": 1701465820522, + "modified": 1701465820522 } }, { @@ -32211,12 +36708,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "457b67ffe0624f9d90da0c1d", + "revision": "c5d106cb09c8481098c2adcb", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32224,10 +36721,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696706580251", - "revision": "4c81348bc4a147ab9386b67a", + "revision": "4e27225b98da490ea5344fe9", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32243,9 +36740,18 @@ "total_amount": 70156, "id": "1696706580251", "history_id": "1696706580251", - "date_created": "2023-10-07T19:23:00.251Z", - "date_last_updated": "2023-10-07T19:23:00.251Z", - "date_of_expiration": "2023-10-07T19:23:00.251Z", + "date_created": { + "type": 6, + "value": 1696706580251 + }, + "date_last_updated": { + "type": 6, + "value": 1696706580251 + }, + "date_of_expiration": { + "type": 6, + "value": 1696706580251 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -32254,10 +36760,10 @@ "description": "Compra de 70.156,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "037bb4e9de6648e383277abe", + "revision": "85ac4439af6743e29986a36a", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32266,12 +36772,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-08T23:46:10.002Z" + ".val": { + "type": 6, + "value": 1699487170002 + } }, - "revision": "801eaf46a0db4904865ef18d", + "revision": "eb6e0eb5aad84209b22233b2", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32287,12 +36796,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "1e57321b3b014ebea32ac89e", + "revision": "81abc803c63c44b695fcacfa", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32300,10 +36809,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696895170006", - "revision": "babb3d659ebb47f0a0a35a54", + "revision": "46771ccffa6d40b5bbb32635", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32319,23 +36828,35 @@ "total_amount": 50, "id": "1696895170006", "history_id": "1696895170006", - "date_created": "2023-10-09T23:46:10.006Z", - "date_last_updated": "2023-10-10T12:08:30.416Z", + "date_created": { + "type": 6, + "value": 1696895170006 + }, + "date_last_updated": { + "type": 6, + "value": 1696939710416 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-10-10T12:08:30.416Z", - "money_release_date": "2023-10-10T12:08:30.416Z", + "date_approved": { + "type": 6, + "value": 1696939710416 + }, + "money_release_date": { + "type": 6, + "value": 1696939710416 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "c88c8f334528452eb55e43ad", + "revision": "91a83fa9e4fa40f4a72030f5", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32343,10 +36864,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", - "revision": "44fc278159b64b7c9925108a", + "revision": "05d4d844e1704351b37182f6", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32362,12 +36883,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "ef099317d8154a62acadf989", + "revision": "cb11d38131de495ab993c92e", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32375,10 +36896,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696951453164", - "revision": "c6481b1b8b6e41f9bb9326f4", + "revision": "8f04b56a3a854ef3babe2b9f", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32394,9 +36915,18 @@ "total_amount": 80325, "id": "1696951453164", "history_id": "1696951453164", - "date_created": "2023-10-10T15:24:13.164Z", - "date_last_updated": "2023-10-10T15:24:13.164Z", - "date_of_expiration": "2023-10-10T15:24:13.164Z", + "date_created": { + "type": 6, + "value": 1696951453164 + }, + "date_last_updated": { + "type": 6, + "value": 1696951453164 + }, + "date_of_expiration": { + "type": 6, + "value": 1696951453164 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -32405,10 +36935,10 @@ "description": "Compra de 80.325,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "d1a9ec5080424770b569cec1", + "revision": "ce6ec080359941a5b3821258", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32416,10 +36946,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3aecca731544476b9c667bec", + "revision": "52a029a5956c4cf39e11f58b", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32427,10 +36957,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4fe5c09097c440538f6fd1ff", + "revision": "7aebd1b6bdf240f08ca6b4a2", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32441,10 +36971,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "0c1a07440fc64bc7b20a543e", + "revision": "032e25d9d0d34ed98f598bc9", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32455,12 +36985,15 @@ "dataModificacao": 1696456086300, "dateValidity": 1696456087509, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } }, - "revision": "d9461483cf984dc78fa3d34d", + "revision": "8fdf26e4f1ec4ebeb99de95f", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32468,10 +37001,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "626b0150ff56497bb8373b49", + "revision": "42cc2ee27e7f42d784f15257", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32479,10 +37012,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ea3e269dd7fb458597d37e96", + "revision": "5c127b88373a444f96611753", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32495,10 +37028,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "8145f0f974dd4452b91ee07d", + "revision": "d00b34acb3ba48e6b17cdf32", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32510,10 +37043,10 @@ "label": "Taxa de 0.99%", "amount": 0.9900000000000001 }, - "revision": "19d58ea2d7424d378f5abdf4", + "revision": "42fbee2f635144e0bbfca628", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32521,10 +37054,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "47fae3ab256b4f7d9319005d", + "revision": "c0d06e7ffeb9424290fdbfd9", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32534,10 +37067,10 @@ "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "c1509cb5a39448869d22bb4b", + "revision": "60ee2778899a46aca84c9e6f", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32545,10 +37078,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "71a677332c954c8c88786527", + "revision": "8b4e3c3142094725b71f4ba5", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32562,10 +37095,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "8d59757c5b6d4811bc817cf6", + "revision": "bac558c0a7034c65b74629f0", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32573,10 +37106,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55838306631/ticket?caller_id=1310149122&hash=c84a0406-1525-4894-8c96-d700cf2da43d", - "revision": "96990ea6e99e4783a843b3e1", + "revision": "cd62bed0dcbe48388acd4268", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32584,10 +37117,10 @@ "content": { "type": "STRING", "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558383066316304189E", - "revision": "f52062d01e4b4731a3b75410", + "revision": "ad1dc9bdcf7a41f7b0a5fc4a", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32595,10 +37128,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIwElEQVR42u3dW67rNgwFUM3A85+lZ+CiRYsTi5ty+gDaWisfBzfXr+X8EaS2xvU/+pyDlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlvaf1475c/z+fz9Hp6t/O+XXm4zpX58n/xytD/rt6HReYtDS0tLS0tLS0tLS0m6iPQLlhvq5+3Sn35+zJk+8n8v+OPB5l6SipaWlpaWlpaWlpaXdQPtZQE7G815FnvdHTFVfuqKpItNzC4OWlpaWlpaWlpaWlnZb7Y9ses6Vj6a3mm6V6sTyh5aWlpaWlpaWlpaWlvZ+6SeqbcmdZWRyeqHULZxOpqWlpaWlpaWlpaWl3Vubi7vpsdNzahGYxjbTa0yy9fAnLS0tLS0tLS0tLS3t+7UppeRf+PM3MlVoaWlpaWlpaWlpaWn/z9r1pxR8q8Vx7Yjm5EnpkYsPLS0tLS0tLS0tLS3t27VpaPLs+nfNore2Fi0vdJvinMYxc7OPlpaWlpaWlpaWlpb23dqUqZ/y+NMyuUWxWN+vLLGro5w55J+WlpaWlpaWlpaWlnYDbboq5UOmwvCL0Mn8Vs2tQvIkLS0tLS0tLS0tLS3tm7Vt2fh598dAyMWzk/sM+SdX30GkpaWlpaWlpaWlpaV9s/Yz1LGG8k+5/eWyM/xpj9Y5zfJjXLS0tLS0tLS0tLS0tNtp03K1ttWW2nQF0GyAXWrRVJBmPC0tLS0tLS0tLS0t7Zu1U+2YSro8JVlHKr9q4k1r4NIqvOOb3dZoaWlpaWlpaWlpaWnfoi0tuSvsUD0Wrbt02RRkkuJLyv+NgKelpaWlpaWlpaWlpd1CO9Vwj4EiZTbyDNopanJqBU4/xs1Y3LS0tLS0tLS0tLS0tO/WlttdXb9t3MNIajduPYQ5tf1K5v8I05m0tLS0tLS0tLS0tLRbaOvCtfRJJWLpEa7TTKZHnnk685vd1mhpaWlpaWlpaWlpaV+kzVXfKFtXlzqxjl6WLdea4Mg8sXmUP7S0tLS0tLS0tLS0tDtppxJx3AHJk0Yv1/Elx1M/sOy7RktLS0tLS0tLS0tLu4W2NuJSi6+si7vCXGVqFNYi9fMNmnK1m7qkpaWlpaWlpaWlpaV9o/Ysi9RyETh92r3YVgvcuv7dfJfnmpeWlpaWlpaWlpaWlvY92rbqq1tXT0kjix0BJveRD7RF5UPNS0tLS0tLS0tLS0tL+yJtTnEcnewsGf2lzzfC6za80je8vkuPpKWlpaWlpaWlpaWlfZE2l351zVrbzitf6+Rknthsv54P3T1aWlpaWlpaWlpaWtpXaafdqNuycTq5FHxnCJNM7by08i0FTF60tLS0tLS0tLS0tLTbaJsZyvVquBT0WOrOx/5d0aafhZaWlpaWlpaWlpaWdgNtiiCZFKXMO7sXOrqAknT78+nhtLS0tLS0tLS0tLS079ceYXwyrWO75qbbyKOXdSFcKi/Tj1HKS1paWlpaWlpaWlpa2i20zT3DqrRR9sNuVs2V5W+3a6eXTEn/tLS0tLS0tLS0tLS0+2hTMkjp3zUL3HIr8DaxuVj+lp47HjNVaGlpaWlpaWlpaWlp36b9yjNCJTgFj4x7eXl1gZDncuryeNgFm5aWlpaWlpaWlpaW9n3aqelWbnc978B2hfHJo4svGWOk2c3CuGhpaWlpaWlpaWlpaXfSJuhULJaoklHySkrZ2LzaUzDKcy+SlpaWlpaWlpaWlpb2VdpKbrNJ0tK5z6/rVmA7YZn+RUtLS0tLS0tLS0tLu4+23mQagWxPWdwgdfKushAuT10ej71IWlpaWlpaWlpaWlraV2lTKTnVjkf+miMkx2cTb7pznrpMpSQtLS0tLS0tLS0tLe0u2kw5u7iRK2/DlkJGcmjJ1W0kMEajoqWlpaWlpaWlpaWl3UJ7ftmwO/LXMqy5Wv5WytVV4AktLS0tLS0tLS0tLe0W2sVwZTM+mXJGUuBJiTlp3+C6dwZpaWlpaWlpaWlpaWn30TZFYNmwum3i1fZgGq586hGefVYlLS0tLS0tLS0tLS3tm7WtJ6f1X12QSdPEm0Yv20HPchdaWlpaWlpaWlpaWtr9tOtdq9Nua9OBKdo/D2vW5JI8hHnR0tLS0tLS0tLS0tLupJ3unkYlS8jICrqY52y2x05BlLS0tLS0tLS0tLS0tJtob2XjNCWZlqt9FoarGP+Mr+/8XFTS0tLS0tLS0tLS0tK+W9vuRp3SR6be37GY08y5lFcZ4Jx+m9BLpKWlpaWlpaWlpaWlfbP2qbF3ZVl+q+seEnmWPt9TZ7BuzUZLS0tLS0tLS0tLS/t2bRmuHGUEcnq1DDhz22/6CUq5OrroE1paWlpaWlpaWlpa2n20dUFamrBchEke91e/dQtL6y7tlt0Un7S0tLS0tLS0tLS0tJto2xru7NbAjedokaucnGctp9bi9V13j5aWlpaWlpaWlpaW9kXabKz7pLWzkYshzGkRXXMgl7C0tLS0tLS0tLS0tLSbacfTFte5wrvCHmsVn2TrUpKWlpaWlpaWlpaWlnYfbfp8PuLMo5clgiRVlqlh990+bsupS1paWlpaWlpaWlpa2ldpS2jI48P+cp8vrXy7uo3bDlpaWlpaWlpaWlpa2m20617dGM3JaWe1ZrjyKUzyz1SRtLS0tLS0tLS0tLS0r9SmAjLNRuYu4Cqov23npZ8l1ae0tLS0tLS0tLS0tLR7akfIDRkhAfIKefzNnm3t1OX0us/dPVpaWlpaWlpaWlpa2g20i4j9Jpn/CB2/1M67uunMOsBJS0tLS0tLS0tLS0u7j3aN/5ymXPf+0t7Xq3Vx69V1tLS0tLS0tLS0tLS0m2jr4GNepHbOw5CjnJdW0p3h2qv8DmmJHS0tLS0tLS0tLS0t7Rba//6HlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlvYf0/4CTrnpnMA9aVMAAAAASUVORK5CYII=", - "revision": "cfdc4b7cb1cd40d3ab3d2828", + "revision": "f002ad7ea02d412dbf702e25", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32606,10 +37139,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "bea388272e0f4587b89e2ced", + "revision": "787e5504c6b24cada4d55dd7", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32624,19 +37157,28 @@ "total_amount": 100.99, "history_id": 1679068099316, "id": 55838306631, - "date_created": "2023-03-17T11:48:19.967-04:00", - "date_last_updated": "2023-03-18T11:50:47.000-04:00", - "date_of_expiration": "2023-03-18T11:48:19.697-04:00", + "date_created": { + "type": 6, + "value": 1679068099967 + }, + "date_last_updated": { + "type": 6, + "value": 1679154647000 + }, + "date_of_expiration": { + "type": 6, + "value": 1679154499697 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", "status_detail": "expired", "currency_id": "BRL" }, - "revision": "7fe6aaee53c64f96807aa6b4", + "revision": "7d155e69cb434b03b16db1a3", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32644,10 +37186,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0413.9580.8163.2810-30", - "revision": "322da02fffbd471a9851c526", + "revision": "f2dc0cd26c444531abd99d1f", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32659,10 +37201,10 @@ "label": "Taxa de 0.99%", "amount": 0.9900000000000001 }, - "revision": "06706a6dd32a4165b66fd8fb", + "revision": "ae0732621eaa4a6cb0ea9f2e", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32670,10 +37212,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1258e5fa98284e52a106c45a", + "revision": "b4e39c1140ac4ec08a71f48e", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32683,10 +37225,10 @@ "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "1898097aa59d410eb1a87d16", + "revision": "fb48bbf245334e7a818dc39b", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32694,10 +37236,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "82f7a39a9e1f4ed79baf3fff", + "revision": "548d99e3db594d139126a1d2", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32711,10 +37253,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "000d6d3109984b7ca1719bbd", + "revision": "0d8f4dfb206147ce94d6756c", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32722,10 +37264,10 @@ "content": { "type": "STRING", "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558382392976304091C", - "revision": "6f2b451c2d2a4370b7b53df2", + "revision": "82e4846e8ab146d5b919f244", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32733,10 +37275,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55838239297/ticket?caller_id=1310149122&hash=39da82e9-af89-4bbc-a0a8-066f192eab65", - "revision": "bfe6e8dce0a5464c89e71d38", + "revision": "c61735609e01491da183ea94", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32744,10 +37286,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIu0lEQVR42u3dTW7jOBAGUN5A97+lbqDZDDoW6ysqQTcG0+LzIkgcS3r0rlB/4/qLXuegpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpf3z2jG/jn/f+/rvdHV57yyXfb1XLjt//ajXTgxaWlpaWlpaWlpaWtpNtNM9j/tv5+cjPu90/jrQkclfT54+/Pm5r8saBi0tLS0tLS0tLS0t7RbazwCyGqeI8dM9wgnOEZOHEz49tzBoaWlpaWlpaWlpaWm31V73OHGUXF0JG8+c8Vsk+47wg5aWlpaWlpaWlpaWljak33IQOFVY3l7TcVO2cPowLS0tLS0tLS0tLS3t3toc3E2PbXJ6092n39IxJtm6+JOWlpaWlpaWlpaWlvb92hXgP/zxGzNVaGlpaWlpaWlpaWlp/2bt+tVGgmV8yRGa3pq7pOmRixctLS0tLS0tLS0tLe3btalo8szZuLbprY1Fy4GmoZNXGT+5zO7R0tLS0tLS0tLS0tK+T5tm6j/dPbXEXd2g/jOcOYWhoxvyT0tLS0tLS0tLS0tLu4E2XTUNKCknaPekjTLXJCf72ludqxpRWlpaWlpaWlpaWlrat2kztIZ5n+9dIQd33asujxJ3tlWXaaH2suqSlpaWlpaWlpaWlpb2VdoU9bUllSmT91Sieeb2t+m55eujpaWlpaWlpaWlpaXdTHtL3U1PLAWXTRSZrki8coJU1ElLS0tLS0tLS0tLS7uVNod0aW5Is3ft+0m8ZuhkOdpBS0tLS0tLS0tLS0u7ibY0vTV5vtQcN929nPm8D5Mc9w9P742Ap6WlpaWlpaWlpaWl3UqbB0IeIQistZFFe+T3phO0OcLnKJKWlpaWlpaWlpaWlvY92qaGcjrB501Sb9sRPOMeaNb3ptC0VGfS0tLS0tLS0tLS0tJuoE2Na/ksI8iubi3A7bLc+dYMrPzOtjVaWlpaWlpaWlpaWtoXadNYkrS6OsWJJdA87inDZnDkYujkEdZy09LS0tLS0tLS0tLSbqFNPWu3dN6iXe0qgDy+5FjmA6dkHy0tLS0tLS0tLS0t7T7amogrhY9XuXtJ0x1dojAFqVeYWtmOKqGlpaWlpaWlpaWlpX279rw3qbVB4Mh9cWVP2qrBrcvfzXd5jnlpaWlpaWlpaWlpaWnfo03kafhjTd2lwswSHabazZFnUE5f0EPMS0tLS0tLS0tLS0tL+yLtoq5yGiNylkiwzQzm406JwpHvV8i0tLS0tLS0tLS0tLTv1qa8XOpZKwP9cyIuds2tKzbLn+dDdo+WlpaWlpaWlpaWlvZV2mk8fwkbU/y3CPia2s0mimy3tz3EvLS0tLS0tLS0tLS0tK/Sptu13XBHni+S487H/F0KTafvkJaWlpaWlpaWlpaWdgttGkFS9lw3dZqLAzVtcmlxW/twWlpaWlpaWlpaWlra92vrOP22jy3XS6Zrj3uHXA0v05dRwktaWlpaWlpaWlpaWtottM09Q1faKLWWTddcaX87yx63Ms2kDVxpaWlpaWlpaWlpaWnfrU2TQUr+Lg30PxepwKlNbkrdlRMciwpQWlpaWlpaWlpaWlrat2uT57vGhecKUWSNO8tz845sWlpaWlpaWlpaWlraN2vLSuozBIaju+co66yn0stcidk8vPyXlpaWlpaWlpaWlpZ2P227vzqvx75CdeZVosN2OOVicslBS0tLS0tLS0tLS0u7jbbWX6bZJCUVOOHTArUzZAaPnFUsv9HS0tLS0tLS0tLS0u6jPe/B4hTXjfycFEW229YW38jZhZIXLS0tLS0tLS0tLS3tNtqU55tix7rn+vMEdcJJW5OZqy5TKElLS0tLS0tLS0tLS7uLdrHi+ui0o1RipiAwDy25ukUCYzQqWlpaWlpaWlpaWlraDbQp6stTSo6S3ZvqKp9ShiPO7R9pzAktLS0tLS0tLS0tLe1O2tGtXLty+WSaM5IGnpQxJ+0Jrhyf0tLS0tLS0tLS0tLSvl/bBIFPy9Ka7rV2eH/SLuJOWlpaWlpaWlpaWlraHbVXmAC5jv+mIswaVE6ll22hZ7kLLS0tLS0tLS0tLS3tLto8cf8H29bSZWkgZBo6WX7Lf9LS0tLS0tLS0tLS0r5ZWx7RLEtLRZgtdFHPmdZj10GUzzWitLS0tLS0tLS0tLS0b9F+3jgttk6JvbRZLY05Sfi2xW4RVNLS0tLS0tLS0tLS0r5ZWwokx73fbUrJXRk63a9sZWtkU4z5kykltLS0tLS0tLS0tLS079EeXQ9cihhHmFKSqjPrzJEUVGYBLS0tLS0tLS0tLS3tjtqpIrJZhZ1KKqcwdP0VlHB1dKNPaGlpaWlpaWlpaWlpd9FOZZZpSGS6XcnQXaFXLqXu0rbsJvikpaWlpaWlpaWlpaXdR5sKLtPgyDR4JGUB04dzreX0FVwP2T1aWlpaWlpaWlpaWtr3aVP3Woosn2sja9buHCN9I2mMf17wRktLS0tLS0tLS0tLu492PK247iK8+kq9clW2DiVpaWlpaWlpaWlpaWn30abXer7/lLDLOb00VvLIZZaLSf+0tLS0tLS0tLS0tLQbaNdBYHrYYuN1GjCZqi6r+yc7CGhpaWlpaWlpaWlpaV+mrag8GvLIib3pLqm4crG97cdRJC0tLS0tLS0tLS0t7Su1ZdLIyLWRadL/elB/bnBrTpBDWFpaWlpaWlpaWlpa2h21t2AxRXipy61kC49ctllSfGc4KS0tLS0tLS0tLS0tLe2yOa48Z3qv3YJ9ddWZtZ2OlpaWlpaWlpaWlpZ2H+0a/xkdpgXYU+6v1mm2fXHf3BdAS0tLS0tLS0tLS0v7bm0tfMxNaquIcdH0Vj+X+uemFjtaWlpaWlpaWlpaWtp9tP//Fy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS3tH9P+A9AQYpnhsXB9AAAAAElFTkSuQmCC", - "revision": "0d0c115ba4ef4d75bfd75eca", + "revision": "74be404e71fd4c118d6fcb11", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32755,10 +37297,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "af32fd57f76547e4b687d519", + "revision": "c9099b68589543d581049d9f", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32773,22 +37315,37 @@ "total_amount": 100.99, "history_id": 1679068275059, "id": 55838239297, - "date_created": "2023-03-17T11:51:15.826-04:00", - "date_last_updated": "2023-03-17T11:52:17.000-04:00", - "date_of_expiration": "2023-03-18T11:51:15.577-04:00", + "date_created": { + "type": 6, + "value": 1679068275826 + }, + "date_last_updated": { + "type": 6, + "value": 1679068337000 + }, + "date_of_expiration": { + "type": 6, + "value": 1679154675577 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "date_approved": "2023-03-17T11:52:17.000-04:00", - "money_release_date": "2023-03-17T11:52:17.000-04:00", + "date_approved": { + "type": 6, + "value": 1679068337000 + }, + "money_release_date": { + "type": 6, + "value": 1679068337000 + }, "wasDebited": true }, - "revision": "cd30982204ca4d7b9ea92a51", + "revision": "1e1a82b32401403985be66c4", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32796,10 +37353,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0413.9580.8163.2810-30", - "revision": "3cffa602dc274a6089ee6aba", + "revision": "7d26ae58e26d47b59c05b36c", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32817,12 +37374,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "7553fd27dba4462fad444e2d", + "revision": "b37e7b571c2c42aa9b415f1e", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32838,9 +37395,18 @@ "original_amount": 581846, "total_amount": 581846, "id": 1679267870429, - "date_created": "2023-03-19T23:17:50.429Z", - "date_last_updated": "2023-03-19T23:17:50.429Z", - "date_of_expiration": "2023-03-19T23:17:50.429Z", + "date_created": { + "type": 6, + "value": 1679267870429 + }, + "date_last_updated": { + "type": 6, + "value": 1679267870429 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267870429 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -32849,10 +37415,10 @@ "history_id": 1679267870429, "description": "Compra de 581846 IVIP por 100 BRL" }, - "revision": "cd6aaeb513334325ae038836", + "revision": "d28754e32e9d4a0f8c732ee2", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32860,12 +37426,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "ca024e6e0a984d85829ec8fe", + "revision": "cc61bc8e3d724cbeb6c2db61", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32880,18 +37446,27 @@ "total_amount": 581846, "history_id": 1686586586983, "id": 1686586586983, - "date_created": "2023-06-12T16:16:26.983Z", - "date_last_updated": "2023-06-12T16:16:26.983Z", - "date_of_expiration": "2023-06-12T16:16:26.983Z", + "date_created": { + "type": 6, + "value": 1686586586983 + }, + "date_last_updated": { + "type": 6, + "value": 1686586586983 + }, + "date_of_expiration": { + "type": 6, + "value": 1686586586983 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "246419bc3f6d41b4865d4f66", + "revision": "f36123f99b6c473b9b32fc71", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32899,10 +37474,10 @@ "content": { "type": "STRING", "value": "Saque de 581.846,00 IVIP para a carteira 0x37E0fCB4d560966a0564DA6CD53002e1ec1eb98B", - "revision": "f020e158e84743d98264a459", + "revision": "9e1d4b6a2f584a949b1857e2", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32910,12 +37485,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "1aec1207f5e547bc82ca48d9", + "revision": "38f098e58607432ab45eff89", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32930,18 +37505,27 @@ "total_amount": 581846, "history_id": 1686586986320, "id": 1686586986320, - "date_created": "2023-06-12T16:23:06.320Z", - "date_last_updated": "2023-06-12T16:23:06.320Z", - "date_of_expiration": "2023-06-12T16:23:06.320Z", + "date_created": { + "type": 6, + "value": 1686586986320 + }, + "date_last_updated": { + "type": 6, + "value": 1686586986320 + }, + "date_of_expiration": { + "type": 6, + "value": 1686586986320 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "a53b0a1a4be9401dbfb66e44", + "revision": "33f66fe91d5c46519446d75b", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32949,10 +37533,10 @@ "content": { "type": "STRING", "value": "Saque de 581.846,00 IVIP para a carteira 0x37E0fCB4d560966a0564DA6CD53002e1ec1eb98B", - "revision": "2b8709e653cc4cef94954a54", + "revision": "b626b75e09444330bfbbbe13", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32968,12 +37552,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "e53b9a98f689431a81a15861", + "revision": "ad1f4c00939f49a6bc6b37e8", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32981,10 +37565,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/041395808163281030/history/1690134068779", - "revision": "4ed940941860472aacc979f0", + "revision": "4e6984b01c7f407eba09368b", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -32999,9 +37583,18 @@ "total_amount": 400954, "id": 1690134068779, "history_id": 1690134068779, - "date_created": "2023-07-23T17:41:08.779Z", - "date_last_updated": "2023-07-23T17:41:08.779Z", - "date_of_expiration": "2023-07-23T17:41:08.779Z", + "date_created": { + "type": 6, + "value": 1690134068779 + }, + "date_last_updated": { + "type": 6, + "value": 1690134068779 + }, + "date_of_expiration": { + "type": 6, + "value": 1690134068779 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -33009,10 +37602,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "f4c0385555944f83bc0b8c98", + "revision": "4ee8d3bb38cd4da2bfdc6c0e", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33020,10 +37613,10 @@ "content": { "type": "STRING", "value": "Saque de 400.954,00 IVIP para a carteira 0x8B2f02C31F9ab77685A7c7546e3768e290DD6394", - "revision": "00adcf4933ee492ebf230380", + "revision": "44e4119179c94f6a8f5fe4aa", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33031,10 +37624,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c721e69d26194a60b61bcdc7", + "revision": "3f6294f14a7c43be8aa21881", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33046,10 +37639,10 @@ "symbol": "IVIP", "value": 73.41 }, - "revision": "2eb6cafecbf34bf1b5160804", + "revision": "a26ffb809afb4d3fb853d8bb", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33057,10 +37650,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "715f09537e7b4e8db1f8a6e7", + "revision": "3f04ac2ca7334002a3609d9d", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33068,10 +37661,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2e748015c8264da6898677f7", + "revision": "ba4d27f0980d429badf96b5f", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33082,10 +37675,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "0d251877fecf4d89b92c0fcf", + "revision": "4f90b4468c60443fbb568d58", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33097,12 +37690,15 @@ "dateValidity": 1679068061044, "currencyType": "USD", "totalValue": 18.88, - "balancesModificacao": "2023-10-11T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696993200000 + } }, - "revision": "6697ee2f561341ecbb35ac66", + "revision": "4569715dea5245658cce2bff", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33110,10 +37706,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2603de45e58b4b5abd12ff75", + "revision": "ca7586960dca4b80bfb78258", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33121,12 +37717,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "40634633ac954c7992339092", + "revision": "9420d6f7da254a32a03c9ad9", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33141,18 +37737,27 @@ "total_amount": 100, "history_id": 1689548630515, "id": 1689548630515, - "date_created": "2023-07-16T23:03:50.515Z", - "date_last_updated": "2023-07-16T23:03:50.515Z", - "date_of_expiration": "2023-08-15T23:03:50.515Z", + "date_created": { + "type": 6, + "value": 1689548630515 + }, + "date_last_updated": { + "type": 6, + "value": 1689548630515 + }, + "date_of_expiration": { + "type": 6, + "value": 1692140630515 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "b246d399dac1448f8cf845d1", + "revision": "389ad1e74b8941668b9504ff", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33160,10 +37765,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0429.6416.2467.3393-60", - "revision": "050eab20b3d141cdb2ff3d87", + "revision": "1c2b95e2f0d14d179f90baf2", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33171,10 +37776,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1626ecea25654a32a62ddfbc", + "revision": "9b9741dec1dd4f18a2b455ee", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33182,10 +37787,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "56ac5a39a55e4ddb893dc9ae", + "revision": "c8f5d46cc0194cd0afe0d59e", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33196,10 +37801,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "846c2160060f4154a29b7e24", + "revision": "c5bb40ce79bd4db0a5d6df36", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33212,10 +37817,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "371a020b2f1f41c8bc8c457c", + "revision": "9db2b1d65dd148ad8fb0489f", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33227,10 +37832,10 @@ "symbol": "IVIP", "value": 13.81 }, - "revision": "ad3d1467f9d0449f97c4b1db", + "revision": "a5b7694f294a4f49aebf7536", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33238,10 +37843,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "cc8e766c5de24c6ca3a4838e", + "revision": "e47f64925cf846f7963c0e64", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33250,12 +37855,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-01T03:44:50.801Z" + ".val": { + "type": 6, + "value": 1698810290801 + } }, - "revision": "d52a950a27394f05ad7364d7", + "revision": "2001b2199a3e41039c18322d", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33271,12 +37879,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "0e9f0031513249679008aab1", + "revision": "8313d21260304194badc4097", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33284,10 +37892,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696218290801", - "revision": "aa5230f2694849f1ad7dbd39", + "revision": "a481dac898274468a27e2ec9", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33303,8 +37911,14 @@ "total_amount": 150, "id": "1696218290801", "history_id": "1696218290801", - "date_created": "2023-10-02T03:44:50.801Z", - "date_last_updated": "2023-10-02T03:44:50.801Z", + "date_created": { + "type": 6, + "value": 1696218290801 + }, + "date_last_updated": { + "type": 6, + "value": 1696218290801 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -33312,10 +37926,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "453fa56598d84dee924981cd", + "revision": "460f46a68fc7461f809dd303", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33323,10 +37937,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 150,00 BRL para a carteira iVip 0441.0726.0739.8660-40", - "revision": "194de415f27a4a679853546f", + "revision": "dfe857721460451c86c97744", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33335,12 +37949,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-04T13:24:49.783Z" + ".val": { + "type": 6, + "value": 1699104289783 + } }, - "revision": "16255a9440374a2caa333c3e", + "revision": "8aa39f1a95914964850bab0b", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33356,12 +37973,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "9511f5d23ce842bbbca83fea", + "revision": "e23b7fa9bd9246f790639c02", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33369,10 +37986,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696512289784", - "revision": "2c9a9de1e7bd4a0ab8dce8b7", + "revision": "8952372d611e4ff384c02eab", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33388,8 +38005,14 @@ "total_amount": 100, "id": "1696512289784", "history_id": "1696512289784", - "date_created": "2023-10-05T13:24:49.784Z", - "date_last_updated": "2023-10-05T13:24:49.784Z", + "date_created": { + "type": 6, + "value": 1696512289784 + }, + "date_last_updated": { + "type": 6, + "value": 1696512289784 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -33397,10 +38020,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "ed30db1ee1ee4260bf3bc3af", + "revision": "e11d52e27d074286b710ef34", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33408,10 +38031,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0441.0726.0739.8660-40", - "revision": "6b36abf7eb3d4fc6aca3500c", + "revision": "79fe6f86428a4be192d942e9", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33420,12 +38043,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-06T13:24:29.126Z" + ".val": { + "type": 6, + "value": 1699277069126 + } }, - "revision": "1e9d1b00777e4c259461b2a5", + "revision": "2613a3b7d5e7404db555300b", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33441,12 +38067,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "03aa7454f15f4232b700f8fc", + "revision": "63bf4dc4fd7d46bb89ab9082", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33454,10 +38080,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696685069127", - "revision": "7c238a8fdcf94e9dbc53b9df", + "revision": "45dd58eb6eb24c1b8db3f2b8", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33473,23 +38099,35 @@ "total_amount": 100, "id": "1696685069127", "history_id": "1696685069127", - "date_created": "2023-10-07T13:24:29.127Z", - "date_last_updated": "2023-10-07T14:40:38.574Z", + "date_created": { + "type": 6, + "value": 1696685069127 + }, + "date_last_updated": { + "type": 6, + "value": 1696689638574 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-10-07T14:40:38.574Z", - "money_release_date": "2023-10-07T14:40:38.574Z", + "date_approved": { + "type": 6, + "value": 1696689638574 + }, + "money_release_date": { + "type": 6, + "value": 1696689638574 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "eb4b6fd6b0f74fdf9c7a7aa5", + "revision": "ddb4e54715c741ed8b009fc3", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33497,10 +38135,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0441.0726.0739.8660-40", - "revision": "07f57ef44a9b42b9bcdba0a0", + "revision": "8e96986c37544a4396d48599", "revision_nr": 1, - "created": 1701463509550, - "modified": 1701463509550 + "created": 1701465820523, + "modified": 1701465820523 } }, { @@ -33516,12 +38154,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "ba408a2af1a8466092e10423", + "revision": "6cdefe5e9f3b4d78986bc220", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33529,10 +38167,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696690479419", - "revision": "79ed46096a1c42888d8c5486", + "revision": "90b6a5838dfc45a6bb6e4eb2", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33548,9 +38186,18 @@ "total_amount": 127146, "id": "1696690479419", "history_id": "1696690479419", - "date_created": "2023-10-07T14:54:39.419Z", - "date_last_updated": "2023-10-07T14:54:39.419Z", - "date_of_expiration": "2023-10-07T14:54:39.419Z", + "date_created": { + "type": 6, + "value": 1696690479419 + }, + "date_last_updated": { + "type": 6, + "value": 1696690479419 + }, + "date_of_expiration": { + "type": 6, + "value": 1696690479419 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -33559,10 +38206,10 @@ "description": "Compra de 127.146,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "109a7435f22e4f1c9945c6a4", + "revision": "8121b77230da4e2ab86321d0", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33570,10 +38217,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "96fdd29c66204645a87de200", + "revision": "90fa2bc5a29b4b2e97e276e2", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33581,10 +38228,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2d96ec354d8d44f7958029b6", + "revision": "a29c4c35840e4457913c3a9d", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33595,10 +38242,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "011f1f0ae6204f2d943e3564", + "revision": "119d6cc6702c4221b5ed4523", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33609,12 +38256,15 @@ "dataModificacao": 1696161500774, "dateValidity": 1696161500803, "currencyType": "USD", - "balancesModificacao": "2023-10-11T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696993200000 + } }, - "revision": "692931c2bc46476fba07b6be", + "revision": "c605c73557b645c086371fdb", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33622,10 +38272,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4f9160f53c1f4290ad075e26", + "revision": "af389d031a6847cab522b8c7", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33633,12 +38283,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "5c67326b294a4b6fbe594975", + "revision": "d2960e6b6cca4cf9869f3cff", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33653,18 +38303,27 @@ "total_amount": 20, "history_id": 1678092684774, "id": 1678092684774, - "date_created": "2023-03-06T08:51:24.774Z", - "date_last_updated": "2023-03-06T08:51:24.774Z", - "date_of_expiration": "2023-04-05T08:51:24.774Z", + "date_created": { + "type": 6, + "value": 1678092684774 + }, + "date_last_updated": { + "type": 6, + "value": 1678092684774 + }, + "date_of_expiration": { + "type": 6, + "value": 1680684684774 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "5485f42d23414c69ba476fdf", + "revision": "1a7171bbce854def9bf2153c", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33672,10 +38331,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0443.9842.9081.9756-60", - "revision": "e68601956c2d4de6bdd4b64b", + "revision": "95383276bfa44faba626b0fe", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33683,10 +38342,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c8a8b7a3c5464ae28bcd0432", + "revision": "b18ac2480363479996416b61", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33699,10 +38358,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "1fc32c3d4cb94ed7b6ac5eaa", + "revision": "ed7a7219cc5b46a5a4b1a848", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33714,10 +38373,10 @@ "symbol": "IVIP", "value": 0.094 }, - "revision": "bd314487ec2040fd84055f91", + "revision": "b1e54d14f7c34d19b0a0191c", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33725,10 +38384,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c0f1493a8b5e413cb88ddb47", + "revision": "cc1af0ce7051418684f9c637", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33736,12 +38395,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "7f648b54ff524fbd9c6c6cc0", + "revision": "449e68a583d94c5b94b43e95", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33756,22 +38415,37 @@ "total_amount": 1500, "history_id": 1678363004367, "id": 1678363004367, - "date_created": "2023-03-09T11:56:44.367Z", - "date_last_updated": "2023-03-09T11:57:54.662Z", - "date_of_expiration": "2023-04-08T11:56:44.367Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-09T11:57:54.662Z", - "money_release_date": "2023-03-09T11:57:54.662Z", + "date_created": { + "type": 6, + "value": 1678363004367 + }, + "date_last_updated": { + "type": 6, + "value": 1678363074662 + }, + "date_of_expiration": { + "type": 6, + "value": 1680955004367 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678363074662 + }, + "money_release_date": { + "type": 6, + "value": 1678363074662 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "b75f7b8cd5a040e18a212ca4", + "revision": "21d0c7ae9c744e178426c3c1", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33779,10 +38453,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0451.2281.2371.7113-40", - "revision": "1b5eb310aed3441b92e1bca7", + "revision": "8831c0783316416286f1e49e", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33790,12 +38464,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "ac95cf4201dd489c9cf8189c", + "revision": "97bf660396784a98900891e4", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33810,22 +38484,37 @@ "total_amount": 150, "history_id": 1678578646817, "id": 1678578646817, - "date_created": "2023-03-11T23:50:46.817Z", - "date_last_updated": "2023-03-11T23:52:26.705Z", - "date_of_expiration": "2023-04-10T23:50:46.817Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-11T23:52:26.705Z", - "money_release_date": "2023-03-11T23:52:26.705Z", + "date_created": { + "type": 6, + "value": 1678578646817 + }, + "date_last_updated": { + "type": 6, + "value": 1678578746705 + }, + "date_of_expiration": { + "type": 6, + "value": 1681170646817 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678578746705 + }, + "money_release_date": { + "type": 6, + "value": 1678578746705 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "fefc5354bb23424d89989b59", + "revision": "5e1e69f44ed04a448e7f195f", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33833,10 +38522,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0451.2281.2371.7113-40", - "revision": "ab1b7504ac024db7b4932305", + "revision": "fdd0a5f75cf948f08a0c5462", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33854,12 +38543,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "9a8c79ad279a4feca5d46b76", + "revision": "a85ea829b64547b8b6f40bca", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33875,9 +38564,18 @@ "original_amount": 9610615, "total_amount": 9610615, "id": 1679266969508, - "date_created": "2023-03-19T23:02:49.508Z", - "date_last_updated": "2023-03-19T23:02:49.508Z", - "date_of_expiration": "2023-03-19T23:02:49.508Z", + "date_created": { + "type": 6, + "value": 1679266969508 + }, + "date_last_updated": { + "type": 6, + "value": 1679266969508 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266969508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33886,10 +38584,10 @@ "history_id": 1679266969508, "description": "Compra de 9610615 IVIP por 1650 BRL" }, - "revision": "43cd9c2b384f4d6dac0baa03", + "revision": "768fa681ca1c4cd19e1e0b66", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33907,12 +38605,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "0e92c60054514c8db2a0938c", + "revision": "c129c214a6994298a8d098e7", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33928,9 +38626,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1681517575873, - "date_created": "2023-04-15T00:12:55.873Z", - "date_last_updated": "2023-04-15T00:12:55.873Z", - "date_of_expiration": "2023-04-15T00:12:55.873Z", + "date_created": { + "type": 6, + "value": 1681517575873 + }, + "date_last_updated": { + "type": 6, + "value": 1681517575873 + }, + "date_of_expiration": { + "type": 6, + "value": 1681517575873 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -33938,10 +38645,10 @@ "currency_id": "IVIPAY", "history_id": 1681517575873 }, - "revision": "4fe79aefdd1d4fea886881d1", + "revision": "44ecf7ff42ba42fc94d18330", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33949,10 +38656,10 @@ "content": { "type": "STRING", "value": "Compra de 1.000,00 IVIPAY por 100,00 IVIP estabilizando US$ 0,00", - "revision": "011dc11565ed4a41b67fc7e2", + "revision": "fd4be7f2c5a74ec4bf387c0c", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33970,12 +38677,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "1448a6ace95b400cb3ea9d88", + "revision": "046a294edff74d6c91d7fa1e", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -33991,9 +38698,18 @@ "original_amount": 100, "total_amount": 100, "id": 1685393623279, - "date_created": "2023-05-29T20:53:43.279Z", - "date_last_updated": "2023-05-29T20:53:43.279Z", - "date_of_expiration": "2023-05-29T20:53:43.279Z", + "date_created": { + "type": 6, + "value": 1685393623279 + }, + "date_last_updated": { + "type": 6, + "value": 1685393623279 + }, + "date_of_expiration": { + "type": 6, + "value": 1685393623279 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34002,10 +38718,10 @@ "history_id": 1685393623279, "description": "Compra de 100,00 IVIP por 1.000,00 IVIPAY" }, - "revision": "6ec6c87bdaa94b3eb874e20a", + "revision": "cc8173458dd14c019261c6c4", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34023,12 +38739,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "5cfd2e33a6444536b370d384", + "revision": "68ac646c5a084308ac01ce3a", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34043,9 +38759,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685666780649, - "date_created": "2023-06-02T00:46:20.649Z", - "date_last_updated": "2023-06-02T00:46:20.649Z", - "date_of_expiration": "2023-07-02T00:46:20.649Z", + "date_created": { + "type": 6, + "value": 1685666780649 + }, + "date_last_updated": { + "type": 6, + "value": 1685666780649 + }, + "date_of_expiration": { + "type": 6, + "value": 1688258780649 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34053,10 +38778,10 @@ "currency_id": "IVIP", "history_id": 1685666780649 }, - "revision": "9bca46a4f3ca4a2c90d2c73e", + "revision": "0b25e8e4477f4b668df8baa3", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34064,10 +38789,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "84a1ed4951eb4cc1ad8f10ef", + "revision": "091ec72fa47641429d08a8d9", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34085,12 +38810,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "fb0a543294a54f3ea9e98802", + "revision": "8f2148304b074c84989747b1", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34105,9 +38830,18 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1688400356570, - "date_created": "2023-07-03T16:05:56.570Z", - "date_last_updated": "2023-07-03T16:05:56.570Z", - "date_of_expiration": "2023-07-03T16:05:56.570Z", + "date_created": { + "type": 6, + "value": 1688400356570 + }, + "date_last_updated": { + "type": 6, + "value": 1688400356570 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400356570 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34116,10 +38850,10 @@ "history_id": 1688400356570, "wasDebited": true }, - "revision": "69b57f7e351f43e689962b18", + "revision": "80cbef6b68f84912b56ace49", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34127,10 +38861,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "79771aec157c4ebd9b0039dd", + "revision": "309315b606df482e9cf0a2b0", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34138,12 +38872,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "56768263a65342039de3f77f", + "revision": "9d43256129bc4dd4b2ef57d2", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34158,22 +38892,37 @@ "total_amount": 9770000, "history_id": 1688402757097, "id": 1688402757097, - "date_created": "2023-07-03T16:45:57.097Z", - "date_last_updated": "2023-07-04T20:33:31.967Z", - "date_of_expiration": "2023-07-03T16:45:57.097Z", + "date_created": { + "type": 6, + "value": 1688402757097 + }, + "date_last_updated": { + "type": 6, + "value": 1688502811967 + }, + "date_of_expiration": { + "type": 6, + "value": 1688402757097 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-07-04T20:33:31.967Z", - "money_release_date": "2023-07-04T20:33:31.967Z", + "date_approved": { + "type": 6, + "value": 1688502811967 + }, + "money_release_date": { + "type": 6, + "value": 1688502811967 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "ea1a58542aa74d47a5dc2667", + "revision": "045ea29308144320ade4eac0", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34181,10 +38930,10 @@ "content": { "type": "STRING", "value": "Saque de 9.770.000,00 IVIP para a carteira 0xB33c611edEE4ac91638b50464CB3bfd488551499", - "revision": "9d87675b811f4493983708f8", + "revision": "49f6c1ad558a4dbf9a1a43cb", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34192,10 +38941,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "16b11a39a47046eb9f7f35dc", + "revision": "63c832a6027d483598023f8d", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34203,10 +38952,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "917eb939fb994a19bc678816", + "revision": "8318438583b344a1baa372ea", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34216,13 +38965,19 @@ "value": { "approvedLimit": 3000, "limitUsed": 0, - "analysisRequested": "2023-04-04T17:16:15.345Z", - "lastReview": "2023-04-08T18:26:11.033Z" + "analysisRequested": { + "type": 6, + "value": 1680628575345 + }, + "lastReview": { + "type": 6, + "value": 1680978371033 + } }, - "revision": "75105fa24d124beb95bc61a3", + "revision": "562a294b657d47ec8b14abcc", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34234,12 +38989,15 @@ "dateValidity": 1678662517584, "totalValue": 0.17, "currencyType": "BRL", - "balancesModificacao": "2023-10-06T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } }, - "revision": "f1d1703bcad14f9c845e9fa5", + "revision": "389de308ae194aadb46887a0", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34251,10 +39009,10 @@ "symbol": "IVIP", "value": 4296.45 }, - "revision": "a29f4dda9c4e4f2383b47d9c", + "revision": "1211ced6a39c4d088a8eb2e4", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34262,10 +39020,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4c52f4be397d43c797926350", + "revision": "309ca7a373ce4dc69b37c7cb", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34273,12 +39031,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "6036613e2f9143f48cbfbb54", + "revision": "00d75eff754a4c858ee6f654", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34293,22 +39051,37 @@ "total_amount": 4000, "history_id": 1678148520442, "id": 1678148520442, - "date_created": "2023-03-07T00:22:00.442Z", - "date_last_updated": "2023-03-07T16:04:13.026Z", - "date_of_expiration": "2023-04-06T00:22:00.442Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-07T16:04:13.026Z", - "money_release_date": "2023-03-07T16:04:13.026Z", + "date_created": { + "type": 6, + "value": 1678148520442 + }, + "date_last_updated": { + "type": 6, + "value": 1678205053026 + }, + "date_of_expiration": { + "type": 6, + "value": 1680740520442 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678205053026 + }, + "money_release_date": { + "type": 6, + "value": 1678205053026 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "079e5f6a523a479587c1a978", + "revision": "5bce96e1f7ce4250805e00c9", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34316,10 +39089,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", - "revision": "1dc22493dd2f48d1839c3ee4", + "revision": "e1d57813b904480c8e61705e", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34337,12 +39110,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "c3bab304cfbf408c8ffd3d0c", + "revision": "eddc2c58133a408b810ad64b", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34358,9 +39131,18 @@ "original_amount": 28376575, "total_amount": 28376575, "id": 1678207899775, - "date_created": "2023-03-07T16:51:39.775Z", - "date_last_updated": "2023-03-07T16:51:39.775Z", - "date_of_expiration": "2023-03-07T16:51:39.775Z", + "date_created": { + "type": 6, + "value": 1678207899775 + }, + "date_last_updated": { + "type": 6, + "value": 1678207899775 + }, + "date_of_expiration": { + "type": 6, + "value": 1678207899775 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34369,10 +39151,10 @@ "history_id": 1678207899775, "description": "Compra de 28376575 IVIP por 4000 BRL" }, - "revision": "a469aa7a9557457594f28661", + "revision": "5c9f48e12f074d4497818c0e", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34380,12 +39162,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "5e664a32023948d5b416c2ae", + "revision": "90f478cae5d64db0a631455a", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34400,22 +39182,37 @@ "total_amount": 4000, "history_id": 1689022785271, "id": 1689022785271, - "date_created": "2023-07-10T20:59:45.271Z", - "date_last_updated": "2023-07-10T21:11:29.899Z", - "date_of_expiration": "2023-08-09T20:59:45.271Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-10T21:11:29.899Z", - "money_release_date": "2023-07-10T21:11:29.899Z", + "date_created": { + "type": 6, + "value": 1689022785271 + }, + "date_last_updated": { + "type": 6, + "value": 1689023489899 + }, + "date_of_expiration": { + "type": 6, + "value": 1691614785271 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689023489899 + }, + "money_release_date": { + "type": 6, + "value": 1689023489899 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "a62f79bd7086439f8443d554", + "revision": "dbf9fe120d0f412c8d9404b6", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34423,10 +39220,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", - "revision": "40755f1ee0554787889ef77b", + "revision": "d269d9cdf3734e829039b323", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34434,12 +39231,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "bd8c964603cc40f59350f67a", + "revision": "27081702fba4418e91182e3c", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34454,18 +39251,27 @@ "total_amount": 4000, "history_id": 1689022932520, "id": 1689022932520, - "date_created": "2023-07-10T21:02:12.520Z", - "date_last_updated": "2023-07-10T21:02:12.520Z", - "date_of_expiration": "2023-08-09T21:02:12.520Z", + "date_created": { + "type": 6, + "value": 1689022932520 + }, + "date_last_updated": { + "type": 6, + "value": 1689022932520 + }, + "date_of_expiration": { + "type": 6, + "value": 1691614932520 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "7d4fc37f86974d5bae1dbebc", + "revision": "a2324d4f02be43aeb017c18f", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34473,10 +39279,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", - "revision": "bca196e9eae94bb7abc86b5b", + "revision": "b24bbd15b4f8438ea995fd9f", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34494,12 +39300,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "552452f0ba474d889b31c627", + "revision": "f12650092aad41ea8c46fc8f", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34515,9 +39321,18 @@ "original_amount": 3621314, "total_amount": 3621314, "id": 1689025604196, - "date_created": "2023-07-10T21:46:44.196Z", - "date_last_updated": "2023-07-10T21:46:44.196Z", - "date_of_expiration": "2023-07-10T21:46:44.196Z", + "date_created": { + "type": 6, + "value": 1689025604196 + }, + "date_last_updated": { + "type": 6, + "value": 1689025604196 + }, + "date_of_expiration": { + "type": 6, + "value": 1689025604196 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34526,10 +39341,10 @@ "history_id": 1689025604196, "description": "Compra de 3.621.314,00 IVIP por 4.000,00 BRL" }, - "revision": "8c4a4747b5854c43974fee0e", + "revision": "f9e8ad4b7be04bc49ea87ba6", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34537,12 +39352,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "22f7c191822044d4abe94eb6", + "revision": "83837c347030405a9c270435", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34557,22 +39372,37 @@ "total_amount": 2000, "history_id": 1689196978297, "id": 1689196978297, - "date_created": "2023-07-12T21:22:58.297Z", - "date_last_updated": "2023-07-13T14:12:53.443Z", - "date_of_expiration": "2023-08-11T21:22:58.297Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-13T14:12:53.443Z", - "money_release_date": "2023-07-13T14:12:53.443Z", + "date_created": { + "type": 6, + "value": 1689196978297 + }, + "date_last_updated": { + "type": 6, + "value": 1689257573443 + }, + "date_of_expiration": { + "type": 6, + "value": 1691788978297 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689257573443 + }, + "money_release_date": { + "type": 6, + "value": 1689257573443 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "cc2a83fe599d4698a5a79189", + "revision": "05510fda32364d4297f386bd", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34580,10 +39410,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0454.0726.5934.5405-84", - "revision": "f7050fbc94b1487f87c6dc5d", + "revision": "d6ca94a30d57452fa247196a", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34601,12 +39431,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "e58f129da12341ccae67abf3", + "revision": "1c7ed0815502443a8b6bf7b9", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34622,9 +39452,18 @@ "original_amount": 773420, "total_amount": 773420, "id": 1689258784601, - "date_created": "2023-07-13T14:33:04.601Z", - "date_last_updated": "2023-07-13T14:33:04.601Z", - "date_of_expiration": "2023-07-13T14:33:04.601Z", + "date_created": { + "type": 6, + "value": 1689258784601 + }, + "date_last_updated": { + "type": 6, + "value": 1689258784601 + }, + "date_of_expiration": { + "type": 6, + "value": 1689258784601 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34633,10 +39472,10 @@ "history_id": 1689258784601, "description": "Compra de 773.420,00 IVIP por 2.000,00 BRL" }, - "revision": "f7a05f35ec1a48feb188abde", + "revision": "fe4e138f1bfa42b4bc21d912", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34644,10 +39483,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9a3563c22f8941ff8544dc01", + "revision": "4087c476a69948de99e6de3d", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34655,10 +39494,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "87b6bbde49cc48128532cabb", + "revision": "736bba28131242d180d82320", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34669,10 +39508,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "b67542fbe6e54df098bfdcf6", + "revision": "93d1a75bfa8b4995b1e11399", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34684,12 +39523,15 @@ "dateValidity": 1678671560774, "totalValue": 7620.23, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } }, - "revision": "c0e91cd8b1ae4380800c6dc8", + "revision": "98c863c898f44c5c94bb2408", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34697,10 +39539,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "02f68125b1fe4a568df52672", + "revision": "13dcf89921f440799255101d", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34708,10 +39550,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7a2e491f826f46d7b4b2fbd4", + "revision": "a79d3bca65264a5ca01bb134", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34724,10 +39566,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "ef21e0904e524c1e96cf8c9d", + "revision": "195bc7e2de7c4f09aa37dd55", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34735,10 +39577,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d1390c6ae3c24056b0f2a21c", + "revision": "3c3d1610a3d0468492cca140", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820524, + "modified": 1701465820524 } }, { @@ -34746,10 +39588,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d5f40949116d4232ad04a551", + "revision": "ceea7429a25e4bd983c8f92f", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -34757,10 +39599,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6334f56820984b7e95d46d76", + "revision": "b94d4433723c43c29be5c052", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -34771,10 +39613,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "0d459352182345c6be2a3406", + "revision": "f143e8c36f584f2091ddeaa2", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -34785,12 +39627,15 @@ "dataModificacao": 1696462399261, "dateValidity": 1696462399357, "currencyType": "USD", - "balancesModificacao": "2023-10-13T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697166000000 + } }, - "revision": "614f845bf207427a9361ddd9", + "revision": "c873f129d2274bdb8437fff9", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -34798,10 +39643,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7e21fdcb38644b25880bb09b", + "revision": "ca344a3183e34f6b855fb794", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -34809,10 +39654,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9b8af5562a414498a9af2d29", + "revision": "02cf604032e34c7ea5992339", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -34823,12 +39668,15 @@ "dataModificacao": 1692582136079, "dateValidity": 1692582136128, "currencyType": "USD", - "balancesModificacao": "2023-08-20T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1692500400000 + } }, - "revision": "eeb221e710e045edb9672fcb", + "revision": "9e0ef5112e5d49b19325d10f", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -34840,10 +39688,10 @@ "symbol": "IVIP", "value": 4678.3 }, - "revision": "4c6443d34ed64b4d98d1e2dc", + "revision": "52cd3ea2499841c8ad03ccfe", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -34851,10 +39699,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ef62c90de21b43dcb9271d06", + "revision": "37c916d11ab04883b61e8e3b", "revision_nr": 1, - "created": 1701463509551, - "modified": 1701463509551 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -34862,12 +39710,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "8fd4cae63b39440c87888605", + "revision": "77c373730a684e3c973d366d", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -34882,22 +39730,37 @@ "total_amount": 5000, "history_id": 1683569771704, "id": 1683569771704, - "date_created": "2023-05-08T18:16:11.704Z", - "date_last_updated": "2023-05-08T18:34:33.225Z", - "date_of_expiration": "2023-06-07T18:16:11.704Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-08T18:34:33.225Z", - "money_release_date": "2023-05-08T18:34:33.225Z", + "date_created": { + "type": 6, + "value": 1683569771704 + }, + "date_last_updated": { + "type": 6, + "value": 1683570873225 + }, + "date_of_expiration": { + "type": 6, + "value": 1686161771704 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683570873225 + }, + "money_release_date": { + "type": 6, + "value": 1683570873225 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "fb40a7ae64ab4991af9c84ff", + "revision": "f0a0565c94414a848221fb17", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -34905,10 +39768,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 5.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "18aa499886b940c29c848b53", + "revision": "75a56179397d4b0b82befda8", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -34926,12 +39789,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "05bcb9bac95644f68f012a25", + "revision": "76093f24f4dd46739cd294ae", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -34947,9 +39810,18 @@ "original_amount": 27021960, "total_amount": 27021960, "id": 1684018936403, - "date_created": "2023-05-13T23:02:16.403Z", - "date_last_updated": "2023-05-13T23:02:16.403Z", - "date_of_expiration": "2023-05-13T23:02:16.403Z", + "date_created": { + "type": 6, + "value": 1684018936403 + }, + "date_last_updated": { + "type": 6, + "value": 1684018936403 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018936403 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -34958,10 +39830,10 @@ "history_id": 1684018936403, "description": "Compra de 27.021.960,00 IVIP por 5.000,00 BRL" }, - "revision": "8faf819aec4140e58a24462b", + "revision": "24a0ae67569c4a3aa85c4ba5", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -34979,12 +39851,12 @@ "installment_amount": 7668365, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "515347bd12ea490c957d16e2", + "revision": "e3ea742a65134b53ae1b24d7", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -34999,9 +39871,18 @@ "original_amount": 7668365, "total_amount": 7668365, "id": 1688531798249, - "date_created": "2023-07-05T04:36:38.249Z", - "date_last_updated": "2023-07-05T04:36:38.249Z", - "date_of_expiration": "2023-08-05T04:36:38.249Z", + "date_created": { + "type": 6, + "value": 1688531798249 + }, + "date_last_updated": { + "type": 6, + "value": 1688531798249 + }, + "date_of_expiration": { + "type": 6, + "value": 1691210198249 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35010,10 +39891,10 @@ "history_id": 1688531798249, "wasDebited": true }, - "revision": "4c73bf43252b4bf3b29afa38", + "revision": "ac3d81477dd443a2a60f99af", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35021,10 +39902,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.668.365,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", - "revision": "801e68b143aa4abe9f60f3be", + "revision": "178ac829d2e64cbabe5ce047", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35032,12 +39913,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "8b462620a7c94eb68c7c0cad", + "revision": "5e543bb1733d4c43997aec4b", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35052,22 +39933,37 @@ "total_amount": 500, "history_id": 1688647483933, "id": 1688647483933, - "date_created": "2023-07-06T12:44:43.933Z", - "date_last_updated": "2023-07-07T22:01:16.048Z", - "date_of_expiration": "2023-08-05T12:44:43.933Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-07T22:01:16.048Z", - "money_release_date": "2023-07-07T22:01:16.048Z", + "date_created": { + "type": 6, + "value": 1688647483933 + }, + "date_last_updated": { + "type": 6, + "value": 1688767276048 + }, + "date_of_expiration": { + "type": 6, + "value": 1691239483933 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1688767276048 + }, + "money_release_date": { + "type": 6, + "value": 1688767276048 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "d8bfca25b0cf4ede91b92f7f", + "revision": "70281bddbd1240be88d3d9fa", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35075,10 +39971,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "52cfa4063601420bbc2851d9", + "revision": "fa5eed69ccdb4b5d82c2bd53", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35096,12 +39992,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "376cc808f8674f2d988609d0", + "revision": "0839f604a5ce4263a3801354", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35117,9 +40013,18 @@ "original_amount": 823634, "total_amount": 823634, "id": 1688771723408, - "date_created": "2023-07-07T23:15:23.408Z", - "date_last_updated": "2023-07-07T23:15:23.408Z", - "date_of_expiration": "2023-07-07T23:15:23.408Z", + "date_created": { + "type": 6, + "value": 1688771723408 + }, + "date_last_updated": { + "type": 6, + "value": 1688771723408 + }, + "date_of_expiration": { + "type": 6, + "value": 1688771723408 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35128,10 +40033,10 @@ "history_id": 1688771723408, "description": "Compra de 823.634,00 IVIP por 500,00 BRL" }, - "revision": "b4823042859640c6a6c54d9d", + "revision": "f1a23aef1bb94835a5946796", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35139,12 +40044,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "f8546d1fe2df4a238b82f7e6", + "revision": "34f9d0c3867e4967a7965eea", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35159,22 +40064,37 @@ "total_amount": 1000, "history_id": 1689021558105, "id": 1689021558105, - "date_created": "2023-07-10T20:39:18.105Z", - "date_last_updated": "2023-07-10T21:07:02.567Z", - "date_of_expiration": "2023-08-09T20:39:18.105Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-10T21:07:02.567Z", - "money_release_date": "2023-07-10T21:07:02.567Z", + "date_created": { + "type": 6, + "value": 1689021558105 + }, + "date_last_updated": { + "type": 6, + "value": 1689023222567 + }, + "date_of_expiration": { + "type": 6, + "value": 1691613558105 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689023222567 + }, + "money_release_date": { + "type": 6, + "value": 1689023222567 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "882241245b3c4ff58f9d5792", + "revision": "9a1e40ccdb0e4f349593e340", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35182,10 +40102,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "55194f803938434ba48394a7", + "revision": "367827951afa4a23b2bf2490", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35203,12 +40123,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "17ee10b439954d80a418dec1", + "revision": "8a4e6bfcf6dc4e3faf0ed2e3", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35224,9 +40144,18 @@ "original_amount": 914949, "total_amount": 914949, "id": 1689023394597, - "date_created": "2023-07-10T21:09:54.597Z", - "date_last_updated": "2023-07-10T21:09:54.597Z", - "date_of_expiration": "2023-07-10T21:09:54.597Z", + "date_created": { + "type": 6, + "value": 1689023394597 + }, + "date_last_updated": { + "type": 6, + "value": 1689023394597 + }, + "date_of_expiration": { + "type": 6, + "value": 1689023394597 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35235,10 +40164,10 @@ "history_id": 1689023394597, "description": "Compra de 914.949,00 IVIP por 1.000,00 BRL" }, - "revision": "36ba22077c1746c585e48e84", + "revision": "b0a37b016bd2465c8a37e0b4", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35246,12 +40175,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "ae0a886ba5f74787ac0d70f3", + "revision": "df0d71eb7c51498c99f88a61", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35266,22 +40195,37 @@ "total_amount": 1000, "history_id": 1689248290301, "id": 1689248290301, - "date_created": "2023-07-13T11:38:10.301Z", - "date_last_updated": "2023-07-13T13:59:27.203Z", - "date_of_expiration": "2023-08-12T11:38:10.301Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-13T13:59:27.203Z", - "money_release_date": "2023-07-13T13:59:27.203Z", + "date_created": { + "type": 6, + "value": 1689248290301 + }, + "date_last_updated": { + "type": 6, + "value": 1689256767203 + }, + "date_of_expiration": { + "type": 6, + "value": 1691840290301 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689256767203 + }, + "money_release_date": { + "type": 6, + "value": 1689256767203 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "84bbfeb0f2f54be0afcb9894", + "revision": "1400e5a33aa24768aec7779d", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35289,10 +40233,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "b33b1cf02aff41b3bad77876", + "revision": "874ee1f1bb824e38968b0793", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35310,12 +40254,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "166e7c693e114ec08139cb6d", + "revision": "f4eb03e84cc144ab8df86dec", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35331,9 +40275,18 @@ "original_amount": 381522, "total_amount": 381522, "id": 1689260053657, - "date_created": "2023-07-13T14:54:13.657Z", - "date_last_updated": "2023-07-13T14:54:13.657Z", - "date_of_expiration": "2023-07-13T14:54:13.657Z", + "date_created": { + "type": 6, + "value": 1689260053657 + }, + "date_last_updated": { + "type": 6, + "value": 1689260053657 + }, + "date_of_expiration": { + "type": 6, + "value": 1689260053657 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35342,10 +40295,10 @@ "history_id": 1689260053657, "description": "Compra de 381.522,00 IVIP por 1.000,00 BRL" }, - "revision": "478cff90266d497aac807c98", + "revision": "cd9374b130094811bef47971", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35363,12 +40316,12 @@ "installment_amount": 5008550, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b0c393795ed24a4c99964cb5", + "revision": "a13ed68381bb4704b189b253", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35383,9 +40336,18 @@ "original_amount": 5008550, "total_amount": 5008550, "id": 1689301547038, - "date_created": "2023-07-14T02:25:47.038Z", - "date_last_updated": "2023-07-14T02:25:47.038Z", - "date_of_expiration": "2025-07-14T02:25:47.038Z", + "date_created": { + "type": 6, + "value": 1689301547038 + }, + "date_last_updated": { + "type": 6, + "value": 1689301547038 + }, + "date_of_expiration": { + "type": 6, + "value": 1752459947038 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35393,10 +40355,10 @@ "currency_id": "IVIP", "history_id": 1689301547038 }, - "revision": "a87c9ab19d9a4875b7ebd066", + "revision": "1f42549a1bc34fde89289bf2", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35404,10 +40366,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.008.550,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/13/2025", - "revision": "4d882adb1a264d34ac43b716", + "revision": "17814be79e1947c49090af99", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35415,12 +40377,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "5d4fa060a9e8452cb462c1f2", + "revision": "822b77334faf4467b78c19e2", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35435,22 +40397,37 @@ "total_amount": 2000, "history_id": 1689355287691, "id": 1689355287691, - "date_created": "2023-07-14T17:21:27.691Z", - "date_last_updated": "2023-07-14T17:35:36.387Z", - "date_of_expiration": "2023-08-13T17:21:27.691Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-14T17:35:36.387Z", - "money_release_date": "2023-07-14T17:35:36.387Z", + "date_created": { + "type": 6, + "value": 1689355287691 + }, + "date_last_updated": { + "type": 6, + "value": 1689356136387 + }, + "date_of_expiration": { + "type": 6, + "value": 1691947287691 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689356136387 + }, + "money_release_date": { + "type": 6, + "value": 1689356136387 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "2f404d8984ff42cdb2e62281", + "revision": "679f7446906048f6ae99c546", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35458,10 +40435,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "09cd6c9b5b8b402eb670ead8", + "revision": "8b83463962aa4bdd9e816a6a", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35479,12 +40456,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "ff72a5d0cf074cbd83a18dc9", + "revision": "596fab1b88e54027921ce078", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35500,9 +40477,18 @@ "original_amount": 1235586, "total_amount": 1235586, "id": 1689356922364, - "date_created": "2023-07-14T17:48:42.364Z", - "date_last_updated": "2023-07-14T17:48:42.364Z", - "date_of_expiration": "2023-07-14T17:48:42.364Z", + "date_created": { + "type": 6, + "value": 1689356922364 + }, + "date_last_updated": { + "type": 6, + "value": 1689356922364 + }, + "date_of_expiration": { + "type": 6, + "value": 1689356922364 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35511,10 +40497,10 @@ "history_id": 1689356922364, "description": "Compra de 1.235.586,00 IVIP por 2.000,00 BRL" }, - "revision": "227b087c14a14e9fbcd1337e", + "revision": "93d45152a6354753a68e30e2", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35523,12 +40509,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-19T15:43:07.113Z" + ".val": { + "type": 6, + "value": 1692459787113 + } }, - "revision": "95229be2a8764d02b6a6f325", + "revision": "33a221469399405eb4dec9b1", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35544,12 +40533,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "a932716bdf344b039c7fecd1", + "revision": "b93d2c3399394d3dac159b34", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35557,10 +40546,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/extract/047925577230662820/order/1689867787113", - "revision": "f5b73aba538c4f24919a4da2", + "revision": "09466c3fbedc40cfac247f4d", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35575,8 +40564,14 @@ "total_amount": 3000, "id": 1689867787119, "history_id": 1689867787119, - "date_created": "2023-07-20T15:43:07.119Z", - "date_last_updated": "2023-07-20T15:43:07.119Z", + "date_created": { + "type": 6, + "value": 1689867787119 + }, + "date_last_updated": { + "type": 6, + "value": 1689867787119 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -35584,10 +40579,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "e6da1daede4d4f3ca4dc1fb0", + "revision": "f84cec6cf5674429ac814aa1", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35595,10 +40590,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "f2219c14b74941f1afb03b90", + "revision": "ad5c66a96a6f4507961b0383", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35607,12 +40602,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-20T12:25:11.952Z" + ".val": { + "type": 6, + "value": 1692534311952 + } }, - "revision": "77857b3d51e2452297bfad1d", + "revision": "1ce8df985fb149f883eb6891", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820525, + "modified": 1701465820525 } }, { @@ -35628,12 +40626,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "6603cebd4496459baa2fd1f1", + "revision": "3acd0896327d455daad35480", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820527, + "modified": 1701465820527 } }, { @@ -35641,10 +40639,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1689942311952", - "revision": "30228436a09a44dfad3201aa", + "revision": "25cbc0749cba4c15b57a16f5", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820527, + "modified": 1701465820527 } }, { @@ -35659,23 +40657,35 @@ "total_amount": 3000, "id": 1689942311952, "history_id": 1689942311952, - "date_created": "2023-07-21T12:25:11.952Z", - "date_last_updated": "2023-07-21T12:25:38.759Z", + "date_created": { + "type": 6, + "value": 1689942311952 + }, + "date_last_updated": { + "type": 6, + "value": 1689942338759 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-07-21T12:25:38.759Z", - "money_release_date": "2023-07-21T12:25:38.759Z", + "date_approved": { + "type": 6, + "value": 1689942338759 + }, + "money_release_date": { + "type": 6, + "value": 1689942338759 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "3422ab8ebb0547f084d9082b", + "revision": "ba6a45642c9f4b5f81799d02", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820527, + "modified": 1701465820527 } }, { @@ -35683,10 +40693,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "14d271afbd174ef8986f1228", + "revision": "8ababeae3e9b4b3eafddcbec", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820527, + "modified": 1701465820527 } }, { @@ -35704,12 +40714,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "8d7d3c4f248c4fdc8630bb55", + "revision": "1eed17bccd0e47a79bbc0639", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820527, + "modified": 1701465820527 } }, { @@ -35725,9 +40735,18 @@ "original_amount": 1849758, "total_amount": 1849758, "id": 1689942442311, - "date_created": "2023-07-21T12:27:22.311Z", - "date_last_updated": "2023-07-21T12:27:22.311Z", - "date_of_expiration": "2023-07-21T12:27:22.311Z", + "date_created": { + "type": 6, + "value": 1689942442311 + }, + "date_last_updated": { + "type": 6, + "value": 1689942442311 + }, + "date_of_expiration": { + "type": 6, + "value": 1689942442311 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35736,10 +40755,10 @@ "history_id": 1689942442311, "description": "Compra de 1.849.758,00 IVIP por 3.000,00 BRL" }, - "revision": "5d5cefd945de4a70ac7caa96", + "revision": "b0c0739558814dccba1d8f77", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820527, + "modified": 1701465820527 } }, { @@ -35748,12 +40767,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-04T01:54:56.983Z" + ".val": { + "type": 6, + "value": 1693792496983 + } }, - "revision": "d993758e41f7465ab48369bd", + "revision": "152600e6c9244881984ab9a0", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820527, + "modified": 1701465820527 } }, { @@ -35769,12 +40791,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "7a925061c59849639c4c5635", + "revision": "89b30182d18c414a9b40561f", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820527, + "modified": 1701465820527 } }, { @@ -35782,10 +40804,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691200496984", - "revision": "7ac8d8fb11f844e6b12a22ca", + "revision": "3d1226972ad74d8db49072db", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820527, + "modified": 1701465820527 } }, { @@ -35800,8 +40822,14 @@ "total_amount": 2000, "id": 1691200496984, "history_id": 1691200496984, - "date_created": "2023-08-05T01:54:56.984Z", - "date_last_updated": "2023-08-05T01:54:56.984Z", + "date_created": { + "type": 6, + "value": 1691200496984 + }, + "date_last_updated": { + "type": 6, + "value": 1691200496984 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -35809,10 +40837,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "054c6a5d208244e9afa3d694", + "revision": "c90082d5808946b5be8423b2", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820527, + "modified": 1701465820527 } }, { @@ -35820,10 +40848,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 2.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "0015eb615af94d159ef7cb5f", + "revision": "d8dc3e78460b4614a6578fc3", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820527, + "modified": 1701465820527 } }, { @@ -35839,12 +40867,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "08fdcdfe03694553abb5b308", + "revision": "948f4ea6a47c40a683556603", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820527, + "modified": 1701465820527 } }, { @@ -35852,10 +40880,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691214286883", - "revision": "3140ea7e096d448b9996b2dc", + "revision": "f2cdfaf7503a456f9904cd95", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820527, + "modified": 1701465820527 } }, { @@ -35870,9 +40898,18 @@ "total_amount": 7821732.3, "id": 1691214286883, "history_id": 1691214286883, - "date_created": "2023-08-05T05:44:46.883Z", - "date_last_updated": "2023-08-05T05:44:46.883Z", - "date_of_expiration": "2023-08-05T05:44:46.883Z", + "date_created": { + "type": 6, + "value": 1691214286883 + }, + "date_last_updated": { + "type": 6, + "value": 1691214286883 + }, + "date_of_expiration": { + "type": 6, + "value": 1691214286883 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -35880,10 +40917,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "89d16eddcef34065ba888f27", + "revision": "68310ee156aa46e3a2453764", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820527, + "modified": 1701465820527 } }, { @@ -35891,10 +40928,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 7.668.365,00 IVIP com um rendimento de +153.367,3 IVIP (2,00%)", - "revision": "c5107c59b2d2440f9837bc0e", + "revision": "e5a1b1c1bffe44108f5c05a6", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820527, + "modified": 1701465820527 } }, { @@ -35903,12 +40940,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-04T16:30:25.281Z" + ".val": { + "type": 6, + "value": 1693845025281 + } }, - "revision": "7bb37722bfec4f6380d5a4ca", + "revision": "2b94344a09c2445aba42c45e", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820527, + "modified": 1701465820527 } }, { @@ -35924,12 +40964,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "e7441da9843c4df8b188cf70", + "revision": "f8835b36185244eabe0b5b43", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -35937,10 +40977,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691253025281", - "revision": "b6e7a470e3b54a5b90f5fad6", + "revision": "1bf641a9bad947aebae8a0cf", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -35955,23 +40995,35 @@ "total_amount": 1500, "id": 1691253025281, "history_id": 1691253025281, - "date_created": "2023-08-05T16:30:25.281Z", - "date_last_updated": "2023-08-05T16:33:34.508Z", + "date_created": { + "type": 6, + "value": 1691253025281 + }, + "date_last_updated": { + "type": 6, + "value": 1691253214508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-05T16:33:34.508Z", - "money_release_date": "2023-08-05T16:33:34.508Z", + "date_approved": { + "type": 6, + "value": 1691253214508 + }, + "money_release_date": { + "type": 6, + "value": 1691253214508 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "b8b0f4e359cc45c7b7f07bb0", + "revision": "f6cddfb789804a479fa11c07", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -35979,10 +41031,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.500,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "24fc5e1ec618417ca522f543", + "revision": "43b901734a40421b8bee8240", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820527, + "modified": 1701465820527 } }, { @@ -35998,12 +41050,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "ca2eca451a68470491323d7c", + "revision": "7e89453227c645dd89a370f2", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36011,10 +41063,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691280221861", - "revision": "5a6ab6d071a54c6a9a19ac61", + "revision": "fb94e602118a4afd9f7c9a50", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36029,9 +41081,18 @@ "total_amount": 2127119, "id": 1691280221861, "history_id": 1691280221861, - "date_created": "2023-08-06T00:03:41.861Z", - "date_last_updated": "2023-08-06T00:03:41.861Z", - "date_of_expiration": "2023-08-06T00:03:41.861Z", + "date_created": { + "type": 6, + "value": 1691280221861 + }, + "date_last_updated": { + "type": 6, + "value": 1691280221861 + }, + "date_of_expiration": { + "type": 6, + "value": 1691280221861 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -36040,10 +41101,10 @@ "description": "Compra de 2.127.119,00 IVIP por 1.500,00 BRL", "status_detail": "accredited" }, - "revision": "ff361b9e6db3418488799bdb", + "revision": "2ea4364753084c26845fb7a1", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36059,12 +41120,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "5c3d837436914b73809f0289", + "revision": "1ef3c7dbf39d4842bbe5dac4", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36072,10 +41133,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691283205891", - "revision": "e9007543b4a14ef3837a96e8", + "revision": "4d19a6557e6749e1a2460968", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36090,9 +41151,18 @@ "total_amount": 7769562, "id": 1691283205891, "history_id": 1691283205891, - "date_created": "2023-08-06T00:53:25.891Z", - "date_last_updated": "2023-08-06T00:53:25.891Z", - "date_of_expiration": "2023-09-06T00:53:25.891Z", + "date_created": { + "type": 6, + "value": 1691283205891 + }, + "date_last_updated": { + "type": 6, + "value": 1691283205891 + }, + "date_of_expiration": { + "type": 6, + "value": 1693961605891 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -36100,10 +41170,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "b7e879b1d98a41dca45e837e", + "revision": "3e89ab29656b431091f1f484", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36111,10 +41181,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.769.562,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", - "revision": "076ae34989b7414d957ca9fc", + "revision": "19271f78bea54f35a472b74a", "revision_nr": 1, - "created": 1701463509552, - "modified": 1701463509552 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36130,12 +41200,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "76fd9a22de8a43b185065993", + "revision": "554377d224c84a2c9a032014", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36143,10 +41213,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1693962455688", - "revision": "9aca57ab27b84bfeab4e98e8", + "revision": "b07f218e16da409599df9e4c", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36161,9 +41231,18 @@ "total_amount": 7924953.24, "id": "1693962455688", "history_id": "1693962455688", - "date_created": "2023-09-06T01:07:35.688Z", - "date_last_updated": "2023-09-06T01:07:35.688Z", - "date_of_expiration": "2023-09-06T01:07:35.688Z", + "date_created": { + "type": 6, + "value": 1693962455688 + }, + "date_last_updated": { + "type": 6, + "value": 1693962455688 + }, + "date_of_expiration": { + "type": 6, + "value": 1693962455688 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -36171,10 +41250,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "63980752d3b945e5b6c11e76", + "revision": "39666d0c686b461b8353282d", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36182,10 +41261,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 7.769.562,00 IVIP com um rendimento de +155.391,24 IVIP (2,00%) - Y12XDT27", - "revision": "0b7a45f15896451885b10897", + "revision": "5e5685c2c0e84d35b48b578f", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36201,12 +41280,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "b8dca7be8e5f418ca6765f01", + "revision": "fbd5de2eaedf4e2f926028da", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36214,10 +41293,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1693962525967", - "revision": "c18f123b08204cdc93b44cad", + "revision": "08ab9f45fb9d47bdad3499f8", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36232,23 +41311,35 @@ "total_amount": 7931475, "id": "1693962525967", "history_id": "1693962525967", - "date_created": "2023-09-06T01:08:45.967Z", - "date_last_updated": "2023-10-04T13:04:02.602Z", - "date_of_expiration": "2023-10-06T01:08:45.967Z", + "date_created": { + "type": 6, + "value": 1693962525967 + }, + "date_last_updated": { + "type": 6, + "value": 1696424642602 + }, + "date_of_expiration": { + "type": 6, + "value": 1696554525967 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": "2023-10-04T13:04:02.602Z", + "money_release_date": { + "type": 6, + "value": 1696424642602 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "1f2a928fd900479b9ff3c33a", + "revision": "7ac9636cda3840ebbb15e71c", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36256,10 +41347,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.931.475,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", - "revision": "3c35a3caa5cc4982bfc6fb49", + "revision": "e37e6bd9cfe84051b3ed67b2", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36275,12 +41366,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "37979b7fdb784e2b8e05ad89", + "revision": "dc27eb8c764941fe9d98ce8f", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36288,10 +41379,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1695167532103", - "revision": "c12ef87b8c904dfb98f6edd5", + "revision": "44add7a15ba846f5a5e39b36", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36306,23 +41397,35 @@ "total_amount": 19942224, "id": "1695167532103", "history_id": "1695167532103", - "date_created": "2023-09-19T23:52:12.103Z", - "date_last_updated": "2023-09-25T21:44:47.175Z", - "date_of_expiration": "2024-03-19T23:52:12.102Z", + "date_created": { + "type": 6, + "value": 1695167532103 + }, + "date_last_updated": { + "type": 6, + "value": 1695678287175 + }, + "date_of_expiration": { + "type": 6, + "value": 1710892332102 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": "2023-09-25T21:44:47.175Z", + "money_release_date": { + "type": 6, + "value": 1695678287175 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "1dc8c7386379435abeb4e05c", + "revision": "0551979cd9ef475699167953", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36330,10 +41433,10 @@ "content": { "type": "STRING", "value": "Investimento de 19.942.224,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", - "revision": "5dd19b069ded4bf39c646cc6", + "revision": "2c373a11a9164ff0a748b143", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36345,10 +41448,10 @@ "label": "Taxa de 3,00%", "amount": 30 }, - "revision": "302b8c73220b411ea95f3c95", + "revision": "91036140fb5240308462ff4f", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36365,10 +41468,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "c872e0d4ac61451ab2a424c4", + "revision": "e912f1ed783d4fd4940ddfe7", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36376,10 +41479,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1695956035041", - "revision": "f9e8a00dd65948d7b8ae3bd4", + "revision": "7ff4a68cd4414bfd8fbd1e21", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36387,10 +41490,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "a2bee6a7a7c2402fb2a8cc95", + "revision": "d9d98ff54642420fbc9e01aa", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36406,24 +41509,39 @@ "total_amount": 970, "id": "1695956035041", "history_id": "1695956035041", - "date_created": "2023-09-29T02:53:55.041Z", - "date_last_updated": "2023-10-03T00:23:57.561Z", - "date_of_expiration": "2023-09-29T02:53:55.041Z", + "date_created": { + "type": 6, + "value": 1695956035041 + }, + "date_last_updated": { + "type": 6, + "value": 1696292637561 + }, + "date_of_expiration": { + "type": 6, + "value": 1695956035041 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": "2023-10-03T00:23:57.561Z", - "money_release_date": "2023-10-03T00:23:57.561Z", + "date_approved": { + "type": 6, + "value": 1696292637561 + }, + "money_release_date": { + "type": 6, + "value": 1696292637561 + }, "money_release_status": "drawee", "wasDebited": true }, - "revision": "d70d7b33c8e347b687ff3072", + "revision": "9a90b99fedaf4134950587a1", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36431,10 +41549,10 @@ "content": { "type": "STRING", "value": "Saque de 970,00 IVIP para a carteira 0x24f07CBa773a4bF9373E50A5694BAb23E5eF5557", - "revision": "a8ba19ee1ef740ab8179cc8d", + "revision": "a01b78c2c2e744a58b19d1c1", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36446,10 +41564,10 @@ "label": "Taxa de 3,00%", "amount": 651697.8461999999 }, - "revision": "c5d38448e9ad4ee6921e839e", + "revision": "edb6d2e2c14b44769c2355dc", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36466,10 +41584,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "da4cef14c824426cbbfc82ec", + "revision": "0311eda6b9e14514a457dbdd", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36477,10 +41595,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696003948025", - "revision": "8d8623147644460fb6c40e3c", + "revision": "e109c99737cc4b06849d3ca6", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36488,10 +41606,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "d5db648c589e40639ee35b50", + "revision": "c10a6914ce1e4e838ab56b7a", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36507,24 +41625,39 @@ "total_amount": 21071563.6938, "id": "1696003948025", "history_id": "1696003948025", - "date_created": "2023-09-29T16:12:28.025Z", - "date_last_updated": "2023-10-03T00:26:33.604Z", - "date_of_expiration": "2023-09-29T16:12:28.025Z", + "date_created": { + "type": 6, + "value": 1696003948025 + }, + "date_last_updated": { + "type": 6, + "value": 1696292793604 + }, + "date_of_expiration": { + "type": 6, + "value": 1696003948025 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_other_reason", - "date_approved": "2023-10-03T00:26:33.604Z", - "money_release_date": "2023-10-03T00:26:33.604Z", + "date_approved": { + "type": 6, + "value": 1696292793604 + }, + "money_release_date": { + "type": 6, + "value": 1696292793604 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "9c921554a77b45f3946caf76", + "revision": "22e268eddbbe434988570bbc", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36532,10 +41665,10 @@ "content": { "type": "STRING", "value": "Saque de 21.071.563,69 IVIP para a carteira 0x24f07CBa773a4bF9373E50A5694BAb23E5eF5557", - "revision": "0660aefe12d14cbcaa0d7956", + "revision": "eb55e48223be4cdb89ee0982", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36547,10 +41680,10 @@ "label": "Taxa de 3,00%", "amount": 304593.12 }, - "revision": "89709e6a69154d649f5cbb51", + "revision": "0cac3e2269344c53a206c459", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36567,10 +41700,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "b74934f130864d6ab81e77b2", + "revision": "58a868b61e3044c49ffde431", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36578,10 +41711,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696207958470", - "revision": "1b209ae5793c4cb7ba3729fe", + "revision": "259ce2d5ca1e4fcfa48c1a95", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36589,10 +41722,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "2ddd6bece61448b19824d3a6", + "revision": "4e9b779fced84946b3b85b86", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36608,23 +41741,35 @@ "total_amount": 9848510.88, "id": "1696207958470", "history_id": "1696207958470", - "date_created": "2023-10-02T00:52:38.470Z", - "date_last_updated": "2023-10-03T00:42:07.841Z", - "date_of_expiration": "2023-10-02T00:52:38.470Z", + "date_created": { + "type": 6, + "value": 1696207958470 + }, + "date_last_updated": { + "type": 6, + "value": 1696293727841 + }, + "date_of_expiration": { + "type": 6, + "value": 1696207958470 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_account_contains_debit_balance", - "money_release_date": "2023-10-03T00:42:07.841Z", + "money_release_date": { + "type": 6, + "value": 1696293727841 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "f238a13e9d3941a0b52757a2", + "revision": "3c2ff718258f44d8b1834fef", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36632,10 +41777,10 @@ "content": { "type": "STRING", "value": "Saque de 9.848.510,88 IVIP para a carteira 0x8de82EE9234B9dF85A4CBc083E49A0B8Db0D4aD1", - "revision": "7dc504fc621543eeb10fe191", + "revision": "622b72f29f6b4d1ab95eebac", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36647,10 +41792,10 @@ "label": "Taxa de 3,00%", "amount": 600892.0499999999 }, - "revision": "1eb975377a954bf5acc8d06c", + "revision": "6a0a8a63a1f243749005f25b", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36667,10 +41812,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "4af9783adb504f5eb079ca8d", + "revision": "2ee42720cd49401c98cef070", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36678,10 +41823,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471625534", - "revision": "468ebd16559a40abb74e55f0", + "revision": "6ab9ef13bf2847308bf9df12", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36689,10 +41834,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "4405188d2b304718bf0c4ec2", + "revision": "86581da7d29e423fa365cf2f", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36708,24 +41853,39 @@ "total_amount": 19428842.95, "id": "1696471625534", "history_id": "1696471625534", - "date_created": "2023-10-05T02:07:05.534Z", - "date_last_updated": "2023-10-05T03:03:32.296Z", - "date_of_expiration": "2023-10-05T02:07:05.534Z", + "date_created": { + "type": 6, + "value": 1696471625534 + }, + "date_last_updated": { + "type": 6, + "value": 1696475012296 + }, + "date_of_expiration": { + "type": 6, + "value": 1696471625534 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": "2023-10-05T03:03:32.296Z", - "money_release_date": "2023-10-05T03:03:32.296Z", + "date_approved": { + "type": 6, + "value": 1696475012296 + }, + "money_release_date": { + "type": 6, + "value": 1696475012296 + }, "money_release_status": "drawee", "wasDebited": true }, - "revision": "61049517c68544d596faa53d", + "revision": "809f25cb802c42b28a54f7be", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36733,10 +41893,10 @@ "content": { "type": "STRING", "value": "Saque de 19.428.842,95 IVIP para a carteira 0x8de82EE9234B9dF85A4CBc083E49A0B8Db0D4aD1", - "revision": "3394d683f4ed4e62ae158f51", + "revision": "d102e54b6d7e4209aab88987", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36752,12 +41912,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "e3dce557af164ea9b7a2c3dc", + "revision": "090982bd30c940dc98eb033d", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36765,10 +41925,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471870838", - "revision": "cdc66b8d0c30421da2a408d3", + "revision": "7cc2363de7764d99883973a6", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36784,9 +41944,18 @@ "total_amount": 7931207, "id": "1696471870838", "history_id": "1696471870838", - "date_created": "2023-10-05T02:11:10.838Z", - "date_last_updated": "2023-10-05T02:11:10.838Z", - "date_of_expiration": "2023-11-05T02:11:10.607Z", + "date_created": { + "type": 6, + "value": 1696471870838 + }, + "date_last_updated": { + "type": 6, + "value": 1696471870838 + }, + "date_of_expiration": { + "type": 6, + "value": 1699150270607 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -36794,10 +41963,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_call_for_authorize" }, - "revision": "d5175bd0b00941de8948aec5", + "revision": "52941e5429874758a3cfd96f", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36805,10 +41974,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.931.207,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "ba190c6622254780ae288858", + "revision": "9509584cc4f6496d9d8b1cf4", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36824,12 +41993,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "66b1218418af4600a9ecd428", + "revision": "6664f51812654abf9cf65050", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36837,10 +42006,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471977293", - "revision": "bff8c697aa004af2a6e5fb20", + "revision": "1ab5e215d55d47cabdef298e", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36856,9 +42025,18 @@ "total_amount": 1035046, "id": "1696471977293", "history_id": "1696471977293", - "date_created": "2023-10-05T02:12:57.293Z", - "date_last_updated": "2023-10-05T02:12:57.293Z", - "date_of_expiration": "2023-11-05T02:12:57.200Z", + "date_created": { + "type": 6, + "value": 1696471977293 + }, + "date_last_updated": { + "type": 6, + "value": 1696471977293 + }, + "date_of_expiration": { + "type": 6, + "value": 1699150377200 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -36866,10 +42044,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "d4d750baf88049a6b9403248", + "revision": "7b615a2dd0454cb7a3266ba2", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36877,10 +42055,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.035.046,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "cc63484af93f41b4842f688c", + "revision": "4c783df3a378481c8007e1e3", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36888,10 +42066,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0e62d7cb45594be0ae790aef", + "revision": "5d098488d0f04de1b4a28297", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36899,10 +42077,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e5e063f21961480d8f0222ed", + "revision": "90b731524c9b442790b878de", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36912,12 +42090,15 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-09-29T03:14:47.898Z" + "analysisRequested": { + "type": 6, + "value": 1695957287898 + } }, - "revision": "e438bcad35194eeaab9996d0", + "revision": "99b625866d0348a4ba3e66a9", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820528, + "modified": 1701465820528 } }, { @@ -36929,12 +42110,15 @@ "dateValidity": 1683569670949, "totalValue": 48201.8, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } }, - "revision": "71ead369201b4811a4329703", + "revision": "6bb288110f9046d5ba75ebd4", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -36942,10 +42126,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "db9fd44959a74efa8d33e611", + "revision": "678bcd0d6083441083d707b1", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -36953,10 +42137,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "094cff5485724cfc8ca34c34", + "revision": "f3d9ca68cb1d450d90e1fe13", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -36969,10 +42153,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "98f81327cc854ee6987d2c88", + "revision": "ca94dcaa0cb345138313aff2", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -36984,10 +42168,10 @@ "symbol": "IVIP", "value": 149.3 }, - "revision": "60c8b847b3cc4468848ecd79", + "revision": "80e76cceb4fd46d4b7a329c4", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -36995,10 +42179,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e0f5940944cd4f2aa09c1255", + "revision": "4a51dfd216ec4630bf3e094a", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37006,12 +42190,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "158a26a3a5df4173a6a669ff", + "revision": "7f01352bcecd41f7b7aab790", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37026,22 +42210,37 @@ "total_amount": 300, "history_id": 1679232470571, "id": 1679232470571, - "date_created": "2023-03-19T13:27:50.571Z", - "date_last_updated": "2023-03-19T22:56:16.805Z", - "date_of_expiration": "2023-04-18T13:27:50.571Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-19T22:56:16.805Z", - "money_release_date": "2023-03-19T22:56:16.805Z", + "date_created": { + "type": 6, + "value": 1679232470571 + }, + "date_last_updated": { + "type": 6, + "value": 1679266576805 + }, + "date_of_expiration": { + "type": 6, + "value": 1681824470571 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679266576805 + }, + "money_release_date": { + "type": 6, + "value": 1679266576805 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "093669549ea448c2acda136c", + "revision": "07b06e01ecad482690bd4c5b", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37049,10 +42248,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", - "revision": "1c122cb6df304c9589a9e791", + "revision": "8cbd936885204e1596c65aa0", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37060,12 +42259,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "b263dbcfc3594cfd995468c7", + "revision": "f2ce7113e21e45698ec35a4d", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37080,18 +42279,27 @@ "total_amount": 300, "history_id": 1679232566671, "id": 1679232566671, - "date_created": "2023-03-19T13:29:26.671Z", - "date_last_updated": "2023-03-19T13:29:26.671Z", - "date_of_expiration": "2023-04-18T13:29:26.671Z", + "date_created": { + "type": 6, + "value": 1679232566671 + }, + "date_last_updated": { + "type": 6, + "value": 1679232566671 + }, + "date_of_expiration": { + "type": 6, + "value": 1681824566671 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "e44ab6963bbb44f5a813bb72", + "revision": "d322442a2d704bbc8f879c11", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37099,10 +42307,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", - "revision": "fcbfe9999f7c4d3b9d4ef972", + "revision": "a115b71c9427477b96f5096e", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37120,12 +42328,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "3ae673c2cc5a4753a0cbb89a", + "revision": "e946567094684fa9ae17e91e", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37141,9 +42349,18 @@ "original_amount": 1597688, "total_amount": 1597688, "id": 1679871668854, - "date_created": "2023-03-26T23:01:08.854Z", - "date_last_updated": "2023-03-26T23:01:08.854Z", - "date_of_expiration": "2023-03-26T23:01:08.854Z", + "date_created": { + "type": 6, + "value": 1679871668854 + }, + "date_last_updated": { + "type": 6, + "value": 1679871668854 + }, + "date_of_expiration": { + "type": 6, + "value": 1679871668854 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37152,10 +42369,10 @@ "history_id": 1679871668854, "description": "Compra de 1.597.688,00 IVIP por 300,00 BRL" }, - "revision": "b6b396cc4d4b471eb387617a", + "revision": "26db4d0237b94276b16fc846", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37163,12 +42380,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "af878d7ee7cc4ffe88934f46", + "revision": "15cda221201a4eaca88f0de0", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37183,22 +42400,37 @@ "total_amount": 300, "history_id": 1684190255075, "id": 1684190255075, - "date_created": "2023-05-15T22:37:35.075Z", - "date_last_updated": "2023-05-16T12:11:16.762Z", - "date_of_expiration": "2023-06-14T22:37:35.075Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-16T12:11:16.762Z", - "money_release_date": "2023-05-16T12:11:16.762Z", + "date_created": { + "type": 6, + "value": 1684190255075 + }, + "date_last_updated": { + "type": 6, + "value": 1684239076762 + }, + "date_of_expiration": { + "type": 6, + "value": 1686782255075 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684239076762 + }, + "money_release_date": { + "type": 6, + "value": 1684239076762 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "a05d15cff1604675a7cc935f", + "revision": "d52b43be638848549d73c8cc", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37206,10 +42438,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", - "revision": "2aa758b036d84be8a020f08f", + "revision": "a0ad98804c49441dbeee8a4f", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37227,12 +42459,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "81c0eca7be224e7295b2909d", + "revision": "7b66f099f4b84bc79197fdbd", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37248,9 +42480,18 @@ "original_amount": 1461219, "total_amount": 1461219, "id": 1684624205744, - "date_created": "2023-05-20T23:10:05.744Z", - "date_last_updated": "2023-05-20T23:10:05.744Z", - "date_of_expiration": "2023-05-20T23:10:05.744Z", + "date_created": { + "type": 6, + "value": 1684624205744 + }, + "date_last_updated": { + "type": 6, + "value": 1684624205744 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624205744 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37259,10 +42500,10 @@ "history_id": 1684624205744, "description": "Compra de 1.461.219,00 IVIP por 300,00 BRL" }, - "revision": "64f7297448c845f28f5188d9", + "revision": "21534252067241aca8d1d35e", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37280,12 +42521,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "c935b01470ca4e9a94b6f17a", + "revision": "3755063c81b844fc8b1af1ae", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37300,9 +42541,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1686353262267, - "date_created": "2023-06-09T23:27:42.267Z", - "date_last_updated": "2023-06-09T23:27:42.267Z", - "date_of_expiration": "2023-07-09T23:27:42.267Z", + "date_created": { + "type": 6, + "value": 1686353262267 + }, + "date_last_updated": { + "type": 6, + "value": 1686353262267 + }, + "date_of_expiration": { + "type": 6, + "value": 1688945262267 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37311,10 +42561,10 @@ "history_id": 1686353262267, "wasDebited": true }, - "revision": "323f35762e7640b8832e6ebb", + "revision": "53aeb29470064228986e2102", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37322,10 +42572,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/9/2023", - "revision": "dab0a8bb527d4b8f98489ade", + "revision": "fd6ad083600d47f4ac8613c2", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37343,12 +42593,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b43d1ab129554c98ac697c5f", + "revision": "74f00a62f3564bb6a2198d9a", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37363,9 +42613,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1686353693526, - "date_created": "2023-06-09T23:34:53.526Z", - "date_last_updated": "2023-06-09T23:34:53.526Z", - "date_of_expiration": "2023-12-09T23:34:53.526Z", + "date_created": { + "type": 6, + "value": 1686353693526 + }, + "date_last_updated": { + "type": 6, + "value": 1686353693526 + }, + "date_of_expiration": { + "type": 6, + "value": 1702164893526 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37374,10 +42633,10 @@ "history_id": 1686353693526, "wasDebited": true }, - "revision": "8024f8be4c5c4bfd9a231d2a", + "revision": "a96b3129d51a4cc5a785204c", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37385,10 +42644,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/9/2023", - "revision": "8446d3e1b8f6414e93a3a1af", + "revision": "730a3cc5968b4dc3ac7cb4a9", "revision_nr": 1, - "created": 1701463509553, - "modified": 1701463509553 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37406,12 +42665,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "22673f4c16294185882bf156", + "revision": "370e12534fa74dd58131d0c3", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37426,9 +42685,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1686657739276, - "date_created": "2023-06-13T12:02:19.276Z", - "date_last_updated": "2023-06-13T12:02:19.276Z", - "date_of_expiration": "2024-06-13T12:02:19.276Z", + "date_created": { + "type": 6, + "value": 1686657739276 + }, + "date_last_updated": { + "type": 6, + "value": 1686657739276 + }, + "date_of_expiration": { + "type": 6, + "value": 1718280139276 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37436,10 +42704,10 @@ "currency_id": "IVIP", "history_id": 1686657739276 }, - "revision": "7d176042c5244122a44fa4c8", + "revision": "aed6343765be4f8db3aac861", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37447,10 +42715,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/13/2024", - "revision": "ca06b590b36243389636f5c0", + "revision": "5ee69393fa91483d9768586d", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37468,12 +42736,12 @@ "installment_amount": 500000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "bb7a70444e9444a9bc73b3fc", + "revision": "58ae0779e87b41e594b0d739", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37488,9 +42756,18 @@ "original_amount": 500000, "total_amount": 500000, "id": 1687363201264, - "date_created": "2023-06-21T16:00:01.264Z", - "date_last_updated": "2023-06-21T16:00:01.264Z", - "date_of_expiration": "2024-06-21T16:00:01.264Z", + "date_created": { + "type": 6, + "value": 1687363201264 + }, + "date_last_updated": { + "type": 6, + "value": 1687363201264 + }, + "date_of_expiration": { + "type": 6, + "value": 1718985601264 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37498,10 +42775,10 @@ "currency_id": "IVIP", "history_id": 1687363201264 }, - "revision": "004e355aae064415a9318e63", + "revision": "621b7baa1be84ea489508c3b", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37509,10 +42786,10 @@ "content": { "type": "STRING", "value": "Investimento de 500.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2024", - "revision": "83b8e1f9b70d4550833cd130", + "revision": "479db855b7bc4c26bd3ac626", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37530,12 +42807,12 @@ "installment_amount": 1000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "07d6fdf880b24f6cb4c36347", + "revision": "59e8257a4e3647b9b8fbe4ec", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37550,9 +42827,18 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1687363301418, - "date_created": "2023-06-21T16:01:41.418Z", - "date_last_updated": "2023-06-21T16:01:41.418Z", - "date_of_expiration": "2025-06-21T16:01:41.418Z", + "date_created": { + "type": 6, + "value": 1687363301418 + }, + "date_last_updated": { + "type": 6, + "value": 1687363301418 + }, + "date_of_expiration": { + "type": 6, + "value": 1750521701418 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37560,10 +42846,10 @@ "currency_id": "IVIP", "history_id": 1687363301418 }, - "revision": "d6b42ebfe8854f21b2388a28", + "revision": "c6499f0f78cb49f89d6a1acf", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37571,10 +42857,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2025", - "revision": "7844ebdf9d02498f831153c7", + "revision": "cbb1144af194439b984a3ea5", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37592,12 +42878,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "63ef1260ad8d4ce58019449e", + "revision": "9f95ea60d9e84269ad208e64", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37612,9 +42898,18 @@ "original_amount": 1020, "total_amount": 1020, "id": 1689804806407, - "date_created": "2023-07-19T22:13:26.407Z", - "date_last_updated": "2023-07-19T22:13:26.407Z", - "date_of_expiration": "2023-07-19T22:13:26.407Z", + "date_created": { + "type": 6, + "value": 1689804806407 + }, + "date_last_updated": { + "type": 6, + "value": 1689804806407 + }, + "date_of_expiration": { + "type": 6, + "value": 1689804806407 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37623,10 +42918,10 @@ "history_id": 1689804806407, "wasDebited": true }, - "revision": "d3ad3cf9d4d24c01abb7ad63", + "revision": "649c4e2bf1354066b2b45d67", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37634,10 +42929,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%)", - "revision": "63484e1631a741329139415d", + "revision": "cacff3fdcb604a90ba9f71e4", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37653,12 +42948,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "173caaba313942a39dc25f21", + "revision": "6ca26b44a47c47fd951385fd", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37666,10 +42961,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1690414261722", - "revision": "129d331c7bbc4af2b868b8dd", + "revision": "2efa3c0d09ea43e9984decf6", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37684,9 +42979,18 @@ "total_amount": 100000, "id": 1690414261722, "history_id": 1690414261722, - "date_created": "2023-07-26T23:31:01.722Z", - "date_last_updated": "2023-07-26T23:31:01.722Z", - "date_of_expiration": "2023-08-26T23:31:01.717Z", + "date_created": { + "type": 6, + "value": 1690414261722 + }, + "date_last_updated": { + "type": 6, + "value": 1690414261722 + }, + "date_of_expiration": { + "type": 6, + "value": 1693092661717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37694,10 +42998,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "31892dc874204db0afcef6ff", + "revision": "8eaea3c72ae648239fc96256", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37705,10 +43009,10 @@ "content": { "type": "STRING", "value": "Investimento de 100.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/26/2023", - "revision": "e7705fa4195a43dd9ea5a957", + "revision": "bd40920480a7495d8cb8152b", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37724,12 +43028,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "d502346ebb2c453eb223389a", + "revision": "86e46c45f1c5415e909a7435", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37737,10 +43041,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693093011374", - "revision": "e1bebb30a37b476c89907eb8", + "revision": "c596e1d5eba54c8787b54b27", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37755,9 +43059,18 @@ "total_amount": 100000, "id": "1693093011374", "history_id": "1693093011374", - "date_created": "2023-08-26T23:36:51.374Z", - "date_last_updated": "2023-08-26T23:36:51.374Z", - "date_of_expiration": "2023-08-26T23:36:51.374Z", + "date_created": { + "type": 6, + "value": 1693093011374 + }, + "date_last_updated": { + "type": 6, + "value": 1693093011374 + }, + "date_of_expiration": { + "type": 6, + "value": 1693093011374 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37765,10 +43078,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "f01ca9030bb64a48953abd32", + "revision": "2180ea1818dd47699db02088", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37776,10 +43089,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 100.000,00 IVIP com um rendimento de +2.000,00 IVIP (2,00%)", - "revision": "6e6ccff21aa64dec96df39cd", + "revision": "de4d89981550448894d8bc67", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37791,10 +43104,10 @@ "label": "Taxa de 3,00%", "amount": 3000 }, - "revision": "5e546e400f93473ba894385d", + "revision": "6d6bce1a261a40f99e349cae", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37811,10 +43124,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "5251a7222ea048619fb50330", + "revision": "5075aa878f984b778b024ca0", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37822,10 +43135,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693173218030", - "revision": "eaff353e7fc441c7a34f2728", + "revision": "26c5f27cdf9143398a9997f3", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37833,10 +43146,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "94eb5c696f18444492d40057", + "revision": "8f89926d888741548445789f", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37851,24 +43164,39 @@ "total_amount": 97000, "id": "1693173218030", "history_id": "1693173218030", - "date_created": "2023-08-27T21:53:38.030Z", - "date_last_updated": "2023-09-04T21:32:36.578Z", - "date_of_expiration": "2023-08-27T21:53:38.030Z", + "date_created": { + "type": 6, + "value": 1693173218030 + }, + "date_last_updated": { + "type": 6, + "value": 1693863156578 + }, + "date_of_expiration": { + "type": 6, + "value": 1693173218030 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": "2023-09-04T21:32:36.578Z", - "money_release_date": "2023-09-04T21:32:36.578Z", + "date_approved": { + "type": 6, + "value": 1693863156578 + }, + "money_release_date": { + "type": 6, + "value": 1693863156578 + }, "money_release_status": "drawee", "wasDebited": true }, - "revision": "9a7726a131cf4dbab8554087", + "revision": "a45918f36fbe4234b6d89239", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37876,10 +43204,10 @@ "content": { "type": "STRING", "value": "Saque de 97.000,00 IVIP para a carteira 0x984b739d05a74462Ab9171EDF8Be5CDDa7fF8c26", - "revision": "7e6f39083a754b8885cee6c8", + "revision": "0ddd674b117e4ba89ca6fa87", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37895,12 +43223,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "a5499b1ed2aa4c6cadb8ea8d", + "revision": "efef37b1587d439fa82a3595", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37908,10 +43236,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693228740965", - "revision": "e9deac384e7e469db6241485", + "revision": "ffe567ba06394ebd8652fbcc", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37926,9 +43254,18 @@ "total_amount": 800000, "id": "1693228740965", "history_id": "1693228740965", - "date_created": "2023-08-28T13:19:00.965Z", - "date_last_updated": "2023-08-28T13:19:00.965Z", - "date_of_expiration": "2023-09-28T13:19:00.964Z", + "date_created": { + "type": 6, + "value": 1693228740965 + }, + "date_last_updated": { + "type": 6, + "value": 1693228740965 + }, + "date_of_expiration": { + "type": 6, + "value": 1695907140964 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -37936,10 +43273,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "20a519af2a414aaeb0cc4031", + "revision": "2ede1d9d25404f169da722e1", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -37947,10 +43284,10 @@ "content": { "type": "STRING", "value": "Investimento de 800.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/28/2023", - "revision": "c71870ec991b4a12adbc64b7", + "revision": "6c45354498cd451b9c3f1f86", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820529, + "modified": 1701465820529 } }, { @@ -37966,12 +43303,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "9af86dbf9beb4b84b564f769", + "revision": "ae7a9a909ddc4c35a518e432", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -37979,10 +43316,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1695907162897", - "revision": "575e27df48414583a44b082f", + "revision": "21450229036d415b9d9238b7", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -37998,9 +43335,18 @@ "total_amount": 816000, "id": "1695907162897", "history_id": "1695907162897", - "date_created": "2023-09-28T13:19:22.897Z", - "date_last_updated": "2023-09-28T13:19:22.897Z", - "date_of_expiration": "2023-09-28T13:19:22.897Z", + "date_created": { + "type": 6, + "value": 1695907162897 + }, + "date_last_updated": { + "type": 6, + "value": 1695907162897 + }, + "date_of_expiration": { + "type": 6, + "value": 1695907162897 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38008,10 +43354,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "48940ee228fa4258bf0370cb", + "revision": "05078ef622df42518c64ed92", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38019,10 +43365,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 800.000,00 IVIP com um rendimento de +16.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "9c9541694f384c84835bc836", + "revision": "efb028e775b247d1ad1905af", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38038,12 +43384,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "0f497a41a0f940dea2758c81", + "revision": "ec28e2519c084a55aa7f6b5a", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38051,10 +43397,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1695925845472", - "revision": "99821328d6014b28832736ff", + "revision": "500645558c6a40be853d7af2", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38070,9 +43416,18 @@ "total_amount": 80000, "id": "1695925845472", "history_id": "1695925845472", - "date_created": "2023-09-28T18:30:45.472Z", - "date_last_updated": "2023-09-28T18:30:45.472Z", - "date_of_expiration": "2023-10-28T18:30:45.420Z", + "date_created": { + "type": 6, + "value": 1695925845472 + }, + "date_last_updated": { + "type": 6, + "value": 1695925845472 + }, + "date_of_expiration": { + "type": 6, + "value": 1698517845420 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38080,10 +43435,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "8c2f34e65fb14f14916e6ebe", + "revision": "e608ced71f2940d8ac27f87a", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38091,10 +43446,10 @@ "content": { "type": "STRING", "value": "Investimento de 80.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 28/10/2023 - Y12XDT27", - "revision": "21452963fb6e43fc89d93ad4", + "revision": "e3f27859c1e145e392c8d44e", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38102,10 +43457,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "271183e2227f49c79e0b8703", + "revision": "59fc7cd057ab4ac0ac1003c7", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38113,10 +43468,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "add34f31c41d493a82f6c7c5", + "revision": "87bebcc31bbf4684b8c13d90", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38126,12 +43481,15 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-09-28T18:35:16.598Z" + "analysisRequested": { + "type": 6, + "value": 1695926116598 + } }, - "revision": "1a9c5530f46144a991d3dd64", + "revision": "6fc4864d84aa4a7995176da3", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38143,12 +43501,15 @@ "dateValidity": 1679096727973, "totalValue": 488.05285041642975, "currencyType": "USD", - "balancesModificacao": "2023-10-14T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } }, - "revision": "f6e12e8b489f4e4b9d070e2c", + "revision": "00224efce16b462686daa96c", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38160,10 +43521,10 @@ "symbol": "IVIP", "value": 7.28 }, - "revision": "b98ebc360a2c4f41b3d3b04e", + "revision": "af5f0216f6854d648bec6e2a", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38171,10 +43532,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3e3fd2519e114865926dcc1b", + "revision": "8cbdf976cc1d4928bde16f5e", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38182,12 +43543,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "323b672b5c644f958bf14641", + "revision": "779366c1dfdf473ba4b3e184", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38202,22 +43563,37 @@ "total_amount": 1000, "history_id": 1678145412146, "id": 1678145412146, - "date_created": "2023-03-06T23:30:12.146Z", - "date_last_updated": "2023-03-07T20:21:25.124Z", - "date_of_expiration": "2023-04-05T23:30:12.146Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-07T20:21:25.124Z", - "money_release_date": "2023-03-07T20:21:25.124Z", + "date_created": { + "type": 6, + "value": 1678145412146 + }, + "date_last_updated": { + "type": 6, + "value": 1678220485124 + }, + "date_of_expiration": { + "type": 6, + "value": 1680737412146 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678220485124 + }, + "money_release_date": { + "type": 6, + "value": 1678220485124 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "ade1f3e76b334f2bb74f32df", + "revision": "6bfa3e7a0b454f10bc408b45", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38225,10 +43601,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0502.9485.5698.2423-30", - "revision": "7764654dceb74516a2316ef0", + "revision": "ed516bed122a4261a02b2089", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38236,12 +43612,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "1c3df754ac62421abca9fa37", + "revision": "7e293a1dc4a94d41b6292d93", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38256,22 +43632,37 @@ "total_amount": 1000, "history_id": 1678043796128, "id": 1678043796128, - "date_created": "2023-03-05T19:16:36.128Z", - "date_last_updated": "2023-03-07T20:20:39.067Z", - "date_of_expiration": "2023-04-04T19:16:36.128Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-07T20:20:39.067Z", - "money_release_date": "2023-03-07T20:20:39.067Z", + "date_created": { + "type": 6, + "value": 1678043796128 + }, + "date_last_updated": { + "type": 6, + "value": 1678220439067 + }, + "date_of_expiration": { + "type": 6, + "value": 1680635796128 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678220439067 + }, + "money_release_date": { + "type": 6, + "value": 1678220439067 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "0b8bde523ef14d46ba4da03f", + "revision": "04f9980c2d43412aac957576", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38279,10 +43670,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0502.9485.5698.2423-30", - "revision": "54476ea945924a929c204402", + "revision": "c2b49a346a2e4bd8ac1dd695", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38290,12 +43681,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "011d7b6a6e5b4bc28c5ed7dd", + "revision": "2045ee6636ce46b594b426c0", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38310,22 +43701,37 @@ "total_amount": 2000, "history_id": 1677774543947, "id": 1677774543947, - "date_created": "2023-03-02T16:29:03.947Z", - "date_last_updated": "2023-03-02T17:25:47.224Z", - "date_of_expiration": "2023-04-01T16:29:03.947Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-02T17:25:47.224Z", - "money_release_date": "2023-03-02T17:25:47.224Z", + "date_created": { + "type": 6, + "value": 1677774543947 + }, + "date_last_updated": { + "type": 6, + "value": 1677777947224 + }, + "date_of_expiration": { + "type": 6, + "value": 1680366543947 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677777947224 + }, + "money_release_date": { + "type": 6, + "value": 1677777947224 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "0b86182b6c4e43168d2170ed", + "revision": "f94b28a6066841a180d18778", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38333,10 +43739,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0502.9485.5698.2423-30", - "revision": "44ef8862c4c242d8a241f1ba", + "revision": "9fcf7fe785c54c68bd8a6228", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38354,12 +43760,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "7d613e1f8c9e4429a06f2739", + "revision": "9fb50a27c7654dc3b536b1df", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38375,9 +43781,18 @@ "original_amount": 14284655, "total_amount": 14284655, "id": 1678145303669, - "date_created": "2023-03-06T23:28:23.669Z", - "date_last_updated": "2023-03-06T23:28:23.669Z", - "date_of_expiration": "2023-03-06T23:28:23.669Z", + "date_created": { + "type": 6, + "value": 1678145303669 + }, + "date_last_updated": { + "type": 6, + "value": 1678145303669 + }, + "date_of_expiration": { + "type": 6, + "value": 1678145303669 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38386,10 +43801,10 @@ "history_id": 1678145303669, "description": "Compra de 14284655 IVIP por 2000 BRL" }, - "revision": "8015ba0fe3364fb28dedf4c0", + "revision": "457be54433e449dca2f8f507", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38407,12 +43822,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "c5c494b099354dc7b7539471", + "revision": "0c89c8c932084028bf4aebae", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38428,9 +43843,18 @@ "original_amount": 14195700, "total_amount": 14195700, "id": 1678220742550, - "date_created": "2023-03-07T20:25:42.550Z", - "date_last_updated": "2023-03-07T20:25:42.550Z", - "date_of_expiration": "2023-03-07T20:25:42.550Z", + "date_created": { + "type": 6, + "value": 1678220742550 + }, + "date_last_updated": { + "type": 6, + "value": 1678220742550 + }, + "date_of_expiration": { + "type": 6, + "value": 1678220742550 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38439,10 +43863,10 @@ "history_id": 1678220742550, "description": "Compra de 14195700 IVIP por 2000 BRL" }, - "revision": "be86113fde3845c497af6196", + "revision": "c467d355dd7f4396b79a7a28", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38450,12 +43874,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "602612a09d4d4313b3e994a7", + "revision": "e79eb4d78e65499fa316d4b0", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38470,20 +43894,32 @@ "total_amount": 14038113, "history_id": 1686128267183, "id": 1686128267183, - "date_created": "2023-06-07T08:57:47.183Z", - "date_last_updated": "2023-07-07T23:13:02.648Z", - "date_of_expiration": "2023-06-07T08:57:47.183Z", + "date_created": { + "type": 6, + "value": 1686128267183 + }, + "date_last_updated": { + "type": 6, + "value": 1688771582648 + }, + "date_of_expiration": { + "type": 6, + "value": 1686128267183 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": "2023-07-07T23:13:02.648Z", + "money_release_date": { + "type": 6, + "value": 1688771582648 + }, "money_release_status": "rejected" }, - "revision": "c6b579213f4644b780a283e7", + "revision": "cd819bc557854858943de976", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38491,10 +43927,10 @@ "content": { "type": "STRING", "value": "Saque de 14.038.113,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", - "revision": "40c134ab5c004e1384909700", + "revision": "7900efd995ee49539c0c9612", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38502,12 +43938,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "b8dd88a8acdc4f3f986fd317", + "revision": "944b679b6c4240209e338040", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38522,20 +43958,32 @@ "total_amount": 28480355, "history_id": 1686128970156, "id": 1686128970156, - "date_created": "2023-06-07T09:09:30.156Z", - "date_last_updated": "2023-07-07T23:13:12.581Z", - "date_of_expiration": "2023-06-07T09:09:30.156Z", + "date_created": { + "type": 6, + "value": 1686128970156 + }, + "date_last_updated": { + "type": 6, + "value": 1688771592581 + }, + "date_of_expiration": { + "type": 6, + "value": 1686128970156 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": "2023-07-07T23:13:12.581Z", + "money_release_date": { + "type": 6, + "value": 1688771592581 + }, "money_release_status": "rejected" }, - "revision": "2cc7530a3c474fbb95d98fde", + "revision": "e06fefb4e5d543a883d18435", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38543,10 +43991,10 @@ "content": { "type": "STRING", "value": "Saque de 28.480.355,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", - "revision": "d0770770668e4e3c906d7b74", + "revision": "363fda8111824a059660c38e", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38564,12 +44012,12 @@ "installment_amount": 50000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "31cf2c4a0cc340ff9e8a889e", + "revision": "4eedbda85aa94e08bafc2bf0", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38584,9 +44032,18 @@ "original_amount": 50000, "total_amount": 50000, "id": 1686190557366, - "date_created": "2023-06-08T02:15:57.366Z", - "date_last_updated": "2023-06-08T02:15:57.366Z", - "date_of_expiration": "2025-06-08T02:15:57.366Z", + "date_created": { + "type": 6, + "value": 1686190557366 + }, + "date_last_updated": { + "type": 6, + "value": 1686190557366 + }, + "date_of_expiration": { + "type": 6, + "value": 1749348957366 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38594,10 +44051,10 @@ "currency_id": "IVIP", "history_id": 1686190557366 }, - "revision": "a87af45244b54b39b0ce7427", + "revision": "f2aa9ce8cd9f4c7987e7c6f8", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38605,10 +44062,10 @@ "content": { "type": "STRING", "value": "Investimento de 50.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/7/2025", - "revision": "736b18848b6f4045bd93374e", + "revision": "8cfedef0813146cf813e02e1", "revision_nr": 1, - "created": 1701463509554, - "modified": 1701463509554 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38626,12 +44083,12 @@ "installment_amount": 30000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d942ab74a70a44d18cffba54", + "revision": "d8a3e499295a4350a90aa585", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38646,9 +44103,18 @@ "original_amount": 30000, "total_amount": 30000, "id": 1686190633022, - "date_created": "2023-06-08T02:17:13.022Z", - "date_last_updated": "2023-06-08T02:17:13.022Z", - "date_of_expiration": "2024-06-08T02:17:13.022Z", + "date_created": { + "type": 6, + "value": 1686190633022 + }, + "date_last_updated": { + "type": 6, + "value": 1686190633022 + }, + "date_of_expiration": { + "type": 6, + "value": 1717813033022 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38656,10 +44122,10 @@ "currency_id": "IVIP", "history_id": 1686190633022 }, - "revision": "a3bf775324af479ea465a7ba", + "revision": "b63559d3edf54c5c9a3fca36", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38667,10 +44133,10 @@ "content": { "type": "STRING", "value": "Investimento de 30.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/7/2024", - "revision": "86690367d41f4d2b868f6203", + "revision": "f2b2c369f5694f9aa3f59d00", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38688,12 +44154,12 @@ "installment_amount": 50000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "3d9c51913a0849e4a3d48062", + "revision": "d364fc9607024c419629c6a7", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38708,9 +44174,18 @@ "original_amount": 50000, "total_amount": 50000, "id": 1686190671429, - "date_created": "2023-06-08T02:17:51.429Z", - "date_last_updated": "2023-06-08T02:17:51.429Z", - "date_of_expiration": "2023-12-08T02:17:51.429Z", + "date_created": { + "type": 6, + "value": 1686190671429 + }, + "date_last_updated": { + "type": 6, + "value": 1686190671429 + }, + "date_of_expiration": { + "type": 6, + "value": 1702001871429 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38718,10 +44193,10 @@ "currency_id": "IVIP", "history_id": 1686190671429 }, - "revision": "3f8241cdf59745d1825baa37", + "revision": "495422bdec334f4884e0c66a", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38729,10 +44204,10 @@ "content": { "type": "STRING", "value": "Investimento de 50.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/7/2023", - "revision": "9c5d35ae6cbd49f2b1025938", + "revision": "1d599eb9ccf14db1b1fbd91e", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38750,12 +44225,12 @@ "installment_amount": 30000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a3d31fc0c1ab4058b9365233", + "revision": "b07b7033ea824236a5be6717", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38770,9 +44245,18 @@ "original_amount": 30000, "total_amount": 30000, "id": 1686190710908, - "date_created": "2023-06-08T02:18:30.908Z", - "date_last_updated": "2023-06-08T02:18:30.908Z", - "date_of_expiration": "2023-07-08T02:18:30.908Z", + "date_created": { + "type": 6, + "value": 1686190710908 + }, + "date_last_updated": { + "type": 6, + "value": 1686190710908 + }, + "date_of_expiration": { + "type": 6, + "value": 1688782710908 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38780,10 +44264,10 @@ "currency_id": "IVIP", "history_id": 1686190710908 }, - "revision": "34d4ba0c53a841b687175549", + "revision": "fe716f6008d04c288b29a038", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38791,10 +44275,10 @@ "content": { "type": "STRING", "value": "Investimento de 30.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/7/2023", - "revision": "9a24d711f1274300acd8deef", + "revision": "9747f25cc3d3440faca364e3", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38812,12 +44296,12 @@ "installment_amount": 14524522, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a063f42eda2e45928be3ffc9", + "revision": "07b7b5795e6841e2a4ab24a8", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38832,9 +44316,18 @@ "original_amount": 14524522, "total_amount": 14524522, "id": 1687472497935, - "date_created": "2023-06-22T22:21:37.935Z", - "date_last_updated": "2023-06-22T22:21:37.935Z", - "date_of_expiration": "2025-06-22T22:21:37.935Z", + "date_created": { + "type": 6, + "value": 1687472497935 + }, + "date_last_updated": { + "type": 6, + "value": 1687472497935 + }, + "date_of_expiration": { + "type": 6, + "value": 1750630897935 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38842,10 +44335,10 @@ "currency_id": "IVIP", "history_id": 1687472497935 }, - "revision": "32dd4a523f134b0291f23663", + "revision": "07b6e0a5f3094995b974fabd", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38853,10 +44346,10 @@ "content": { "type": "STRING", "value": "Investimento de 14.524.522,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/22/2025", - "revision": "dd678bf9dfa247f49fe0a0c5", + "revision": "b1abf88f0baa4b0c94a696e3", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38864,12 +44357,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "13b3c5e6f3194b6a982095cc", + "revision": "dd0b1b9b31bc4504aea243c9", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38884,22 +44377,37 @@ "total_amount": 13795833, "history_id": 1688575377865, "id": 1688575377865, - "date_created": "2023-07-05T16:42:57.865Z", - "date_last_updated": "2023-07-07T23:13:24.088Z", - "date_of_expiration": "2023-07-05T16:42:57.865Z", + "date_created": { + "type": 6, + "value": 1688575377865 + }, + "date_last_updated": { + "type": 6, + "value": 1688771604088 + }, + "date_of_expiration": { + "type": 6, + "value": 1688575377865 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-07-07T23:13:24.088Z", - "money_release_date": "2023-07-07T23:13:24.088Z", + "date_approved": { + "type": 6, + "value": 1688771604088 + }, + "money_release_date": { + "type": 6, + "value": 1688771604088 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "58a9d241c5fd42149166b95b", + "revision": "8d929e3cf0594ab69dd9fdf7", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38907,10 +44415,10 @@ "content": { "type": "STRING", "value": "Saque de 13.795.833,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", - "revision": "05b85524bc9b43f1a75b19b0", + "revision": "7f3fb48f797940f38b136a17", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38928,12 +44436,12 @@ "installment_amount": 30000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "5b5b01916b1b41a9b624bda4", + "revision": "f058cce1423f477684de6c6d", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38948,9 +44456,18 @@ "original_amount": 30600, "total_amount": 30600, "id": 1689804799815, - "date_created": "2023-07-19T22:13:19.815Z", - "date_last_updated": "2023-07-19T22:13:19.815Z", - "date_of_expiration": "2023-07-19T22:13:19.815Z", + "date_created": { + "type": 6, + "value": 1689804799815 + }, + "date_last_updated": { + "type": 6, + "value": 1689804799815 + }, + "date_of_expiration": { + "type": 6, + "value": 1689804799815 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -38959,10 +44476,10 @@ "history_id": 1689804799815, "wasDebited": true }, - "revision": "e6c13a7d5dfc4197a076acb1", + "revision": "d2dcaf8286214009aab2e6bc", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -38970,10 +44487,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 30.000,00 IVIP com um rendimento de +600,00 IVIP (2,00%)", - "revision": "5f7e1300891a40dc9cbd72f8", + "revision": "905a7910a99941b28f428222", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820530, + "modified": 1701465820530 } }, { @@ -38989,12 +44506,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "f77dacfffa044e90b2e48ebb", + "revision": "b228e4734d5d4568b67c285f", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39002,10 +44519,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1690467644472", - "revision": "5eed608ccc9749288de433c3", + "revision": "62acc021927840f9bb374f70", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39020,9 +44537,18 @@ "total_amount": 30600, "id": 1690467644472, "history_id": 1690467644472, - "date_created": "2023-07-27T14:20:44.472Z", - "date_last_updated": "2023-07-27T14:20:44.472Z", - "date_of_expiration": "2023-08-27T14:20:44.468Z", + "date_created": { + "type": 6, + "value": 1690467644472 + }, + "date_last_updated": { + "type": 6, + "value": 1690467644472 + }, + "date_of_expiration": { + "type": 6, + "value": 1693146044468 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -39030,10 +44556,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "cefc2736dde545f6a5d65d39", + "revision": "9be94c9b47f8465e95586e73", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39041,10 +44567,10 @@ "content": { "type": "STRING", "value": "Investimento de 30.600,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/27/2023", - "revision": "bf04ac1b859b49f299027d7b", + "revision": "1db3ef13ece146908ae2ddd8", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39060,12 +44586,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "3f6f8b4af75c4d02b2890f02", + "revision": "285755ff8ad94f5e9d2aa373", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39073,10 +44599,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1693147070930", - "revision": "afad235fe6bb4984ad567130", + "revision": "4178d1c5b2f6450f9a29f791", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39091,9 +44617,18 @@ "total_amount": 30600, "id": "1693147070930", "history_id": "1693147070930", - "date_created": "2023-08-27T14:37:50.930Z", - "date_last_updated": "2023-08-27T14:37:50.930Z", - "date_of_expiration": "2023-08-27T14:37:50.930Z", + "date_created": { + "type": 6, + "value": 1693147070930 + }, + "date_last_updated": { + "type": 6, + "value": 1693147070930 + }, + "date_of_expiration": { + "type": 6, + "value": 1693147070930 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -39101,10 +44636,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "5af855fae4d9410590dfd5af", + "revision": "99b5aa34bc7149dd88acb9d4", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39112,10 +44647,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 30.600,00 IVIP com um rendimento de +612,00 IVIP (2,00%)", - "revision": "81dc292e26134be392696660", + "revision": "ec42fa99bd884e919ff1f865", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39131,12 +44666,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "c1f5e7df99dc4eaab7db1c36", + "revision": "87ff64ba31b5492395737976", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39144,10 +44679,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1693780247117", - "revision": "b77895cdb91645eebf081bea", + "revision": "60cd04edf665454abffd63bf", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39162,9 +44697,18 @@ "total_amount": 2500, "id": "1693780247117", "history_id": "1693780247117", - "date_created": "2023-09-03T22:30:47.117Z", - "date_last_updated": "2023-09-03T22:30:47.117Z", - "date_of_expiration": "2023-10-03T22:30:47.116Z", + "date_created": { + "type": 6, + "value": 1693780247117 + }, + "date_last_updated": { + "type": 6, + "value": 1693780247117 + }, + "date_of_expiration": { + "type": 6, + "value": 1696372247116 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -39172,10 +44716,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "68b5401484d14b1d868118ff", + "revision": "27f258e6a02942d59a538bb0", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39183,10 +44727,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.500,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "3bc0d986df5a4983a1656293", + "revision": "30e2571b3d044c95808a247e", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39202,12 +44746,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "669101d0cd584b4cb69abf5f", + "revision": "e635396aa55e48969407deb0", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39215,10 +44759,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696382633982", - "revision": "65854e416ea44f22bbc9f849", + "revision": "cd7ae4d3dddc45f7bcac8edc", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39234,9 +44778,18 @@ "total_amount": 2550, "id": "1696382633982", "history_id": "1696382633982", - "date_created": "2023-10-04T01:23:53.982Z", - "date_last_updated": "2023-10-04T01:23:53.982Z", - "date_of_expiration": "2023-10-04T01:23:53.982Z", + "date_created": { + "type": 6, + "value": 1696382633982 + }, + "date_last_updated": { + "type": 6, + "value": 1696382633982 + }, + "date_of_expiration": { + "type": 6, + "value": 1696382633982 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -39244,10 +44797,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "8548240f0b8a4af29c9430ce", + "revision": "92ed61605b3b4de496c389ee", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39255,10 +44808,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "ce436e4c06e54a93aa1019a1", + "revision": "a5d7ae4b626d4320869a84d4", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39274,12 +44827,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "7e0ee8b378e6445880c7aa23", + "revision": "1e59d7ccdfce425691e2307c", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39287,10 +44840,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242905", - "revision": "561a6c21afef47ecbef14867", + "revision": "054aa0767255496bbb3a48a9", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39306,9 +44859,18 @@ "total_amount": 2550, "id": "1696384242905", "history_id": "1696384242905", - "date_created": "2023-10-04T01:50:42.905Z", - "date_last_updated": "2023-10-04T01:50:42.905Z", - "date_of_expiration": "2023-10-04T01:50:42.905Z", + "date_created": { + "type": 6, + "value": 1696384242905 + }, + "date_last_updated": { + "type": 6, + "value": 1696384242905 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384242905 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -39316,10 +44878,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "0402e9595ffe47989e51489c", + "revision": "fa81c83429784d3f8c74c9b7", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39327,10 +44889,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "cd058c4853b74cf68c1ca198", + "revision": "d7c43de23bff49238d8320f4", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39346,12 +44908,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "de2847bbe7704abf9062e686", + "revision": "b2a1e9f765c7442bba6f3ef1", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39359,10 +44921,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242925", - "revision": "a4de0d80d8e04ea0978c9f3a", + "revision": "11e528f8c74647688eb3c56f", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39378,9 +44940,18 @@ "total_amount": 2550, "id": "1696384242925", "history_id": "1696384242925", - "date_created": "2023-10-04T01:50:42.925Z", - "date_last_updated": "2023-10-04T01:50:42.925Z", - "date_of_expiration": "2023-10-04T01:50:42.925Z", + "date_created": { + "type": 6, + "value": 1696384242925 + }, + "date_last_updated": { + "type": 6, + "value": 1696384242925 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384242925 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -39388,10 +44959,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "a3be872e532e41de8f7e8373", + "revision": "e23894b0a71a4a439931675d", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39399,10 +44970,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "d751199a3df449e09987c519", + "revision": "53caa0e75c7c40bebb9631d1", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39418,12 +44989,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "2cf67ed20939428aac722a32", + "revision": "7794af8bd00e45dfa3692766", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39431,10 +45002,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242931", - "revision": "7648b09793a5449f91140983", + "revision": "86606fc63afd48acaf55e635", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39450,9 +45021,18 @@ "total_amount": 2550, "id": "1696384242931", "history_id": "1696384242931", - "date_created": "2023-10-04T01:50:42.931Z", - "date_last_updated": "2023-10-04T01:50:42.931Z", - "date_of_expiration": "2023-10-04T01:50:42.931Z", + "date_created": { + "type": 6, + "value": 1696384242931 + }, + "date_last_updated": { + "type": 6, + "value": 1696384242931 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384242931 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -39460,10 +45040,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "45b4766fdfbd45b29f3d0f93", + "revision": "8dc0842b041e4563acce870c", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39471,10 +45051,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "e04ddde134fe4d6bab63ade8", + "revision": "c462cccbfe524b518478c142", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39490,12 +45070,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "30c38026e3554cd393a9edc0", + "revision": "f66193f1d7894e01847879b5", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39503,10 +45083,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384243125", - "revision": "abbdd470273348eab3c075b6", + "revision": "667d1d5dbd634d67935d1423", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39522,9 +45102,18 @@ "total_amount": 2550, "id": "1696384243125", "history_id": "1696384243125", - "date_created": "2023-10-04T01:50:43.125Z", - "date_last_updated": "2023-10-04T01:50:43.125Z", - "date_of_expiration": "2023-10-04T01:50:43.125Z", + "date_created": { + "type": 6, + "value": 1696384243125 + }, + "date_last_updated": { + "type": 6, + "value": 1696384243125 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384243125 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -39532,10 +45121,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "c6f6b8bf4fc347bcba159a0b", + "revision": "7fb3225bd0594ecfa135fa75", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39543,10 +45132,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "d50c6fe7a072438eb9899168", + "revision": "3d87786b6bb7440dbc43b281", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39562,12 +45151,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "9e5d81432ad5421cb85f6219", + "revision": "94b0be5606d64552b8c6b774", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39575,10 +45164,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384243425", - "revision": "ae05f461ca8140e8b9c29aaa", + "revision": "a8f3cbc40fad4704bec8dbca", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39594,9 +45183,18 @@ "total_amount": 2550, "id": "1696384243425", "history_id": "1696384243425", - "date_created": "2023-10-04T01:50:43.425Z", - "date_last_updated": "2023-10-04T01:50:43.425Z", - "date_of_expiration": "2023-10-04T01:50:43.425Z", + "date_created": { + "type": 6, + "value": 1696384243425 + }, + "date_last_updated": { + "type": 6, + "value": 1696384243425 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384243425 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -39604,10 +45202,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "862d68b3002f47629753c0c1", + "revision": "36f848cb71044f70aafc6e36", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39615,10 +45213,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "5cb13ed081ca4953b372874f", + "revision": "5ae3953b061f45efaa180037", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39634,12 +45232,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "9f948fbc2fb8450599636d01", + "revision": "fb8b78bc14cd4a508ef6c274", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39647,10 +45245,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384244783", - "revision": "d79cf1433a5a48b884575d8b", + "revision": "8f324fefb3be4a35ae984619", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39666,9 +45264,18 @@ "total_amount": 2550, "id": "1696384244783", "history_id": "1696384244783", - "date_created": "2023-10-04T01:50:44.783Z", - "date_last_updated": "2023-10-04T01:50:44.783Z", - "date_of_expiration": "2023-10-04T01:50:44.783Z", + "date_created": { + "type": 6, + "value": 1696384244783 + }, + "date_last_updated": { + "type": 6, + "value": 1696384244783 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384244783 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -39676,10 +45283,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "e1908aa8bd9a48fa87e0d4ad", + "revision": "aaff6c1ebf1a4d90a19c5abd", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39687,10 +45294,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "a167351b23724a99b63c68dd", + "revision": "85618e7378ac4266b343413e", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39706,12 +45313,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "4381bcdb270a433fb1219340", + "revision": "b804ef680b744344bdd2c3d9", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39719,10 +45326,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384244885", - "revision": "82134510c4414a86909aaa98", + "revision": "8a71fd8611d946e3b5c3f0d3", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39738,9 +45345,18 @@ "total_amount": 2550, "id": "1696384244885", "history_id": "1696384244885", - "date_created": "2023-10-04T01:50:44.885Z", - "date_last_updated": "2023-10-04T01:50:44.885Z", - "date_of_expiration": "2023-10-04T01:50:44.885Z", + "date_created": { + "type": 6, + "value": 1696384244885 + }, + "date_last_updated": { + "type": 6, + "value": 1696384244885 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384244885 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -39748,10 +45364,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "ef75409c1bbe4edab35d9a90", + "revision": "bf6fe2c58662435db0706ae0", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39759,10 +45375,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "64ab7b5dd48346e1b3b09358", + "revision": "c26f3c94dc88443b8ca37e43", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39770,10 +45386,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "63d665ae7042467cb8f7f2d0", + "revision": "4c9089ad149d4791887685dd", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39781,10 +45397,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2e8067ea48f542c79e85f4a9", + "revision": "44efcc2f2e114e91968fe95e", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39795,10 +45411,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "308cd65c8e804bc8974f1a70", + "revision": "c5af1b0b8fe04bf185493f6b", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39811,10 +45427,10 @@ "totalValue": 9.579933648427893, "currencyType": "USD" }, - "revision": "f81bb3778d8946258769adf9", + "revision": "a8eb21fee89b4cee96e256e1", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39822,10 +45438,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "31219057e96e446bbd9739a2", + "revision": "af424c14f89f49af96582fa3", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39833,10 +45449,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "92773111529b45d0b8844d3c", + "revision": "5999f7e25dac4445b21043cd", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39848,10 +45464,10 @@ "dateValidity": 1696468517276, "currencyType": "USD" }, - "revision": "d7f606a256f94caea34c598e", + "revision": "7f5352545d7b41698e4bfbfb", "revision_nr": 1, - "created": 1701463509557, - "modified": 1701463509557 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39863,10 +45479,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "f6c27bf965894be4846dad8e", + "revision": "15d1054b258e41c29de7c01f", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39878,10 +45494,10 @@ "symbol": "IVIP", "value": 263.24 }, - "revision": "d4fc3cfc75744aacb117b136", + "revision": "47549bb2d2b3468aa3014728", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39889,10 +45505,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a28066d7946c45e4886cdb4d", + "revision": "9c1c8b56fb264f65b10bf2f3", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39900,12 +45516,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "19af1d1de629440d8433dd8e", + "revision": "5986d7d8657c4303ab1c1bea", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39920,22 +45536,37 @@ "total_amount": 50, "history_id": 1678221951810, "id": 1678221951810, - "date_created": "2023-03-07T20:45:51.810Z", - "date_last_updated": "2023-03-08T13:21:59.635Z", - "date_of_expiration": "2023-04-06T20:45:51.810Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-08T13:21:59.635Z", - "money_release_date": "2023-03-08T13:21:59.635Z", + "date_created": { + "type": 6, + "value": 1678221951810 + }, + "date_last_updated": { + "type": 6, + "value": 1678281719635 + }, + "date_of_expiration": { + "type": 6, + "value": 1680813951810 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678281719635 + }, + "money_release_date": { + "type": 6, + "value": 1678281719635 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "cda62dd1a5b64b6883e62331", + "revision": "3d905316489147bc8beef95c", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39943,10 +45574,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0532.9875.7978.5992-90", - "revision": "3c1327968c1846b795563fb2", + "revision": "913d2f8ec36046c89a0fc720", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39954,12 +45585,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "69740fd2b05b47578c56fdb4", + "revision": "d67a5a61225842c0861cc22d", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39974,22 +45605,37 @@ "total_amount": 100, "history_id": 1679009072784, "id": 1679009072784, - "date_created": "2023-03-16T23:24:32.784Z", - "date_last_updated": "2023-03-20T14:29:47.158Z", - "date_of_expiration": "2023-04-15T23:24:32.784Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-20T14:29:47.158Z", - "money_release_date": "2023-03-20T14:29:47.158Z", + "date_created": { + "type": 6, + "value": 1679009072784 + }, + "date_last_updated": { + "type": 6, + "value": 1679322587158 + }, + "date_of_expiration": { + "type": 6, + "value": 1681601072784 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679322587158 + }, + "money_release_date": { + "type": 6, + "value": 1679322587158 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "745357a72b8f4c0598b25e0c", + "revision": "ff74ff219b51481b9fd1db5d", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -39997,10 +45643,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0532.9875.7978.5992-90", - "revision": "ae6f35f51fe247af8aee618f", + "revision": "1f12f894d68448dda9fbf279", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -40008,12 +45654,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "4113f940add34fc697ca4562", + "revision": "9ad52c39339c416184fa3dc2", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -40028,20 +45674,32 @@ "total_amount": 100, "history_id": 1679009122145, "id": 1679009122145, - "date_created": "2023-03-16T23:25:22.145Z", - "date_last_updated": "2023-03-20T14:32:34.987Z", - "date_of_expiration": "2023-04-15T23:25:22.145Z", + "date_created": { + "type": 6, + "value": 1679009122145 + }, + "date_last_updated": { + "type": 6, + "value": 1679322754987 + }, + "date_of_expiration": { + "type": 6, + "value": 1681601122145 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-03-20T14:32:34.987Z", + "money_release_date": { + "type": 6, + "value": 1679322754987 + }, "money_release_status": "rejected" }, - "revision": "1a2efd957e0841578b31594a", + "revision": "52e871215c8c48b1a6726853", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -40049,10 +45707,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0532.9875.7978.5992-90", - "revision": "0a9d3694f51a4212a99c470f", + "revision": "ee8471aea5cc4baab1d54db7", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -40070,12 +45728,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "7dad593f0a334f5b9413d17c", + "revision": "1302e54e384d48ddb242b786", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -40091,9 +45749,18 @@ "original_amount": 812799, "total_amount": 812799, "id": 1680059811857, - "date_created": "2023-03-29T03:16:51.857Z", - "date_last_updated": "2023-03-29T03:16:51.857Z", - "date_of_expiration": "2023-03-29T03:16:51.857Z", + "date_created": { + "type": 6, + "value": 1680059811857 + }, + "date_last_updated": { + "type": 6, + "value": 1680059811857 + }, + "date_of_expiration": { + "type": 6, + "value": 1680059811857 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -40102,10 +45769,10 @@ "history_id": 1680059811857, "description": "Compra de 812.799,00 IVIP por 150,00 BRL" }, - "revision": "0a4804c9dc8a42d085310847", + "revision": "1deefdab99664aec90ce0d77", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -40113,12 +45780,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "affbbab7846348dcb2b4f08c", + "revision": "8cf3044d9b034aebb72c1062", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -40133,18 +45800,27 @@ "total_amount": 812799, "history_id": 1687793732463, "id": 1687793732463, - "date_created": "2023-06-26T15:35:32.463Z", - "date_last_updated": "2023-06-26T15:35:32.463Z", - "date_of_expiration": "2023-06-26T15:35:32.463Z", + "date_created": { + "type": 6, + "value": 1687793732463 + }, + "date_last_updated": { + "type": 6, + "value": 1687793732463 + }, + "date_of_expiration": { + "type": 6, + "value": 1687793732463 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "1301d671391045ee860c3e31", + "revision": "0e4b7179f98e4a8694342cfb", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -40152,10 +45828,10 @@ "content": { "type": "STRING", "value": "Saque de 812.799,00 IVIP para a carteira 0x76DD50e5E925D29D22251e5b2A71bBB9b5672254", - "revision": "9c65ed89c76e4023ad0c7904", + "revision": "17d56eee862f4f1493171983", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -40163,10 +45839,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "810effef10984a8a83f116fe", + "revision": "9996ee6c88e742f7abf89eb2", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -40174,10 +45850,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2c23919a5c4841888ddfddec", + "revision": "554d1b9157734c51b0d22264", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -40188,10 +45864,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "e8f9ee57ce114a93a9eb5bf1", + "revision": "c9a01b1ef73a4c85a836a5d9", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -40205,10 +45881,10 @@ "currencyType": "USD", "balancesModificacao": 1689822000000 }, - "revision": "6e9cd7a6eab54334a9bcef24", + "revision": "f9c5191a961a45e5bd234f7d", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -40220,10 +45896,10 @@ "symbol": "IVIP", "value": 6.23 }, - "revision": "4efae330971e44fe86d79ce3", + "revision": "46eb0f8a3b204fffb795a83e", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -40231,10 +45907,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "64465b8a301747b1abb528ff", + "revision": "d3cc36373c5c443db49d2a04", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820531, + "modified": 1701465820531 } }, { @@ -40242,12 +45918,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "919b7446ba814a75a567066a", + "revision": "99345887ab8c4b31b1711634", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40262,22 +45938,37 @@ "total_amount": 120, "history_id": 1689173674893, "id": 1689173674893, - "date_created": "2023-07-12T14:54:34.893Z", - "date_last_updated": "2023-07-12T16:57:39.550Z", - "date_of_expiration": "2023-08-11T14:54:34.893Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-12T16:57:39.550Z", - "money_release_date": "2023-07-12T16:57:39.550Z", + "date_created": { + "type": 6, + "value": 1689173674893 + }, + "date_last_updated": { + "type": 6, + "value": 1689181059550 + }, + "date_of_expiration": { + "type": 6, + "value": 1691765674893 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689181059550 + }, + "money_release_date": { + "type": 6, + "value": 1689181059550 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "6b45039d1e9646c1a01d9297", + "revision": "4506d5664e794a98a2ce34b9", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40285,10 +45976,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 120,00 para a carteira iVip 0543.4133.5642.4860-00", - "revision": "a78b5fc819f744bbb72a1c33", + "revision": "1ae5145160354db7b6582877", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40306,12 +45997,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "83802cc213f143d18ee5bd16", + "revision": "158fb6e789fe4229b901420d", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40327,9 +46018,18 @@ "original_amount": 51023, "total_amount": 51023, "id": 1689182033050, - "date_created": "2023-07-12T17:13:53.050Z", - "date_last_updated": "2023-07-12T17:13:53.050Z", - "date_of_expiration": "2023-07-12T17:13:53.050Z", + "date_created": { + "type": 6, + "value": 1689182033050 + }, + "date_last_updated": { + "type": 6, + "value": 1689182033050 + }, + "date_of_expiration": { + "type": 6, + "value": 1689182033050 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -40338,10 +46038,10 @@ "history_id": 1689182033050, "description": "Compra de 51.023,00 IVIP por 120,00 BRL" }, - "revision": "52b7310f7abe4612998b5e24", + "revision": "775a51f127bd462ea9309939", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40349,10 +46049,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9d802ffd1c074e43881bd55e", + "revision": "f7696b20e1d842e1b8ef907c", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40360,10 +46060,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8f967995d55a422197cfd33b", + "revision": "798c3b7f8c194886abc04471", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40374,10 +46074,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "e68cee6b55604a06aaf02982", + "revision": "b7e802e4d9f6442980c488a1", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40389,12 +46089,15 @@ "dateValidity": 1689173582935, "totalValue": 24.77, "currencyType": "USD", - "balancesModificacao": "2023-10-10T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696906800000 + } }, - "revision": "deb07bbd25394fed8e9c688c", + "revision": "92f0bcfad6354bab98ffe543", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40402,10 +46105,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8058acbfc27b4f34b812d9d2", + "revision": "e696a613af624fcaa9917dff", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40414,12 +46117,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-11T02:45:06.134Z" + ".val": { + "type": 6, + "value": 1699670706134 + } }, - "revision": "dd107cb714a24d489eb38eaf", + "revision": "e5019ecc3351464da076dba4", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40435,12 +46141,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "0e76019a60b945b4b041540e", + "revision": "85330c5501aa476bb2faa544", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40448,10 +46154,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697078706134", - "revision": "f90532c106b5464289149c1d", + "revision": "5dc496ef3707491180d0fa02", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40467,23 +46173,35 @@ "total_amount": 99635.8518, "id": "1697078706134", "history_id": "1697078706134", - "date_created": "2023-10-12T02:45:06.134Z", - "date_last_updated": "2023-10-12T13:47:23.226Z", + "date_created": { + "type": 6, + "value": 1697078706134 + }, + "date_last_updated": { + "type": 6, + "value": 1697118443226 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": "2023-10-12T13:47:23.226Z", - "money_release_date": "2023-10-12T13:47:23.226Z", + "date_approved": { + "type": 6, + "value": 1697118443226 + }, + "money_release_date": { + "type": 6, + "value": 1697118443226 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "8c6d23d897b0442886d8cbca", + "revision": "40297cc32e39483cad6ed930", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40491,10 +46209,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 99.635,85 IVIP para a carteira iVip 0556.4401.2114.1117-40", - "revision": "e5b212a578bc41e8b04bec22", + "revision": "6b5a1495e48b4a4cbddd9160", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40503,12 +46221,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-11T14:06:48.666Z" + ".val": { + "type": 6, + "value": 1699711608666 + } }, - "revision": "2d84a9ed416a43d4899eb78a", + "revision": "901e015fca1c465db5fbcda2", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40524,12 +46245,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "033702bbe89842a8b51f8fee", + "revision": "0f60e2d8b2b24be6a7d14b23", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40537,10 +46258,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697119608666", - "revision": "9fbab0ceecc84ac88173fd34", + "revision": "743d38f83c8d4650864340be", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40556,23 +46277,35 @@ "total_amount": 25, "id": "1697119608666", "history_id": "1697119608666", - "date_created": "2023-10-12T14:06:48.666Z", - "date_last_updated": "2023-10-12T14:33:43.741Z", + "date_created": { + "type": 6, + "value": 1697119608666 + }, + "date_last_updated": { + "type": 6, + "value": 1697121223741 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-10-12T14:33:43.741Z", - "money_release_date": "2023-10-12T14:33:43.741Z", + "date_approved": { + "type": 6, + "value": 1697121223741 + }, + "money_release_date": { + "type": 6, + "value": 1697121223741 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "2d4a2cd87bdd4a6fbbea190e", + "revision": "fd13d72e10854ec482609e39", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40580,10 +46313,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 25,00 BRL para a carteira iVip 0556.4401.2114.1117-40", - "revision": "cb3df63a07b849559686ec17", + "revision": "a333230146784928b576a125", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40599,12 +46332,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "de276e6894154a8caec9253e", + "revision": "b8caa82d4e774ef8be4ededa", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40612,10 +46345,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697122378430", - "revision": "ecb31f18ca974b2d934412dd", + "revision": "365e226199b448b3b95c2974", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40631,9 +46364,18 @@ "total_amount": 46978, "id": "1697122378430", "history_id": "1697122378430", - "date_created": "2023-10-12T14:52:58.430Z", - "date_last_updated": "2023-10-12T14:52:58.430Z", - "date_of_expiration": "2023-10-12T14:52:58.430Z", + "date_created": { + "type": 6, + "value": 1697122378430 + }, + "date_last_updated": { + "type": 6, + "value": 1697122378430 + }, + "date_of_expiration": { + "type": 6, + "value": 1697122378430 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -40642,10 +46384,10 @@ "description": "Compra de 46.978,00 IVIP por 25,00 BRL", "status_detail": "accredited" }, - "revision": "e3d1fdf5a9134e92a57c4afa", + "revision": "05bf79d975dd4b8c9577a3dc", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40653,10 +46395,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9d0f3ac320a841ca99c25951", + "revision": "34495648dacc4e079bf0c1d9", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40664,10 +46406,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fc96a1afcc0a416099c877d7", + "revision": "0c264f7439814273945d7771", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40678,10 +46420,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "e25c5c0d30ca485bb5072800", + "revision": "c1c2a795123b4287b7f38794", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40692,12 +46434,15 @@ "dataModificacao": 1697078617873, "dateValidity": 1697078617917, "currencyType": "USD", - "balancesModificacao": "2023-10-12T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697079600000 + } }, - "revision": "68f88e38018947a79581e89d", + "revision": "8335ae92cf854cfe990d360a", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40709,10 +46454,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "a3e93db9ea924776bedf2ec8", + "revision": "a5b77b01624843d786e1e17e", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40724,10 +46469,10 @@ "symbol": "IVIP", "value": 720.46 }, - "revision": "9552e9e39bcb4ec1ac37c1d1", + "revision": "e91e93befe0c4455950665ce", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40735,10 +46480,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6bcc1b12dcaa47999dde9aa8", + "revision": "102adad182054b0abfcac3df", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40746,12 +46491,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "e1b5c9e75ad74ed3a44e7a3b", + "revision": "15e6a821ad2d4b938273528a", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40766,22 +46511,37 @@ "total_amount": 800, "history_id": 1684093509797, "id": 1684093509797, - "date_created": "2023-05-14T19:45:09.797Z", - "date_last_updated": "2023-05-14T19:50:33.853Z", - "date_of_expiration": "2023-06-13T19:45:09.797Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-14T19:50:33.853Z", - "money_release_date": "2023-05-14T19:50:33.853Z", + "date_created": { + "type": 6, + "value": 1684093509797 + }, + "date_last_updated": { + "type": 6, + "value": 1684093833853 + }, + "date_of_expiration": { + "type": 6, + "value": 1686685509797 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684093833853 + }, + "money_release_date": { + "type": 6, + "value": 1684093833853 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "448c7bbf2b334beda3b5cc13", + "revision": "6c0f173995a349ffbb035201", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40789,10 +46549,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0565.4676.9240.3558-40", - "revision": "dc41c63a316a4a3fb531b96b", + "revision": "1afe4ed2779f421cbb83a269", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40800,12 +46560,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "6bb39a3dcb4f4225aa7dc81b", + "revision": "ae3edfe77f3f460fb6d9f7cf", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40820,22 +46580,37 @@ "total_amount": 299, "history_id": 1684583054149, "id": 1684583054149, - "date_created": "2023-05-20T11:44:14.149Z", - "date_last_updated": "2023-05-20T15:08:23.300Z", - "date_of_expiration": "2023-06-19T11:44:14.149Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-20T15:08:23.300Z", - "money_release_date": "2023-05-20T15:08:23.300Z", + "date_created": { + "type": 6, + "value": 1684583054149 + }, + "date_last_updated": { + "type": 6, + "value": 1684595303300 + }, + "date_of_expiration": { + "type": 6, + "value": 1687175054149 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684595303300 + }, + "money_release_date": { + "type": 6, + "value": 1684595303300 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "f64cb82e67ad4cadbb903770", + "revision": "cc5bc2325c204268a29ad9e4", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40843,10 +46618,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 299,00 para a carteira iVip 0565.4676.9240.3558-40", - "revision": "3dd014c37a204dfe8552dbd5", + "revision": "48527f1c5f8544cfb3c3b449", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40864,12 +46639,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "539b399a164945ff83c547c9", + "revision": "0a6f25a335ae4c6b986c5b19", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40885,9 +46660,18 @@ "original_amount": 5352934, "total_amount": 5352934, "id": 1684624980630, - "date_created": "2023-05-20T23:23:00.630Z", - "date_last_updated": "2023-05-20T23:23:00.630Z", - "date_of_expiration": "2023-05-20T23:23:00.630Z", + "date_created": { + "type": 6, + "value": 1684624980630 + }, + "date_last_updated": { + "type": 6, + "value": 1684624980630 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624980630 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -40896,10 +46680,10 @@ "history_id": 1684624980630, "description": "Compra de 5.352.934,00 IVIP por 1.099,00 BRL" }, - "revision": "a464b514de694c9dbecce0e3", + "revision": "0d6e5dce53154cf3acf1879c", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40907,12 +46691,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "ab5a15579a764930a7bba9c8", + "revision": "e3572c2a8e8749c68c55cf0f", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40927,18 +46711,27 @@ "total_amount": 5352934, "history_id": 1689104056845, "id": 1689104056845, - "date_created": "2023-07-11T19:34:16.845Z", - "date_last_updated": "2023-07-11T19:34:16.845Z", - "date_of_expiration": "2023-07-11T19:34:16.845Z", + "date_created": { + "type": 6, + "value": 1689104056845 + }, + "date_last_updated": { + "type": 6, + "value": 1689104056845 + }, + "date_of_expiration": { + "type": 6, + "value": 1689104056845 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "b65c5a19f7884f9ca5d5084e", + "revision": "4597d5a42e2b4419a4dd78d9", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40946,10 +46739,10 @@ "content": { "type": "STRING", "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", - "revision": "1cba4ab8fde542878fbd0f15", + "revision": "3f9228f705924a3fb1cb3c0b", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40957,12 +46750,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "5355979b15a248329eee4382", + "revision": "933c010b467a4d56b9d4b52f", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40977,18 +46770,27 @@ "total_amount": 5352934, "history_id": 1689104143830, "id": 1689104143830, - "date_created": "2023-07-11T19:35:43.830Z", - "date_last_updated": "2023-07-11T19:35:43.830Z", - "date_of_expiration": "2023-07-11T19:35:43.830Z", + "date_created": { + "type": 6, + "value": 1689104143830 + }, + "date_last_updated": { + "type": 6, + "value": 1689104143830 + }, + "date_of_expiration": { + "type": 6, + "value": 1689104143830 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "f4e50235bc9b46b0804c83f5", + "revision": "951c1e0a086b45348c67339a", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -40996,10 +46798,10 @@ "content": { "type": "STRING", "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", - "revision": "943b4ed58fbf444386e6a4a9", + "revision": "b9b766a765f346d9be4dd972", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41007,12 +46809,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "ee92ab00fee142a6ba05a723", + "revision": "4a0b29e50e9a4eeb9200771a", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41027,18 +46829,27 @@ "total_amount": 5352934, "history_id": 1689646587803, "id": 1689646587803, - "date_created": "2023-07-18T02:16:27.803Z", - "date_last_updated": "2023-07-18T02:16:27.803Z", - "date_of_expiration": "2023-07-18T02:16:27.803Z", + "date_created": { + "type": 6, + "value": 1689646587803 + }, + "date_last_updated": { + "type": 6, + "value": 1689646587803 + }, + "date_of_expiration": { + "type": 6, + "value": 1689646587803 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "2cf71e7cf13e4bc6afc0b14f", + "revision": "a0d151187d7c433da46d5ace", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41046,10 +46857,10 @@ "content": { "type": "STRING", "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", - "revision": "67162e9387034d4fb215587a", + "revision": "8b15f8da93a34f35b4a6c412", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41061,10 +46872,10 @@ "label": "Taxa de 3,00%", "amount": 160588.02 }, - "revision": "c5c3595258e64bddbb2c372d", + "revision": "1356124d2eb8427299c1cfad", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41081,10 +46892,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "aa88420364df4f6fa407717e", + "revision": "d3cba4018c4447268c6d74b5", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41092,10 +46903,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/056546769240355840/history/1692620472334", - "revision": "62773097162f4a9895fb4ec7", + "revision": "b6e2dda697b540a6a82f9699", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41103,10 +46914,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e96c55cdb5c4458882619f46", + "revision": "43f3bb609f4e4423b7752532", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41121,24 +46932,39 @@ "total_amount": 5192345.98, "id": 1692620472334, "history_id": 1692620472334, - "date_created": "2023-08-21T12:21:12.334Z", - "date_last_updated": "2023-08-21T12:21:55.386Z", - "date_of_expiration": "2023-08-21T12:21:12.334Z", + "date_created": { + "type": 6, + "value": 1692620472334 + }, + "date_last_updated": { + "type": 6, + "value": 1692620515386 + }, + "date_of_expiration": { + "type": 6, + "value": 1692620472334 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": "2023-08-21T12:21:55.386Z", - "money_release_date": "2023-08-21T12:21:55.386Z", + "date_approved": { + "type": 6, + "value": 1692620515386 + }, + "money_release_date": { + "type": 6, + "value": 1692620515386 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "5da095cdb2e94fd7a70257c1", + "revision": "efa69e5af7d2447da91e1fc8", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41146,10 +46972,10 @@ "content": { "type": "STRING", "value": "Saque de 5.192.345,98 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", - "revision": "c24e1c21a8c141f68c78b469", + "revision": "a0261619b7a7416fad212f23", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41157,10 +46983,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d4d369e4b33c41ebafe4e663", + "revision": "4dd64b2c23a54f24a04d20ee", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41168,10 +46994,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8404607f7af943e6acbdbb21", + "revision": "09690aa916f94d3f8b6b178e", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41181,12 +47007,15 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-08-18T18:47:04.311Z" + "analysisRequested": { + "type": 6, + "value": 1692384424311 + } }, - "revision": "8ac10b6af2c84bd3969c307b", + "revision": "f63025e8a7f14748954d6e1b", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41198,12 +47027,15 @@ "dateValidity": 1678245807542, "totalValue": 218.81, "currencyType": "USD", - "balancesModificacao": "2023-08-21T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1692586800000 + } }, - "revision": "88fa8a70d5014133a1c858a5", + "revision": "1f687eec14114c6ba226d7f4", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41211,10 +47043,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "bed13088667142a8b937bd0c", + "revision": "1dd22ea9d42e4f3a8fcaec49", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41222,10 +47054,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "74ebfdfad21240118c56352b", + "revision": "d4e09aae48fa4d759990768a", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41238,10 +47070,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "a656df588c4f4f11ba9cd546", + "revision": "eb0f2e81badd4d70878742b0", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41253,10 +47085,10 @@ "symbol": "IVIP", "value": 59.89 }, - "revision": "4e410b4375654dac92bd3acd", + "revision": "7e19b378fbca41b8b0e6e85d", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41264,10 +47096,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "822fbc89d4f64f08a708ca22", + "revision": "ec4a87c8191c4a98af4beb7c", "revision_nr": 1, - "created": 1701463509558, - "modified": 1701463509558 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41275,12 +47107,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "d48d37daec734fbe8bacad77", + "revision": "d053e21e9b314aa490041799", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41295,22 +47127,37 @@ "total_amount": 20, "history_id": 1679346644168, "id": 1679346644168, - "date_created": "2023-03-20T21:10:44.168Z", - "date_last_updated": "2023-03-20T21:15:55.591Z", - "date_of_expiration": "2023-04-19T21:10:44.168Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-20T21:15:55.591Z", - "money_release_date": "2023-03-20T21:15:55.591Z", + "date_created": { + "type": 6, + "value": 1679346644168 + }, + "date_last_updated": { + "type": 6, + "value": 1679346955591 + }, + "date_of_expiration": { + "type": 6, + "value": 1681938644168 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679346955591 + }, + "money_release_date": { + "type": 6, + "value": 1679346955591 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "6e9966680e70448db74fe515", + "revision": "5814bd6e6eb3431e8fafd439", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41318,10 +47165,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "50c64ba6dccd42e1994c6598", + "revision": "9d3ac0a13946456e80f22008", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820532, + "modified": 1701465820532 } }, { @@ -41329,12 +47176,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "435b5a00ec354bf3b064ad93", + "revision": "d56d5221426f486fb9cdaf7b", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41349,22 +47196,37 @@ "total_amount": 20, "history_id": 1679707462559, "id": 1679707462559, - "date_created": "2023-03-25T01:24:22.559Z", - "date_last_updated": "2023-03-25T01:45:37.072Z", - "date_of_expiration": "2023-04-24T01:24:22.559Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-25T01:45:37.072Z", - "money_release_date": "2023-03-25T01:45:37.072Z", + "date_created": { + "type": 6, + "value": 1679707462559 + }, + "date_last_updated": { + "type": 6, + "value": 1679708737072 + }, + "date_of_expiration": { + "type": 6, + "value": 1682299462559 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679708737072 + }, + "money_release_date": { + "type": 6, + "value": 1679708737072 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "bf53f7a70d88483da487552f", + "revision": "416bed2b89fc40eab300c2ca", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41372,10 +47234,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "7ba9e51abaac4c15b3fee271", + "revision": "08d0f5208b31427bb5da05db", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41393,12 +47255,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "59f71cc35a71494e965755de", + "revision": "560da8fdc80647ba91f4286c", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41414,9 +47276,18 @@ "original_amount": 213025, "total_amount": 213025, "id": 1679871671858, - "date_created": "2023-03-26T23:01:11.858Z", - "date_last_updated": "2023-03-26T23:01:11.858Z", - "date_of_expiration": "2023-03-26T23:01:11.858Z", + "date_created": { + "type": 6, + "value": 1679871671858 + }, + "date_last_updated": { + "type": 6, + "value": 1679871671858 + }, + "date_of_expiration": { + "type": 6, + "value": 1679871671858 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -41425,10 +47296,10 @@ "history_id": 1679871671858, "description": "Compra de 213.025,00 IVIP por 40,00 BRL" }, - "revision": "f29b3da4581644789c2d7049", + "revision": "e03274ff3fe140899a3d6a08", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41436,12 +47307,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "233e3bb51b19454281ae1ba0", + "revision": "09427c889aa746aeb42984e6", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41456,18 +47327,27 @@ "total_amount": 20, "history_id": 1689132225947, "id": 1689132225947, - "date_created": "2023-07-12T03:23:45.947Z", - "date_last_updated": "2023-07-12T03:23:45.947Z", - "date_of_expiration": "2023-08-11T03:23:45.947Z", + "date_created": { + "type": 6, + "value": 1689132225947 + }, + "date_last_updated": { + "type": 6, + "value": 1689132225947 + }, + "date_of_expiration": { + "type": 6, + "value": 1691724225947 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "1669d5e65ad8410daf9623c0", + "revision": "1a1df2b623f3486b96be031a", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41475,10 +47355,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "af22cc8f1a4042559cfdec48", + "revision": "5509d746065447d8a33cebd6", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41486,12 +47366,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "eab73d04818d4c819d880356", + "revision": "b1e8b700891b405db3d1a504", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41506,18 +47386,27 @@ "total_amount": 50, "history_id": 1689175940633, "id": 1689175940633, - "date_created": "2023-07-12T15:32:20.633Z", - "date_last_updated": "2023-07-12T15:32:20.633Z", - "date_of_expiration": "2023-08-11T15:32:20.633Z", + "date_created": { + "type": 6, + "value": 1689175940633 + }, + "date_last_updated": { + "type": 6, + "value": 1689175940633 + }, + "date_of_expiration": { + "type": 6, + "value": 1691767940633 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "5b344ca346a649588813523c", + "revision": "e2ffe483fbf84ae38e03a357", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41525,10 +47414,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "4127a2c3dc67410c9bc841bb", + "revision": "c385a3e160204a23aca999e2", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41536,12 +47425,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "7303ff943840458cbbbf4433", + "revision": "ac8e0248a1d2493a93257c8e", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41556,18 +47445,27 @@ "total_amount": 50, "history_id": 1689367674517, "id": 1689367674517, - "date_created": "2023-07-14T20:47:54.517Z", - "date_last_updated": "2023-07-14T20:47:54.517Z", - "date_of_expiration": "2023-08-13T20:47:54.517Z", + "date_created": { + "type": 6, + "value": 1689367674517 + }, + "date_last_updated": { + "type": 6, + "value": 1689367674517 + }, + "date_of_expiration": { + "type": 6, + "value": 1691959674517 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "4a96d1311f734f0d92a4dc27", + "revision": "23a6ca064fe84fec99b5bb31", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41575,10 +47473,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "090f0c1429c94679ab1b02a0", + "revision": "b1cf30ff5d3c4192b0a7f807", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41586,12 +47484,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "fc456bc050714e5e8696ce63", + "revision": "dc88e9bfdff4474d8b51bba4", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41606,22 +47504,37 @@ "total_amount": 50, "history_id": 1689622072746, "id": 1689622072746, - "date_created": "2023-07-17T19:27:52.746Z", - "date_last_updated": "2023-07-17T19:33:11.229Z", - "date_of_expiration": "2023-08-16T19:27:52.746Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-17T19:33:11.229Z", - "money_release_date": "2023-07-17T19:33:11.229Z", + "date_created": { + "type": 6, + "value": 1689622072746 + }, + "date_last_updated": { + "type": 6, + "value": 1689622391229 + }, + "date_of_expiration": { + "type": 6, + "value": 1692214072746 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689622391229 + }, + "money_release_date": { + "type": 6, + "value": 1689622391229 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "1fdb7f21b3fb4eb0bd0d825c", + "revision": "859d2a77887a4e4a837490c6", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41629,10 +47542,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "f170bdbab9494c5e98cfbfba", + "revision": "1e399b838a9546cf9b1e1f31", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41650,12 +47563,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "06b2e51969fb441ba48e4556", + "revision": "e4761ebd42eb49b89ead64ff", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41671,9 +47584,18 @@ "original_amount": 32205, "total_amount": 32205, "id": 1689623842206, - "date_created": "2023-07-17T19:57:22.206Z", - "date_last_updated": "2023-07-17T19:57:22.206Z", - "date_of_expiration": "2023-07-17T19:57:22.206Z", + "date_created": { + "type": 6, + "value": 1689623842206 + }, + "date_last_updated": { + "type": 6, + "value": 1689623842206 + }, + "date_of_expiration": { + "type": 6, + "value": 1689623842206 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -41682,10 +47604,10 @@ "history_id": 1689623842206, "description": "Compra de 32.205,00 IVIP por 50,00 BRL" }, - "revision": "f7dde4cc842e4c01a01c710d", + "revision": "9adbb0d96225422eba869a9e", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41694,12 +47616,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-20T21:23:50.901Z" + ".val": { + "type": 6, + "value": 1692566630901 + } }, - "revision": "2655244bc2374fadbec6edcc", + "revision": "bf68e4c534bf422fa6238cd3", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41715,12 +47640,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "92bfa12689db4816b52aa512", + "revision": "da08c5b416444cd0872b34f6", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41728,10 +47653,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1689974630901", - "revision": "009c8a07fb6145fcbff81b78", + "revision": "08a5c5d65ff34426a0b74fbf", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41746,8 +47671,14 @@ "total_amount": 20, "id": 1689974630901, "history_id": 1689974630901, - "date_created": "2023-07-21T21:23:50.901Z", - "date_last_updated": "2023-07-21T21:23:50.901Z", + "date_created": { + "type": 6, + "value": 1689974630901 + }, + "date_last_updated": { + "type": 6, + "value": 1689974630901 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -41755,10 +47686,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "b3bc7701cde245f7879a0b77", + "revision": "73c4a0d363494ab9bf279719", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41766,10 +47697,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "2f8dcc05f0274d269b452f36", + "revision": "92e17c9baf83474991d5dbe0", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41778,12 +47709,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-24T00:44:32.747Z" + ".val": { + "type": 6, + "value": 1692837872747 + } }, - "revision": "7140d9b10a4a49ebadc9bc92", + "revision": "af14779493a6455b802678ec", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41799,12 +47733,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "dd80e33d872e4764aedf30aa", + "revision": "df59969d9bea487198890837", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41812,10 +47746,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1690245872747", - "revision": "084737b675d04f95be7df622", + "revision": "08f8c58cb8a34dd783ac4d4d", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41830,23 +47764,35 @@ "total_amount": 20, "id": 1690245872747, "history_id": 1690245872747, - "date_created": "2023-07-25T00:44:32.747Z", - "date_last_updated": "2023-07-25T18:21:16.564Z", + "date_created": { + "type": 6, + "value": 1690245872747 + }, + "date_last_updated": { + "type": 6, + "value": 1690309276564 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-07-25T18:21:16.564Z", - "money_release_date": "2023-07-25T18:21:16.564Z", + "date_approved": { + "type": 6, + "value": 1690309276564 + }, + "money_release_date": { + "type": 6, + "value": 1690309276564 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "4fc4e8370dab426298032b27", + "revision": "dacff5dffaa448d28cfeb88d", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41854,10 +47800,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "87e0ea7f8c24417fb2db5546", + "revision": "7e6ca2172d2c4ebcacda6c5f", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41875,12 +47821,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b4227028b4d345e78dcdd688", + "revision": "df95e8b062454aa4b794d8bb", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41896,9 +47842,18 @@ "original_amount": 16406, "total_amount": 16406, "id": 1690318679149, - "date_created": "2023-07-25T20:57:59.149Z", - "date_last_updated": "2023-07-25T20:57:59.149Z", - "date_of_expiration": "2023-07-25T20:57:59.149Z", + "date_created": { + "type": 6, + "value": 1690318679149 + }, + "date_last_updated": { + "type": 6, + "value": 1690318679149 + }, + "date_of_expiration": { + "type": 6, + "value": 1690318679149 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -41907,10 +47862,10 @@ "history_id": 1690318679149, "description": "Compra de 16.406,00 IVIP por 20,00 BRL" }, - "revision": "4bd224c0ddfa493dbf3932ce", + "revision": "a097a5b650a74ccc8b58af61", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41919,12 +47874,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-18T19:33:06.359Z" + ".val": { + "type": 6, + "value": 1695065586359 + } }, - "revision": "5f7c25ef5c4441d9843eb84e", + "revision": "7f2fd90607b24630888bdc2b", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41940,12 +47898,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "dc81968a93944581834510c4", + "revision": "eeef439f665c4d30a9c355e0", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41953,10 +47911,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692473586359", - "revision": "19de19f3983f4183a22c0626", + "revision": "7e3daa17ed964c4bb45e6528", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41971,23 +47929,35 @@ "total_amount": 20, "id": 1692473586359, "history_id": 1692473586359, - "date_created": "2023-08-19T19:33:06.359Z", - "date_last_updated": "2023-08-19T20:22:50.838Z", + "date_created": { + "type": 6, + "value": 1692473586359 + }, + "date_last_updated": { + "type": 6, + "value": 1692476570838 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-19T20:22:50.838Z", - "money_release_date": "2023-08-19T20:22:50.838Z", + "date_approved": { + "type": 6, + "value": 1692476570838 + }, + "money_release_date": { + "type": 6, + "value": 1692476570838 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "e709f8305e0b47728160b298", + "revision": "475d96561e5041ab83a978cb", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -41995,10 +47965,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "4f8c7ac1b0954a5f82d8db94", + "revision": "b00a96046a96496aac828815", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42014,12 +47984,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "92c8e9bb50dc4d0496fcaf40", + "revision": "087637866b374335860d7b1a", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42027,10 +47997,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692476742525", - "revision": "c1ff5dde966d4a3f9be50be4", + "revision": "14de1b85b14a4fb09b856915", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42045,9 +48015,18 @@ "total_amount": 32045, "id": 1692476742525, "history_id": 1692476742525, - "date_created": "2023-08-19T20:25:42.525Z", - "date_last_updated": "2023-08-19T20:25:42.525Z", - "date_of_expiration": "2023-08-19T20:25:42.525Z", + "date_created": { + "type": 6, + "value": 1692476742525 + }, + "date_last_updated": { + "type": 6, + "value": 1692476742525 + }, + "date_of_expiration": { + "type": 6, + "value": 1692476742525 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -42056,10 +48035,10 @@ "description": "Compra de 32.045,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "29ce76aef2374cb8b5aa4fc8", + "revision": "dd2193ca744043b2ad704935", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42068,12 +48047,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-24T20:53:30.545Z" + ".val": { + "type": 6, + "value": 1695588810545 + } }, - "revision": "11ce5ce8f7d24286b8e074fe", + "revision": "34a8a48d353b4b1793a8ed0f", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42089,12 +48071,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "e60bd05acac94441835cfaa5", + "revision": "c1bf1a7378424437a76c7fd3", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42102,10 +48084,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692996810545", - "revision": "a22f22224ce44924ab67edb2", + "revision": "3895078a5ff8438b84874e4a", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42120,8 +48102,14 @@ "total_amount": 20, "id": "1692996810545", "history_id": "1692996810545", - "date_created": "2023-08-25T20:53:30.545Z", - "date_last_updated": "2023-08-25T20:53:30.545Z", + "date_created": { + "type": 6, + "value": 1692996810545 + }, + "date_last_updated": { + "type": 6, + "value": 1692996810545 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -42129,10 +48117,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "57c494bc8f1e44f18f4f1146", + "revision": "e6ee381bac2e4bdeb467d10b", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42140,10 +48128,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "022f82681d9b41738e96a6a1", + "revision": "11ea2792de5e4674aaad6572", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42152,12 +48140,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-24T20:54:04.899Z" + ".val": { + "type": 6, + "value": 1695588844899 + } }, - "revision": "3326affb78474842b0dbf840", + "revision": "5ba196ca890844db8e12893e", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42173,12 +48164,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "bd9391e35a4149eeba5a7ae1", + "revision": "bfbae7f4af314fae98b0c64f", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42186,10 +48177,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692996844899", - "revision": "d748787295334325b376018f", + "revision": "d52ae05232c94c68994f7965", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42204,23 +48195,35 @@ "total_amount": 20, "id": "1692996844899", "history_id": "1692996844899", - "date_created": "2023-08-25T20:54:04.899Z", - "date_last_updated": "2023-08-25T21:45:21.567Z", + "date_created": { + "type": 6, + "value": 1692996844899 + }, + "date_last_updated": { + "type": 6, + "value": 1692999921567 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-25T21:45:21.567Z", - "money_release_date": "2023-08-25T21:45:21.567Z", + "date_approved": { + "type": 6, + "value": 1692999921567 + }, + "money_release_date": { + "type": 6, + "value": 1692999921567 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "10b5907c78724b9eb25977c9", + "revision": "48ea4ee42676450e952eb8b4", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42228,10 +48231,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "53674c824b74433ab122743a", + "revision": "e72b2e8c670c4e8299fbc8c0", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42247,12 +48250,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "a54b8ffb4581436e8429da80", + "revision": "4d9188e86bf240f089ccaf36", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42260,10 +48263,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693000377717", - "revision": "e308ad449d9b49fc94b9c640", + "revision": "cab45f28db8c40e49a6495f9", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42278,9 +48281,18 @@ "total_amount": 40254, "id": "1693000377717", "history_id": "1693000377717", - "date_created": "2023-08-25T21:52:57.717Z", - "date_last_updated": "2023-08-25T21:52:57.717Z", - "date_of_expiration": "2023-08-25T21:52:57.717Z", + "date_created": { + "type": 6, + "value": 1693000377717 + }, + "date_last_updated": { + "type": 6, + "value": 1693000377717 + }, + "date_of_expiration": { + "type": 6, + "value": 1693000377717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -42289,10 +48301,10 @@ "description": "Compra de 40.254,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "1366a208f6934522933dcb58", + "revision": "9fb7e1ec5679416a9baafacf", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42301,12 +48313,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-01T21:57:07.916Z" + ".val": { + "type": 6, + "value": 1696197427916 + } }, - "revision": "c6758c5122d64863bbf68be2", + "revision": "7fbe480fd9ab4b68b53a3243", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42322,12 +48337,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "404bc0717aa64925b2c37a59", + "revision": "ac92482ef95c4aa8aa93c5a5", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42335,10 +48350,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693605427916", - "revision": "c95eca8e48d641309e7274b8", + "revision": "f71d218a02a041fdaf26e17b", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42353,8 +48368,14 @@ "total_amount": 20, "id": "1693605427916", "history_id": "1693605427916", - "date_created": "2023-09-01T21:57:07.916Z", - "date_last_updated": "2023-09-01T21:57:07.916Z", + "date_created": { + "type": 6, + "value": 1693605427916 + }, + "date_last_updated": { + "type": 6, + "value": 1693605427916 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -42362,10 +48383,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "eb5bee82c71d471b92154750", + "revision": "9755455eb064425390bf9841", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42373,10 +48394,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "bb4564f0efb44edea1039483", + "revision": "c3b85b1b793841dcb454fe5a", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42385,12 +48406,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-01T22:02:42.263Z" + ".val": { + "type": 6, + "value": 1696197762263 + } }, - "revision": "c83162c798554a7aae24d6e9", + "revision": "2c6ed338120245c1bb3a3be9", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42406,12 +48430,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "0d6d8c44318041ea9ed89ea5", + "revision": "893f8b822def4790b88d1183", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42419,10 +48443,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693605762263", - "revision": "ef8652ea9fbf4859bbe081b4", + "revision": "0e61b66db781478c935d3163", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42437,23 +48461,35 @@ "total_amount": 20, "id": "1693605762263", "history_id": "1693605762263", - "date_created": "2023-09-01T22:02:42.263Z", - "date_last_updated": "2023-09-01T22:07:13.196Z", + "date_created": { + "type": 6, + "value": 1693605762263 + }, + "date_last_updated": { + "type": 6, + "value": 1693606033196 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-09-01T22:07:13.196Z", - "money_release_date": "2023-09-01T22:07:13.196Z", + "date_approved": { + "type": 6, + "value": 1693606033196 + }, + "money_release_date": { + "type": 6, + "value": 1693606033196 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "46b5db2ec6dd43ec9f7fc5c0", + "revision": "1bf88d12d2e94755b0cf6022", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42461,10 +48497,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "027816ad622b47a1af8d7943", + "revision": "3ad3e0d2470e4c4ea36e3487", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820533, + "modified": 1701465820533 } }, { @@ -42480,12 +48516,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "854d066698204ef186b33039", + "revision": "7b4682c0603f41c38dbb95e3", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42493,10 +48529,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693606719867", - "revision": "7dee3308a0374b91b184e494", + "revision": "4bf4aa5d59394844b10989e7", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42511,9 +48547,18 @@ "total_amount": 33429, "id": "1693606719867", "history_id": "1693606719867", - "date_created": "2023-09-01T22:18:39.867Z", - "date_last_updated": "2023-09-01T22:18:39.867Z", - "date_of_expiration": "2023-09-01T22:18:39.867Z", + "date_created": { + "type": 6, + "value": 1693606719867 + }, + "date_last_updated": { + "type": 6, + "value": 1693606719867 + }, + "date_of_expiration": { + "type": 6, + "value": 1693606719867 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -42522,10 +48567,10 @@ "description": "Compra de 33.429,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "32be3c3e3de74dcdbd789ed7", + "revision": "63fd9129aa6e49bfa8ca580e", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42534,12 +48579,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-14T01:28:42.996Z" + ".val": { + "type": 6, + "value": 1697246922996 + } }, - "revision": "cceed9e76b99435a9986c907", + "revision": "7a5641da10124dfdad050e3d", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42555,12 +48603,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "f8f1b415336f484589aaeb3e", + "revision": "885e39338bb94829ae696af1", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42568,10 +48616,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694654922996", - "revision": "4f93f1ae46794c41a30715fb", + "revision": "f0c48e60a9aa41c78af79f82", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42586,23 +48634,35 @@ "total_amount": 20, "id": "1694654922996", "history_id": "1694654922996", - "date_created": "2023-09-14T01:28:42.996Z", - "date_last_updated": "2023-09-14T01:41:00.738Z", + "date_created": { + "type": 6, + "value": 1694654922996 + }, + "date_last_updated": { + "type": 6, + "value": 1694655660738 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-09-14T01:41:00.738Z", - "money_release_date": "2023-09-14T01:41:00.738Z", + "date_approved": { + "type": 6, + "value": 1694655660738 + }, + "money_release_date": { + "type": 6, + "value": 1694655660738 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "c0b87e81bea54312abd4e659", + "revision": "7b1e8f3a82e84e3686244f1d", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42610,10 +48670,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "89a6c9b2b37343779dc30d3c", + "revision": "affd49b9be7d48ed837a504f", "revision_nr": 1, - "created": 1701463509559, - "modified": 1701463509559 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42622,12 +48682,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-14T21:52:06.075Z" + ".val": { + "type": 6, + "value": 1697320326075 + } }, - "revision": "d3afa74a916749aab4793581", + "revision": "7c0ce26c76834f3bb00fca62", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42643,12 +48706,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "b5dcbe50b11d45829ae13a7f", + "revision": "c046b7657326460f975d81cf", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42656,10 +48719,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694728326075", - "revision": "86596de23fe7478b98fba90f", + "revision": "64bb811f0acb4f169692ab46", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42674,23 +48737,35 @@ "total_amount": 100, "id": "1694728326075", "history_id": "1694728326075", - "date_created": "2023-09-14T21:52:06.075Z", - "date_last_updated": "2023-09-14T22:42:22.567Z", + "date_created": { + "type": 6, + "value": 1694728326075 + }, + "date_last_updated": { + "type": 6, + "value": 1694731342567 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-09-14T22:42:22.567Z", - "money_release_date": "2023-09-14T22:42:22.567Z", + "date_approved": { + "type": 6, + "value": 1694731342567 + }, + "money_release_date": { + "type": 6, + "value": 1694731342567 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "924f9da72a96440d85833aad", + "revision": "3348b183953a491997cca01c", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42698,10 +48773,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "05dba41905dc4cf79ed788e8", + "revision": "b1210b6fd8f243adbf192e43", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42710,12 +48785,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-14T22:00:59.603Z" + ".val": { + "type": 6, + "value": 1697320859603 + } }, - "revision": "c20aeefc5a104427997c0034", + "revision": "d97d1deaed7c4f3e9fe9c9d6", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42731,12 +48809,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "1d5ed79473874e49b36f9bf3", + "revision": "9b061f1207e34289a7ae4335", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42744,10 +48822,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694728859604", - "revision": "a15ad6a79b34436c8fab74e9", + "revision": "454c104c643341cc863e4ff7", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42762,8 +48840,14 @@ "total_amount": 100, "id": "1694728859604", "history_id": "1694728859604", - "date_created": "2023-09-14T22:00:59.604Z", - "date_last_updated": "2023-09-14T22:00:59.604Z", + "date_created": { + "type": 6, + "value": 1694728859604 + }, + "date_last_updated": { + "type": 6, + "value": 1694728859604 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -42771,10 +48855,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "e91087d877d24eb18f145578", + "revision": "1ac0d3feed1f46968c05f3d7", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42782,10 +48866,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "1eab0a756dd7435481071136", + "revision": "95072e551a1846bbbdd23574", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42801,12 +48885,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "c2ab8c958058424997afd117", + "revision": "bc83513b7c62457d904b0fba", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42814,10 +48898,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694731526035", - "revision": "d9cc24742d6a4a8e83304bf9", + "revision": "b55309a1d1224792bbc27195", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42832,9 +48916,18 @@ "total_amount": 121808, "id": "1694731526035", "history_id": "1694731526035", - "date_created": "2023-09-14T22:45:26.035Z", - "date_last_updated": "2023-09-14T22:45:26.035Z", - "date_of_expiration": "2023-09-14T22:45:26.035Z", + "date_created": { + "type": 6, + "value": 1694731526035 + }, + "date_last_updated": { + "type": 6, + "value": 1694731526035 + }, + "date_of_expiration": { + "type": 6, + "value": 1694731526035 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -42843,10 +48936,10 @@ "description": "Compra de 121.808,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "8c9c3c9d5c164374b233a4b7", + "revision": "2e7a0dce781f4923901fb226", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42862,12 +48955,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "db1a99ac21de4b558c7af168", + "revision": "8dacd893f72c4285965f59f5", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42875,10 +48968,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694793493188", - "revision": "4015540f2264499eacdca6d2", + "revision": "b40ef725935546058862d962", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42893,9 +48986,18 @@ "total_amount": 25384, "id": "1694793493188", "history_id": "1694793493188", - "date_created": "2023-09-15T15:58:13.188Z", - "date_last_updated": "2023-09-15T15:58:13.188Z", - "date_of_expiration": "2023-09-15T15:58:13.188Z", + "date_created": { + "type": 6, + "value": 1694793493188 + }, + "date_last_updated": { + "type": 6, + "value": 1694793493188 + }, + "date_of_expiration": { + "type": 6, + "value": 1694793493188 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -42904,10 +49006,10 @@ "description": "Compra de 25.384,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "33e0d18a1c6e4dfbab04cfeb", + "revision": "a5b2916de82741d78defe340", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42916,12 +49018,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-17T15:55:09.290Z" + ".val": { + "type": 6, + "value": 1697558109290 + } }, - "revision": "6488bee4d5cc4c6182f53aea", + "revision": "0d04a283812146a890e994f6", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42937,12 +49042,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "80405830a66744b9829d3128", + "revision": "95147865f13a4de9afc9f6c5", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42950,10 +49055,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694966109291", - "revision": "13346aa9067b4ca788245d05", + "revision": "f1cc00903c614bc6b30e5f36", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42968,23 +49073,35 @@ "total_amount": 20, "id": "1694966109291", "history_id": "1694966109291", - "date_created": "2023-09-17T15:55:09.291Z", - "date_last_updated": "2023-09-17T17:58:17.859Z", + "date_created": { + "type": 6, + "value": 1694966109291 + }, + "date_last_updated": { + "type": 6, + "value": 1694973497859 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-09-17T17:58:17.859Z", - "money_release_date": "2023-09-17T17:58:17.859Z", + "date_approved": { + "type": 6, + "value": 1694973497859 + }, + "money_release_date": { + "type": 6, + "value": 1694973497859 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "c2fc585bf67f45ff9e7d501d", + "revision": "5e1eeb7e58814fa68bb4f782", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -42992,10 +49109,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "a72fdb81739f4a2987be60bd", + "revision": "ef314544fadd45698859e348", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43011,12 +49128,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "667a316019624c5daf7e7041", + "revision": "920750d01aec4911989c49a2", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43024,10 +49141,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694988703973", - "revision": "da2a3fb60e4e4d89afd48e16", + "revision": "d961c80b13a94f1bba71a1c1", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43042,9 +49159,18 @@ "total_amount": 25302, "id": "1694988703973", "history_id": "1694988703973", - "date_created": "2023-09-17T22:11:43.973Z", - "date_last_updated": "2023-09-17T22:11:43.973Z", - "date_of_expiration": "2023-09-17T22:11:43.973Z", + "date_created": { + "type": 6, + "value": 1694988703973 + }, + "date_last_updated": { + "type": 6, + "value": 1694988703973 + }, + "date_of_expiration": { + "type": 6, + "value": 1694988703973 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -43053,10 +49179,10 @@ "description": "Compra de 25.302,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "fc5294fd9fec4142bbdf110b", + "revision": "229f38f072a34c57bd87de26", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43065,12 +49191,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-04T15:33:48.284Z" + ".val": { + "type": 6, + "value": 1699112028284 + } }, - "revision": "a9a3ce24be3245c68bde0e75", + "revision": "b3a9586d75c84e019efc09c4", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43086,12 +49215,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "92b789d85a1b485895c414ce", + "revision": "f84e5606b8104193aabd4996", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43099,10 +49228,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1696520028285", - "revision": "be4cb514beac4384b90b139d", + "revision": "c3972b94558449a3a1d25eb3", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43118,23 +49247,35 @@ "total_amount": 20, "id": "1696520028285", "history_id": "1696520028285", - "date_created": "2023-10-05T15:33:48.285Z", - "date_last_updated": "2023-10-05T15:44:10.654Z", + "date_created": { + "type": 6, + "value": 1696520028285 + }, + "date_last_updated": { + "type": 6, + "value": 1696520650654 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-10-05T15:44:10.654Z", - "money_release_date": "2023-10-05T15:44:10.654Z", + "date_approved": { + "type": 6, + "value": 1696520650654 + }, + "money_release_date": { + "type": 6, + "value": 1696520650654 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "8ce79e44185949ac995fcaa6", + "revision": "db3d1338bbae48eaa5ffbda6", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43142,10 +49283,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "178785985d714a21a554b3b0", + "revision": "769d6511f9814d10a687d756", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43161,12 +49302,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "33d58843ee2b475d9688898c", + "revision": "5505caf39e7742a29cc5298c", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43174,10 +49315,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1696520773436", - "revision": "83bbce72056647bea5721fa4", + "revision": "e0213390e24c4a73939b46a6", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43193,9 +49334,18 @@ "total_amount": 22059, "id": "1696520773436", "history_id": "1696520773436", - "date_created": "2023-10-05T15:46:13.436Z", - "date_last_updated": "2023-10-05T15:46:13.436Z", - "date_of_expiration": "2023-10-05T15:46:13.436Z", + "date_created": { + "type": 6, + "value": 1696520773436 + }, + "date_last_updated": { + "type": 6, + "value": 1696520773436 + }, + "date_of_expiration": { + "type": 6, + "value": 1696520773436 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -43204,10 +49354,10 @@ "description": "Compra de 22.059,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "540c479ba763406a8410f409", + "revision": "d583e96ee6f2475a959721b0", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43215,10 +49365,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "57528dcc02a84acba7a37766", + "revision": "1e8593c4b34a46da9628a55d", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43226,10 +49376,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a0def23ec8464d94a1f9e7be", + "revision": "6f7603938dc845bdb9677ec6", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43239,12 +49389,15 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-10-01T15:23:13.593Z" + "analysisRequested": { + "type": 6, + "value": 1696173793593 + } }, - "revision": "34c6cbc51fff4d2081c97d5f", + "revision": "2dbcb8372fae4edb9d36dcdd", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43256,12 +49409,15 @@ "dateValidity": 1679345183302, "totalValue": 17.88, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } }, - "revision": "d4dd83d44921479e99d2d555", + "revision": "b84b5811d90f4584a35a2a28", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43273,10 +49429,10 @@ "symbol": "IVIP", "value": -15912.37 }, - "revision": "95acb553a0264b18b9fdbd0d", + "revision": "4bb5485f0f7b4c4ba180cd78", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43284,10 +49440,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3070375300c848428e7990eb", + "revision": "af392a3848c541199bc4248f", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43295,12 +49451,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "5fb4f454ccba44ef96d0d829", + "revision": "2eebd94b0bcb42198351db9a", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43315,22 +49471,37 @@ "total_amount": 3000, "history_id": 1683732218933, "id": 1683732218933, - "date_created": "2023-05-10T15:23:38.933Z", - "date_last_updated": "2023-05-10T15:38:13.240Z", - "date_of_expiration": "2023-06-09T15:23:38.933Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-10T15:38:13.240Z", - "money_release_date": "2023-05-10T15:38:13.240Z", + "date_created": { + "type": 6, + "value": 1683732218933 + }, + "date_last_updated": { + "type": 6, + "value": 1683733093240 + }, + "date_of_expiration": { + "type": 6, + "value": 1686324218933 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683733093240 + }, + "money_release_date": { + "type": 6, + "value": 1683733093240 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "c27ff8528b1f41928cde86c1", + "revision": "db295f389e954e479bd5ddf8", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43338,10 +49509,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0583.5908.1725.8996-56", - "revision": "5d3cb8396af4484b86052295", + "revision": "8f02b3e975f94fbbac9ff7f4", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43359,12 +49530,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "c5b6e7343b77450f8244d042", + "revision": "60e8412493d14af2932579a0", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43380,9 +49551,18 @@ "original_amount": 14612195, "total_amount": 14612195, "id": 1684627186163, - "date_created": "2023-05-20T23:59:46.163Z", - "date_last_updated": "2023-05-20T23:59:46.163Z", - "date_of_expiration": "2023-05-20T23:59:46.163Z", + "date_created": { + "type": 6, + "value": 1684627186163 + }, + "date_last_updated": { + "type": 6, + "value": 1684627186163 + }, + "date_of_expiration": { + "type": 6, + "value": 1684627186163 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -43391,10 +49571,10 @@ "history_id": 1684627186163, "description": "Compra de 14.612.195,00 IVIP por 3.000,00 BRL" }, - "revision": "776c17b8878445499c35aa3f", + "revision": "8269ca3a7dde42369b9cb7c0", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43406,10 +49586,10 @@ "label": "Taxa de 3,00%", "amount": 438365.85 }, - "revision": "b25841499409414fb7a9e29a", + "revision": "1448b935bf6a4a70b13dd750", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43426,10 +49606,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "6f51e60888db49f19f016ae1", + "revision": "698b7d6f82cf4270b67e8c28", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43437,10 +49617,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/058359081725899656/history/1692302387863", - "revision": "8367e27c467a434aa11530eb", + "revision": "ad21b64653844cd99dcac418", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43448,10 +49628,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f1cd9a3b2290462083fa2ea5", + "revision": "b5fd10de3ac841859b5cb587", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43466,24 +49646,39 @@ "total_amount": 14173829.15, "id": 1692302387863, "history_id": 1692302387863, - "date_created": "2023-08-17T19:59:47.863Z", - "date_last_updated": "2023-08-25T14:20:52.038Z", - "date_of_expiration": "2023-08-17T19:59:47.863Z", + "date_created": { + "type": 6, + "value": 1692302387863 + }, + "date_last_updated": { + "type": 6, + "value": 1692973252038 + }, + "date_of_expiration": { + "type": 6, + "value": 1692302387863 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": "2023-08-25T14:20:52.038Z", - "money_release_date": "2023-08-25T14:20:52.038Z", + "date_approved": { + "type": 6, + "value": 1692973252038 + }, + "money_release_date": { + "type": 6, + "value": 1692973252038 + }, "money_release_status": "drawee", "wasDebited": true }, - "revision": "899c914eeee043cb8f51b846", + "revision": "b2be8ff4bd2f479dbf3b9644", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43491,10 +49686,10 @@ "content": { "type": "STRING", "value": "Saque de 14.173.829,15 IVIP para a carteira 0x5cD8D20fc31429974550e7e677C493554c46a73A", - "revision": "6a644e00f5f249dfadee3dd2", + "revision": "61e6ef6cff6f41c299479b66", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43506,10 +49701,10 @@ "label": "Taxa de 3,00%", "amount": 438365.85 }, - "revision": "f2e04af19fb74ad2b5a69c29", + "revision": "9fc3410646f7443680b24e7a", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43526,10 +49721,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "3c1b8d43fd11454baec70145", + "revision": "cbc262a65312468eb5e0e7d2", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43537,10 +49732,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/058359081725899656/history/1692441112310", - "revision": "c8d0dc9bbb6249af9ea319fa", + "revision": "5f8032c6fd1f44ad9a75c734", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43548,10 +49743,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e451d91656bf435cad1996fa", + "revision": "d3ad22451b1a4e628535594c", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43566,24 +49761,39 @@ "total_amount": 14173829.15, "id": 1692441112310, "history_id": 1692441112310, - "date_created": "2023-08-19T10:31:52.310Z", - "date_last_updated": "2023-08-25T14:12:05.453Z", - "date_of_expiration": "2023-08-19T10:31:52.310Z", + "date_created": { + "type": 6, + "value": 1692441112310 + }, + "date_last_updated": { + "type": 6, + "value": 1692972725453 + }, + "date_of_expiration": { + "type": 6, + "value": 1692441112310 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": "2023-08-25T14:12:05.453Z", - "money_release_date": "2023-08-25T14:12:05.453Z", + "date_approved": { + "type": 6, + "value": 1692972725453 + }, + "money_release_date": { + "type": 6, + "value": 1692972725453 + }, "money_release_status": "drawee", "wasDebited": true }, - "revision": "62fc2b2af3ff4cdf974b865f", + "revision": "a1a53f294382467ead6acd36", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43591,10 +49801,10 @@ "content": { "type": "STRING", "value": "Saque de 14.173.829,15 IVIP para a carteira 0x5cD8D20fc31429974550e7e677C493554c46a73A", - "revision": "62ddd80433214366a02a82e4", + "revision": "4070f5b0db044d5ab434076e", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820534, + "modified": 1701465820534 } }, { @@ -43602,10 +49812,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e08c45f02ac9445ca8a35bda", + "revision": "b631dbe453e54d2d962ef326", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43613,10 +49823,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a21626a4288b4732bdf77b5a", + "revision": "b2402a8220d0445f93d68843", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43627,10 +49837,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "275af9520cf14287a9733fed", + "revision": "cadc9d9f57384ac2936f51da", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43642,12 +49852,15 @@ "dateValidity": 1683669489240, "totalValue": 600.6, "currencyType": "USD", - "balancesModificacao": "2023-10-01T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696129200000 + } }, - "revision": "6fca8c46f2e04e5db2364624", + "revision": "50c1ba2e10d440bc9b8162b2", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43655,10 +49868,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0f28187a714a4f6a81424f85", + "revision": "aef741cdd3fb4dd69bd50a56", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43666,10 +49879,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "dc3fdfeccf8c4f3db90211e5", + "revision": "76e1921752b6467cb9a5d606", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43677,10 +49890,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2bcda3949fa142dc9f7eff1d", + "revision": "4768b66e68664dda92c953d3", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43691,10 +49904,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "995fd436b5cd457b85b502ef", + "revision": "6d636742b6d34f01ab31e019", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43707,10 +49920,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "72e48470ffa94595b8ed41aa", + "revision": "7fd2a41cf20345b685d30ea2", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43722,10 +49935,10 @@ "available": "30.00000000", "value": 6.027 }, - "revision": "f39aeb02f2394991ace9a3d4", + "revision": "96f5fdea3ae440b491563202", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43733,10 +49946,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f375aad524af4e659741eeda", + "revision": "695480b6af8c48dc924cc60f", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43744,12 +49957,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "e55b62f47d874e05ab6acd5a", + "revision": "cfa82d215b2c40b8a8df0751", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43764,22 +49977,37 @@ "total_amount": 30, "history_id": 1684092073649, "id": 1684092073649, - "date_created": "2023-05-14T19:21:13.649Z", - "date_last_updated": "2023-05-14T19:24:42.901Z", - "date_of_expiration": "2023-06-13T19:21:13.649Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-14T19:24:42.901Z", - "money_release_date": "2023-05-14T19:24:42.901Z", + "date_created": { + "type": 6, + "value": 1684092073649 + }, + "date_last_updated": { + "type": 6, + "value": 1684092282901 + }, + "date_of_expiration": { + "type": 6, + "value": 1686684073649 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684092282901 + }, + "money_release_date": { + "type": 6, + "value": 1684092282901 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "e54d4d3e69fa4619b35e5a11", + "revision": "9f2e77a1105042fc9e1f4c46", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43787,10 +50015,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0600.4447.6007.1925-36", - "revision": "469b3dfb778447fe8be82be7", + "revision": "2ee550925f9f4f758186f025", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43798,10 +50026,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7d694549b37f425bb1b91256", + "revision": "754e6da73b42416ba29284b1", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43809,10 +50037,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "280e162bf99c4f11b54214ef", + "revision": "440ecf70caab44ab9a67f5c1", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43823,10 +50051,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "d57aa8f816564523b2ec094e", + "revision": "b99b1cb9a42e4cc9a8136008", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43839,10 +50067,10 @@ "totalValue": 6.03, "currencyType": "USD" }, - "revision": "d8d585039e0a4b6d95ec5569", + "revision": "69f27475a22d41a2a93f76ac", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43854,10 +50082,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "6bc00b549153435cbc580bc8", + "revision": "93b05cf1278f4882845797c6", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43869,10 +50097,10 @@ "symbol": "IVIP", "value": 0 }, - "revision": "be4977a445124b3eb89ed791", + "revision": "dbee318ff0ba4ed1a65bf2fc", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43880,10 +50108,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0c522cc8e4c2422684fe73a6", + "revision": "33f4921362c04f03909bb4bf", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43891,12 +50119,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "5a14189fb337400e95a77c19", + "revision": "e75d32f122424dd080fec99e", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43911,22 +50139,37 @@ "total_amount": 30, "history_id": 1684104224358, "id": 1684104224358, - "date_created": "2023-05-14T22:43:44.358Z", - "date_last_updated": "2023-05-14T22:51:50.880Z", - "date_of_expiration": "2023-06-13T22:43:44.358Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-14T22:51:50.880Z", - "money_release_date": "2023-05-14T22:51:50.880Z", + "date_created": { + "type": 6, + "value": 1684104224358 + }, + "date_last_updated": { + "type": 6, + "value": 1684104710880 + }, + "date_of_expiration": { + "type": 6, + "value": 1686696224358 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684104710880 + }, + "money_release_date": { + "type": 6, + "value": 1684104710880 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "8dc2fdd2201940079189dca2", + "revision": "2026d5b7dc4f4d5abff792ca", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43934,10 +50177,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0602.8179.3071.1252-50", - "revision": "60519aa8e63242a396a44903", + "revision": "337d8b41b419482f9aa299ac", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43955,12 +50198,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "007e9324e2e8485685fa258c", + "revision": "f265d006ca7c4fc79e128c28", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43976,9 +50219,18 @@ "original_amount": 145829, "total_amount": 145829, "id": 1684702707589, - "date_created": "2023-05-21T20:58:27.589Z", - "date_last_updated": "2023-05-21T20:58:27.589Z", - "date_of_expiration": "2023-05-21T20:58:27.589Z", + "date_created": { + "type": 6, + "value": 1684702707589 + }, + "date_last_updated": { + "type": 6, + "value": 1684702707589 + }, + "date_of_expiration": { + "type": 6, + "value": 1684702707589 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -43987,10 +50239,10 @@ "history_id": 1684702707589, "description": "Compra de 145.829,00 IVIP por 30,00 BRL" }, - "revision": "c2a71c2932044098a1b9b49e", + "revision": "0509740a7e544e72b9e28005", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -43998,12 +50250,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "272a1148e4fa48f8a957cacb", + "revision": "359a5ebf6a40404fa79ccc29", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44018,18 +50270,27 @@ "total_amount": 20, "history_id": 1685061340656, "id": 1685061340656, - "date_created": "2023-05-26T00:35:40.656Z", - "date_last_updated": "2023-05-26T00:35:40.656Z", - "date_of_expiration": "2023-06-25T00:35:40.656Z", + "date_created": { + "type": 6, + "value": 1685061340656 + }, + "date_last_updated": { + "type": 6, + "value": 1685061340656 + }, + "date_of_expiration": { + "type": 6, + "value": 1687653340656 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "8febe44efb5c4d27a64d5597", + "revision": "acf5f201451647e7b366b974", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44037,10 +50298,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0602.8179.3071.1252-50", - "revision": "fa635c144faf441e82660d58", + "revision": "a165033d55884eb5aca99f95", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44048,12 +50309,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "35eb0d1ee51d40339bc44b47", + "revision": "9bec816103024b1a8ec074e4", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44068,20 +50329,32 @@ "total_amount": 1055, "history_id": 1685664745809, "id": 1685664745809, - "date_created": "2023-06-02T00:12:25.809Z", - "date_last_updated": "2023-06-02T17:34:44.727Z", - "date_of_expiration": "2023-07-02T00:12:25.809Z", + "date_created": { + "type": 6, + "value": 1685664745809 + }, + "date_last_updated": { + "type": 6, + "value": 1685727284727 + }, + "date_of_expiration": { + "type": 6, + "value": 1688256745809 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-06-02T17:34:44.727Z", + "money_release_date": { + "type": 6, + "value": 1685727284727 + }, "money_release_status": "rejected" }, - "revision": "f14d36dd799b4a43a02b85a6", + "revision": "ce75a925992c4bdda9a10a71", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44089,10 +50362,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.055,00 para a carteira iVip 0602.8179.3071.1252-50", - "revision": "3b32bd4eb5cd4cdaa9027f52", + "revision": "2dc2c2192e0343659e925ce2", "revision_nr": 1, - "created": 1701463509560, - "modified": 1701463509560 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44108,12 +50381,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "4fa516e78f7b46379015caf4", + "revision": "45f8da608e864f3899f6fafb", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44121,10 +50394,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/060281793071125250/history/1690250551090", - "revision": "ba152950931145159a91830a", + "revision": "28dfc0b1628744198492dde2", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44139,9 +50412,18 @@ "total_amount": 145829, "id": 1690250551090, "history_id": 1690250551090, - "date_created": "2023-07-25T02:02:31.090Z", - "date_last_updated": "2023-07-25T02:02:31.090Z", - "date_of_expiration": "2023-07-25T02:02:31.090Z", + "date_created": { + "type": 6, + "value": 1690250551090 + }, + "date_last_updated": { + "type": 6, + "value": 1690250551090 + }, + "date_of_expiration": { + "type": 6, + "value": 1690250551090 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -44149,10 +50431,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "2710a19fe3484ce3bed13010", + "revision": "ba4c7a7f814f425598af69b9", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44160,10 +50442,10 @@ "content": { "type": "STRING", "value": "Saque de 145.829,00 IVIP para a carteira 0xD99D89C01D8F4F0809a32D3916CbC94331E7b87e", - "revision": "51ac98e1136c457bb6bfc202", + "revision": "81631d2db53d4c179407728b", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44179,12 +50461,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "e69125df5c5142b6ae55ccfc", + "revision": "7f2cccffdcf245d58055abc6", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44192,10 +50474,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/060281793071125250/history/1690380108963", - "revision": "e477613bc55b4957bc349dfe", + "revision": "0fd9d28785cf4136b8765949", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44210,24 +50492,39 @@ "total_amount": 145829, "id": 1690380108963, "history_id": 1690380108963, - "date_created": "2023-07-26T14:01:48.963Z", - "date_last_updated": "2023-07-26T17:31:37.340Z", - "date_of_expiration": "2023-07-26T14:01:48.963Z", + "date_created": { + "type": 6, + "value": 1690380108963 + }, + "date_last_updated": { + "type": 6, + "value": 1690392697340 + }, + "date_of_expiration": { + "type": 6, + "value": 1690380108963 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": "2023-07-26T17:31:37.340Z", - "money_release_date": "2023-07-26T17:31:37.340Z", + "date_approved": { + "type": 6, + "value": 1690392697340 + }, + "money_release_date": { + "type": 6, + "value": 1690392697340 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "079e723272c64c9e82b9e5e8", + "revision": "ee707a3ef7074558ba23a071", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44235,10 +50532,10 @@ "content": { "type": "STRING", "value": "Saque de 145.829,00 IVIP para a carteira 0xD99D89C01D8F4F0809a32D3916CbC94331E7b87e", - "revision": "27045b3676424c81bd0cbe5a", + "revision": "337522e23eca4560aa1daf8f", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44246,10 +50543,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b93ea8ee62f44a2bb143832e", + "revision": "d1d900bab8354f08ae5bb449", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44257,10 +50554,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0d27943437c94146bbfdd1a2", + "revision": "db3f0556e4314b9998dc48d3", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44271,10 +50568,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "2a29d11b18e74f11a60ed7ee", + "revision": "bff0f37d9bb0457c99b96d1b", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44286,12 +50583,15 @@ "dateValidity": 1684104139226, "totalValue": 6.02, "currencyType": "USD", - "balancesModificacao": "2023-08-26T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1693018800000 + } }, - "revision": "6dd1e120abc34a04bb42647b", + "revision": "28de9e14cf8649cda3b8872c", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44303,10 +50603,10 @@ "symbol": "IVIP", "value": 270.012 }, - "revision": "4ae51545243341bb9eefe9bb", + "revision": "088c9b564062407b8ad140f5", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44314,10 +50614,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1d2becb916a047859628a3d0", + "revision": "c9d28fcde730430fba1c4402", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44325,12 +50625,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "fc145dcedcf94fb4bced09ac", + "revision": "fe74384089b74898a353a143", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44345,22 +50645,37 @@ "total_amount": 1800, "history_id": 1679009450729, "id": 1679009450729, - "date_created": "2023-03-16T23:30:50.729Z", - "date_last_updated": "2023-03-16T23:32:58.413Z", - "date_of_expiration": "2023-04-15T23:30:50.729Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-16T23:32:58.413Z", - "money_release_date": "2023-03-16T23:32:58.413Z", + "date_created": { + "type": 6, + "value": 1679009450729 + }, + "date_last_updated": { + "type": 6, + "value": 1679009578413 + }, + "date_of_expiration": { + "type": 6, + "value": 1681601450729 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679009578413 + }, + "money_release_date": { + "type": 6, + "value": 1679009578413 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "f69417b96f894757b0b03032", + "revision": "511d9bef87a342858a7e2bda", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44368,10 +50683,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.800,00 para a carteira iVip 0606.0636.6606.7580-00", - "revision": "11ecfc4eeab64acfa5816811", + "revision": "73f4c9bd055f4e0abb027c5e", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44389,12 +50704,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b29a7f8625184a2889c3dc06", + "revision": "be25a08361734f20b8d06ded", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44410,9 +50725,18 @@ "original_amount": 10484307, "total_amount": 10484307, "id": 1679267499015, - "date_created": "2023-03-19T23:11:39.015Z", - "date_last_updated": "2023-03-19T23:11:39.015Z", - "date_of_expiration": "2023-03-19T23:11:39.015Z", + "date_created": { + "type": 6, + "value": 1679267499015 + }, + "date_last_updated": { + "type": 6, + "value": 1679267499015 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267499015 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -44421,10 +50745,10 @@ "history_id": 1679267499015, "description": "Compra de 10484307 IVIP por 1800 BRL" }, - "revision": "dfc1cd2ed0f645d9ac003eff", + "revision": "8a50bc4ce783414f900e7405", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44442,12 +50766,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "89740b2d396744b8ab124f97", + "revision": "44e644acce2a47e5a91a185b", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44462,9 +50786,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1688476464326, - "date_created": "2023-07-04T13:14:24.326Z", - "date_last_updated": "2023-07-04T13:14:24.326Z", - "date_of_expiration": "2024-07-04T13:14:24.326Z", + "date_created": { + "type": 6, + "value": 1688476464326 + }, + "date_last_updated": { + "type": 6, + "value": 1688476464326 + }, + "date_of_expiration": { + "type": 6, + "value": 1720098864326 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -44472,10 +50805,10 @@ "currency_id": "IVIP", "history_id": 1688476464326 }, - "revision": "aa5262f974114e8197a57611", + "revision": "f5495dc16d2840d48d9fa7f3", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44483,10 +50816,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/4/2024", - "revision": "b0231a5529144527b26db3ef", + "revision": "a1073992e40a4280a732b9b2", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44504,12 +50837,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "db29dc04576445aa992b7d1b", + "revision": "72de62028f0f4398bcf365c1", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44524,9 +50857,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1688476478538, - "date_created": "2023-07-04T13:14:38.538Z", - "date_last_updated": "2023-07-04T13:14:38.538Z", - "date_of_expiration": "2025-07-04T13:14:38.538Z", + "date_created": { + "type": 6, + "value": 1688476478538 + }, + "date_last_updated": { + "type": 6, + "value": 1688476478538 + }, + "date_of_expiration": { + "type": 6, + "value": 1751634878538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -44534,10 +50876,10 @@ "currency_id": "IVIP", "history_id": 1688476478538 }, - "revision": "cf3ad36859de4908abf74d0b", + "revision": "dd3020bf73fb4d5fadfca760", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44545,10 +50887,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/4/2025", - "revision": "4128f9889a7c4a038b90c3a9", + "revision": "61e3aed863b74408b81364bb", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44564,12 +50906,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "42334a6123824cdfa3f3c410", + "revision": "d3fae78f515d417cbafdd2f0", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44577,10 +50919,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1693784335259", - "revision": "bf3f809eb0594abbab2494a3", + "revision": "15431bc738384918addab7fc", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44595,9 +50937,18 @@ "total_amount": 5684843, "id": "1693784335259", "history_id": "1693784335259", - "date_created": "2023-09-03T23:38:55.259Z", - "date_last_updated": "2023-09-03T23:38:55.259Z", - "date_of_expiration": "2023-10-03T23:38:55.258Z", + "date_created": { + "type": 6, + "value": 1693784335259 + }, + "date_last_updated": { + "type": 6, + "value": 1693784335259 + }, + "date_of_expiration": { + "type": 6, + "value": 1696376335258 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -44605,10 +50956,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "b89fe3e01e6b4cf3b2c2a7f2", + "revision": "035e027e3bb3455b9d4d1d7b", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44616,10 +50967,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.684.843,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "9fa2a6ff165b4c5288bc8471", + "revision": "b2545e469c74466d98c0401a", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44635,12 +50986,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "d7afc32a54874e29b964b8c2", + "revision": "d2497721fda545beae4ca9cc", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44648,10 +50999,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384249715", - "revision": "3494f76ef325434db21a6779", + "revision": "8d59f916d2e945628c1470eb", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44667,9 +51018,18 @@ "total_amount": 5798539.86, "id": "1696384249715", "history_id": "1696384249715", - "date_created": "2023-10-04T01:50:49.715Z", - "date_last_updated": "2023-10-04T01:50:49.715Z", - "date_of_expiration": "2023-10-04T01:50:49.715Z", + "date_created": { + "type": 6, + "value": 1696384249715 + }, + "date_last_updated": { + "type": 6, + "value": 1696384249715 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384249715 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -44677,10 +51037,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c32f83a23b2d44c9812ebb3d", + "revision": "f0dcdd48a4ee4bc08cf3eb3c", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44688,10 +51048,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", - "revision": "adc71ace08534809b73a6aec", + "revision": "344b32ac3cf64fc491852c25", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44707,12 +51067,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "eec4af8381ea41a5b474658d", + "revision": "64a192aafcd24be8b0653573", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820536 } }, { @@ -44720,10 +51080,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384254400", - "revision": "25aa7d368a314f77bad937ec", + "revision": "1556a2fb85b0413284dbd357", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44739,9 +51099,18 @@ "total_amount": 5798539.86, "id": "1696384254400", "history_id": "1696384254400", - "date_created": "2023-10-04T01:50:54.400Z", - "date_last_updated": "2023-10-04T01:50:54.400Z", - "date_of_expiration": "2023-10-04T01:50:54.400Z", + "date_created": { + "type": 6, + "value": 1696384254400 + }, + "date_last_updated": { + "type": 6, + "value": 1696384254400 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384254400 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -44749,10 +51118,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "84e7a4a8dc9c4beda6e1c465", + "revision": "373b9016853747a78ec6294d", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -44760,10 +51129,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", - "revision": "89acf8904d17489796ca56f4", + "revision": "8ced91396c4641959090623d", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820535, + "modified": 1701465820535 } }, { @@ -44779,12 +51148,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "63d79ef4536d48b29efb2dc4", + "revision": "3e16f0f00c124d958d1de00b", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -44792,10 +51161,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384253628", - "revision": "f69f33b1d26c4d13946bb964", + "revision": "e724b4103c384cb9a20af8d9", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -44811,9 +51180,18 @@ "total_amount": 5798539.86, "id": "1696384253628", "history_id": "1696384253628", - "date_created": "2023-10-04T01:50:53.628Z", - "date_last_updated": "2023-10-04T01:50:53.628Z", - "date_of_expiration": "2023-10-04T01:50:53.628Z", + "date_created": { + "type": 6, + "value": 1696384253628 + }, + "date_last_updated": { + "type": 6, + "value": 1696384253628 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384253628 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -44821,10 +51199,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "192f6462e0c2488cae727edf", + "revision": "92185c7ff7444acf84077e4d", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -44832,10 +51210,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", - "revision": "26d5f2cc5fba4b92a8e75cfe", + "revision": "0de3381863914fe9996e1915", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -44851,12 +51229,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "024c53b850d445a4bec8e456", + "revision": "7ef0e0725b4e413399cbabc1", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -44864,10 +51242,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696457810654", - "revision": "a0bdf683bf474978ac5a1188", + "revision": "3c5cbfbeb1e64beeaa39f359", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -44883,9 +51261,18 @@ "total_amount": 8000000, "id": "1696457810654", "history_id": "1696457810654", - "date_created": "2023-10-04T22:16:50.654Z", - "date_last_updated": "2023-10-04T22:16:50.654Z", - "date_of_expiration": "2023-11-04T22:16:50.615Z", + "date_created": { + "type": 6, + "value": 1696457810654 + }, + "date_last_updated": { + "type": 6, + "value": 1696457810654 + }, + "date_of_expiration": { + "type": 6, + "value": 1699136210615 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -44893,10 +51280,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "cd38104c97004425a2c058d8", + "revision": "5f35db3d6e5a440d94c22705", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -44904,10 +51291,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "db72571a4b4b40dba9f77747", + "revision": "1c7bab2684f245699a05af59", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -44915,10 +51302,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2abb040d12c84f3f88eafbc0", + "revision": "9e42622d6e894b9bbc8140e3", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -44926,10 +51313,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a1d3d764f34544ce9fbedc9e", + "revision": "dedaa507b4774e3494b3e78e", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -44940,10 +51327,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "546bc886d13b4f31a3117b5d", + "revision": "7eec32a4e2654f18919c847f", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -44955,12 +51342,15 @@ "dateValidity": 1679023260971, "totalValue": 563.3215233209353, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } }, - "revision": "edc74d29012643f18d515c0c", + "revision": "41c6cbf76eae41efb534b1a6", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -44968,10 +51358,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "413d74a300c742da80617296", + "revision": "36d3a7f214ff458a9c59a8a0", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -44983,10 +51373,10 @@ "value": 0.12708406600000002, "available": "0.00000509" }, - "revision": "34592d5463574c599b26f3b5", + "revision": "1684529f0af042c5b599a3e9", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -44998,10 +51388,10 @@ "value": 0.0088529947, "available": "0.00002689" }, - "revision": "6a4a57ee0a7e4c40ac0f08e9", + "revision": "7aa406436d9949849f08e59e", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45013,10 +51403,10 @@ "value": 0.032112, "available": "0.03211200" }, - "revision": "9c870d7175144576886959a6", + "revision": "359865eadaac4cae9e340039", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45028,10 +51418,10 @@ "value": 1.4510568362399998, "available": "1.41843288" }, - "revision": "9f6cd68e26ff4fc3b3689698", + "revision": "7e625099eece4400a9182d91", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45043,10 +51433,10 @@ "value": 0.145340815, "available": "0.76697000" }, - "revision": "73d4747aa4e145fc9473d50e", + "revision": "dbe1219bb9c84d5da2e740b5", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45058,10 +51448,10 @@ "value": 0.0002743, "available": "0.00500000" }, - "revision": "1c1bc4b72ebe4efd9057a8b8", + "revision": "91f28aef1ddc4ecdbdabcd53", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45073,10 +51463,10 @@ "value": 0.15272504798763, "available": "372500.117043" }, - "revision": "7a436f584c1945b681ad62d5", + "revision": "5dc9a4918a8d491e80f655d8", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45088,10 +51478,10 @@ "value": 7.524e-8, "available": "0.00060000" }, - "revision": "8e97a35dc9874088afedcf19", + "revision": "0968222912e547a78e1bd830", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45103,10 +51493,10 @@ "value": 0.001235, "available": "0.10000000" }, - "revision": "5aa6ace1d9fd44d1bbb31181", + "revision": "0eff2ddb85bd4611a49afa4e", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45114,10 +51504,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a490093518bf4a538a7fe48c", + "revision": "026b96be33c04eee856e714c", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45130,10 +51520,10 @@ "totalValue": 1.919, "currencyType": "USD" }, - "revision": "e4dcc7f0c8e54f32817eb965", + "revision": "4c813fb7bcbb4c379246e531", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45145,10 +51535,10 @@ "symbol": "IVIP", "value": 279.32 }, - "revision": "7388b1c2a8c349759f6a3600", + "revision": "8c072f325f9d496186883b99", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45156,10 +51546,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ba0a44f218a745fc91d5c023", + "revision": "f6d5d5e582c74228af95b454", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45168,12 +51558,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-01T16:40:33.996Z" + ".val": { + "type": 6, + "value": 1693586433996 + } }, - "revision": "1d97531aae4445e3a579373b", + "revision": "c510fee863eb4c55b4efbd0d", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45189,12 +51582,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "1b1438087695463bb10abd54", + "revision": "48ab706b368c48b48185d7c7", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45202,10 +51595,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1690994433997", - "revision": "1cb2741916a945619046bbde", + "revision": "08bf917ddac2433f98fb0b64", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45220,23 +51613,35 @@ "total_amount": 1000, "id": 1690994433997, "history_id": 1690994433997, - "date_created": "2023-08-02T16:40:33.997Z", - "date_last_updated": "2023-08-02T20:48:32.957Z", + "date_created": { + "type": 6, + "value": 1690994433997 + }, + "date_last_updated": { + "type": 6, + "value": 1691009312957 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-02T20:48:32.957Z", - "money_release_date": "2023-08-02T20:48:32.957Z", + "date_approved": { + "type": 6, + "value": 1691009312957 + }, + "money_release_date": { + "type": 6, + "value": 1691009312957 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "103c15f0580842cda35192d6", + "revision": "4c978b870ea942ac86bcda2b", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45244,10 +51649,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.000,00 para a carteira iVip 0625.7521.4502.4773-84", - "revision": "83c21153832147e99bd0d772", + "revision": "a1ed730649b5467f84dea043", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45263,12 +51668,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "8081e00f388043d489582df9", + "revision": "cc4827f8e7d84e7d9f7658d9", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45276,10 +51681,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691064347943", - "revision": "6b7e2e01671f40dba2f7d80c", + "revision": "dd69e3fe4b22493c877786df", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45294,9 +51699,18 @@ "total_amount": 207673, "id": 1691064347943, "history_id": 1691064347943, - "date_created": "2023-08-03T12:05:47.943Z", - "date_last_updated": "2023-08-03T12:05:47.943Z", - "date_of_expiration": "2023-08-03T12:05:47.943Z", + "date_created": { + "type": 6, + "value": 1691064347943 + }, + "date_last_updated": { + "type": 6, + "value": 1691064347943 + }, + "date_of_expiration": { + "type": 6, + "value": 1691064347943 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -45305,10 +51719,10 @@ "description": "Compra de 207.673,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "7d243cfcccb24dfe8d3defb5", + "revision": "289b9a5179f24bb7b372dd75", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45324,12 +51738,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "d3a275997d59454da379cb01", + "revision": "9db0f7b7e19b4c679ba1af66", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45337,10 +51751,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691234903050", - "revision": "cdbad78ae3c940689be3dbcd", + "revision": "41b2bb3ca66a43a7ac379cd1", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45355,9 +51769,18 @@ "total_amount": 292108, "id": 1691234903050, "history_id": 1691234903050, - "date_created": "2023-08-05T11:28:23.050Z", - "date_last_updated": "2023-08-05T11:28:23.050Z", - "date_of_expiration": "2023-08-05T11:28:23.050Z", + "date_created": { + "type": 6, + "value": 1691234903050 + }, + "date_last_updated": { + "type": 6, + "value": 1691234903050 + }, + "date_of_expiration": { + "type": 6, + "value": 1691234903050 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -45366,10 +51789,10 @@ "description": "Compra de 292.108,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "3d4e917f516942b7a4b9ec11", + "revision": "4f7d4a8704014d55a89214d5", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45385,12 +51808,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "97b2d7d276b843de8ac59e35", + "revision": "0777081d5a584e6daf5bdc46", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45398,10 +51821,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691237670718", - "revision": "c05cd197ce1247fda7d559de", + "revision": "ccece61815b64bf694946378", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45416,9 +51839,18 @@ "total_amount": 293284, "id": 1691237670718, "history_id": 1691237670718, - "date_created": "2023-08-05T12:14:30.718Z", - "date_last_updated": "2023-08-05T12:14:30.718Z", - "date_of_expiration": "2023-08-05T12:14:30.718Z", + "date_created": { + "type": 6, + "value": 1691237670718 + }, + "date_last_updated": { + "type": 6, + "value": 1691237670718 + }, + "date_of_expiration": { + "type": 6, + "value": 1691237670718 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -45427,10 +51859,10 @@ "description": "Compra de 293.284,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "24c86953c28e4715b5510b39", + "revision": "10b56d22e0f24851b6036fd6", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45446,12 +51878,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "5ef6ab420a7642349dfbd35f", + "revision": "7860633b7782401b903a1ff7", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45459,10 +51891,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691454318499", - "revision": "8e16f6b424f04ddca9cce242", + "revision": "3b40c1df0c3b4c4991fa7af4", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45477,9 +51909,18 @@ "total_amount": 327037, "id": 1691454318499, "history_id": 1691454318499, - "date_created": "2023-08-08T00:25:18.499Z", - "date_last_updated": "2023-08-08T00:25:18.499Z", - "date_of_expiration": "2023-08-08T00:25:18.499Z", + "date_created": { + "type": 6, + "value": 1691454318499 + }, + "date_last_updated": { + "type": 6, + "value": 1691454318499 + }, + "date_of_expiration": { + "type": 6, + "value": 1691454318499 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -45488,10 +51929,10 @@ "description": "Compra de 327.037,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "3259d67ebbca4b3099bfcb7d", + "revision": "3c95a50981544b359ac3dc0d", "revision_nr": 1, - "created": 1701463509561, - "modified": 1701463509561 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45500,12 +51941,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-07T11:45:10.176Z" + ".val": { + "type": 6, + "value": 1694087110176 + } }, - "revision": "1d90954b708448b993c5c63f", + "revision": "27cfa011f6754b1091d9baf3", "revision_nr": 1, - "created": 1701463509562, - "modified": 1701463509562 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45521,12 +51965,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "5db1b0f7f20a48b2b9fc7d4a", + "revision": "84f891aa2d1c4491a383604c", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45534,10 +51978,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691495110179", - "revision": "0b46ccaff95a4b729631b0ba", + "revision": "45ccf4f23f104712b79a5e37", "revision_nr": 1, - "created": 1701463509562, - "modified": 1701463509562 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45552,23 +51996,35 @@ "total_amount": 1000, "id": 1691495110179, "history_id": 1691495110179, - "date_created": "2023-08-08T11:45:10.179Z", - "date_last_updated": "2023-08-08T13:05:51.775Z", + "date_created": { + "type": 6, + "value": 1691495110179 + }, + "date_last_updated": { + "type": 6, + "value": 1691499951775 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-08T13:05:51.775Z", - "money_release_date": "2023-08-08T13:05:51.775Z", + "date_approved": { + "type": 6, + "value": 1691499951775 + }, + "money_release_date": { + "type": 6, + "value": 1691499951775 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "3c96811cdcb346b6aab753af", + "revision": "07e806aceb804d61a57fa469", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45576,10 +52032,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.000,00 para a carteira iVip 0625.7521.4502.4773-84", - "revision": "7186ee60ab404c9cae86b312", + "revision": "3a75c36bdbd24ccda2af4293", "revision_nr": 1, - "created": 1701463509562, - "modified": 1701463509562 + "created": 1701465820536, + "modified": 1701465820536 } }, { @@ -45595,12 +52051,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "2d6e12a103f049c1942cf4bd", + "revision": "dedaefbd3a18473a8ce8b42c", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45608,10 +52064,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691500327136", - "revision": "f2663587937c42d1aa3d5623", + "revision": "d9554e908a4b4254a884be42", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45626,9 +52082,18 @@ "total_amount": 332596, "id": 1691500327136, "history_id": 1691500327136, - "date_created": "2023-08-08T13:12:07.136Z", - "date_last_updated": "2023-08-08T13:12:07.136Z", - "date_of_expiration": "2023-08-08T13:12:07.136Z", + "date_created": { + "type": 6, + "value": 1691500327136 + }, + "date_last_updated": { + "type": 6, + "value": 1691500327136 + }, + "date_of_expiration": { + "type": 6, + "value": 1691500327136 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -45637,10 +52102,10 @@ "description": "Compra de 332.596,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "912c71facee041ad9fa3c0eb", + "revision": "c0fafa926640424ea3935f41", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45656,12 +52121,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "0875a6f170a2496bbb4ea18a", + "revision": "291306982ced4a308ed6a612", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45669,10 +52134,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691711802306", - "revision": "728206e9d99c496db58b4b46", + "revision": "b2dcbf56f92f4c2db18bb755", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45687,9 +52152,18 @@ "total_amount": 372254, "id": 1691711802306, "history_id": 1691711802306, - "date_created": "2023-08-10T23:56:42.306Z", - "date_last_updated": "2023-08-10T23:56:42.306Z", - "date_of_expiration": "2023-08-10T23:56:42.306Z", + "date_created": { + "type": 6, + "value": 1691711802306 + }, + "date_last_updated": { + "type": 6, + "value": 1691711802306 + }, + "date_of_expiration": { + "type": 6, + "value": 1691711802306 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -45698,10 +52172,10 @@ "description": "Compra de 372.254,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "df5e1e0607cc4cf7b42b7699", + "revision": "a9b5d0973ec449379e4b090d", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45717,12 +52191,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "264203cdea7245e58fa4f1be", + "revision": "cd047cbc9a764d798215ee4a", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45730,10 +52204,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691848017758", - "revision": "bee04f733afe4f1eaa6e4f8a", + "revision": "fcdfe4a050c0458bbae5db35", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45748,9 +52222,18 @@ "total_amount": 378088, "id": 1691848017758, "history_id": 1691848017758, - "date_created": "2023-08-12T13:46:57.758Z", - "date_last_updated": "2023-08-12T13:46:57.758Z", - "date_of_expiration": "2023-08-12T13:46:57.758Z", + "date_created": { + "type": 6, + "value": 1691848017758 + }, + "date_last_updated": { + "type": 6, + "value": 1691848017758 + }, + "date_of_expiration": { + "type": 6, + "value": 1691848017758 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -45759,10 +52242,10 @@ "description": "Compra de 378.088,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "2cf2480b2c164b089ffce99a", + "revision": "e782cfd5124a489aa06359f5", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45778,12 +52261,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "cec60016607c44ed93709633", + "revision": "91b61f7fe63e414ab03bc8c2", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45791,10 +52274,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692027842104", - "revision": "cf5e9fd943114f718301f1fa", + "revision": "3eae0e8091ce491ca534a1d1", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45809,9 +52292,18 @@ "total_amount": 456006, "id": 1692027842104, "history_id": 1692027842104, - "date_created": "2023-08-14T15:44:02.104Z", - "date_last_updated": "2023-08-14T15:44:02.104Z", - "date_of_expiration": "2023-08-14T15:44:02.104Z", + "date_created": { + "type": 6, + "value": 1692027842104 + }, + "date_last_updated": { + "type": 6, + "value": 1692027842104 + }, + "date_of_expiration": { + "type": 6, + "value": 1692027842104 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -45820,10 +52312,10 @@ "description": "Compra de 456.006,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "7f3d3697616a44eaa7b70342", + "revision": "81e983d6ab254e64972e45f9", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45839,12 +52331,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "462d88be619545d289b6e0f6", + "revision": "b1e077ebc6404e1c8ec8c83e", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45852,10 +52344,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692250715020", - "revision": "55f160de13c345fe9ddeb6c8", + "revision": "67ec1905d23c4c23b6b81145", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45870,9 +52362,18 @@ "total_amount": 475181, "id": 1692250715020, "history_id": 1692250715020, - "date_created": "2023-08-17T05:38:35.020Z", - "date_last_updated": "2023-08-17T05:38:35.020Z", - "date_of_expiration": "2023-08-17T05:38:35.020Z", + "date_created": { + "type": 6, + "value": 1692250715020 + }, + "date_last_updated": { + "type": 6, + "value": 1692250715020 + }, + "date_of_expiration": { + "type": 6, + "value": 1692250715020 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -45881,10 +52382,10 @@ "description": "Compra de 475.181,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "71f85b50daf04d6ca170662e", + "revision": "794efde114904122808fe231", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45893,12 +52394,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-18T23:21:10.157Z" + ".val": { + "type": 6, + "value": 1695079270157 + } }, - "revision": "8c3e4df54d7c478c81064172", + "revision": "2c50d634008249d0ab65bb27", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45914,12 +52418,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "4b6e1decd5fa4b11aa11c278", + "revision": "34eb747a6cd44b0a941f3b69", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45927,10 +52431,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692487270158", - "revision": "7343fa747f514dad96b9ddb8", + "revision": "797449a76db342e2bc62aa4e", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45945,8 +52449,14 @@ "total_amount": 1500, "id": 1692487270158, "history_id": 1692487270158, - "date_created": "2023-08-19T23:21:10.158Z", - "date_last_updated": "2023-08-19T23:21:10.158Z", + "date_created": { + "type": 6, + "value": 1692487270158 + }, + "date_last_updated": { + "type": 6, + "value": 1692487270158 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -45954,10 +52464,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "aab8a3465a8f4174bf2d12f5", + "revision": "b2ad010fb5e347209a8ed620", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45965,10 +52475,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", - "revision": "f1e78fd1db6349bda94a3859", + "revision": "62c8463a7b424847974c077d", "revision_nr": 1, - "created": 1701463509563, - "modified": 1701463509563 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45977,12 +52487,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-18T23:26:18.184Z" + ".val": { + "type": 6, + "value": 1695079578184 + } }, - "revision": "0d2a80030b414f9696877ccd", + "revision": "6c5be1296eec4076b8ed5904", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -45998,12 +52511,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "72052f5b98b44adf8092492b", + "revision": "cf5babbea7b949b4bbaaaaf6", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -46011,10 +52524,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692487578184", - "revision": "2cde1de9b3f245e282c4abbe", + "revision": "d0a91822d19a4270a61c90f0", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -46029,8 +52542,14 @@ "total_amount": 1500, "id": 1692487578184, "history_id": 1692487578184, - "date_created": "2023-08-19T23:26:18.184Z", - "date_last_updated": "2023-08-19T23:26:18.184Z", + "date_created": { + "type": 6, + "value": 1692487578184 + }, + "date_last_updated": { + "type": 6, + "value": 1692487578184 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -46038,10 +52557,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "9f3cacf1ca2f41b3a850446a", + "revision": "d7046f19adf74234a1e39f1c", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -46049,10 +52568,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", - "revision": "5235b4fa42d543d99704be00", + "revision": "275ad02976a942bca723d426", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -46068,12 +52587,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "96c36c9afab14900997d1720", + "revision": "530ce4da0d1e45f7adc03e2f", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -46081,10 +52600,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692488711638", - "revision": "c8e71c22747b4678b4ab895a", + "revision": "5ca944a855174c478848116c", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -46099,9 +52618,18 @@ "total_amount": 328542, "id": 1692488711638, "history_id": 1692488711638, - "date_created": "2023-08-19T23:45:11.638Z", - "date_last_updated": "2023-08-19T23:45:11.638Z", - "date_of_expiration": "2023-08-19T23:45:11.638Z", + "date_created": { + "type": 6, + "value": 1692488711638 + }, + "date_last_updated": { + "type": 6, + "value": 1692488711638 + }, + "date_of_expiration": { + "type": 6, + "value": 1692488711638 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -46110,10 +52638,10 @@ "description": "Compra de 328.542,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "0610ebefe84f4c808b1305ff", + "revision": "c3c85781e9c144b9be5b0800", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -46122,12 +52650,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-20T20:02:44.836Z" + ".val": { + "type": 6, + "value": 1695240164836 + } }, - "revision": "bfd6482a50df41e7bca534d6", + "revision": "d2be1bcaba2c414aafce73b2", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -46143,12 +52674,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "c97a96f4e0c047a2ad3e15b9", + "revision": "9d0031f3055a4d81a9c1607e", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -46156,10 +52687,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692648164836", - "revision": "afcda7df862742079c281f6b", + "revision": "86c8c805df85443aaa2ec11c", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -46174,23 +52705,35 @@ "total_amount": 1500, "id": 1692648164836, "history_id": 1692648164836, - "date_created": "2023-08-21T20:02:44.836Z", - "date_last_updated": "2023-08-22T01:03:51.441Z", + "date_created": { + "type": 6, + "value": 1692648164836 + }, + "date_last_updated": { + "type": 6, + "value": 1692666231441 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-22T01:03:51.441Z", - "money_release_date": "2023-08-22T01:03:51.441Z", + "date_approved": { + "type": 6, + "value": 1692666231441 + }, + "money_release_date": { + "type": 6, + "value": 1692666231441 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "a84a4ba17ec84c079718bacc", + "revision": "ed870950596541feb0dfcbe8", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -46198,10 +52741,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", - "revision": "439c621a8d344d5da2e04a49", + "revision": "e9ef5dc1a14848d4bb0174c2", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -46217,12 +52760,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "1a0491ce6f64446f96bf3af0", + "revision": "b9c59bc6496a46ddbb42f65b", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -46230,10 +52773,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692666772551", - "revision": "59cf94a7e78d448abec3f16f", + "revision": "49f8b706649c47fcb562ee33", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -46248,9 +52791,18 @@ "total_amount": 285329, "id": "1692666772551", "history_id": "1692666772551", - "date_created": "2023-08-22T01:12:52.551Z", - "date_last_updated": "2023-08-22T01:12:52.551Z", - "date_of_expiration": "2023-08-22T01:12:52.551Z", + "date_created": { + "type": 6, + "value": 1692666772551 + }, + "date_last_updated": { + "type": 6, + "value": 1692666772551 + }, + "date_of_expiration": { + "type": 6, + "value": 1692666772551 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -46259,10 +52811,10 @@ "description": "Compra de 285.329,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "7eace4974e7d4c65bb30fa3a", + "revision": "10881fafc79d4e31bb2acf39", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820537, + "modified": 1701465820537 } }, { @@ -46278,12 +52830,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "db3a7e3600624068bc56dcec", + "revision": "dd0dbbc163c94889bc788434", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46291,10 +52843,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692666803752", - "revision": "a8de6b5d26554007bdd2eed1", + "revision": "7f196cf037f54a498006ccbf", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46309,9 +52861,18 @@ "total_amount": 285329, "id": "1692666803752", "history_id": "1692666803752", - "date_created": "2023-08-22T01:13:23.752Z", - "date_last_updated": "2023-08-22T01:13:23.752Z", - "date_of_expiration": "2023-08-22T01:13:23.752Z", + "date_created": { + "type": 6, + "value": 1692666803752 + }, + "date_last_updated": { + "type": 6, + "value": 1692666803752 + }, + "date_of_expiration": { + "type": 6, + "value": 1692666803752 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -46320,10 +52881,10 @@ "description": "Compra de 285.329,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "3d012eb4672e4619883f3ff6", + "revision": "6e57c944d3b74225a9d5ee8a", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46339,12 +52900,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "b1655d78642d44b68ae7cb96", + "revision": "896f7764b478404a91d404ca", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46352,10 +52913,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692730130844", - "revision": "4c09ef6652304612a97bd7f6", + "revision": "2255ec964b0a4dd196d0f8ae", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46370,9 +52931,18 @@ "total_amount": 282682, "id": "1692730130844", "history_id": "1692730130844", - "date_created": "2023-08-22T18:48:50.844Z", - "date_last_updated": "2023-08-22T18:48:50.844Z", - "date_of_expiration": "2023-08-22T18:48:50.844Z", + "date_created": { + "type": 6, + "value": 1692730130844 + }, + "date_last_updated": { + "type": 6, + "value": 1692730130844 + }, + "date_of_expiration": { + "type": 6, + "value": 1692730130844 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -46381,10 +52951,10 @@ "description": "Compra de 282.682,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "6c862884428448f1b518d142", + "revision": "76f906f5fda848a78a4b20f2", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46400,12 +52970,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "0beb4e20b7f5499d8982001b", + "revision": "5dc38b49191a4235b1f1e76f", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46413,10 +52983,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692751123570", - "revision": "f47f631137c74111b6a77d98", + "revision": "98ccb23787bc4f9d9f65a215", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46431,9 +53001,18 @@ "total_amount": 526629, "id": "1692751123570", "history_id": "1692751123570", - "date_created": "2023-08-23T00:38:43.570Z", - "date_last_updated": "2023-08-23T00:38:43.570Z", - "date_of_expiration": "2023-08-23T00:38:43.570Z", + "date_created": { + "type": 6, + "value": 1692751123570 + }, + "date_last_updated": { + "type": 6, + "value": 1692751123570 + }, + "date_of_expiration": { + "type": 6, + "value": 1692751123570 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -46442,10 +53021,10 @@ "description": "Compra de 526.629,00 IVIP por 400,00 BRL", "status_detail": "accredited" }, - "revision": "5c8b396c9e9445aab4a6f417", + "revision": "37f9e7bde4324f35b01d4075", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46461,12 +53040,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "c21aef56101b4e6aa1b5de49", + "revision": "a9bbeef56277427f9f0ebbf8", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46474,10 +53053,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692814492618", - "revision": "dbbd36ee96b1478b99256a6d", + "revision": "09f74d8b87584d87baec7d80", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46492,9 +53071,18 @@ "total_amount": 614430, "id": "1692814492618", "history_id": "1692814492618", - "date_created": "2023-08-23T18:14:52.618Z", - "date_last_updated": "2023-08-23T18:14:52.618Z", - "date_of_expiration": "2023-08-23T18:14:52.618Z", + "date_created": { + "type": 6, + "value": 1692814492618 + }, + "date_last_updated": { + "type": 6, + "value": 1692814492618 + }, + "date_of_expiration": { + "type": 6, + "value": 1692814492618 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -46503,10 +53091,10 @@ "description": "Compra de 614.430,00 IVIP por 500,00 BRL", "status_detail": "accredited" }, - "revision": "6ed2000cf0fa49899d709fb5", + "revision": "45039878390d458c953f731f", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46515,12 +53103,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-14T15:33:42.264Z" + ".val": { + "type": 6, + "value": 1697297622264 + } }, - "revision": "9d8155df5dea43eaae30354f", + "revision": "d1c15bc3b953458daca4dd60", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46536,12 +53127,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "70f5d497bf2343caa1978319", + "revision": "4517e79651bf49f18ff0c07a", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46549,10 +53140,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1694705622264", - "revision": "a4008b5487294a2d9b30a9de", + "revision": "61ac829acf214d5588834e84", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46567,23 +53158,35 @@ "total_amount": 2000, "id": "1694705622264", "history_id": "1694705622264", - "date_created": "2023-09-14T15:33:42.264Z", - "date_last_updated": "2023-09-14T18:38:17.493Z", + "date_created": { + "type": 6, + "value": 1694705622264 + }, + "date_last_updated": { + "type": 6, + "value": 1694716697493 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-09-14T18:38:17.493Z", - "money_release_date": "2023-09-14T18:38:17.493Z", + "date_approved": { + "type": 6, + "value": 1694716697493 + }, + "money_release_date": { + "type": 6, + "value": 1694716697493 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "0d3ddc2c24974fa987880067", + "revision": "eb32450e8b144e61a692cf63", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46591,10 +53194,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0625.7521.4502.4773-84", - "revision": "0a4c107317c6439b80d64931", + "revision": "5f0e304538ce4a0980d2c519", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46610,12 +53213,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "6e23eba9eedf4df99da7c9e1", + "revision": "63bb1de00a7a43b1aaf29447", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46623,10 +53226,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1694719090426", - "revision": "cbbb31fe29604e05a9f76564", + "revision": "ffc58264ed4a414a91107848", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46641,9 +53244,18 @@ "total_amount": 2446285, "id": "1694719090426", "history_id": "1694719090426", - "date_created": "2023-09-14T19:18:10.426Z", - "date_last_updated": "2023-09-14T19:18:10.426Z", - "date_of_expiration": "2023-09-14T19:18:10.426Z", + "date_created": { + "type": 6, + "value": 1694719090426 + }, + "date_last_updated": { + "type": 6, + "value": 1694719090426 + }, + "date_of_expiration": { + "type": 6, + "value": 1694719090426 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -46652,10 +53264,10 @@ "description": "Compra de 2.446.285,00 IVIP por 2.000,00 BRL", "status_detail": "accredited" }, - "revision": "66b2fe72e6fa40a08fa4a1de", + "revision": "32dcc1621dc4457b846f33ca", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46671,12 +53283,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "24a31456007b4fabb7d59c07", + "revision": "4b4a22a7e13f42939225d3f5", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46684,10 +53296,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1695328321082", - "revision": "03dfdf27509b406280bdf6e3", + "revision": "1a00139d0a48484282828c2e", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46702,9 +53314,18 @@ "total_amount": 1136670, "id": "1695328321082", "history_id": "1695328321082", - "date_created": "2023-09-21T20:32:01.082Z", - "date_last_updated": "2023-09-21T20:32:01.082Z", - "date_of_expiration": "2025-09-21T20:32:01.058Z", + "date_created": { + "type": 6, + "value": 1695328321082 + }, + "date_last_updated": { + "type": 6, + "value": 1695328321082 + }, + "date_of_expiration": { + "type": 6, + "value": 1758486721058 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46712,10 +53333,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ac0e0578e06244bb803c9414", + "revision": "2fb1b5d4e6814adeb1fe2f46", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46723,10 +53344,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.136.670,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 21/09/2025 - P9A02KSL", - "revision": "26e25695842a43b6913b589a", + "revision": "5595fbe1f8b14105b6fccb12", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46742,12 +53363,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "67031aa19c3c4e06b18036fd", + "revision": "fd59a498e26a46dcb1daa15c", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46755,10 +53376,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1696508927650", - "revision": "9d07a5803898484e92ed6ef8", + "revision": "210096fde7bc4f81b44f8ab9", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46774,9 +53395,18 @@ "total_amount": 4958277, "id": "1696508927650", "history_id": "1696508927650", - "date_created": "2023-10-05T12:28:47.650Z", - "date_last_updated": "2023-10-05T12:28:47.650Z", - "date_of_expiration": "2023-11-05T12:28:47.619Z", + "date_created": { + "type": 6, + "value": 1696508927650 + }, + "date_last_updated": { + "type": 6, + "value": 1696508927650 + }, + "date_of_expiration": { + "type": 6, + "value": 1699187327619 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -46784,10 +53414,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "31ad666b2a174a808a15e8b9", + "revision": "2db46fb8552e4ae3bc198144", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46795,10 +53425,10 @@ "content": { "type": "STRING", "value": "Investimento de 4.958.277,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", - "revision": "8f97af344a9c4423b787bccd", + "revision": "b08c1a20adad43c899603191", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46806,10 +53436,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f26f880b12aa43f7b2973f9c", + "revision": "bd953279f1824da7a584e07c", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46817,10 +53447,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "07e2c80e49da4825ada02585", + "revision": "299cff0554054710bc8f3ab3", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46830,12 +53460,15 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-08-05T13:00:00.848Z" + "analysisRequested": { + "type": 6, + "value": 1691240400848 + } }, - "revision": "f83f995e20994eaaa52ef332", + "revision": "f8ceb8d511d2407695384053", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46846,12 +53479,15 @@ "dataModificacao": 1690559154331, "dateValidity": 1690559154379, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } }, - "revision": "fe2e56aba9ef4733b8b26346", + "revision": "e83446b3516f4443ad9f24af", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46863,10 +53499,10 @@ "symbol": "BRL", "value": 30.33 }, - "revision": "9349c6f485724dcc9b1bf171", + "revision": "9cb5d6fb962c40609b38cb37", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46874,10 +53510,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3ad1b1d92ff042178b170d09", + "revision": "3849242863dc44c7bcc8684e", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46885,12 +53521,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "955c07a6fe5847ac8a41b65d", + "revision": "7f6f4a92767c4aec98197508", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46905,22 +53541,37 @@ "total_amount": 150, "history_id": 1689114820357, "id": 1689114820357, - "date_created": "2023-07-11T22:33:40.357Z", - "date_last_updated": "2023-07-18T14:45:51.563Z", - "date_of_expiration": "2023-08-10T22:33:40.357Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-18T14:45:51.563Z", - "money_release_date": "2023-07-18T14:45:51.563Z", + "date_created": { + "type": 6, + "value": 1689114820357 + }, + "date_last_updated": { + "type": 6, + "value": 1689691551563 + }, + "date_of_expiration": { + "type": 6, + "value": 1691706820357 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689691551563 + }, + "money_release_date": { + "type": 6, + "value": 1689691551563 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "5e5f26fe78c9402aafdfae01", + "revision": "de156444f8fb466788ac5b3a", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46928,10 +53579,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0650.1373.1763.7014-00", - "revision": "4e7b701a68d5474ba386e40d", + "revision": "bdc4a789b73142dfb8ebfe5f", "revision_nr": 1, - "created": 1701463509564, - "modified": 1701463509564 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46939,10 +53590,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c95906df256e4a838f1438d0", + "revision": "8df7f8e604dd427f9166770b", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46950,10 +53601,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5c49b620f5244fb7ad9d415b", + "revision": "b621b0e68525450cb0eb79d0", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46964,10 +53615,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "ac9f68d3435142969aba80f4", + "revision": "8945e3ad5c934b118f29c272", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46979,12 +53630,15 @@ "dateValidity": 1689114736496, "totalValue": 30.93, "currencyType": "USD", - "balancesModificacao": "2023-08-13T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1691895600000 + } }, - "revision": "fc0f0770f00542b0aa96482e", + "revision": "e8e99ef8f48246be9fd3e910", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -46992,10 +53646,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "bf4741f090b54535be4dddec", + "revision": "ae93085e699d42638740c968", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47007,10 +53661,10 @@ "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "87727b21260e4ce1b56998cc", + "revision": "5add4859930c498a8a391663", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47018,10 +53672,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ce44c217c8574c9db23dd97a", + "revision": "a3ae035698fe40158c474198", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47031,10 +53685,10 @@ "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "6b6d06cb24d44e7aaf1e9a36", + "revision": "76bd28192968444ea3efa32b", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47042,10 +53696,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7372d291a8534d449c7cad43", + "revision": "1a3064ae2ab549c095d223c3", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47059,10 +53713,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "dcdd6ea9b65f47c29f556463", + "revision": "81588be9134f4d04b90d92bb", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47070,10 +53724,10 @@ "content": { "type": "STRING", "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540520.205802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558382385016304DD50", - "revision": "863e481798da4af493bf0e59", + "revision": "c5833189668f4d0a8379bfa5", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47081,10 +53735,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55838238501/ticket?caller_id=1310149122&hash=983b907e-205f-4db2-9b0a-8e3b51ecea21", - "revision": "9b18b385c1f449378c13431d", + "revision": "70ce0eda884843988911a0e1", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47092,10 +53746,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJf0lEQVR42u3dQW7jOhIGYGrlY/io9lF9hLfUShwEebFZVVTizGCAbunzpo0okj72isX8LLb+x3/+aYyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjH+2cW3xc/38ye3r0ueXpff716XPz/Jx8+Pzy/3rh89f/rh0+fjn49Klbx+X/v1JvWt4ICMjIyMjIyMjI+NZjOPFD0j9Eo2310s+fmebjay9aH18Tr19ymBkZGRkZGRkZGQ8g/H+NVt/vvZzav/v+/trjt++XrulouHyGtkWjI9URoR3ra8ChZGRkZGRkZGRkfHkxj68NiyxR/WwVP8cUBvHET/DOFZGRkZGRkZGRkZGxjx/ny6opxX6Zage2uv2QR0Li1BhXMIqPiMjIyMjIyMjI+M5jT0mXJawQj8s3q8lcr6+vsTl/JrBqaXGf5/vYWRkZGRkZGRkZPzbjXUv6VJW1v8/X/6X/a6MjIyMjIyMjIyMf7Nx5xPS6HE5v5dYehjrcwvpWlbxL/3dDyMjIyMjIyMjI+PRjVuqFi6pjLiO6/HPNPqWOri0lIIJW1HjL4exLm+s2TMyMjIyMjIyMjIe1HhNP0mRmSXQHiXwnkd2G3ucxwxODePcGBkZGRkZGRkZGc9mXEu7xLzRs5V+LaHLS5+v4j9Sc5d7HGsfbr+/le9hZGRkZGRkZGRkPJ5x6KSYOyC29JOhlcs1reKnxfuWRhYP/xxoD0ZGRkZGRkZGRsYTGts4bb/Mw+xp1t/m5wiFkW2py8tafnn2FwNGRkZGRkZGRkbG4xtzLD2vtffeS0DmUXLu889SBl3VS3ogIyMjIyMjIyMj4xmMucf5kJS5hBJhfgpo2zuGaBDFnaOpW8x7GXZGRkZGRkZGRkbGoxlz9vxS3jb8TmygGIqGJQ2x7fVWfKR64t18DyMjIyMjIyMjI+NhjD3EyYeXXPealN/LftNvurykMqKlL7GNOiMjIyMjIyMjI+NZjDmN/ijYNnYr70ndyllD9Tk5jDNvu9gZGRkZGRkZGRkZT2YM0/a6qTSeEbRXK0yHeHsrlfNOdoaRkZGRkZGRkZHxQMZh/h4bH157beXSS/UwdGfpKbqeC4tezizqb5+HxMjIyMjIyMjIyHg0Y+1NHl87RM5ju8RbbIiei4bL/BWTFXpGRkZGRkZGRkbGsxnXFGzJLVh6qRWeU/v7RD1Lx89W6OPm1Gu+jZGRkZGRkZGRkfHYxp5asFyni+41jb57fNBaCot46bbTZHFhZGRkZGRkZGRkPJMxZ2damMgPM/rQUjGu9D9f8ii0Ni75j+XIbJspIyMjIyMjIyMj4zmMwwp9zs6sr6hLjpzvhNl773u9FdOgx3hO2LfKyMjIyMjIyMjIeAZjXJj/ZhU/5dxzu8Q4xD7dk7p76dF+0YedkZGRkZGRkZGR8e83zub4W2mX2Mpy/jig25hzXycbT7+5tL2Vs2dkZGRkZGRkZGQ8mjEuzD9eKZicas/9WmqqfS8ys83veqQ0DSMjIyMjIyMjI+OpjLM0ep7j13h7G6f/LWRw5nXAOj8gNERvGBkZGRkZGRkZGc9hfCbWl5RqzztHQ+Q892KZ3dXLHwGWGfb2c63AyMjIyMjIyMjIeCxjn3RAnK7Zf2O8xyaLeQdqrkuuk3f9sJeUkZGRkZGRkZGR8VjGIeqSZ/2tTP+rOs/6Qxxmp+1iKBre7q3IyMjIyMjIyMjIeChjTcG0FGa/TLq87EBm2J0BDQ/8sf8jIyMjIyMjIyMj47GMsVv5bYyux97kLR4HGr/s7gqth4j2wr+99XcFRkZGRkZGRkZGxgMZ89FAYf6+Jdqatn4+XptBY9+X2aBzl5c2zcIzMjIyMjIyMjIynsEYY+kpez6Ntw9r9o/XgHZW3++x3cuy15Gxf1/PMDIyMjIyMjIyMh7SeE0L82HnaG12fnkZ4xbSfAxR2znzc/tddoaRkZGRkZGRkZHxgMaQednps7JXK4wR+IDN2Zkair+WeoKRkZGRkZGRkZHxdMYYbLmOF/Ny/hpaKu7tE30+MJYjuSNjY2RkZGRkZGRkZDytsU9akscmi3kcYfH+MhlHbhJTQ/Exg8PIyMjIyMjIyMh4FmPNs8Qntck202tpoBjSNOOS/6w3TK4ebvW/i5GRkZGRkZGRkfHYxtxbMb+kfkmbQWOspqWtqC1Ctln781vPHRkZGRkZGRkZGRkZD26Ms/77mILpk6JhPDXoPs76Z9tMl1kEvnaCeWPNnpGRkZGRkZGRkfFoxiXR6slCa+l6Hjee/nBpNztT6xJGRkZGRkZGRkbGExnnpwbFBoptjMy0+a7QWwmzh2aN6+SvAWM8h5GRkZGRkZGRkfEsxjxtDwmX/Oza7LylbovPzxC02TnFaKA9GBkZGRkZGRkZGc9m7GGpPuRZWuKvpTJoqdQIWfiYymlJHUqE9Xf9HxkZGRkZGRkZGRn/bmPOzjxKw5UQOW/p9M42ae6SEzfxrr3O6IyMjIyMjIyMjIynMra0PXR4ZEu9FZ9z/KiuIZrUyHyaWA+HiDIyMjIyMjIyMjKeyhixt9JAsRVa2m/aQ9HQJxXGZd/Yw3I+IyMjIyMjIyMj46mMgyif/xMaKM7atMSXzGix/2Ib39VLJxhGRkZGRkZGRkbGMxhzjKU2XAm03ApxnXSCiVtRw4C2UGE8/xsYGRkZGRkZGRkZz2lskzxLT4/MHVyGpMzPIZoaz2mTUDwjIyMjIyMjIyPjOYw7IZr2TbAl5muWFL1pe03Ta9uYnv4+wMjIyMjIyMjIyHgWY57sXyf59BpC36kMbn22OfVSFubXyV0LIyMjIyMjIyMj45mMS4mxtNSLpZ4a1MLpQ6FWmPVWzKmcX9cKjIyMjIyMjIyMjAc03uOsfwklQh/DL7EOuO4vw4fb67tiqTHczsjIyMjIyMjIyHhW407APPRr2b09PzlkZ56Q7Xc5e0ZGRkZGRkZGRsbjG5fSSTFHZobV92d0ffzSXgv8+a8Bz0st7kllZGRkZGRkZGRkPJux7zwpfh5lHMNkv3YrX1MDmPzAtBWVkZGRkZGRkZGR8VTGvJf0iR2+bIM6vW1LJ3zOEust8Gsq58fsDCMjIyMjIyMjI+OxjH/mh5GRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGR8Q80/gd+PCOEIzZrpQAAAABJRU5ErkJggg==", - "revision": "19754a1de6404f74afcaed0e", + "revision": "833c1ec4f670422d8850f3ea", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47103,10 +53757,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "77a223752a374eeeb1f7a9a4", + "revision": "f7e3ff311e2b4ed5a76f01db", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47121,19 +53775,28 @@ "total_amount": 20.2, "history_id": 1679067982009, "id": 55838238501, - "date_created": "2023-03-17T11:46:22.887-04:00", - "date_last_updated": "2023-03-18T11:50:43.000-04:00", - "date_of_expiration": "2023-03-18T11:46:22.597-04:00", + "date_created": { + "type": 6, + "value": 1679067982887 + }, + "date_last_updated": { + "type": 6, + "value": 1679154643000 + }, + "date_of_expiration": { + "type": 6, + "value": 1679154382597 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", "status_detail": "expired", "currency_id": "BRL" }, - "revision": "08572da97ef64b9694060aff", + "revision": "28af291c6cb547e1a08cfe01", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47141,10 +53804,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0667.4940.3784.9818-40", - "revision": "41a640cff77041a68339847b", + "revision": "efda49e996c1413fa7a8fd9b", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47152,10 +53815,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7ad1e36995254d52b6fd633c", + "revision": "5a7c64c4b17b44e0b2963745", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47163,10 +53826,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4bab6d6c251a4d5aba5853e9", + "revision": "c0e2ce0b7b4f46cfa9232fd5", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47177,10 +53840,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "05707163d8b2463ca341bf96", + "revision": "7dfc0a64e85f4790a3f3bf1c", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47193,10 +53856,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "aab1af77fbc5484499c358a9", + "revision": "dfe96a2c4754422baa772d3f", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47208,10 +53871,10 @@ "symbol": "BRL", "value": 3.86 }, - "revision": "c4bd6d2af3dc443fbd597a10", + "revision": "e0fc2f8f586c4277b61ae198", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47223,10 +53886,10 @@ "symbol": "IVIP", "value": 1888.088 }, - "revision": "82e5e04f9ea843b5a7ae7676", + "revision": "2a8ebd668c084e06b3f170ce", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47234,10 +53897,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4152b3d0c3cf4842830e56ed", + "revision": "622d02756bd74eda8ac69499", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47245,12 +53908,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "9209da3d06eb48a5b85a3be2", + "revision": "a599740be6c3462a8d399f61", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47265,22 +53928,37 @@ "total_amount": 1600, "history_id": 1684181007832, "id": 1684181007832, - "date_created": "2023-05-15T20:03:27.832Z", - "date_last_updated": "2023-05-15T21:15:42.475Z", - "date_of_expiration": "2023-06-14T20:03:27.832Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-15T21:15:42.475Z", - "money_release_date": "2023-05-15T21:15:42.475Z", + "date_created": { + "type": 6, + "value": 1684181007832 + }, + "date_last_updated": { + "type": 6, + "value": 1684185342475 + }, + "date_of_expiration": { + "type": 6, + "value": 1686773007832 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684185342475 + }, + "money_release_date": { + "type": 6, + "value": 1684185342475 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "1d06f703cf4e4c4b8cee32d6", + "revision": "59193178cb994fb5821b9317", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47288,10 +53966,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 0721.5687.2012.5989-10", - "revision": "3e1d3d21ff4340e4aba98d09", + "revision": "b4ece90339414af1a4839808", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47303,10 +53981,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, - "revision": "7088812890534e97b42f5a07", + "revision": "6d42553e16764459892cfe6b", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47314,10 +53992,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ab9e0eb5bd684cdeb20eaeea", + "revision": "637367bb38b84d6d97da997f", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47325,10 +54003,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "ec7bffb52332470d833375a7", + "revision": "727be00a8faf4f888cc47011", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47343,19 +54021,28 @@ "total_amount": 1810.08, "history_id": 1684623306168, "id": 1684623306168, - "date_created": "2023-05-20T22:55:06.168Z", - "date_last_updated": "2023-05-20T22:55:06.168Z", - "date_of_expiration": "2023-06-19T22:55:06.168Z", + "date_created": { + "type": 6, + "value": 1684623306168 + }, + "date_last_updated": { + "type": 6, + "value": 1684623306168 + }, + "date_of_expiration": { + "type": 6, + "value": 1687215306168 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "96ee71c486f445a4b63dec4e", + "revision": "c3a171ae1cdf44e8b9c7c738", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47363,10 +54050,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "51d4104c2d404e1797be70be", + "revision": "9547438d72cf46589e90c327", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820538, + "modified": 1701465820538 } }, { @@ -47384,12 +54071,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "8050ed2fc57d44c6ace368e7", + "revision": "b4792d235b904607af9309ec", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47405,9 +54092,18 @@ "original_amount": 15956517, "total_amount": 15956517, "id": 1684624428265, - "date_created": "2023-05-20T23:13:48.265Z", - "date_last_updated": "2023-05-20T23:13:48.265Z", - "date_of_expiration": "2023-05-20T23:13:48.265Z", + "date_created": { + "type": 6, + "value": 1684624428265 + }, + "date_last_updated": { + "type": 6, + "value": 1684624428265 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624428265 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47416,10 +54112,10 @@ "history_id": 1684624428265, "description": "Compra de 15.956.517,00 IVIP por 3.276,00 BRL" }, - "revision": "3f9743d0a1234d74ad47b06f", + "revision": "3dfa9e2adbfc49c7bcff9145", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47431,10 +54127,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, - "revision": "83aadc7b7aa5484e8642e910", + "revision": "fd077770b3b641c9b11ec5e0", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47442,10 +54138,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7c1b0b7cc36443a38c498ee6", + "revision": "e37e7305d54f479088166f30", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47453,10 +54149,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "6ac52ee6e11f4f2abb87c7d1", + "revision": "92eba3945e1d477b98d1dda6", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47471,19 +54167,28 @@ "total_amount": 1429.92, "history_id": 1684624857509, "id": 1684624857509, - "date_created": "2023-05-20T23:20:57.509Z", - "date_last_updated": "2023-05-20T23:20:57.509Z", - "date_of_expiration": "2023-06-19T23:20:57.509Z", + "date_created": { + "type": 6, + "value": 1684624857509 + }, + "date_last_updated": { + "type": 6, + "value": 1684624857509 + }, + "date_of_expiration": { + "type": 6, + "value": 1687216857509 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "c2f8e0560238498f99b4a77b", + "revision": "d184a69789354dacbd20fd86", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47491,10 +54196,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "c8c5dda6c99e4b48ac76d692", + "revision": "9e7edbf1604f47708deae79c", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47512,12 +54217,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "c5282d712ec84cbd9961ab8e", + "revision": "61b390cf90134c1099a0c877", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47533,9 +54238,18 @@ "original_amount": 6448848, "total_amount": 6448848, "id": 1684624906138, - "date_created": "2023-05-20T23:21:46.138Z", - "date_last_updated": "2023-05-20T23:21:46.138Z", - "date_of_expiration": "2023-05-20T23:21:46.138Z", + "date_created": { + "type": 6, + "value": 1684624906138 + }, + "date_last_updated": { + "type": 6, + "value": 1684624906138 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624906138 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47544,10 +54258,10 @@ "history_id": 1684624906138, "description": "Compra de 6.448.848,00 IVIP por 1.324,00 BRL" }, - "revision": "0564df072847431d884537bc", + "revision": "6b1798e0c0344e7787ddb50d", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47555,12 +54269,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "a44da5d11b9742428acd6bf5", + "revision": "93d6944904b140ba87a53c61", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47575,22 +54289,37 @@ "total_amount": 1000, "history_id": 1687293918217, "id": 1687293918217, - "date_created": "2023-06-20T20:45:18.217Z", - "date_last_updated": "2023-06-20T20:45:55.023Z", - "date_of_expiration": "2023-07-20T20:45:18.217Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-06-20T20:45:55.023Z", - "money_release_date": "2023-06-20T20:45:55.023Z", + "date_created": { + "type": 6, + "value": 1687293918217 + }, + "date_last_updated": { + "type": 6, + "value": 1687293955023 + }, + "date_of_expiration": { + "type": 6, + "value": 1689885918217 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1687293955023 + }, + "money_release_date": { + "type": 6, + "value": 1687293955023 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "2c5f543c6ac342a19e56c3b4", + "revision": "3c1b73989c114ad0ab68b9cf", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47598,10 +54327,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0721.5687.2012.5989-10", - "revision": "da34568308de4501a0ad488e", + "revision": "5d5581fd96fd4874a7f8a585", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47621,12 +54350,12 @@ "installment_amount": 452.52, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "48d5e5d79ae64436bf8bbf0f", + "revision": "289bc1be92f54ecebeb5accf", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47643,9 +54372,18 @@ "total_amount": 452.52, "id": 1687294024615, "contract_id": "1684623306168", - "date_created": "2023-06-20T20:47:04.615Z", - "date_last_updated": "2023-06-20T20:47:04.615Z", - "date_of_expiration": "2023-06-20T20:47:04.615Z", + "date_created": { + "type": 6, + "value": 1687294024615 + }, + "date_last_updated": { + "type": 6, + "value": 1687294024615 + }, + "date_of_expiration": { + "type": 6, + "value": 1687294024615 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -47653,10 +54391,10 @@ "currency_id": "BRL", "history_id": 1687294024615 }, - "revision": "7be7a63c5f144c60abaed1f9", + "revision": "f3f6582650c54af39f9cc988", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47664,10 +54402,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", - "revision": "f898a29387fb41f2ab4288f2", + "revision": "edbb599e936143bf9cd005f3", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47687,12 +54425,12 @@ "installment_amount": 357.48, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "f1ab2b4924134a3b97439ec4", + "revision": "0a8ab55c3fdb4459b8f26d5e", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47709,9 +54447,18 @@ "total_amount": 357.48, "id": 1687294024774, "contract_id": "1684624857509", - "date_created": "2023-06-20T20:47:04.774Z", - "date_last_updated": "2023-06-20T20:47:04.774Z", - "date_of_expiration": "2023-06-20T20:47:04.774Z", + "date_created": { + "type": 6, + "value": 1687294024774 + }, + "date_last_updated": { + "type": 6, + "value": 1687294024774 + }, + "date_of_expiration": { + "type": 6, + "value": 1687294024774 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -47719,10 +54466,10 @@ "currency_id": "BRL", "history_id": 1687294024774 }, - "revision": "d26fe8cfd4584f1ba3f19ce3", + "revision": "77ca31ea98da4df58e32d256", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47730,10 +54477,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", - "revision": "9fbeabac286d4ae295e2f0ad", + "revision": "7a2efccc3cae48928cf3f10a", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47751,12 +54498,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "4e31a2cd067c44e1a3554765", + "revision": "f6b01100e97349438534d3d4", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47771,9 +54518,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1688524692305, - "date_created": "2023-07-05T02:38:12.305Z", - "date_last_updated": "2023-07-05T02:38:12.305Z", - "date_of_expiration": "2023-08-05T02:38:12.305Z", + "date_created": { + "type": 6, + "value": 1688524692305 + }, + "date_last_updated": { + "type": 6, + "value": 1688524692305 + }, + "date_of_expiration": { + "type": 6, + "value": 1691203092305 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47781,10 +54537,10 @@ "currency_id": "IVIP", "history_id": 1688524692305 }, - "revision": "78d5a939fd25498cb833088d", + "revision": "8b5d60f77de34596b78b8e74", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47792,10 +54548,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/4/2023", - "revision": "8ce1b2c1c4a642d8970f57a2", + "revision": "0474e7d761dd43538cd28ad0", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47813,12 +54569,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d2d5fc2d5c43430a9ab9375f", + "revision": "5774cacf38d74272864a5342", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47834,9 +54590,18 @@ "original_amount": 155466, "total_amount": 155466, "id": 1688525524308, - "date_created": "2023-07-05T02:52:04.308Z", - "date_last_updated": "2023-07-05T02:52:04.308Z", - "date_of_expiration": "2023-07-05T02:52:04.308Z", + "date_created": { + "type": 6, + "value": 1688525524308 + }, + "date_last_updated": { + "type": 6, + "value": 1688525524308 + }, + "date_of_expiration": { + "type": 6, + "value": 1688525524308 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -47845,10 +54610,10 @@ "history_id": 1688525524308, "description": "Compra de 155.466,00 IVIP por 50,00 BRL" }, - "revision": "62aedc117cca4578a32db4f7", + "revision": "dd34e70c416d48fb9a45b3a6", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47856,12 +54621,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "1a9a9ba3f91e421ea460ae79", + "revision": "abfa87ed7681445a9527ee42", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47876,22 +54641,37 @@ "total_amount": 2500000, "history_id": 1689182003298, "id": 1689182003298, - "date_created": "2023-07-12T17:13:23.298Z", - "date_last_updated": "2023-07-13T13:55:52.452Z", - "date_of_expiration": "2023-07-12T17:13:23.298Z", + "date_created": { + "type": 6, + "value": 1689182003298 + }, + "date_last_updated": { + "type": 6, + "value": 1689256552452 + }, + "date_of_expiration": { + "type": 6, + "value": 1689182003298 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-07-13T13:55:52.452Z", - "money_release_date": "2023-07-13T13:55:52.452Z", + "date_approved": { + "type": 6, + "value": 1689256552452 + }, + "money_release_date": { + "type": 6, + "value": 1689256552452 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "71707366c1084c6a9e57b108", + "revision": "9f3b784e6c7e409285d3a506", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47899,10 +54679,10 @@ "content": { "type": "STRING", "value": "Saque de 2.500.000,00 IVIP para a carteira 0xA7d5Cb00F2824b3D3Bf7b0a4AFe13175618B0FdC", - "revision": "c09eaac38dc44f63bbb95a2f", + "revision": "e17a78575bd849d3826187fd", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47910,12 +54690,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "8785313e2814444db6f8ed5c", + "revision": "9684f4415ced455ab865ae89", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47930,22 +54710,37 @@ "total_amount": 800, "history_id": 1689689388308, "id": 1689689388308, - "date_created": "2023-07-18T14:09:48.308Z", - "date_last_updated": "2023-07-18T14:29:47.708Z", - "date_of_expiration": "2023-08-17T14:09:48.308Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-18T14:29:47.708Z", - "money_release_date": "2023-07-18T14:29:47.708Z", + "date_created": { + "type": 6, + "value": 1689689388308 + }, + "date_last_updated": { + "type": 6, + "value": 1689690587708 + }, + "date_of_expiration": { + "type": 6, + "value": 1692281388308 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689690587708 + }, + "money_release_date": { + "type": 6, + "value": 1689690587708 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "925d386ba0084662968dfa73", + "revision": "8dc5d081a99c42de8e122d6e", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47953,10 +54748,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0721.5687.2012.5989-10", - "revision": "7f831f973dc14d1d9923b8a7", + "revision": "ce2d174ad8604ef6bef3ef98", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47976,12 +54771,12 @@ "installment_amount": 452.52, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "decfd1a6467e49ef9bbda73d", + "revision": "6c9521b5259b4b05bb7b4ece", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -47998,9 +54793,18 @@ "total_amount": 452.52, "id": 1689690928096, "contract_id": "1684623306168", - "date_created": "2023-07-18T14:35:28.096Z", - "date_last_updated": "2023-07-18T14:35:28.096Z", - "date_of_expiration": "2023-07-18T14:35:28.096Z", + "date_created": { + "type": 6, + "value": 1689690928096 + }, + "date_last_updated": { + "type": 6, + "value": 1689690928096 + }, + "date_of_expiration": { + "type": 6, + "value": 1689690928096 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -48008,10 +54812,10 @@ "currency_id": "BRL", "history_id": 1689690928096 }, - "revision": "6298758e82e34733aa9069d9", + "revision": "c2e286d786e54cf48da9cf10", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48019,10 +54823,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", - "revision": "04bcc8c94671440bbe9db496", + "revision": "848ea558912e4711a7523671", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48042,12 +54846,12 @@ "installment_amount": 357.48, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b2e023c47d764463ae6f30ba", + "revision": "91c9a021338f4a539a2bb7de", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48064,9 +54868,18 @@ "total_amount": 357.48, "id": 1689690928337, "contract_id": "1684624857509", - "date_created": "2023-07-18T14:35:28.337Z", - "date_last_updated": "2023-07-18T14:35:28.337Z", - "date_of_expiration": "2023-07-18T14:35:28.337Z", + "date_created": { + "type": 6, + "value": 1689690928337 + }, + "date_last_updated": { + "type": 6, + "value": 1689690928337 + }, + "date_of_expiration": { + "type": 6, + "value": 1689690928337 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -48074,10 +54887,10 @@ "currency_id": "BRL", "history_id": 1689690928337 }, - "revision": "47f933becf4b4d4d82332cfa", + "revision": "a97b716ec14e4c54974d59c7", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48085,10 +54898,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", - "revision": "833335edd7d4413fb58648be", + "revision": "a3da8603b00e4592bc64efd2", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48104,12 +54917,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "543e3b73230241c28a5bb4b4", + "revision": "37ea101d268d48739b96f911", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48117,10 +54930,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691203130486", - "revision": "46d6a5e405334b8a8cccab60", + "revision": "5b9894d0cc2048d4b784868f", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48135,9 +54948,18 @@ "total_amount": 8160000, "id": 1691203130486, "history_id": 1691203130486, - "date_created": "2023-08-05T02:38:50.486Z", - "date_last_updated": "2023-08-05T02:38:50.486Z", - "date_of_expiration": "2023-08-05T02:38:50.486Z", + "date_created": { + "type": 6, + "value": 1691203130486 + }, + "date_last_updated": { + "type": 6, + "value": 1691203130486 + }, + "date_of_expiration": { + "type": 6, + "value": 1691203130486 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48145,10 +54967,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "10ffa26e6c894f6b8ccf217b", + "revision": "cc62703405c448108eec5fdc", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48156,10 +54978,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "681c48a2f3574bbdb7a0b320", + "revision": "a812bd2635a74024bb08c64d", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48175,12 +54997,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "bb5a9bdb766e4f11b9157506", + "revision": "30451f11933047d3a0886bec", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48188,10 +55010,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691556958476", - "revision": "cf66330844a54cd4b3c7c625", + "revision": "e6ef2aad11c7440fa18a8714", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48206,9 +55028,18 @@ "total_amount": 200000, "id": 1691556958476, "history_id": 1691556958476, - "date_created": "2023-08-09T04:55:58.476Z", - "date_last_updated": "2023-08-09T04:55:58.476Z", - "date_of_expiration": "2023-09-09T04:55:58.473Z", + "date_created": { + "type": 6, + "value": 1691556958476 + }, + "date_last_updated": { + "type": 6, + "value": 1691556958476 + }, + "date_of_expiration": { + "type": 6, + "value": 1694235358473 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48216,10 +55047,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "7e1b3bb3e73f49908beeaf62", + "revision": "aa23aec84c3a4ce8ae5defae", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48227,10 +55058,10 @@ "content": { "type": "STRING", "value": "Investimento de 200.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/9/2023", - "revision": "eede35d330fa422788c8dadf", + "revision": "75b2efafccc6494a8f198dd9", "revision_nr": 1, - "created": 1701463509565, - "modified": 1701463509565 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48246,12 +55077,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "d3bb1f429d87426cbb1fae1f", + "revision": "9f28e366a74d4c6295ccffc2", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48259,10 +55090,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691557017053", - "revision": "1ce1c5b4d28548969a250591", + "revision": "9620f503499c42c29ae80bde", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48277,9 +55108,18 @@ "total_amount": 30, "id": 1691557017053, "history_id": 1691557017053, - "date_created": "2023-08-09T04:56:57.053Z", - "date_last_updated": "2023-08-09T04:56:57.053Z", - "date_of_expiration": "2024-06-09T04:56:57.027Z", + "date_created": { + "type": 6, + "value": 1691557017053 + }, + "date_last_updated": { + "type": 6, + "value": 1691557017053 + }, + "date_of_expiration": { + "type": 6, + "value": 1717909017027 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48287,10 +55127,10 @@ "base_currency_id": "BRL", "status_detail": "accredited" }, - "revision": "aad6d152671d40d09aec1a30", + "revision": "0377ec74b8de49c1938449b3", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48298,10 +55138,10 @@ "content": { "type": "STRING", "value": "Investimento de 30,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/9/2024", - "revision": "b1f8eba48ed2459982862401", + "revision": "82f5c69fcd3b4a51b2169d4a", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48310,12 +55150,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-15T20:07:43.023Z" + ".val": { + "type": 6, + "value": 1694808463023 + } }, - "revision": "360081f4d57f402abc114868", + "revision": "3b6fc55f22b24c5db2fd7957", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48331,12 +55174,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "55f1c093b45548ffbc9ae980", + "revision": "b3178a966ce94b7da6248929", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48344,10 +55187,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1692216463023", - "revision": "22d8046475454afdad1d04a7", + "revision": "15e34a377d1847f5bf228704", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48362,23 +55205,35 @@ "total_amount": 720, "id": 1692216463023, "history_id": 1692216463023, - "date_created": "2023-08-16T20:07:43.023Z", - "date_last_updated": "2023-08-16T20:26:16.651Z", + "date_created": { + "type": 6, + "value": 1692216463023 + }, + "date_last_updated": { + "type": 6, + "value": 1692217576651 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-16T20:26:16.651Z", - "money_release_date": "2023-08-16T20:26:16.651Z", + "date_approved": { + "type": 6, + "value": 1692217576651 + }, + "money_release_date": { + "type": 6, + "value": 1692217576651 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "84c140ff2b744c2882032830", + "revision": "d92498f473ab4bd19d999668", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48386,10 +55241,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 720,00 para a carteira iVip 0721.5687.2012.5989-10", - "revision": "d4bf3edfbf844ce1bce88add", + "revision": "bfb46460e77a477199833a4d", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820539, + "modified": 1701465820539 } }, { @@ -48409,12 +55264,12 @@ "installment_amount": 452.52, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "f684430074304877b245969e", + "revision": "55ac29ff4210412a9a72b652", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48431,9 +55286,18 @@ "total_amount": 452.52, "id": 1692296799894, "contract_id": "1684623306168", - "date_created": "2023-08-17T18:26:39.894Z", - "date_last_updated": "2023-08-17T18:26:39.894Z", - "date_of_expiration": "2023-08-17T18:26:39.894Z", + "date_created": { + "type": 6, + "value": 1692296799894 + }, + "date_last_updated": { + "type": 6, + "value": 1692296799894 + }, + "date_of_expiration": { + "type": 6, + "value": 1692296799894 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -48441,10 +55305,10 @@ "currency_id": "BRL", "history_id": 1692296799894 }, - "revision": "946d574224d945d5bd88e4f1", + "revision": "ff70666ad8ff402695fca29c", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48452,10 +55316,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", - "revision": "21f649bc66c64d7a9186b2ba", + "revision": "7388e604992d4cb39c362d2e", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48475,12 +55339,12 @@ "installment_amount": 357.48, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "dc1a98b09c9249fdbb538bac", + "revision": "75a01d16886f4efd9e191d23", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48497,9 +55361,18 @@ "total_amount": 357.48, "id": 1692296800012, "contract_id": "1684624857509", - "date_created": "2023-08-17T18:26:40.012Z", - "date_last_updated": "2023-08-17T18:26:40.012Z", - "date_of_expiration": "2023-08-17T18:26:40.012Z", + "date_created": { + "type": 6, + "value": 1692296800012 + }, + "date_last_updated": { + "type": 6, + "value": 1692296800012 + }, + "date_of_expiration": { + "type": 6, + "value": 1692296800012 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -48507,10 +55380,10 @@ "currency_id": "BRL", "history_id": 1692296800012 }, - "revision": "7fbc40418c1b4910b84cf6ca", + "revision": "725cd98dfa614c0b90863787", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48518,10 +55391,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", - "revision": "0a5ac2a3d3c848ad84924c42", + "revision": "38d700c0c1074165b18e2d7f", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48537,12 +55410,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "53c7014106524bdaaeeaf09b", + "revision": "032255a9e3854dc787a2784f", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48550,10 +55423,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694237371329", - "revision": "07fcf222ac2b4c72b7675bba", + "revision": "d490523d0f884bc39caf1bcc", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48568,9 +55441,18 @@ "total_amount": 204000, "id": "1694237371329", "history_id": "1694237371329", - "date_created": "2023-09-09T05:29:31.329Z", - "date_last_updated": "2023-09-09T05:29:31.329Z", - "date_of_expiration": "2023-09-09T05:29:31.329Z", + "date_created": { + "type": 6, + "value": 1694237371329 + }, + "date_last_updated": { + "type": 6, + "value": 1694237371329 + }, + "date_of_expiration": { + "type": 6, + "value": 1694237371329 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48578,10 +55460,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "fca76b7298384b36aa38150f", + "revision": "0e282546fce446fe970bab5e", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48589,10 +55471,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 200.000,00 IVIP com um rendimento de +4.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "bc8741b5b46e4287a3beb2dd", + "revision": "2faba63194b94ccd97cbe30d", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48608,12 +55490,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "8490c714ab3542bb80a667d8", + "revision": "a4d8f4c09c1f4775ad1718d6", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48621,10 +55503,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694237443497", - "revision": "988e533d86ce4c2ab5f87bfc", + "revision": "ee97d727ab4b49d8b31e0ac6", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48639,23 +55521,35 @@ "total_amount": 1030591, "id": "1694237443497", "history_id": "1694237443497", - "date_created": "2023-09-09T05:30:43.497Z", - "date_last_updated": "2023-10-04T23:31:59.577Z", - "date_of_expiration": "2023-10-09T05:30:43.496Z", + "date_created": { + "type": 6, + "value": 1694237443497 + }, + "date_last_updated": { + "type": 6, + "value": 1696462319577 + }, + "date_of_expiration": { + "type": 6, + "value": 1696829443496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": "2023-10-04T23:31:59.577Z", + "money_release_date": { + "type": 6, + "value": 1696462319577 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "cd320b2c756344b2aa69388c", + "revision": "f0f5412430994bcdb6568f1b", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48663,10 +55557,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.030.591,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 09/10/2023 - Y12XDT27", - "revision": "d8b47863c7a4458fbe25159d", + "revision": "c911ebe37b034f66b30106a0", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48675,12 +55569,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-14T17:28:50.286Z" + ".val": { + "type": 6, + "value": 1697304530286 + } }, - "revision": "6d86164601644e24adb4ccb3", + "revision": "b362345bc17f43c1ba6e434b", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48696,12 +55593,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "92722cf97f6c488a94f7a23e", + "revision": "8ffccadc9eae47e494766ce4", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48709,10 +55606,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694712530286", - "revision": "bfb96e9274e94d2689dd7ddb", + "revision": "281bf663cc4c4ecba188cce8", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48727,23 +55624,35 @@ "total_amount": 820, "id": "1694712530286", "history_id": "1694712530286", - "date_created": "2023-09-14T17:28:50.286Z", - "date_last_updated": "2023-09-14T18:47:35.639Z", + "date_created": { + "type": 6, + "value": 1694712530286 + }, + "date_last_updated": { + "type": 6, + "value": 1694717255639 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-09-14T18:47:35.639Z", - "money_release_date": "2023-09-14T18:47:35.639Z", + "date_approved": { + "type": 6, + "value": 1694717255639 + }, + "money_release_date": { + "type": 6, + "value": 1694717255639 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "779acf3973b24958b4dbcdf6", + "revision": "f8da5272a1c342ed9be33490", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48751,10 +55660,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 820,00 BRL para a carteira iVip 0721.5687.2012.5989-10", - "revision": "3e5fe30ef4ae4f5fa6cd0e9a", + "revision": "69c23c90db244f61ac5b51f0", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48770,14 +55679,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 4, "installments_payable": 0 }, - "revision": "df6c6fece72f4e98b9210af7", + "revision": "619a549697a74e6185d0f009", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48785,10 +55694,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694723447405", - "revision": "6072dae574f9473784f7067b", + "revision": "6e024182aeec42f3a5161f3c", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48803,9 +55712,18 @@ "total_amount": 452.52, "id": "1694723447405", "history_id": "1694723447405", - "date_created": "2023-09-14T20:30:47.405Z", - "date_last_updated": "2023-09-14T20:30:47.405Z", - "date_of_expiration": "2023-09-14T20:30:47.405Z", + "date_created": { + "type": 6, + "value": 1694723447405 + }, + "date_last_updated": { + "type": 6, + "value": 1694723447405 + }, + "date_of_expiration": { + "type": 6, + "value": 1694723447405 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -48813,10 +55731,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "5baed18ef9214250b2a92924", + "revision": "f98341ad9ce94618b01227c6", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48824,10 +55742,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", - "revision": "78899aee6f954ab6bf8702da", + "revision": "42860aac22e943c9b8653300", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48843,14 +55761,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 4, "installments_payable": 0 }, - "revision": "dbe0fc255a7a42939155f9df", + "revision": "ec065867a3cc4e9cad2d27f4", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48858,10 +55776,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694723447463", - "revision": "3fe726928dfe451095c827c5", + "revision": "6972724de7e24a6e9ae8f865", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48876,9 +55794,18 @@ "total_amount": 357.48, "id": "1694723447463", "history_id": "1694723447463", - "date_created": "2023-09-14T20:30:47.463Z", - "date_last_updated": "2023-09-14T20:30:47.463Z", - "date_of_expiration": "2023-09-14T20:30:47.463Z", + "date_created": { + "type": 6, + "value": 1694723447463 + }, + "date_last_updated": { + "type": 6, + "value": 1694723447463 + }, + "date_of_expiration": { + "type": 6, + "value": 1694723447463 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -48886,10 +55813,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "64a27f4e55e64745a69027bc", + "revision": "2f878a155c6c436398483ac0", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48897,10 +55824,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", - "revision": "f0e98114c36649c9be84d574", + "revision": "ba599d98c61348a6b2920a82", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48916,12 +55843,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "ccb93b06ce8c490c9e8a308d", + "revision": "b91f751a9855468698366b34", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48929,10 +55856,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1696464489805", - "revision": "823037f39611449a9619f430", + "revision": "7ff22691adca43b19b94e064", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48948,9 +55875,18 @@ "total_amount": 8000000, "id": "1696464489805", "history_id": "1696464489805", - "date_created": "2023-10-05T00:08:09.805Z", - "date_last_updated": "2023-10-05T00:08:09.805Z", - "date_of_expiration": "2023-11-05T00:08:09.771Z", + "date_created": { + "type": 6, + "value": 1696464489805 + }, + "date_last_updated": { + "type": 6, + "value": 1696464489805 + }, + "date_of_expiration": { + "type": 6, + "value": 1699142889771 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -48958,10 +55894,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "500434fffe7249beb7063d85", + "revision": "b78e27905e6d4fe19a997282", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48969,10 +55905,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "78876f79a3994da4bcfa0218", + "revision": "96bd9135eff84ab4ba688037", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48980,10 +55916,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "95721ba8fcfc469396595ca6", + "revision": "9f12d1b4c3ab4b5f8fff6bf5", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -48995,10 +55931,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, - "revision": "7acf2c317cd34a47b6399537", + "revision": "2d529b14e8094bcd9f9dc495", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -49012,15 +55948,18 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": "2023-05-20T22:55:06.168Z", + "date_created": { + "type": 6, + "value": 1684623306168 + }, "history_id": 1684623306168, "currency_id": "BRL", "status": "paid" }, - "revision": "47b822e31333472aa1c24a0b", + "revision": "3493ca09ad8f4eb0b0208e53", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -49028,10 +55967,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "a7fc0060a28140d4b6fef806", + "revision": "937554ef739a47e4b960ed69", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -49039,10 +55978,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "372e516aa9054647864fbe2f", + "revision": "96e7b3cc6fc74fc0a8419696", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -49054,10 +55993,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, - "revision": "cacbeb5fd9e54ceab552c5c0", + "revision": "313f04ef40cf4948bba222fe", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -49071,15 +56010,18 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": "2023-05-20T23:20:57.509Z", + "date_created": { + "type": 6, + "value": 1684624857509 + }, "history_id": 1684624857509, "currency_id": "BRL", "status": "paid" }, - "revision": "5f7b814cecd7445fbc240f56", + "revision": "9fe474dd7cce4d348e6de10f", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -49087,10 +56029,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "1c8c64d83e9a4d0d9f29e310", + "revision": "a5014a7caea641c7aeef5ea5", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -49098,10 +56040,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "d4b6695afcbc43fb9a15e536", + "revision": "73c68560ba794b1daeba0d62", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -49109,10 +56051,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c40c779aff3342998cb690f4", + "revision": "942c1fbceefb4238a19b75b7", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820540, + "modified": 1701465820540 } }, { @@ -49124,10 +56066,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, - "revision": "734625e0218544bbb35ab0d3", + "revision": "c755c964d6324fe79407a995", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49141,15 +56083,18 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": "2023-05-20T22:55:06.168Z", + "date_created": { + "type": 6, + "value": 1684623306168 + }, "history_id": 1684623306168, "currency_id": "BRL", "status": "paid" }, - "revision": "e6d93357afce48b7b936a0a0", + "revision": "74746bd728da40d9ab0b3a33", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49157,10 +56102,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "a967d77eba634223aa37427c", + "revision": "5855d4a5d1ea4e508bd2c2f3", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49168,10 +56113,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "8d893d44b7294ec389cac999", + "revision": "0853ab6db4f442df87c30d55", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49183,10 +56128,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, - "revision": "6711308bdde84848bd98ee4a", + "revision": "e794d907027644f69d54c9ea", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49200,15 +56145,18 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": "2023-05-20T23:20:57.509Z", + "date_created": { + "type": 6, + "value": 1684624857509 + }, "history_id": 1684624857509, "currency_id": "BRL", "status": "paid" }, - "revision": "4b2ce1b7aa964511adfb53d3", + "revision": "761e02d65bba4a38aa8c4a65", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49216,10 +56164,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "935076094a0341d787cbcf4e", + "revision": "d0d80ac42b944008ad901c59", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49227,10 +56175,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "4d5aeb93babc42eb8ab0aa34", + "revision": "d6bd37e7fbb549348ee93222", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49238,10 +56186,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "df044cc27f2845ec9e43a6f8", + "revision": "40ea664b4fda4f9aab58a0c5", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49253,10 +56201,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, - "revision": "5a2aff4a252f4ef48a2ad1e2", + "revision": "d6935a2da6004b9aa3af036a", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49270,15 +56218,18 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": "2023-05-20T22:55:06.168Z", + "date_created": { + "type": 6, + "value": 1684623306168 + }, "history_id": 1684623306168, "currency_id": "BRL", "status": "paid" }, - "revision": "c8e2e51dc62d4412b1331b0b", + "revision": "d2ca5383e11f426a8cf90f2f", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49286,10 +56237,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "925c8f6c88f64911b1aaee51", + "revision": "64b6d81c53704bb0bba65bb4", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49297,10 +56248,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "cb0234ce10f34d8cbc078f1f", + "revision": "b6632b91483c43d69965ffc7", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49312,10 +56263,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, - "revision": "bcc3654dd51842fea260e76c", + "revision": "67680bbda80747399f4d1462", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49329,15 +56280,18 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": "2023-05-20T23:20:57.509Z", + "date_created": { + "type": 6, + "value": 1684624857509 + }, "history_id": 1684624857509, "currency_id": "BRL", "status": "paid" }, - "revision": "72ad8caebba94e2faf3fac59", + "revision": "2fb39b7ab1c94dba96f794b8", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49345,10 +56299,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "312d70839aa84d53abf531f5", + "revision": "6af9797b7819481e9a8314bd", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49356,10 +56310,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "3605eb3953054b598733465c", + "revision": "fde6fc2dc09b4dbd969f4b18", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49367,10 +56321,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2f684807093643ceb32b6e7f", + "revision": "2b55cc2d461542dbbbc5eae9", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49382,10 +56336,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, - "revision": "54ef6c9f2770443aab99a6a1", + "revision": "b67d03c9790f4e678124e07f", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49399,16 +56353,22 @@ "total_amount": 1810.08, "installments": 4, "installment_amount": 452.52, - "date_created": "2023-05-20T22:55:06.168Z", + "date_created": { + "type": 6, + "value": 1684623306168 + }, "history_id": 1684623306168, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-14T20:30:47.423Z" + "date_last_updated": { + "type": 6, + "value": 1694723447423 + } }, - "revision": "3ef519691de84570ac7b3c4f", + "revision": "6ce332c55f214ca6874d7cbd", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49416,10 +56376,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "3e682db61077409fac21321b", + "revision": "f689c8a7f9de45479da62fd5", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49427,10 +56387,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "10aff135a96e4a53a38b4f6a", + "revision": "40f1db14dfef4d46ba301b02", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49442,10 +56402,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, - "revision": "0eb047f1c5684ad08f58e9b7", + "revision": "8cebf6a46ceb445fab7069c9", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49459,16 +56419,22 @@ "total_amount": 1429.92, "installments": 4, "installment_amount": 357.48, - "date_created": "2023-05-20T23:20:57.509Z", + "date_created": { + "type": 6, + "value": 1684624857509 + }, "history_id": 1684624857509, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-14T20:30:47.480Z" + "date_last_updated": { + "type": 6, + "value": 1694723447480 + } }, - "revision": "0ad95801ec4e4db487f08c62", + "revision": "f9d789e96ed8498889345e77", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49476,10 +56442,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "77a99067ac444987bb88e679", + "revision": "1e94ac299bd04d3fadf4b3a7", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49487,10 +56453,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "cd97a79e5bab41fb8fa06365", + "revision": "172189a40f064467bbe261ae", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49498,10 +56464,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "11ae81f3a6a545d89fe311c9", + "revision": "0a4be2c6053b47aa82737c52", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49509,10 +56475,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "491d1967a3f640ca9e44fc54", + "revision": "2ac4080fd1f045d390c261ad", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49522,13 +56488,19 @@ "value": { "approvedLimit": 3000, "limitUsed": 750, - "analysisRequested": "2023-05-15T21:24:05.062Z", - "lastReview": "2023-05-15T21:32:32.172Z" + "analysisRequested": { + "type": 6, + "value": 1684185845062 + }, + "lastReview": { + "type": 6, + "value": 1684186352172 + } }, - "revision": "ae243bd147c049a7917d10db", + "revision": "cb22375f06864a25bc0332cc", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49540,12 +56512,15 @@ "dateValidity": 1684180740501, "totalValue": 6472.835, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } }, - "revision": "9108e3d7c36b41be850d7622", + "revision": "6bcfc29d475642968d068df8", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49553,10 +56528,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "601f266a71734e62bc84e2e7", + "revision": "c3eee25cf40342348944f8ba", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49564,10 +56539,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "41f613dbe90249f589486163", + "revision": "3fdc316c14af429ebf61b191", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49580,10 +56555,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "d2279533096246149ea522e4", + "revision": "d963e9deff5c4f62a86cf070", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49595,10 +56570,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "0bbbbaf462554cc3bd7b10ee", + "revision": "348fa626d9bb448989f5152c", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49610,10 +56585,10 @@ "symbol": "IVIP", "value": 15.26 }, - "revision": "cf2fcb9a87344385abaeb92b", + "revision": "d6805da9dea742c18798d245", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49621,10 +56596,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "cc593dae019245748018c98b", + "revision": "3f157669241840ee89f2e238", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49632,12 +56607,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "5186bd6db3664782ad6a9460", + "revision": "3c7d989f31374ad586633a3d", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49652,22 +56627,37 @@ "total_amount": 50, "history_id": 1689017003664, "id": 1689017003664, - "date_created": "2023-07-10T19:23:23.664Z", - "date_last_updated": "2023-07-10T21:48:47.768Z", - "date_of_expiration": "2023-08-09T19:23:23.664Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-10T21:48:47.768Z", - "money_release_date": "2023-07-10T21:48:47.768Z", + "date_created": { + "type": 6, + "value": 1689017003664 + }, + "date_last_updated": { + "type": 6, + "value": 1689025727768 + }, + "date_of_expiration": { + "type": 6, + "value": 1691609003664 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689025727768 + }, + "money_release_date": { + "type": 6, + "value": 1689025727768 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "310344dc8b624240908c0fa0", + "revision": "14f40a56891c41e4bce4756b", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49675,10 +56665,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0723.1653.8247.0090-10", - "revision": "abdd7f91a07c437ba21fcf84", + "revision": "a29effdc9f6a4104bdcd7c2a", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49696,12 +56686,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a33f065057434d16abdd1a83", + "revision": "12fd391903a04162b027422c", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49717,9 +56707,18 @@ "original_amount": 44999, "total_amount": 44999, "id": 1689029121257, - "date_created": "2023-07-10T22:45:21.257Z", - "date_last_updated": "2023-07-10T22:45:21.257Z", - "date_of_expiration": "2023-07-10T22:45:21.257Z", + "date_created": { + "type": 6, + "value": 1689029121257 + }, + "date_last_updated": { + "type": 6, + "value": 1689029121257 + }, + "date_of_expiration": { + "type": 6, + "value": 1689029121257 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49728,10 +56727,10 @@ "history_id": 1689029121257, "description": "Compra de 44.999,00 IVIP por 50,00 BRL" }, - "revision": "5d6fc3eb80e9419d894df4b3", + "revision": "d0333b5622934aa1887cad55", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49739,10 +56738,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1a533e4ffc9e4a1983a4b8f5", + "revision": "6090051af64b445093a7534d", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49750,10 +56749,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "098ec4b32ad44708a6aefd79", + "revision": "30e9eedffbad4873b59a3aee", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49764,10 +56763,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "e167e806adf849dd9f75d1ab", + "revision": "0d44dd553bb4437292332069", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49781,10 +56780,10 @@ "currencyType": "USD", "balancesModificacao": 1689822000000 }, - "revision": "cad007a7a5d4497290981831", + "revision": "a3539c5179cb4973b35ff44e", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49796,10 +56795,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "5d14b4ea7e644b07bcc10f03", + "revision": "42ec070a2b3745e799d80b5a", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49811,10 +56810,10 @@ "symbol": "IVIP", "value": 24.34 }, - "revision": "1b25170e0d9e465481d74260", + "revision": "4d9d1ba9c2564279933c4b9f", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49822,10 +56821,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c0aa476ca29c402c921b34af", + "revision": "0960a524907445bdb789c783", "revision_nr": 1, - "created": 1701463509566, - "modified": 1701463509566 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49833,12 +56832,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "0b6c4effc97d46a6a2086951", + "revision": "99dc016b02c1489c8a2e29e2", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49853,22 +56852,37 @@ "total_amount": 100, "history_id": 1684153197656, "id": 1684153197656, - "date_created": "2023-05-15T12:19:57.656Z", - "date_last_updated": "2023-05-15T12:24:35.791Z", - "date_of_expiration": "2023-06-14T12:19:57.656Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-15T12:24:35.791Z", - "money_release_date": "2023-05-15T12:24:35.791Z", + "date_created": { + "type": 6, + "value": 1684153197656 + }, + "date_last_updated": { + "type": 6, + "value": 1684153475791 + }, + "date_of_expiration": { + "type": 6, + "value": 1686745197656 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684153475791 + }, + "money_release_date": { + "type": 6, + "value": 1684153475791 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "518b471e8cfc407597c7e9ed", + "revision": "94cfc2896c4e4d0b98de3a46", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49876,10 +56890,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0724.0208.9290.1489-10", - "revision": "332acbe308a64261ae3793b0", + "revision": "3e29b106f45049c4b4a87fc7", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49897,12 +56911,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "fc57584c566c4691b493bc46", + "revision": "8bd7c88bfc5a44709c41b456", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49918,9 +56932,18 @@ "original_amount": 488292, "total_amount": 488292, "id": 1684634671417, - "date_created": "2023-05-21T02:04:31.417Z", - "date_last_updated": "2023-05-21T02:04:31.417Z", - "date_of_expiration": "2023-05-21T02:04:31.417Z", + "date_created": { + "type": 6, + "value": 1684634671417 + }, + "date_last_updated": { + "type": 6, + "value": 1684634671417 + }, + "date_of_expiration": { + "type": 6, + "value": 1684634671417 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -49929,10 +56952,10 @@ "history_id": 1684634671417, "description": "Compra de 488.292,00 IVIP por 100,00 BRL" }, - "revision": "8c7ac954973d4728ac555274", + "revision": "348d5e54be3b406b8d3cbead", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49940,12 +56963,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "30fef7fa4e0c4a3183d3158f", + "revision": "6e04b72d8feb41cc8daa75f1", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49960,22 +56983,37 @@ "total_amount": 120, "history_id": 1685124719970, "id": 1685124719970, - "date_created": "2023-05-26T18:11:59.970Z", - "date_last_updated": "2023-05-29T12:51:17.545Z", - "date_of_expiration": "2023-06-25T18:11:59.970Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-29T12:51:17.545Z", - "money_release_date": "2023-05-29T12:51:17.545Z", + "date_created": { + "type": 6, + "value": 1685124719970 + }, + "date_last_updated": { + "type": 6, + "value": 1685364677545 + }, + "date_of_expiration": { + "type": 6, + "value": 1687716719970 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685364677545 + }, + "money_release_date": { + "type": 6, + "value": 1685364677545 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "45a4d881704a409495195abc", + "revision": "904b05a65a8047fc98535a51", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49983,10 +57021,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 120,00 para a carteira iVip 0724.0208.9290.1489-10", - "revision": "649bc1d3d5ee4224b0fb5f0e", + "revision": "53bb90a1ddba4b63a7dd05e4", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -49994,12 +57032,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "33a83b430bd8476f982b2c41", + "revision": "79b4dd05f8154342a69211ed", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50014,22 +57052,37 @@ "total_amount": 1510, "history_id": 1685203508718, "id": 1685203508718, - "date_created": "2023-05-27T16:05:08.718Z", - "date_last_updated": "2023-05-27T18:12:01.604Z", - "date_of_expiration": "2023-06-26T16:05:08.718Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-27T18:12:01.604Z", - "money_release_date": "2023-05-27T18:12:01.604Z", + "date_created": { + "type": 6, + "value": 1685203508718 + }, + "date_last_updated": { + "type": 6, + "value": 1685211121604 + }, + "date_of_expiration": { + "type": 6, + "value": 1687795508718 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685211121604 + }, + "money_release_date": { + "type": 6, + "value": 1685211121604 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "e1040515774341c89a7cd6cd", + "revision": "02bf21f5309b4453974893b0", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50037,10 +57090,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.510,00 para a carteira iVip 0724.0208.9290.1489-10", - "revision": "c11df6cb329b4508ae1709e1", + "revision": "c6396387a18944629e89ce59", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50058,12 +57111,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "007493851f8744088983410b", + "revision": "d8f83fd76d5e46998f1f91cb", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50079,9 +57132,18 @@ "original_amount": 5725017, "total_amount": 5725017, "id": 1685744132878, - "date_created": "2023-06-02T22:15:32.878Z", - "date_last_updated": "2023-06-02T22:15:32.878Z", - "date_of_expiration": "2023-06-02T22:15:32.878Z", + "date_created": { + "type": 6, + "value": 1685744132878 + }, + "date_last_updated": { + "type": 6, + "value": 1685744132878 + }, + "date_of_expiration": { + "type": 6, + "value": 1685744132878 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50090,10 +57152,10 @@ "history_id": 1685744132878, "description": "Compra de 5.725.017,00 IVIP por 1.630,00 BRL" }, - "revision": "e65caf81caff4b3e86d9225a", + "revision": "e83ffa96ee7e465d9dac33ba", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50101,12 +57163,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "2f5cbb8ca6c84569a3cbe70e", + "revision": "6b55f01194f74310a7c364bf", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50121,22 +57183,37 @@ "total_amount": 5122916, "history_id": 1687787978807, "id": 1687787978807, - "date_created": "2023-06-26T13:59:38.807Z", - "date_last_updated": "2023-06-28T18:01:13.708Z", - "date_of_expiration": "2023-06-26T13:59:38.807Z", + "date_created": { + "type": 6, + "value": 1687787978807 + }, + "date_last_updated": { + "type": 6, + "value": 1687975273708 + }, + "date_of_expiration": { + "type": 6, + "value": 1687787978807 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-06-28T18:01:13.708Z", - "money_release_date": "2023-06-28T18:01:13.708Z", + "date_approved": { + "type": 6, + "value": 1687975273708 + }, + "money_release_date": { + "type": 6, + "value": 1687975273708 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "55f1193afd004f5a851fd930", + "revision": "462c5461879345618548f517", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50144,10 +57221,10 @@ "content": { "type": "STRING", "value": "Saque de 5.122.916,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", - "revision": "5d4ef015df0e4a67b6e03419", + "revision": "cc24e8eafb4c4e938405edb4", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50155,12 +57232,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "dced3118348a417bba4b798d", + "revision": "221c9a455b594c18abf8d8a5", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50175,22 +57252,37 @@ "total_amount": 1002074, "history_id": 1688549736848, "id": 1688549736848, - "date_created": "2023-07-05T09:35:36.848Z", - "date_last_updated": "2023-07-05T13:12:16.770Z", - "date_of_expiration": "2023-07-05T09:35:36.848Z", + "date_created": { + "type": 6, + "value": 1688549736848 + }, + "date_last_updated": { + "type": 6, + "value": 1688562736770 + }, + "date_of_expiration": { + "type": 6, + "value": 1688549736848 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-07-05T13:12:16.770Z", - "money_release_date": "2023-07-05T13:12:16.770Z", + "date_approved": { + "type": 6, + "value": 1688562736770 + }, + "money_release_date": { + "type": 6, + "value": 1688562736770 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "ea9e17e6a21a4e558ed83a03", + "revision": "3b2b617f06214403a2085a40", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50198,10 +57290,10 @@ "content": { "type": "STRING", "value": "Saque de 1.002.074,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", - "revision": "8f27e02080314313a4d884a5", + "revision": "e6b418745c5e401e9cf2293d", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50217,12 +57309,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "c22dec830f7b48a79db558e0", + "revision": "31623fcf0d8c4e98a1f0a466", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50230,10 +57322,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/072402089290148910/history/1690225683361", - "revision": "daf58bd1d1c54f8e9043a264", + "revision": "d6b2f684d9674331bc3c33e3", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50248,24 +57340,39 @@ "total_amount": 88319, "id": 1690225683361, "history_id": 1690225683361, - "date_created": "2023-07-24T19:08:03.361Z", - "date_last_updated": "2023-07-26T19:07:32.462Z", - "date_of_expiration": "2023-07-24T19:08:03.361Z", + "date_created": { + "type": 6, + "value": 1690225683361 + }, + "date_last_updated": { + "type": 6, + "value": 1690398452462 + }, + "date_of_expiration": { + "type": 6, + "value": 1690225683361 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": "2023-07-26T19:07:32.462Z", - "money_release_date": "2023-07-26T19:07:32.462Z", + "date_approved": { + "type": 6, + "value": 1690398452462 + }, + "money_release_date": { + "type": 6, + "value": 1690398452462 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "64669ab259bb470ebc23f4bd", + "revision": "9f0dffea2700492e8465aaa8", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50273,10 +57380,10 @@ "content": { "type": "STRING", "value": "Saque de 88.319,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", - "revision": "4e05057d8f23452bb7e71df5", + "revision": "db79951904dc476c8e60d4b7", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50284,10 +57391,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "175e4219eca641f1b096c25f", + "revision": "8d5802f404064be68ababa04", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50295,10 +57402,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6017653fb0bb4a48bc22ac4a", + "revision": "be59bd8a5c88476a8c7a0702", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50308,13 +57415,19 @@ "value": { "approvedLimit": 3000, "limitUsed": 0, - "analysisRequested": "2023-06-26T14:00:45.586Z", - "lastReview": "2023-06-28T18:01:24.723Z" + "analysisRequested": { + "type": 6, + "value": 1687788045586 + }, + "lastReview": { + "type": 6, + "value": 1687975284723 + } }, - "revision": "6e1c7bfecee541fab6e12d9c", + "revision": "e33b2b2a64014086b8994915", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50328,10 +57441,10 @@ "currencyType": "USD", "balancesModificacao": 1690398452515 }, - "revision": "d0302efcf2854687a6cc88a7", + "revision": "250e81e6223e4a8fa4f8fc54", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50339,10 +57452,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "880121d1ae124480919af2db", + "revision": "bfcf823f123c4923a4cfb574", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820541, + "modified": 1701465820541 } }, { @@ -50350,10 +57463,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3496557cc8ec4180bf466757", + "revision": "896c2e145ac44b34ac8b184b", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50365,10 +57478,10 @@ "dateValidity": 1696199966060, "currencyType": "USD" }, - "revision": "5489e4777dec4cb8b4719033", + "revision": "dcee15cda42544438722b200", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50376,10 +57489,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e3b5b5864f214660bc6b3eb7", + "revision": "59c469f2b4eb41d1a199ab8f", "revision_nr": 1, - "created": 1701463509567, - "modified": 1701463509567 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50387,12 +57500,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "404f68d21aa542e8a98eec99", + "revision": "210030bcb5594708bdd7ccba", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50407,20 +57520,32 @@ "total_amount": 20, "history_id": 1678088421430, "id": 1678088421430, - "date_created": "2023-03-06T07:40:21.430Z", - "date_last_updated": "2023-03-13T13:57:17.019Z", - "date_of_expiration": "2023-04-05T07:40:21.430Z", + "date_created": { + "type": 6, + "value": 1678088421430 + }, + "date_last_updated": { + "type": 6, + "value": 1678715837019 + }, + "date_of_expiration": { + "type": 6, + "value": 1680680421430 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-03-13T13:57:17.019Z", + "money_release_date": { + "type": 6, + "value": 1678715837019 + }, "money_release_status": "rejected" }, - "revision": "8a9ea1581118492cb91f417d", + "revision": "b43aeda57d984dd89e2abca9", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50428,10 +57553,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0749.8124.2324.5748-20", - "revision": "73e3d7cde8d44a0280d30935", + "revision": "188f74eaab3b454ba2c5f0c6", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50439,10 +57564,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0c4510f1b75648ba83073f24", + "revision": "e23aeda2c4594df4a5c0e646", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50455,10 +57580,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "94a47479ae52415e9df8d92f", + "revision": "c4df6565409b4dd496409947", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50470,10 +57595,10 @@ "symbol": "BRL", "value": 6.28 }, - "revision": "7a378bc17d174b8b9ededc11", + "revision": "490be5a6130149eb940052de", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50481,10 +57606,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "15663ad6442247d2b30778f0", + "revision": "13b66d5102034e0aaae3aa56", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50492,12 +57617,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "9b99a0572d9446dcb5926ffc", + "revision": "53c09ba26bf34f9ea5691640", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50512,22 +57637,37 @@ "total_amount": 30, "history_id": 1689767358341, "id": 1689767358341, - "date_created": "2023-07-19T11:49:18.341Z", - "date_last_updated": "2023-07-26T21:51:18.554Z", - "date_of_expiration": "2023-08-18T11:49:18.341Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-26T21:51:18.554Z", - "money_release_date": "2023-07-26T21:51:18.554Z", + "date_created": { + "type": 6, + "value": 1689767358341 + }, + "date_last_updated": { + "type": 6, + "value": 1690408278554 + }, + "date_of_expiration": { + "type": 6, + "value": 1692359358341 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1690408278554 + }, + "money_release_date": { + "type": 6, + "value": 1690408278554 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "5f966dcb7660436bb627058d", + "revision": "97f36384d7c9458dbde78ce8", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50535,10 +57675,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0752.7001.2379.5890-70", - "revision": "84a72697b742448fb3362d0f", + "revision": "9b7fb83b3def43deb07f5e46", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50546,10 +57686,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "621a923fe8f44a3287c34488", + "revision": "7ff9bb442ade418698e45f7f", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50557,10 +57697,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "15498663f4ec45fc9db4415e", + "revision": "2bc1cd0e033440beab14b53d", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50571,10 +57711,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "33c7268d428744af88c8df7d", + "revision": "138510d34ff142b5b58285ac", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50588,10 +57728,10 @@ "currencyType": "USD", "balancesModificacao": 1690416536434 }, - "revision": "df59524afb5b4e3a8c84f62c", + "revision": "b62f2510c590480791067ab8", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50603,10 +57743,10 @@ "symbol": "BRL", "value": 36.47 }, - "revision": "e34954d556934aaca2514799", + "revision": "63a18a7373e94963843dd49c", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50614,10 +57754,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e05f710dd7374cf99e4b3d76", + "revision": "605b1fdbc27641df92517c75", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50625,12 +57765,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "e54cde5e63874a368f4970b6", + "revision": "534f6c9726d8400b90ee4749", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50645,22 +57785,37 @@ "total_amount": 240, "history_id": 1684093506914, "id": 1684093506914, - "date_created": "2023-05-14T19:45:06.914Z", - "date_last_updated": "2023-05-14T20:28:06.351Z", - "date_of_expiration": "2023-06-13T19:45:06.914Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-14T20:28:06.351Z", - "money_release_date": "2023-05-14T20:28:06.351Z", + "date_created": { + "type": 6, + "value": 1684093506914 + }, + "date_last_updated": { + "type": 6, + "value": 1684096086351 + }, + "date_of_expiration": { + "type": 6, + "value": 1686685506914 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684096086351 + }, + "money_release_date": { + "type": 6, + "value": 1684096086351 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "e3062e1bbf90495e81d3be2f", + "revision": "cff4c2137ad5487c86854254", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50668,10 +57823,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 240,00 para a carteira iVip 0754.2952.0947.6616-50", - "revision": "5a520143407b401083568c28", + "revision": "be353628af8948c0a6abffce", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50689,12 +57844,12 @@ "installment_amount": 54, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d87d3b4c6e094f49803b0127", + "revision": "70f1eb7d24f84c22ad518422", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50709,9 +57864,18 @@ "original_amount": 54, "total_amount": 54, "id": 1689771495719, - "date_created": "2023-07-19T12:58:15.719Z", - "date_last_updated": "2023-07-19T12:58:15.719Z", - "date_of_expiration": "2024-05-19T12:58:15.719Z", + "date_created": { + "type": 6, + "value": 1689771495719 + }, + "date_last_updated": { + "type": 6, + "value": 1689771495719 + }, + "date_of_expiration": { + "type": 6, + "value": 1716123495719 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -50719,10 +57883,10 @@ "currency_id": "BRL", "history_id": 1689771495719 }, - "revision": "7e9a7cd096a64050b2f5797a", + "revision": "e8dc036677bc4cd68f03e0b5", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50730,10 +57894,10 @@ "content": { "type": "STRING", "value": "Investimento de 54,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/19/2024", - "revision": "db3f2fc959e2454db2e601f2", + "revision": "f970a58f92df48fb9f57f6bf", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50741,10 +57905,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "076307d1075440ae9fb8aab1", + "revision": "6e0538023ccc49799e3002b9", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50752,10 +57916,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "396fc365a9924875bdcb3288", + "revision": "16114b98b86a49efbabaf3ea", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50766,10 +57930,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "ad40b84f69ad433aafcd4356", + "revision": "75ccef1ac2274f05aa4fdf92", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50781,12 +57945,15 @@ "dateValidity": 1684093342801, "totalValue": 38.464800000000004, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } }, - "revision": "ebf75e8374a64f41a8ecfa6b", + "revision": "c2b4a7a247bd4794964f6135", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50794,10 +57961,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2a8b8524de004051be8bf122", + "revision": "362ac2949b914c0b838e9b4c", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50805,10 +57972,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a924edd974a94a0790304b9e", + "revision": "d62f42b4c4144110b593db62", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50816,10 +57983,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e14a2d8d327444e1a0658e7c", + "revision": "a217ed6dcd9e411e9d960313", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50830,10 +57997,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "c9094b8e33f5489da908ac15", + "revision": "cc674cf758c245ff9ede0be1", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50845,12 +58012,15 @@ "dateValidity": 1678233375802, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": "2023-10-12T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697079600000 + } }, - "revision": "d2789c674e9c46c1825b12ff", + "revision": "1ca8bd812016436c9595c1d6", "revision_nr": 1, - "created": 1701463509568, - "modified": 1701463509568 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50862,10 +58032,10 @@ "symbol": "IVIP", "value": 508.13 }, - "revision": "0f9e85e9032543199a6f1e0f", + "revision": "2f3bbe7558b9419696458b32", "revision_nr": 1, - "created": 1701463509570, - "modified": 1701463509570 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50873,10 +58043,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5a58511f30744b98936122e3", + "revision": "bbb685676a9c484eb85e5a6b", "revision_nr": 1, - "created": 1701463509570, - "modified": 1701463509570 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50884,12 +58054,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "57e30f0ef8044e47a80386e4", + "revision": "b961c3e7b42c4018ba6dcdc2", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50904,22 +58074,37 @@ "total_amount": 100, "history_id": 1683069444271, "id": 1683069444271, - "date_created": "2023-05-02T23:17:24.271Z", - "date_last_updated": "2023-05-15T12:20:50.305Z", - "date_of_expiration": "2023-06-01T23:17:24.271Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-15T12:20:50.305Z", - "money_release_date": "2023-05-15T12:20:50.305Z", + "date_created": { + "type": 6, + "value": 1683069444271 + }, + "date_last_updated": { + "type": 6, + "value": 1684153250305 + }, + "date_of_expiration": { + "type": 6, + "value": 1685661444271 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684153250305 + }, + "money_release_date": { + "type": 6, + "value": 1684153250305 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "2bca3793216440db9878295e", + "revision": "9e5c3b56ac1b497d9db1a84d", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50927,10 +58112,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "bd629b3928ea42e288077444", + "revision": "f57d538028a4405882ab2cdb", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50938,12 +58123,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "7bd7adc1b5644ec1b806eddf", + "revision": "46946214010a4b2a8265001b", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50958,22 +58143,37 @@ "total_amount": 100, "history_id": 1684135234297, "id": 1684135234297, - "date_created": "2023-05-15T07:20:34.297Z", - "date_last_updated": "2023-05-15T22:42:26.714Z", - "date_of_expiration": "2023-06-14T07:20:34.297Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-15T22:42:26.714Z", - "money_release_date": "2023-05-15T22:42:26.714Z", + "date_created": { + "type": 6, + "value": 1684135234297 + }, + "date_last_updated": { + "type": 6, + "value": 1684190546714 + }, + "date_of_expiration": { + "type": 6, + "value": 1686727234297 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684190546714 + }, + "money_release_date": { + "type": 6, + "value": 1684190546714 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "5227a70a587f48f489108bd5", + "revision": "df9778d1b99d481c99177ab9", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50981,10 +58181,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "036ae8c582ac4ae6ae0689e6", + "revision": "d4367723eb4e4ca6abf02a78", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -50992,12 +58192,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "6f85410bcfff46cfa347c839", + "revision": "f3ba4c400ddb45c6a06e6ae8", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -51012,22 +58212,37 @@ "total_amount": 100, "history_id": 1684178465791, "id": 1684178465791, - "date_created": "2023-05-15T19:21:05.791Z", - "date_last_updated": "2023-05-15T20:15:15.990Z", - "date_of_expiration": "2023-06-14T19:21:05.791Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-15T20:15:15.990Z", - "money_release_date": "2023-05-15T20:15:15.990Z", + "date_created": { + "type": 6, + "value": 1684178465791 + }, + "date_last_updated": { + "type": 6, + "value": 1684181715990 + }, + "date_of_expiration": { + "type": 6, + "value": 1686770465791 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684181715990 + }, + "money_release_date": { + "type": 6, + "value": 1684181715990 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "d3af8ee0bba64068ae83c9a0", + "revision": "5a03a519b2874505b9f15279", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -51035,10 +58250,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "fbed96885c174e47a35aac81", + "revision": "533746d2cb454104a8998168", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -51050,10 +58265,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "71edaa5d6bd549e29fd6a531", + "revision": "277e3f09d5fe42ae9239572a", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -51061,10 +58276,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3384d4d6098c402ba988bf2e", + "revision": "c23dac4c4d594ec893de0650", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -51072,10 +58287,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "07dcedc77db04510989d5ebd", + "revision": "3f06ca599d3341f19a7297d6", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -51090,19 +58305,28 @@ "total_amount": 1300, "history_id": 1684353970499, "id": 1684353970499, - "date_created": "2023-05-17T20:06:10.499Z", - "date_last_updated": "2023-05-17T20:06:10.499Z", - "date_of_expiration": "2023-06-16T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1684353970499 + }, + "date_last_updated": { + "type": 6, + "value": 1684353970499 + }, + "date_of_expiration": { + "type": 6, + "value": 1686945970499 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "7c24d6cfdc9040cdab2933ad", + "revision": "76a76045eaf649a8911eb13c", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -51110,10 +58334,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "8661a718f39e4b5da23b379a", + "revision": "096d59d89a5c4b498495bab0", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820542, + "modified": 1701465820542 } }, { @@ -51131,12 +58355,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "3714599a140343d78889dfd4", + "revision": "3f65a5a40ce64d4b889c5fdb", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51152,9 +58376,18 @@ "original_amount": 6331951, "total_amount": 6331951, "id": 1684627580539, - "date_created": "2023-05-21T00:06:20.539Z", - "date_last_updated": "2023-05-21T00:06:20.539Z", - "date_of_expiration": "2023-05-21T00:06:20.539Z", + "date_created": { + "type": 6, + "value": 1684627580539 + }, + "date_last_updated": { + "type": 6, + "value": 1684627580539 + }, + "date_of_expiration": { + "type": 6, + "value": 1684627580539 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51163,10 +58396,10 @@ "history_id": 1684627580539, "description": "Compra de 6.331.951,00 IVIP por 1.300,00 BRL" }, - "revision": "940a526d184e4e13be1c1d71", + "revision": "219e20a88dfb456fb7c2854c", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51184,12 +58417,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "598ef8a8c5444d65b77389f3", + "revision": "1141b52e41804c749728ec40", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51205,9 +58438,18 @@ "original_amount": 320, "total_amount": 320, "id": 1684628335504, - "date_created": "2023-05-21T00:18:55.504Z", - "date_last_updated": "2023-05-21T00:18:55.504Z", - "date_of_expiration": "2023-05-21T00:18:55.504Z", + "date_created": { + "type": 6, + "value": 1684628335504 + }, + "date_last_updated": { + "type": 6, + "value": 1684628335504 + }, + "date_of_expiration": { + "type": 6, + "value": 1684628335504 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51215,10 +58457,10 @@ "currency_id": "BRL", "history_id": 1684628335504 }, - "revision": "d77d963dddfe4d7d920660d9", + "revision": "df1a65e8bb6d46ba9276c34e", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51226,10 +58468,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "53bda44d39284291b847dcbe", + "revision": "ac1bba3556314aa89c55836d", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51247,12 +58489,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "554e38e27cd147a99fc686c7", + "revision": "3f73041747304d4ebd8ae076", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51268,9 +58510,18 @@ "original_amount": 1561756, "total_amount": 1561756, "id": 1684633146254, - "date_created": "2023-05-21T01:39:06.254Z", - "date_last_updated": "2023-05-21T01:39:06.254Z", - "date_of_expiration": "2023-05-21T01:39:06.254Z", + "date_created": { + "type": 6, + "value": 1684633146254 + }, + "date_last_updated": { + "type": 6, + "value": 1684633146254 + }, + "date_of_expiration": { + "type": 6, + "value": 1684633146254 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -51279,10 +58530,10 @@ "history_id": 1684633146254, "description": "Compra de 1.561.756,00 IVIP por 320,00 BRL" }, - "revision": "e99ce738352649f2a57a9ddc", + "revision": "5f3a3b05282f41219518c1b4", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51290,12 +58541,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "7c9f1e6893ba4a8cb3ef5929", + "revision": "1145373ba5e444659a6fae04", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51310,22 +58561,37 @@ "total_amount": 130, "history_id": 1687191698878, "id": 1687191698878, - "date_created": "2023-06-19T16:21:38.878Z", - "date_last_updated": "2023-06-23T18:12:45.861Z", - "date_of_expiration": "2023-07-19T16:21:38.878Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-06-23T18:12:45.861Z", - "money_release_date": "2023-06-23T18:12:45.861Z", + "date_created": { + "type": 6, + "value": 1687191698878 + }, + "date_last_updated": { + "type": 6, + "value": 1687543965861 + }, + "date_of_expiration": { + "type": 6, + "value": 1689783698878 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1687543965861 + }, + "money_release_date": { + "type": 6, + "value": 1687543965861 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "18f814b8b51b4e24863ef6d2", + "revision": "e958a414cefe49488472015f", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51333,10 +58599,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "de43b5a832894ab4ade0a1af", + "revision": "3ddd6c16ac11447f80975c39", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51344,12 +58610,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "fd2430cf8e7749b3a3931eec", + "revision": "78e9f9fd3b39423ab8f2e64c", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51364,18 +58630,27 @@ "total_amount": 1000, "history_id": 1689106982837, "id": 1689106982837, - "date_created": "2023-07-11T20:23:02.837Z", - "date_last_updated": "2023-07-11T20:23:02.837Z", - "date_of_expiration": "2023-07-11T20:23:02.837Z", + "date_created": { + "type": 6, + "value": 1689106982837 + }, + "date_last_updated": { + "type": 6, + "value": 1689106982837 + }, + "date_of_expiration": { + "type": 6, + "value": 1689106982837 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "69bb22c86c904eaba10243d7", + "revision": "a4152b0a7a974602b6d515e2", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51383,10 +58658,10 @@ "content": { "type": "STRING", "value": "Saque de 1.000,00 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", - "revision": "1357965a59964de5a777fe29", + "revision": "7358c72fb2ea4bd9b90036db", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51394,12 +58669,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "5688cdcafbb14135945cb821", + "revision": "2bbc04edff0d43f99e42b324", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51414,18 +58689,27 @@ "total_amount": 100000, "history_id": 1689107140445, "id": 1689107140445, - "date_created": "2023-07-11T20:25:40.445Z", - "date_last_updated": "2023-07-11T20:25:40.445Z", - "date_of_expiration": "2023-07-11T20:25:40.445Z", + "date_created": { + "type": 6, + "value": 1689107140445 + }, + "date_last_updated": { + "type": 6, + "value": 1689107140445 + }, + "date_of_expiration": { + "type": 6, + "value": 1689107140445 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "3a055b2424fc454db7b45d78", + "revision": "216d2b10f4624aeea1fe7672", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51433,10 +58717,10 @@ "content": { "type": "STRING", "value": "Saque de 100.000,00 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", - "revision": "fdc0cbd440dc49ffbd376764", + "revision": "18955406efa345f98e17fe0b", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51456,12 +58740,12 @@ "installment_amount": 130, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "fea5f566f734464ba902362a", + "revision": "a8b139b2b9ec44b2b1411746", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51478,9 +58762,18 @@ "total_amount": 130, "id": 1689751872577, "contract_id": "1684353970499", - "date_created": "2023-07-19T07:31:12.577Z", - "date_last_updated": "2023-07-19T07:31:12.577Z", - "date_of_expiration": "2023-07-19T07:31:12.577Z", + "date_created": { + "type": 6, + "value": 1689751872577 + }, + "date_last_updated": { + "type": 6, + "value": 1689751872577 + }, + "date_of_expiration": { + "type": 6, + "value": 1689751872577 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -51488,10 +58781,10 @@ "currency_id": "BRL", "history_id": 1689751872577 }, - "revision": "399e155ebf2f408180dedeef", + "revision": "ede2a4e416004ef5a3b98ed9", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51499,10 +58792,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", - "revision": "6e49a3fae1624798b37b1929", + "revision": "382ed52f4c994d0dbf02a7b3", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51510,12 +58803,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "55c1b5e2ec7a414f805fc488", + "revision": "9e32c20995a8466da6f21f73", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51530,22 +58823,37 @@ "total_amount": 130, "history_id": 1689787472412, "id": 1689787472412, - "date_created": "2023-07-19T17:24:32.412Z", - "date_last_updated": "2023-07-27T14:56:03.902Z", - "date_of_expiration": "2023-08-18T17:24:32.412Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-27T14:56:03.902Z", - "money_release_date": "2023-07-27T14:56:03.902Z", + "date_created": { + "type": 6, + "value": 1689787472412 + }, + "date_last_updated": { + "type": 6, + "value": 1690469763902 + }, + "date_of_expiration": { + "type": 6, + "value": 1692379472412 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1690469763902 + }, + "money_release_date": { + "type": 6, + "value": 1690469763902 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "dc1d4e4a73da4b5d9554813f", + "revision": "72347cefd1514d7f8097549c", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51553,10 +58861,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "c5f4c3c857104495b07d5c27", + "revision": "c66c2b27e47c416aa7f227ed", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51576,12 +58884,12 @@ "installment_amount": 130, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "36cb92011d5748afaf183639", + "revision": "71305042c8fd4a9d89a67ae8", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51598,9 +58906,18 @@ "total_amount": 130, "id": 1690471265404, "contract_id": "1684353970499", - "date_created": "2023-07-27T15:21:05.404Z", - "date_last_updated": "2023-07-27T15:21:05.404Z", - "date_of_expiration": "2023-07-27T15:21:05.404Z", + "date_created": { + "type": 6, + "value": 1690471265404 + }, + "date_last_updated": { + "type": 6, + "value": 1690471265404 + }, + "date_of_expiration": { + "type": 6, + "value": 1690471265404 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -51608,10 +58925,10 @@ "currency_id": "BRL", "history_id": 1690471265404 }, - "revision": "2cdb3ab14bcc468b97f26c59", + "revision": "1b0c7c623412468cb1c022b0", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51619,10 +58936,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", - "revision": "11677989f6964678b6d58cdd", + "revision": "842e4db71d5b43bb87322c8a", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51631,12 +58948,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-20T13:29:26.475Z" + ".val": { + "type": 6, + "value": 1695216566475 + } }, - "revision": "ab6854af82914a8dabac3ed9", + "revision": "f56365dd9b4b47f5aab8399f", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51652,12 +58972,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "12385e97f55a44e8937bd2b3", + "revision": "24c7c72f76c442e7a58aec02", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51665,10 +58985,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692624566475", - "revision": "5dbb938d63c4496488a7afd6", + "revision": "b09cbd6e352341f48a892eb3", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51683,23 +59003,35 @@ "total_amount": 130, "id": 1692624566475, "history_id": 1692624566475, - "date_created": "2023-08-21T13:29:26.475Z", - "date_last_updated": "2023-08-21T13:41:31.282Z", + "date_created": { + "type": 6, + "value": 1692624566475 + }, + "date_last_updated": { + "type": 6, + "value": 1692625291282 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-21T13:41:31.282Z", - "money_release_date": "2023-08-21T13:41:31.282Z", + "date_approved": { + "type": 6, + "value": 1692625291282 + }, + "money_release_date": { + "type": 6, + "value": 1692625291282 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "8fc116e894c04097b14b8aa2", + "revision": "986206d4233a45e28b94e8de", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51707,10 +59039,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 130,00 BRL para a carteira iVip 0765.1978.1500.7150-40", - "revision": "12ef804d89f54273a57772b7", + "revision": "780b7fa64f39444e8661f2cc", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51726,14 +59058,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 3, "installments_payable": 7 }, - "revision": "b2e6bb47ee684b609cdf839e", + "revision": "3ae7ac991148477ab137137a", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51741,10 +59073,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692660761580", - "revision": "4ed77f0271464744904ba4e9", + "revision": "6464fc0d1934447aab6e4c5c", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51759,9 +59091,18 @@ "total_amount": 130, "id": "1692660761580", "history_id": "1692660761580", - "date_created": "2023-08-21T23:32:41.580Z", - "date_last_updated": "2023-08-21T23:32:41.580Z", - "date_of_expiration": "2023-08-21T23:32:41.580Z", + "date_created": { + "type": 6, + "value": 1692660761580 + }, + "date_last_updated": { + "type": 6, + "value": 1692660761580 + }, + "date_of_expiration": { + "type": 6, + "value": 1692660761580 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -51769,10 +59110,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "c47c9398c6a64f2fb03b13f3", + "revision": "2ef931c3339941b5a3c47c5f", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51780,10 +59121,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", - "revision": "a177546522e144ca97e2df77", + "revision": "621022f3367240b7910a85ff", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51795,10 +59136,10 @@ "label": "Taxa de 3,00%", "amount": 208830.06 }, - "revision": "507b5779db8142b297ec7e64", + "revision": "fc133993d56b4224b505af89", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51815,10 +59156,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "94293475963f49fca7a3929c", + "revision": "76191fa4e6f54045ad2d9f7e", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51826,10 +59167,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692785689941", - "revision": "70ad19c7a38143a19499b0f9", + "revision": "6c695a2bc06d411197c5678f", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51837,10 +59178,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "0dd39a616ece4c18a9d2835f", + "revision": "38efdbe17b8742ec86ec5732", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51855,24 +59196,39 @@ "total_amount": 6752171.94, "id": "1692785689941", "history_id": "1692785689941", - "date_created": "2023-08-23T10:14:49.941Z", - "date_last_updated": "2023-08-25T14:03:24.887Z", - "date_of_expiration": "2023-08-23T10:14:49.941Z", + "date_created": { + "type": 6, + "value": 1692785689941 + }, + "date_last_updated": { + "type": 6, + "value": 1692972204887 + }, + "date_of_expiration": { + "type": 6, + "value": 1692785689941 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": "2023-08-25T14:03:24.887Z", - "money_release_date": "2023-08-25T14:03:24.887Z", + "date_approved": { + "type": 6, + "value": 1692972204887 + }, + "money_release_date": { + "type": 6, + "value": 1692972204887 + }, "money_release_status": "drawee", "wasDebited": true }, - "revision": "472738b849ce4e3799713642", + "revision": "973dfa2982e34b1baa1bdb68", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51880,10 +59236,10 @@ "content": { "type": "STRING", "value": "Saque de 6.752.171,94 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", - "revision": "1e2bad76d2f9406dae8ac96f", + "revision": "c3b8c0a130144490a47655dc", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51892,12 +59248,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-05T17:04:41.018Z" + ".val": { + "type": 6, + "value": 1699203881018 + } }, - "revision": "99c637037f944a889e7622a0", + "revision": "a5b6477a09f045cfb7c82090", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51913,12 +59272,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "b7d03be94eac461b96759091", + "revision": "4a9611b163a34c3982963244", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51926,10 +59285,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1696611881018", - "revision": "87ed212f86f3439292a73074", + "revision": "6a9eb5e5502148dcb42a8982", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51945,23 +59304,35 @@ "total_amount": 130, "id": "1696611881018", "history_id": "1696611881018", - "date_created": "2023-10-06T17:04:41.018Z", - "date_last_updated": "2023-10-06T17:16:03.868Z", + "date_created": { + "type": 6, + "value": 1696611881018 + }, + "date_last_updated": { + "type": 6, + "value": 1696612563868 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-10-06T17:16:03.868Z", - "money_release_date": "2023-10-06T17:16:03.868Z", + "date_approved": { + "type": 6, + "value": 1696612563868 + }, + "money_release_date": { + "type": 6, + "value": 1696612563868 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "91334cff479f410ca19f3ad4", + "revision": "66f179f68f374f1f814f450a", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51969,10 +59340,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 130,00 BRL para a carteira iVip 0765.1978.1500.7150-40", - "revision": "aab1a622b28f4d788d5f258d", + "revision": "e0711c02048c4b88af162ed6", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -51988,14 +59359,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 4, "installments_payable": 6 }, - "revision": "29cc627cd2134830a384bc67", + "revision": "3ac6cf316f9e4d038ac29ceb", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -52003,10 +59374,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1696613460272", - "revision": "0130489134a34e66ab69611b", + "revision": "0a5bc846e85044e6a74fc573", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -52022,9 +59393,18 @@ "total_amount": 130, "id": "1696613460272", "history_id": "1696613460272", - "date_created": "2023-10-06T17:31:00.272Z", - "date_last_updated": "2023-10-06T17:31:00.272Z", - "date_of_expiration": "2023-10-06T17:31:00.272Z", + "date_created": { + "type": 6, + "value": 1696613460272 + }, + "date_last_updated": { + "type": 6, + "value": 1696613460272 + }, + "date_of_expiration": { + "type": 6, + "value": 1696613460272 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -52032,10 +59412,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "3efbaa305ac34108b2b1780a", + "revision": "afffe18d391f4d35bdb69b39", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -52043,10 +59423,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", - "revision": "66f870b993f4424ea0c19647", + "revision": "138497b4ff39495c879f2488", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -52054,10 +59434,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3915c99962c840d0ae8af106", + "revision": "f2b14e77bc4741088a8d30d6", "revision_nr": 1, - "created": 1701463509571, - "modified": 1701463509571 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -52069,10 +59449,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "0902cce67ed3435c9885d2a9", + "revision": "d6dc4bdc56474ffd9b32ad7c", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -52086,15 +59466,18 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL", "status": "paid" }, - "revision": "abb031b3e43e4cce9f31555d", + "revision": "7a6ec2183e0b4c568f74644d", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -52102,10 +59485,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "c630911ee8594f5194d437d2", + "revision": "5832691c47dc418487575e20", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -52113,10 +59496,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e38a85d90d7f42a2a5133359", + "revision": "23aae0cf17db421096b60dc8", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -52124,10 +59507,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5cefc316036646dc91d22e12", + "revision": "2b49ffb7b23a4427812b82be", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -52139,10 +59522,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "27873f7558b24ec9a5a447d3", + "revision": "fff9318653e34a97853df6b5", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -52156,15 +59539,18 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL", "status": "paid" }, - "revision": "a6bc456bfa5a4724b501e19e", + "revision": "83bc23e14dcb434c9c14678c", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -52172,10 +59558,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "c339e460e0ee47e3bee9ffdc", + "revision": "4b716aae22fe46719b2183c3", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -52183,10 +59569,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e144d73665ef4be5b8f1a388", + "revision": "e59ce63859974f6a9107e8a8", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -52194,10 +59580,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6551fa8ba8774c77a26c8473", + "revision": "ee678a30865b4bacbd37b2f8", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820543, + "modified": 1701465820543 } }, { @@ -52209,10 +59595,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "0b3e6d0597594cb1bd0ddb80", + "revision": "cba12ec53f7f4ff4a0db7a96", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52226,15 +59612,18 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL", "status": "paid" }, - "revision": "4ded4c99daa84d158ec70d50", + "revision": "19975e87f1c74b9299d9c678", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52242,10 +59631,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "f9d925e240b54781af355af1", + "revision": "f9364a82562f47299db5a5fb", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52253,10 +59642,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "61520b95b69c41f2a8927f75", + "revision": "9f80ad3fc4694f6492ea2fae", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52264,10 +59653,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "14ace08d8f33452b839ad8ac", + "revision": "1dd1ffad75404a7bb5315784", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52279,10 +59668,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "6b1a54e7f1244101b7e64844", + "revision": "fa5b2a7ad31c44e4aefd45ce", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52296,16 +59685,22 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-10-06T17:31:00.287Z" + "date_last_updated": { + "type": 6, + "value": 1696613460287 + } }, - "revision": "7bd3a306c0b1427bac82fc10", + "revision": "0ece03c9dbe44840bc6d8b3e", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52313,10 +59708,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "e62c2d60916a452d82fcc81a", + "revision": "00ff42d3b61e4adc9ea57e25", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52324,10 +59719,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "49bbfc236a2a4ed7b6c25050", + "revision": "b329e786dc1b4f398a447f72", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52335,10 +59730,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "acf5c09e4ebc48bfb27ea9d4", + "revision": "1919c601edf849e38649c9cf", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52350,10 +59745,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "dae7e40e507445a681e5875d", + "revision": "d2e4d60cbf944aa8b648a0db", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52367,14 +59762,17 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "487dcd7ba86948268f96e80d", + "revision": "5db4ebe253de43fb807ae1e5", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52382,10 +59780,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "4ba08a285e5340bca55dfdab", + "revision": "e74e0b49039044c5ac62ad90", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52393,10 +59791,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f3570da5239848f1866e9ffd", + "revision": "647af73148af4f41941fdfb8", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52404,10 +59802,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c6ec72b9120a4b33870407e1", + "revision": "82b25351eeb841a9b62bf680", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52419,10 +59817,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "a6ab9942c2b648109f637d88", + "revision": "0762646fea9a49c2a5cd55f9", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52436,14 +59834,17 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "d65fa82c1c7a41c9b16281f3", + "revision": "193797733cbb41c0b86e8c90", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52451,10 +59852,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "9929322f142b4899b25e137e", + "revision": "de6249f4890544d58713d226", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52462,10 +59863,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "17041eac2fbb45b8bf0be8b5", + "revision": "b1f6a1bcc381431f9ad815a6", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52473,10 +59874,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a51aac1d46c743999c67bf71", + "revision": "8735a41785d74194835b80de", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52488,10 +59889,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "667de5ff4c0048ee9c2d915b", + "revision": "4d6ea9a0021f46a0a31f69b3", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52505,14 +59906,17 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "d12400b4ae724bc2ba5bf541", + "revision": "dbf15a2502884d939a7a5b0a", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52520,10 +59924,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "4d09740a3ed943bd862474f1", + "revision": "843de70e8e464a428be31caa", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52531,10 +59935,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "7c65c4c705d74af6924af49d", + "revision": "1ba9e878021244dcac69b50d", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52542,10 +59946,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2276c533bea84520af3949b1", + "revision": "3d6a8883f6fa4b7582f689a6", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52557,10 +59961,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "3f297e13985c40bf926882c3", + "revision": "a3ba7f4c0f9041f8830e35fe", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52574,14 +59978,17 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "953dd2fa8cca49a99508fb5e", + "revision": "b3802af94e19463c9148a270", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52589,10 +59996,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "8e16cc1f03d345138c5c8af8", + "revision": "1bb270c574ec4c5b866f8bc1", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52600,10 +60007,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "9d49bff908694bb68091f0ba", + "revision": "1fe92b95e42545d6b18c96a0", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52611,10 +60018,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "aba4ae2ea8ff4a55a49fbf60", + "revision": "dcc71f26fe0640dd90181beb", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52626,10 +60033,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "36e77c86eda842b3939af4ec", + "revision": "4c633216dab449c5ad6e1df3", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52643,14 +60050,17 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "71d2fba5f117442faedcb0bf", + "revision": "58444e7b6538443ca59cda63", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52658,10 +60068,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "a094984bd15e4633ae5ebf92", + "revision": "6b8d99366bcd4be985559c24", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52669,10 +60079,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "9fd6d4be78824d988383ea08", + "revision": "7a64fd9ef8a8482e8afa4151", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52680,10 +60090,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "cc2e37a9b84c417f9e4ef7b6", + "revision": "7896490b1af24dedbaa7a9ba", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52695,10 +60105,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "6be96bddc1004ce2baefaedc", + "revision": "9f918deffba1422b9f5c4aaa", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52712,14 +60122,17 @@ "total_amount": 1300, "installments": 10, "installment_amount": 130, - "date_created": "2023-05-17T20:06:10.499Z", + "date_created": { + "type": 6, + "value": 1684353970499 + }, "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "f604a932a4e2416db4930ad6", + "revision": "9e7ea3dda3b74b97a574b2bc", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52727,10 +60140,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "440b746f2b484a4d80523c70", + "revision": "b7b264e33fae48dab55cdf96", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52738,10 +60151,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "830800b811294db486feeaa0", + "revision": "c11acf49ce714a7f83f865b1", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52749,10 +60162,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0c37d56190bf46b0987e2afb", + "revision": "7244490876fc40f2b43d4729", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52760,10 +60173,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2231bc4818cc4af8ac71b5d2", + "revision": "bf513c57e0b7426cbad44e47", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52773,13 +60186,19 @@ "value": { "approvedLimit": 1000, "limitUsed": 800, - "analysisRequested": "2023-05-17T13:09:04.557Z", - "lastReview": "2023-05-17T13:16:45.576Z" + "analysisRequested": { + "type": 6, + "value": 1684328944557 + }, + "lastReview": { + "type": 6, + "value": 1684329405576 + } }, - "revision": "a26021fa55a041bdbbedb941", + "revision": "62278681b654454e85d8c9aa", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52791,12 +60210,15 @@ "dateValidity": 1682778060382, "totalValue": 296.475, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } }, - "revision": "b9fff80e72514a44ae9af3b4", + "revision": "6e57604d1be94729b9be331e", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52804,10 +60226,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "125289b9e6d34e31946b930a", + "revision": "c5891d068a734b0cb8a82e8a", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52815,10 +60237,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c942ec4f4a844f04a35ad09f", + "revision": "66d5ad67ab62482abdf7b204", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52831,10 +60253,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "74121f9c64fd4e69a8affb61", + "revision": "78fe0055ce894d4eb61fbdde", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52842,10 +60264,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9b587c30a5e84647a64f5c7c", + "revision": "c39d516e05f7447584e2d304", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52853,12 +60275,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "889d81bb2a5643c291510938", + "revision": "653b4d9322f54f219f20e28c", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52873,20 +60295,32 @@ "total_amount": 500, "history_id": 1677768924149, "id": 1677768924149, - "date_created": "2023-03-02T14:55:24.149Z", - "date_last_updated": "2023-03-13T13:10:27.494Z", - "date_of_expiration": "2023-04-01T14:55:24.149Z", + "date_created": { + "type": 6, + "value": 1677768924149 + }, + "date_last_updated": { + "type": 6, + "value": 1678713027494 + }, + "date_of_expiration": { + "type": 6, + "value": 1680360924149 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-03-13T13:10:27.494Z", + "money_release_date": { + "type": 6, + "value": 1678713027494 + }, "money_release_status": "rejected" }, - "revision": "c01fa4a40f4c427a99130eba", + "revision": "71ec2133566448acadea2098", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52894,10 +60328,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0782.9501.4075.3404-50", - "revision": "2a5046901df84f8693ea8de4", + "revision": "6bf71f5a965641f294186ceb", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52905,10 +60339,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0bf3b5a17cc04c58b7b60ef4", + "revision": "7276efd4aef145f189b12f3b", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52921,10 +60355,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "8db9add128d44873ad2ced5d", + "revision": "84a4de273aa342dca9a49fe9", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52936,10 +60370,10 @@ "available": "0.00000000", "value": 0 }, - "revision": "253e942f86964e8994243912", + "revision": "12b00c36a05942c980cffae3", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52951,10 +60385,10 @@ "available": "0.00000000", "value": 0 }, - "revision": "86c460ab3b9e4fdbbce772ef", + "revision": "13609b97875f458cb1f1e392", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52962,10 +60396,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9cd601767a5b4acca456f1c0", + "revision": "b2b2ada4f10b435d81ea5c20", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52973,12 +60407,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "49d98176c0da47d5ae15d641", + "revision": "e359e1d44e5d4fea93057198", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -52993,22 +60427,37 @@ "total_amount": 100, "history_id": 1684172899523, "id": 1684172899523, - "date_created": "2023-05-15T17:48:19.523Z", - "date_last_updated": "2023-05-15T21:27:24.298Z", - "date_of_expiration": "2023-06-14T17:48:19.523Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-15T21:27:24.298Z", - "money_release_date": "2023-05-15T21:27:24.298Z", + "date_created": { + "type": 6, + "value": 1684172899523 + }, + "date_last_updated": { + "type": 6, + "value": 1684186044298 + }, + "date_of_expiration": { + "type": 6, + "value": 1686764899523 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684186044298 + }, + "money_release_date": { + "type": 6, + "value": 1684186044298 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "5ad1200f8ba441358d6c7397", + "revision": "b05b68190a2440feb65ba241", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53016,10 +60465,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0783.4537.2944.2504-80", - "revision": "777251008ff84092b8284a7f", + "revision": "af22f121baea445683a6072b", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53037,12 +60486,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "7746cbb8ab264dcd93b8dfe1", + "revision": "86cda426d1ea482b8c2d318a", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53058,9 +60507,18 @@ "original_amount": 487073, "total_amount": 487073, "id": 1684625628231, - "date_created": "2023-05-20T23:33:48.231Z", - "date_last_updated": "2023-05-20T23:33:48.231Z", - "date_of_expiration": "2023-05-20T23:33:48.231Z", + "date_created": { + "type": 6, + "value": 1684625628231 + }, + "date_last_updated": { + "type": 6, + "value": 1684625628231 + }, + "date_of_expiration": { + "type": 6, + "value": 1684625628231 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53069,10 +60527,10 @@ "history_id": 1684625628231, "description": "Compra de 487.073,00 IVIP por 100,00 BRL" }, - "revision": "21ed6a9e366e45a092723555", + "revision": "8ffb72b92ff04d67b02b1ca0", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53080,12 +60538,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "dad30ccb51524f0799484642", + "revision": "00558b344070445092f9d7ab", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53100,18 +60558,27 @@ "total_amount": 487073, "history_id": 1688602924031, "id": 1688602924031, - "date_created": "2023-07-06T00:22:04.031Z", - "date_last_updated": "2023-07-06T00:22:04.031Z", - "date_of_expiration": "2023-07-06T00:22:04.031Z", + "date_created": { + "type": 6, + "value": 1688602924031 + }, + "date_last_updated": { + "type": 6, + "value": 1688602924031 + }, + "date_of_expiration": { + "type": 6, + "value": 1688602924031 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "0dd3e81d3177428ab231b5ae", + "revision": "6a0e48fd9c804e44b201b6e5", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53119,10 +60586,10 @@ "content": { "type": "STRING", "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", - "revision": "56a39e8054e5435994f2d260", + "revision": "d53988abdce545fdbd7e603d", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53130,12 +60597,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "a2c16decee734feabb2b13a6", + "revision": "0c99183f76ef4171b059141a", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53150,18 +60617,27 @@ "total_amount": 487073, "history_id": 1689096874209, "id": 1689096874209, - "date_created": "2023-07-11T17:34:34.209Z", - "date_last_updated": "2023-07-11T17:34:34.209Z", - "date_of_expiration": "2023-07-11T17:34:34.209Z", + "date_created": { + "type": 6, + "value": 1689096874209 + }, + "date_last_updated": { + "type": 6, + "value": 1689096874209 + }, + "date_of_expiration": { + "type": 6, + "value": 1689096874209 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "cce6b85ad055427193a81555", + "revision": "cbeb2c6ef2a3485788632ecb", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53169,10 +60645,10 @@ "content": { "type": "STRING", "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", - "revision": "30e1fcabe2ee441185a712a0", + "revision": "def7f260663b447799464cad", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53180,12 +60656,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "e9baa89e2f234547a7302931", + "revision": "8b3e6f8bd1e5458a91b50a8c", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53200,18 +60676,27 @@ "total_amount": 487073, "history_id": 1689182689273, "id": 1689182689273, - "date_created": "2023-07-12T17:24:49.273Z", - "date_last_updated": "2023-07-12T17:24:49.273Z", - "date_of_expiration": "2023-07-12T17:24:49.273Z", + "date_created": { + "type": 6, + "value": 1689182689273 + }, + "date_last_updated": { + "type": 6, + "value": 1689182689273 + }, + "date_of_expiration": { + "type": 6, + "value": 1689182689273 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "cb7f4cf88e444088b9c76101", + "revision": "1e9fc8653465457395938ccd", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53219,10 +60704,10 @@ "content": { "type": "STRING", "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", - "revision": "18ebae96524d461883eb313c", + "revision": "e97d7bf72633497ba243ea22", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53230,12 +60715,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "1295edb362eb46c89ca88700", + "revision": "0127ca22c5d74d90a3e98aab", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53250,22 +60735,37 @@ "total_amount": 487073, "history_id": 1689197773070, "id": 1689197773070, - "date_created": "2023-07-12T21:36:13.070Z", - "date_last_updated": "2023-07-13T13:52:01.891Z", - "date_of_expiration": "2023-07-12T21:36:13.070Z", + "date_created": { + "type": 6, + "value": 1689197773070 + }, + "date_last_updated": { + "type": 6, + "value": 1689256321891 + }, + "date_of_expiration": { + "type": 6, + "value": 1689197773070 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-07-13T13:52:01.891Z", - "money_release_date": "2023-07-13T13:52:01.891Z", + "date_approved": { + "type": 6, + "value": 1689256321891 + }, + "money_release_date": { + "type": 6, + "value": 1689256321891 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "a9a8a7af4d324efc81006106", + "revision": "6954ecf831e3440bbc3e0a28", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53273,10 +60773,10 @@ "content": { "type": "STRING", "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", - "revision": "243ff463da0b478bae830aed", + "revision": "dddb9d330f1546ce82e4ea42", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53284,10 +60784,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "904f431bc3e142db807f5d34", + "revision": "53af84371adf415f99e968d0", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53295,10 +60795,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0a44d412cc5949839bb5cf9d", + "revision": "6f89296546294ceaacd8fd01", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53309,10 +60809,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "095ca1fc89c54b8da260518a", + "revision": "39e524b61be949b086db655b", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53325,10 +60825,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "4e6b2794041a4c239864556a", + "revision": "6e2b1791fd244ca1a5b1d19d", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53340,10 +60840,10 @@ "symbol": "IVIP", "value": 199.32 }, - "revision": "bc11b2a58c9d4d24a8003ee5", + "revision": "7e5a109f981a4d328b299d1f", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53351,10 +60851,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ae1bf51959bc4b5e97dc1547", + "revision": "f223d1c4018a4f41a52dbb8a", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53362,12 +60862,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "25cd7c34408c46f294e7ed78", + "revision": "1410793e73054f60adcbe75c", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53382,22 +60882,37 @@ "total_amount": 2020, "history_id": 1684105639483, "id": 1684105639483, - "date_created": "2023-05-14T23:07:19.483Z", - "date_last_updated": "2023-05-15T14:50:18.116Z", - "date_of_expiration": "2023-06-13T23:07:19.483Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-15T14:50:18.116Z", - "money_release_date": "2023-05-15T14:50:18.116Z", + "date_created": { + "type": 6, + "value": 1684105639483 + }, + "date_last_updated": { + "type": 6, + "value": 1684162218116 + }, + "date_of_expiration": { + "type": 6, + "value": 1686697639483 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684162218116 + }, + "money_release_date": { + "type": 6, + "value": 1684162218116 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "4f77c658e40747b28c30eee0", + "revision": "b58c71bb9efa4429a5b77dbc", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53405,10 +60920,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.020,00 para a carteira iVip 0807.3197.8336.0713-80", - "revision": "1528a151068d45a290eb1585", + "revision": "bbbda4fea9ee4d3bb5e88de6", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53426,12 +60941,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "8379cb7047e7469081468354", + "revision": "48e34f3dda7f4aa09044f9aa", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53447,9 +60962,18 @@ "original_amount": 9838878, "total_amount": 9838878, "id": 1684624287649, - "date_created": "2023-05-20T23:11:27.649Z", - "date_last_updated": "2023-05-20T23:11:27.649Z", - "date_of_expiration": "2023-05-20T23:11:27.649Z", + "date_created": { + "type": 6, + "value": 1684624287649 + }, + "date_last_updated": { + "type": 6, + "value": 1684624287649 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624287649 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53458,10 +60982,10 @@ "history_id": 1684624287649, "description": "Compra de 9.838.878,00 IVIP por 2.020,00 BRL" }, - "revision": "9c583f7e3611426dafab1e7b", + "revision": "55c68619ab4441e1b4fdc8ac", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53479,12 +61003,12 @@ "installment_amount": 7975273, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "e06bbaf265214097b73b3559", + "revision": "d9b7002b6c834b3ebf4c0fd7", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53499,9 +61023,18 @@ "original_amount": 7975273, "total_amount": 7975273, "id": 1685667269938, - "date_created": "2023-06-02T00:54:29.938Z", - "date_last_updated": "2023-06-02T00:54:29.938Z", - "date_of_expiration": "2025-06-02T00:54:29.938Z", + "date_created": { + "type": 6, + "value": 1685667269938 + }, + "date_last_updated": { + "type": 6, + "value": 1685667269938 + }, + "date_of_expiration": { + "type": 6, + "value": 1748825669938 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53509,10 +61042,10 @@ "currency_id": "IVIP", "history_id": 1685667269938 }, - "revision": "e3d91138658a4d369b03d0e4", + "revision": "9f390a864576439b98122479", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53520,10 +61053,10 @@ "content": { "type": "STRING", "value": "Investimento de 7.975.273,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "76f91b5741004ae3845354c2", + "revision": "9f28d432ca1944ab83fbd5f8", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53531,10 +61064,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1b4f122b30ec4817917f6677", + "revision": "ecd3161a2c894486a72b908c", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53542,10 +61075,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d60c2267e8cd458ca2093a10", + "revision": "d3044b48d9ff47b3984de218", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53556,10 +61089,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "7ac436a122944df8be9b24a1", + "revision": "2ba552b92f184fb29e66bf18", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53571,12 +61104,15 @@ "dateValidity": 1684103814248, "totalValue": 103.1880266333287, "currencyType": "USD", - "balancesModificacao": "2023-10-13T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697166000000 + } }, - "revision": "6550b356ba9146d8ba4ecbf2", + "revision": "e4b317e50fe7416190829615", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53588,10 +61124,10 @@ "symbol": "IVIP", "value": 355.3 }, - "revision": "85ad7a7c3dc645868d457417", + "revision": "71ca7ea7e172449aa8506627", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53599,10 +61135,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "14e5e9ea7f8241d3af85d53e", + "revision": "624a88405459457e941a4875", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53610,12 +61146,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "29c34c55ea594d12a74e8423", + "revision": "0cac5fdab7b2477c93fdc73e", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53630,22 +61166,37 @@ "total_amount": 1500, "history_id": 1677928546145, "id": 1677928546145, - "date_created": "2023-03-04T11:15:46.145Z", - "date_last_updated": "2023-03-04T11:25:19.050Z", - "date_of_expiration": "2023-04-03T11:15:46.145Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-04T11:25:19.050Z", - "money_release_date": "2023-03-04T11:25:19.050Z", + "date_created": { + "type": 6, + "value": 1677928546145 + }, + "date_last_updated": { + "type": 6, + "value": 1677929119050 + }, + "date_of_expiration": { + "type": 6, + "value": 1680520546145 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677929119050 + }, + "money_release_date": { + "type": 6, + "value": 1677929119050 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "c7ca3d59ef294b499beb0127", + "revision": "e62a5b05719146c5a3ea3e64", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53653,10 +61204,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "1983d1c203fe4d1ba2ff1696", + "revision": "3dad8c6dc4e5414a9e55b5b3", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53664,12 +61215,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "d093ddb7efda4a2cafcf1014", + "revision": "69950841b161448db4c87efc", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53684,22 +61235,37 @@ "total_amount": 20, "history_id": 1677787145274, "id": 1677787145274, - "date_created": "2023-03-02T19:59:05.274Z", - "date_last_updated": "2023-03-02T20:06:45.317Z", - "date_of_expiration": "2023-04-01T19:59:05.274Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-02T20:06:45.317Z", - "money_release_date": "2023-03-02T20:06:45.317Z", + "date_created": { + "type": 6, + "value": 1677787145274 + }, + "date_last_updated": { + "type": 6, + "value": 1677787605317 + }, + "date_of_expiration": { + "type": 6, + "value": 1680379145274 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677787605317 + }, + "money_release_date": { + "type": 6, + "value": 1677787605317 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "2e7345f12eb8488590f34a65", + "revision": "af70b7f259dc46929c92c1be", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53707,10 +61273,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "cc3e849bfcff4c279ddb767e", + "revision": "e554cf06f0ff498dbda32b72", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820544, + "modified": 1701465820544 } }, { @@ -53728,12 +61294,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "297017c79ad5402985533571", + "revision": "4d574186f21d426a8f698175", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -53749,9 +61315,18 @@ "original_amount": 10760563, "total_amount": 10760563, "id": 1678059759995, - "date_created": "2023-03-05T23:42:39.995Z", - "date_last_updated": "2023-03-05T23:42:39.995Z", - "date_of_expiration": "2023-03-05T23:42:39.995Z", + "date_created": { + "type": 6, + "value": 1678059759995 + }, + "date_last_updated": { + "type": 6, + "value": 1678059759995 + }, + "date_of_expiration": { + "type": 6, + "value": 1678059759995 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53760,10 +61335,10 @@ "history_id": 1678059759995, "description": "Compra de 10760563 IVIP por 1520 BRL" }, - "revision": "e2530b2560254f77abec399b", + "revision": "8b43b8ac945147c6be02c598", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -53771,12 +61346,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "c063afb65f8c4db2a52ba7a5", + "revision": "9e1504127c6f44df9a82e130", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -53791,22 +61366,37 @@ "total_amount": 153, "history_id": 1678742795429, "id": 1678742795429, - "date_created": "2023-03-13T21:26:35.429Z", - "date_last_updated": "2023-03-13T21:27:18.748Z", - "date_of_expiration": "2023-04-12T21:26:35.429Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-13T21:27:18.748Z", - "money_release_date": "2023-03-13T21:27:18.748Z", + "date_created": { + "type": 6, + "value": 1678742795429 + }, + "date_last_updated": { + "type": 6, + "value": 1678742838748 + }, + "date_of_expiration": { + "type": 6, + "value": 1681334795429 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678742838748 + }, + "money_release_date": { + "type": 6, + "value": 1678742838748 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "2ecaab1a5bcf4160ba2bfa36", + "revision": "399e357a85f14504a111ebdb", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -53814,10 +61404,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 153,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "a03896271ab24a1f9b16519a", + "revision": "b857a7322c9e4ac38454158f", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -53835,12 +61425,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b317e507fb364001b0f3c892", + "revision": "f7ec8b83376d4229aef3824f", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -53856,9 +61446,18 @@ "original_amount": 3, "total_amount": 3, "id": 1678209797800, - "date_created": "2023-03-07T17:23:17.800Z", - "date_last_updated": "2023-03-07T17:23:17.800Z", - "date_of_expiration": "2023-03-07T17:23:17.800Z", + "date_created": { + "type": 6, + "value": 1678209797800 + }, + "date_last_updated": { + "type": 6, + "value": 1678209797800 + }, + "date_of_expiration": { + "type": 6, + "value": 1678209797800 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53866,10 +61465,10 @@ "currency_id": "BRL", "history_id": 1678209797800 }, - "revision": "92edf985a51b4b558270c97d", + "revision": "f4749d6aa0b4425a95931092", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -53877,10 +61476,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "a15628129bc44dfcb734f20f", + "revision": "72ae3802d7e5400ea9445ce2", "revision_nr": 1, - "created": 1701463509572, - "modified": 1701463509572 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -53898,12 +61497,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "7dcf2e3b4aa14edc95c53f3d", + "revision": "fe68983328f64a5a89de05a5", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -53919,9 +61518,18 @@ "original_amount": 2, "total_amount": 2, "id": 1678215371496, - "date_created": "2023-03-07T18:56:11.496Z", - "date_last_updated": "2023-03-07T18:56:11.496Z", - "date_of_expiration": "2023-03-07T18:56:11.496Z", + "date_created": { + "type": 6, + "value": 1678215371496 + }, + "date_last_updated": { + "type": 6, + "value": 1678215371496 + }, + "date_of_expiration": { + "type": 6, + "value": 1678215371496 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53929,10 +61537,10 @@ "currency_id": "BRL", "history_id": 1678215371496 }, - "revision": "29ed23a5cd01469081608a28", + "revision": "d5315504f6384af5b57f3155", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -53940,10 +61548,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "3408df42e29442b2947cde11", + "revision": "09c7f112908b4e4b96416bc9", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -53961,12 +61569,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "5cc49dcac85b47c8857578ef", + "revision": "e2c3c85d59cb4e1e8df0d243", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -53982,9 +61590,18 @@ "original_amount": 9.4, "total_amount": 9.4, "id": 1679267048083, - "date_created": "2023-03-19T23:04:08.083Z", - "date_last_updated": "2023-03-19T23:04:08.083Z", - "date_of_expiration": "2023-03-19T23:04:08.083Z", + "date_created": { + "type": 6, + "value": 1679267048083 + }, + "date_last_updated": { + "type": 6, + "value": 1679267048083 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267048083 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -53992,10 +61609,10 @@ "currency_id": "BRL", "history_id": 1679267048083 }, - "revision": "12338c97dd6e44a999ae5619", + "revision": "c8d9f2b8a5304c918768c6f0", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54003,10 +61620,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "63274afb9b02403a9a266914", + "revision": "a0483e65c0434815b9df48be", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54024,12 +61641,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "2b54da5a598a44f981d1b217", + "revision": "cfe0e5ff4e72470188bd3865", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54045,9 +61662,18 @@ "original_amount": 974525, "total_amount": 974525, "id": 1679268223760, - "date_created": "2023-03-19T23:23:43.760Z", - "date_last_updated": "2023-03-19T23:23:43.760Z", - "date_of_expiration": "2023-03-19T23:23:43.760Z", + "date_created": { + "type": 6, + "value": 1679268223760 + }, + "date_last_updated": { + "type": 6, + "value": 1679268223760 + }, + "date_of_expiration": { + "type": 6, + "value": 1679268223760 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54056,10 +61682,10 @@ "history_id": 1679268223760, "description": "Compra de 974525 IVIP por 167.4 BRL" }, - "revision": "0c3b2b6453ec4db5855d6493", + "revision": "6061efd144af404a83e972ef", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54077,12 +61703,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a40b9953732e4052aeb9dc2f", + "revision": "9aa7a20145694110bf10a0ee", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54098,9 +61724,18 @@ "original_amount": 10, "total_amount": 10, "id": 1679914966258, - "date_created": "2023-03-27T11:02:46.258Z", - "date_last_updated": "2023-03-27T11:02:46.258Z", - "date_of_expiration": "2023-03-27T11:02:46.258Z", + "date_created": { + "type": 6, + "value": 1679914966258 + }, + "date_last_updated": { + "type": 6, + "value": 1679914966258 + }, + "date_of_expiration": { + "type": 6, + "value": 1679914966258 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54108,10 +61743,10 @@ "currency_id": "BRL", "history_id": 1679914966258 }, - "revision": "47891844cdb84497a40ffadc", + "revision": "b1af08261b2047bda0f3649a", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54119,10 +61754,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "560fe3b4236f4ef5a39ccc6b", + "revision": "6d52d62f5ebe415db5ebdf4f", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54140,12 +61775,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "39115a595b1747b5a706b107", + "revision": "ea733187e0554ceeae34e6ee", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54161,9 +61796,18 @@ "original_amount": 203, "total_amount": 203, "id": 1684348398411, - "date_created": "2023-05-17T18:33:18.411Z", - "date_last_updated": "2023-05-17T18:33:18.411Z", - "date_of_expiration": "2023-05-17T18:33:18.411Z", + "date_created": { + "type": 6, + "value": 1684348398411 + }, + "date_last_updated": { + "type": 6, + "value": 1684348398411 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348398411 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54171,10 +61815,10 @@ "currency_id": "BRL", "history_id": 1684348398411 }, - "revision": "dd5b78961c804984b4f089a7", + "revision": "5a386835986c4625b06d1873", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54182,10 +61826,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "99f48d05d024415599831e05", + "revision": "a4c7c9ec79e74a7a982c19e2", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54203,12 +61847,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "3debbdb792034a0193231b11", + "revision": "3735c162c0f04d09a3055c25", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54224,9 +61868,18 @@ "original_amount": 9, "total_amount": 9, "id": 1684624161069, - "date_created": "2023-05-20T23:09:21.069Z", - "date_last_updated": "2023-05-20T23:09:21.069Z", - "date_of_expiration": "2023-05-20T23:09:21.069Z", + "date_created": { + "type": 6, + "value": 1684624161069 + }, + "date_last_updated": { + "type": 6, + "value": 1684624161069 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624161069 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54234,10 +61887,10 @@ "currency_id": "BRL", "history_id": 1684624161069 }, - "revision": "c718432c468640928d0c8570", + "revision": "7a5b5cb256904c939a94147a", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54245,10 +61898,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "c3c123b923114f9390d8eec3", + "revision": "749fe8ca186a4bd78bbbf92e", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54266,12 +61919,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "98aae19de17f4b049bbec13e", + "revision": "d5f6975c8f784bd8809b4922", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54287,9 +61940,18 @@ "original_amount": 1081302, "total_amount": 1081302, "id": 1684624222413, - "date_created": "2023-05-20T23:10:22.413Z", - "date_last_updated": "2023-05-20T23:10:22.413Z", - "date_of_expiration": "2023-05-20T23:10:22.413Z", + "date_created": { + "type": 6, + "value": 1684624222413 + }, + "date_last_updated": { + "type": 6, + "value": 1684624222413 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624222413 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54298,10 +61960,10 @@ "history_id": 1684624222413, "description": "Compra de 1.081.302,00 IVIP por 222,00 BRL" }, - "revision": "ffa93596da8447a4a8c88e8f", + "revision": "81f60d6aba0b4a71a39b4d87", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54319,12 +61981,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "f1038d6aee1943df8563da65", + "revision": "fd036b1c25db4d95abd5d831", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54340,9 +62002,18 @@ "original_amount": 7, "total_amount": 7, "id": 1684624292772, - "date_created": "2023-05-20T23:11:32.772Z", - "date_last_updated": "2023-05-20T23:11:32.772Z", - "date_of_expiration": "2023-05-20T23:11:32.772Z", + "date_created": { + "type": 6, + "value": 1684624292772 + }, + "date_last_updated": { + "type": 6, + "value": 1684624292772 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624292772 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54350,10 +62021,10 @@ "currency_id": "BRL", "history_id": 1684624292772 }, - "revision": "2fc1ef0abe4d478bad8b172f", + "revision": "ea2571d17aee4e569ae0aa7b", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54361,10 +62032,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "f198cd91cda24909a9b05397", + "revision": "d7dee5274a2f416fb02bcc70", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54372,12 +62043,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "8317a3046c69463aa82cb338", + "revision": "4fed02db1eb44747b63480aa", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54392,22 +62063,37 @@ "total_amount": 1061299, "history_id": 1688520874831, "id": 1688520874831, - "date_created": "2023-07-05T01:34:34.831Z", - "date_last_updated": "2023-07-13T14:18:04.324Z", - "date_of_expiration": "2023-07-05T01:34:34.831Z", + "date_created": { + "type": 6, + "value": 1688520874831 + }, + "date_last_updated": { + "type": 6, + "value": 1689257884324 + }, + "date_of_expiration": { + "type": 6, + "value": 1688520874831 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-07-13T14:18:04.324Z", - "money_release_date": "2023-07-13T14:18:04.324Z", + "date_approved": { + "type": 6, + "value": 1689257884324 + }, + "money_release_date": { + "type": 6, + "value": 1689257884324 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "7fff6ceed22647ea9cdbeb88", + "revision": "86109888b1a24bbbb1efd7a1", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54415,10 +62101,10 @@ "content": { "type": "STRING", "value": "Saque de 1.061.299,00 IVIP para a carteira 0xE15d4Dd48a54BAF74D9FA6a77FBb4B943a2A0d07", - "revision": "4455b8267ead4e088d6fb5f4", + "revision": "4fddc1c60c7c46dfb403523d", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54426,12 +62112,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "00b8aafb6a084856ad8463b8", + "revision": "47b3822a2fbf4f84952bd3eb", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54446,22 +62132,37 @@ "total_amount": 10045174, "history_id": 1689257644454, "id": 1689257644454, - "date_created": "2023-07-13T14:14:04.454Z", - "date_last_updated": "2023-07-14T17:46:54.071Z", - "date_of_expiration": "2023-07-13T14:14:04.454Z", + "date_created": { + "type": 6, + "value": 1689257644454 + }, + "date_last_updated": { + "type": 6, + "value": 1689356814071 + }, + "date_of_expiration": { + "type": 6, + "value": 1689257644454 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-07-14T17:46:54.071Z", - "money_release_date": "2023-07-14T17:46:54.071Z", + "date_approved": { + "type": 6, + "value": 1689356814071 + }, + "money_release_date": { + "type": 6, + "value": 1689356814071 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "b8ac28bbb2ad4ae0aee6616d", + "revision": "a19c574722ee49dbb80ffad0", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54469,10 +62170,10 @@ "content": { "type": "STRING", "value": "Saque de 10.045.174,00 IVIP para a carteira 0xE15d4Dd48a54BAF74D9FA6a77FBb4B943a2A0d07", - "revision": "a332a385c1f84e378cfef9ba", + "revision": "d0b5e9c5e2aa455385d2b266", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54480,12 +62181,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "aac03c7156f84db19e50f42d", + "revision": "4168de639cca462aaf43c976", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54500,22 +62201,37 @@ "total_amount": 1000, "history_id": 1689463707269, "id": 1689463707269, - "date_created": "2023-07-15T23:28:27.269Z", - "date_last_updated": "2023-07-18T13:54:57.994Z", - "date_of_expiration": "2023-08-14T23:28:27.269Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-18T13:54:57.994Z", - "money_release_date": "2023-07-18T13:54:57.994Z", + "date_created": { + "type": 6, + "value": 1689463707269 + }, + "date_last_updated": { + "type": 6, + "value": 1689688497994 + }, + "date_of_expiration": { + "type": 6, + "value": 1692055707269 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689688497994 + }, + "money_release_date": { + "type": 6, + "value": 1689688497994 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "6465ff8b6b2540cf8f755333", + "revision": "ad6b3c561c5147a1866beffa", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54523,10 +62239,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "38425d5d65844b3fa64b0c03", + "revision": "6ad28cd7c16a462190691eda", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820545, + "modified": 1701465820545 } }, { @@ -54544,12 +62260,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "f3fab3d1763d48ed8d56e85f", + "revision": "f2345430eff14ce298ddbe6f", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54565,9 +62281,18 @@ "original_amount": 661120, "total_amount": 661120, "id": 1689688682027, - "date_created": "2023-07-18T13:58:02.027Z", - "date_last_updated": "2023-07-18T13:58:02.027Z", - "date_of_expiration": "2023-07-18T13:58:02.027Z", + "date_created": { + "type": 6, + "value": 1689688682027 + }, + "date_last_updated": { + "type": 6, + "value": 1689688682027 + }, + "date_of_expiration": { + "type": 6, + "value": 1689688682027 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54576,10 +62301,10 @@ "history_id": 1689688682027, "description": "Compra de 661.120,00 IVIP por 1.007,00 BRL" }, - "revision": "6498af6532e046be861330cc", + "revision": "8eb3ace52693485cae49a5c5", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54588,12 +62313,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-23T17:07:17.203Z" + ".val": { + "type": 6, + "value": 1692810437203 + } }, - "revision": "ea2f326dcf3d4ba7a0340a1e", + "revision": "78b56710c7614a628ffca1ff", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54609,12 +62337,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "5e3493cd86484a80833be811", + "revision": "1f8b935857ac4b8e8924e582", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54622,10 +62350,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1690218437204", - "revision": "bca4718588f1445f9a842c72", + "revision": "9226b94534814e0d895c00d7", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54640,8 +62368,14 @@ "total_amount": 100, "id": 1690218437204, "history_id": 1690218437204, - "date_created": "2023-07-24T17:07:17.204Z", - "date_last_updated": "2023-07-24T17:07:17.204Z", + "date_created": { + "type": 6, + "value": 1690218437204 + }, + "date_last_updated": { + "type": 6, + "value": 1690218437204 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -54649,10 +62383,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "07bfc8a7b58f4bada341cb5a", + "revision": "7258132f33ab4b00a4adb6c1", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54660,10 +62394,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "1b410a055c274290942b6e49", + "revision": "da4bc0c5d8d34374bc139d4c", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54679,12 +62413,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "bc89a07ef69c4a1fb4505325", + "revision": "da1bcf7e9562444ca3be972c", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54692,10 +62426,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1691105324726", - "revision": "2b495861a4e54a1a830b54c5", + "revision": "2fe8c74a66e14138afce1321", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54710,9 +62444,18 @@ "total_amount": 2362853, "id": 1691105324726, "history_id": 1691105324726, - "date_created": "2023-08-03T23:28:44.726Z", - "date_last_updated": "2023-08-03T23:28:44.726Z", - "date_of_expiration": "2023-09-03T23:28:44.725Z", + "date_created": { + "type": 6, + "value": 1691105324726 + }, + "date_last_updated": { + "type": 6, + "value": 1691105324726 + }, + "date_of_expiration": { + "type": 6, + "value": 1693783724725 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54720,10 +62463,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "6fec0bc4ec3247b6adabffb4", + "revision": "98512af7251d463593729da3", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54731,10 +62474,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.362.853,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "c1757e5f6a2146d8b7b17090", + "revision": "218673e1d8c2488aa03c6677", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54750,12 +62493,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "9aa368497f8949fc9405c007", + "revision": "61ed664d48954558b14041ef", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54763,10 +62506,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1693783873313", - "revision": "c8da29be730e481d806ea075", + "revision": "7b655eff33e34f34806ec7f1", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54781,9 +62524,18 @@ "total_amount": 2410110.06, "id": "1693783873313", "history_id": "1693783873313", - "date_created": "2023-09-03T23:31:13.313Z", - "date_last_updated": "2023-09-03T23:31:13.313Z", - "date_of_expiration": "2023-09-03T23:31:13.313Z", + "date_created": { + "type": 6, + "value": 1693783873313 + }, + "date_last_updated": { + "type": 6, + "value": 1693783873313 + }, + "date_of_expiration": { + "type": 6, + "value": 1693783873313 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54791,10 +62543,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "efb860c981994a52920a9113", + "revision": "e69ec5654d744ec58b1be067", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54802,10 +62554,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.362.853,00 IVIP com um rendimento de +47.257,06 IVIP (2,00%) - Y12XDT27", - "revision": "e18a068b81164b7ab7c5d131", + "revision": "f222a486bba34a698cf3ab8a", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54821,12 +62573,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "c7409077fe414215b25457c6", + "revision": "1cbdced6e19647389d9b37f9", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54834,10 +62586,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1693916505659", - "revision": "36f6ac690a534f5da9e1cde0", + "revision": "99ebacf5b1634e0a9a02a0ad", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54852,9 +62604,18 @@ "total_amount": 2410324, "id": "1693916505659", "history_id": "1693916505659", - "date_created": "2023-09-05T12:21:45.659Z", - "date_last_updated": "2023-09-05T12:21:45.659Z", - "date_of_expiration": "2023-10-05T12:21:45.658Z", + "date_created": { + "type": 6, + "value": 1693916505659 + }, + "date_last_updated": { + "type": 6, + "value": 1693916505659 + }, + "date_of_expiration": { + "type": 6, + "value": 1696508505658 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54862,10 +62623,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "a35e380da315433399ab99c4", + "revision": "9524b2fd12c34e68a8350a25", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54873,10 +62634,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.410.324,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", - "revision": "3c83df68065d4fa58f79e202", + "revision": "f761cbbb84414ac480fb5d86", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54892,12 +62653,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "1333c6a204ca433d9f232284", + "revision": "5fc2eab9cf8b49a8ad042602", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54905,10 +62666,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696508517073", - "revision": "ca8ad9344b214b8dab3c251d", + "revision": "637ab18dc12a41c38e31dcb7", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54924,9 +62685,18 @@ "total_amount": 2458530.48, "id": "1696508517073", "history_id": "1696508517073", - "date_created": "2023-10-05T12:21:57.073Z", - "date_last_updated": "2023-10-05T12:21:57.073Z", - "date_of_expiration": "2023-10-05T12:21:57.073Z", + "date_created": { + "type": 6, + "value": 1696508517073 + }, + "date_last_updated": { + "type": 6, + "value": 1696508517073 + }, + "date_of_expiration": { + "type": 6, + "value": 1696508517073 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -54934,10 +62704,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "fd094957592a43ed88f059db", + "revision": "4baf9fcf74004af5a9d9d2b9", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54945,10 +62715,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.410.324,00 IVIP com um rendimento de +48.206,48 IVIP (2,00%) - Y12XDT27", - "revision": "79ee4cae241e4b9880f3fcf0", + "revision": "1b18e2da27314719aaffa1cb", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54964,12 +62734,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "39591415daa245c1ba215e32", + "revision": "307742d64928465fb68304c4", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54977,10 +62747,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696541853446", - "revision": "cef31462feab423993cd7b4a", + "revision": "c9ee87bf1c1246fd9623b428", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -54996,9 +62766,18 @@ "total_amount": 100000, "id": "1696541853446", "history_id": "1696541853446", - "date_created": "2023-10-05T21:37:33.446Z", - "date_last_updated": "2023-10-05T21:37:33.446Z", - "date_of_expiration": "2025-10-05T21:37:33.408Z", + "date_created": { + "type": 6, + "value": 1696541853446 + }, + "date_last_updated": { + "type": 6, + "value": 1696541853446 + }, + "date_of_expiration": { + "type": 6, + "value": 1759700253408 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -55006,10 +62785,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "36fd1e7a72d945be8e258285", + "revision": "13923ec7d0b9440a94f4a9b5", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55017,10 +62796,10 @@ "content": { "type": "STRING", "value": "Investimento de 100.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 05/10/2025 - P9A02KSL", - "revision": "8f043398bd044bf5ae8ec19c", + "revision": "5d5dc84924c443b7bb776b61", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55036,12 +62815,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "c64cd50348374bcb933bde65", + "revision": "bd6b3d20d30c4fe3a9a0a4b2", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55049,10 +62828,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696640077573", - "revision": "5ab77eabfb334b2fa9dd00b1", + "revision": "4d4bec50ab024187ae2f33c3", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55068,9 +62847,18 @@ "total_amount": 2366500, "id": "1696640077573", "history_id": "1696640077573", - "date_created": "2023-10-07T00:54:37.573Z", - "date_last_updated": "2023-10-07T00:54:37.573Z", - "date_of_expiration": "2023-11-07T00:54:37.538Z", + "date_created": { + "type": 6, + "value": 1696640077573 + }, + "date_last_updated": { + "type": 6, + "value": 1696640077573 + }, + "date_of_expiration": { + "type": 6, + "value": 1699318477538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -55078,10 +62866,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "8f135101d8b14bf7b6bb03ee", + "revision": "314b15804e0a4a23ab853ae0", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55089,10 +62877,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.366.500,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", - "revision": "38b250327ba0409b88ee69d9", + "revision": "d3e8c436a1c5453f8d7f7352", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55100,10 +62888,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b4d34efe1db24e079550eeea", + "revision": "a30ae95876f345c98274a74e", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55111,10 +62899,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1dc9ab5ba08e462cb4a528bf", + "revision": "f48df06137814d2f8672de82", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55125,10 +62913,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "94548aef7331400a875f9f41", + "revision": "56fb80d261024169874d3929", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55140,12 +62928,15 @@ "dateValidity": 1678944817912, "totalValue": 779.84, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } }, - "revision": "2efcc414bbeb4111b07141e9", + "revision": "74bc065d9a8349ffa42bd173", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55157,10 +62948,10 @@ "symbol": "IVIP", "value": 151.17 }, - "revision": "5c053222ba9a4cf09cd11afe", + "revision": "83808b69fe434f4ab11b10bc", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55168,10 +62959,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d931d553c72f4f79b00f678a", + "revision": "d50a1eb08325469890bf069a", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55180,12 +62971,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-31T22:35:26.584Z" + ".val": { + "type": 6, + "value": 1698791726584 + } }, - "revision": "38c93cd8d5d54cb282ca182a", + "revision": "b723f61b7f274a57a89d3d49", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55201,12 +62995,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "32a2281621e545f4aacd3a0e", + "revision": "24ef9e0c6d1f4dbfbddc9734", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55214,10 +63008,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696199726584", - "revision": "77d62b28024447c0a28372a9", + "revision": "83a638695fbc4b4d96284052", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55233,8 +63027,14 @@ "total_amount": 10000, "id": "1696199726584", "history_id": "1696199726584", - "date_created": "2023-10-01T22:35:26.584Z", - "date_last_updated": "2023-10-01T22:35:26.584Z", + "date_created": { + "type": 6, + "value": 1696199726584 + }, + "date_last_updated": { + "type": 6, + "value": 1696199726584 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -55242,10 +63042,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "ce7bfd8472014e149de700e2", + "revision": "170d5c4e0b9a4d278a6e9c74", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55253,10 +63053,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 10.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", - "revision": "9c261c04deca4fd0adde79e6", + "revision": "822e363d72e44eb7a8362f10", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55265,12 +63065,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-01T01:12:03.721Z" + ".val": { + "type": 6, + "value": 1698801123721 + } }, - "revision": "c9fcbf5c9f2943459ff32162", + "revision": "25b1465158eb49b18f5f2295", "revision_nr": 1, - "created": 1701463509573, - "modified": 1701463509573 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55286,12 +63089,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "638d2fa7d4b047ce8a2e3d87", + "revision": "58f1adb911514011bb6941b3", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55299,10 +63102,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696209123721", - "revision": "31f260308e6a4f32974ee771", + "revision": "936cf506fe1b4444b85e53e0", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55318,23 +63121,35 @@ "total_amount": 10000, "id": "1696209123721", "history_id": "1696209123721", - "date_created": "2023-10-02T01:12:03.721Z", - "date_last_updated": "2023-10-02T18:48:20.859Z", + "date_created": { + "type": 6, + "value": 1696209123721 + }, + "date_last_updated": { + "type": 6, + "value": 1696272500859 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": "2023-10-02T18:48:20.859Z", - "money_release_date": "2023-10-02T18:48:20.859Z", + "date_approved": { + "type": 6, + "value": 1696272500859 + }, + "money_release_date": { + "type": 6, + "value": 1696272500859 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "f3f0d1e95ca2473e8f054d80", + "revision": "09cecc02c2024d8484750af6", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55342,10 +63157,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 10.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", - "revision": "b7570dba85dd40f5b93230fc", + "revision": "9300dd060ecf45f1a587b90f", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820546, + "modified": 1701465820546 } }, { @@ -55361,12 +63176,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "d922bd41893e4917a28e3525", + "revision": "ef328be498ad4563aa199bcd", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55374,10 +63189,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696355307483", - "revision": "bb27ba4218b44cd2b9229c8d", + "revision": "1253f2043c044c299b8d437a", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55393,9 +63208,18 @@ "total_amount": 10000, "id": "1696355307483", "history_id": "1696355307483", - "date_created": "2023-10-03T17:48:27.483Z", - "date_last_updated": "2023-10-03T17:48:27.483Z", - "date_of_expiration": "2023-11-03T17:48:27.483Z", + "date_created": { + "type": 6, + "value": 1696355307483 + }, + "date_last_updated": { + "type": 6, + "value": 1696355307483 + }, + "date_of_expiration": { + "type": 6, + "value": 1699033707483 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -55403,10 +63227,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "bf058e4d43f546e7bcd7474b", + "revision": "00dd7e8914434d16a0aec5c8", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55414,10 +63238,10 @@ "content": { "type": "STRING", "value": "Investimento de 10.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/11/2023 - Y12XDT27", - "revision": "643e19ec6a324959bfdf98db", + "revision": "3e6fdaeb864d4c149e730bad", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55426,12 +63250,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-05T16:28:35.603Z" + ".val": { + "type": 6, + "value": 1699201715603 + } }, - "revision": "89d924b0735440d8baebd2a1", + "revision": "b0d33cd26cb244edb398ac38", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55447,12 +63274,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "afd9ca7cd7f04f7386b51ba0", + "revision": "1c4a1795cb7e40339a39f1cf", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55460,10 +63287,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696609715603", - "revision": "71392c08934b4c1086672199", + "revision": "8b129f0ab0d642188685eb41", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55479,23 +63306,35 @@ "total_amount": 250, "id": "1696609715603", "history_id": "1696609715603", - "date_created": "2023-10-06T16:28:35.603Z", - "date_last_updated": "2023-10-06T16:50:08.116Z", + "date_created": { + "type": 6, + "value": 1696609715603 + }, + "date_last_updated": { + "type": 6, + "value": 1696611008116 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-10-06T16:50:08.116Z", - "money_release_date": "2023-10-06T16:50:08.116Z", + "date_approved": { + "type": 6, + "value": 1696611008116 + }, + "money_release_date": { + "type": 6, + "value": 1696611008116 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "4cc96de72da641a08cfcc6ab", + "revision": "07254d7e3d6a4c4c9df74ec3", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55503,10 +63342,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 250,00 BRL para a carteira iVip 0832.4975.9247.3140-30", - "revision": "3e0bd74f92d14d83a9680c07", + "revision": "a1ca6684c38b437e96759bfe", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55515,12 +63354,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-05T16:40:50.136Z" + ".val": { + "type": 6, + "value": 1699202450136 + } }, - "revision": "ee8873e6f10b4f2aa288c2d8", + "revision": "c4ca01cccda34a24ad84a95b", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55536,12 +63378,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "1394a588ec3549a0a4a1935e", + "revision": "ff002dadbd2142d68de84762", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55549,10 +63391,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696610450136", - "revision": "5c8189b369ef40f082bf3c9e", + "revision": "40507032a2464ad78a857baf", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55568,23 +63410,35 @@ "total_amount": 868000, "id": "1696610450136", "history_id": "1696610450136", - "date_created": "2023-10-06T16:40:50.136Z", - "date_last_updated": "2023-10-06T17:06:26.733Z", + "date_created": { + "type": 6, + "value": 1696610450136 + }, + "date_last_updated": { + "type": 6, + "value": 1696611986733 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": "2023-10-06T17:06:26.733Z", - "money_release_date": "2023-10-06T17:06:26.733Z", + "date_approved": { + "type": 6, + "value": 1696611986733 + }, + "money_release_date": { + "type": 6, + "value": 1696611986733 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "ec23ff6d72cc45648bf4491b", + "revision": "be1b226850e441c8a10dbe36", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55592,10 +63446,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 868.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", - "revision": "73e1108a1b6e438a88f30919", + "revision": "dcdba2d02de545b7b702510b", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55611,12 +63465,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "79997a48bf264192aa9e1f6a", + "revision": "f72dd8fb3ca946868f64f308", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55624,10 +63478,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696611534552", - "revision": "3bcdfb0f4eaa46b3a64290f3", + "revision": "96ce77a2f0df437eb44970b5", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55643,9 +63497,18 @@ "total_amount": 321036, "id": "1696611534552", "history_id": "1696611534552", - "date_created": "2023-10-06T16:58:54.552Z", - "date_last_updated": "2023-10-06T16:58:54.552Z", - "date_of_expiration": "2023-10-06T16:58:54.552Z", + "date_created": { + "type": 6, + "value": 1696611534552 + }, + "date_last_updated": { + "type": 6, + "value": 1696611534552 + }, + "date_of_expiration": { + "type": 6, + "value": 1696611534552 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -55654,10 +63517,10 @@ "description": "Compra de 321.036,00 IVIP por 250,00 BRL", "status_detail": "accredited" }, - "revision": "c8850f5a6362430c97a6f40b", + "revision": "757b77b3c34140588a06f7ee", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55665,10 +63528,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "98bc66e92688471d8bc26a06", + "revision": "774afc423a254b6684cc2a04", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55676,10 +63539,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3d882a46ada74edcaa80e9e0", + "revision": "5f9ec4ecb05f4578a1d25c48", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55690,10 +63553,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "ed4fd6cf96cf4b58bc90aa2d", + "revision": "6e509ceb255f461d831fb739", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55704,12 +63567,15 @@ "dataModificacao": 1696067091160, "dateValidity": 1696067091189, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } }, - "revision": "3dd25e7c1b444186a9d8439e", + "revision": "fc521ed77cf243d7a3c8163d", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55717,10 +63583,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "70650660a4f84c74a258f562", + "revision": "1ecf538e9bfe4e04a5ad56a8", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55729,12 +63595,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-26T17:17:31.115Z" + ".val": { + "type": 6, + "value": 1698340651115 + } }, - "revision": "f5e49415a6c74da0b569c74d", + "revision": "8be7be49ae3b42feab1db9f0", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55750,12 +63619,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "705483e5a3f64ab28edec23a", + "revision": "1e73f80d9c6847f99a41eaab", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55763,10 +63632,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748651115", - "revision": "785c73099afa42d9ad8acbb2", + "revision": "376ed78929344ecabbf6de65", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55782,8 +63651,14 @@ "total_amount": 1000, "id": "1695748651115", "history_id": "1695748651115", - "date_created": "2023-09-26T17:17:31.115Z", - "date_last_updated": "2023-09-26T17:17:31.115Z", + "date_created": { + "type": 6, + "value": 1695748651115 + }, + "date_last_updated": { + "type": 6, + "value": 1695748651115 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -55791,10 +63666,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "3ac4d4381958474aa31a68ff", + "revision": "a21fcc9f264c42f5afb34a68", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55802,10 +63677,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", - "revision": "781b480978c144eb92c3c092", + "revision": "fa392341058b40358fa764ce", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55814,12 +63689,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-26T17:19:03.839Z" + ".val": { + "type": 6, + "value": 1698340743839 + } }, - "revision": "5a1e2c8c116640f18046ffd3", + "revision": "7143396977524c26b05164d2", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55835,12 +63713,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "458b096879634cfab1a147e3", + "revision": "e00e485dc2054e1abe51add2", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55848,10 +63726,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748743840", - "revision": "aa51f59373154644a7571989", + "revision": "78f8c791a3964b518a6fc9cc", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55867,8 +63745,14 @@ "total_amount": 1000, "id": "1695748743840", "history_id": "1695748743840", - "date_created": "2023-09-26T17:19:03.840Z", - "date_last_updated": "2023-09-26T17:19:03.840Z", + "date_created": { + "type": 6, + "value": 1695748743840 + }, + "date_last_updated": { + "type": 6, + "value": 1695748743840 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -55876,10 +63760,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "51fe1c2ca7a64864b3c1e37f", + "revision": "a8fa909042574cc7aaf5a237", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55887,10 +63771,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", - "revision": "4c0098d213894c309dbef80d", + "revision": "67bd2b98d36745c29bc23193", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55899,12 +63783,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-26T17:20:45.971Z" + ".val": { + "type": 6, + "value": 1698340845971 + } }, - "revision": "a329cf377f9e4915bc9955c2", + "revision": "7f6de35d45394ee0a528e172", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55920,12 +63807,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "6fc02a512b3347468a6e2219", + "revision": "3d18bd94487c43ba9a895053", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55933,10 +63820,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748845971", - "revision": "4221169d985543f0967eacdf", + "revision": "a3bed33a6d5640198dc63797", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55952,8 +63839,14 @@ "total_amount": 1000, "id": "1695748845971", "history_id": "1695748845971", - "date_created": "2023-09-26T17:20:45.971Z", - "date_last_updated": "2023-09-26T17:20:45.971Z", + "date_created": { + "type": 6, + "value": 1695748845971 + }, + "date_last_updated": { + "type": 6, + "value": 1695748845971 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -55961,10 +63854,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "255a920676e746df89d673e8", + "revision": "73f8455035b54661a6cd854d", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55972,10 +63865,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", - "revision": "cd507ee669a84a18bcf8e935", + "revision": "f273e44a8e7d4afd8031588e", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55983,10 +63876,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a38499ca93c540e9903c5f1d", + "revision": "e215bd05cfbf4b7e9fe4f169", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -55994,10 +63887,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a99cdcd0ae3a4f868ef94905", + "revision": "44fa2ac4dc904419b984b2a3", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56008,10 +63901,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "1722d924f6fd4117a6bf6a48", + "revision": "2ebdd7efe8c9457394842fea", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56022,12 +63915,15 @@ "dataModificacao": 1695748509301, "dateValidity": 1695748509557, "currencyType": "USD", - "balancesModificacao": "2023-09-28T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1695870000000 + } }, - "revision": "82bc669ed792487c8a8816a8", + "revision": "40c136c09db44e5b98b35058", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56035,10 +63931,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "eb253bef1e70405c9e34b7c4", + "revision": "a419a28a2c7c4208afccce9e", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56046,12 +63942,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "f63af2d936814649b2bcba94", + "revision": "cbd1a6a2351a4b90a406c776", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56066,22 +63962,37 @@ "total_amount": 200, "history_id": 1678035077732, "id": 1678035077732, - "date_created": "2023-03-05T16:51:17.732Z", - "date_last_updated": "2023-03-06T18:57:08.692Z", - "date_of_expiration": "2023-04-04T16:51:17.732Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-06T18:57:08.692Z", - "money_release_date": "2023-03-06T18:57:08.692Z", + "date_created": { + "type": 6, + "value": 1678035077732 + }, + "date_last_updated": { + "type": 6, + "value": 1678129028692 + }, + "date_of_expiration": { + "type": 6, + "value": 1680627077732 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678129028692 + }, + "money_release_date": { + "type": 6, + "value": 1678129028692 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "352874c35b264e45bd83207a", + "revision": "7f90a7f68d6c4bb7b5a92967", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56089,10 +64000,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "133b8cf0fefb42ceb7c86d1e", + "revision": "b6d18c4024d74db98744a8db", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56110,12 +64021,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "6115c7e3e9dd449d8a1b1358", + "revision": "3dc1886e1cba4b5aa23feb88", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56131,9 +64042,18 @@ "original_amount": 1426241, "total_amount": 1426241, "id": 1678163430853, - "date_created": "2023-03-07T04:30:30.853Z", - "date_last_updated": "2023-03-07T04:30:30.853Z", - "date_of_expiration": "2023-03-07T04:30:30.853Z", + "date_created": { + "type": 6, + "value": 1678163430853 + }, + "date_last_updated": { + "type": 6, + "value": 1678163430853 + }, + "date_of_expiration": { + "type": 6, + "value": 1678163430853 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -56142,10 +64062,10 @@ "history_id": 1678163430853, "description": "Compra de 1426241 IVIP por 200 BRL" }, - "revision": "d9f9dd0df7ed4274813e91b1", + "revision": "64850881b9944f72a913ae4b", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56153,12 +64073,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "b5fd14df53364b8ba3834874", + "revision": "9203e2dac9b946f1af3b0810", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56173,22 +64093,37 @@ "total_amount": 200, "history_id": 1681136191198, "id": 1681136191198, - "date_created": "2023-04-10T14:16:31.198Z", - "date_last_updated": "2023-04-10T14:36:21.704Z", - "date_of_expiration": "2023-05-10T14:16:31.198Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-04-10T14:36:21.704Z", - "money_release_date": "2023-04-10T14:36:21.704Z", + "date_created": { + "type": 6, + "value": 1681136191198 + }, + "date_last_updated": { + "type": 6, + "value": 1681137381704 + }, + "date_of_expiration": { + "type": 6, + "value": 1683728191198 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1681137381704 + }, + "money_release_date": { + "type": 6, + "value": 1681137381704 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "566630a8428b40b7b114168f", + "revision": "ce7e189cf20640d28085c62d", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56196,10 +64131,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "61f45396dd3946759609f224", + "revision": "5ab42c65d99f4b9f8fd4caea", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56217,12 +64152,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "46ea8c5038ea4e2a94951efa", + "revision": "e7ee9acaf51f43fbb59f7be6", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56238,9 +64173,18 @@ "original_amount": 976097, "total_amount": 976097, "id": 1684632748749, - "date_created": "2023-05-21T01:32:28.749Z", - "date_last_updated": "2023-05-21T01:32:28.749Z", - "date_of_expiration": "2023-05-21T01:32:28.749Z", + "date_created": { + "type": 6, + "value": 1684632748749 + }, + "date_last_updated": { + "type": 6, + "value": 1684632748749 + }, + "date_of_expiration": { + "type": 6, + "value": 1684632748749 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -56249,10 +64193,10 @@ "history_id": 1684632748749, "description": "Compra de 976.097,00 IVIP por 200,00 BRL" }, - "revision": "a1618dececf54b249c1e122b", + "revision": "ebf8abe3f98a4ecdaa85e0a1", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56260,12 +64204,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "f2cc966f0234422e85466ede", + "revision": "ff670aa4ad13414285d86e36", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56280,18 +64224,27 @@ "total_amount": 1200, "history_id": 1685109385732, "id": 1685109385732, - "date_created": "2023-05-26T13:56:25.732Z", - "date_last_updated": "2023-05-26T13:56:25.732Z", - "date_of_expiration": "2023-06-25T13:56:25.732Z", + "date_created": { + "type": 6, + "value": 1685109385732 + }, + "date_last_updated": { + "type": 6, + "value": 1685109385732 + }, + "date_of_expiration": { + "type": 6, + "value": 1687701385732 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "a7fd51f84e4e4be3a7de7ab1", + "revision": "23c16d0556fa4c2caab25ff8", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56299,10 +64252,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "2d802a26da6542d5bd4db411", + "revision": "58d4847f5dce4b96bec2afef", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56310,12 +64263,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "f3784c504a2243a29c25edf8", + "revision": "ba9cbdc77f96492cb80b36d7", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56330,18 +64283,27 @@ "total_amount": 1200, "history_id": 1685109442881, "id": 1685109442881, - "date_created": "2023-05-26T13:57:22.881Z", - "date_last_updated": "2023-05-26T13:57:22.881Z", - "date_of_expiration": "2023-06-25T13:57:22.881Z", + "date_created": { + "type": 6, + "value": 1685109442881 + }, + "date_last_updated": { + "type": 6, + "value": 1685109442881 + }, + "date_of_expiration": { + "type": 6, + "value": 1687701442881 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "18266001dc70488a9f0dfe10", + "revision": "5cb61033b68c401784e03ce5", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56349,10 +64311,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "ead361ab7ed74317add041f1", + "revision": "7259edb185264c349efd7c24", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56360,12 +64322,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "8a0209c366654e1585490a40", + "revision": "e1bd7ae62fcf441c82b79ae3", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56380,22 +64342,37 @@ "total_amount": 1200, "history_id": 1685213653014, "id": 1685213653014, - "date_created": "2023-05-27T18:54:13.014Z", - "date_last_updated": "2023-05-29T12:44:18.194Z", - "date_of_expiration": "2023-06-26T18:54:13.014Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-29T12:44:18.194Z", - "money_release_date": "2023-05-29T12:44:18.194Z", + "date_created": { + "type": 6, + "value": 1685213653014 + }, + "date_last_updated": { + "type": 6, + "value": 1685364258194 + }, + "date_of_expiration": { + "type": 6, + "value": 1687805653014 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685364258194 + }, + "money_release_date": { + "type": 6, + "value": 1685364258194 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "1063966e24fc48f592f011bd", + "revision": "0ea4815dc0e041bc9beff876", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56403,10 +64380,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "1b0809e3fd6b4a66bb7dcebc", + "revision": "028ee9665daf4793b33564bb", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56424,12 +64401,12 @@ "installment_amount": 2402000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "44e38ac713564db2917904ab", + "revision": "907c0404f3cc4e19bd62beae", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56444,9 +64421,18 @@ "original_amount": 2402000, "total_amount": 2402000, "id": 1685666059762, - "date_created": "2023-06-02T00:34:19.762Z", - "date_last_updated": "2023-06-02T00:34:19.762Z", - "date_of_expiration": "2024-06-02T00:34:19.762Z", + "date_created": { + "type": 6, + "value": 1685666059762 + }, + "date_last_updated": { + "type": 6, + "value": 1685666059762 + }, + "date_of_expiration": { + "type": 6, + "value": 1717288459762 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -56454,10 +64440,10 @@ "currency_id": "IVIP", "history_id": 1685666059762 }, - "revision": "df68cf84cf084de2943b1db4", + "revision": "f01d7ecc651d4b2e9a72a222", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56465,10 +64451,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.402.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "233bc13942234705bd98d4f1", + "revision": "4d86dc8d54124f8a935b0cda", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56486,12 +64472,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "ed74ce62f41543768dbc583a", + "revision": "4f065fedadf34ae1a7639f91", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56507,9 +64493,18 @@ "original_amount": 4214736, "total_amount": 4214736, "id": 1685744731387, - "date_created": "2023-06-02T22:25:31.387Z", - "date_last_updated": "2023-06-02T22:25:31.387Z", - "date_of_expiration": "2023-06-02T22:25:31.387Z", + "date_created": { + "type": 6, + "value": 1685744731387 + }, + "date_last_updated": { + "type": 6, + "value": 1685744731387 + }, + "date_of_expiration": { + "type": 6, + "value": 1685744731387 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -56518,10 +64513,10 @@ "history_id": 1685744731387, "description": "Compra de 4.214.736,00 IVIP por 1.200,00 BRL" }, - "revision": "d1a89d3f689948389c320109", + "revision": "0572714235da477180fc7d84", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820547, + "modified": 1701465820547 } }, { @@ -56539,12 +64534,12 @@ "installment_amount": 4000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "4809e73dfc344665a605ac08", + "revision": "0e4057e4f0c94a53b3f2021f", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56559,9 +64554,18 @@ "original_amount": 4000000, "total_amount": 4000000, "id": 1688521364022, - "date_created": "2023-07-05T01:42:44.022Z", - "date_last_updated": "2023-07-05T01:42:44.022Z", - "date_of_expiration": "2023-08-05T01:42:44.022Z", + "date_created": { + "type": 6, + "value": 1688521364022 + }, + "date_last_updated": { + "type": 6, + "value": 1688521364022 + }, + "date_of_expiration": { + "type": 6, + "value": 1691199764022 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -56569,10 +64573,10 @@ "currency_id": "IVIP", "history_id": 1688521364022 }, - "revision": "56400934aa104b84a941659e", + "revision": "081ddebdcb2342b1b79e5aae", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56580,10 +64584,10 @@ "content": { "type": "STRING", "value": "Investimento de 4.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/4/2023", - "revision": "db6907cdb99f4b3ea904c12d", + "revision": "e8520bf0b9294468a05b0e42", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56599,12 +64603,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "86264936243a4553818d35ce", + "revision": "0a586bf810da4f0990290f51", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56612,10 +64616,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691199857902", - "revision": "9b6ac720729742faa666a039", + "revision": "8b55b53dd7bd49a09e1ae7be", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56630,9 +64634,18 @@ "total_amount": 4080000, "id": 1691199857902, "history_id": 1691199857902, - "date_created": "2023-08-05T01:44:17.902Z", - "date_last_updated": "2023-08-05T01:44:17.902Z", - "date_of_expiration": "2023-08-05T01:44:17.902Z", + "date_created": { + "type": 6, + "value": 1691199857902 + }, + "date_last_updated": { + "type": 6, + "value": 1691199857902 + }, + "date_of_expiration": { + "type": 6, + "value": 1691199857902 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -56640,10 +64653,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "44dd0b9642ed4d459c2021c7", + "revision": "67dc72a1ab98447dbab3e4e3", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56651,10 +64664,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 4.000.000,00 IVIP com um rendimento de +80.000,00 IVIP (2,00%)", - "revision": "cc0051c42bd6472c8e5296dd", + "revision": "5611813cbf864616a9250131", "revision_nr": 1, - "created": 1701463509574, - "modified": 1701463509574 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56666,10 +64679,10 @@ "label": "Taxa de 3,00%", "amount": 124986.6534 }, - "revision": "6c1702278d7c4e35bd78d1eb", + "revision": "76e7fe6564cc4ba3b5225b8b", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56686,10 +64699,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "6af2fd7c22974a388742fdf4", + "revision": "c731e3508d1e4e7aa197a64c", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56697,10 +64710,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691271945589", - "revision": "3abc1d911c1044b492892552", + "revision": "7c06048cdb12425498ede64e", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56708,10 +64721,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b467b355518e420498d10796", + "revision": "6477349a5675491fb88f94c5", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56726,23 +64739,35 @@ "total_amount": 4166221.78, "id": 1691271945589, "history_id": 1691271945589, - "date_created": "2023-08-05T21:45:45.589Z", - "date_last_updated": "2023-08-16T14:27:56.970Z", - "date_of_expiration": "2023-08-05T21:45:45.589Z", + "date_created": { + "type": 6, + "value": 1691271945589 + }, + "date_last_updated": { + "type": 6, + "value": 1692196076970 + }, + "date_of_expiration": { + "type": 6, + "value": 1691271945589 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "rejected", - "money_release_date": "2023-08-16T14:27:56.970Z", + "money_release_date": { + "type": 6, + "value": 1692196076970 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "b03d264e0e00499fad689485", + "revision": "88a8745387db42fcbafcf431", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56750,10 +64775,10 @@ "content": { "type": "STRING", "value": "Saque de 4.166.221,78 IVIP para a carteira 0x13d16B24c3293ABAD823e83A490982c0906508A8", - "revision": "cab06521cfe5460f831bcd43", + "revision": "72effef3f34347788d654319", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56765,10 +64790,10 @@ "label": "Taxa de 3,00%", "amount": 124986.6534 }, - "revision": "830e8756edfe42718c5ded98", + "revision": "ccc040edde3749339211c8ff", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56785,10 +64810,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "68ae246957e44ce0878ea0ef", + "revision": "2220f4009eeb4ef6a7c79ba0", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56796,10 +64821,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691437746780", - "revision": "fbb37134b9134b199c3ba811", + "revision": "543bc9ecdaad43679e9f28a9", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56807,10 +64832,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "a2f66cacefc8485fa4c85bf5", + "revision": "b5f3ef5cbfc140a681c86e69", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56825,24 +64850,39 @@ "total_amount": 4166221.78, "id": 1691437746780, "history_id": 1691437746780, - "date_created": "2023-08-07T19:49:06.780Z", - "date_last_updated": "2023-08-08T15:39:46.843Z", - "date_of_expiration": "2023-08-07T19:49:06.780Z", + "date_created": { + "type": 6, + "value": 1691437746780 + }, + "date_last_updated": { + "type": 6, + "value": 1691509186843 + }, + "date_of_expiration": { + "type": 6, + "value": 1691437746780 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": "2023-08-08T15:39:46.843Z", - "money_release_date": "2023-08-08T15:39:46.843Z", + "date_approved": { + "type": 6, + "value": 1691509186843 + }, + "money_release_date": { + "type": 6, + "value": 1691509186843 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "9eb54a472a7e4113bc1d4337", + "revision": "01f4f173a83e477db7b55154", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56850,10 +64890,10 @@ "content": { "type": "STRING", "value": "Saque de 4.166.221,78 IVIP para a carteira 0x13d16B24c3293ABAD823e83A490982c0906508A8", - "revision": "25c59aaef49b47958a9547d2", + "revision": "36a95da262794148b6b038db", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56861,10 +64901,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2e212ee5336b4258bc860b79", + "revision": "57211aca90f84308abd81c86", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56872,10 +64912,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a9a555a06f9d4477a8e63821", + "revision": "6695f729e60947d5b0dc66d7", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56885,13 +64925,19 @@ "value": { "approvedLimit": 1000, "limitUsed": 0, - "analysisRequested": "2023-03-18T19:22:30.161Z", - "lastReview": "2023-03-19T21:25:40.619Z" + "analysisRequested": { + "type": 6, + "value": 1679167350161 + }, + "lastReview": { + "type": 6, + "value": 1679261140619 + } }, - "revision": "bec79f12f2ce4860bb6be364", + "revision": "2baf67e4939d46abba66055f", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56903,12 +64949,15 @@ "dateValidity": 1679040303242, "totalValue": 14.089318085490447, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } }, - "revision": "be8eb775d72e422b92a8e186", + "revision": "c2f8bad475874d6fb89d3316", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56916,10 +64965,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2c94e3b4e47946feb5e692ad", + "revision": "ef3a0412c18546afa27a9fbc", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56927,12 +64976,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "5f1bb8406a9d4318ab6f5386", + "revision": "0199e053ae704f389fc8c958", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56947,20 +64996,32 @@ "total_amount": 300, "history_id": 1677939492133, "id": 1677939492133, - "date_created": "2023-03-04T14:18:12.133Z", - "date_last_updated": "2023-03-13T13:30:40.045Z", - "date_of_expiration": "2023-04-03T14:18:12.133Z", + "date_created": { + "type": 6, + "value": 1677939492133 + }, + "date_last_updated": { + "type": 6, + "value": 1678714240045 + }, + "date_of_expiration": { + "type": 6, + "value": 1680531492133 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-03-13T13:30:40.045Z", + "money_release_date": { + "type": 6, + "value": 1678714240045 + }, "money_release_status": "rejected" }, - "revision": "e018e0460b69412999e5e720", + "revision": "1d7f4d7e9a0a40188824bda4", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56968,10 +65029,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0858.6972.0472.7301-10", - "revision": "94269999a8ab48269927ff44", + "revision": "12f3da3db5fd4feb863f6b8e", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56979,10 +65040,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "254a70151af442d9ac60b659", + "revision": "ad9e2b529abe4518a3c49535", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -56990,10 +65051,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "011c7c35968a4e448bc04600", + "revision": "4107b23916fc4f3792f5fe39", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57004,10 +65065,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "2da8fc50fb4e49868f6c894b", + "revision": "ed3582298816444e8342a116", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57020,10 +65081,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "b4218656d59e40b4a5d0423c", + "revision": "9ba1968ca8624dce87084991", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57035,10 +65096,10 @@ "symbol": "IVIP", "value": 901.85 }, - "revision": "306e4df725a940f4841cc5fd", + "revision": "bfac56ba729e4083ac3a200a", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57046,10 +65107,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9e343c9dfe5b4655ae05ec33", + "revision": "bf94ab8d268240c48a3abdd9", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57057,12 +65118,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "9b2689966872450e9fbd188b", + "revision": "1cc5e41ba78b4a10a7a04742", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57077,22 +65138,37 @@ "total_amount": 140, "history_id": 1678097305816, "id": 1678097305816, - "date_created": "2023-03-06T10:08:25.816Z", - "date_last_updated": "2023-03-07T18:47:04.970Z", - "date_of_expiration": "2023-04-05T10:08:25.816Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-07T18:47:04.970Z", - "money_release_date": "2023-03-07T18:47:04.970Z", + "date_created": { + "type": 6, + "value": 1678097305816 + }, + "date_last_updated": { + "type": 6, + "value": 1678214824970 + }, + "date_of_expiration": { + "type": 6, + "value": 1680689305816 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678214824970 + }, + "money_release_date": { + "type": 6, + "value": 1678214824970 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "aed5b7ff2d3848a3b321d83a", + "revision": "99bb415db715429ca774263f", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57100,10 +65176,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 140,00 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "0d52b12895c34e888556d597", + "revision": "087dfb35a70a42e2a4ad3cf5", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57115,10 +65191,10 @@ "label": "Taxa de 1.00%", "amount": 1.1111 }, - "revision": "2b7c69d2cbeb42d6bf1ce3d0", + "revision": "53689ac7f4f64bcda7cbcebe", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57126,10 +65202,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f567b93b35d044bda9c0bb8c", + "revision": "2a629e1449a94331853c3eba", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57139,10 +65215,10 @@ "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "89ca05e859b24a5d9e43edcc", + "revision": "c053a1cea5234a3883f927eb", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57150,10 +65226,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ac91e6852d424d14961695ac", + "revision": "4b9e7d413b9542b18fa949e6", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57167,10 +65243,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "f816ae15838a45f6aa5046fa", + "revision": "96380c0cf30449a6bfc3e22f", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57178,10 +65254,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406112.225802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13123227786304C4AC", - "revision": "0c1b3827d69344339b9c846e", + "revision": "01d7ef05342c42be90f90ce7", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57189,10 +65265,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1312322778/ticket?caller_id=1310149122&hash=6c5d5276-a6c2-41fd-b3ac-10aff2badfc5", - "revision": "03ec7810f99d4821b65038f1", + "revision": "8f5c0b9153564e38b81dade3", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57200,10 +65276,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI3klEQVR42u3dSY7kNhAFUN5A97+lbiDDC7uUjB9UeoDhpl4uGo1SpfRUu48YOK5f6HMOWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWtp/Xzvmz/H7z44/Lxx//t4fF37//u3Cz13u/zvH+Hzi+Lnp/QYfFyYGLS0tLS0tLS0tLS3tS7TTY39u8vPYyitvWt/qfuHjLtOF+98hqWhpaWlpaWlpaWlpaV+gnQJk+lb6vSkT3n+WvvvjXt2vMGhpaWlpaWlpaWlpaV+qLVW2q8TL6fNUzvsoAN6NtLS0tLS0tLS0tLS0tDEdtjeeyn4juKfy4BVS5Ph8A1paWlpaWlpaWlpa2jdrEz5dnebYSuluQk0vdDw1a/69HlFaWlpaWlpaWlpaWtpfXdtuKflv//mnO1VoaWlpaWlpaWlpaWl/UW3+nJ+NlOciBLYpsp2ku++WnLZMZgstLS0tLS0tLS0tLe3e2masLe19/NHmBPrhKd2ZR6kRtkcF9CmSlpaWlpaWlpaWlpZ2N23aL5J3PI774pH70Fs7IZcOZGuH447+pDZaWlpaWlpaWlpaWtqdtSUYtudc192SaSQuhcXFnyAd4XasMi8tLS0tLS0tLS0tLe1u2lRRW5/Alrsz6xHXU51vKh6WrsvmpG1aWlpaWlpaWlpaWtrdtan1Mh1sPcXLactkul8edUtdnEdgHLS0tLS0tLS0tLS0tC/Rlum1a5EESylw5O3/7eHZ+RtniJcXLS0tLS0tLS0tLS3tS7Tf37NNmx/PycNxzYlupcfzy8xLS0tLS0tLS0tLS0u7lfb8zITNZsdyzzQcd4UdJnXDSeq1TKVFWlpaWlpaWlpaWlra92jTRNsi9dWXfGrMXD2jPG3Q0tLS0tLS0tLS0tK+S1vJpc1yMqYuyXPEVs5UMiy/cnUL/WlpaWlpaWlpaWlpad+izUmwdk6mzSVTiW+6cDemibsRDml7SpG0tLS0tLS0tLS0tLQ7a8tA2rm83ZlfqM2JJU+eo57IfdLS0tLS0tLS0tLS0r5Qe5TRtMldHnGW9yu3GmGwbnrklc/XpqWlpaWlpaWlpaWlfY82VdRKDa4uLZm6JMtLTiv76zhdyZjtcdu0tLS0tLS0tLS0tLS7a2t8W6fIdhlJ6cSsqbT8lY6/tqWElpaWlpaWlpaWlpZ2U225XUqCU6/lFU5MS+RrET5TT+ZziqSlpaWlpaWlpaWlpd1KW9xH0T61XqZz19Jp2VPX5ciFvUKmpaWlpaWlpaWlpaV9gbZU1JrP9Ox7JqzNle2R2dOB2qkJk5aWlpaWlpaWlpaW9p3aUaLfVABMwbDEwdWtUtvmoqpIS0tLS0tLS0tLS0v7Cu1ZUl9ZDXk8B8gRDsWe/pkuXOGRU58mLS0tLS0tLS0tLS3tC7R5mG2UXDddaL9WTsuuS/4nT3sDWlpaWlpaWlpaWlral2gnwNWdX308LZi8l/iaNss8bFcn6brqHi0tLS0tLS0tLS0t7X7afGD1tFpk5S7GdkvJFENXufOhFklLS0tLS0tLS0tLS7uV9lo8ewp37TRcToLtS448/lZ6N2lpaWlpaWlpaWlpaV+hTZ2TI5+C/fR7I38jle7Wh7R9k3lpaWlpaWlpaWlpaWl304b4Npf42mQ5fSPdKrdUXqU788uuS1paWlpaWlpaWlpa2l205XDqtFXkzLI8IVej6XT7p2j6vFOFlpaWlpaWlpaWlpZ2I23+pNR3fpbfRoiXzZL/e4nvCGGxHgFAS0tLS0tLS0tLS0v7Jm07kLZaXzJlwp/vtjso0ztP71cCJC0tLS0tLS0tLS0t7Qu0pX2y7hfJWa+p1eXCXoqNV64qhk5MWlpaWlpaWlpaWlra7bX35xxdia8ekZbOU0uvVjosj8VW/2V1j5aWlpaWlpaWlpaWdj9tkpUy3Xhyp57MUiOs03UlVH7ZI0pLS0tLS0tLS0tLS7uV9gyyI6TIa7mHJDVXtk2YKZ+OsvWElpaWlpaWlpaWlpb2Fdq0c2QKd4uz067uiOtzMVO3LiNOG05oaWlpaWlpaWlpaWl31yZ3+7BFc2WTLMPOkVhGvL/9V1v9aWlpaWlpaWlpaWlp99Gmk9VWvZZp1WS6UEbdVmN3U3mQlpaWlpaWlpaWlpb2PdoS6abbnTlAdgv4x7RzJN0vl/PSiB0tLS0tLS0tLS0tLe2rtO0c2zTMVtoir26Z5HqwrjmLLfyMlpaWlpaWlpaWlpZ2Z+0EKMZRCnvJXebdkqfWDct0Xa0g0tLS0tLS0tLS0tLS7q+tnY5tYa9Mr9XwuTgtu34tHQHw0CNKS0tLS0tLS0tLS0u7m7b0Rq4G3HJz5fis+J0lWebGzNFt9T9oaWlpaWlpaWlpaWnfpA2hbZRaXbPfvxQFz26wbpRmzdyEmT60tLS0tLS0tLS0tLSv0I5P4yjDbKUjsj4nJdAUL8tz616ThxRJS0tLS0tLS0tLS0u7kTYnxlqDm8bVcqhMpcD6oHRIW15QQktLS0tLS0tLS0tL+x5tsy0krYsspbta8Xuamqu7Tr7uEaWlpaWlpaWlpaWlpd1Nmz7rPSTpTLQSIM8yCJen686n8ElLS0tLS0tLS0tLS7u7to1+04RcIrdNk3kZSUqRTYvmc+alpaWlpaWlpaWlpaXdR9tkvSnclaJbzZ2p9pe6MxP+6xRJS0tLS0tLS0tLS0u7pbbEwVG6Lstc3BVWi9T2yYJqTgRYRlhaWlpaWlpaWlpaWtqXakdosxx5+0g+2PocTVxNu06+r+7R0tLS0tLS0tLS0tK+RXt0Z2TXUbdp6WR7BEC5ywhnAxy0tLS0tLS0tLS0tLSv0y7wIz92emI7EpcC5Ho47jlF0tLS0tLS0tLS0tLSbqZNlbwp4U2yUfLkInw2o3P5DeqGSlpaWlpaWlpaWlpa2t21//8PLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLe2/pv0Nc/R6xtt85A0AAAAASUVORK5CYII=", - "revision": "0dc8078956a546e882627a6f", + "revision": "4411ff80433c49e18cb2b1c7", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57211,10 +65287,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "79673fbcf5654452a582783e", + "revision": "39de4a09007f4df1835f6aa4", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57229,19 +65305,28 @@ "total_amount": 112.22, "history_id": 1679947244258, "id": 1312322778, - "date_created": "2023-03-27T16:00:45.050-04:00", - "date_last_updated": "2023-03-27T16:00:45.050-04:00", - "date_of_expiration": "2023-03-28T16:00:44.758-04:00", + "date_created": { + "type": 6, + "value": 1679947245050 + }, + "date_last_updated": { + "type": 6, + "value": 1679947245050 + }, + "date_of_expiration": { + "type": 6, + "value": 1680033644758 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "e80d4451cf7a4266a9267adc", + "revision": "25f58c47e5934c13b5328198", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57249,10 +65334,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 111,11 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "92764de447a24931afbcde9b", + "revision": "0bd71c01abf242f88c62daf5", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57270,12 +65355,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "dc3148e006e34baa83d3f587", + "revision": "e4f335b4e4bb4e3a8776ff47", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57291,9 +65376,18 @@ "original_amount": 500004, "total_amount": 500004, "id": 1680260155565, - "date_created": "2023-03-31T10:55:55.565Z", - "date_last_updated": "2023-03-31T10:55:55.565Z", - "date_of_expiration": "2023-03-31T10:55:55.565Z", + "date_created": { + "type": 6, + "value": 1680260155565 + }, + "date_last_updated": { + "type": 6, + "value": 1680260155565 + }, + "date_of_expiration": { + "type": 6, + "value": 1680260155565 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -57302,10 +65396,10 @@ "history_id": 1680260155565, "description": "Compra de 500.004,00 IVIP por 91,56 BRL" }, - "revision": "463f447a8e8d4c06ad116f38", + "revision": "2fd6d0a324494507b36ce393", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57323,12 +65417,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "7a9d02b0a7184e659dbdc1c3", + "revision": "d645b647514f441da988b75a", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57344,9 +65438,18 @@ "original_amount": 267396, "total_amount": 267396, "id": 1680391431083, - "date_created": "2023-04-01T23:23:51.083Z", - "date_last_updated": "2023-04-01T23:23:51.083Z", - "date_of_expiration": "2023-04-01T23:23:51.083Z", + "date_created": { + "type": 6, + "value": 1680391431083 + }, + "date_last_updated": { + "type": 6, + "value": 1680391431083 + }, + "date_of_expiration": { + "type": 6, + "value": 1680391431083 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -57355,10 +65458,10 @@ "history_id": 1680391431083, "description": "Compra de 267.396,00 IVIP por 48,44 BRL" }, - "revision": "651cefc019cb43e2b1709083", + "revision": "82975c87c317422192df84bf", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57366,12 +65469,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "c0970988979243d98afd9b29", + "revision": "e2e5e0f287fa48eea70a4acb", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57386,22 +65489,37 @@ "total_amount": 99.99, "history_id": 1683913607250, "id": 1683913607250, - "date_created": "2023-05-12T17:46:47.250Z", - "date_last_updated": "2023-05-12T19:04:35.703Z", - "date_of_expiration": "2023-06-11T17:46:47.250Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-12T19:04:35.703Z", - "money_release_date": "2023-05-12T19:04:35.703Z", + "date_created": { + "type": 6, + "value": 1683913607250 + }, + "date_last_updated": { + "type": 6, + "value": 1683918275703 + }, + "date_of_expiration": { + "type": 6, + "value": 1686505607250 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683918275703 + }, + "money_release_date": { + "type": 6, + "value": 1683918275703 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "422636aaaed5405d90628501", + "revision": "b48e019c8f894b7190731f28", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57409,10 +65527,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 99,99 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "4ef8ea384f304c7e930292d5", + "revision": "cf48c0c2f1eb43ab9892c5bf", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57430,12 +65548,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "97a1f10648e14bbdb2eea019", + "revision": "3a4a60445f134d6984709cb8", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57451,9 +65569,18 @@ "original_amount": 487512, "total_amount": 487512, "id": 1684628885106, - "date_created": "2023-05-21T00:28:05.106Z", - "date_last_updated": "2023-05-21T00:28:05.106Z", - "date_of_expiration": "2023-05-21T00:28:05.106Z", + "date_created": { + "type": 6, + "value": 1684628885106 + }, + "date_last_updated": { + "type": 6, + "value": 1684628885106 + }, + "date_of_expiration": { + "type": 6, + "value": 1684628885106 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -57462,10 +65589,10 @@ "history_id": 1684628885106, "description": "Compra de 487.512,00 IVIP por 99,99 BRL" }, - "revision": "cafd9b1ba32d4b6f80789f3f", + "revision": "6ce338ed4aec4fa698a44444", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57474,12 +65601,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-30T16:52:17.210Z" + ".val": { + "type": 6, + "value": 1693414337210 + } }, - "revision": "3fd4d1bce28f4047bc8f011b", + "revision": "757ff866e684452a87d7f686", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57495,12 +65625,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "574382a448b941889a284b8f", + "revision": "a5faad4a82944888bce447c6", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57508,10 +65638,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1690822337211", - "revision": "a0cef874863f485db2c12245", + "revision": "5aeb31be8fb04b5a94a121c1", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57526,8 +65656,14 @@ "total_amount": 20, "id": 1690822337211, "history_id": 1690822337211, - "date_created": "2023-07-31T16:52:17.211Z", - "date_last_updated": "2023-07-31T16:52:17.211Z", + "date_created": { + "type": 6, + "value": 1690822337211 + }, + "date_last_updated": { + "type": 6, + "value": 1690822337211 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -57535,10 +65671,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "8c26fc9c639e41fdb203faa5", + "revision": "d4781bfd14414b8a87a05662", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57546,10 +65682,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "36f0fef4869d428bb4d8ecd9", + "revision": "53a33e1ca8164a79a316cca7", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57558,12 +65694,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-30T16:53:59.890Z" + ".val": { + "type": 6, + "value": 1693414439890 + } }, - "revision": "b5c5339bb37d47609280d877", + "revision": "29e95e5f1f314d52a3414d95", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57579,12 +65718,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "8daeb26bb0ca42458ca820d4", + "revision": "3eff61852fc54031a6000bc2", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57592,10 +65731,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1690822439890", - "revision": "5a67b97fecd94f51a3dafa69", + "revision": "d37e821c635c4b139001df7b", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57610,23 +65749,35 @@ "total_amount": 100, "id": 1690822439890, "history_id": 1690822439890, - "date_created": "2023-07-31T16:53:59.890Z", - "date_last_updated": "2023-07-31T21:00:12.866Z", + "date_created": { + "type": 6, + "value": 1690822439890 + }, + "date_last_updated": { + "type": 6, + "value": 1690837212866 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-07-31T21:00:12.866Z", - "money_release_date": "2023-07-31T21:00:12.866Z", + "date_approved": { + "type": 6, + "value": 1690837212866 + }, + "money_release_date": { + "type": 6, + "value": 1690837212866 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "1d622761d01e4e179b4c064e", + "revision": "d95c4f4ed7664ca0822ee94c", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57634,10 +65785,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100,00 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "44d7d05a4ffe4dc5ae4fa1c4", + "revision": "95f177de9b3e4805b3c42f30", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57653,12 +65804,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "3398da1fd74f4aad98cea812", + "revision": "592584c64b3e47a7b132202a", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57666,10 +65817,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1695782499707", - "revision": "24f0feddb3624b48b440fd75", + "revision": "08d9f613b9bc43c38536bba5", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57685,9 +65836,18 @@ "total_amount": 115999, "id": "1695782499707", "history_id": "1695782499707", - "date_created": "2023-09-27T02:41:39.707Z", - "date_last_updated": "2023-09-27T02:41:39.707Z", - "date_of_expiration": "2023-09-27T02:41:39.707Z", + "date_created": { + "type": 6, + "value": 1695782499707 + }, + "date_last_updated": { + "type": 6, + "value": 1695782499707 + }, + "date_of_expiration": { + "type": 6, + "value": 1695782499707 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -57696,10 +65856,10 @@ "description": "Compra de 115.999,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "83e9c8e89d4a4f459e21497f", + "revision": "81385c95e9a640e08bb6f412", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57707,10 +65867,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "738bc986c517426389daabea", + "revision": "7b266a3bd77d4d80bfd7db46", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57718,10 +65878,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2a21d07e40034bf7ba0431e5", + "revision": "80da4e9b787443afabbd11c8", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57732,10 +65892,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "434dd74a747445de94113a5d", + "revision": "048507e13eb1404082390b66", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57747,12 +65907,15 @@ "dateValidity": 1678984144008, "totalValue": 47.38, "currencyType": "USD", - "balancesModificacao": "2023-10-10T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696906800000 + } }, - "revision": "ce37bab7b10b4f6684b47875", + "revision": "e35daef290644bfbaedb1f1e", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57764,10 +65927,10 @@ "symbol": "IVIP", "value": 4.22 }, - "revision": "5f778212eb1c4ff3a1daffe5", + "revision": "46b4f30bf9d7400496db17bc", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57775,10 +65938,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d17dc347739948eaa9e6559f", + "revision": "87febe6c37014e739bfdc3c3", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820548, + "modified": 1701465820548 } }, { @@ -57786,12 +65949,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "583ffd92c0e6422eb51e2b38", + "revision": "4176ed26f25a4de9a06f5e3a", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -57806,22 +65969,37 @@ "total_amount": 500, "history_id": 1684164750598, "id": 1684164750598, - "date_created": "2023-05-15T15:32:30.598Z", - "date_last_updated": "2023-05-15T21:20:52.543Z", - "date_of_expiration": "2023-06-14T15:32:30.598Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-15T21:20:52.543Z", - "money_release_date": "2023-05-15T21:20:52.543Z", + "date_created": { + "type": 6, + "value": 1684164750598 + }, + "date_last_updated": { + "type": 6, + "value": 1684185652543 + }, + "date_of_expiration": { + "type": 6, + "value": 1686756750598 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684185652543 + }, + "money_release_date": { + "type": 6, + "value": 1684185652543 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "5a9470a07810497abb284f9b", + "revision": "ce1fcbecb11d4a8897304178", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -57829,10 +66007,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "6d50d33ed51a4b54aeb1a75c", + "revision": "6ec90822c2e247d885b4eb1a", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -57840,12 +66018,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "44d98e0afec945de9a4cd386", + "revision": "412741d1a1714234ba8bd22e", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -57860,18 +66038,27 @@ "total_amount": 1800, "history_id": 1684165632184, "id": 1684165632184, - "date_created": "2023-05-15T15:47:12.184Z", - "date_last_updated": "2023-05-15T15:47:12.184Z", - "date_of_expiration": "2023-06-14T15:47:12.184Z", + "date_created": { + "type": 6, + "value": 1684165632184 + }, + "date_last_updated": { + "type": 6, + "value": 1684165632184 + }, + "date_of_expiration": { + "type": 6, + "value": 1686757632184 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "1a5cf9c7e37641a1bd232002", + "revision": "314b3ead05144cecbc136c06", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -57879,10 +66066,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.800,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "8f389ad37e9843349e5045e6", + "revision": "17cf12d88d7d4741be50385d", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -57890,12 +66077,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "e2ffa5c50910426cb219a2d5", + "revision": "9ee426b18a3d41efab46d809", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -57910,22 +66097,37 @@ "total_amount": 150, "history_id": 1684452112873, "id": 1684452112873, - "date_created": "2023-05-18T23:21:52.873Z", - "date_last_updated": "2023-05-18T23:26:54.072Z", - "date_of_expiration": "2023-06-17T23:21:52.873Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-18T23:26:54.072Z", - "money_release_date": "2023-05-18T23:26:54.072Z", + "date_created": { + "type": 6, + "value": 1684452112873 + }, + "date_last_updated": { + "type": 6, + "value": 1684452414072 + }, + "date_of_expiration": { + "type": 6, + "value": 1687044112873 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684452414072 + }, + "money_release_date": { + "type": 6, + "value": 1684452414072 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "d5ec719165d04e748dd8897b", + "revision": "96aebe6fd7744b0783ef166d", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -57933,10 +66135,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "0ec345c829ba49458f789cbb", + "revision": "35773ae40d6043bca5ba585c", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -57944,12 +66146,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "e09018ae3c3945bd9c26d043", + "revision": "86f422a674f340c7bb6bde89", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -57964,20 +66166,32 @@ "total_amount": 500, "history_id": 1684519388805, "id": 1684519388805, - "date_created": "2023-05-19T18:03:08.805Z", - "date_last_updated": "2023-05-20T04:17:58.179Z", - "date_of_expiration": "2023-06-18T18:03:08.805Z", + "date_created": { + "type": 6, + "value": 1684519388805 + }, + "date_last_updated": { + "type": 6, + "value": 1684556278179 + }, + "date_of_expiration": { + "type": 6, + "value": 1687111388805 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-05-20T04:17:58.179Z", + "money_release_date": { + "type": 6, + "value": 1684556278179 + }, "money_release_status": "rejected" }, - "revision": "c4d43666b3514d7f96426d3c", + "revision": "e35f43f2db84449db0b22981", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -57985,10 +66199,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "8e1b98e304f64eb2930dc7d3", + "revision": "a0c8665237584102b7bc9500", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -57996,12 +66210,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "606617e37eec42fdb8b72777", + "revision": "e58dbe60fff94c94b9edb6de", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -58016,20 +66230,32 @@ "total_amount": 950, "history_id": 1684538973500, "id": 1684538973500, - "date_created": "2023-05-19T23:29:33.500Z", - "date_last_updated": "2023-05-20T04:08:22.071Z", - "date_of_expiration": "2023-06-18T23:29:33.500Z", + "date_created": { + "type": 6, + "value": 1684538973500 + }, + "date_last_updated": { + "type": 6, + "value": 1684555702071 + }, + "date_of_expiration": { + "type": 6, + "value": 1687130973500 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-05-20T04:08:22.071Z", + "money_release_date": { + "type": 6, + "value": 1684555702071 + }, "money_release_status": "rejected" }, - "revision": "c5208b13737d4b4c82e7415f", + "revision": "b6090a4ff6514f4f8c3fc00b", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -58037,10 +66263,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "d108374ddb554f8e8c0bc95b", + "revision": "95723d3c53554a94af63d993", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -58048,12 +66274,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "833d7405beb046048cc4df03", + "revision": "aa35f54dd4334b9495a0e1ab", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -58068,20 +66294,32 @@ "total_amount": 950, "history_id": 1684540522383, "id": 1684540522383, - "date_created": "2023-05-19T23:55:22.383Z", - "date_last_updated": "2023-05-20T21:38:33.877Z", - "date_of_expiration": "2023-06-18T23:55:22.383Z", + "date_created": { + "type": 6, + "value": 1684540522383 + }, + "date_last_updated": { + "type": 6, + "value": 1684618713877 + }, + "date_of_expiration": { + "type": 6, + "value": 1687132522383 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-05-20T21:38:33.877Z", + "money_release_date": { + "type": 6, + "value": 1684618713877 + }, "money_release_status": "rejected" }, - "revision": "ca757658e16e4832809c196d", + "revision": "06c285d417e74644868f4280", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -58089,10 +66327,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "110aec9be9ce4d49a3aacb94", + "revision": "d2f34b9f636146c9b3cd714c", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -58100,12 +66338,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "11b57443b45d4455b62c6802", + "revision": "679a246443774144a8b2668f", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -58120,22 +66358,37 @@ "total_amount": 950, "history_id": 1684589302647, "id": 1684589302647, - "date_created": "2023-05-20T13:28:22.647Z", - "date_last_updated": "2023-05-20T14:54:06.380Z", - "date_of_expiration": "2023-06-19T13:28:22.647Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-20T14:54:06.380Z", - "money_release_date": "2023-05-20T14:54:06.380Z", + "date_created": { + "type": 6, + "value": 1684589302647 + }, + "date_last_updated": { + "type": 6, + "value": 1684594446380 + }, + "date_of_expiration": { + "type": 6, + "value": 1687181302647 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684594446380 + }, + "money_release_date": { + "type": 6, + "value": 1684594446380 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "c998fc4a464f4ed1b17e083a", + "revision": "94371258265844328c8d3b4a", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -58143,10 +66396,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "2a51557246f84cda8bb69aa2", + "revision": "cb7374e42775400190ccb2e0", "revision_nr": 1, - "created": 1701463509575, - "modified": 1701463509575 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -58164,12 +66417,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "78000884a3064cae94a95dc5", + "revision": "3ca040264894488ea9a89932", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -58185,9 +66438,18 @@ "original_amount": 7793170, "total_amount": 7793170, "id": 1684624236329, - "date_created": "2023-05-20T23:10:36.329Z", - "date_last_updated": "2023-05-20T23:10:36.329Z", - "date_of_expiration": "2023-05-20T23:10:36.329Z", + "date_created": { + "type": 6, + "value": 1684624236329 + }, + "date_last_updated": { + "type": 6, + "value": 1684624236329 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624236329 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58196,10 +66458,10 @@ "history_id": 1684624236329, "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" }, - "revision": "3545a42ebc77451389fc924c", + "revision": "04143b4aa6fb47cba77509bb", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -58217,12 +66479,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "934c4ee98cfc406fb5efaf06", + "revision": "efe5509ffa044c2093742c49", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -58238,9 +66500,18 @@ "original_amount": 160, "total_amount": 160, "id": 1684624348122, - "date_created": "2023-05-20T23:12:28.122Z", - "date_last_updated": "2023-05-20T23:12:28.122Z", - "date_of_expiration": "2023-05-20T23:12:28.122Z", + "date_created": { + "type": 6, + "value": 1684624348122 + }, + "date_last_updated": { + "type": 6, + "value": 1684624348122 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624348122 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58248,10 +66519,10 @@ "currency_id": "BRL", "history_id": 1684624348122 }, - "revision": "42ec151acbba4621b0da5268", + "revision": "99e9a883dfe6401f88b007fc", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -58259,10 +66530,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "056dc7733e644c6d91a5aaf4", + "revision": "0b8aa33164a74f53894144e2", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -58280,12 +66551,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "1830636e154f4ba9a73df3f8", + "revision": "1d5d46944d184b489d3d5e49", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -58301,9 +66572,18 @@ "original_amount": 779317, "total_amount": 779317, "id": 1684624387279, - "date_created": "2023-05-20T23:13:07.279Z", - "date_last_updated": "2023-05-20T23:13:07.279Z", - "date_of_expiration": "2023-05-20T23:13:07.279Z", + "date_created": { + "type": 6, + "value": 1684624387279 + }, + "date_last_updated": { + "type": 6, + "value": 1684624387279 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624387279 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58312,10 +66592,10 @@ "history_id": 1684624387279, "description": "Compra de 779.317,00 IVIP por 160,00 BRL" }, - "revision": "0e662e7220bd4bdda7c685ca", + "revision": "af817b4a2d72403f855f89be", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820549, + "modified": 1701465820549 } }, { @@ -58333,12 +66613,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "3931d058935a47cdbfb98ea8", + "revision": "e04affe2986f46578ef68168", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58354,9 +66634,18 @@ "original_amount": 20, "total_amount": 20, "id": 1684624827425, - "date_created": "2023-05-20T23:20:27.425Z", - "date_last_updated": "2023-05-20T23:20:27.425Z", - "date_of_expiration": "2023-05-20T23:20:27.425Z", + "date_created": { + "type": 6, + "value": 1684624827425 + }, + "date_last_updated": { + "type": 6, + "value": 1684624827425 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624827425 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58364,10 +66653,10 @@ "currency_id": "BRL", "history_id": 1684624827425 }, - "revision": "b71d30578f054e71b3e338ba", + "revision": "b489b18d9a37481684564f4b", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58375,10 +66664,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "39f1dd7a848a486d91f46e35", + "revision": "13c5729462c14657a4c64310", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58396,12 +66685,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "9ed60179d76744cf8f2bc13c", + "revision": "9eb8bdd9f4d34eef963ec2b6", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58417,9 +66706,18 @@ "original_amount": 97414, "total_amount": 97414, "id": 1684624867474, - "date_created": "2023-05-20T23:21:07.474Z", - "date_last_updated": "2023-05-20T23:21:07.474Z", - "date_of_expiration": "2023-05-20T23:21:07.474Z", + "date_created": { + "type": 6, + "value": 1684624867474 + }, + "date_last_updated": { + "type": 6, + "value": 1684624867474 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624867474 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58428,10 +66726,10 @@ "history_id": 1684624867474, "description": "Compra de 97.414,00 IVIP por 20,00 BRL" }, - "revision": "bfe1aaaa4d8744db9f99d891", + "revision": "014987fc53dc414782127e28", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58449,12 +66747,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a65ca96f6524491d9aee4da4", + "revision": "cdd2695c05f240d5ba72b9bf", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58470,9 +66768,18 @@ "original_amount": 40000000, "total_amount": 40000000, "id": 1685361710845, - "date_created": "2023-05-29T12:01:50.845Z", - "date_last_updated": "2023-05-29T12:01:50.845Z", - "date_of_expiration": "2023-05-29T12:01:50.845Z", + "date_created": { + "type": 6, + "value": 1685361710845 + }, + "date_last_updated": { + "type": 6, + "value": 1685361710845 + }, + "date_of_expiration": { + "type": 6, + "value": 1685361710845 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58480,10 +66787,10 @@ "currency_id": "IVIPAY", "history_id": 1685361710845 }, - "revision": "499822838b584a34ae409b77", + "revision": "19749b796aee44289dc9d891", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58491,10 +66798,10 @@ "content": { "type": "STRING", "value": "Compra de 40.000.000,00 IVIPAY por 4.000.000,00 IVIP estabilizando US$ 164,00", - "revision": "7dd01e839d494692a09373ae", + "revision": "1d3d336a16234d89b2b18130", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58512,12 +66819,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a233de8c61204d2bbf3ca688", + "revision": "4a16cf470bb24fbb8b916d74", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58533,9 +66840,18 @@ "original_amount": 400000, "total_amount": 400000, "id": 1685391792305, - "date_created": "2023-05-29T20:23:12.305Z", - "date_last_updated": "2023-05-29T20:23:12.305Z", - "date_of_expiration": "2023-05-29T20:23:12.305Z", + "date_created": { + "type": 6, + "value": 1685391792305 + }, + "date_last_updated": { + "type": 6, + "value": 1685391792305 + }, + "date_of_expiration": { + "type": 6, + "value": 1685391792305 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58543,10 +66859,10 @@ "currency_id": "IVIP", "history_id": 1685391792305 }, - "revision": "876e4dc7f1824774889c4d38", + "revision": "6bc11824f89849649e7256f1", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58564,12 +66880,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "dcad0ea8adf24f46af3ad63d", + "revision": "6473b6153f8b4bf7815d014f", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58585,9 +66901,18 @@ "original_amount": 2000000, "total_amount": 2000000, "id": 1685391842660, - "date_created": "2023-05-29T20:24:02.660Z", - "date_last_updated": "2023-05-29T20:24:02.660Z", - "date_of_expiration": "2023-05-29T20:24:02.660Z", + "date_created": { + "type": 6, + "value": 1685391842660 + }, + "date_last_updated": { + "type": 6, + "value": 1685391842660 + }, + "date_of_expiration": { + "type": 6, + "value": 1685391842660 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58595,10 +66920,10 @@ "currency_id": "IVIP", "history_id": 1685391842660 }, - "revision": "af960e840d684694ab34e8bd", + "revision": "93954df119d2414cb73cd7fc", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58606,10 +66931,10 @@ "content": { "type": "STRING", "value": "Compra de 2.000.000,00 IVIP por 20.000.000,00 IVIPAY", - "revision": "49d8758aad36452b92f6a7ec", + "revision": "edaf77a02023450b9c8ca6a1", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58627,12 +66952,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "8230ff2c41704f879f6019db", + "revision": "0488d0cf988c4462acc6fbf1", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58648,9 +66973,18 @@ "original_amount": 160000, "total_amount": 160000, "id": 1685391972284, - "date_created": "2023-05-29T20:26:12.284Z", - "date_last_updated": "2023-05-29T20:26:12.284Z", - "date_of_expiration": "2023-05-29T20:26:12.284Z", + "date_created": { + "type": 6, + "value": 1685391972284 + }, + "date_last_updated": { + "type": 6, + "value": 1685391972284 + }, + "date_of_expiration": { + "type": 6, + "value": 1685391972284 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58658,10 +66992,10 @@ "currency_id": "IVIP", "history_id": 1685391972284 }, - "revision": "a43db38bd4ff45a0b6e59f4e", + "revision": "f386360aae914c8695e6d891", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58679,12 +67013,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a2e36f7871454317a8c7ccb1", + "revision": "9a753ad15710439f8fd003ca", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58700,9 +67034,18 @@ "original_amount": 1400000, "total_amount": 1400000, "id": 1685392038537, - "date_created": "2023-05-29T20:27:18.537Z", - "date_last_updated": "2023-05-29T20:27:18.537Z", - "date_of_expiration": "2023-05-29T20:27:18.537Z", + "date_created": { + "type": 6, + "value": 1685392038537 + }, + "date_last_updated": { + "type": 6, + "value": 1685392038537 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392038537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58710,10 +67053,10 @@ "currency_id": "IVIP", "history_id": 1685392038537 }, - "revision": "0f0024e5a4ee4ebd90414034", + "revision": "3325c103a4844fa9bb42e767", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58721,10 +67064,10 @@ "content": { "type": "STRING", "value": "Compra de 1.400.000,00 IVIP por 14.000.000,00 IVIPAY", - "revision": "567d3a5e18f94664b5480c89", + "revision": "12734fdc32214904aa0ec414", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820551, + "modified": 1701465820551 } }, { @@ -58742,12 +67085,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "02ad9a8ac6424ed0a3ee0347", + "revision": "3df66f29ce5547b0bf263516", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -58763,9 +67106,18 @@ "original_amount": 10000, "total_amount": 10000, "id": 1685392165654, - "date_created": "2023-05-29T20:29:25.654Z", - "date_last_updated": "2023-05-29T20:29:25.654Z", - "date_of_expiration": "2023-05-29T20:29:25.654Z", + "date_created": { + "type": 6, + "value": 1685392165654 + }, + "date_last_updated": { + "type": 6, + "value": 1685392165654 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392165654 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58774,10 +67126,10 @@ "history_id": 1685392165654, "description": "Compra de 10.000,00 IVIP por 100.000,00 IVIPAY" }, - "revision": "d4f52a58f0e944eca976ba3f", + "revision": "d574c05618694002909d36a7", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -58795,12 +67147,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "86f32b08ec7b41759ae47b92", + "revision": "2116aeaf268f4879bcce9c3c", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -58816,9 +67168,18 @@ "original_amount": 30000, "total_amount": 30000, "id": 1685392465062, - "date_created": "2023-05-29T20:34:25.062Z", - "date_last_updated": "2023-05-29T20:34:25.062Z", - "date_of_expiration": "2023-05-29T20:34:25.062Z", + "date_created": { + "type": 6, + "value": 1685392465062 + }, + "date_last_updated": { + "type": 6, + "value": 1685392465062 + }, + "date_of_expiration": { + "type": 6, + "value": 1685392465062 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58827,10 +67188,10 @@ "history_id": 1685392465062, "description": "Compra de 30.000,00 IVIP por 300.000,00 IVIPAY" }, - "revision": "83a7dffd7d624fe38a5f13b1", + "revision": "8df74c0505c94b40be68f523", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -58838,12 +67199,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "01c6f80841a842d8a2a768a9", + "revision": "6055a112d29240a8b6cf6305", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -58858,18 +67219,27 @@ "total_amount": 4669901, "history_id": 1685396749543, "id": 1685396749543, - "date_created": "2023-05-29T21:45:49.543Z", - "date_last_updated": "2023-05-29T21:45:49.543Z", - "date_of_expiration": "2023-05-29T21:45:49.543Z", + "date_created": { + "type": 6, + "value": 1685396749543 + }, + "date_last_updated": { + "type": 6, + "value": 1685396749543 + }, + "date_of_expiration": { + "type": 6, + "value": 1685396749543 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "50177c11980e4efca146b0bd", + "revision": "9844aec0fac54e70854cee0e", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -58877,10 +67247,10 @@ "content": { "type": "STRING", "value": "Saque de 4.669.901,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "39af41b97c9344e28b04fbfd", + "revision": "818dd714ad2b4298b9e88933", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -58898,12 +67268,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "0d10306a8f4042d1be5dab03", + "revision": "f0ad3826749b4358ae9b6723", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -58919,9 +67289,18 @@ "original_amount": 86699010, "total_amount": 86699010, "id": 1685409104532, - "date_created": "2023-05-30T01:11:44.532Z", - "date_last_updated": "2023-05-30T01:11:44.532Z", - "date_of_expiration": "2023-05-30T01:11:44.532Z", + "date_created": { + "type": 6, + "value": 1685409104532 + }, + "date_last_updated": { + "type": 6, + "value": 1685409104532 + }, + "date_of_expiration": { + "type": 6, + "value": 1685409104532 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58929,10 +67308,10 @@ "currency_id": "IVIPAY", "history_id": 1685409104532 }, - "revision": "fc94bde6731f463e8fb8b3a9", + "revision": "d6332eac80d34c7799cfca14", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -58940,10 +67319,10 @@ "content": { "type": "STRING", "value": "Compra de 86.699.010,00 IVIPAY por 8.669.901,00 IVIP estabilizando US$ 790,81", - "revision": "b28b755acb224060a92deef1", + "revision": "ccafbfd5ed694d338ba6b6e4", "revision_nr": 1, - "created": 1701463509576, - "modified": 1701463509576 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -58961,12 +67340,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "6b35fe569a234752a4fd9f76", + "revision": "fe757f9793ce4dc091f8a5ae", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -58982,9 +67361,18 @@ "original_amount": 1544789, "total_amount": 1544789, "id": 1685494858663, - "date_created": "2023-05-31T01:00:58.663Z", - "date_last_updated": "2023-05-31T01:00:58.663Z", - "date_of_expiration": "2023-05-31T01:00:58.663Z", + "date_created": { + "type": 6, + "value": 1685494858663 + }, + "date_last_updated": { + "type": 6, + "value": 1685494858663 + }, + "date_of_expiration": { + "type": 6, + "value": 1685494858663 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -58992,10 +67380,10 @@ "currency_id": "IVIP", "history_id": 1685494858663 }, - "revision": "ad703a3b737649b89d04ec13", + "revision": "184d0a2fbcb74deab593c906", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59003,10 +67391,10 @@ "content": { "type": "STRING", "value": "Compra de 1.544.789,00 IVIP por 15.447.894,00 IVIPAY", - "revision": "f0ee4f0f1d4f44858405b8a5", + "revision": "587c25b5ce0c483295aca0ca", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59024,12 +67412,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d02a3e67ceff49da85e15106", + "revision": "9d6d3bbe4b664b099931adfa", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59045,9 +67433,18 @@ "original_amount": 13900000, "total_amount": 13900000, "id": 1685494914975, - "date_created": "2023-05-31T01:01:54.975Z", - "date_last_updated": "2023-05-31T01:01:54.975Z", - "date_of_expiration": "2023-05-31T01:01:54.975Z", + "date_created": { + "type": 6, + "value": 1685494914975 + }, + "date_last_updated": { + "type": 6, + "value": 1685494914975 + }, + "date_of_expiration": { + "type": 6, + "value": 1685494914975 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -59055,10 +67452,10 @@ "currency_id": "IVIP", "history_id": 1685494914975 }, - "revision": "5fe717e953f64a9399842c2e", + "revision": "770f15410fc24df3903e77a2", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59066,10 +67463,10 @@ "content": { "type": "STRING", "value": "Compra de 13.900.000,00 IVIP por 139.000.000,00 IVIPAY", - "revision": "d5d5e8f0baa9463d89afb616", + "revision": "685d8e78b5cd4c34b6af8f75", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59087,12 +67484,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "3f5fdf21fa6249ca8172cccf", + "revision": "8f2d23e6155a41a59c7036f8", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59108,9 +67505,18 @@ "original_amount": 3105, "total_amount": 3105, "id": 1685495030715, - "date_created": "2023-05-31T01:03:50.715Z", - "date_last_updated": "2023-05-31T01:03:50.715Z", - "date_of_expiration": "2023-05-31T01:03:50.715Z", + "date_created": { + "type": 6, + "value": 1685495030715 + }, + "date_last_updated": { + "type": 6, + "value": 1685495030715 + }, + "date_of_expiration": { + "type": 6, + "value": 1685495030715 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -59119,10 +67525,10 @@ "history_id": 1685495030715, "description": "Compra de 3.105,00 IVIP por 31.054,00 IVIPAY" }, - "revision": "3433bec23553434d9fd2da96", + "revision": "f547be6f391a459380ec9eaa", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59130,12 +67536,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "9d74a221986349bea1b64627", + "revision": "2ddeb8aa4a0844c4a5e88cfa", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59150,20 +67556,32 @@ "total_amount": 15447894, "history_id": 1685495440046, "id": 1685495440046, - "date_created": "2023-05-31T01:10:40.046Z", - "date_last_updated": "2023-06-02T18:03:07.171Z", - "date_of_expiration": "2023-05-31T01:10:40.046Z", + "date_created": { + "type": 6, + "value": 1685495440046 + }, + "date_last_updated": { + "type": 6, + "value": 1685728987171 + }, + "date_of_expiration": { + "type": 6, + "value": 1685495440046 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": "2023-06-02T18:03:07.171Z", + "money_release_date": { + "type": 6, + "value": 1685728987171 + }, "money_release_status": "rejected" }, - "revision": "81c78d2c42374adb96b32a2e", + "revision": "0046844005104da6b7b5f948", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59171,10 +67589,10 @@ "content": { "type": "STRING", "value": "Saque de 15.447.894,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "7fe1cf1538b54e09abe9d3de", + "revision": "f1c3edf2d99a4006af4d1781", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59192,12 +67610,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "013ea798abe3479a80eb49c8", + "revision": "48a8b5c3ae6347b2b8ebfa09", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59213,9 +67631,18 @@ "original_amount": 154478940, "total_amount": 154478940, "id": 1685496474860, - "date_created": "2023-05-31T01:27:54.860Z", - "date_last_updated": "2023-05-31T01:27:54.860Z", - "date_of_expiration": "2023-05-31T01:27:54.860Z", + "date_created": { + "type": 6, + "value": 1685496474860 + }, + "date_last_updated": { + "type": 6, + "value": 1685496474860 + }, + "date_of_expiration": { + "type": 6, + "value": 1685496474860 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -59223,10 +67650,10 @@ "currency_id": "IVIPAY", "history_id": 1685496474860 }, - "revision": "0cb0df4a7c8f4d1692b4ca29", + "revision": "81c6cdaf538d438c8f313e86", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59234,10 +67661,10 @@ "content": { "type": "STRING", "value": "Compra de 154.478.940,00 IVIPAY por 15.447.894,00 IVIP estabilizando US$ 957,12", - "revision": "65984925eb3b4bb39faae29f", + "revision": "dab9534c77da431a97f121bf", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59255,12 +67682,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d31b4b4aa7064dde924679e8", + "revision": "5272e1f91d5d449d838b14b1", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59276,9 +67703,18 @@ "original_amount": 14660794, "total_amount": 14660794, "id": 1685572512459, - "date_created": "2023-05-31T22:35:12.459Z", - "date_last_updated": "2023-05-31T22:35:12.459Z", - "date_of_expiration": "2023-05-31T22:35:12.459Z", + "date_created": { + "type": 6, + "value": 1685572512459 + }, + "date_last_updated": { + "type": 6, + "value": 1685572512459 + }, + "date_of_expiration": { + "type": 6, + "value": 1685572512459 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -59286,10 +67722,10 @@ "currency_id": "IVIP", "history_id": 1685572512459 }, - "revision": "3f19863e7acd4ed28bf9c051", + "revision": "0c8c99726f0c4b96a55fb682", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59297,10 +67733,10 @@ "content": { "type": "STRING", "value": "Compra de 14.660.794,00 IVIP por 146.607.949,00 IVIPAY", - "revision": "11cab56538e14864ab057d62", + "revision": "496f9b59cffd423782ca8a29", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59308,12 +67744,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "4f2f747345084775a37f2cd7", + "revision": "d3b64ffa9649457484e8f91c", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59328,20 +67764,32 @@ "total_amount": 10637617, "history_id": 1685574712795, "id": 1685574712795, - "date_created": "2023-05-31T23:11:52.795Z", - "date_last_updated": "2023-06-02T17:55:39.697Z", - "date_of_expiration": "2023-05-31T23:11:52.795Z", + "date_created": { + "type": 6, + "value": 1685574712795 + }, + "date_last_updated": { + "type": 6, + "value": 1685728539697 + }, + "date_of_expiration": { + "type": 6, + "value": 1685574712795 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": "2023-06-02T17:55:39.697Z", + "money_release_date": { + "type": 6, + "value": 1685728539697 + }, "money_release_status": "rejected" }, - "revision": "7f9f5c9346cf4009b24e8dd1", + "revision": "85351568d3e346eba4d29565", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59349,10 +67797,10 @@ "content": { "type": "STRING", "value": "Saque de 10.637.617,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "6c8f300e0e674647b5417765", + "revision": "07e5c2acbeed492ca0d840bd", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59360,12 +67808,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "11aaa4ae163841d9b344012b", + "revision": "51fd07ff65924c0e9d6fdb8a", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59380,20 +67828,32 @@ "total_amount": 14660794, "history_id": 1685587807706, "id": 1685587807706, - "date_created": "2023-06-01T02:50:07.706Z", - "date_last_updated": "2023-06-02T17:54:02.582Z", - "date_of_expiration": "2023-06-01T02:50:07.706Z", + "date_created": { + "type": 6, + "value": 1685587807706 + }, + "date_last_updated": { + "type": 6, + "value": 1685728442582 + }, + "date_of_expiration": { + "type": 6, + "value": 1685587807706 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "IVIP", - "money_release_date": "2023-06-02T17:54:02.582Z", + "money_release_date": { + "type": 6, + "value": 1685728442582 + }, "money_release_status": "rejected" }, - "revision": "81ad79d56d4d41eca2e33638", + "revision": "04ed4778ed4448e6a73917b8", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59401,10 +67861,10 @@ "content": { "type": "STRING", "value": "Saque de 14.660.794,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "87c4122cb5b74246b8ac87b9", + "revision": "8488939583104f92b8537494", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59412,12 +67872,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "a2631c51fbc3445b980c126a", + "revision": "388c534e564a40cea164469c", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59432,22 +67892,37 @@ "total_amount": 14660794, "history_id": 1685623890790, "id": 1685623890790, - "date_created": "2023-06-01T12:51:30.790Z", - "date_last_updated": "2023-06-01T19:33:18.019Z", - "date_of_expiration": "2023-06-01T12:51:30.790Z", + "date_created": { + "type": 6, + "value": 1685623890790 + }, + "date_last_updated": { + "type": 6, + "value": 1685647998019 + }, + "date_of_expiration": { + "type": 6, + "value": 1685623890790 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-06-01T19:33:18.019Z", - "money_release_date": "2023-06-01T19:33:18.019Z", + "date_approved": { + "type": 6, + "value": 1685647998019 + }, + "money_release_date": { + "type": 6, + "value": 1685647998019 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "395839219086436794ecf1db", + "revision": "5f4cf93826654bf2ae9a4b60", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59455,10 +67930,10 @@ "content": { "type": "STRING", "value": "Saque de 14.660.794,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "015dd95451f84afa8494bff8", + "revision": "0fa0d1d41fbb458c82eb1401", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59476,12 +67951,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "2c735f131d684e1cb98b9739", + "revision": "5454c801abd342cdafcb3bdf", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59497,9 +67972,18 @@ "original_amount": 146607940, "total_amount": 146607940, "id": 1685625562355, - "date_created": "2023-06-01T13:19:22.355Z", - "date_last_updated": "2023-06-01T13:19:22.355Z", - "date_of_expiration": "2023-06-01T13:19:22.355Z", + "date_created": { + "type": 6, + "value": 1685625562355 + }, + "date_last_updated": { + "type": 6, + "value": 1685625562355 + }, + "date_of_expiration": { + "type": 6, + "value": 1685625562355 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -59507,10 +67991,10 @@ "currency_id": "IVIPAY", "history_id": 1685625562355 }, - "revision": "28d1ef560e104961a3d0dbd5", + "revision": "6ea5a7ff1f994dde9266f8c6", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59518,10 +68002,10 @@ "content": { "type": "STRING", "value": "Compra de 146.607.940,00 IVIPAY por 14.660.794,00 IVIP estabilizando US$ 749,86", - "revision": "18949dd9520e47e2a7273d10", + "revision": "215727dba9694c20aedfa1af", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59539,12 +68023,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "ff0701f3798d4d488df1242c", + "revision": "cf64f1a07d0c45c69d70a5d4", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820552, + "modified": 1701465820552 } }, { @@ -59560,9 +68044,18 @@ "original_amount": 1490, "total_amount": 1490, "id": 1685639526258, - "date_created": "2023-06-01T17:12:06.258Z", - "date_last_updated": "2023-06-01T17:12:06.258Z", - "date_of_expiration": "2023-06-01T17:12:06.258Z", + "date_created": { + "type": 6, + "value": 1685639526258 + }, + "date_last_updated": { + "type": 6, + "value": 1685639526258 + }, + "date_of_expiration": { + "type": 6, + "value": 1685639526258 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -59571,10 +68064,10 @@ "history_id": 1685639526258, "description": "Compra de 1.490,00 IVIP por 14.900,00 IVIPAY" }, - "revision": "258654f9f1d8412eb4fda5f1", + "revision": "c30010be48e14f1e8ba72193", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59582,12 +68075,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "64dd86f4321a4e2988b5291c", + "revision": "80a3082937864c45bceb7988", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59602,22 +68095,37 @@ "total_amount": 1490, "history_id": 1685647933824, "id": 1685647933824, - "date_created": "2023-06-01T19:32:13.824Z", - "date_last_updated": "2023-06-01T19:34:53.267Z", - "date_of_expiration": "2023-06-01T19:32:13.824Z", + "date_created": { + "type": 6, + "value": 1685647933824 + }, + "date_last_updated": { + "type": 6, + "value": 1685648093267 + }, + "date_of_expiration": { + "type": 6, + "value": 1685647933824 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-06-01T19:34:53.267Z", - "money_release_date": "2023-06-01T19:34:53.267Z", + "date_approved": { + "type": 6, + "value": 1685648093267 + }, + "money_release_date": { + "type": 6, + "value": 1685648093267 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "dcf35725a84d4f8ebb01961b", + "revision": "98c8ce9a23bf44f8bc5d9738", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59625,10 +68133,10 @@ "content": { "type": "STRING", "value": "Saque de 1.490,00 IVIP para a carteira 0x46450913428e27edfc5B4055875c08eC6a22cbfF", - "revision": "793d44421e0b42fea0258000", + "revision": "5b9c3a7aef3043039fdf4c4a", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59646,12 +68154,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a045ed72ce1b4b4ba21f5621", + "revision": "65005b84427c4488b8d2d36f", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59667,9 +68175,18 @@ "original_amount": 13603163, "total_amount": 13603163, "id": 1685653675417, - "date_created": "2023-06-01T21:07:55.417Z", - "date_last_updated": "2023-06-01T21:07:55.417Z", - "date_of_expiration": "2023-06-01T21:07:55.417Z", + "date_created": { + "type": 6, + "value": 1685653675417 + }, + "date_last_updated": { + "type": 6, + "value": 1685653675417 + }, + "date_of_expiration": { + "type": 6, + "value": 1685653675417 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -59677,10 +68194,10 @@ "currency_id": "IVIP", "history_id": 1685653675417 }, - "revision": "fbdb7b2fe7794951a7ecce67", + "revision": "9e88e1d733dd413d8c1818b6", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59688,10 +68205,10 @@ "content": { "type": "STRING", "value": "Compra de 13.603.163,00 IVIP por 136.031.630,00 IVIPAY", - "revision": "5fad737cc94a47e596c1082c", + "revision": "dd550716963846489692584e", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59699,12 +68216,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "0c911e0a94194ae58e8a8148", + "revision": "c3eb1c26731f42de98d136d4", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59719,18 +68236,27 @@ "total_amount": 3463, "history_id": 1688596994749, "id": 1688596994749, - "date_created": "2023-07-05T22:43:14.749Z", - "date_last_updated": "2023-07-05T22:43:14.749Z", - "date_of_expiration": "2023-08-04T22:43:14.749Z", + "date_created": { + "type": 6, + "value": 1688596994749 + }, + "date_last_updated": { + "type": 6, + "value": 1688596994749 + }, + "date_of_expiration": { + "type": 6, + "value": 1691188994749 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "92b86c72d762474282f82b3c", + "revision": "be5b200148f94c128e818d95", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59738,10 +68264,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.463,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "486d1d7d10f142e1b313fc25", + "revision": "200a52e9dc434cdda9bac3e9", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59749,12 +68275,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "a39368e0937347e3a65677fc", + "revision": "41cb3bf0d5524443be98a1df", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59769,18 +68295,27 @@ "total_amount": 1000, "history_id": 1689384333712, "id": 1689384333712, - "date_created": "2023-07-15T01:25:33.712Z", - "date_last_updated": "2023-07-15T01:25:33.712Z", - "date_of_expiration": "2023-08-14T01:25:33.712Z", + "date_created": { + "type": 6, + "value": 1689384333712 + }, + "date_last_updated": { + "type": 6, + "value": 1689384333712 + }, + "date_of_expiration": { + "type": 6, + "value": 1691976333712 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "36e965e5f56d464880269d55", + "revision": "4901ad9f66c84d3684317bbd", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59788,10 +68323,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "2ec0b4824fdb4021a61257bb", + "revision": "280c32b88aa343079ab5ce7b", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59800,12 +68335,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-20T15:58:57.377Z" + ".val": { + "type": 6, + "value": 1692547137377 + } }, - "revision": "674e83782eb04cf8bfc2505f", + "revision": "18fdf2d2e0de4da0ab374e9a", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59821,12 +68359,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "bd9ba51848f2405ea4e6da58", + "revision": "efb46482564a4a6aae298679", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59834,10 +68372,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1689955137377", - "revision": "e5e0ba3f80f34454ab0642b4", + "revision": "78aa1e475c494356bab803c2", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59852,8 +68390,14 @@ "total_amount": 1671, "id": 1689955137377, "history_id": 1689955137377, - "date_created": "2023-07-21T15:58:57.377Z", - "date_last_updated": "2023-07-21T15:58:57.377Z", + "date_created": { + "type": 6, + "value": 1689955137377 + }, + "date_last_updated": { + "type": 6, + "value": 1689955137377 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -59861,10 +68405,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "0a8b73d7ee8d4c15911c251e", + "revision": "4b08cbe6aea34c7396370407", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59872,10 +68416,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.671,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "c865f7fc08474922953a4028", + "revision": "03179652ad714458a3f583c8", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59884,12 +68428,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-30T21:05:23.298Z" + ".val": { + "type": 6, + "value": 1693429523298 + } }, - "revision": "0388ada9672443aa99465c07", + "revision": "87496e4102364d2199c513fa", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59905,12 +68452,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "66951653662347f18e550e98", + "revision": "d7e3d78ac3864d06adc56f8c", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59918,10 +68465,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1690837523298", - "revision": "2e4fb581553940f18cee5b11", + "revision": "4bee1a1e13f449a4b2b30b27", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59936,23 +68483,35 @@ "total_amount": 20, "id": 1690837523298, "history_id": 1690837523298, - "date_created": "2023-07-31T21:05:23.298Z", - "date_last_updated": "2023-07-31T22:01:04.751Z", + "date_created": { + "type": 6, + "value": 1690837523298 + }, + "date_last_updated": { + "type": 6, + "value": 1690840864751 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-07-31T22:01:04.751Z", - "money_release_date": "2023-07-31T22:01:04.751Z", + "date_approved": { + "type": 6, + "value": 1690840864751 + }, + "money_release_date": { + "type": 6, + "value": 1690840864751 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "10f359e7c5014afdb6c9b34d", + "revision": "8e267d7ccd9848aa976d6242", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59960,10 +68519,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "af09a0f9780c40fd8ba2933c", + "revision": "ce05c26f314540bc9c742dd7", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59979,12 +68538,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "34201345933d461c8604f412", + "revision": "aceedc3154d0410db6ace0f3", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -59992,10 +68551,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1690844181474", - "revision": "9a96c931fb6e478fa4f8b100", + "revision": "b64f5a5e688b416e983b476a", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60010,9 +68569,18 @@ "total_amount": 17960, "id": 1690844181474, "history_id": 1690844181474, - "date_created": "2023-07-31T22:56:21.474Z", - "date_last_updated": "2023-07-31T22:56:21.474Z", - "date_of_expiration": "2023-07-31T22:56:21.474Z", + "date_created": { + "type": 6, + "value": 1690844181474 + }, + "date_last_updated": { + "type": 6, + "value": 1690844181474 + }, + "date_of_expiration": { + "type": 6, + "value": 1690844181474 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -60021,10 +68589,10 @@ "description": "Compra de 17.960,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "d0670755d1654eed9bae9c33", + "revision": "7d1a96e4570149c09bf274af", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60032,10 +68600,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0d4eb7b4b06745d084a35d3d", + "revision": "0bcb504da3674cf39ce4c680", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60043,10 +68611,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7d0830ad70684fcb93d12884", + "revision": "aab6ae65cd4843279267c1e9", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60056,12 +68624,15 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-07-08T23:25:44.635Z" + "analysisRequested": { + "type": 6, + "value": 1688858744635 + } }, - "revision": "14672f2f030042df83e618e5", + "revision": "ee093558d71646ffb5856501", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60073,12 +68644,15 @@ "dateValidity": 1684160584822, "totalValue": 8.87, "currencyType": "USD", - "balancesModificacao": "2023-09-29T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1695956400000 + } }, - "revision": "59fef7133aa546b0a0bfe855", + "revision": "4279a5252a0342ad9684bc47", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60090,10 +68664,10 @@ "symbol": "IVIP", "value": 507.45 }, - "revision": "0b3da2e9012940f7ba2f98b8", + "revision": "b1b02ebc66444c3e9f17816e", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60101,10 +68675,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6abfa3ff61a64a4ca3857627", + "revision": "88df378a91e14311a2d871ea", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60112,12 +68686,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "3d707fdd04ca4ad091d2a19e", + "revision": "ec026b9bca3b449bacf907b8", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60132,22 +68706,37 @@ "total_amount": 200, "history_id": 1689132397301, "id": 1689132397301, - "date_created": "2023-07-12T03:26:37.301Z", - "date_last_updated": "2023-07-12T09:22:05.926Z", - "date_of_expiration": "2023-08-11T03:26:37.301Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-12T09:22:05.926Z", - "money_release_date": "2023-07-12T09:22:05.926Z", + "date_created": { + "type": 6, + "value": 1689132397301 + }, + "date_last_updated": { + "type": 6, + "value": 1689153725926 + }, + "date_of_expiration": { + "type": 6, + "value": 1691724397301 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689153725926 + }, + "money_release_date": { + "type": 6, + "value": 1689153725926 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "c00b7d68724349659a78bf75", + "revision": "e3bbcbcfdeb045cbbadd76f7", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60155,10 +68744,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0918.7836.9033.5585-10", - "revision": "52849c9fc90947ff8a98c2bc", + "revision": "8966cab287d94be0aba2249a", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60176,12 +68765,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "0665ea44bff345feacf44954", + "revision": "7c36c764703a4368a6545e8b", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60197,9 +68786,18 @@ "original_amount": 82125, "total_amount": 82125, "id": 1689197549929, - "date_created": "2023-07-12T21:32:29.929Z", - "date_last_updated": "2023-07-12T21:32:29.929Z", - "date_of_expiration": "2023-07-12T21:32:29.929Z", + "date_created": { + "type": 6, + "value": 1689197549929 + }, + "date_last_updated": { + "type": 6, + "value": 1689197549929 + }, + "date_of_expiration": { + "type": 6, + "value": 1689197549929 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -60208,10 +68806,10 @@ "history_id": 1689197549929, "description": "Compra de 82.125,00 IVIP por 200,00 BRL" }, - "revision": "a6f054d7222e4a8e9f9669c1", + "revision": "294fb5d33fd0403c8cd04adc", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60220,12 +68818,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-28T11:29:10.248Z" + ".val": { + "type": 6, + "value": 1698492550248 + } }, - "revision": "fb1100da99bd44deba0bf01a", + "revision": "61c8de43275c44b595adf4d6", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60241,12 +68842,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "966309f3fa9744cd9a219e18", + "revision": "b9cbeb22bf21437f82c8181d", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60254,10 +68855,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900550248", - "revision": "77c6da39347d4f54bc7da785", + "revision": "422f35d8e9994ad58255f05c", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60273,8 +68874,14 @@ "total_amount": 458, "id": "1695900550248", "history_id": "1695900550248", - "date_created": "2023-09-28T11:29:10.248Z", - "date_last_updated": "2023-09-28T11:29:10.248Z", + "date_created": { + "type": 6, + "value": 1695900550248 + }, + "date_last_updated": { + "type": 6, + "value": 1695900550248 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -60282,10 +68889,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "28c2b8b03d274c68b74fc612", + "revision": "450ad0fddb3749249b4f06e4", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60293,10 +68900,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", - "revision": "0a3996c7d2844ebdbbd2e87f", + "revision": "77e8a1226d4c48049e244075", "revision_nr": 1, - "created": 1701463509577, - "modified": 1701463509577 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60305,12 +68912,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-28T11:29:10.761Z" + ".val": { + "type": 6, + "value": 1698492550761 + } }, - "revision": "fbf01bb448f64d25ac7c9e18", + "revision": "f59ec9f3de7d475e86ac9402", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60326,12 +68936,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "19c85b330804428997c9adf4", + "revision": "a25b97ad9d6e4f21a890ae0a", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60339,10 +68949,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900550761", - "revision": "7ef840a8c5de4403850ff352", + "revision": "aed18779f5b4453ca6d5386c", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60358,8 +68968,14 @@ "total_amount": 458, "id": "1695900550761", "history_id": "1695900550761", - "date_created": "2023-09-28T11:29:10.761Z", - "date_last_updated": "2023-09-28T11:29:10.761Z", + "date_created": { + "type": 6, + "value": 1695900550761 + }, + "date_last_updated": { + "type": 6, + "value": 1695900550761 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -60367,10 +68983,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "4eb056b1a1c84fceaa95169e", + "revision": "23585cc6a116417db61a1de7", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60378,10 +68994,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", - "revision": "2d71e1972cea4e318a375b74", + "revision": "16ca0532d92646609a85a5af", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60390,12 +69006,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-28T11:29:25.784Z" + ".val": { + "type": 6, + "value": 1698492565784 + } }, - "revision": "263e9dee12f54f089e1e2e68", + "revision": "5207d90ee188483cab3f8ad7", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60411,12 +69030,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "e84f05b03e3f4929963f6ff0", + "revision": "07889ffd0e5e44bd8c897e88", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60424,10 +69043,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900565784", - "revision": "f9c4c67b446f448a97929800", + "revision": "ab577a42e7434e099424ab5b", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60443,23 +69062,35 @@ "total_amount": 458, "id": "1695900565784", "history_id": "1695900565784", - "date_created": "2023-09-28T11:29:25.784Z", - "date_last_updated": "2023-09-28T11:46:53.220Z", + "date_created": { + "type": 6, + "value": 1695900565784 + }, + "date_last_updated": { + "type": 6, + "value": 1695901613220 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-09-28T11:46:53.220Z", - "money_release_date": "2023-09-28T11:46:53.220Z", + "date_approved": { + "type": 6, + "value": 1695901613220 + }, + "money_release_date": { + "type": 6, + "value": 1695901613220 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "38df80ccfde74b97833d672f", + "revision": "d2f2862850c84817a1f1301f", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60467,10 +69098,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", - "revision": "bb38af700ec64f4390747f10", + "revision": "24006d2de2c84ee0950d7f8f", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60486,12 +69117,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "a975ef885f8e4fd5b67c2eba", + "revision": "59d4879f7bd04925be7d465e", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60499,10 +69130,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695903994262", - "revision": "942fb5d449c44f39a81749fc", + "revision": "54a1ba610817483bb38f9456", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60518,9 +69149,18 @@ "total_amount": 383626, "id": "1695903994262", "history_id": "1695903994262", - "date_created": "2023-09-28T12:26:34.262Z", - "date_last_updated": "2023-09-28T12:26:34.262Z", - "date_of_expiration": "2023-09-28T12:26:34.262Z", + "date_created": { + "type": 6, + "value": 1695903994262 + }, + "date_last_updated": { + "type": 6, + "value": 1695903994262 + }, + "date_of_expiration": { + "type": 6, + "value": 1695903994262 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -60529,10 +69169,10 @@ "description": "Compra de 383.626,00 IVIP por 458,00 BRL", "status_detail": "accredited" }, - "revision": "c53d2fde595848cea45f15d9", + "revision": "d157ff6db1b8417b808f11b0", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60540,10 +69180,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "979d96524e30419eb36e559d", + "revision": "eb1aa8dcbee246379ffdcedd", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60551,10 +69191,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "00731244971d44b6a4669bc8", + "revision": "1bc050e0fc324f08b2d70906", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60565,10 +69205,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "ebd2a34a414d4fc5992773c7", + "revision": "0f11e29d152a4450942e7b7e", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60580,12 +69220,15 @@ "dateValidity": 1689132373088, "totalValue": 41.04, "currencyType": "USD", - "balancesModificacao": "2023-10-01T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696129200000 + } }, - "revision": "5e0e5d0110524cf38a0b05f6", + "revision": "799ef726691d49789a6c255c", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60593,10 +69236,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b3229569f2b3439282a80453", + "revision": "ee49cdcb90a84c5f9a8bf0a5", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820554, + "modified": 1701465820554 } }, { @@ -60604,12 +69247,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "0f5e8986db554e87a25003db", + "revision": "87befac6100347e8918d2d98", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60624,20 +69267,32 @@ "total_amount": 50, "history_id": 1678089239675, "id": 1678089239675, - "date_created": "2023-03-06T07:53:59.675Z", - "date_last_updated": "2023-03-13T14:08:07.775Z", - "date_of_expiration": "2023-04-05T07:53:59.675Z", + "date_created": { + "type": 6, + "value": 1678089239675 + }, + "date_last_updated": { + "type": 6, + "value": 1678716487775 + }, + "date_of_expiration": { + "type": 6, + "value": 1680681239675 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-03-13T14:08:07.775Z", + "money_release_date": { + "type": 6, + "value": 1678716487775 + }, "money_release_status": "rejected" }, - "revision": "9024c069aa524960b3b84342", + "revision": "8896117c785c457c9f5e2e9e", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60645,10 +69300,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0923.9225.3957.1184-80", - "revision": "0f6d4be715a24078adaae118", + "revision": "9666e20c861d44baba62db0f", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60656,10 +69311,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2eca00601812407a978268a5", + "revision": "eba1cde267a24f0bb792106d", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60672,10 +69327,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "10c712a9704f4f5c93facc7a", + "revision": "7c0382c7ceb04ffbafcb44da", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60683,10 +69338,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "390a7aa4e2764db5a117bc28", + "revision": "ec839e29a0a242609b629864", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60694,12 +69349,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "12d9c62058c94643a7f5cc03", + "revision": "548508a3194f403da0dcf753", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60714,18 +69369,27 @@ "total_amount": 1500, "history_id": 1689457461269, "id": 1689457461269, - "date_created": "2023-07-15T21:44:21.269Z", - "date_last_updated": "2023-07-15T21:44:21.269Z", - "date_of_expiration": "2023-08-14T21:44:21.269Z", + "date_created": { + "type": 6, + "value": 1689457461269 + }, + "date_last_updated": { + "type": 6, + "value": 1689457461269 + }, + "date_of_expiration": { + "type": 6, + "value": 1692049461269 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "777b97bcee4f42bab506588d", + "revision": "6a981182f9964baf82ca73c7", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60733,10 +69397,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0956.3322.9427.8818-90", - "revision": "b2330544b4c148ffba6c9462", + "revision": "dddb104e97f24f14897e3345", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60744,12 +69408,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "088f8979deb24b73978a45f7", + "revision": "03b8a6e08c1d4e19b9ed897f", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60764,18 +69428,27 @@ "total_amount": 1500, "history_id": 1689629737479, "id": 1689629737479, - "date_created": "2023-07-17T21:35:37.479Z", - "date_last_updated": "2023-07-17T21:35:37.479Z", - "date_of_expiration": "2023-08-16T21:35:37.479Z", + "date_created": { + "type": 6, + "value": 1689629737479 + }, + "date_last_updated": { + "type": 6, + "value": 1689629737479 + }, + "date_of_expiration": { + "type": 6, + "value": 1692221737479 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "92e905a97de642f89192732d", + "revision": "00021a76169445d5ad3787b9", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60783,10 +69456,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0956.3322.9427.8818-90", - "revision": "decf11ed7d504342ba982ecb", + "revision": "86c4765baff14a11b0113315", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60794,10 +69467,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "10f44a5b03284acaaeaa04f8", + "revision": "108afa5165a14644b11ee6ad", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60805,10 +69478,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e51af5d9611e4658ae737b47", + "revision": "c62d7e1b63fc40fa8e5e3b52", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60819,10 +69492,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "7cdeefbab5ac4a62a3139d99", + "revision": "ef6b1200a76b4e4fa1f421e8", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60835,10 +69508,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "ff802c18d8e443619c1f9f40", + "revision": "d0911ca45bb04c0ba9eaf1d7", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60846,10 +69519,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "490f67b22f4d41568b32f7dd", + "revision": "84fe208cda6d4d2fac6fc771", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60857,12 +69530,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "59c649298ead4af48d296223", + "revision": "adba1cfbd432433a8797a720", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60877,18 +69550,27 @@ "total_amount": 100, "history_id": 1684543373520, "id": 1684543373520, - "date_created": "2023-05-20T00:42:53.520Z", - "date_last_updated": "2023-05-20T00:42:53.520Z", - "date_of_expiration": "2023-06-19T00:42:53.520Z", + "date_created": { + "type": 6, + "value": 1684543373520 + }, + "date_last_updated": { + "type": 6, + "value": 1684543373520 + }, + "date_of_expiration": { + "type": 6, + "value": 1687135373520 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "40d142b78852434cbef00a3d", + "revision": "e8dd14d050804e7f9ef6ce23", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60896,10 +69578,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0961.2401.6860.3556-50", - "revision": "35705e883bcf4c04bdd17167", + "revision": "721f72b1cff04c81955460d2", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60907,10 +69589,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4687fe41d0aa4f1dbd9b4415", + "revision": "836c655b68e540a79c116438", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60918,10 +69600,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "57baabe5b8b4448cb9c4e74b", + "revision": "3e7dbc70b5a94186b0df85a6", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60932,10 +69614,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "1790df755a324a1a855a73d9", + "revision": "172b348b45804e568924cfd1", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60948,10 +69630,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "8a05f75cba294df7baffae65", + "revision": "650acfe88bf94d9ba3a02ee8", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60959,10 +69641,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "13cd8c4c7f1a4080a053858f", + "revision": "cdad262e156f4597bd89e005", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60970,10 +69652,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "14a786f4804944b8b7e99f2c", + "revision": "1b4862286c974213b566db29", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -60985,10 +69667,10 @@ "dateValidity": 1696117965942, "currencyType": "USD" }, - "revision": "135411fa772f43139a7a5da2", + "revision": "450760d748c44e008568b8ab", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61000,10 +69682,10 @@ "symbol": "BRL", "value": 1.92 }, - "revision": "571b35099c234221b707b25a", + "revision": "049d219f0e464ea7a0415a6d", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61015,10 +69697,10 @@ "symbol": "IVIP", "value": 62.92 }, - "revision": "3b8fc79efa7745e7a3f2da55", + "revision": "92e8797506f541248ed93641", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61026,10 +69708,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "849055cdc1ec4c45ba557f84", + "revision": "cfd7db51bde64c8caf847ef6", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61037,12 +69719,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "2b1f99cb6feb42c9849d35c9", + "revision": "ef9d4999cc1641ecafc92862", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61057,22 +69739,37 @@ "total_amount": 3000, "history_id": 1680564390483, "id": 1680564390483, - "date_created": "2023-04-03T23:26:30.483Z", - "date_last_updated": "2023-04-04T01:09:40.299Z", - "date_of_expiration": "2023-05-03T23:26:30.483Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-04-04T01:09:40.299Z", - "money_release_date": "2023-04-04T01:09:40.299Z", + "date_created": { + "type": 6, + "value": 1680564390483 + }, + "date_last_updated": { + "type": 6, + "value": 1680570580299 + }, + "date_of_expiration": { + "type": 6, + "value": 1683156390483 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1680570580299 + }, + "money_release_date": { + "type": 6, + "value": 1680570580299 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "aa5a5d1678094e4d8a55cd70", + "revision": "336cbc7e9bec4beb82899349", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61080,10 +69777,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "95993f942c594408b9b7b3fd", + "revision": "b7a00026a4334f4984c728ad", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61091,12 +69788,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "85dd415fe32445b6b47e0c7b", + "revision": "ad1980a3f4044fba882492a6", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61111,22 +69808,37 @@ "total_amount": 2000, "history_id": 1680570737667, "id": 1680570737667, - "date_created": "2023-04-04T01:12:17.667Z", - "date_last_updated": "2023-04-04T01:12:57.315Z", - "date_of_expiration": "2023-05-04T01:12:17.667Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-04-04T01:12:57.315Z", - "money_release_date": "2023-04-04T01:12:57.315Z", + "date_created": { + "type": 6, + "value": 1680570737667 + }, + "date_last_updated": { + "type": 6, + "value": 1680570777315 + }, + "date_of_expiration": { + "type": 6, + "value": 1683162737667 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1680570777315 + }, + "money_release_date": { + "type": 6, + "value": 1680570777315 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "d19190b3c68c4449975c73ee", + "revision": "a05dfb70f29740348c064495", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61134,10 +69846,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "675e36a04ef644d0b2ca2ff0", + "revision": "6e7c4fe7b3db4c74b3e6a994", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61149,10 +69861,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "673a987a70c14d13add668c3", + "revision": "e432e11db17f476f9961b786", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61160,10 +69872,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4c243826c07949e0b38d4fd1", + "revision": "7a25a3f37efc430e86754ef8", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61171,10 +69883,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "1392ae662349437d8bf78d18", + "revision": "76bcb646ddee45859b02a82c", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61189,19 +69901,28 @@ "total_amount": 12000, "history_id": 1680571158806, "id": 1680571158806, - "date_created": "2023-04-04T01:19:18.806Z", - "date_last_updated": "2023-04-04T01:19:18.806Z", - "date_of_expiration": "2023-05-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1680571158806 + }, + "date_last_updated": { + "type": 6, + "value": 1680571158806 + }, + "date_of_expiration": { + "type": 6, + "value": 1683163158806 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "e4c11ab63bc0498db4fc54a4", + "revision": "3d3c10ee720a44a4ad0b0549", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61209,10 +69930,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "38786fc2790b4a0da38d1c43", + "revision": "a8e745dcf2d246b7b1d6ee31", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61232,12 +69953,12 @@ "installment_amount": 1200, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "215361990403410f86488034", + "revision": "ad3d8e6dd53e41f89fde8400", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61254,9 +69975,18 @@ "total_amount": 1200, "id": 1683548182568, "contract_id": "1680571158806", - "date_created": "2023-05-08T12:16:22.568Z", - "date_last_updated": "2023-05-08T12:16:22.568Z", - "date_of_expiration": "2023-05-08T12:16:22.568Z", + "date_created": { + "type": 6, + "value": 1683548182568 + }, + "date_last_updated": { + "type": 6, + "value": 1683548182568 + }, + "date_of_expiration": { + "type": 6, + "value": 1683548182568 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -61264,10 +69994,10 @@ "currency_id": "BRL", "history_id": 1683548182568 }, - "revision": "cbf8e8faee5947d99cfe6a66", + "revision": "a38f6b68c1434901bb4134c9", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61275,10 +70005,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "ce2113ae259743e5a45de8ba", + "revision": "640abe00c7c14e11b2f940e4", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61298,12 +70028,12 @@ "installment_amount": 1200, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "9bdf9ef2923a4a5bb60b12ec", + "revision": "0ee20193dc474d9e98d33446", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61320,9 +70050,18 @@ "total_amount": 1200, "id": 1684367503606, "contract_id": "1680571158806", - "date_created": "2023-05-17T23:51:43.606Z", - "date_last_updated": "2023-05-17T23:51:43.606Z", - "date_of_expiration": "2023-05-17T23:51:43.606Z", + "date_created": { + "type": 6, + "value": 1684367503606 + }, + "date_last_updated": { + "type": 6, + "value": 1684367503606 + }, + "date_of_expiration": { + "type": 6, + "value": 1684367503606 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -61330,10 +70069,10 @@ "currency_id": "BRL", "history_id": 1684367503606 }, - "revision": "1edcbc401e4f45ed8f81f694", + "revision": "9779f8376d264442a1b76cc1", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61341,10 +70080,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "2770ef0719514b4ab7fffbd0", + "revision": "9ce464f03b8e4024a8721b30", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61356,10 +70095,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "29d273dbfe88441c8c4f0181", + "revision": "2caa762056c84e03bae3cc00", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61367,10 +70106,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "09e1b00ff87d47ccb5a1604e", + "revision": "19209ff1bf8f42fca3a5e201", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61378,10 +70117,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "cc4fba37057842f496a43d2a", + "revision": "dce3c8d36d444d1e860ed6cb", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61396,19 +70135,28 @@ "total_amount": 2320, "history_id": 1684367721554, "id": 1684367721554, - "date_created": "2023-05-17T23:55:21.554Z", - "date_last_updated": "2023-05-17T23:55:21.554Z", - "date_of_expiration": "2023-06-16T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1684367721554 + }, + "date_last_updated": { + "type": 6, + "value": 1684367721554 + }, + "date_of_expiration": { + "type": 6, + "value": 1686959721554 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "200e4c516e0e429196697dce", + "revision": "2ea680c630c34e76b83dcbee", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61416,10 +70164,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "d9ff457b43c14e34901c86b5", + "revision": "ae34a24c319341bfb8690ea2", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61439,12 +70187,12 @@ "installment_amount": 290, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "e2009e31ff91420abb2edd17", + "revision": "3926b2f8810b467887f47133", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61461,9 +70209,18 @@ "total_amount": 290, "id": 1684415962143, "contract_id": "1684367721554", - "date_created": "2023-05-18T13:19:22.143Z", - "date_last_updated": "2023-05-18T13:19:22.143Z", - "date_of_expiration": "2023-05-18T13:19:22.143Z", + "date_created": { + "type": 6, + "value": 1684415962143 + }, + "date_last_updated": { + "type": 6, + "value": 1684415962143 + }, + "date_of_expiration": { + "type": 6, + "value": 1684415962143 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -61471,10 +70228,10 @@ "currency_id": "BRL", "history_id": 1684415962143 }, - "revision": "5b4e27c266d8450f8b1cc114", + "revision": "6635698def244c0e9416a26d", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61482,10 +70239,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "c8a679e9f41c4278beac234a", + "revision": "af0b7ca967264d4f8f52741a", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61493,12 +70250,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "60e9955cb99a4454a77a2d31", + "revision": "d92d0cfb136544dda2e2955e", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61513,22 +70270,37 @@ "total_amount": 1600, "history_id": 1684544477879, "id": 1684544477879, - "date_created": "2023-05-20T01:01:17.879Z", - "date_last_updated": "2023-05-20T01:10:36.886Z", - "date_of_expiration": "2023-06-19T01:01:17.879Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-20T01:10:36.886Z", - "money_release_date": "2023-05-20T01:10:36.886Z", + "date_created": { + "type": 6, + "value": 1684544477879 + }, + "date_last_updated": { + "type": 6, + "value": 1684545036886 + }, + "date_of_expiration": { + "type": 6, + "value": 1687136477879 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684545036886 + }, + "money_release_date": { + "type": 6, + "value": 1684545036886 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "f3be437676bf4169b25449e2", + "revision": "a46dbee2e9fc4c2eb7517502", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61536,10 +70308,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "a007894193a84fbdb703aeb6", + "revision": "4ce77422608b4032972077dd", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61557,12 +70329,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "81ffa0105d6c4cdf895d7b88", + "revision": "fb1186efbbc044c7850b378e", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61578,9 +70350,18 @@ "original_amount": 77493341, "total_amount": 77493341, "id": 1684624390329, - "date_created": "2023-05-20T23:13:10.329Z", - "date_last_updated": "2023-05-20T23:13:10.329Z", - "date_of_expiration": "2023-05-20T23:13:10.329Z", + "date_created": { + "type": 6, + "value": 1684624390329 + }, + "date_last_updated": { + "type": 6, + "value": 1684624390329 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624390329 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61589,10 +70370,10 @@ "history_id": 1684624390329, "description": "Compra de 77.493.341,00 IVIP por 15.910,00 BRL" }, - "revision": "eb7d93b418fc40acbbbd5266", + "revision": "a701cb2d038f41f6bfabcf64", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61604,10 +70385,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 5 }, - "revision": "112df84763ac4420b9572e7c", + "revision": "79942cfe06fe4172a13e61ac", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61615,10 +70396,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6967cbd16567403cbb820e22", + "revision": "3c5d7bcaf7ed432e941734ea", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61626,10 +70407,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "16225fff88274513a4a9d473", + "revision": "fd2a56cc3b1044b3b08363dc", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61644,19 +70425,28 @@ "total_amount": 255, "history_id": 1684661775049, "id": 1684661775049, - "date_created": "2023-05-21T09:36:15.049Z", - "date_last_updated": "2023-05-21T09:36:15.049Z", - "date_of_expiration": "2023-06-20T09:36:15.049Z", + "date_created": { + "type": 6, + "value": 1684661775049 + }, + "date_last_updated": { + "type": 6, + "value": 1684661775049 + }, + "date_of_expiration": { + "type": 6, + "value": 1687253775049 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "f113123d1bfb4054afe87355", + "revision": "eb2154c2e0ff4cd5a2d9d6ae", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61664,10 +70454,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 255,00", - "revision": "c413fbd5211d4f35b051b2df", + "revision": "ad4606e8d9584c358d15e0af", "revision_nr": 1, - "created": 1701463509578, - "modified": 1701463509578 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61685,12 +70475,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "0327cbf41df24ff8b7c96cac", + "revision": "6c22b7d9d00d43fb9c122f09", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61706,9 +70496,18 @@ "original_amount": 1218292, "total_amount": 1218292, "id": 1684661800868, - "date_created": "2023-05-21T09:36:40.868Z", - "date_last_updated": "2023-05-21T09:36:40.868Z", - "date_of_expiration": "2023-05-21T09:36:40.868Z", + "date_created": { + "type": 6, + "value": 1684661800868 + }, + "date_last_updated": { + "type": 6, + "value": 1684661800868 + }, + "date_of_expiration": { + "type": 6, + "value": 1684661800868 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61717,10 +70516,10 @@ "history_id": 1684661800868, "description": "Compra de 1.218.292,00 IVIP por 250,00 BRL" }, - "revision": "0b34f2b71ea845ac8de29d25", + "revision": "4cc67f481bfc42fd9436395a", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61728,12 +70527,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "72d393aa7bbd4adaaf8d3aa1", + "revision": "86685191d6d24b159b1dbe0e", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61748,22 +70547,37 @@ "total_amount": 255, "history_id": 1685452383443, "id": 1685452383443, - "date_created": "2023-05-30T13:13:03.443Z", - "date_last_updated": "2023-05-30T22:32:00.714Z", - "date_of_expiration": "2023-06-29T13:13:03.443Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-30T22:32:00.714Z", - "money_release_date": "2023-05-30T22:32:00.714Z", + "date_created": { + "type": 6, + "value": 1685452383443 + }, + "date_last_updated": { + "type": 6, + "value": 1685485920714 + }, + "date_of_expiration": { + "type": 6, + "value": 1688044383443 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685485920714 + }, + "money_release_date": { + "type": 6, + "value": 1685485920714 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "ff670190e10a438f97f2a643", + "revision": "875a7129927f497eb473854c", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61771,10 +70585,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 255,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "7222608430cf47ff9323b87e", + "revision": "1c0f97e00c8a47a1ac1c3fc7", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61794,12 +70608,12 @@ "installment_amount": 255, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "5cf366f3899b42438514868b", + "revision": "68f6f6d6d6fd4a7b9bfbb09a", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61816,9 +70630,18 @@ "total_amount": 255, "id": 1685486477860, "contract_id": "1684661775049", - "date_created": "2023-05-30T22:41:17.860Z", - "date_last_updated": "2023-05-30T22:41:17.860Z", - "date_of_expiration": "2023-05-30T22:41:17.860Z", + "date_created": { + "type": 6, + "value": 1685486477860 + }, + "date_last_updated": { + "type": 6, + "value": 1685486477860 + }, + "date_of_expiration": { + "type": 6, + "value": 1685486477860 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -61826,10 +70649,10 @@ "currency_id": "BRL", "history_id": 1685486477860 }, - "revision": "74c92a9624774de89c22a9aa", + "revision": "b018e56030bc43abbc62fd0e", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61837,10 +70660,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 1 no valor de 255,00 BRL referente ao contrato 1684661775049", - "revision": "6b6201daf4944961b482a58e", + "revision": "6585c12afca041c2bd4572b7", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61858,12 +70681,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d83f8cc1c8b24b86b561527f", + "revision": "77178a97cbcc444eada026ce", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -61878,9 +70701,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667437011, - "date_created": "2023-06-02T00:57:17.011Z", - "date_last_updated": "2023-06-02T00:57:17.011Z", - "date_of_expiration": "2025-06-02T00:57:17.011Z", + "date_created": { + "type": 6, + "value": 1685667437011 + }, + "date_last_updated": { + "type": 6, + "value": 1685667437011 + }, + "date_of_expiration": { + "type": 6, + "value": 1748825837011 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61888,10 +70720,10 @@ "currency_id": "IVIP", "history_id": 1685667437011 }, - "revision": "61ba9307de4647c4a692a650", + "revision": "1c594c59816c449aa6d38114", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -61899,10 +70731,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "f45931a9bd90468ba09f965a", + "revision": "73a67750eff84fdb868ff8a0", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820555, + "modified": 1701465820555 } }, { @@ -61920,12 +70752,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "4336d654b9c948e09128506e", + "revision": "95151e8f95334d7fb98d0a3f", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -61940,9 +70772,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667452001, - "date_created": "2023-06-02T00:57:32.001Z", - "date_last_updated": "2023-06-02T00:57:32.001Z", - "date_of_expiration": "2024-06-02T00:57:32.001Z", + "date_created": { + "type": 6, + "value": 1685667452001 + }, + "date_last_updated": { + "type": 6, + "value": 1685667452001 + }, + "date_of_expiration": { + "type": 6, + "value": 1717289852001 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -61950,10 +70791,10 @@ "currency_id": "IVIP", "history_id": 1685667452001 }, - "revision": "b052c9c5bfc844b49b8c0d71", + "revision": "083831314ac84a9db67613a1", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -61961,10 +70802,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "5c9ca62383f143f99d63cc04", + "revision": "2fc8bbb951a14bdf9a22d639", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -61982,12 +70823,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "1c0db971b0294ec18651240a", + "revision": "476c184972e54e3aa5629fa8", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62002,9 +70843,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667466065, - "date_created": "2023-06-02T00:57:46.065Z", - "date_last_updated": "2023-06-02T00:57:46.065Z", - "date_of_expiration": "2023-12-02T00:57:46.065Z", + "date_created": { + "type": 6, + "value": 1685667466065 + }, + "date_last_updated": { + "type": 6, + "value": 1685667466065 + }, + "date_of_expiration": { + "type": 6, + "value": 1701478666065 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -62012,10 +70862,10 @@ "currency_id": "IVIP", "history_id": 1685667466065 }, - "revision": "bd1fe47e61474da288742171", + "revision": "58ce3d13d11841afaedd871c", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62023,10 +70873,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", - "revision": "0807e19ce02946c5a47856ab", + "revision": "fc6170fd814047f99c7717cc", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62044,12 +70894,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "f9775195c697485093986aaa", + "revision": "66d2ecb9d84e4f9b8bcb6704", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62064,9 +70914,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667479611, - "date_created": "2023-06-02T00:57:59.611Z", - "date_last_updated": "2023-06-02T00:57:59.611Z", - "date_of_expiration": "2023-07-02T00:57:59.611Z", + "date_created": { + "type": 6, + "value": 1685667479611 + }, + "date_last_updated": { + "type": 6, + "value": 1685667479611 + }, + "date_of_expiration": { + "type": 6, + "value": 1688259479611 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -62074,10 +70933,10 @@ "currency_id": "IVIP", "history_id": 1685667479611 }, - "revision": "5347daaa024c4dcc927bdb49", + "revision": "77137e93e9a44afab500bbec", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62085,10 +70944,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "c66d1f790d8542a597dac673", + "revision": "2b14d172eb75486d9853ae90", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62106,12 +70965,12 @@ "installment_amount": 22711633, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "de6c320f91fa4d9795512141", + "revision": "9bc39ffb9c484034bf056d7e", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62126,9 +70985,18 @@ "original_amount": 22711633, "total_amount": 22711633, "id": 1687307213896, - "date_created": "2023-06-21T00:26:53.896Z", - "date_last_updated": "2023-06-21T00:26:53.896Z", - "date_of_expiration": "2024-06-21T00:26:53.896Z", + "date_created": { + "type": 6, + "value": 1687307213896 + }, + "date_last_updated": { + "type": 6, + "value": 1687307213896 + }, + "date_of_expiration": { + "type": 6, + "value": 1718929613896 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -62136,10 +71004,10 @@ "currency_id": "IVIP", "history_id": 1687307213896 }, - "revision": "77ea642120f9469ea1742537", + "revision": "fe1b48a450fa460eb5213bad", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62147,10 +71015,10 @@ "content": { "type": "STRING", "value": "Investimento de 22.711.633,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", - "revision": "6e1ce96b9ef1400994fb9d4c", + "revision": "e22a618bdf424eca96e8cc4f", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62168,12 +71036,12 @@ "installment_amount": 24000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "e8eae7f4bbff4183ae55420f", + "revision": "8d16aabf872a4f7a9790ab93", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62188,9 +71056,18 @@ "original_amount": 24000000, "total_amount": 24000000, "id": 1687313762388, - "date_created": "2023-06-21T02:16:02.388Z", - "date_last_updated": "2023-06-21T02:16:02.388Z", - "date_of_expiration": "2025-06-21T02:16:02.388Z", + "date_created": { + "type": 6, + "value": 1687313762388 + }, + "date_last_updated": { + "type": 6, + "value": 1687313762388 + }, + "date_of_expiration": { + "type": 6, + "value": 1750472162388 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -62198,10 +71075,10 @@ "currency_id": "IVIP", "history_id": 1687313762388 }, - "revision": "94f2859fc14f40fea1e1bde1", + "revision": "ce64039ba722498991c983b7", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62209,10 +71086,10 @@ "content": { "type": "STRING", "value": "Investimento de 24.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2025", - "revision": "81069b1158984eb6ac014ede", + "revision": "ae51cd68f331436985072839", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62230,12 +71107,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "42f064c2751c45c39575266d", + "revision": "cdfff26a9752431180898834", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62250,9 +71127,18 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1688400402521, - "date_created": "2023-07-03T16:06:42.521Z", - "date_last_updated": "2023-07-03T16:06:42.521Z", - "date_of_expiration": "2023-07-03T16:06:42.521Z", + "date_created": { + "type": 6, + "value": 1688400402521 + }, + "date_last_updated": { + "type": 6, + "value": 1688400402521 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400402521 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -62261,10 +71147,10 @@ "history_id": 1688400402521, "wasDebited": true }, - "revision": "b76577a8a1df451eb66939e0", + "revision": "a138f3ad93004406bdcb0157", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62272,10 +71158,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "391d8042003949aea6d2e599", + "revision": "c7a21f586c6544a0b315ca7a", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62293,12 +71179,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a571ba00dfc34eaf93a5a9fb", + "revision": "258ac8e35b5e49919c131c70", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62313,9 +71199,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1688403044242, - "date_created": "2023-07-03T16:50:44.242Z", - "date_last_updated": "2023-07-03T16:50:44.242Z", - "date_of_expiration": "2023-08-03T16:50:44.242Z", + "date_created": { + "type": 6, + "value": 1688403044242 + }, + "date_last_updated": { + "type": 6, + "value": 1688403044242 + }, + "date_of_expiration": { + "type": 6, + "value": 1691081444242 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -62323,10 +71218,10 @@ "currency_id": "IVIP", "history_id": 1688403044242 }, - "revision": "a52e72bdcb454f55952f9530", + "revision": "fee5fc5d332248bca129a0bf", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62334,10 +71229,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "072aa211a20c4a138d460666", + "revision": "20cc9dc36173458c928b01ef", "revision_nr": 1, - "created": 1701463509579, - "modified": 1701463509579 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62345,12 +71240,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "219da7b8d5784dd6ba6e9f02", + "revision": "d869c61be52d4db28c06efa3", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62365,22 +71260,37 @@ "total_amount": 1500, "history_id": 1689132091915, "id": 1689132091915, - "date_created": "2023-07-12T03:21:31.915Z", - "date_last_updated": "2023-07-13T01:07:51.960Z", - "date_of_expiration": "2023-08-11T03:21:31.915Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-13T01:07:51.960Z", - "money_release_date": "2023-07-13T01:07:51.960Z", + "date_created": { + "type": 6, + "value": 1689132091915 + }, + "date_last_updated": { + "type": 6, + "value": 1689210471960 + }, + "date_of_expiration": { + "type": 6, + "value": 1691724091915 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689210471960 + }, + "money_release_date": { + "type": 6, + "value": 1689210471960 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "8c98638a83c64988b86e5153", + "revision": "220924c53f9e49278c7570e5", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62388,10 +71298,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "969419b8783a4af78157f62d", + "revision": "32d741983e9544c79199c0ee", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62411,12 +71321,12 @@ "installment_amount": 1200, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "5ac7216eccbc410a8bb29034", + "revision": "6286a6abf5e84554b98b6c11", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62433,9 +71343,18 @@ "total_amount": 1200, "id": 1689211234387, "contract_id": "1680571158806", - "date_created": "2023-07-13T01:20:34.387Z", - "date_last_updated": "2023-07-13T01:20:34.387Z", - "date_of_expiration": "2023-07-13T01:20:34.387Z", + "date_created": { + "type": 6, + "value": 1689211234387 + }, + "date_last_updated": { + "type": 6, + "value": 1689211234387 + }, + "date_of_expiration": { + "type": 6, + "value": 1689211234387 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -62443,10 +71362,10 @@ "currency_id": "BRL", "history_id": 1689211234387 }, - "revision": "7e41472e3f6c404bbfafa38d", + "revision": "9674a44b7e8f4a579d217650", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62454,10 +71373,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "949546e617ec4776b3c64ef2", + "revision": "71c22fb02b3740229a385b03", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62477,12 +71396,12 @@ "installment_amount": 290, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "22da4ac95bd7476390650e92", + "revision": "e072eb852f5645bd8a742b5e", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62499,9 +71418,18 @@ "total_amount": 290, "id": 1689211234773, "contract_id": "1684367721554", - "date_created": "2023-07-13T01:20:34.773Z", - "date_last_updated": "2023-07-13T01:20:34.773Z", - "date_of_expiration": "2023-07-13T01:20:34.773Z", + "date_created": { + "type": 6, + "value": 1689211234773 + }, + "date_last_updated": { + "type": 6, + "value": 1689211234773 + }, + "date_of_expiration": { + "type": 6, + "value": 1689211234773 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -62509,10 +71437,10 @@ "currency_id": "BRL", "history_id": 1689211234773 }, - "revision": "80a79a47827f42ae965ff2be", + "revision": "e9db0a89ad7c4104a27f23f1", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62520,10 +71448,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "c165d37e28d44092b2822d42", + "revision": "bac5099da65d427fb99984ae", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62541,12 +71469,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "7cc6e2ce498842b7972c0ac9", + "revision": "aa95185c415d4bf49909e688", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62561,9 +71489,18 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1691081485992, - "date_created": "2023-08-03T16:51:25.992Z", - "date_last_updated": "2023-08-03T16:51:25.992Z", - "date_of_expiration": "2023-08-03T16:51:25.992Z", + "date_created": { + "type": 6, + "value": 1691081485992 + }, + "date_last_updated": { + "type": 6, + "value": 1691081485992 + }, + "date_of_expiration": { + "type": 6, + "value": 1691081485992 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -62572,10 +71509,10 @@ "history_id": 1691081485992, "wasDebited": true }, - "revision": "40a338c634b4416293d5fe8f", + "revision": "1e2114547070468b9353b715", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62583,10 +71520,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "1297232b5359427b8fe3525f", + "revision": "00a4320ead4f43e0ad3a50e7", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62602,12 +71539,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "ed42b58d1a5b4ad399e79397", + "revision": "4f4b895c18144de48bbb52e9", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62615,10 +71552,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1691082200859", - "revision": "b0024d07a9664b36b1d2caae", + "revision": "dd13e260790949149ad109b8", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62633,9 +71570,18 @@ "total_amount": 8000000, "id": 1691082200859, "history_id": 1691082200859, - "date_created": "2023-08-03T17:03:20.859Z", - "date_last_updated": "2023-08-03T17:03:20.859Z", - "date_of_expiration": "2023-09-03T17:03:20.858Z", + "date_created": { + "type": 6, + "value": 1691082200859 + }, + "date_last_updated": { + "type": 6, + "value": 1691082200859 + }, + "date_of_expiration": { + "type": 6, + "value": 1693760600858 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -62643,10 +71589,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c7698ca7c10c4b4d9d7b14c9", + "revision": "5d4e5d1705b347bdb8200e32", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62654,10 +71600,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "084da3763bf344518d318468", + "revision": "055ba3ab351d4ae8bc10ee1a", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62666,12 +71612,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-10T23:12:17.743Z" + ".val": { + "type": 6, + "value": 1694387537743 + } }, - "revision": "b7a3e208ba3541c589a49450", + "revision": "2fcffd6516d742b287092a3b", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62687,12 +71636,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "6fa0fe35804540c8bdd05fc2", + "revision": "ff73d827fc9e46088a6eb20a", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62700,10 +71649,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1691795537743", - "revision": "ee166b72612741ce9b0b1848", + "revision": "a82dd96781984f8aa14f4617", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62718,23 +71667,35 @@ "total_amount": 1490, "id": 1691795537743, "history_id": 1691795537743, - "date_created": "2023-08-11T23:12:17.743Z", - "date_last_updated": "2023-08-12T01:52:36.867Z", + "date_created": { + "type": 6, + "value": 1691795537743 + }, + "date_last_updated": { + "type": 6, + "value": 1691805156867 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-12T01:52:36.867Z", - "money_release_date": "2023-08-12T01:52:36.867Z", + "date_approved": { + "type": 6, + "value": 1691805156867 + }, + "money_release_date": { + "type": 6, + "value": 1691805156867 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "131ec2cc9a744f4fb5827ae2", + "revision": "b49940b4bab54c6fa41fbdae", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62742,10 +71703,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.490,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "70111cfd80044f9fafb90e48", + "revision": "5617fafda86244908ea0d6ae", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62765,12 +71726,12 @@ "installment_amount": 1200, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "8fea75bf6d77418199fc75b6", + "revision": "d87485eb67944d1abb169277", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62787,9 +71748,18 @@ "total_amount": 1200, "id": 1691838943906, "contract_id": "1680571158806", - "date_created": "2023-08-12T11:15:43.906Z", - "date_last_updated": "2023-08-12T11:15:43.906Z", - "date_of_expiration": "2023-08-12T11:15:43.906Z", + "date_created": { + "type": 6, + "value": 1691838943906 + }, + "date_last_updated": { + "type": 6, + "value": 1691838943906 + }, + "date_of_expiration": { + "type": 6, + "value": 1691838943906 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -62797,10 +71767,10 @@ "currency_id": "BRL", "history_id": 1691838943906 }, - "revision": "cd5ba2cc75b84f108c5d0cf6", + "revision": "62c8b53430674a818032e579", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -62808,10 +71778,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "18050ee201744e1d9dfebd4b", + "revision": "1b433602e9df42f88263297b", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820556, + "modified": 1701465820556 } }, { @@ -62831,12 +71801,12 @@ "installment_amount": 290, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "fad836c048f349c89f4df0a1", + "revision": "d985fae9fece48e2ba32ad74", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -62853,9 +71823,18 @@ "total_amount": 290, "id": 1691838944125, "contract_id": "1684367721554", - "date_created": "2023-08-12T11:15:44.125Z", - "date_last_updated": "2023-08-12T11:15:44.125Z", - "date_of_expiration": "2023-08-12T11:15:44.125Z", + "date_created": { + "type": 6, + "value": 1691838944125 + }, + "date_last_updated": { + "type": 6, + "value": 1691838944125 + }, + "date_of_expiration": { + "type": 6, + "value": 1691838944125 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -62863,10 +71842,10 @@ "currency_id": "BRL", "history_id": 1691838944125 }, - "revision": "3fed7e49407c440fa52bffe3", + "revision": "21d9d6b82f574a35a88ea7cc", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -62874,10 +71853,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "01e290dc3de0466ca112d86b", + "revision": "f303bf1d9d86419a91223554", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -62893,12 +71872,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "454e8a2505a845e395c1cd03", + "revision": "1ec7028f91484705ba00ee55", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -62906,10 +71885,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1693760654707", - "revision": "30739a192b504bfcaada89b0", + "revision": "c5e0df7dfcf2485aa96f9b81", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -62924,9 +71903,18 @@ "total_amount": 8160000, "id": "1693760654707", "history_id": "1693760654707", - "date_created": "2023-09-03T17:04:14.707Z", - "date_last_updated": "2023-09-03T17:04:14.707Z", - "date_of_expiration": "2023-09-03T17:04:14.707Z", + "date_created": { + "type": 6, + "value": 1693760654707 + }, + "date_last_updated": { + "type": 6, + "value": 1693760654707 + }, + "date_of_expiration": { + "type": 6, + "value": 1693760654707 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -62934,10 +71922,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "af6268b122d3464a9456f05e", + "revision": "ea70a52c47d9463eb25bec25", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -62945,10 +71933,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "90d630cd52944e11b68d2603", + "revision": "1f91237e911c48eeb8b8cd1c", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -62964,12 +71952,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "61a1ca1f87b1424284dcca28", + "revision": "44be1f8ef31342ad8c50368f", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -62977,10 +71965,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1693869394011", - "revision": "dcfec6bbd9474aadb68ea943", + "revision": "b5ef5688a50840679d0de252", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -62995,23 +71983,35 @@ "total_amount": 5000000, "id": "1693869394011", "history_id": "1693869394011", - "date_created": "2023-09-04T23:16:34.011Z", - "date_last_updated": "2023-10-04T13:04:00.740Z", - "date_of_expiration": "2023-10-04T23:16:34.011Z", + "date_created": { + "type": 6, + "value": 1693869394011 + }, + "date_last_updated": { + "type": 6, + "value": 1696424640740 + }, + "date_of_expiration": { + "type": 6, + "value": 1696461394011 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": "2023-10-04T13:04:00.740Z", + "money_release_date": { + "type": 6, + "value": 1696424640740 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "21df33408b3445e2a44fbf5c", + "revision": "aa84fd1871734bb9ae26a394", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63019,10 +72019,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/10/2023 - Y12XDT27", - "revision": "f57010b6c18c43639f1fcbcb", + "revision": "d82ee7ea1541488eb50a4a9f", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63031,12 +72031,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-12T01:25:11.857Z" + ".val": { + "type": 6, + "value": 1697073911857 + } }, - "revision": "d716d2116ef5476f8c9fad65", + "revision": "208a41855a3d464b99521680", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63052,12 +72055,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "fdff504fbe6148bdb03aecd6", + "revision": "47528fea58fb4603a6c4394e", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63065,10 +72068,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694481911857", - "revision": "b02b5982ceea4bd2ba2a0eea", + "revision": "e985919ea87b4277aa92b499", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63083,23 +72086,35 @@ "total_amount": 1490, "id": "1694481911857", "history_id": "1694481911857", - "date_created": "2023-09-12T01:25:11.857Z", - "date_last_updated": "2023-09-13T17:37:38.166Z", + "date_created": { + "type": 6, + "value": 1694481911857 + }, + "date_last_updated": { + "type": 6, + "value": 1694626658166 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-09-13T17:37:38.166Z", - "money_release_date": "2023-09-13T17:37:38.166Z", + "date_approved": { + "type": 6, + "value": 1694626658166 + }, + "money_release_date": { + "type": 6, + "value": 1694626658166 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "ea7439c216e34253bcb64ae9", + "revision": "722e9d627005410680f4b621", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63107,10 +72122,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.490,00 BRL para a carteira iVip 0983.0244.9130.1420-80", - "revision": "f4814982ef8c4f91ba29314b", + "revision": "6bd4344daf054d5cb38e8da8", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63126,14 +72141,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 5, "installments_payable": 5 }, - "revision": "33ac66571c8b4a3f86375ac6", + "revision": "e27f00d09cb34c2d8fadf588", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63141,10 +72156,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694627290479", - "revision": "dfacb5336d8b4e2487be5a11", + "revision": "0a027807af12481a91a5e70c", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63159,9 +72174,18 @@ "total_amount": 1200, "id": "1694627290479", "history_id": "1694627290479", - "date_created": "2023-09-13T17:48:10.479Z", - "date_last_updated": "2023-09-13T17:48:10.479Z", - "date_of_expiration": "2023-09-13T17:48:10.479Z", + "date_created": { + "type": 6, + "value": 1694627290479 + }, + "date_last_updated": { + "type": 6, + "value": 1694627290479 + }, + "date_of_expiration": { + "type": 6, + "value": 1694627290479 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -63169,10 +72193,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "a0b853b9acdd4c8f9367239a", + "revision": "ef28ddae7e764180b415abb9", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63180,10 +72204,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 5 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "bee19c3e9f3843569c45b43d", + "revision": "9093b25f2b524bdd86c0ba67", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63199,14 +72223,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 4, "installments_payable": 4 }, - "revision": "08681a78c3374ae0bd9eddec", + "revision": "0d14c458de484bf08ed6c208", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63214,10 +72238,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694627290565", - "revision": "749cc22cfdf24eeca7902c25", + "revision": "6888afbbfcc0443da2530252", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63232,9 +72256,18 @@ "total_amount": 290, "id": "1694627290565", "history_id": "1694627290565", - "date_created": "2023-09-13T17:48:10.565Z", - "date_last_updated": "2023-09-13T17:48:10.565Z", - "date_of_expiration": "2023-09-13T17:48:10.565Z", + "date_created": { + "type": 6, + "value": 1694627290565 + }, + "date_last_updated": { + "type": 6, + "value": 1694627290565 + }, + "date_of_expiration": { + "type": 6, + "value": 1694627290565 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -63242,10 +72275,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "4b3adafd825140c3880efda7", + "revision": "e2656b0223c949efb6f045e7", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63253,10 +72286,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "31c5c3152e3e48cd9b79eff5", + "revision": "1904448fc655492dbaef3c11", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63272,12 +72305,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "1c356130a624484b9802a75c", + "revision": "4c8bf33cd5eb45adbb496150", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63285,10 +72318,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696555808953", - "revision": "4498b2ce2a9043669d425d94", + "revision": "f6b56445bacf425a97569096", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63304,9 +72337,18 @@ "total_amount": 8000000, "id": "1696555808953", "history_id": "1696555808953", - "date_created": "2023-10-06T01:30:08.953Z", - "date_last_updated": "2023-10-06T01:30:08.953Z", - "date_of_expiration": "2023-11-06T01:30:08.931Z", + "date_created": { + "type": 6, + "value": 1696555808953 + }, + "date_last_updated": { + "type": 6, + "value": 1696555808953 + }, + "date_of_expiration": { + "type": 6, + "value": 1699234208931 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -63314,10 +72356,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "8da03dbf44f84eb5bfdc29eb", + "revision": "1ce2b76ab44b4cf2ab07f478", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63325,10 +72367,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", - "revision": "b0404865a6874653933dd2e2", + "revision": "142c612f0c5040c3ba78b858", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63337,12 +72379,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-08T02:49:04.331Z" + ".val": { + "type": 6, + "value": 1699411744331 + } }, - "revision": "176fc6d394d24110a57eb33e", + "revision": "c33fe0f7be074f268b2fd8a3", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63358,12 +72403,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "874d4075bb0e4c1c832cd28c", + "revision": "4e5c58c98f1e40cd9d1d1a3c", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63371,10 +72416,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696819744331", - "revision": "1ea62b47f6704d7fafc55757", + "revision": "dea7a0300088433ba0d6ba46", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63390,23 +72435,35 @@ "total_amount": 1490, "id": "1696819744331", "history_id": "1696819744331", - "date_created": "2023-10-09T02:49:04.331Z", - "date_last_updated": "2023-10-09T12:39:01.326Z", + "date_created": { + "type": 6, + "value": 1696819744331 + }, + "date_last_updated": { + "type": 6, + "value": 1696855141326 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-10-09T12:39:01.326Z", - "money_release_date": "2023-10-09T12:39:01.326Z", + "date_approved": { + "type": 6, + "value": 1696855141326 + }, + "money_release_date": { + "type": 6, + "value": 1696855141326 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "4c6bebed2b694750a962cd85", + "revision": "d2faf65cc4234eb78c4df715", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63414,10 +72471,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.490,00 BRL para a carteira iVip 0983.0244.9130.1420-80", - "revision": "21d15520549b4dff90ca4f8a", + "revision": "58ed427e2ab04cc892947e20", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63433,14 +72490,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 6, "installments_payable": 4 }, - "revision": "24bc5bc6a3344b3e87393b25", + "revision": "e0b695d160224d538f04c896", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63448,10 +72505,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696861214347", - "revision": "4821f9f0f7324d12aa6a3013", + "revision": "da200e7aed0d43f199f7201b", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63467,9 +72524,18 @@ "total_amount": 1200, "id": "1696861214347", "history_id": "1696861214347", - "date_created": "2023-10-09T14:20:14.347Z", - "date_last_updated": "2023-10-09T14:20:14.347Z", - "date_of_expiration": "2023-10-09T14:20:14.347Z", + "date_created": { + "type": 6, + "value": 1696861214347 + }, + "date_last_updated": { + "type": 6, + "value": 1696861214347 + }, + "date_of_expiration": { + "type": 6, + "value": 1696861214347 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -63477,10 +72543,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "effac259c6c84b6ba380b315", + "revision": "1290c84714764ba6b06ddbff", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63488,10 +72554,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 6 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "0b732adb6a274cbbae3c601e", + "revision": "179598130f99437aad5c0559", "revision_nr": 1, - "created": 1701463509580, - "modified": 1701463509580 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63507,14 +72573,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 5, "installments_payable": 3 }, - "revision": "d7b0c43cadb94f48bad59dbb", + "revision": "282eb344e6f24ed4b9dff3eb", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63522,10 +72588,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696861218511", - "revision": "b929f48194cc47bf9fe9ed72", + "revision": "1718c7cd88e64008b886c485", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63541,9 +72607,18 @@ "total_amount": 290, "id": "1696861218511", "history_id": "1696861218511", - "date_created": "2023-10-09T14:20:18.511Z", - "date_last_updated": "2023-10-09T14:20:18.511Z", - "date_of_expiration": "2023-10-09T14:20:18.511Z", + "date_created": { + "type": 6, + "value": 1696861218511 + }, + "date_last_updated": { + "type": 6, + "value": 1696861218511 + }, + "date_of_expiration": { + "type": 6, + "value": 1696861218511 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -63551,10 +72626,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "3aaf244fafa64695a3ebbe44", + "revision": "25bdd4fa717849bb8937fc3c", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63562,10 +72637,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 5 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "b8760b738a3743e08afe2897", + "revision": "26b7ef5b0dff4381a6fbe71d", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63573,10 +72648,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "70105ba8cb094628a24f3192", + "revision": "62f9facaf0654e2580465b09", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63588,10 +72663,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "640977d455c44c6eb9229461", + "revision": "b71415635b9744479fa0fdf0", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63605,15 +72680,18 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid" }, - "revision": "9936482c0bab44989c427f3d", + "revision": "c01742a82a1c461ba26fab25", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63621,10 +72699,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "d858f0504f5d4342b9647941", + "revision": "911291478ab74b97a40d2597", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63632,10 +72710,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f1d13f068c1a49f380600945", + "revision": "ab8086eff8d844de8694bfcd", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63643,10 +72721,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "faf90fd89581410c87b6d438", + "revision": "c58c2fbda5024170ad3271be", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63658,10 +72736,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "c31ffb7934214819802e080b", + "revision": "0af74db24ff146a2b56d14eb", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63675,15 +72753,18 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid" }, - "revision": "d3337c753d7442cb86d093f0", + "revision": "241d8d34ed1348e891c78111", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63691,10 +72772,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "f8a4961314234d50be0ad3f4", + "revision": "c94e978f32154f2c91f3bbe5", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63702,10 +72783,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "5513183481c14cd38d9996b8", + "revision": "2fa31e79386c4a799881f680", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63717,10 +72798,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "15e676302a7e40158b98bbd1", + "revision": "976ee6e00f0d40f8ae6e2de5", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63734,15 +72815,18 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": "2023-05-17T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid" }, - "revision": "5f12470c308c47f9846e3f66", + "revision": "0f503d54dfaf4a949b9de83a", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63750,10 +72834,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "0d6ca59902c84212877c8d9e", + "revision": "fcff552968d3474281cfaf2d", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63761,10 +72845,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "24c760d394aa46cb843a3cde", + "revision": "2a42d1e100a843f0b26ed51b", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63776,10 +72860,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 5 }, - "revision": "b6129fd53cae464b8114924b", + "revision": "5442b1be230844fb8437606b", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63793,15 +72877,18 @@ "total_amount": 255, "installments": 1, "installment_amount": 255, - "date_created": "2023-05-21T09:36:15.049Z", + "date_created": { + "type": 6, + "value": 1684661775049 + }, "history_id": 1684661775049, "currency_id": "BRL", "status": "paid" }, - "revision": "8bbfb442fdd344c8a7053910", + "revision": "a0ec8c8618284a91b4fdd334", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63809,10 +72896,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 255,00", - "revision": "eaf8c3e95cdd44bdaeb45635", + "revision": "59141fd39c5448158ad98d52", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63820,10 +72907,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "8268322f97d141ce9bea947e", + "revision": "700021a65574481f952a5b15", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63831,10 +72918,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4b0f95b03f344208b59d5116", + "revision": "5201bd37188243f6a976c98a", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63846,10 +72933,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "212490ae4b74469e8b2ecf6e", + "revision": "6ea56113a5c3486395c584cc", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63863,15 +72950,18 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid" }, - "revision": "076470166fb547049b97924c", + "revision": "61feafeecd764645a8fdcdc8", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63879,10 +72969,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "f6039631e9e045628f8127c9", + "revision": "ed5216ac1a0a4a38b26e9d2e", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63890,10 +72980,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "483126a890f24a8f9a41f44f", + "revision": "5676015e91bc4ca7adb29acb", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63905,10 +72995,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "bc112ff7a8e44fd1957849b2", + "revision": "c80ebe99f7bd4585956afbf5", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63922,15 +73012,18 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": "2023-05-17T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid" }, - "revision": "22a5d63535f4434e8fca18b5", + "revision": "db50a38940ca43da8ef86950", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63938,10 +73031,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "1985ad16b185453da8492e38", + "revision": "163339454c5c4e939c31959c", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63949,10 +73042,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "311f97b3c75e483c9ef3c3c3", + "revision": "87535c38e15f411aad796985", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63960,10 +73053,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f3c3ea0bb690488cb15f2a7a", + "revision": "ff84678b7aae4426a3a9071c", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63975,10 +73068,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "0564d19498df4a9db2c2f104", + "revision": "10f88b9e340c49cb81c1c161", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -63992,15 +73085,18 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid" }, - "revision": "69d87d1a20b44e8089147b1e", + "revision": "221a82466bf247298f8d7fe7", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64008,10 +73104,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "a95b2aa0e62b4cc5b73855c3", + "revision": "b88874c16d2047898b8d6d44", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64019,10 +73115,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "c280f21496cf43538f4fefc0", + "revision": "44b4e6f21b9f4c739cf8d10f", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64034,10 +73130,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "cd285f770d4c4785955446e6", + "revision": "956862b89e804dd98fdb99b9", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64051,15 +73147,18 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": "2023-05-17T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid" }, - "revision": "9fcef30f86d34dd1a8af746b", + "revision": "2cb2481938eb4c129b6add9f", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64067,10 +73166,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "c007d68a491b4112a03ee3d6", + "revision": "ce1c6eba25154df39b38d272", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64078,10 +73177,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e14e7ffb0b004f77b617e5b1", + "revision": "b1615198d8224cb9aa5fbad3", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64089,10 +73188,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "09ae40905da544a5b671645a", + "revision": "dcf3def86ce845898b58d1e7", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64104,10 +73203,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "f6cc0639909c4fcab89e567e", + "revision": "b8e6353c28254c84907be1a8", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64121,16 +73220,22 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-13T17:48:10.497Z" + "date_last_updated": { + "type": 6, + "value": 1694627290497 + } }, - "revision": "7cda8d59eaa8499996f39be3", + "revision": "d4a204254af6450eb27bfb38", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64138,10 +73243,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "de4772a362bc4ce99dfaa030", + "revision": "c59ad3783d1646ecb1e40350", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64149,10 +73254,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "92bb792491c647c5a985f4e6", + "revision": "31077d57428140db8882d389", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64164,10 +73269,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "73f879b9db4b4b41b310a57e", + "revision": "0b7910646fd547d4ab050b85", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64181,16 +73286,22 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": "2023-05-17T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-13T17:48:10.583Z" + "date_last_updated": { + "type": 6, + "value": 1694627290583 + } }, - "revision": "c09d8d6ad7744a0fb61e4e11", + "revision": "d4ce8f9a29fa4b4d8833dd51", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64198,10 +73309,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "3c5bcb3a0bc84742a0579c70", + "revision": "9184ee39c94b431bacef88d9", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64209,10 +73320,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f81f3e18d1854c2b83d5064e", + "revision": "b194eae2007f485baf5c6986", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64220,10 +73331,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "553d08d3cdb94412b9639b09", + "revision": "d3d55d10e9db4d1781195612", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64235,10 +73346,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "0c722243632840958b5603f5", + "revision": "984c4474aa8e4987b2e9afae", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64252,16 +73363,22 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-10-09T14:20:18.119Z" + "date_last_updated": { + "type": 6, + "value": 1696861218119 + } }, - "revision": "64301a7bfdd9409380ba0c9b", + "revision": "a6940973bc884673a91e2382", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64269,10 +73386,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "ea7b26ca011a4e35abdd3dca", + "revision": "a67694cfdd784f488541da89", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820557, + "modified": 1701465820557 } }, { @@ -64280,10 +73397,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "d857b255aced432989593339", + "revision": "6585f4144cb84baaa8bb0ba8", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64295,10 +73412,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "c62535f445d544a2ac902054", + "revision": "dab2a2a23bba4de0941f226b", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64312,16 +73429,22 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": "2023-05-17T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-10-09T14:20:18.540Z" + "date_last_updated": { + "type": 6, + "value": 1696861218540 + } }, - "revision": "136a3d0e76e64f109f42233e", + "revision": "26a3e8dd63ea435d80e08c93", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64329,10 +73452,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "3f97a9d42dba4cbe8ca36136", + "revision": "7c353d552af04a5eb5677a55", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64340,10 +73463,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b15343f6cb1440a58652f242", + "revision": "584b1e6a623441ae8f0d4f78", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64351,10 +73474,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "acb02d5d7a0d486390464ca5", + "revision": "e705f88d3fdb4999a6c5247b", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64366,10 +73489,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "46069d123f974385841709f9", + "revision": "4d82f781e0dd4cad8e516726", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64383,14 +73506,17 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL" }, - "revision": "de80a92774494cb7bdeb294c", + "revision": "7fed518f339a4bc6964cd613", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64398,10 +73524,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "9979e235a1894f86b5f874bc", + "revision": "f991443ea3c0423a89464764", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64409,10 +73535,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "67d7003acc8f4b59abf70a48", + "revision": "fb96b2cc3bde493ca12ff4aa", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64424,10 +73550,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "77c90e04178d42f8a568a40c", + "revision": "aad9ba154a014591a2fe4fdb", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64441,14 +73567,17 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": "2023-05-17T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL" }, - "revision": "4193ed01bbb841ab880e6897", + "revision": "2c755a48e5fb418f94d2473f", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64456,10 +73585,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "ba6cdbed8ba94908a74cb9d7", + "revision": "08d94cd5b2954b3db5c88076", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64467,10 +73596,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "de06ad2d3e1347da99757b1f", + "revision": "61a64dd65b2d4060aaac462a", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64478,10 +73607,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e453792d3f3d42df972e1ba7", + "revision": "642f11553c5b401ea778f126", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64493,10 +73622,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "078115754f19496c8fae268e", + "revision": "bcf8cb91174f4a57a3221fd4", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64510,14 +73639,17 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL" }, - "revision": "bdeafa4e4fc04ee0bee176a1", + "revision": "175201e05f904bc6b96fb397", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64525,10 +73657,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "09cabf88edde4e7d8e27166f", + "revision": "d489cfa85e534da2aa0fd5d8", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64536,10 +73668,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "86472cab23f24d0aa91af467", + "revision": "fcc744b49861443b9503b4af", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64551,10 +73683,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "fa02d1f7458a40128b03478c", + "revision": "a10bf27babc747399e65d9b3", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64568,14 +73700,17 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": "2023-05-17T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL" }, - "revision": "f0a1b672cd5e423ea8591594", + "revision": "9e975203e33d43d499a79a37", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64583,10 +73718,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "9c660aaac7974d90885a344a", + "revision": "0653dfd75a2e41068f920da8", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64594,10 +73729,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e75163c5a42547f1b48601b0", + "revision": "aa654b1ae03148789eed8f2e", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64605,10 +73740,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fd7fd145730a4d01bde5ae3e", + "revision": "26306f0aee6a4914a72383d5", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64620,10 +73755,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "053a85bd15cd41a5b5bd836c", + "revision": "886314bea8424c0caf2ef3c5", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64637,14 +73772,17 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL" }, - "revision": "5c31ea395d404d119ee7a283", + "revision": "901a39c422214e8c8def4c8f", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64652,10 +73790,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "8c97dbdbf60e422ab7f5deec", + "revision": "c963a114b466444785f2572a", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64663,10 +73801,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "16a5615a3d66454b8b3e1041", + "revision": "866add7676584761b9e05fa6", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64678,10 +73816,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "49dad4affcad44018c313236", + "revision": "7d1ab24db0ee4ba48a042ad7", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64695,14 +73833,17 @@ "total_amount": 2320, "installments": 8, "installment_amount": 290, - "date_created": "2023-05-17T23:55:21.554Z", + "date_created": { + "type": 6, + "value": 1684367721554 + }, "history_id": 1684367721554, "currency_id": "BRL" }, - "revision": "6d280062e5d7425f88cf1e9a", + "revision": "4e535a24b64143ed8048298f", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64710,10 +73851,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "d5876f0792154d4aa7632c34", + "revision": "3b98e263470e4acbad549950", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64721,10 +73862,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f11ea18cb095478cb3206b26", + "revision": "fccb6c34534d459397ad83ac", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64732,10 +73873,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "53f9e068d873484f8709cb15", + "revision": "6b40ebbfe1234fbdb6adec4e", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64747,10 +73888,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "e733f15e6c0b46398505cca9", + "revision": "0e53b3fac0d649b1ae699db7", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64764,14 +73905,17 @@ "total_amount": 12000, "installments": 10, "installment_amount": 1200, - "date_created": "2023-04-04T01:19:18.806Z", + "date_created": { + "type": 6, + "value": 1680571158806 + }, "history_id": 1680571158806, "currency_id": "BRL" }, - "revision": "5705eddb3e9549a4a61c0363", + "revision": "a0a1f521abc54ee98853e965", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64779,10 +73923,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "10b2656133ff4d1e8447eec4", + "revision": "51db7197d941446780ed10b8", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64790,10 +73934,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "88db892cbf0b46b2943368de", + "revision": "9daecbb1dbef405a88644139", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64801,10 +73945,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "df1e9e08f1014ad5904e2a73", + "revision": "81e6b77d4df148739b8a65e7", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64812,10 +73956,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fcf72ad7fd8145c18dfc5a9f", + "revision": "9c5ce5783e6240eb98528394", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64825,13 +73969,19 @@ "value": { "approvedLimit": 10000, "limitUsed": 7250, - "analysisRequested": "2023-04-04T01:13:28.027Z", - "lastReview": "2023-04-08T18:26:33.740Z" + "analysisRequested": { + "type": 6, + "value": 1680570808027 + }, + "lastReview": { + "type": 6, + "value": 1680978393740 + } }, - "revision": "156121940a4d4c7daf83f573", + "revision": "a074f6fa09324ccc84b29c7b", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64843,12 +73993,15 @@ "dateValidity": 1680465637248, "totalValue": 7716.736, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } }, - "revision": "ce8db0000285491f99620be5", + "revision": "babeb8b8c8544efa8873d7f2", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64856,10 +74009,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0f8cb20a133e4ae7a006f0e2", + "revision": "7b87957771694dcc9f5a993a", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64867,10 +74020,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c1c3a96a2c7a4250aae050ea", + "revision": "ad9b24adcbcb425ebab4b8b9", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64878,10 +74031,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "33428767dc7745ed9e944ce0", + "revision": "1a0528ed4cf2483e9a6d1d14", "revision_nr": 1, - "created": 1701463509581, - "modified": 1701463509581 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64892,10 +74045,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "cb952f68464d43319c2ccc6c", + "revision": "ccf201c6b7de40efb52cfba6", "revision_nr": 1, - "created": 1701463509582, - "modified": 1701463509582 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64908,10 +74061,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "abaeadb0938649c69972ebd6", + "revision": "f57fd8574f6d4cbc961dbb1d", "revision_nr": 1, - "created": 1701463509582, - "modified": 1701463509582 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64919,10 +74072,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "98a27433a828438b85f38a3d", + "revision": "b718b3af5567478986657ec3", "revision_nr": 1, - "created": 1701463509582, - "modified": 1701463509582 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64930,10 +74083,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f853c78a9346495eb70d2403", + "revision": "7de273b53d9442629a5d88c5", "revision_nr": 1, - "created": 1701463509582, - "modified": 1701463509582 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64946,10 +74099,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "debb5de613d04474938723d5", + "revision": "0782485fccdd41af9c46d16b", "revision_nr": 1, - "created": 1701463509582, - "modified": 1701463509582 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64957,10 +74110,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2dae1bf596b544a89f515d12", + "revision": "e9e3bcb76a6e4799968e8b1b", "revision_nr": 1, - "created": 1701463509582, - "modified": 1701463509582 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64968,10 +74121,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3f49d59a1cfe4d7ca3d74f98", + "revision": "90ad1921e65a45bfbff0826f", "revision_nr": 1, - "created": 1701463509582, - "modified": 1701463509582 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64979,10 +74132,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b1b3d9c2b59d4af59d08bc7d", + "revision": "86e7c346fefd45bab3e69bb9", "revision_nr": 1, - "created": 1701463509582, - "modified": 1701463509582 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -64993,10 +74146,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "f148e076b4f14160820c196e", + "revision": "3c20d01bf1f3465d85d00914", "revision_nr": 1, - "created": 1701463509582, - "modified": 1701463509582 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65009,10 +74162,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "104efa5957fb4322b5d4bc3e", + "revision": "7038507849db4c398e32c239", "revision_nr": 1, - "created": 1701463509582, - "modified": 1701463509582 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65020,10 +74173,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "911514a21e504597a1b117b9", + "revision": "6f1d78142aec4acf8e071008", "revision_nr": 1, - "created": 1701463509582, - "modified": 1701463509582 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65031,12 +74184,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "ffe78baf2ad0497d97ded48d", + "revision": "716dec5eebac445c897398cb", "revision_nr": 1, - "created": 1701463509582, - "modified": 1701463509582 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65051,22 +74204,37 @@ "total_amount": 1700, "history_id": 1683387433855, "id": 1683387433855, - "date_created": "2023-05-06T15:37:13.855Z", - "date_last_updated": "2023-05-06T17:20:32.539Z", - "date_of_expiration": "2023-06-05T15:37:13.855Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-06T17:20:32.539Z", - "money_release_date": "2023-05-06T17:20:32.539Z", + "date_created": { + "type": 6, + "value": 1683387433855 + }, + "date_last_updated": { + "type": 6, + "value": 1683393632539 + }, + "date_of_expiration": { + "type": 6, + "value": 1685979433855 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683393632539 + }, + "money_release_date": { + "type": 6, + "value": 1683393632539 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "daff5cccb90c46c68ee34829", + "revision": "e2c5eedd77ad4cacab70afe7", "revision_nr": 1, - "created": 1701463509582, - "modified": 1701463509582 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65074,10 +74242,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.700,00 para a carteira iVip 1017.8820.3938.8364-80", - "revision": "d56fab388a04437b96bc1919", + "revision": "dace1b1dcac54b65903f05d3", "revision_nr": 1, - "created": 1701463509582, - "modified": 1701463509582 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65085,12 +74253,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "2e5d15ccd5d14fa895fcf511", + "revision": "f9aafe009c3a497db4f76827", "revision_nr": 1, - "created": 1701463509582, - "modified": 1701463509582 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65105,22 +74273,37 @@ "total_amount": 1000, "history_id": 1683729448058, "id": 1683729448058, - "date_created": "2023-05-10T14:37:28.058Z", - "date_last_updated": "2023-05-10T14:48:52.161Z", - "date_of_expiration": "2023-06-09T14:37:28.058Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-10T14:48:52.161Z", - "money_release_date": "2023-05-10T14:48:52.161Z", + "date_created": { + "type": 6, + "value": 1683729448058 + }, + "date_last_updated": { + "type": 6, + "value": 1683730132161 + }, + "date_of_expiration": { + "type": 6, + "value": 1686321448058 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683730132161 + }, + "money_release_date": { + "type": 6, + "value": 1683730132161 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "be59df0414944a63be4367ca", + "revision": "b5113fa86e5e4e27962e0601", "revision_nr": 1, - "created": 1701463509582, - "modified": 1701463509582 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65128,10 +74311,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1017.8820.3938.8364-80", - "revision": "2c381e0ba9fb42109702fd59", + "revision": "4d8699d04903458aa822801c", "revision_nr": 1, - "created": 1701463509582, - "modified": 1701463509582 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65149,12 +74332,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "bed96ea4d40240eebf80b006", + "revision": "d51f12989f7f443d814c2e4a", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65170,9 +74353,18 @@ "original_amount": 14591858, "total_amount": 14591858, "id": 1684018976722, - "date_created": "2023-05-13T23:02:56.722Z", - "date_last_updated": "2023-05-13T23:02:56.722Z", - "date_of_expiration": "2023-05-13T23:02:56.722Z", + "date_created": { + "type": 6, + "value": 1684018976722 + }, + "date_last_updated": { + "type": 6, + "value": 1684018976722 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018976722 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65181,10 +74373,10 @@ "history_id": 1684018976722, "description": "Compra de 14.591.858,00 IVIP por 2.700,00 BRL" }, - "revision": "87035849a4c14dd5976a71c2", + "revision": "21fa3e3ebae7460d93d0f020", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65192,12 +74384,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "f579a7436c7e4be09275d250", + "revision": "a65bbfaaab5a48f893f77596", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65212,18 +74404,27 @@ "total_amount": 14591858, "history_id": 1686488141706, "id": 1686488141706, - "date_created": "2023-06-11T12:55:41.706Z", - "date_last_updated": "2023-06-11T12:55:41.706Z", - "date_of_expiration": "2023-06-11T12:55:41.706Z", + "date_created": { + "type": 6, + "value": 1686488141706 + }, + "date_last_updated": { + "type": 6, + "value": 1686488141706 + }, + "date_of_expiration": { + "type": 6, + "value": 1686488141706 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "1b5bd3ef708344b4bc441888", + "revision": "c97a3029df4f4dbbb3c2525c", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65231,10 +74432,10 @@ "content": { "type": "STRING", "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "dbfcd7b7adfb4401aa65e647", + "revision": "6a81e621213947e1bc119252", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65242,12 +74443,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "6ca0d0bbc89a48e1a32e81e8", + "revision": "7d99b52793354ae8862ca1bf", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65262,18 +74463,27 @@ "total_amount": 14591858, "history_id": 1686581079256, "id": 1686581079256, - "date_created": "2023-06-12T14:44:39.256Z", - "date_last_updated": "2023-06-12T14:44:39.256Z", - "date_of_expiration": "2023-06-12T14:44:39.256Z", + "date_created": { + "type": 6, + "value": 1686581079256 + }, + "date_last_updated": { + "type": 6, + "value": 1686581079256 + }, + "date_of_expiration": { + "type": 6, + "value": 1686581079256 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "38b0a0cbd053420ebf0e9e03", + "revision": "b7faa0cbe720482a88c20cc3", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65281,10 +74491,10 @@ "content": { "type": "STRING", "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "ac46945a076f4e09acf1415d", + "revision": "e9a3c808bd414b00a698359a", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65292,12 +74502,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "37a10955fc41412c93ebc1b1", + "revision": "418ece975087467ba46b3622", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65312,18 +74522,27 @@ "total_amount": 14591858, "history_id": 1686647052098, "id": 1686647052098, - "date_created": "2023-06-13T09:04:12.098Z", - "date_last_updated": "2023-06-13T09:04:12.098Z", - "date_of_expiration": "2023-06-13T09:04:12.098Z", + "date_created": { + "type": 6, + "value": 1686647052098 + }, + "date_last_updated": { + "type": 6, + "value": 1686647052098 + }, + "date_of_expiration": { + "type": 6, + "value": 1686647052098 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "9a6898a339564b65835c3049", + "revision": "ae1f7da0546041a9bf82a2ce", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65331,10 +74550,10 @@ "content": { "type": "STRING", "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "4d23f17f1553414d94f56b52", + "revision": "6ba03871db5f4e828fab93cd", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65342,12 +74561,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "e19d6bec4b6e47eea315dcb4", + "revision": "03db37d04a3d44fbbe13a1cf", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65362,22 +74581,37 @@ "total_amount": 14591858, "history_id": 1686750536224, "id": 1686750536224, - "date_created": "2023-06-14T13:48:56.224Z", - "date_last_updated": "2023-06-15T21:42:14.419Z", - "date_of_expiration": "2023-06-14T13:48:56.224Z", + "date_created": { + "type": 6, + "value": 1686750536224 + }, + "date_last_updated": { + "type": 6, + "value": 1686865334419 + }, + "date_of_expiration": { + "type": 6, + "value": 1686750536224 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-06-15T21:42:14.419Z", - "money_release_date": "2023-06-15T21:42:14.419Z", + "date_approved": { + "type": 6, + "value": 1686865334419 + }, + "money_release_date": { + "type": 6, + "value": 1686865334419 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "8e22d5f206b14fcca1fa6f17", + "revision": "dc7e00f973084967bfe67950", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65385,10 +74619,10 @@ "content": { "type": "STRING", "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "63aa47cdc87944cf846cdcf0", + "revision": "437f21d7c9254d9699324340", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65396,12 +74630,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "bceba31dfd9a4734936ec23f", + "revision": "37c4153f2b274e51a0a222f4", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65416,18 +74650,27 @@ "total_amount": 14591858, "history_id": 1686865268655, "id": 1686865268655, - "date_created": "2023-06-15T21:41:08.655Z", - "date_last_updated": "2023-06-15T21:41:08.655Z", - "date_of_expiration": "2023-06-15T21:41:08.655Z", + "date_created": { + "type": 6, + "value": 1686865268655 + }, + "date_last_updated": { + "type": 6, + "value": 1686865268655 + }, + "date_of_expiration": { + "type": 6, + "value": 1686865268655 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "03ac87c6ef614b6686c512ea", + "revision": "c7161b7b580e49359039c693", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65435,10 +74678,10 @@ "content": { "type": "STRING", "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "a1849edf656b4565b0cb5cbc", + "revision": "957a5e359df44b2b913df9cf", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65446,10 +74689,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9440545a6e0f48cd9760f3ac", + "revision": "672377aa7a7946b89c78e5ae", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65457,10 +74700,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8f22df5aac394385a48f87b3", + "revision": "be683b13c4c6431a82bfed9c", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65470,12 +74713,15 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-09-14T17:27:37.445Z" + "analysisRequested": { + "type": 6, + "value": 1694712457445 + } }, - "revision": "25c3f391cb614a1d8b264832", + "revision": "74626fe89e6b4da2bf226149", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65487,12 +74733,15 @@ "dateValidity": 1683247685722, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": "2023-09-25T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1695610800000 + } }, - "revision": "617d1b114b0e4fbfb33a248d", + "revision": "10f2ddbb1bef4103b92e8ab7", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65500,10 +74749,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "09e5863197284e0cbcfb1297", + "revision": "5f598cfb35a64e55a1241bc9", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65511,10 +74760,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3c68d6a593cd434085526dc5", + "revision": "8d137eba7190427eb17da4f7", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65527,10 +74776,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "db706cf224784ba5a2457a21", + "revision": "43c249d90ea6479d8649a993", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65538,10 +74787,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "106893fa0b214930ab6c75a9", + "revision": "6aaca4c2645646abbe54d4d3", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65549,10 +74798,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "716737afaaa545e2b8f2e8d3", + "revision": "a95cc44e75d9464f8ae4704f", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65565,10 +74814,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "0921263c6cf34969a03988a4", + "revision": "8ddbaebec46a4e699e6cf807", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65576,10 +74825,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "31b22a5cc8394daba921af37", + "revision": "3b1ea8b1e79f497fb09c5884", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65587,10 +74836,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9651f975d81746f0b3c32762", + "revision": "401045a619574efb9b566679", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65603,10 +74852,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "5c92577468074b599e9ed533", + "revision": "336a3168291546458645e531", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65614,10 +74863,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "bc08cdb4dbef4a04995b573b", + "revision": "98a0895604b644a08ff94fbb", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65625,10 +74874,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "00e8542315b64a6893ef5aec", + "revision": "e80b4257d0174c5e98679130", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65640,10 +74889,10 @@ "dateValidity": 1696096916164, "currencyType": "USD" }, - "revision": "cb14d69c3d05478c90686f93", + "revision": "f25570bd01a3466f948489d8", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65651,10 +74900,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b7b07b5fb13b40c0b4c5797c", + "revision": "33f0ab8ef0bb4b31a960660a", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65662,10 +74911,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2f3ff5dcc7ef405aae6b049c", + "revision": "30bda68bcbc74441bfcb60ec", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65678,10 +74927,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "c6bd41f1b08a4aa296589486", + "revision": "e41948ba223843f8957708e4", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65693,10 +74942,10 @@ "available": "0.00000000", "value": 0 }, - "revision": "c4efc82b5f214f809195054b", + "revision": "0c7fccb1ff40479d89ab81eb", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65708,10 +74957,10 @@ "available": "0.00000000", "value": 0 }, - "revision": "b29e2543b90b4c8e8696bd15", + "revision": "384df6218304442c95bea8a1", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65719,10 +74968,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2cd08bb04a444bb7a80ddb4b", + "revision": "4281d389dd424fd98bddc7da", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65730,12 +74979,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "cd4c9b7cae0c4e598f98726e", + "revision": "e88faeec7c89486cbbd80065", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65750,22 +74999,37 @@ "total_amount": 50, "history_id": 1684170542717, "id": 1684170542717, - "date_created": "2023-05-15T17:09:02.717Z", - "date_last_updated": "2023-05-15T21:30:21.404Z", - "date_of_expiration": "2023-06-14T17:09:02.717Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-15T21:30:21.404Z", - "money_release_date": "2023-05-15T21:30:21.404Z", + "date_created": { + "type": 6, + "value": 1684170542717 + }, + "date_last_updated": { + "type": 6, + "value": 1684186221404 + }, + "date_of_expiration": { + "type": 6, + "value": 1686762542717 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684186221404 + }, + "money_release_date": { + "type": 6, + "value": 1684186221404 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "9815a8c6317d4cc4a065f7dc", + "revision": "7707539cba754bf5b2e0f26d", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65773,10 +75037,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 50,00 para a carteira iVip 1069.0089.6878.2698-70", - "revision": "5ddbad01fe3f4097849011de", + "revision": "0094cf42f48a4ba981d040c6", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65794,12 +75058,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "87e6a57b679046dc832a18bf", + "revision": "f92beddc8d514920982b708e", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65815,9 +75079,18 @@ "original_amount": 243536, "total_amount": 243536, "id": 1684624294208, - "date_created": "2023-05-20T23:11:34.208Z", - "date_last_updated": "2023-05-20T23:11:34.208Z", - "date_of_expiration": "2023-05-20T23:11:34.208Z", + "date_created": { + "type": 6, + "value": 1684624294208 + }, + "date_last_updated": { + "type": 6, + "value": 1684624294208 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624294208 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -65826,10 +75099,10 @@ "history_id": 1684624294208, "description": "Compra de 243.536,00 IVIP por 50,00 BRL" }, - "revision": "b492c9465db44a198b5cccbe", + "revision": "0ce89941d18d4572a237c83f", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65837,12 +75110,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "eb3d4ea8824046be99a53e9f", + "revision": "65302b584a8e4c11a538d0ab", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65857,22 +75130,37 @@ "total_amount": 243536, "history_id": 1688846842830, "id": 1688846842830, - "date_created": "2023-07-08T20:07:22.830Z", - "date_last_updated": "2023-07-08T20:08:12.432Z", - "date_of_expiration": "2023-07-08T20:07:22.830Z", + "date_created": { + "type": 6, + "value": 1688846842830 + }, + "date_last_updated": { + "type": 6, + "value": 1688846892432 + }, + "date_of_expiration": { + "type": 6, + "value": 1688846842830 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-07-08T20:08:12.432Z", - "money_release_date": "2023-07-08T20:08:12.432Z", + "date_approved": { + "type": 6, + "value": 1688846892432 + }, + "money_release_date": { + "type": 6, + "value": 1688846892432 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "a35893961c3e4101800aa235", + "revision": "d1828d75d0ca4af7a489c1c3", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65880,10 +75168,10 @@ "content": { "type": "STRING", "value": "Saque de 243.536,00 IVIP para a carteira 0x58120E330A738FD12B195740b06B7792A5C7DD7D", - "revision": "dfaa6e8fbb3d440299febe6b", + "revision": "9701c6750abe4c258fa08699", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65891,10 +75179,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f47b29c98031477aa935ad15", + "revision": "34ad3285abfa46ddb518fe6a", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65902,10 +75190,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "bead4707515b407982202607", + "revision": "50abda1ad7934fbf909974f1", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65916,10 +75204,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "eb71041209d94850b4bb96e8", + "revision": "5bf83dec19af46e78ec094fd", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65932,10 +75220,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "e575083a0d5641f0bda25973", + "revision": "02b105685539477f91db8fb6", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65943,10 +75231,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f27f50f6775a4221a77ea0ee", + "revision": "bc765069dfbd430991442be2", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65954,10 +75242,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fc514d55e9b84c75b33c0ccd", + "revision": "a454181c121c4377a3d2ce80", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65970,10 +75258,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "067e4e7e231e4bd5b391d634", + "revision": "6ce58bf9cb7b439795527e85", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65981,10 +75269,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1cc3e2cb20804e068437f704", + "revision": "6042f2b4d8b3400ca046bcae", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -65992,10 +75280,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "51f4083bf8b442049a9b5210", + "revision": "a35f59b3868a49b989fa8c49", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -66008,10 +75296,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "2977e9d58e644ba8ba917fc6", + "revision": "687d12af574b4fa4890a096a", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820558, + "modified": 1701465820558 } }, { @@ -66019,12 +75307,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "30e2eec65d134a03bc6ca448", + "revision": "8bfcf87ce4d0404194c85908", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66039,22 +75327,37 @@ "total_amount": 500, "history_id": 1684095990042, "id": 1684095990042, - "date_created": "2023-05-14T20:26:30.042Z", - "date_last_updated": "2023-05-15T03:09:26.798Z", - "date_of_expiration": "2023-06-13T20:26:30.042Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-15T03:09:26.798Z", - "money_release_date": "2023-05-15T03:09:26.798Z", + "date_created": { + "type": 6, + "value": 1684095990042 + }, + "date_last_updated": { + "type": 6, + "value": 1684120166798 + }, + "date_of_expiration": { + "type": 6, + "value": 1686687990042 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684120166798 + }, + "money_release_date": { + "type": 6, + "value": 1684120166798 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "323de7745d784128a7fd9bd8", + "revision": "f5e6bad18fd54bc5b0cfceec", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66062,10 +75365,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1100.9860.6095.8997-30", - "revision": "89cd3a7dbbd642f4ba74d9df", + "revision": "56efae51263e4d6d9d68cf2a", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66083,12 +75386,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "c724b15019bc41bebb23a97b", + "revision": "f6f6b87f4df44c3fa46102bc", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66104,9 +75407,18 @@ "original_amount": 1792114, "total_amount": 1792114, "id": 1686325443110, - "date_created": "2023-06-09T15:44:03.110Z", - "date_last_updated": "2023-06-09T15:44:03.110Z", - "date_of_expiration": "2023-06-09T15:44:03.110Z", + "date_created": { + "type": 6, + "value": 1686325443110 + }, + "date_last_updated": { + "type": 6, + "value": 1686325443110 + }, + "date_of_expiration": { + "type": 6, + "value": 1686325443110 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -66115,10 +75427,10 @@ "history_id": 1686325443110, "description": "Compra de 1.792.114,00 IVIP por 500,00 BRL" }, - "revision": "b9733d3584784f02bd0f09c5", + "revision": "088fd38536564915862bd5fd", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66134,12 +75446,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "b40774bacc36442db0931157", + "revision": "2c681d3471ac4a229a5b5616", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66147,10 +75459,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/110098606095899730/history/1690019958173", - "revision": "3d9dcec02dc94b28902b9717", + "revision": "d847c1c214e349da93f8cd3b", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66165,9 +75477,18 @@ "total_amount": 1792114, "id": 1690019958173, "history_id": 1690019958173, - "date_created": "2023-07-22T09:59:18.173Z", - "date_last_updated": "2023-07-22T09:59:18.173Z", - "date_of_expiration": "2023-07-22T09:59:18.173Z", + "date_created": { + "type": 6, + "value": 1690019958173 + }, + "date_last_updated": { + "type": 6, + "value": 1690019958173 + }, + "date_of_expiration": { + "type": 6, + "value": 1690019958173 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "pending", @@ -66175,10 +75496,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "0f2d1c74ffa048ebba910bdd", + "revision": "1a7e34637789437db3c4c335", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66186,10 +75507,10 @@ "content": { "type": "STRING", "value": "Saque de 1.792.114,00 IVIP para a carteira 0x007E69086fF7981e3fA99368fACD516952625148", - "revision": "930452dfeb094bfaab9ea114", + "revision": "ba903b3dc2814f55b3a10d4c", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66201,10 +75522,10 @@ "label": "Taxa de 3,00%", "amount": 53763.42 }, - "revision": "65749f6ce6ee43d4905198a1", + "revision": "abb8080956d944338253dac7", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66221,10 +75542,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "c08cd0f281c7428e8f57aa53", + "revision": "48e9a9b9b06d4372b482e8bc", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66232,10 +75553,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/110098606095899730/history/1694046051457", - "revision": "9e2462f32a294c3e9ccf1bb3", + "revision": "62b7643d3a724ac980998017", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66243,10 +75564,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "6651eb789ae84f5f9122bc4d", + "revision": "7b219aa14bd0473cb2401bab", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66261,24 +75582,39 @@ "total_amount": 1738350.58, "id": "1694046051457", "history_id": "1694046051457", - "date_created": "2023-09-07T00:20:51.457Z", - "date_last_updated": "2023-09-11T22:18:05.227Z", - "date_of_expiration": "2023-09-07T00:20:51.457Z", + "date_created": { + "type": 6, + "value": 1694046051457 + }, + "date_last_updated": { + "type": 6, + "value": 1694470685227 + }, + "date_of_expiration": { + "type": 6, + "value": 1694046051457 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": "2023-09-11T22:18:05.227Z", - "money_release_date": "2023-09-11T22:18:05.227Z", + "date_approved": { + "type": 6, + "value": 1694470685227 + }, + "money_release_date": { + "type": 6, + "value": 1694470685227 + }, "money_release_status": "drawee", "wasDebited": true }, - "revision": "8e9d83ef566642b69a01ddd1", + "revision": "0872f607a40f401383f3de4d", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66286,10 +75622,10 @@ "content": { "type": "STRING", "value": "Saque de 1.738.350,58 IVIP para a carteira 0x007E69086fF7981e3fA99368fACD516952625148", - "revision": "1e78156ba3f242fbb08904a0", + "revision": "04b7090c34184bda86be62d0", "revision_nr": 1, - "created": 1701463509583, - "modified": 1701463509583 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66297,10 +75633,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8c70fdeab4e54d55a99318f0", + "revision": "ef6d7aeb44b547889b184a74", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66308,10 +75644,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2a04138177d046e5b4e58d5d", + "revision": "0c57d08cd9ba4c70b30d21ec", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66322,10 +75658,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "053d5c4fdf0141e3909fbf82", + "revision": "908ecdb7a39f403e892e0457", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66337,10 +75673,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "f1d2524d2c5c4eada40041f0", + "revision": "bca1a2f05d2a48acbcc2f0c0", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66352,10 +75688,10 @@ "symbol": "IVIP", "value": 199.51 }, - "revision": "3da12cb07e374a12861a12e4", + "revision": "ca46f0de360446fcbfbb7b2d", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66363,10 +75699,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f91832d93ed34265b3ddafd4", + "revision": "5e206c127b4e43de87451887", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66378,12 +75714,15 @@ "dateValidity": 1684095886828, "totalValue": 82.74, "currencyType": "USD", - "balancesModificacao": "2023-09-11T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1694401200000 + } }, - "revision": "e20068cc66d54820a96cf837", + "revision": "a1521afe61784953aef47cbc", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66391,10 +75730,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d5c77dfa058c409a80f83331", + "revision": "e7274f19520c44a28fc2f13e", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66402,12 +75741,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "6d007b06181646c2b39cfa03", + "revision": "8723be76776341b69d8f0612", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66422,18 +75761,27 @@ "total_amount": 100, "history_id": 1684539878275, "id": 1684539878275, - "date_created": "2023-05-19T23:44:38.275Z", - "date_last_updated": "2023-05-19T23:44:38.275Z", - "date_of_expiration": "2023-06-18T23:44:38.275Z", + "date_created": { + "type": 6, + "value": 1684539878275 + }, + "date_last_updated": { + "type": 6, + "value": 1684539878275 + }, + "date_of_expiration": { + "type": 6, + "value": 1687131878275 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "61a71919508948c79097d495", + "revision": "ed556690fc004783844f3559", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66441,10 +75789,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1101.2161.6136.6665-00", - "revision": "6504821c319043a7baf723db", + "revision": "2bfd081ae3664b6f88521ab5", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66452,10 +75800,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9e72944ad2e34f0c837a7ef7", + "revision": "4606e3433fc240979aea9f35", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66463,10 +75811,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "de3d703d13e7455eafcef6de", + "revision": "069bb182aacf461a874c39fc", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66477,10 +75825,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "4be47986fe8a43fabb6f4d32", + "revision": "02586abeeaf943cf86fba1f4", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66493,10 +75841,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "a7dab8492ded409d8fca2fb7", + "revision": "4c0c23b1b18c465c9e2b021a", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66504,10 +75852,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "250a793d0bba4c66861f65ac", + "revision": "26f5073ce88a4496bb8666c0", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66515,10 +75863,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "62466d0cb0d146d68b2d80fd", + "revision": "8927f618b906405c95a9850e", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66531,10 +75879,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "053666f49db743cbb6da727e", + "revision": "a92ec497599641a589d644f6", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66546,10 +75894,10 @@ "value": 0.132, "available": "0.66666666" }, - "revision": "e425a07db678484193132997", + "revision": "0ff4836ef1c44679aafab553", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66561,10 +75909,10 @@ "value": 0, "available": "0.00000000" }, - "revision": "b72d09a5efc84c32a1a81890", + "revision": "b8e56950a1544303812748b9", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66572,10 +75920,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2ccfa8f9cdd0466fa07e6fcb", + "revision": "92e2d13089ae4cbb9578804e", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66593,12 +75941,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b00c09eb960b4db9abb74f99", + "revision": "18ffba16808a4e9dba3f205c", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66614,9 +75962,18 @@ "original_amount": 1594392, "total_amount": 1594392, "id": 1678154662168, - "date_created": "2023-03-07T02:04:22.168Z", - "date_last_updated": "2023-03-07T02:04:22.168Z", - "date_of_expiration": "2023-03-07T02:04:22.168Z", + "date_created": { + "type": 6, + "value": 1678154662168 + }, + "date_last_updated": { + "type": 6, + "value": 1678154662168 + }, + "date_of_expiration": { + "type": 6, + "value": 1678154662168 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -66625,10 +75982,10 @@ "history_id": 1678154662168, "description": "Compra de 1594392 IVIP por 223 BRL" }, - "revision": "942a9b2b75e24836ae8cbd62", + "revision": "f59b73d4f98e498196229ed3", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66636,12 +75993,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "e3ce3f8fbeaf4cc88ec46da5", + "revision": "2f1535e7b93f452c900d0dd6", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66656,22 +76013,37 @@ "total_amount": 223, "history_id": 1677860043639, "id": 1677860043639, - "date_created": "2023-03-03T16:14:03.639Z", - "date_last_updated": "2023-03-03T16:28:35.639Z", - "date_of_expiration": "2023-04-02T16:14:03.639Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-03T16:28:35.639Z", - "money_release_date": "2023-03-03T16:28:35.639Z", + "date_created": { + "type": 6, + "value": 1677860043639 + }, + "date_last_updated": { + "type": 6, + "value": 1677860915639 + }, + "date_of_expiration": { + "type": 6, + "value": 1680452043639 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677860915639 + }, + "money_release_date": { + "type": 6, + "value": 1677860915639 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "307b209930f84e6bb30ab13b", + "revision": "f11140127e064c82b6f96471", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66679,10 +76051,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 223,00 para a carteira iVip 1105.2091.7322.8272-00", - "revision": "a3abeacdfdbf499c80e2e47e", + "revision": "ef9cbc89c8494618ab2bbb1e", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66700,12 +76072,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "12623a58ac17491d82d95e72", + "revision": "11204d4fd3b3423ea41849b7", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66721,9 +76093,18 @@ "original_amount": 2760078, "total_amount": 2760078, "id": 1680547247302, - "date_created": "2023-04-03T18:40:47.302Z", - "date_last_updated": "2023-04-03T18:40:47.302Z", - "date_of_expiration": "2023-04-03T18:40:47.302Z", + "date_created": { + "type": 6, + "value": 1680547247302 + }, + "date_last_updated": { + "type": 6, + "value": 1680547247302 + }, + "date_of_expiration": { + "type": 6, + "value": 1680547247302 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -66732,10 +76113,10 @@ "history_id": 1680547247302, "description": "Compra de 2.760.078,00 IVIP por 500,00 BRL" }, - "revision": "8d13ba76e46441cd86494ee9", + "revision": "764e098a4d954b18a2dedac4", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66743,12 +76124,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "21284c3babb145ebbc83d50b", + "revision": "6e246a050a5749719bfd815c", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66763,22 +76144,37 @@ "total_amount": 52, "history_id": 1684007108709, "id": 1684007108709, - "date_created": "2023-05-13T19:45:08.709Z", - "date_last_updated": "2023-05-13T19:55:29.125Z", - "date_of_expiration": "2023-06-12T19:45:08.709Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-13T19:55:29.125Z", - "money_release_date": "2023-05-13T19:55:29.125Z", + "date_created": { + "type": 6, + "value": 1684007108709 + }, + "date_last_updated": { + "type": 6, + "value": 1684007729125 + }, + "date_of_expiration": { + "type": 6, + "value": 1686599108709 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684007729125 + }, + "money_release_date": { + "type": 6, + "value": 1684007729125 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "1ae9bdfe0fd04fa9b1221889", + "revision": "76a882e40a524690a94aeb75", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66786,10 +76182,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 52,00 para a carteira iVip 1105.2091.7322.8272-00", - "revision": "2ee86c1a071f40d3bc4dac52", + "revision": "73610606979a4cecbc2371d5", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66809,12 +76205,12 @@ "installment_amount": 51.667, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "e2a7b7fa1ce043ce8f4dda81", + "revision": "7d6aad3b3e654eb884304248", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66831,9 +76227,18 @@ "total_amount": 51.667, "id": 1684007784160, "contract_id": "1680547112243", - "date_created": "2023-05-13T19:56:24.160Z", - "date_last_updated": "2023-05-13T19:56:24.160Z", - "date_of_expiration": "2023-05-13T19:56:24.160Z", + "date_created": { + "type": 6, + "value": 1684007784160 + }, + "date_last_updated": { + "type": 6, + "value": 1684007784160 + }, + "date_of_expiration": { + "type": 6, + "value": 1684007784160 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -66841,10 +76246,10 @@ "currency_id": "BRL", "history_id": 1684007784160 }, - "revision": "7264044526d649e0b1afca54", + "revision": "eb142f72ff004e70b0b0d6ba", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66852,10 +76257,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 12 no valor de 51,67 BRL referente ao contrato 1680547112243", - "revision": "76881809a2e04b46ac81a9cd", + "revision": "ee41c47bb52544be865548ba", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66863,12 +76268,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "ffef758e049d47b79e78b9c3", + "revision": "bda7116b023f480f99abb6f9", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66883,22 +76288,37 @@ "total_amount": 52, "history_id": 1685634389886, "id": 1685634389886, - "date_created": "2023-06-01T15:46:29.886Z", - "date_last_updated": "2023-06-01T18:56:11.760Z", - "date_of_expiration": "2023-07-01T15:46:29.886Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-06-01T18:56:11.760Z", - "money_release_date": "2023-06-01T18:56:11.760Z", + "date_created": { + "type": 6, + "value": 1685634389886 + }, + "date_last_updated": { + "type": 6, + "value": 1685645771760 + }, + "date_of_expiration": { + "type": 6, + "value": 1688226389886 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685645771760 + }, + "money_release_date": { + "type": 6, + "value": 1685645771760 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "15ea949b0f5f457081fcbc0a", + "revision": "a249489ea1314650aeb0f12f", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66906,10 +76326,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 52,00 para a carteira iVip 1105.2091.7322.8272-00", - "revision": "b60de6d0d36b483aa83c7f90", + "revision": "80f5e9fe677b4ba98512b105", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66929,12 +76349,12 @@ "installment_amount": 51.667, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "c1a8b49b38a34f4bbd830253", + "revision": "45542c0a4cc34144a12eaa2c", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66951,9 +76371,18 @@ "total_amount": 51.667, "id": 1685657159164, "contract_id": "1680547112243", - "date_created": "2023-06-01T22:05:59.164Z", - "date_last_updated": "2023-06-01T22:05:59.164Z", - "date_of_expiration": "2023-06-01T22:05:59.164Z", + "date_created": { + "type": 6, + "value": 1685657159164 + }, + "date_last_updated": { + "type": 6, + "value": 1685657159164 + }, + "date_of_expiration": { + "type": 6, + "value": 1685657159164 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -66961,10 +76390,10 @@ "currency_id": "BRL", "history_id": 1685657159164 }, - "revision": "cda109e1a7a44556b82a1b72", + "revision": "b069e0fb13ba4f88a4b438f3", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66972,10 +76401,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 12 no valor de 51,67 BRL referente ao contrato 1680547112243", - "revision": "c8f758b6445542439062a686", + "revision": "be01438e580c47c7912fea1a", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -66995,12 +76424,12 @@ "installment_amount": 2300063, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b96ec311bddf4c8394b64e65", + "revision": "bd7080d7a5f54cc0bc31a080", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67017,9 +76446,18 @@ "total_amount": 2300063, "id": 1686939269544, "contract_id": "1680547112243", - "date_created": "2023-06-16T18:14:29.544Z", - "date_last_updated": "2023-06-16T18:14:29.544Z", - "date_of_expiration": "2023-06-16T18:14:29.544Z", + "date_created": { + "type": 6, + "value": 1686939269544 + }, + "date_last_updated": { + "type": 6, + "value": 1686939269544 + }, + "date_of_expiration": { + "type": 6, + "value": 1686939269544 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -67027,10 +76465,10 @@ "currency_id": "IVIP", "history_id": 1686939269544 }, - "revision": "2b921a31550848c88ff76cb0", + "revision": "1c3e301011f747ddb3b04aa0", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67038,10 +76476,10 @@ "content": { "type": "STRING", "value": "Pagamento de faturas no valor de 2.300.063,00 IVIP referente ao contrato 1680547112243", - "revision": "eb34f6a7d6ac43208a485b42", + "revision": "8b39d0db089742c2af0bb895", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67053,10 +76491,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "7a7f1c8ab2284f8ab0d41f16", + "revision": "738a1cb675304d4ca524242b", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67064,10 +76502,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fda4cc7879984835bbc5bda7", + "revision": "30c73bbcccfd41869b67442d", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67075,10 +76513,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "096c9d344fd844fe81a55534", + "revision": "2239a6a6d146424baa0f69a9", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67093,19 +76531,28 @@ "total_amount": 620, "history_id": 1680547112243, "id": 1680547112243, - "date_created": "2023-04-03T18:38:32.243Z", - "date_last_updated": "2023-04-03T18:38:32.243Z", - "date_of_expiration": "2023-05-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1680547112243 + }, + "date_last_updated": { + "type": 6, + "value": 1680547112243 + }, + "date_of_expiration": { + "type": 6, + "value": 1683139112243 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "95b824c80210460ea752f7be", + "revision": "1bd3475990464288b61d5206", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67113,10 +76560,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "c99e987d1ebf40cb8c331844", + "revision": "053a0bf63935477c99b1a71a", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67124,12 +76571,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "96ae5189562f4e149e75d707", + "revision": "fd52fb9577cf4608bdc0de31", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67144,22 +76591,37 @@ "total_amount": 2054407, "history_id": 1686940226040, "id": 1686940226040, - "date_created": "2023-06-16T18:30:26.040Z", - "date_last_updated": "2023-06-21T17:25:23.358Z", - "date_of_expiration": "2023-06-16T18:30:26.040Z", + "date_created": { + "type": 6, + "value": 1686940226040 + }, + "date_last_updated": { + "type": 6, + "value": 1687368323358 + }, + "date_of_expiration": { + "type": 6, + "value": 1686940226040 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-06-21T17:25:23.358Z", - "money_release_date": "2023-06-21T17:25:23.358Z", + "date_approved": { + "type": 6, + "value": 1687368323358 + }, + "money_release_date": { + "type": 6, + "value": 1687368323358 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "a5194772e7854cc8b5957585", + "revision": "f0e3b26ece7e4cb4875a72c3", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67167,10 +76629,10 @@ "content": { "type": "STRING", "value": "Saque de 2.054.407,00 IVIP para a carteira 0x660cf406B5942C1cfAb19D31EAe648D68fAb56bF", - "revision": "cb0bf99b19fb4d3ab736958e", + "revision": "ce26ed4d805d4f81abc1f7ae", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67178,10 +76640,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9b0610d19fac427c989022fe", + "revision": "0786188b54f04a8b98e410b8", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67193,10 +76655,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "1c2f8a1986f54a25a6b11848", + "revision": "a93a610433694443a056d139", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67210,15 +76672,18 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" }, - "revision": "fd370c8908b74149bdb0fed3", + "revision": "5b50ab4a91c4490cb17fb2f3", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67226,10 +76691,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "4da40a7dd8b040cbbfcc7223", + "revision": "beba73cc32c44433bbfaecb7", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67237,10 +76702,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "eb0b634582a94cab9a6a6c23", + "revision": "553764fd53884ec58dfcd541", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67248,10 +76713,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2ca6942436f34a4a93a7eb42", + "revision": "935cf1f7258f402ea91845a2", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67263,10 +76728,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "57d210ba15b146a4a47c9be3", + "revision": "64445c37b3ee481786f667fa", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67280,15 +76745,18 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" }, - "revision": "21b8661aa74245b7a59cf309", + "revision": "7800c5ad5e6548849fc4ee31", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67296,10 +76764,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "c510b6d2757849b8ab2dd83a", + "revision": "58ad9a63d8e04848a67e728d", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67307,10 +76775,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "97cea2c95d70458ca153e945", + "revision": "f17a0e4e22c649d999e20239", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820559, + "modified": 1701465820559 } }, { @@ -67318,10 +76786,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6c8c4f5ed71c4cbca78c2dda", + "revision": "dc022531c45548198d812814", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67333,10 +76801,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "c52adcec96db4b69a4295494", + "revision": "1bed38f481404dc4bdb8fa87", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67350,15 +76818,18 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" }, - "revision": "478b0f46fb0145bfabeb6a4b", + "revision": "f9a0c73b4c104b219cc8472f", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67366,10 +76837,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "fe77b3279c4e4d80b13e4d9a", + "revision": "a930a0a7d37b49b498fdf8fb", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67377,10 +76848,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "3aff863a9e7543e5abe410d2", + "revision": "d556e069fba94f498bfd7ebb", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67388,10 +76859,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7d80d922b3c74b49a0a9c799", + "revision": "97ca44721351466fb832fc75", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67403,10 +76874,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "414f32ceecef493aa16882d1", + "revision": "cae7069ce3da4c508d035f9a", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67420,15 +76891,18 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" }, - "revision": "183043556955471aa8d9b9de", + "revision": "bc22ab6b74984ea8a9667907", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67436,10 +76910,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "c5281c444a7e4941be86d743", + "revision": "a17857093dd74e59863658a4", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67447,10 +76921,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "752bf7c6f1fb4c5facbb0bd9", + "revision": "ee8923f220ce4172b881f40a", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67458,10 +76932,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "105c22fda0b2464486d3a0f4", + "revision": "f8f7b312cc4849c7a1c82b2b", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67473,10 +76947,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "244bc5e263074d289c711b5d", + "revision": "284f8487499541e585d7c19f", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67490,15 +76964,18 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" }, - "revision": "f9763dc9e8234230887daf6b", + "revision": "d19be388e0b2402e8a55f43e", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67506,10 +76983,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "c6567266876d4aebb31af7e3", + "revision": "be9db1d0e1764d8783ca54f2", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67517,10 +76994,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b37bd0b51e5741328dbb75c6", + "revision": "d05ad042a2084f6b8e6d85b8", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67528,10 +77005,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "79523f83aa004171b9a0dd6b", + "revision": "4842aae2a7fe4b029ae23e64", "revision_nr": 1, - "created": 1701463509584, - "modified": 1701463509584 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67543,10 +77020,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "f2ac82cb44d0491fb886ab34", + "revision": "1f12b6cdb79a4fb09aef2d47", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67560,15 +77037,18 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" }, - "revision": "dd2b53add9614086992c4545", + "revision": "fa785df6ebe54708a4dcfe0f", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67576,10 +77056,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "8bdbb485b0814ab482251c86", + "revision": "8413466f6f524230bf89bf29", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67587,10 +77067,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "8a644aeea3f34ea1b589c26a", + "revision": "5df9bc3915214ec3a057c021", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67598,10 +77078,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9c18525617154ea2a6f7cf79", + "revision": "8d3464c72a0848d6b110c9c1", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67613,10 +77093,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "f34c8458bf08471fa3738864", + "revision": "55377f11b2b4463a9593dea9", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67630,15 +77110,18 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" }, - "revision": "af8db7a2e1ef46f2a43a7935", + "revision": "92d2f6f481474b15a5184fd4", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67646,10 +77129,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "40befa085e8843f68adc64d7", + "revision": "ebac1d2a509644b083d61ed7", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67657,10 +77140,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "96509189a1894901a82c9655", + "revision": "afc9d99273bc4b6cb16421a7", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67668,10 +77151,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "10ebc3318aaa4bfaa630c915", + "revision": "79c3f05c6ee04b9bba588af3", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67683,10 +77166,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "985cfbec8c9143adb0054fdc", + "revision": "36a6209e69b44a068acc7e4e", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67700,15 +77183,18 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" }, - "revision": "533a7ed8d44546b5986b81f0", + "revision": "124d83d0da014a6e91275671", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67716,10 +77202,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "168ad1e365ba49bf85bb1157", + "revision": "4808077959a84b78923ff5d1", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67727,10 +77213,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "70dabfa3c57547d788e6acae", + "revision": "dbd63ece17ae4d90951b71a1", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67738,10 +77224,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5758035ac6ba4c74b640317e", + "revision": "cc9673b2fa5f444ea02d8c3b", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67753,10 +77239,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "839324e5bafe48c39dd2b09f", + "revision": "5b9e30d050f84a40acc84f21", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67770,15 +77256,18 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" }, - "revision": "494819a71f874b5682139756", + "revision": "788cd246e0674bd3844748a0", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67786,10 +77275,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "34e3ec7dca7d4143abaaf43a", + "revision": "fd4961bb1f3a44dba9fe5ab1", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67797,10 +77286,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "37e4a68cdde94e81b67bbb7e", + "revision": "639ba885b730481d9d1db0d2", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67808,10 +77297,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "dd71eab72aa4452ca4247f02", + "revision": "71d205837ecb4996b6795dfd", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67823,10 +77312,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "69ad372dc526442592a0d12c", + "revision": "e07088ba6f3a4d3ca0747be7", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67840,15 +77329,18 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" }, - "revision": "6d87c674dd434fd4a1435fd6", + "revision": "f99fbc38249041d0a09115eb", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67856,10 +77348,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "8440a56b416b4370bb469c89", + "revision": "92995669f4894614b0a94a02", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67867,10 +77359,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "f5cc73565a2645a0914dc86f", + "revision": "dc8b0ef0a9f44e8aa599681a", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67878,10 +77370,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8c8e395ee02546b5a1d20506", + "revision": "c04256cceafc4ef79c999bdb", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67893,10 +77385,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "b8dd106caedf491981ca5540", + "revision": "527bb70172b14baab64e78e8", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67910,15 +77402,18 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" }, - "revision": "c59b74caa9a7403d823d9ad9", + "revision": "a11d796ff92d43909424ad8b", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67926,10 +77421,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "3b05dcc3dcfd44128f1a6470", + "revision": "7a09a205686d448f97f7115d", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67937,10 +77432,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "edf4a4ca86cf4594b8298c75", + "revision": "56dffdf575a3473eb7942b8f", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67948,10 +77443,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8346cb4e2c1e475fbf19bd00", + "revision": "5c7d55e8598c42409e6b9806", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67963,10 +77458,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "bdf8f7308aad44d5a14f92b5", + "revision": "315aa526973046b8bb46edbf", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67980,15 +77475,18 @@ "total_amount": 620, "installments": 12, "installment_amount": 51.666666666666664, - "date_created": "2023-04-03T18:38:32.243Z", + "date_created": { + "type": 6, + "value": 1680547112243 + }, "history_id": 1680547112243, "currency_id": "BRL", "status": "paid" }, - "revision": "6d00781af6414727983223bc", + "revision": "1edd02b236a348d398801330", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -67996,10 +77494,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "68d44bafd7364afd897eddef", + "revision": "dc722b0849bd4fa289b4cf4c", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68007,10 +77505,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b3565482c89243d6bbc7bc82", + "revision": "edef2aca5b9e4d84af9e9df3", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68018,10 +77516,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d66b4af90e7e482d85a4f2f2", + "revision": "38eeec147b624245be3f2454", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68029,10 +77527,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e9e1bbe74a35400da1072697", + "revision": "a9689d7110754c0eabf45b94", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68042,13 +77540,19 @@ "value": { "approvedLimit": 1000, "limitUsed": 0, - "analysisRequested": "2023-03-18T23:21:54.669Z", - "lastReview": "2023-03-19T21:24:27.910Z" + "analysisRequested": { + "type": 6, + "value": 1679181714669 + }, + "lastReview": { + "type": 6, + "value": 1679261067910 + } }, - "revision": "e12a33d5dd0e4b42b5b9570a", + "revision": "aa67ff6cc6554f5c8c5d1c1e", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68061,10 +77565,10 @@ "totalValue": 0.13, "currencyType": "USD" }, - "revision": "94598952258544d5933a3ed0", + "revision": "b62baba9ea4840d5b93bcd53", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68076,10 +77580,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "254301c90d184096bed62e3a", + "revision": "64a3208dd17b40c4a1eedd8d", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68091,10 +77595,10 @@ "symbol": "IVIP", "value": 0 }, - "revision": "87fdf8f045654494ad9f0fc7", + "revision": "d1c0dac24cbc4404874f96c0", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68102,10 +77606,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "df51a5485f7c4dbd93b8489a", + "revision": "fe53074fece54192b9363f6e", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68113,12 +77617,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "9f725228178943388599709f", + "revision": "cfb93150cb6c49398ce7e92e", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68133,18 +77637,27 @@ "total_amount": 20, "history_id": 1684156066045, "id": 1684156066045, - "date_created": "2023-05-15T13:07:46.045Z", - "date_last_updated": "2023-05-15T13:07:46.045Z", - "date_of_expiration": "2023-06-14T13:07:46.045Z", + "date_created": { + "type": 6, + "value": 1684156066045 + }, + "date_last_updated": { + "type": 6, + "value": 1684156066045 + }, + "date_of_expiration": { + "type": 6, + "value": 1686748066045 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "32e3cf145e484ee0a42ec2dd", + "revision": "1af67b70856d41ad856500e6", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68152,10 +77665,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "e1f790d57da24c0ab40ccd79", + "revision": "f2bc30ddd7544d24857e8935", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68163,12 +77676,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "ae795593a8e04ed3bf747cce", + "revision": "ed268d0caea84a75af3340c0", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68183,18 +77696,27 @@ "total_amount": 100, "history_id": 1684156180281, "id": 1684156180281, - "date_created": "2023-05-15T13:09:40.281Z", - "date_last_updated": "2023-05-15T13:09:40.281Z", - "date_of_expiration": "2023-06-14T13:09:40.281Z", + "date_created": { + "type": 6, + "value": 1684156180281 + }, + "date_last_updated": { + "type": 6, + "value": 1684156180281 + }, + "date_of_expiration": { + "type": 6, + "value": 1686748180281 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "9abbbc02f9594582a74e171e", + "revision": "d04cb670a89f4750912ad271", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68202,10 +77724,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "27222914cd114fb1bbc28945", + "revision": "1e7cec5a837545bf99296af9", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68213,12 +77735,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "d3f151b73c734035aa8366eb", + "revision": "7aa30c252e574f9ab6c20911", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68233,22 +77755,37 @@ "total_amount": 100, "history_id": 1684157124109, "id": 1684157124109, - "date_created": "2023-05-15T13:25:24.109Z", - "date_last_updated": "2023-05-15T14:49:20.711Z", - "date_of_expiration": "2023-06-14T13:25:24.109Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-15T14:49:20.711Z", - "money_release_date": "2023-05-15T14:49:20.711Z", + "date_created": { + "type": 6, + "value": 1684157124109 + }, + "date_last_updated": { + "type": 6, + "value": 1684162160711 + }, + "date_of_expiration": { + "type": 6, + "value": 1686749124109 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684162160711 + }, + "money_release_date": { + "type": 6, + "value": 1684162160711 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "71f85624c23e445d8ae2dbc3", + "revision": "9e7c99bac31b4813817df11c", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68256,10 +77793,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "7095e44638a346d8b0416bb0", + "revision": "46490e14c95c44929ae3dc2e", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68277,12 +77814,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "e10ba8167cfe424881dff276", + "revision": "b6f32291f08f41718f7b7e60", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68298,9 +77835,18 @@ "original_amount": 487073, "total_amount": 487073, "id": 1684667280508, - "date_created": "2023-05-21T11:08:00.508Z", - "date_last_updated": "2023-05-21T11:08:00.508Z", - "date_of_expiration": "2023-05-21T11:08:00.508Z", + "date_created": { + "type": 6, + "value": 1684667280508 + }, + "date_last_updated": { + "type": 6, + "value": 1684667280508 + }, + "date_of_expiration": { + "type": 6, + "value": 1684667280508 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -68309,10 +77855,10 @@ "history_id": 1684667280508, "description": "Compra de 487.073,00 IVIP por 100,00 BRL" }, - "revision": "9ee31f73a5974551a27908c2", + "revision": "6682b9e897524dfdafb3760c", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68320,12 +77866,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "083454e29fc24282a0c15793", + "revision": "3d136f1d4eee484cb223f02f", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68340,22 +77886,37 @@ "total_amount": 120, "history_id": 1685125796189, "id": 1685125796189, - "date_created": "2023-05-26T18:29:56.189Z", - "date_last_updated": "2023-05-27T10:47:37.369Z", - "date_of_expiration": "2023-06-25T18:29:56.189Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-27T10:47:37.369Z", - "money_release_date": "2023-05-27T10:47:37.369Z", + "date_created": { + "type": 6, + "value": 1685125796189 + }, + "date_last_updated": { + "type": 6, + "value": 1685184457369 + }, + "date_of_expiration": { + "type": 6, + "value": 1687717796189 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685184457369 + }, + "money_release_date": { + "type": 6, + "value": 1685184457369 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "f92e8fc1d7554570bb119568", + "revision": "0551dd211df04e8ea12d7d82", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68363,10 +77924,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 120,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "7def05300b89404ab0b51adb", + "revision": "ec682a20757a4ee8816e8513", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68374,12 +77935,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "60b0587d4d9940619d986de4", + "revision": "a642363cc653423b8f731d79", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68394,22 +77955,37 @@ "total_amount": 1410, "history_id": 1685203490781, "id": 1685203490781, - "date_created": "2023-05-27T16:04:50.781Z", - "date_last_updated": "2023-05-27T18:12:36.964Z", - "date_of_expiration": "2023-06-26T16:04:50.781Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-27T18:12:36.964Z", - "money_release_date": "2023-05-27T18:12:36.964Z", + "date_created": { + "type": 6, + "value": 1685203490781 + }, + "date_last_updated": { + "type": 6, + "value": 1685211156964 + }, + "date_of_expiration": { + "type": 6, + "value": 1687795490781 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685211156964 + }, + "money_release_date": { + "type": 6, + "value": 1685211156964 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "6c2ac8d67ced4ac1b57178a9", + "revision": "b5a2570fbd9d4d82a3da5a68", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68417,10 +77993,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.410,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "6777a27e89734634b53c2ffa", + "revision": "d8be439d84464a49a6fd10b0", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68438,12 +78014,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "90378acabdb64288b6d47b11", + "revision": "e49f59f7d7e34a8d8d94bc17", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68459,9 +78035,18 @@ "original_amount": 5206344, "total_amount": 5206344, "id": 1685730135668, - "date_created": "2023-06-02T18:22:15.668Z", - "date_last_updated": "2023-06-02T18:22:15.668Z", - "date_of_expiration": "2023-06-02T18:22:15.668Z", + "date_created": { + "type": 6, + "value": 1685730135668 + }, + "date_last_updated": { + "type": 6, + "value": 1685730135668 + }, + "date_of_expiration": { + "type": 6, + "value": 1685730135668 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -68470,10 +78055,10 @@ "history_id": 1685730135668, "description": "Compra de 5.206.344,00 IVIP por 1.530,00 BRL" }, - "revision": "2e1edf21338e4679a0a23cff", + "revision": "f69110e6fbce42e4ad15f3fc", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68481,12 +78066,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "2fed4c99d2c14159badf1b80", + "revision": "76a1b02a94d14de2a05d9165", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68501,22 +78086,37 @@ "total_amount": 100, "history_id": 1686621899168, "id": 1686621899168, - "date_created": "2023-06-13T02:04:59.168Z", - "date_last_updated": "2023-06-13T12:15:29.648Z", - "date_of_expiration": "2023-07-13T02:04:59.168Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-06-13T12:15:29.648Z", - "money_release_date": "2023-06-13T12:15:29.648Z", + "date_created": { + "type": 6, + "value": 1686621899168 + }, + "date_last_updated": { + "type": 6, + "value": 1686658529648 + }, + "date_of_expiration": { + "type": 6, + "value": 1689213899168 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686658529648 + }, + "money_release_date": { + "type": 6, + "value": 1686658529648 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "d1c62eb1928e4c8fbe701739", + "revision": "d68cfe71d6aa4db28bb3b437", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68524,10 +78124,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "24ce028e0a15422f9ddec593", + "revision": "f892d76111dc4587ad4efe91", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68545,12 +78145,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "84eb77ce4259407c9f3956a0", + "revision": "7a07861395124c2cbffd5f11", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68566,9 +78166,18 @@ "original_amount": 637246, "total_amount": 637246, "id": 1686792689847, - "date_created": "2023-06-15T01:31:29.847Z", - "date_last_updated": "2023-06-15T01:31:29.847Z", - "date_of_expiration": "2023-06-15T01:31:29.847Z", + "date_created": { + "type": 6, + "value": 1686792689847 + }, + "date_last_updated": { + "type": 6, + "value": 1686792689847 + }, + "date_of_expiration": { + "type": 6, + "value": 1686792689847 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -68577,10 +78186,10 @@ "history_id": 1686792689847, "description": "Compra de 637.246,00 IVIP por 100,00 BRL" }, - "revision": "fde869b4a8e84f20a67e5215", + "revision": "11bffacadd844d8aa6d24f06", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68598,12 +78207,12 @@ "installment_amount": 5832008, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "3765acbb624e48b497ea12d3", + "revision": "1d2cc7c86ab34c80bbb02697", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68618,9 +78227,18 @@ "original_amount": 5832008, "total_amount": 5832008, "id": 1688230681708, - "date_created": "2023-07-01T16:58:01.708Z", - "date_last_updated": "2023-07-01T16:58:01.708Z", - "date_of_expiration": "2025-07-01T16:58:01.708Z", + "date_created": { + "type": 6, + "value": 1688230681708 + }, + "date_last_updated": { + "type": 6, + "value": 1688230681708 + }, + "date_of_expiration": { + "type": 6, + "value": 1751389081708 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -68628,10 +78246,10 @@ "currency_id": "IVIP", "history_id": 1688230681708 }, - "revision": "637a830b1d9e40f081c4aa88", + "revision": "0b72b33cedad403289d1eb37", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68639,10 +78257,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.832.008,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/1/2025", - "revision": "012b89b8986540639e160385", + "revision": "4507a79888f242d2b48c24e9", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68658,12 +78276,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "c2c59affae6b4ef6820280d3", + "revision": "90816caa2cee49e6a1f294c9", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68671,10 +78289,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/111597444051012800/history/1690233382656", - "revision": "4a8a5e11660e4283819e4713", + "revision": "136b13f0c8c54ac8a3a970ac", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68689,24 +78307,39 @@ "total_amount": 498655, "id": 1690233382656, "history_id": 1690233382656, - "date_created": "2023-07-24T21:16:22.656Z", - "date_last_updated": "2023-07-26T19:13:04.450Z", - "date_of_expiration": "2023-07-24T21:16:22.656Z", + "date_created": { + "type": 6, + "value": 1690233382656 + }, + "date_last_updated": { + "type": 6, + "value": 1690398784450 + }, + "date_of_expiration": { + "type": 6, + "value": 1690233382656 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": "2023-07-26T19:13:04.450Z", - "money_release_date": "2023-07-26T19:13:04.450Z", + "date_approved": { + "type": 6, + "value": 1690398784450 + }, + "money_release_date": { + "type": 6, + "value": 1690398784450 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "cfc81bb540e94252a082e715", + "revision": "ff9d0dc153b246a195b980fa", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68714,10 +78347,10 @@ "content": { "type": "STRING", "value": "Saque de 498.655,00 IVIP para a carteira 0x31608012D8205A2BE2AaDBE2c528d75de71a36E8", - "revision": "e834dc035b2341d49b2d5bd6", + "revision": "729abaab9d6b4ced80a14052", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68725,10 +78358,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "127ccea7303b4969a59c9929", + "revision": "c7f0dad44b6940cda539c7fc", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68736,10 +78369,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "825aca26c9e749898bfe337e", + "revision": "27715f48840e4edb91a5b4e4", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68750,10 +78383,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "425499e0115b4982b734c87a", + "revision": "43321d5d591e499387139b9d", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509585 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68767,10 +78400,10 @@ "currencyType": "USD", "balancesModificacao": 1691060735628 }, - "revision": "adb2400c0ce745dd950abc9e", + "revision": "09b733e557404ca99cb1302b", "revision_nr": 1, - "created": 1701463509585, - "modified": 1701463509586 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68778,10 +78411,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "206941e99a794470b6c19d72", + "revision": "b18fb094c09b4e3f913bd53e", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68789,10 +78422,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f0b4d53e3aff4f3e87fe9dd9", + "revision": "c5b32306ef644dd4995b798c", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68805,10 +78438,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "299548c9a0094246935df92a", + "revision": "957ba7e1b6f6454c84f7dc0a", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68816,10 +78449,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e305ac2add8847d69b17649f", + "revision": "9229c3dc45e04c52b8574c1b", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68827,10 +78460,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "559cb07d786e40dbaac2e95d", + "revision": "db0c92fe9e3f4be78911346a", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68843,10 +78476,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "9cb3296497644540ac0198d2", + "revision": "cf92b7531583425b96e9d1f7", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820560, + "modified": 1701465820560 } }, { @@ -68858,10 +78491,10 @@ "symbol": "IVIP", "value": 612.41 }, - "revision": "fc924f46e8a84f7d940ef13c", + "revision": "b4d65613c734454b89a7b43f", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -68869,10 +78502,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b75488d332bc4d2b99169939", + "revision": "7d4e3fe1bbf84b129c4a01e0", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -68880,12 +78513,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "ea5afabcacd3464db65bdc9d", + "revision": "2d234f3d568d4f2596c25122", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -68900,22 +78533,37 @@ "total_amount": 1600, "history_id": 1677943939458, "id": 1677943939458, - "date_created": "2023-03-04T15:32:19.458Z", - "date_last_updated": "2023-03-04T20:44:06.599Z", - "date_of_expiration": "2023-04-03T15:32:19.458Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-04T20:44:06.599Z", - "money_release_date": "2023-03-04T20:44:06.599Z", + "date_created": { + "type": 6, + "value": 1677943939458 + }, + "date_last_updated": { + "type": 6, + "value": 1677962646599 + }, + "date_of_expiration": { + "type": 6, + "value": 1680535939458 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677962646599 + }, + "money_release_date": { + "type": 6, + "value": 1677962646599 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "5bc33915587641b2b083a28e", + "revision": "13efb2ab269e46a4bff8bda3", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -68923,10 +78571,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 1127.2038.0478.0658-70", - "revision": "d9c1cc7a1d4d4547b6f88433", + "revision": "3b3c32e295344281ae463a47", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -68944,12 +78592,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "258e7cde28dc4f8dbca2c850", + "revision": "ff5d24c3090b4eb7ac97e993", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -68965,9 +78613,18 @@ "original_amount": 11445515, "total_amount": 11445515, "id": 1678154526038, - "date_created": "2023-03-07T02:02:06.038Z", - "date_last_updated": "2023-03-07T02:02:06.038Z", - "date_of_expiration": "2023-03-07T02:02:06.038Z", + "date_created": { + "type": 6, + "value": 1678154526038 + }, + "date_last_updated": { + "type": 6, + "value": 1678154526038 + }, + "date_of_expiration": { + "type": 6, + "value": 1678154526038 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -68976,10 +78633,10 @@ "history_id": 1678154526038, "description": "Compra de 11445515 IVIP por 1600 BRL" }, - "revision": "6fdf192352424dcbac0b04d7", + "revision": "817e7f64a1b84e19b8a87b05", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -68987,12 +78644,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "9dbd88af96ff467799c92c68", + "revision": "acb44e76a7624b429020adf1", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69007,18 +78664,27 @@ "total_amount": 1766725, "history_id": 1689270623353, "id": 1689270623353, - "date_created": "2023-07-13T17:50:23.353Z", - "date_last_updated": "2023-07-13T17:50:23.353Z", - "date_of_expiration": "2023-07-13T17:50:23.353Z", + "date_created": { + "type": 6, + "value": 1689270623353 + }, + "date_last_updated": { + "type": 6, + "value": 1689270623353 + }, + "date_of_expiration": { + "type": 6, + "value": 1689270623353 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "2ef9f29fe3b148cca05b43fe", + "revision": "06c246d2d865444c87add17d", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69026,10 +78692,10 @@ "content": { "type": "STRING", "value": "Saque de 1.766.725,00 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", - "revision": "0e680702c03f4a65b09eb03c", + "revision": "7bf26928c91b4c499e79ca2f", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69045,12 +78711,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "af49bce77fff4e69ab06de1f", + "revision": "5be89cc408344067a8eb05bf", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69058,10 +78724,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1690310464254", - "revision": "50350ae1d82f419689ef2b7a", + "revision": "3d5c0ad793b744c3b6eea075", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69076,24 +78742,39 @@ "total_amount": 1000, "id": 1690310464254, "history_id": 1690310464254, - "date_created": "2023-07-25T18:41:04.254Z", - "date_last_updated": "2023-07-26T17:38:50.972Z", - "date_of_expiration": "2023-07-25T18:41:04.254Z", + "date_created": { + "type": 6, + "value": 1690310464254 + }, + "date_last_updated": { + "type": 6, + "value": 1690393130972 + }, + "date_of_expiration": { + "type": 6, + "value": 1690310464254 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": "2023-07-26T17:38:50.972Z", - "money_release_date": "2023-07-26T17:38:50.972Z", + "date_approved": { + "type": 6, + "value": 1690393130972 + }, + "money_release_date": { + "type": 6, + "value": 1690393130972 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "37d3de01b4854d539679837b", + "revision": "b743fa2088794d959017c6c6", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69101,10 +78782,10 @@ "content": { "type": "STRING", "value": "Saque de 1.000,00 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", - "revision": "6032e6efb2cb48bfa83d71f8", + "revision": "82ddc91bbade41e4b02462f3", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69116,10 +78797,10 @@ "label": "Taxa de 3,00%", "amount": 171682.74 }, - "revision": "fd6c033a625f4b50ac77c8e6", + "revision": "30f20776985e42ceb29c9a8d", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69136,10 +78817,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "5868da97176241a98dac68ef", + "revision": "03080d3b28d346a9b52ee412", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69147,10 +78828,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1695843073185", - "revision": "fa1c9c292f3f4e14979d8902", + "revision": "0a30ad0aacb9400c8b0f7ac3", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69158,10 +78839,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "53f4652ce15e4dcda1c580ec", + "revision": "67349db12c8748b9be9233bb", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69177,23 +78858,35 @@ "total_amount": 5551075.26, "id": "1695843073185", "history_id": "1695843073185", - "date_created": "2023-09-27T19:31:13.185Z", - "date_last_updated": "2023-10-05T13:48:58.903Z", - "date_of_expiration": "2023-09-27T19:31:13.185Z", + "date_created": { + "type": 6, + "value": 1695843073185 + }, + "date_last_updated": { + "type": 6, + "value": 1696513738903 + }, + "date_of_expiration": { + "type": 6, + "value": 1695843073185 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_other_reason", - "money_release_date": "2023-10-05T13:48:58.903Z", + "money_release_date": { + "type": 6, + "value": 1696513738903 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "5485526fa59947b2ad456c4d", + "revision": "11c4828b9a984413a7075543", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69201,10 +78894,10 @@ "content": { "type": "STRING", "value": "Saque de 5.551.075,26 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", - "revision": "4824a448cb6240b9b5200da0", + "revision": "1984f1a8d173421ea0eb077b", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69216,10 +78909,10 @@ "label": "Taxa de 3,00%", "amount": 171682.74 }, - "revision": "60228238bb894fc1ba74e880", + "revision": "0faa2fa9d23141b69cc6b647", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69236,10 +78929,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "15a65022469241fe92ebe716", + "revision": "0926feed7f834b2ba1485d83", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69247,10 +78940,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1695843125867", - "revision": "00347ab1974e4e8ca6fae29b", + "revision": "8a4a21b1afea4f6596205c6d", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69258,10 +78951,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "250f9130603a4e37b4e92a50", + "revision": "fddc683bc2e041f3905efe38", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69277,24 +78970,39 @@ "total_amount": 5551075.26, "id": "1695843125867", "history_id": "1695843125867", - "date_created": "2023-09-27T19:32:05.867Z", - "date_last_updated": "2023-10-02T23:17:29.131Z", - "date_of_expiration": "2023-09-27T19:32:05.867Z", + "date_created": { + "type": 6, + "value": 1695843125867 + }, + "date_last_updated": { + "type": 6, + "value": 1696288649131 + }, + "date_of_expiration": { + "type": 6, + "value": 1695843125867 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "drawee", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "drawee", - "date_approved": "2023-10-02T23:17:29.131Z", - "money_release_date": "2023-10-02T23:17:29.131Z", + "date_approved": { + "type": 6, + "value": 1696288649131 + }, + "money_release_date": { + "type": 6, + "value": 1696288649131 + }, "money_release_status": "drawee", "wasDebited": true }, - "revision": "174a2f90086642da96621cc7", + "revision": "0dc9957b702d4eacb14b168a", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69302,10 +79010,10 @@ "content": { "type": "STRING", "value": "Saque de 5.551.075,26 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", - "revision": "7a4c685d0d0546ff89d9faf6", + "revision": "188e6e5efdae48ff857562ca", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69313,10 +79021,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "be144ac9161b47cb9bd6d9c0", + "revision": "5cd3622cc06d48728439a9af", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69324,10 +79032,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8a8a5578fa124bd7ba878bf1", + "revision": "71e4741823f94991be53f1a9", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69338,10 +79046,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "1f134d4df9fe4ac3bbda5db4", + "revision": "942b6247f19d4f98bb97555b", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69353,12 +79061,15 @@ "dateValidity": 1678919503018, "totalValue": 308.8, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } }, - "revision": "f261edd104b6467398ffb546", + "revision": "a8c06bdcc8fa4f4d844e66bd", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69366,10 +79077,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "700aebf61e7149a7951c2b1d", + "revision": "59b4548163814b6bbec0401f", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69377,10 +79088,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "425f94ad249d499b9af1f52d", + "revision": "a9937920f9244c40910bc865", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69388,10 +79099,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b0be29e40fc74fe68be7e6c8", + "revision": "9bd5bb06f465491aa5b60281", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69402,10 +79113,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "217737b18de64ae6871c07bb", + "revision": "948a40ee1c1c46f38406b502", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69418,10 +79129,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "0dd36fd24c10411e817ddeb5", + "revision": "384d1ad4e41940dba55973b3", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69429,10 +79140,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "991457e65bf64565a54e3f1c", + "revision": "539acb9a9f9343d3a61a2a11", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69444,10 +79155,10 @@ "value": 329390, "available": "1000.00000000" }, - "revision": "8753acb008034b38a33f2449", + "revision": "96a8fee6a8f6490f973b4ce3", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69459,10 +79170,10 @@ "value": 24969.54, "available": "1.00000000" }, - "revision": "cac21484d517476aa28c2e44", + "revision": "be3899447e64414989c19fd5", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69474,10 +79185,10 @@ "value": 10000, "available": "10000.00000000" }, - "revision": "9b0e3697b16d4fbb8301ed4e", + "revision": "2ead88808ec44373ad1176a7", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69489,10 +79200,10 @@ "value": 168116, "available": "100.00000000" }, - "revision": "834568175ead4ae39d5aee25", + "revision": "759630b8fac64c7ea65d4745", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69504,10 +79215,10 @@ "value": 39525, "available": "500.00000000" }, - "revision": "fb740b941e2247d6a00f7ce5", + "revision": "9eae878140074859a4ae4406", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69519,10 +79230,10 @@ "value": 32965, "available": "500000.00000000" }, - "revision": "3da3280ae2b4464d8a8ab9ff", + "revision": "d0b9d3977f7e44be92440a81", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69534,10 +79245,10 @@ "value": 10020, "available": "10000.00000000" }, - "revision": "01dcd7b3fd2c4414ab64d03d", + "revision": "cf3d50943157433ab75139ea", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69549,10 +79260,10 @@ "value": 18315, "available": "50000.00000000" }, - "revision": "986b2086f040486cb0994643", + "revision": "2318a4d3ee0b4eff81115ca5", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69560,10 +79271,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "cc10f8858bea4795bebc5f54", + "revision": "5d435b1327494f4888b97d1f", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69576,10 +79287,10 @@ "totalValue": 633300.54, "currencyType": "USD" }, - "revision": "526577daba0042619046583f", + "revision": "1ef62f8d85bc4bdd83c9c16b", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69587,10 +79298,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d5502a270c4f493586d30dfc", + "revision": "5dbf186ed74b4897abfd73f4", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69598,10 +79309,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4b450bc978ef4407aca001fd", + "revision": "e119c4e93e1d495bb7dd2cd5", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69614,10 +79325,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "cc35b34acfa941aeb0ad3d01", + "revision": "4f22b761838446e8a97d28c9", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69625,10 +79336,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c7f47a94146e4d4e962adb33", + "revision": "278524466bc840c281041894", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69636,10 +79347,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "66c3d073842e4e7588573989", + "revision": "492b3ab852084d6cb706e57e", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69652,10 +79363,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "86b707e5ca29471bb2a698ed", + "revision": "debbedbd18fc414fab072e1a", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69663,10 +79374,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0d372304548246d8a796bedc", + "revision": "928d10cc622c4ada86cd6a34", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69674,10 +79385,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6854b67ee9034548b95a2dbe", + "revision": "a79d17beaefd48c5aaed75b8", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69690,10 +79401,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "4e8b2c92cb824a88aa567711", + "revision": "c6120cab59e54c30ab7a3888", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69705,10 +79416,10 @@ "symbol": "IVIP", "value": 106.42 }, - "revision": "4b00c93c79b74f57b479630a", + "revision": "53753c63a7574725818d1199", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69716,10 +79427,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "363a54540f124f4da5f197d9", + "revision": "b4f56d7d7574494087bee7c0", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69727,12 +79438,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "e660197bedcf471b9de81598", + "revision": "70d134d8e2db40fabe8970cd", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69747,22 +79458,37 @@ "total_amount": 1500, "history_id": 1689207673127, "id": 1689207673127, - "date_created": "2023-07-13T00:21:13.127Z", - "date_last_updated": "2023-07-13T12:12:30.894Z", - "date_of_expiration": "2023-08-12T00:21:13.127Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-13T12:12:30.894Z", - "money_release_date": "2023-07-13T12:12:30.894Z", + "date_created": { + "type": 6, + "value": 1689207673127 + }, + "date_last_updated": { + "type": 6, + "value": 1689250350894 + }, + "date_of_expiration": { + "type": 6, + "value": 1691799673127 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689250350894 + }, + "money_release_date": { + "type": 6, + "value": 1689250350894 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "55e3d4cea7af4d26a8f9668d", + "revision": "6e0d66c023ff4e2ea7546e79", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69770,10 +79496,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1154.3638.5305.7469-60", - "revision": "6a39e9c1151642aebae1d393", + "revision": "4d3a7f8f4d1245d9afa75291", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69791,12 +79517,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a185b41c8181414cb09a6c3f", + "revision": "158fc8b596344dcca39f37ec", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69812,9 +79538,18 @@ "original_amount": 593666, "total_amount": 593666, "id": 1689260591470, - "date_created": "2023-07-13T15:03:11.470Z", - "date_last_updated": "2023-07-13T15:03:11.470Z", - "date_of_expiration": "2023-07-13T15:03:11.470Z", + "date_created": { + "type": 6, + "value": 1689260591470 + }, + "date_last_updated": { + "type": 6, + "value": 1689260591470 + }, + "date_of_expiration": { + "type": 6, + "value": 1689260591470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -69823,10 +79558,10 @@ "history_id": 1689260591470, "description": "Compra de 593.666,00 IVIP por 1.500,00 BRL" }, - "revision": "23e54135235f4b0aa4520739", + "revision": "3d66df9ec6184c85b0d959e2", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69835,12 +79570,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-19T16:57:31.151Z" + ".val": { + "type": 6, + "value": 1692464251151 + } }, - "revision": "abb0f7b1a764484bb0e7f35e", + "revision": "3d2b9ab17ed64d7e971a2194", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69856,12 +79594,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "b6a2f9a16f7746bda4bf3a8f", + "revision": "3ed4ffffee5d420c9c39a262", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69869,10 +79607,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/extract/115436385305746960/order/1689872251151", - "revision": "c1357170be3947249a1b25aa", + "revision": "7fd77ca6e7b04da1a685b868", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69887,8 +79625,14 @@ "total_amount": 650, "id": 1689872251156, "history_id": 1689872251156, - "date_created": "2023-07-20T16:57:31.156Z", - "date_last_updated": "2023-07-20T16:57:31.156Z", + "date_created": { + "type": 6, + "value": 1689872251156 + }, + "date_last_updated": { + "type": 6, + "value": 1689872251156 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -69896,10 +79640,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "4cfe7679423b431eb8c59659", + "revision": "a3c7d746675d45dfab125a4d", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69907,10 +79651,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 650,00 para a carteira iVip 1154.3638.5305.7469-60", - "revision": "a3405364356746adb647b636", + "revision": "78716c7196ef416facbe0d82", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69919,12 +79663,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-08-24T18:51:46.238Z" + ".val": { + "type": 6, + "value": 1692903106238 + } }, - "revision": "1f9e59cc806d40ca80ff5855", + "revision": "d2251e9a91a147e480e18b39", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69940,12 +79687,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "8e0a191d671145378c6a7450", + "revision": "44988300e7a5417ca46c9215", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69953,10 +79700,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1690311106238", - "revision": "b45f1248df5946d58fb913f0", + "revision": "775e4545ba5a488aa8308101", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69971,23 +79718,35 @@ "total_amount": 650, "id": 1690311106238, "history_id": 1690311106238, - "date_created": "2023-07-25T18:51:46.238Z", - "date_last_updated": "2023-07-25T18:55:05.225Z", + "date_created": { + "type": 6, + "value": 1690311106238 + }, + "date_last_updated": { + "type": 6, + "value": 1690311305225 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-07-25T18:55:05.225Z", - "money_release_date": "2023-07-25T18:55:05.225Z", + "date_approved": { + "type": 6, + "value": 1690311305225 + }, + "money_release_date": { + "type": 6, + "value": 1690311305225 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "2d2c2f2fdee64011ac302caf", + "revision": "13381c09b6bf431d85bc898f", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -69995,10 +79754,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 650,00 para a carteira iVip 1154.3638.5305.7469-60", - "revision": "0f19feeae20e4f079f0a543a", + "revision": "90d55a9b9bce4659bcbb9e3c", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -70016,12 +79775,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a5f5099c88ad4651a72592ed", + "revision": "189a1153996e4a8698133e61", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -70037,9 +79796,18 @@ "original_amount": 526109, "total_amount": 526109, "id": 1690311787862, - "date_created": "2023-07-25T19:03:07.862Z", - "date_last_updated": "2023-07-25T19:03:07.862Z", - "date_of_expiration": "2023-07-25T19:03:07.862Z", + "date_created": { + "type": 6, + "value": 1690311787862 + }, + "date_last_updated": { + "type": 6, + "value": 1690311787862 + }, + "date_of_expiration": { + "type": 6, + "value": 1690311787862 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70048,10 +79816,10 @@ "history_id": 1690311787862, "description": "Compra de 526.109,00 IVIP por 650,00 BRL" }, - "revision": "332d566444d24197a8dd05a1", + "revision": "a6f9cdc30a4045de9ee3cc0a", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -70067,12 +79835,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "266a6d19f96c47b0ac48da3a", + "revision": "a928a1f7bafb4ff69cf17f08", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -70080,10 +79848,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691353182696", - "revision": "c11f6a52725c430298111936", + "revision": "641ab7f714c44b57acc56b78", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -70098,9 +79866,18 @@ "total_amount": 1119775, "id": 1691353182696, "history_id": 1691353182696, - "date_created": "2023-08-06T20:19:42.696Z", - "date_last_updated": "2023-08-06T20:19:42.696Z", - "date_of_expiration": "2023-09-06T20:19:42.695Z", + "date_created": { + "type": 6, + "value": 1691353182696 + }, + "date_last_updated": { + "type": 6, + "value": 1691353182696 + }, + "date_of_expiration": { + "type": 6, + "value": 1694031582695 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70108,10 +79885,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "4eeb202fed8041c4ba30d748", + "revision": "ff731b755cc9429c94c2262a", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -70119,10 +79896,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.119.775,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/6/2023", - "revision": "91dfb076904b4785aad12f72", + "revision": "80759109ff274702a1d33f1f", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -70131,12 +79908,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-10T12:16:37.423Z" + ".val": { + "type": 6, + "value": 1694348197423 + } }, - "revision": "0a28cefbad4b4341867c1b46", + "revision": "eb94ed453ef74c9aabe6fc0f", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820561, + "modified": 1701465820561 } }, { @@ -70152,12 +79932,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "3e169b791f93469aae927516", + "revision": "9b24217a9e6144d790f90b7a", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70165,10 +79945,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691756197423", - "revision": "6e71e905596c4bfca6f784cb", + "revision": "bc930990a1aa41be9b4d83a9", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70183,23 +79963,35 @@ "total_amount": 500, "id": 1691756197423, "history_id": 1691756197423, - "date_created": "2023-08-11T12:16:37.423Z", - "date_last_updated": "2023-08-11T13:36:00.390Z", + "date_created": { + "type": 6, + "value": 1691756197423 + }, + "date_last_updated": { + "type": 6, + "value": 1691760960390 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-11T13:36:00.390Z", - "money_release_date": "2023-08-11T13:36:00.390Z", + "date_approved": { + "type": 6, + "value": 1691760960390 + }, + "money_release_date": { + "type": 6, + "value": 1691760960390 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "86883cf33b5b47a986d3fe17", + "revision": "95056cef02554e8ebf7ae486", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70207,10 +79999,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 500,00 para a carteira iVip 1154.3638.5305.7469-60", - "revision": "a8f5dd10bed64d99a8c86c45", + "revision": "3d31a0b09add40ea981351b3", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70226,12 +80018,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "32e845aaf77345019b23bca8", + "revision": "5ff5ed8f21f04ac5a5b5a039", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70239,10 +80031,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691761354889", - "revision": "f019ec87ba0e4359b2f94c5f", + "revision": "83c369e8e06d44b0aaafc64f", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70257,9 +80049,18 @@ "total_amount": 917399, "id": 1691761354889, "history_id": 1691761354889, - "date_created": "2023-08-11T13:42:34.889Z", - "date_last_updated": "2023-08-11T13:42:34.889Z", - "date_of_expiration": "2023-08-11T13:42:34.889Z", + "date_created": { + "type": 6, + "value": 1691761354889 + }, + "date_last_updated": { + "type": 6, + "value": 1691761354889 + }, + "date_of_expiration": { + "type": 6, + "value": 1691761354889 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -70268,10 +80069,10 @@ "description": "Compra de 917.399,00 IVIP por 500,00 BRL", "status_detail": "accredited" }, - "revision": "6ea941cc67134eb2a2352a30", + "revision": "e0b07e7afc114e83866b6037", "revision_nr": 1, - "created": 1701463509586, - "modified": 1701463509586 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70287,12 +80088,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "6877f15a9d3e4d6083210ec8", + "revision": "459ccec9f88d481c920df462", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70300,10 +80101,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1694032195852", - "revision": "895443945b7749e18d74cfb4", + "revision": "bb8e6675860c4abb861efcc2", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70318,9 +80119,18 @@ "total_amount": 1142170.5, "id": "1694032195852", "history_id": "1694032195852", - "date_created": "2023-09-06T20:29:55.852Z", - "date_last_updated": "2023-09-06T20:29:55.852Z", - "date_of_expiration": "2023-09-06T20:29:55.852Z", + "date_created": { + "type": 6, + "value": 1694032195852 + }, + "date_last_updated": { + "type": 6, + "value": 1694032195852 + }, + "date_of_expiration": { + "type": 6, + "value": 1694032195852 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70328,10 +80138,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "a4254a02b49a48e5b54c54c3", + "revision": "e6ed243352c04987889c6614", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70339,10 +80149,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 1.119.775,00 IVIP com um rendimento de +22.395,5 IVIP (2,00%) - Y12XDT27", - "revision": "f9db15ddf18a4f32841bfaff", + "revision": "db1932bcd61f40e98702daba", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70358,12 +80168,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "d733c1a769bb42869dfbd6ae", + "revision": "2d41d1bf281e4e24a99253e4", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70371,10 +80181,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1694041733454", - "revision": "0d24df631dce41c4a268d1fc", + "revision": "e82aacc01686467c9203407b", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70389,9 +80199,18 @@ "total_amount": 2059569, "id": "1694041733454", "history_id": "1694041733454", - "date_created": "2023-09-06T23:08:53.454Z", - "date_last_updated": "2023-09-06T23:08:53.454Z", - "date_of_expiration": "2023-10-06T23:08:53.454Z", + "date_created": { + "type": 6, + "value": 1694041733454 + }, + "date_last_updated": { + "type": 6, + "value": 1694041733454 + }, + "date_of_expiration": { + "type": 6, + "value": 1696633733454 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70399,10 +80218,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "33f5d776604c4d108cad7561", + "revision": "ad707ecffe144eadb7c1b96c", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70410,10 +80229,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.059.569,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/10/2023 - Y12XDT27", - "revision": "0bd5b8232b1645eda5e443e6", + "revision": "c7499cbec3784b07a1444bba", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70429,12 +80248,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "448bf45031a94a1ba08a0cc0", + "revision": "521e25192aab459697ac7808", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70442,10 +80261,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1696633733454", - "revision": "ede7481fae534b5baa515331", + "revision": "f4a48e5f85114a9082a64948", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70461,9 +80280,18 @@ "total_amount": 2100760.38, "id": "1696633733454", "history_id": "1696633733454", - "date_created": "2023-10-07T05:04:51.607Z", - "date_last_updated": "2023-10-07T05:04:51.607Z", - "date_of_expiration": "2023-10-07T05:04:51.607Z", + "date_created": { + "type": 6, + "value": 1696655091607 + }, + "date_last_updated": { + "type": 6, + "value": 1696655091607 + }, + "date_of_expiration": { + "type": 6, + "value": 1696655091607 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70471,10 +80299,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "7223a74b98af4e9da04bcf98", + "revision": "8af2ce1093894573b28ebc04", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70482,10 +80310,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 2.059.569,00 IVIP com um rendimento de +41.191,38 IVIP (2,00%) - Y12XDT27", - "revision": "04f309a277294e2ab6c998b8", + "revision": "d1de576ffe9e4601aa73d4fe", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70501,12 +80329,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "8d86be35732b4efdbe3d6f48", + "revision": "b54539a82613473fa65e23dd", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70514,10 +80342,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1696668184975", - "revision": "ed2c60f6d1cb4cbcbdca395d", + "revision": "242db63cd2b642a797f2fd79", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70533,9 +80361,18 @@ "total_amount": 1100760, "id": "1696668184975", "history_id": "1696668184975", - "date_created": "2023-10-07T08:43:04.975Z", - "date_last_updated": "2023-10-07T08:43:04.975Z", - "date_of_expiration": "2023-11-07T08:43:04.935Z", + "date_created": { + "type": 6, + "value": 1696668184975 + }, + "date_last_updated": { + "type": 6, + "value": 1696668184975 + }, + "date_of_expiration": { + "type": 6, + "value": 1699346584935 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70543,10 +80380,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "bc04e6b2f87f4fcca388d627", + "revision": "a23349ef9f23486c8200d7d9", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70554,10 +80391,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.100.760,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 07/11/2023 - Y12XDT27", - "revision": "50a38864a6834b9aa5a7bc99", + "revision": "d216abd2a7444fcea827c66c", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70566,12 +80403,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-12T13:25:25.577Z" + ".val": { + "type": 6, + "value": 1699795525577 + } }, - "revision": "b3e8785a2a244de2a2c2bc79", + "revision": "e56cb80d253141369850931d", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70587,12 +80427,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "162d7dac37d84bd89aed2426", + "revision": "a512d61c01eb4d078e9a1a62", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70600,10 +80440,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1697203525578", - "revision": "88fd45a819a940a4a30e8e62", + "revision": "40d9e67eacc74b4390a211d8", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70619,23 +80459,35 @@ "total_amount": 1600, "id": "1697203525578", "history_id": "1697203525578", - "date_created": "2023-10-13T13:25:25.578Z", - "date_last_updated": "2023-10-13T13:32:21.571Z", + "date_created": { + "type": 6, + "value": 1697203525578 + }, + "date_last_updated": { + "type": 6, + "value": 1697203941571 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-10-13T13:32:21.571Z", - "money_release_date": "2023-10-13T13:32:21.571Z", + "date_approved": { + "type": 6, + "value": 1697203941571 + }, + "money_release_date": { + "type": 6, + "value": 1697203941571 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "593f7c668aaa4ceb8fa055b7", + "revision": "f1c3cfdd087b4c91af1b53f8", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70643,10 +80495,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.600,00 BRL para a carteira iVip 1154.3638.5305.7469-60", - "revision": "2cb4018c5a4a49349f021442", + "revision": "6b60444fb9cf40e2a981e651", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70662,12 +80514,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "fd3e49d8031a4e6cb6463167", + "revision": "2d1f86ec35bd4a93a6d01b2d", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70675,10 +80527,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1697204057820", - "revision": "ef75e97eea254f939fa728c1", + "revision": "2db3b50fb6c74195a695a076", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70694,9 +80546,18 @@ "total_amount": 2947170, "id": "1697204057820", "history_id": "1697204057820", - "date_created": "2023-10-13T13:34:17.820Z", - "date_last_updated": "2023-10-13T13:34:17.820Z", - "date_of_expiration": "2023-10-13T13:34:17.820Z", + "date_created": { + "type": 6, + "value": 1697204057820 + }, + "date_last_updated": { + "type": 6, + "value": 1697204057820 + }, + "date_of_expiration": { + "type": 6, + "value": 1697204057820 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -70705,10 +80566,10 @@ "description": "Compra de 2.947.170,00 IVIP por 1.600,00 BRL", "status_detail": "accredited" }, - "revision": "d36142e6d62e4580b0237b2e", + "revision": "f14d6fc9a737462c88cc5130", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70716,10 +80577,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b012f6511b0145079fe97b22", + "revision": "575faad576b046ce8136db64", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70727,10 +80588,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5d09924175bb4436a598704f", + "revision": "625f2405928441a6830763c7", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70740,12 +80601,15 @@ "value": { "approvedLimit": 0, "limitUsed": 0, - "analysisRequested": "2023-09-29T12:24:00.020Z" + "analysisRequested": { + "type": 6, + "value": 1695990240020 + } }, - "revision": "ebafe03738d045daad631984", + "revision": "6cef98764feb42009075a096", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70757,12 +80621,15 @@ "dateValidity": 1689197249139, "totalValue": 309.3, "currencyType": "USD", - "balancesModificacao": "2023-10-13T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697166000000 + } }, - "revision": "f3e5f245e2af4cc3a2728738", + "revision": "74c3bc2f92c444b48c69a01a", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70770,10 +80637,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9222aa4463c344fa8e47f403", + "revision": "8bcab2e6ae90468192831a3d", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70781,10 +80648,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6d8881f739044223af46a88c", + "revision": "2ccc100eb9b849c495a161fc", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70797,10 +80664,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "e7fdc423260f4f1296a466e2", + "revision": "746e2484165b43d7b59c247b", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70808,10 +80675,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "882622e268ff4f068bc9ce63", + "revision": "794fc71d319a402080fa25fb", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70822,10 +80689,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "9687d5007ddb4225ae8694cf", + "revision": "73763ffd03eb4942b0f52013", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70837,10 +80704,10 @@ "symbol": "IVIP", "value": 7620.42 }, - "revision": "f2fd2c6b5d9948bcb3bcb6ae", + "revision": "2d862c1d6545476da64fafba", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70848,10 +80715,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0e462c47a5934a41aa5e287c", + "revision": "8b1b64cd4bac407b85122046", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70859,12 +80726,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "aa8fbffae3ff475dabb826a7", + "revision": "57649bc957ac42f49c5d4a55", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70879,22 +80746,37 @@ "total_amount": 10000, "history_id": 1685463962891, "id": 1685463962891, - "date_created": "2023-05-30T16:26:02.891Z", - "date_last_updated": "2023-05-30T17:41:26.567Z", - "date_of_expiration": "2023-06-29T16:26:02.891Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-30T17:41:26.567Z", - "money_release_date": "2023-05-30T17:41:26.567Z", + "date_created": { + "type": 6, + "value": 1685463962891 + }, + "date_last_updated": { + "type": 6, + "value": 1685468486567 + }, + "date_of_expiration": { + "type": 6, + "value": 1688055962891 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685468486567 + }, + "money_release_date": { + "type": 6, + "value": 1685468486567 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "d9e22fd148c84a53a9caa44d", + "revision": "e1f8f0533f254b8d838dc5a4", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70902,10 +80784,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1162.6149.5252.0901-80", - "revision": "9f1c5854fd5c4bc1a71a0d44", + "revision": "fddb1815199e4038985dfb8f", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70923,12 +80805,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "fd6837ccff1440fe9092e9cd", + "revision": "872cce86a04140eca8f53146", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70944,9 +80826,18 @@ "original_amount": 36743092, "total_amount": 36743092, "id": 1688996128425, - "date_created": "2023-07-10T13:35:28.425Z", - "date_last_updated": "2023-07-10T13:35:28.425Z", - "date_of_expiration": "2023-07-10T13:35:28.425Z", + "date_created": { + "type": 6, + "value": 1688996128425 + }, + "date_last_updated": { + "type": 6, + "value": 1688996128425 + }, + "date_of_expiration": { + "type": 6, + "value": 1688996128425 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -70955,10 +80846,10 @@ "history_id": 1688996128425, "description": "Compra de 36.743.092,00 IVIP por 10.000,70 BRL" }, - "revision": "17adcd312cfb468f8273d0d2", + "revision": "60ddbf9782774f0b80a8c3cd", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70966,10 +80857,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "432190bb17b94d4d93642ce3", + "revision": "314ef8676cd44eb5a569f3b6", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70981,12 +80872,15 @@ "dateValidity": 1685463582486, "totalValue": 5105.87, "currencyType": "USD", - "balancesModificacao": "2023-10-02T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696215600000 + } }, - "revision": "2904465912d94cfb8761421e", + "revision": "a3c3a947326442bc926785ad", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -70994,10 +80888,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d9f6ce77a341414c8e45f9fb", + "revision": "2c66dc4075de4a6f80385f0a", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71005,10 +80899,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d74b4051f3774486a99f118b", + "revision": "730f1053481b486ca67102a8", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71016,10 +80910,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6acc041ddf874371bf93b7d0", + "revision": "e2de2689a8f648ecb7110f1f", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71030,10 +80924,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "d203ac1dac704b6d88a59e71", + "revision": "0de66c59816949788b7de39a", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71045,10 +80939,10 @@ "dateValidity": 1678768062657, "totalValue": 0 }, - "revision": "5eaba4b55fff40fd8472120e", + "revision": "48239a504b0e459fb8bdfb67", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71056,10 +80950,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b14a7035858b4bd7a51af740", + "revision": "09a11176c06a41a0b023cd4e", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71067,10 +80961,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5d1bc231131d40f681fd7ff0", + "revision": "e97a4764977248b99b8fbb8b", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71083,10 +80977,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "0785fbcbbe8f4c2d98d64994", + "revision": "b8d9759c1b7b4e6088218d8b", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71098,10 +80992,10 @@ "symbol": "IVIP", "value": 0.00037 }, - "revision": "a20a291d6ce64597a8a0d2d8", + "revision": "70603056af96486d8a583ca4", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71109,10 +81003,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "59ec8e608d2c479cafc637d9", + "revision": "eabd03a3f0f7402fb895fdf5", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71120,12 +81014,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "f26a928811274ec384e1e464", + "revision": "40f3a7a6b97d43199aa73605", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71140,22 +81034,37 @@ "total_amount": 200, "history_id": 1677877705308, "id": 1677877705308, - "date_created": "2023-03-03T21:08:25.308Z", - "date_last_updated": "2023-03-03T21:16:05.656Z", - "date_of_expiration": "2023-04-02T21:08:25.308Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-03T21:16:05.656Z", - "money_release_date": "2023-03-03T21:16:05.656Z", + "date_created": { + "type": 6, + "value": 1677877705308 + }, + "date_last_updated": { + "type": 6, + "value": 1677878165656 + }, + "date_of_expiration": { + "type": 6, + "value": 1680469705308 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677878165656 + }, + "money_release_date": { + "type": 6, + "value": 1677878165656 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "b3c491f6123e4c25bced2ac9", + "revision": "4fb3384ffd6a440eb9853fc7", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71163,10 +81072,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "00cbcd5df98b46a98c995596", + "revision": "8f432e221a6446a9821c308f", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71184,12 +81093,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "27eae2eb839245cca36dbabc", + "revision": "d13cb1132a94428891db7ac5", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71205,9 +81114,18 @@ "original_amount": 1428465, "total_amount": 1428465, "id": 1678145189537, - "date_created": "2023-03-06T23:26:29.537Z", - "date_last_updated": "2023-03-06T23:26:29.537Z", - "date_of_expiration": "2023-03-06T23:26:29.537Z", + "date_created": { + "type": 6, + "value": 1678145189537 + }, + "date_last_updated": { + "type": 6, + "value": 1678145189537 + }, + "date_of_expiration": { + "type": 6, + "value": 1678145189537 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71216,10 +81134,10 @@ "history_id": 1678145189537, "description": "Compra de 1428465 IVIP por 200 BRL" }, - "revision": "c722b43d7f4c45f88793d682", + "revision": "6d3a1d25ba5547af8a367e40", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71227,12 +81145,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "103531b84d604b82a84af02d", + "revision": "0a5bc95f31b24df293334fc3", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71247,18 +81165,27 @@ "total_amount": 2000, "history_id": 1683395429062, "id": 1683395429062, - "date_created": "2023-05-06T17:50:29.062Z", - "date_last_updated": "2023-05-06T17:50:29.062Z", - "date_of_expiration": "2023-06-05T17:50:29.062Z", + "date_created": { + "type": 6, + "value": 1683395429062 + }, + "date_last_updated": { + "type": 6, + "value": 1683395429062 + }, + "date_of_expiration": { + "type": 6, + "value": 1685987429062 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "bdbfc3ba852d4e768c78476f", + "revision": "a0b8c2b4095e45abb24ba064", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71266,10 +81193,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "c71df0a14a77418a822292ac", + "revision": "307a7dc3511a425084df6db8", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71277,12 +81204,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "49e17eea430d463183e7c11a", + "revision": "891bbc34fc304d668d1be890", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71297,22 +81224,37 @@ "total_amount": 350, "history_id": 1684179573429, "id": 1684179573429, - "date_created": "2023-05-15T19:39:33.429Z", - "date_last_updated": "2023-05-15T20:13:31.494Z", - "date_of_expiration": "2023-06-14T19:39:33.429Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-15T20:13:31.494Z", - "money_release_date": "2023-05-15T20:13:31.494Z", + "date_created": { + "type": 6, + "value": 1684179573429 + }, + "date_last_updated": { + "type": 6, + "value": 1684181611494 + }, + "date_of_expiration": { + "type": 6, + "value": 1686771573429 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684181611494 + }, + "money_release_date": { + "type": 6, + "value": 1684181611494 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "f85e5647315146e3bfb737e1", + "revision": "c9b295c2fd3b4f00835f363f", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71320,10 +81262,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 350,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "89dd9baa29cf490ba6db0e62", + "revision": "686c32bfe0cb4b8e921cd8fc", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71335,10 +81277,10 @@ "label": "Em 2 parcela(s) 6.00%", "amount": 60 }, - "revision": "fcf1f81bfacb4a73865515c3", + "revision": "e4d60b41da0d4b42a7006fa6", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71346,10 +81288,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d5513af3d2e3491f914ff76b", + "revision": "841883035f514c909a72bfb0", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71357,10 +81299,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "444928b93a984e1f9f52304d", + "revision": "6639028aa2634638a42402da", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71375,19 +81317,28 @@ "total_amount": 1060, "history_id": 1684182120706, "id": 1684182120706, - "date_created": "2023-05-15T20:22:00.706Z", - "date_last_updated": "2023-05-15T20:22:00.706Z", - "date_of_expiration": "2023-06-14T20:22:00.706Z", + "date_created": { + "type": 6, + "value": 1684182120706 + }, + "date_last_updated": { + "type": 6, + "value": 1684182120706 + }, + "date_of_expiration": { + "type": 6, + "value": 1686774120706 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "54befd1316514094a8f49a21", + "revision": "565c52c4ec894066bdcaaf35", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71395,10 +81346,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", - "revision": "a55e7208d0654592b7258bdb", + "revision": "1c6e5410ff3644c8b7c097b9", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820562, + "modified": 1701465820562 } }, { @@ -71416,12 +81367,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "fa8a6be3754643f682ea581a", + "revision": "1e9098a9c06940d6a15aafd4", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71437,9 +81388,18 @@ "original_amount": 6575487, "total_amount": 6575487, "id": 1684624218931, - "date_created": "2023-05-20T23:10:18.931Z", - "date_last_updated": "2023-05-20T23:10:18.931Z", - "date_of_expiration": "2023-05-20T23:10:18.931Z", + "date_created": { + "type": 6, + "value": 1684624218931 + }, + "date_last_updated": { + "type": 6, + "value": 1684624218931 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624218931 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71448,10 +81408,10 @@ "history_id": 1684624218931, "description": "Compra de 6.575.487,00 IVIP por 1.350,00 BRL" }, - "revision": "aa6c5d6ee2764b53a35f6d99", + "revision": "e60ce71de5b14a9a9bc07559", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71459,12 +81419,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "908a65de03514f9dad03b8df", + "revision": "61e56ad939ba4f31bbcc969f", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71479,18 +81439,27 @@ "total_amount": 2982650, "history_id": 1685388624157, "id": 1685388624157, - "date_created": "2023-05-29T19:30:24.157Z", - "date_last_updated": "2023-05-29T19:30:24.157Z", - "date_of_expiration": "2023-05-29T19:30:24.157Z", + "date_created": { + "type": 6, + "value": 1685388624157 + }, + "date_last_updated": { + "type": 6, + "value": 1685388624157 + }, + "date_of_expiration": { + "type": 6, + "value": 1685388624157 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "7fe84503e987455f9847c126", + "revision": "9c8d3ca36faa4733b0cb5ba6", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71498,10 +81467,10 @@ "content": { "type": "STRING", "value": "Saque de 2.982.650,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "6b55d23c9aff48aaa7e263d4", + "revision": "e481c4d32e4c4fd6a7b6c696", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71509,12 +81478,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "b24f2299ddae4259a39bdaa9", + "revision": "1bf2a7cce4ac470bbd68dde9", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71529,18 +81498,27 @@ "total_amount": 8003952, "history_id": 1685389940740, "id": 1685389940740, - "date_created": "2023-05-29T19:52:20.740Z", - "date_last_updated": "2023-05-29T19:52:20.740Z", - "date_of_expiration": "2023-05-29T19:52:20.740Z", + "date_created": { + "type": 6, + "value": 1685389940740 + }, + "date_last_updated": { + "type": 6, + "value": 1685389940740 + }, + "date_of_expiration": { + "type": 6, + "value": 1685389940740 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "0f9c24b4654f4a2eb7daa0d8", + "revision": "8ecf14a6e2dc4ccc910716b9", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71548,10 +81526,10 @@ "content": { "type": "STRING", "value": "Saque de 8.003.952,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "edb194124d8d44cc93e90ff3", + "revision": "96ce190de1764d7cb9497d78", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71569,12 +81547,12 @@ "installment_amount": 3568754, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "37c7e9d247ec47adabf4d65c", + "revision": "a5b7ba72b1ba4430ab43d5e8", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71589,9 +81567,18 @@ "original_amount": 3568754, "total_amount": 3568754, "id": 1685665639073, - "date_created": "2023-06-02T00:27:19.073Z", - "date_last_updated": "2023-06-02T00:27:19.073Z", - "date_of_expiration": "2023-07-02T00:27:19.073Z", + "date_created": { + "type": 6, + "value": 1685665639073 + }, + "date_last_updated": { + "type": 6, + "value": 1685665639073 + }, + "date_of_expiration": { + "type": 6, + "value": 1688257639073 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71600,10 +81587,10 @@ "history_id": 1685665639073, "wasDebited": true }, - "revision": "bf431dfc33884c5d9c565fe2", + "revision": "8a919e1fb5184fd09f415223", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71611,10 +81598,10 @@ "content": { "type": "STRING", "value": "Investimento de 3.568.754,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "8c5539b42be241f7b20e2745", + "revision": "63849387409b43698980424f", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71632,12 +81619,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "007008329cc74ff3a4ed5197", + "revision": "7fe5bedaaf594a518c25cf9d", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71652,9 +81639,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685668997292, - "date_created": "2023-06-02T01:23:17.292Z", - "date_last_updated": "2023-06-02T01:23:17.292Z", - "date_of_expiration": "2023-12-02T01:23:17.292Z", + "date_created": { + "type": 6, + "value": 1685668997292 + }, + "date_last_updated": { + "type": 6, + "value": 1685668997292 + }, + "date_of_expiration": { + "type": 6, + "value": 1701480197292 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71662,10 +81658,10 @@ "currency_id": "IVIP", "history_id": 1685668997292 }, - "revision": "6f7202125e8f4b2b8b0c7037", + "revision": "fba76279575c423c89868f6c", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71673,10 +81669,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", - "revision": "8744a87e402248a7a1f70214", + "revision": "c38b24ec99a34f21866ff834", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71694,12 +81690,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "f88eb9c8db4f49c68a0f419a", + "revision": "d4f9d61b1fee4513b4a97e97", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71714,9 +81710,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685669010794, - "date_created": "2023-06-02T01:23:30.794Z", - "date_last_updated": "2023-06-02T01:23:30.794Z", - "date_of_expiration": "2024-06-02T01:23:30.794Z", + "date_created": { + "type": 6, + "value": 1685669010794 + }, + "date_last_updated": { + "type": 6, + "value": 1685669010794 + }, + "date_of_expiration": { + "type": 6, + "value": 1717291410794 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71724,10 +81729,10 @@ "currency_id": "IVIP", "history_id": 1685669010794 }, - "revision": "9984d898824f4589b91ec45b", + "revision": "ad742fbb102c40b8bd350b55", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71735,10 +81740,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "04da8ebdabe946a99c500219", + "revision": "85181bd14ab14594b6b7d9f6", "revision_nr": 1, - "created": 1701463509587, - "modified": 1701463509587 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71756,12 +81761,12 @@ "installment_amount": 1000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "fbec0bbf8c1446d29ecdecb0", + "revision": "e9c7c8ebc780440d9b98261a", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71776,9 +81781,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1685669017906, - "date_created": "2023-06-02T01:23:37.906Z", - "date_last_updated": "2023-06-02T01:23:37.906Z", - "date_of_expiration": "2025-06-02T01:23:37.906Z", + "date_created": { + "type": 6, + "value": 1685669017906 + }, + "date_last_updated": { + "type": 6, + "value": 1685669017906 + }, + "date_of_expiration": { + "type": 6, + "value": 1748827417906 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -71786,10 +81800,10 @@ "currency_id": "IVIP", "history_id": 1685669017906 }, - "revision": "dd553ac1c4934a3d9c849674", + "revision": "fbdb812b5446476796ea4a2d", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71797,10 +81811,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "94faeb5953e54967bb9abf97", + "revision": "5a1672458d6847e2849feb96", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71808,12 +81822,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "75debc0b7cb346f69a0da26b", + "revision": "bb2b8a836e8f49f49975d6b7", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71828,18 +81842,27 @@ "total_amount": 470112, "history_id": 1686742076839, "id": 1686742076839, - "date_created": "2023-06-14T11:27:56.839Z", - "date_last_updated": "2023-06-14T11:27:56.839Z", - "date_of_expiration": "2023-06-14T11:27:56.839Z", + "date_created": { + "type": 6, + "value": 1686742076839 + }, + "date_last_updated": { + "type": 6, + "value": 1686742076839 + }, + "date_of_expiration": { + "type": 6, + "value": 1686742076839 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "73652ad8070d4d55863e4d30", + "revision": "184dfbd2f548402da8479b2c", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71847,10 +81870,10 @@ "content": { "type": "STRING", "value": "Saque de 470.112,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "c3f3e998eae64934a7b7b68b", + "revision": "d8bd1aaf022246268db4d57d", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71858,12 +81881,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "f50bda826ba04944999ea251", + "revision": "acf2264f005b427dad41fe0b", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71878,18 +81901,27 @@ "total_amount": 530, "history_id": 1686831828859, "id": 1686831828859, - "date_created": "2023-06-15T12:23:48.859Z", - "date_last_updated": "2023-06-15T12:23:48.859Z", - "date_of_expiration": "2023-07-15T12:23:48.859Z", + "date_created": { + "type": 6, + "value": 1686831828859 + }, + "date_last_updated": { + "type": 6, + "value": 1686831828859 + }, + "date_of_expiration": { + "type": 6, + "value": 1689423828859 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "1464428730004f67ba2c1305", + "revision": "49474e9126a549d880f5ddea", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71897,10 +81929,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "93e96fb6fe2e4c57a9b6ab47", + "revision": "1ce987d1f7504402858624d7", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71908,12 +81940,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "8be1ec5d16ac4fd996127cd8", + "revision": "caeeb484493a472f81f6e2b4", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71928,22 +81960,37 @@ "total_amount": 530, "history_id": 1686831937569, "id": 1686831937569, - "date_created": "2023-06-15T12:25:37.569Z", - "date_last_updated": "2023-06-15T14:10:38.027Z", - "date_of_expiration": "2023-07-15T12:25:37.569Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-06-15T14:10:38.027Z", - "money_release_date": "2023-06-15T14:10:38.027Z", + "date_created": { + "type": 6, + "value": 1686831937569 + }, + "date_last_updated": { + "type": 6, + "value": 1686838238027 + }, + "date_of_expiration": { + "type": 6, + "value": 1689423937569 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686838238027 + }, + "money_release_date": { + "type": 6, + "value": 1686838238027 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "67aafb67c0cd4529bfc2b85f", + "revision": "7bd67f69a09e43cd8325891c", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71951,10 +81998,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "1d5db7af472148089c1bc4fc", + "revision": "cf62b3d1a48b4840919f43f7", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71974,12 +82021,12 @@ "installment_amount": 530, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "79214679f01941a3acf577b6", + "revision": "9c7002a86f4b4e8aae5aa3eb", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -71996,9 +82043,18 @@ "total_amount": 530, "id": 1686838699070, "contract_id": "1684182120706", - "date_created": "2023-06-15T14:18:19.070Z", - "date_last_updated": "2023-06-15T14:18:19.070Z", - "date_of_expiration": "2023-06-15T14:18:19.070Z", + "date_created": { + "type": 6, + "value": 1686838699070 + }, + "date_last_updated": { + "type": 6, + "value": 1686838699070 + }, + "date_of_expiration": { + "type": 6, + "value": 1686838699070 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -72006,10 +82062,10 @@ "currency_id": "BRL", "history_id": 1686838699070 }, - "revision": "87f44b08b3ec4bd9b0c8bad9", + "revision": "af74dcd0012c4ce68a8842a3", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72017,10 +82073,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 2 no valor de 530,00 BRL referente ao contrato 1684182120706", - "revision": "fb6953e8a5f4426fb4c083a4", + "revision": "4ba992dfcdfd444ebe3e04da", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72028,12 +82084,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "ee3e87631e7a4875b6be63cf", + "revision": "b9e40ff0cd394065a74b095f", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72048,18 +82104,27 @@ "total_amount": 3897629, "history_id": 1686838872989, "id": 1686838872989, - "date_created": "2023-06-15T14:21:12.989Z", - "date_last_updated": "2023-06-15T14:21:12.989Z", - "date_of_expiration": "2023-06-15T14:21:12.989Z", + "date_created": { + "type": 6, + "value": 1686838872989 + }, + "date_last_updated": { + "type": 6, + "value": 1686838872989 + }, + "date_of_expiration": { + "type": 6, + "value": 1686838872989 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "aa7e8b0f50e54fd9b37fa9ff", + "revision": "db3182febfed4b49834a9ba0", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72067,10 +82132,10 @@ "content": { "type": "STRING", "value": "Saque de 3.897.629,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "2e1264eceb3345178dc40213", + "revision": "829482940cd541c9a542ff92", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72088,12 +82153,12 @@ "installment_amount": 3568754, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a794dd6475924f20a1879b9e", + "revision": "98facb46fba647d99e173c65", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72108,9 +82173,18 @@ "original_amount": 3640129.08, "total_amount": 3640129.08, "id": 1688400243137, - "date_created": "2023-07-03T16:04:03.137Z", - "date_last_updated": "2023-07-03T16:04:03.137Z", - "date_of_expiration": "2023-07-03T16:04:03.137Z", + "date_created": { + "type": 6, + "value": 1688400243137 + }, + "date_last_updated": { + "type": 6, + "value": 1688400243137 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400243137 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -72119,10 +82193,10 @@ "history_id": 1688400243137, "wasDebited": true }, - "revision": "0f039a2ee8ee45728daf533b", + "revision": "12e810d7fd96461d8babaed7", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72130,10 +82204,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 3.568.754,00 IVIP com um rendimento de +71.375,08 IVIP (2,00%)", - "revision": "87b975a11d9f408ebe88933c", + "revision": "d977e443884742a7a1759016", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72141,12 +82215,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "63a68123aac34c9a9c55bced", + "revision": "525a6239d0624f45a4f4d29b", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72161,18 +82235,27 @@ "total_amount": 4926607, "history_id": 1688424411822, "id": 1688424411822, - "date_created": "2023-07-03T22:46:51.822Z", - "date_last_updated": "2023-07-03T22:46:51.822Z", - "date_of_expiration": "2023-07-03T22:46:51.822Z", + "date_created": { + "type": 6, + "value": 1688424411822 + }, + "date_last_updated": { + "type": 6, + "value": 1688424411822 + }, + "date_of_expiration": { + "type": 6, + "value": 1688424411822 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "6556b014ca75413d83945ae8", + "revision": "a1ae014b296146d9a9009c51", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72180,10 +82263,10 @@ "content": { "type": "STRING", "value": "Saque de 4.926.607,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "858afbd7bf624caebfd16058", + "revision": "0e52b74781e34164ae793e81", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72191,12 +82274,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "1574bb01743f4fd09acbbb4e", + "revision": "4d7f3936247a4f06a757687d", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72211,22 +82294,37 @@ "total_amount": 1082278, "history_id": 1689020922030, "id": 1689020922030, - "date_created": "2023-07-10T20:28:42.030Z", - "date_last_updated": "2023-07-10T20:43:39.362Z", - "date_of_expiration": "2023-07-10T20:28:42.030Z", + "date_created": { + "type": 6, + "value": 1689020922030 + }, + "date_last_updated": { + "type": 6, + "value": 1689021819362 + }, + "date_of_expiration": { + "type": 6, + "value": 1689020922030 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-07-10T20:43:39.362Z", - "money_release_date": "2023-07-10T20:43:39.362Z", + "date_approved": { + "type": 6, + "value": 1689021819362 + }, + "money_release_date": { + "type": 6, + "value": 1689021819362 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "62d4dffbc711461393ca2224", + "revision": "d3363413bd9e4235aa98f711", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72234,10 +82332,10 @@ "content": { "type": "STRING", "value": "Saque de 1.082.278,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "876a42c37ad843bd9e533480", + "revision": "265d380a60d948feaee2f49d", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72245,12 +82343,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "703ef4d2c735453ea0833e17", + "revision": "e4748c13a491469289d37637", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72265,18 +82363,27 @@ "total_amount": 5031032, "history_id": 1689102393644, "id": 1689102393644, - "date_created": "2023-07-11T19:06:33.644Z", - "date_last_updated": "2023-07-11T19:06:33.644Z", - "date_of_expiration": "2023-07-11T19:06:33.644Z", + "date_created": { + "type": 6, + "value": 1689102393644 + }, + "date_last_updated": { + "type": 6, + "value": 1689102393644 + }, + "date_of_expiration": { + "type": 6, + "value": 1689102393644 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "609499d69a7b40edb22dfeff", + "revision": "f40f4d2101f14d08805f8d9f", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72284,10 +82391,10 @@ "content": { "type": "STRING", "value": "Saque de 5.031.032,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", - "revision": "297351e4f68742f79db8c477", + "revision": "03ae4769c7d84a4fa22a8614", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72295,12 +82402,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "0500cbb82759441690b34ff7", + "revision": "4ddf5e064c844de89d073640", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72315,18 +82422,27 @@ "total_amount": 5995148, "history_id": 1689189282410, "id": 1689189282410, - "date_created": "2023-07-12T19:14:42.410Z", - "date_last_updated": "2023-07-12T19:14:42.410Z", - "date_of_expiration": "2023-07-12T19:14:42.410Z", + "date_created": { + "type": 6, + "value": 1689189282410 + }, + "date_last_updated": { + "type": 6, + "value": 1689189282410 + }, + "date_of_expiration": { + "type": 6, + "value": 1689189282410 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "742ab4aeb2054d7893640e00", + "revision": "0f2296568b994c8481bb62d7", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72334,10 +82450,10 @@ "content": { "type": "STRING", "value": "Saque de 5.995.148,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "edb65ce4944248f7929bbe0e", + "revision": "969a3e68abbc41d6979600c7", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72345,12 +82461,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "8dbdea14c7bf4fd7aae81627", + "revision": "57c10a8b6a854a37a6269ce1", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72365,18 +82481,27 @@ "total_amount": 1000000, "history_id": 1689258056089, "id": 1689258056089, - "date_created": "2023-07-13T14:20:56.089Z", - "date_last_updated": "2023-07-13T14:20:56.089Z", - "date_of_expiration": "2023-07-13T14:20:56.089Z", + "date_created": { + "type": 6, + "value": 1689258056089 + }, + "date_last_updated": { + "type": 6, + "value": 1689258056089 + }, + "date_of_expiration": { + "type": 6, + "value": 1689258056089 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "84a3bb20af2c43bdac1541c2", + "revision": "68bf99cb1491425fa43a1dc7", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72384,10 +82509,10 @@ "content": { "type": "STRING", "value": "Saque de 1.000.000,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "7f4078f354574b48b0d9c807", + "revision": "0eb965ac32fc4709bf7f7306", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72395,12 +82520,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "373483a7b3cb45488bd51234", + "revision": "e16903785e304bf3a4979626", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72415,18 +82540,27 @@ "total_amount": 530, "history_id": 1689390236969, "id": 1689390236969, - "date_created": "2023-07-15T03:03:56.969Z", - "date_last_updated": "2023-07-15T03:03:56.969Z", - "date_of_expiration": "2023-08-14T03:03:56.969Z", + "date_created": { + "type": 6, + "value": 1689390236969 + }, + "date_last_updated": { + "type": 6, + "value": 1689390236969 + }, + "date_of_expiration": { + "type": 6, + "value": 1691982236969 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "fa837bc672ff4c8d8baeed32", + "revision": "c5dc8ab9c5eb473392d22fbf", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72434,10 +82568,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "c871509762004766b946646f", + "revision": "84c6f73eca654c3b8eebc3eb", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72445,12 +82579,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "991513d9b78d4208b3af08ef", + "revision": "98eb1774c0ff4998b943637e", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72465,18 +82599,27 @@ "total_amount": 530, "history_id": 1689424277440, "id": 1689424277440, - "date_created": "2023-07-15T12:31:17.440Z", - "date_last_updated": "2023-07-15T12:31:17.440Z", - "date_of_expiration": "2023-08-14T12:31:17.440Z", + "date_created": { + "type": 6, + "value": 1689424277440 + }, + "date_last_updated": { + "type": 6, + "value": 1689424277440 + }, + "date_of_expiration": { + "type": 6, + "value": 1692016277440 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "88b4075fdf1f4bc787746c83", + "revision": "b6dd8e8109b5445e9fef896e", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72484,10 +82627,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "e9ef6bdb762a4c0c99ad6c61", + "revision": "5f78d6bf80394a99a04ead29", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820563, + "modified": 1701465820563 } }, { @@ -72495,12 +82638,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "1c4659733130473e9d3012c3", + "revision": "8f12f67cdebb4d7882c875d2", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72515,22 +82658,37 @@ "total_amount": 530, "history_id": 1689612021512, "id": 1689612021512, - "date_created": "2023-07-17T16:40:21.512Z", - "date_last_updated": "2023-07-25T18:05:52.467Z", - "date_of_expiration": "2023-08-16T16:40:21.512Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-25T18:05:52.467Z", - "money_release_date": "2023-07-25T18:05:52.467Z", + "date_created": { + "type": 6, + "value": 1689612021512 + }, + "date_last_updated": { + "type": 6, + "value": 1690308352467 + }, + "date_of_expiration": { + "type": 6, + "value": 1692204021512 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1690308352467 + }, + "money_release_date": { + "type": 6, + "value": 1690308352467 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "31d9c798b8bc4a1c9f50317a", + "revision": "d748de5aaaa247a7bd72a31f", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72538,10 +82696,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "5cbb5d3cbbb348d68e6c43e4", + "revision": "7a1c1a7abe144983813ba2f4", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72549,12 +82707,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "a56ef5a103c5429dad4ee1d4", + "revision": "acc356adcf8e4b45bf723fee", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72569,18 +82727,27 @@ "total_amount": 2000000, "history_id": 1689612840534, "id": 1689612840534, - "date_created": "2023-07-17T16:54:00.534Z", - "date_last_updated": "2023-07-17T16:54:00.534Z", - "date_of_expiration": "2023-07-17T16:54:00.534Z", + "date_created": { + "type": 6, + "value": 1689612840534 + }, + "date_last_updated": { + "type": 6, + "value": 1689612840534 + }, + "date_of_expiration": { + "type": 6, + "value": 1689612840534 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "473e6a0ddfc9467e9c7ae443", + "revision": "48e4ccdc2bbf4aa9ab90d97f", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72588,10 +82755,10 @@ "content": { "type": "STRING", "value": "Saque de 2.000.000,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "d735b3ef322c42989150546e", + "revision": "87871cfeed454f0997bf4f03", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72611,12 +82778,12 @@ "installment_amount": 530, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "a953800429a745a39fccce71", + "revision": "0fccec855e7e41c4a6c693c8", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72633,9 +82800,18 @@ "total_amount": 530, "id": 1690326796884, "contract_id": "1684182120706", - "date_created": "2023-07-25T23:13:16.884Z", - "date_last_updated": "2023-07-25T23:13:16.884Z", - "date_of_expiration": "2023-07-25T23:13:16.884Z", + "date_created": { + "type": 6, + "value": 1690326796884 + }, + "date_last_updated": { + "type": 6, + "value": 1690326796884 + }, + "date_of_expiration": { + "type": 6, + "value": 1690326796884 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -72643,10 +82819,10 @@ "currency_id": "BRL", "history_id": 1690326796884 }, - "revision": "f4df6e20fda542e88d794cce", + "revision": "6daddfe05dd44628a004023f", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72654,10 +82830,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 2 no valor de 530,00 BRL referente ao contrato 1684182120706", - "revision": "3b9cb9eb2fd346369338a671", + "revision": "d406baa86b46412b91c2c057", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72673,12 +82849,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "5c805c1efbd24bad8091ffcc", + "revision": "cd803da2e32f49aabc3333e2", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72686,10 +82862,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1690327152842", - "revision": "cf7ea3a0b2304e26a8aa15c1", + "revision": "776faa1b42d641539b8af07d", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72704,23 +82880,35 @@ "total_amount": 6990049, "id": 1690327152842, "history_id": 1690327152842, - "date_created": "2023-07-25T23:19:12.842Z", - "date_last_updated": "2023-07-26T17:34:13.723Z", - "date_of_expiration": "2023-07-25T23:19:12.842Z", + "date_created": { + "type": 6, + "value": 1690327152842 + }, + "date_last_updated": { + "type": 6, + "value": 1690392853723 + }, + "date_of_expiration": { + "type": 6, + "value": 1690327152842 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_amount", - "money_release_date": "2023-07-26T17:34:13.723Z", + "money_release_date": { + "type": 6, + "value": 1690392853723 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "1c07a39d4cd649ee80fcf6c5", + "revision": "db1019ef679246b7b3688fd2", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72728,10 +82916,10 @@ "content": { "type": "STRING", "value": "Saque de 6.990.049,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", - "revision": "e89c1d86c03749bebf05f544", + "revision": "fd862116acdd48d0a85e6368", "revision_nr": 1, - "created": 1701463509588, - "modified": 1701463509588 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72747,12 +82935,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "baedf3813051471da87228b8", + "revision": "a2e27fb7bf3f4280bac8b638", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72760,10 +82948,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1690371637044", - "revision": "450ed5d2f59d4da68b74c48b", + "revision": "1e3a7fde91fe4d64984f522b", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72778,24 +82966,39 @@ "total_amount": 3280090, "id": 1690371637044, "history_id": 1690371637044, - "date_created": "2023-07-26T11:40:37.044Z", - "date_last_updated": "2023-07-26T17:33:05.648Z", - "date_of_expiration": "2023-07-26T11:40:37.044Z", + "date_created": { + "type": 6, + "value": 1690371637044 + }, + "date_last_updated": { + "type": 6, + "value": 1690392785648 + }, + "date_of_expiration": { + "type": 6, + "value": 1690371637044 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": "2023-07-26T17:33:05.648Z", - "money_release_date": "2023-07-26T17:33:05.648Z", + "date_approved": { + "type": 6, + "value": 1690392785648 + }, + "money_release_date": { + "type": 6, + "value": 1690392785648 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "14b1b385e8564dab9765b72e", + "revision": "ba2f08b8a920467a92d6b1ac", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72803,10 +83006,10 @@ "content": { "type": "STRING", "value": "Saque de 3.280.090,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", - "revision": "532e07d0c93948cd9b0895e5", + "revision": "37bda2f611754d95908a25ed", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72822,12 +83025,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "4c735dde4e214d61808ea1fa", + "revision": "a2fa059061d24cdfa43a68fe", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72835,10 +83038,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1694007742356", - "revision": "68e733b3924b4e33b84453db", + "revision": "ea618a369e1b4080bbbab7b6", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72853,9 +83056,18 @@ "total_amount": 3678031, "id": "1694007742356", "history_id": "1694007742356", - "date_created": "2023-09-06T13:42:22.356Z", - "date_last_updated": "2023-09-06T13:42:22.356Z", - "date_of_expiration": "2023-10-06T13:42:22.356Z", + "date_created": { + "type": 6, + "value": 1694007742356 + }, + "date_last_updated": { + "type": 6, + "value": 1694007742356 + }, + "date_of_expiration": { + "type": 6, + "value": 1696599742356 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -72863,10 +83075,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "d5ee0da9f89e401b96f93972", + "revision": "78b7349066b945a78bb0ea33", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72874,10 +83086,10 @@ "content": { "type": "STRING", "value": "Investimento de 3.678.031,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/10/2023 - Y12XDT27", - "revision": "6385f60e76dc46d2a541e6d5", + "revision": "d3e5f65756504d499b91e74d", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72893,12 +83105,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "f3aa14583165446b87fa420f", + "revision": "54a92c2ac82940c8adde62a1", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72906,10 +83118,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1696599770690", - "revision": "1d96e6c860a8482181c5469a", + "revision": "488965e4dc3245b5a95f9921", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72925,9 +83137,18 @@ "total_amount": 3751591.62, "id": "1696599770690", "history_id": "1696599770690", - "date_created": "2023-10-06T13:42:50.690Z", - "date_last_updated": "2023-10-06T13:42:50.690Z", - "date_of_expiration": "2023-10-06T13:42:50.690Z", + "date_created": { + "type": 6, + "value": 1696599770690 + }, + "date_last_updated": { + "type": 6, + "value": 1696599770690 + }, + "date_of_expiration": { + "type": 6, + "value": 1696599770690 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -72935,10 +83156,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "81b6bc06e49344dd8ab28d30", + "revision": "ae8ec11bdac241ac84d99bc1", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72946,10 +83167,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 3.678.031,00 IVIP com um rendimento de +73.560,62 IVIP (2,00%) - Y12XDT27", - "revision": "9248df51633e4ebaacc92714", + "revision": "96eeada9a6a840ad9d7361d4", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72965,12 +83186,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "d0d743b681084ed3b563b404", + "revision": "315326fc904647a7b7c880db", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72978,10 +83199,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1696599812843", - "revision": "c2e6bcab59494e5ca2dfeca3", + "revision": "cef10707bce1467ab7c9c4ea", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -72997,9 +83218,18 @@ "total_amount": 3783519, "id": "1696599812843", "history_id": "1696599812843", - "date_created": "2023-10-06T13:43:32.843Z", - "date_last_updated": "2023-10-06T13:43:32.843Z", - "date_of_expiration": "2023-11-06T13:43:32.817Z", + "date_created": { + "type": 6, + "value": 1696599812843 + }, + "date_last_updated": { + "type": 6, + "value": 1696599812843 + }, + "date_of_expiration": { + "type": 6, + "value": 1699278212817 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73007,10 +83237,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "b4e2b0280c5643329509b6ce", + "revision": "14d226efedb24ce38005cea0", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73018,10 +83248,10 @@ "content": { "type": "STRING", "value": "Investimento de 3.783.519,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", - "revision": "1fe196b0c51e4ccdb47140aa", + "revision": "f271e13de3124645a3a97926", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73029,10 +83259,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1424e6beb96b4df6b4e6fdcd", + "revision": "da463a04bd03408c8a7d55b2", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73044,10 +83274,10 @@ "label": "Em 2 parcela(s) 6.00%", "amount": 60 }, - "revision": "9fd32ffc9e9641d9b4d2753d", + "revision": "7c619999045249da98747a93", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73061,15 +83291,18 @@ "total_amount": 1060, "installments": 2, "installment_amount": 530, - "date_created": "2023-05-15T20:22:00.706Z", + "date_created": { + "type": 6, + "value": 1684182120706 + }, "history_id": 1684182120706, "currency_id": "BRL", "status": "paid" }, - "revision": "b647092d45b7438a9e98ca22", + "revision": "95e4b01fad6b4f14a6314778", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73077,10 +83310,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", - "revision": "2f80ae679c4c45568c73a8a8", + "revision": "1e0a03f433dc4bf99c1518b0", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73088,10 +83321,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "cd816e65c5cc495c9d021701", + "revision": "bf41895707c24f0f8e08842a", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73099,10 +83332,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "36949e5b85414672a44e67dc", + "revision": "0a5dafac07a845a7add45480", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73114,10 +83347,10 @@ "label": "Em 2 parcela(s) 6.00%", "amount": 60 }, - "revision": "2122e4ba4c0942b4968c8f26", + "revision": "4ee34800649743b9af62a8cc", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73131,15 +83364,18 @@ "total_amount": 1060, "installments": 2, "installment_amount": 530, - "date_created": "2023-05-15T20:22:00.706Z", + "date_created": { + "type": 6, + "value": 1684182120706 + }, "history_id": 1684182120706, "currency_id": "BRL", "status": "paid" }, - "revision": "2c425a5267134cb8979454cf", + "revision": "3d7e30eb49e945978fe9ed8b", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73147,10 +83383,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", - "revision": "57b8576d92fb422bb115d5b1", + "revision": "7ce36b05f75a4a619d5f14ed", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73158,10 +83394,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "959319fcab114b2a93fa2ed6", + "revision": "c0182ee7d2824a0da80dc642", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73169,10 +83405,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "907daf2212fd4557a91fc6bb", + "revision": "9aed098d5c054f7b82737752", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73180,10 +83416,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "613f74f57dfb487698f506dd", + "revision": "9c0ca5e928c443f1b99e8518", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73193,13 +83429,19 @@ "value": { "approvedLimit": 1000, "limitUsed": 0, - "analysisRequested": "2023-05-06T03:39:28.087Z", - "lastReview": "2023-05-06T03:39:53.183Z" + "analysisRequested": { + "type": 6, + "value": 1683344368087 + }, + "lastReview": { + "type": 6, + "value": 1683344393183 + } }, - "revision": "b4a4692addb440718d9d4dc6", + "revision": "50d5d60d8ef143d496e4617e", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73211,12 +83453,15 @@ "dateValidity": 1678707203279, "totalValue": 2242.137, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } }, - "revision": "d91a71f5a0964a1686ad1aa3", + "revision": "b3e8e565aa254f3a86e9c319", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73228,10 +83473,10 @@ "symbol": "BRL", "value": 0.98 }, - "revision": "54d783632886465cb7104c98", + "revision": "e1c050688c1543d393343299", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73243,10 +83488,10 @@ "symbol": "IVIP", "value": 0.000021 }, - "revision": "eea484e04fe241ad98843afb", + "revision": "4d51b1b5ef3d46f6bae486b8", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73254,10 +83499,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "74b0db2c47784f95a761a465", + "revision": "249a476e33a74565890a3d32", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73265,12 +83510,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "96c98fe3623e42289cd528e6", + "revision": "362b052ab69145fd9032c9c3", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73285,22 +83530,37 @@ "total_amount": 200, "history_id": 1684492352568, "id": 1684492352568, - "date_created": "2023-05-19T10:32:32.568Z", - "date_last_updated": "2023-05-19T10:35:07.764Z", - "date_of_expiration": "2023-06-18T10:32:32.568Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-19T10:35:07.764Z", - "money_release_date": "2023-05-19T10:35:07.764Z", + "date_created": { + "type": 6, + "value": 1684492352568 + }, + "date_last_updated": { + "type": 6, + "value": 1684492507764 + }, + "date_of_expiration": { + "type": 6, + "value": 1687084352568 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684492507764 + }, + "money_release_date": { + "type": 6, + "value": 1684492507764 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "d1e1d1dcbbad46ae9b9df4d1", + "revision": "c71cfbcfff6e4421b2a3242d", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73308,10 +83568,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "4bedbaea684e40dd976d8f69", + "revision": "762130dcbb184cc5b822a2bc", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73329,12 +83589,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "1674c3a6786a4aef96614e06", + "revision": "e3153e2a366b4191823be207", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73350,9 +83610,18 @@ "original_amount": 974146, "total_amount": 974146, "id": 1684624220546, - "date_created": "2023-05-20T23:10:20.546Z", - "date_last_updated": "2023-05-20T23:10:20.546Z", - "date_of_expiration": "2023-05-20T23:10:20.546Z", + "date_created": { + "type": 6, + "value": 1684624220546 + }, + "date_last_updated": { + "type": 6, + "value": 1684624220546 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624220546 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73361,10 +83630,10 @@ "history_id": 1684624220546, "description": "Compra de 974.146,00 IVIP por 200,00 BRL" }, - "revision": "30ff6618aebf4adfacca2224", + "revision": "7a77785292a04d90906e622c", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73376,10 +83645,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "4a2dfa7003aa44a4958e0ce7", + "revision": "e3473e1dbc9346fd81ffd39f", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73387,10 +83656,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d631a8b78b814fa6b54b18e0", + "revision": "781b3e0bd53c4d3dbca4d7fb", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73398,10 +83667,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "279a59def9ff43baa761a2ea", + "revision": "664661a0fcc74efcb03457b5", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73416,19 +83685,28 @@ "total_amount": 1100, "history_id": 1684625319623, "id": 1684625319623, - "date_created": "2023-05-20T23:28:39.623Z", - "date_last_updated": "2023-05-20T23:28:39.623Z", - "date_of_expiration": "2023-06-19T23:28:39.623Z", + "date_created": { + "type": 6, + "value": 1684625319623 + }, + "date_last_updated": { + "type": 6, + "value": 1684625319623 + }, + "date_of_expiration": { + "type": 6, + "value": 1687217319623 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "ad9008ceecd54f53927f1803", + "revision": "9685cf84b21c4915823a5832", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73436,10 +83714,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "ed03743a1d874349902c9217", + "revision": "d5fac9f742a04d6b80c335b7", "revision_nr": 1, - "created": 1701463509589, - "modified": 1701463509589 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73457,12 +83735,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "10d0a207ed2741938ef0ebc9", + "revision": "d265e7966d6e4c73a6242010", "revision_nr": 1, - "created": 1701463509590, - "modified": 1701463509590 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73478,9 +83756,18 @@ "original_amount": 4870731, "total_amount": 4870731, "id": 1684625351966, - "date_created": "2023-05-20T23:29:11.966Z", - "date_last_updated": "2023-05-20T23:29:11.966Z", - "date_of_expiration": "2023-05-20T23:29:11.966Z", + "date_created": { + "type": 6, + "value": 1684625351966 + }, + "date_last_updated": { + "type": 6, + "value": 1684625351966 + }, + "date_of_expiration": { + "type": 6, + "value": 1684625351966 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73489,10 +83776,10 @@ "history_id": 1684625351966, "description": "Compra de 4.870.731,00 IVIP por 1.000,00 BRL" }, - "revision": "6b7abba28af9413da8fbc27c", + "revision": "d5920c590c534d5eb455ff81", "revision_nr": 1, - "created": 1701463509590, - "modified": 1701463509590 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73500,12 +83787,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "e5df6d073010424fac5259bc", + "revision": "f7d3e12a2740481ab0437bbf", "revision_nr": 1, - "created": 1701463509590, - "modified": 1701463509590 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73520,22 +83807,37 @@ "total_amount": 400, "history_id": 1685027205516, "id": 1685027205516, - "date_created": "2023-05-25T15:06:45.516Z", - "date_last_updated": "2023-05-28T22:24:43.393Z", - "date_of_expiration": "2023-06-24T15:06:45.516Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-28T22:24:43.393Z", - "money_release_date": "2023-05-28T22:24:43.393Z", + "date_created": { + "type": 6, + "value": 1685027205516 + }, + "date_last_updated": { + "type": 6, + "value": 1685312683393 + }, + "date_of_expiration": { + "type": 6, + "value": 1687619205516 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685312683393 + }, + "money_release_date": { + "type": 6, + "value": 1685312683393 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "6ab92adf8f1e42b1b1974446", + "revision": "60c26d6b44d444abbf21dfd6", "revision_nr": 1, - "created": 1701463509590, - "modified": 1701463509590 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73543,10 +83845,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 400,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "86239c75b89a430f8ba8803b", + "revision": "2cdd7ab6f5754c4e867b12e0", "revision_nr": 1, - "created": 1701463509590, - "modified": 1701463509590 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73564,12 +83866,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "56ba940ac61f4a02bd8ee1a7", + "revision": "e3239c81e00c4a4f8dbd15b1", "revision_nr": 1, - "created": 1701463509590, - "modified": 1701463509590 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73585,9 +83887,18 @@ "original_amount": 10000000, "total_amount": 10000000, "id": 1685234226998, - "date_created": "2023-05-28T00:37:06.998Z", - "date_last_updated": "2023-05-28T00:37:06.998Z", - "date_of_expiration": "2023-05-28T00:37:06.998Z", + "date_created": { + "type": 6, + "value": 1685234226998 + }, + "date_last_updated": { + "type": 6, + "value": 1685234226998 + }, + "date_of_expiration": { + "type": 6, + "value": 1685234226998 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -73595,10 +83906,10 @@ "currency_id": "IVIPAY", "history_id": 1685234226998 }, - "revision": "b2dab1ac3f2b4f4faeaf0184", + "revision": "0daf27b18c174ecebada66ec", "revision_nr": 1, - "created": 1701463509590, - "modified": 1701463509590 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73606,10 +83917,10 @@ "content": { "type": "STRING", "value": "Compra de 10.000.000,00 IVIPAY por 1.000.000,00 IVIP estabilizando US$ 41,00", - "revision": "a663b369e2234b36bb8af8f3", + "revision": "a271383e5a1641388dbb5754", "revision_nr": 1, - "created": 1701463509590, - "modified": 1701463509590 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73627,12 +83938,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b6bd96c488aa44c6863c6a02", + "revision": "727deae844a74fb282888c95", "revision_nr": 1, - "created": 1701463509590, - "modified": 1701463509590 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73648,9 +83959,18 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685456788341, - "date_created": "2023-05-30T14:26:28.341Z", - "date_last_updated": "2023-05-30T14:26:28.341Z", - "date_of_expiration": "2023-05-30T14:26:28.341Z", + "date_created": { + "type": 6, + "value": 1685456788341 + }, + "date_last_updated": { + "type": 6, + "value": 1685456788341 + }, + "date_of_expiration": { + "type": 6, + "value": 1685456788341 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -73658,10 +83978,10 @@ "currency_id": "IVIP", "history_id": 1685456788341 }, - "revision": "d379acf4d47d4715acfa5714", + "revision": "2bf11003efc54669a8cc67f7", "revision_nr": 1, - "created": 1701463509590, - "modified": 1701463509590 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73669,10 +83989,10 @@ "content": { "type": "STRING", "value": "Compra de 1.000.000,00 IVIP por 10.000.000,00 IVIPAY", - "revision": "b1e3be5e0f2e4baa8548e53b", + "revision": "be407a14fae04a44b6a05a10", "revision_nr": 1, - "created": 1701463509590, - "modified": 1701463509590 + "created": 1701465820564, + "modified": 1701465820564 } }, { @@ -73690,12 +84010,12 @@ "installment_amount": 1000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "e48ad35064f549efadf52b45", + "revision": "f455b90ba6cd44469ef592ef", "revision_nr": 1, - "created": 1701463509590, - "modified": 1701463509590 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -73710,9 +84030,18 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685665895143, - "date_created": "2023-06-02T00:31:35.143Z", - "date_last_updated": "2023-06-02T00:31:35.143Z", - "date_of_expiration": "2025-06-02T00:31:35.143Z", + "date_created": { + "type": 6, + "value": 1685665895143 + }, + "date_last_updated": { + "type": 6, + "value": 1685665895143 + }, + "date_of_expiration": { + "type": 6, + "value": 1748824295143 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73720,10 +84049,10 @@ "currency_id": "IVIP", "history_id": 1685665895143 }, - "revision": "b796249795c24903a8804b4b", + "revision": "8e2d0e5904cd415580484cad", "revision_nr": 1, - "created": 1701463509590, - "modified": 1701463509590 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -73731,10 +84060,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "d723a5f889164319aba49cfe", + "revision": "1af80350e36f4f4c9508750d", "revision_nr": 1, - "created": 1701463509590, - "modified": 1701463509590 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -73752,12 +84081,12 @@ "installment_amount": 1000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "f2cdccb14b16461eb4bad699", + "revision": "53d018b783414a81aa5749eb", "revision_nr": 1, - "created": 1701463509590, - "modified": 1701463509590 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -73772,9 +84101,18 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685665913616, - "date_created": "2023-06-02T00:31:53.616Z", - "date_last_updated": "2023-06-02T00:31:53.616Z", - "date_of_expiration": "2024-06-02T00:31:53.616Z", + "date_created": { + "type": 6, + "value": 1685665913616 + }, + "date_last_updated": { + "type": 6, + "value": 1685665913616 + }, + "date_of_expiration": { + "type": 6, + "value": 1717288313616 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73782,10 +84120,10 @@ "currency_id": "IVIP", "history_id": 1685665913616 }, - "revision": "592584e1819149b19fc138ac", + "revision": "646a9432abb8425089dc902e", "revision_nr": 1, - "created": 1701463509590, - "modified": 1701463509590 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -73793,10 +84131,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "743ca146dc7943c794509751", + "revision": "242381d074144a6aaaf2b89b", "revision_nr": 1, - "created": 1701463509590, - "modified": 1701463509590 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -73814,12 +84152,12 @@ "installment_amount": 1844877, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "fd1ee9d2ae50499f8cfa516d", + "revision": "23276bc2b02742c8bb03139f", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -73834,9 +84172,18 @@ "original_amount": 1844877, "total_amount": 1844877, "id": 1685665938582, - "date_created": "2023-06-02T00:32:18.582Z", - "date_last_updated": "2023-06-02T00:32:18.582Z", - "date_of_expiration": "2023-12-02T00:32:18.582Z", + "date_created": { + "type": 6, + "value": 1685665938582 + }, + "date_last_updated": { + "type": 6, + "value": 1685665938582 + }, + "date_of_expiration": { + "type": 6, + "value": 1701477138582 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73845,10 +84192,10 @@ "history_id": 1685665938582, "wasDebited": true }, - "revision": "110775d869dc46f69ef6c5cc", + "revision": "040d64e503cf46c3b5536f23", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -73856,10 +84203,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.844.877,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", - "revision": "82271028e7e24105a880f1dd", + "revision": "31f66aaf3d7e423ea8368aae", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -73877,12 +84224,12 @@ "installment_amount": 1000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "94c6fbb150b04e42beedde6e", + "revision": "006e81b8df3641f9a0188d97", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -73897,9 +84244,18 @@ "original_amount": 1000000, "total_amount": 1000000, "id": 1685665980650, - "date_created": "2023-06-02T00:33:00.650Z", - "date_last_updated": "2023-06-02T00:33:00.650Z", - "date_of_expiration": "2023-07-02T00:33:00.650Z", + "date_created": { + "type": 6, + "value": 1685665980650 + }, + "date_last_updated": { + "type": 6, + "value": 1685665980650 + }, + "date_of_expiration": { + "type": 6, + "value": 1688257980650 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73907,10 +84263,10 @@ "currency_id": "IVIP", "history_id": 1685665980650 }, - "revision": "f51e90143ab44a28a0ed47ff", + "revision": "2dfdc3b36eba4c699df8e011", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -73918,10 +84274,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "0b09a0ec36a64026b8a54b31", + "revision": "8283bbd991cb47db8899ffad", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -73939,12 +84295,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "7f1344d2e92440d996b80e89", + "revision": "84ec22e73f54445ab21854ae", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -73960,9 +84316,18 @@ "original_amount": 1403508, "total_amount": 1403508, "id": 1685743358755, - "date_created": "2023-06-02T22:02:38.755Z", - "date_last_updated": "2023-06-02T22:02:38.755Z", - "date_of_expiration": "2023-06-02T22:02:38.755Z", + "date_created": { + "type": 6, + "value": 1685743358755 + }, + "date_last_updated": { + "type": 6, + "value": 1685743358755 + }, + "date_of_expiration": { + "type": 6, + "value": 1685743358755 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -73971,10 +84336,10 @@ "history_id": 1685743358755, "description": "Compra de 1.403.508,00 IVIP por 400,00 BRL" }, - "revision": "b33a93feea9348b28ba0461c", + "revision": "206bcf27190045df8dfdd3b2", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -73982,12 +84347,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "2a28a3ad79d84124a792c880", + "revision": "f12291a1d50449578c5adf50", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74002,22 +84367,37 @@ "total_amount": 250, "history_id": 1686581106502, "id": 1686581106502, - "date_created": "2023-06-12T14:45:06.502Z", - "date_last_updated": "2023-06-12T15:20:07.910Z", - "date_of_expiration": "2023-07-12T14:45:06.502Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-06-12T15:20:07.910Z", - "money_release_date": "2023-06-12T15:20:07.910Z", + "date_created": { + "type": 6, + "value": 1686581106502 + }, + "date_last_updated": { + "type": 6, + "value": 1686583207910 + }, + "date_of_expiration": { + "type": 6, + "value": 1689173106502 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686583207910 + }, + "money_release_date": { + "type": 6, + "value": 1686583207910 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "1f7f828a17d647f68e41cbbf", + "revision": "142d532345be4b438ffbb636", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74025,10 +84405,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 250,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "f65236b18de44592a575c356", + "revision": "89464362d6b94298a07960af", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74048,12 +84428,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d180ef21bb864355acc30998", + "revision": "b537c309522b42a9b2e2305a", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74070,9 +84450,18 @@ "total_amount": 220, "id": 1686597954870, "contract_id": "1684625319623", - "date_created": "2023-06-12T19:25:54.870Z", - "date_last_updated": "2023-06-12T19:25:54.870Z", - "date_of_expiration": "2023-06-12T19:25:54.870Z", + "date_created": { + "type": 6, + "value": 1686597954870 + }, + "date_last_updated": { + "type": 6, + "value": 1686597954870 + }, + "date_of_expiration": { + "type": 6, + "value": 1686597954870 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -74080,10 +84469,10 @@ "currency_id": "BRL", "history_id": 1686597954870 }, - "revision": "10a39e9fcd6447ccb1b0c4a8", + "revision": "08b5e68f17114cc892becd0d", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74091,10 +84480,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "0823ae18be944120b59bde06", + "revision": "9ddea63e93454924bb2f2a48", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74112,12 +84501,12 @@ "installment_amount": 2000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "bdc7d2951c27460aa6f645de", + "revision": "190a195a38954ca8b88f1751", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74132,9 +84521,18 @@ "original_amount": 2000000, "total_amount": 2000000, "id": 1687313544975, - "date_created": "2023-06-21T02:12:24.975Z", - "date_last_updated": "2023-06-21T02:12:24.975Z", - "date_of_expiration": "2024-06-21T02:12:24.975Z", + "date_created": { + "type": 6, + "value": 1687313544975 + }, + "date_last_updated": { + "type": 6, + "value": 1687313544975 + }, + "date_of_expiration": { + "type": 6, + "value": 1718935944975 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74142,10 +84540,10 @@ "currency_id": "IVIP", "history_id": 1687313544975 }, - "revision": "cdecb0db84f64d229502d2e2", + "revision": "4df60fb8bb75414f8c6eb18d", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74153,10 +84551,10 @@ "content": { "type": "STRING", "value": "Investimento de 2.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", - "revision": "63ee38ff7c7b4a559525a2f9", + "revision": "b7c94abd40d548aaa834f4a7", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74174,12 +84572,12 @@ "installment_amount": 1000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "6600df28cefe4c4db3fa717e", + "revision": "cf861cce60134068ac59ac55", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74194,9 +84592,18 @@ "original_amount": 1020000, "total_amount": 1020000, "id": 1688400283150, - "date_created": "2023-07-03T16:04:43.150Z", - "date_last_updated": "2023-07-03T16:04:43.150Z", - "date_of_expiration": "2023-07-03T16:04:43.150Z", + "date_created": { + "type": 6, + "value": 1688400283150 + }, + "date_last_updated": { + "type": 6, + "value": 1688400283150 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400283150 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74205,10 +84612,10 @@ "history_id": 1688400283150, "wasDebited": true }, - "revision": "a89de6c8f1324cf5b66e0bc7", + "revision": "8ba2c6ff09e244749c71f96d", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74216,10 +84623,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 1.000.000,00 IVIP com um rendimento de +20.000,00 IVIP (2,00%)", - "revision": "60db1ea56bcd41d3a200f8c5", + "revision": "624fa9bfd844437c964f5017", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74237,12 +84644,12 @@ "installment_amount": 3268385, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "9651f57ae95c43b1a7992c29", + "revision": "c4de4400d51741838d10479b", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74257,9 +84664,18 @@ "original_amount": 3268385, "total_amount": 3268385, "id": 1688400827775, - "date_created": "2023-07-03T16:13:47.775Z", - "date_last_updated": "2023-07-03T16:13:47.775Z", - "date_of_expiration": "2023-08-03T16:13:47.775Z", + "date_created": { + "type": 6, + "value": 1688400827775 + }, + "date_last_updated": { + "type": 6, + "value": 1688400827775 + }, + "date_of_expiration": { + "type": 6, + "value": 1691079227775 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74267,10 +84683,10 @@ "currency_id": "IVIP", "history_id": 1688400827775 }, - "revision": "39de90090ffd416da4d368c4", + "revision": "67b9776fd3c84cb68abb3fdc", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74278,10 +84694,10 @@ "content": { "type": "STRING", "value": "Investimento de 3.268.385,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "941a6d04fe064da693d78fd7", + "revision": "502108e1ff134f2e8091ff8b", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74289,12 +84705,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "e9d3982464f14262b9a3aad8", + "revision": "84213b4366bc4ce0915df283", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74309,22 +84725,37 @@ "total_amount": 200, "history_id": 1689085555442, "id": 1689085555442, - "date_created": "2023-07-11T14:25:55.442Z", - "date_last_updated": "2023-07-12T13:26:43.996Z", - "date_of_expiration": "2023-08-10T14:25:55.442Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-12T13:26:43.996Z", - "money_release_date": "2023-07-12T13:26:43.996Z", + "date_created": { + "type": 6, + "value": 1689085555442 + }, + "date_last_updated": { + "type": 6, + "value": 1689168403996 + }, + "date_of_expiration": { + "type": 6, + "value": 1691677555442 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689168403996 + }, + "money_release_date": { + "type": 6, + "value": 1689168403996 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "c27c25a0412943d39951fd99", + "revision": "f1d61a48b1d040118096e037", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74332,10 +84763,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "3caaf3ab16ad4f05b723751d", + "revision": "c27abdf15c1545f5a44a82de", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74355,12 +84786,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "782f01350c0e4de490c07caa", + "revision": "8b8c21529d5244258f635fce", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74377,9 +84808,18 @@ "total_amount": 220, "id": 1689168458989, "contract_id": "1684625319623", - "date_created": "2023-07-12T13:27:38.989Z", - "date_last_updated": "2023-07-12T13:27:38.989Z", - "date_of_expiration": "2023-07-12T13:27:38.989Z", + "date_created": { + "type": 6, + "value": 1689168458989 + }, + "date_last_updated": { + "type": 6, + "value": 1689168458989 + }, + "date_of_expiration": { + "type": 6, + "value": 1689168458989 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -74387,10 +84827,10 @@ "currency_id": "BRL", "history_id": 1689168458989 }, - "revision": "08a4caf0ec314817827bbe6c", + "revision": "cb0f3684fced4fc68301c067", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74398,10 +84838,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "b29a8975dea04a1ea4514514", + "revision": "fa2e16adb833457f8213053a", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74419,12 +84859,12 @@ "installment_amount": 3268385, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "bda4a88c09474087b346880c", + "revision": "59db2b8d671a4101af2c5049", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74439,9 +84879,18 @@ "original_amount": 3333752.7, "total_amount": 3333752.7, "id": 1691079300942, - "date_created": "2023-08-03T16:15:00.942Z", - "date_last_updated": "2023-08-03T16:15:00.942Z", - "date_of_expiration": "2023-08-03T16:15:00.942Z", + "date_created": { + "type": 6, + "value": 1691079300942 + }, + "date_last_updated": { + "type": 6, + "value": 1691079300942 + }, + "date_of_expiration": { + "type": 6, + "value": 1691079300942 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74450,10 +84899,10 @@ "history_id": 1691079300942, "wasDebited": true }, - "revision": "256ac96894b74c99ae438974", + "revision": "8db1dd1ae7d34ca483e1ffb3", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74461,10 +84910,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 3.268.385,00 IVIP com um rendimento de +65.367,7 IVIP (2,00%)", - "revision": "abeee6deb4f34f35bce20472", + "revision": "4710e6d423504cba8bc6c26f", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74480,12 +84929,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "d832e1405359417cba58637f", + "revision": "6a09bee1ffdc4ded8f50c4c2", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74493,10 +84942,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1691084485881", - "revision": "45db2d4dfaca4014bca30ad5", + "revision": "45fda5dd035c482db3d7af7b", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74511,9 +84960,18 @@ "total_amount": 1488875, "id": 1691084485881, "history_id": 1691084485881, - "date_created": "2023-08-03T17:41:25.881Z", - "date_last_updated": "2023-08-03T17:41:25.881Z", - "date_of_expiration": "2023-09-03T17:41:25.881Z", + "date_created": { + "type": 6, + "value": 1691084485881 + }, + "date_last_updated": { + "type": 6, + "value": 1691084485881 + }, + "date_of_expiration": { + "type": 6, + "value": 1693762885881 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74521,10 +84979,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "d2bfb2f1e3104f6785ad8cb2", + "revision": "a77648e44b864ed598c8ce9c", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74532,10 +84990,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.488.875,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "7e2dd6713d144dd3b67b145e", + "revision": "2ac159bc7efd4daba1ff8de2", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74544,12 +85002,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-13T13:01:20.318Z" + ".val": { + "type": 6, + "value": 1694610080318 + } }, - "revision": "adf97bc5ab2148de98021ac9", + "revision": "4059722b36b442038eca6501", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74565,12 +85026,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "c46ecd4118084c87bf55277c", + "revision": "585322a9ac1a4d8db9ea34ae", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74578,10 +85039,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1692018080319", - "revision": "e37563a0bc154363a40e877b", + "revision": "04c87682e15b4b2c9b9f955f", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74596,23 +85057,35 @@ "total_amount": 250, "id": 1692018080319, "history_id": 1692018080319, - "date_created": "2023-08-14T13:01:20.319Z", - "date_last_updated": "2023-08-14T13:42:27.554Z", + "date_created": { + "type": 6, + "value": 1692018080319 + }, + "date_last_updated": { + "type": 6, + "value": 1692020547554 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-14T13:42:27.554Z", - "money_release_date": "2023-08-14T13:42:27.554Z", + "date_approved": { + "type": 6, + "value": 1692020547554 + }, + "money_release_date": { + "type": 6, + "value": 1692020547554 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "936825b93a2d4d89abd78a87", + "revision": "d28d03caea044294a4c8dcf2", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74620,10 +85093,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 250,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "dea6dcba73ca4735826ac37a", + "revision": "5298268151194490b7073e02", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820565, + "modified": 1701465820565 } }, { @@ -74643,12 +85116,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "e22ed68f489040619a359b02", + "revision": "c8963294f7f848d4938d0538", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74665,9 +85138,18 @@ "total_amount": 220, "id": 1692288719964, "contract_id": "1684625319623", - "date_created": "2023-08-17T16:11:59.964Z", - "date_last_updated": "2023-08-17T16:11:59.964Z", - "date_of_expiration": "2023-08-17T16:11:59.964Z", + "date_created": { + "type": 6, + "value": 1692288719964 + }, + "date_last_updated": { + "type": 6, + "value": 1692288719964 + }, + "date_of_expiration": { + "type": 6, + "value": 1692288719964 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -74675,10 +85157,10 @@ "currency_id": "BRL", "history_id": 1692288719964 }, - "revision": "ea2a54cec850405d8ed70fb6", + "revision": "781bd1d90d26438cb7637cc6", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74686,10 +85168,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "6330967689fe4807888fbb86", + "revision": "785a71cf562546929b29ff72", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74705,12 +85187,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "08bf92dcb7cf4cd7a8757041", + "revision": "82a48dfdc26b44ddb44a384b", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74718,10 +85200,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1693763097865", - "revision": "ebcfff93a45a4a709028680d", + "revision": "c2e51c90c65c45b298b6830b", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74736,9 +85218,18 @@ "total_amount": 1518652.5, "id": "1693763097865", "history_id": "1693763097865", - "date_created": "2023-09-03T17:44:57.865Z", - "date_last_updated": "2023-09-03T17:44:57.865Z", - "date_of_expiration": "2023-09-03T17:44:57.865Z", + "date_created": { + "type": 6, + "value": 1693763097865 + }, + "date_last_updated": { + "type": 6, + "value": 1693763097865 + }, + "date_of_expiration": { + "type": 6, + "value": 1693763097865 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -74746,10 +85237,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "67d48a9b7c66476f9af2479d", + "revision": "d285a4763bc442c390b519ca", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74757,10 +85248,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 1.488.875,00 IVIP com um rendimento de +29.777,5 IVIP (2,00%) - Y12XDT27", - "revision": "1c2c7493428445acad6220ad", + "revision": "47406df899884531ab088465", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74776,12 +85267,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "858b1141337a4b038da2da5f", + "revision": "ae5d5c761d264beeadd3a736", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74789,10 +85280,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1693915531936", - "revision": "60dcbc40780e4f66bf1fbc9f", + "revision": "77ba57b99be04430b703d809", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74807,23 +85298,35 @@ "total_amount": 1487490, "id": "1693915531936", "history_id": "1693915531936", - "date_created": "2023-09-05T12:05:31.936Z", - "date_last_updated": "2023-10-04T13:04:00.989Z", - "date_of_expiration": "2023-10-05T12:05:31.936Z", + "date_created": { + "type": 6, + "value": 1693915531936 + }, + "date_last_updated": { + "type": 6, + "value": 1696424640989 + }, + "date_of_expiration": { + "type": 6, + "value": 1696507531936 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": "2023-10-04T13:04:00.989Z", + "money_release_date": { + "type": 6, + "value": 1696424640989 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "9465afdad5c644908ba987c2", + "revision": "6cc62917ea964e03bb1c9c63", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74831,10 +85334,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.487.490,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", - "revision": "f66ba99865954a8aaa5755e2", + "revision": "d647159ba55948248e065923", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74843,12 +85346,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-06T13:21:36.774Z" + ".val": { + "type": 6, + "value": 1696598496774 + } }, - "revision": "ec0a4ca61483426db82a753b", + "revision": "f81cd30900dd425bbc16e212", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74864,12 +85370,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "cc46e5d2650740b0a8e2befd", + "revision": "8bda314a449e4d9981b8213f", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74877,10 +85383,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1694006496775", - "revision": "8638e1b0e9984370b0021382", + "revision": "f3fecc164aad4ec888aeeae5", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74895,23 +85401,35 @@ "total_amount": 220, "id": "1694006496775", "history_id": "1694006496775", - "date_created": "2023-09-06T13:21:36.775Z", - "date_last_updated": "2023-09-06T13:32:40.077Z", + "date_created": { + "type": 6, + "value": 1694006496775 + }, + "date_last_updated": { + "type": 6, + "value": 1694007160077 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-09-06T13:32:40.077Z", - "money_release_date": "2023-09-06T13:32:40.077Z", + "date_approved": { + "type": 6, + "value": 1694007160077 + }, + "money_release_date": { + "type": 6, + "value": 1694007160077 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "c0f6827a079f440b9a7c6302", + "revision": "5b6652d7a23e4baeb1b84b6a", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74919,10 +85437,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 220,00 BRL para a carteira iVip 1181.6054.9969.9842-60", - "revision": "5124e332430e4a11989c0e6d", + "revision": "66f604ce05ab40ef95b4eda0", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74938,14 +85456,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 4, "installments_payable": 1 }, - "revision": "6f1cb02f466b4c259dd3ce17", + "revision": "57b19b7aeb0442eb87a7cdd6", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74953,10 +85471,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1694572285717", - "revision": "42532aa564c2449a8ad5d01e", + "revision": "050e5d8a95ca4feea9557afc", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74971,9 +85489,18 @@ "total_amount": 220, "id": "1694572285717", "history_id": "1694572285717", - "date_created": "2023-09-13T02:31:25.717Z", - "date_last_updated": "2023-09-13T02:31:25.717Z", - "date_of_expiration": "2023-09-13T02:31:25.717Z", + "date_created": { + "type": 6, + "value": 1694572285717 + }, + "date_last_updated": { + "type": 6, + "value": 1694572285717 + }, + "date_of_expiration": { + "type": 6, + "value": 1694572285717 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -74981,10 +85508,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "eea79b46733d4f1287af38af", + "revision": "d8d04414fab84d799944124a", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -74992,10 +85519,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "8d6fed9514864e8cb5264611", + "revision": "59f0bab97c1a4f30b1103a68", "revision_nr": 1, - "created": 1701463509591, - "modified": 1701463509591 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75011,12 +85538,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "812b93e2e3e844caa6267963", + "revision": "b9ff39325ad243d68e1c865c", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75024,10 +85551,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696081581090", - "revision": "6a3b94826e1e4db89bb36c18", + "revision": "84d973da6bc842ae9acbde2a", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75043,9 +85570,18 @@ "total_amount": 40, "id": "1696081581090", "history_id": "1696081581090", - "date_created": "2023-09-30T13:46:21.090Z", - "date_last_updated": "2023-09-30T13:46:21.090Z", - "date_of_expiration": "2024-07-30T13:46:21.089Z", + "date_created": { + "type": 6, + "value": 1696081581090 + }, + "date_last_updated": { + "type": 6, + "value": 1696081581090 + }, + "date_of_expiration": { + "type": 6, + "value": 1722347181089 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -75053,10 +85589,10 @@ "base_currency_id": "BRL", "status_detail": "accredited" }, - "revision": "fa5af25530784dec994f9f6d", + "revision": "f63a7b7bfdb841d8a22e700e", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75064,10 +85600,10 @@ "content": { "type": "STRING", "value": "Investimento de 40,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 30/07/2024 - D03OS92M", - "revision": "9299b33cb1f54cacb719b286", + "revision": "3f0127f7e3c04b508d27ba7e", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75076,12 +85612,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-30T13:48:22.609Z" + ".val": { + "type": 6, + "value": 1698673702609 + } }, - "revision": "6c6f1efbb0aa4cd8bc60df94", + "revision": "ac91a9c4c07046dbb28901dd", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75097,12 +85636,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "7903edfdc12743baabe6fddf", + "revision": "68d01a2e7b0b4f01910b0841", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75110,10 +85649,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696081702609", - "revision": "936dc165f2db4bcc97b89f0c", + "revision": "c8851e7db5654a299dfb8566", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75129,23 +85668,35 @@ "total_amount": 225, "id": "1696081702609", "history_id": "1696081702609", - "date_created": "2023-09-30T13:48:22.609Z", - "date_last_updated": "2023-09-30T14:52:32.609Z", + "date_created": { + "type": 6, + "value": 1696081702609 + }, + "date_last_updated": { + "type": 6, + "value": 1696085552609 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-09-30T14:52:32.609Z", - "money_release_date": "2023-09-30T14:52:32.609Z", + "date_approved": { + "type": 6, + "value": 1696085552609 + }, + "money_release_date": { + "type": 6, + "value": 1696085552609 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "88d58f9200d645f0873f16d7", + "revision": "1db881cf3de14b20a38437c0", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75153,10 +85704,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 225,00 BRL para a carteira iVip 1181.6054.9969.9842-60", - "revision": "b1d8ec8b27d84d5e93a048fd", + "revision": "70d66a9dddd74467a121401c", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75172,14 +85723,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 5, "installments_payable": 0 }, - "revision": "bd9de38a23a9446da0a9aac3", + "revision": "c892b10e24d84c7db2381273", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75187,10 +85738,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696085699487", - "revision": "61571b0ae4cf4ad4a5ae2bee", + "revision": "4f495f832be14f0abfd189f6", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75206,9 +85757,18 @@ "total_amount": 220, "id": "1696085699487", "history_id": "1696085699487", - "date_created": "2023-09-30T14:54:59.487Z", - "date_last_updated": "2023-09-30T14:54:59.487Z", - "date_of_expiration": "2023-09-30T14:54:59.487Z", + "date_created": { + "type": 6, + "value": 1696085699487 + }, + "date_last_updated": { + "type": 6, + "value": 1696085699487 + }, + "date_of_expiration": { + "type": 6, + "value": 1696085699487 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -75216,10 +85776,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "39d21dc4fd9b4014921dfcbb", + "revision": "c84a8306706247fc94cd0dd2", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75227,10 +85787,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "1d3b9e771b764d239ff66494", + "revision": "4be0fbea369a4ac68c1d40e8", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75246,12 +85806,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "eaeafb1c68b3462f83290913", + "revision": "8c9f41cebab14c92983b690b", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75259,10 +85819,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696349167615", - "revision": "0f45be415c9448d7886425c8", + "revision": "55cb9b6df32a4466bbe42490", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75278,9 +85838,18 @@ "total_amount": 31163, "id": "1696349167615", "history_id": "1696349167615", - "date_created": "2023-10-03T16:06:07.615Z", - "date_last_updated": "2023-10-03T16:06:07.615Z", - "date_of_expiration": "2025-10-03T16:06:07.614Z", + "date_created": { + "type": 6, + "value": 1696349167615 + }, + "date_last_updated": { + "type": 6, + "value": 1696349167615 + }, + "date_of_expiration": { + "type": 6, + "value": 1759507567614 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -75288,10 +85857,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "dd50f7177dfb47bd892f5a9c", + "revision": "bde7cfb54d2b4b8784f98940", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75299,10 +85868,10 @@ "content": { "type": "STRING", "value": "Investimento de 31.163,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 03/10/2025 - P9A02KSL", - "revision": "4c1aeebdc537409abf63ceba", + "revision": "29151c0d75ef41a083d99d98", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75318,12 +85887,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "1f0cee3ab7944d4499bf2f94", + "revision": "aa5d64d105ac40bab346bbb9", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75331,10 +85900,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696462181596", - "revision": "bbdf1ba6ccab4af095f58f0a", + "revision": "fe1c3aff39c643169c624b6f", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75350,9 +85919,18 @@ "total_amount": 1487490, "id": "1696462181596", "history_id": "1696462181596", - "date_created": "2023-10-04T23:29:41.596Z", - "date_last_updated": "2023-10-04T23:29:41.596Z", - "date_of_expiration": "2023-11-04T23:29:41.513Z", + "date_created": { + "type": 6, + "value": 1696462181596 + }, + "date_last_updated": { + "type": 6, + "value": 1696462181596 + }, + "date_of_expiration": { + "type": 6, + "value": 1699140581513 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -75360,10 +85938,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "61d6a5da0e1a476a89fbcec8", + "revision": "537b2f8b6f51449ba8270535", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75371,10 +85949,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.487.490,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "07cffa5125024c39907d5f1e", + "revision": "5498c227643f48578b0852c9", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75382,10 +85960,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "49bea3c9028a498e8c924c1e", + "revision": "868b352a4d5446aa815384c6", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75397,10 +85975,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "a470f4ea730545e1a6341a29", + "revision": "41c978654341485c84ee0d96", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75414,15 +85992,18 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-20T23:28:39.623Z", + "date_created": { + "type": 6, + "value": 1684625319623 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid" }, - "revision": "f360f86cd8ec40668bcc9be0", + "revision": "2de1d4e62bec47b3b4356ec6", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75430,10 +86011,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "c87c92f5702d44bda02b41b9", + "revision": "40a0516c24a04f0ea1fb3369", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75441,10 +86022,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "16ee763a4d324bdeb2aea842", + "revision": "dc4f898082614ada9056e3d1", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75452,10 +86033,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4127c5007bd74d7da1b37102", + "revision": "e8f762f4ebe6404895a6ffb8", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75467,10 +86048,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "7a920f83b67d450fa23f0630", + "revision": "b05dc1e0f4ae4b4d92f42951", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75484,15 +86065,18 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-20T23:28:39.623Z", + "date_created": { + "type": 6, + "value": 1684625319623 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid" }, - "revision": "1f75ae46b2b44ffe99e0ec8b", + "revision": "5002de96d01745f1a3e764dd", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75500,10 +86084,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "659812913ea944558f9917ed", + "revision": "600642446a814cc0b9767aea", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75511,10 +86095,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "cf9a5c680d0e4a2191b67fbd", + "revision": "64e71c70410c48c6b84734f1", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75522,10 +86106,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "dedbb689ba684c6a9773aa40", + "revision": "faed97cadb764816a7ea8bd4", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75537,10 +86121,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "e305accf25724efd985ca126", + "revision": "dd326d6f469a4daa8a3949b6", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75554,15 +86138,18 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-20T23:28:39.623Z", + "date_created": { + "type": 6, + "value": 1684625319623 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid" }, - "revision": "ec708e2046244c978f09f8ed", + "revision": "2b0b77b595754a72baf48d70", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75570,10 +86157,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "c1a7184b10c540bea89f171b", + "revision": "b7145b3f888647c48138cb69", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75581,10 +86168,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b8072fad82ab48cc9b963550", + "revision": "54bf9823e64e4837991c60d9", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75592,10 +86179,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0a012dfcaf6443dab60f49e5", + "revision": "9a3404e256cc41ae84cc0b61", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75607,10 +86194,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "3abeb9f09f1b4a9cbd67b923", + "revision": "ff8718aea55247c4a78fe51c", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75624,16 +86211,22 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-20T23:28:39.623Z", + "date_created": { + "type": 6, + "value": 1684625319623 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-13T02:31:25.736Z" + "date_last_updated": { + "type": 6, + "value": 1694572285736 + } }, - "revision": "b930a5b2fe2f4d0ca1b663b4", + "revision": "b1f3777dc01243318fa07d7f", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75641,10 +86234,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "cadbff4a402b4d008ffc5c6d", + "revision": "829948c677eb4beba7d4f1f2", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75652,10 +86245,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "5c9d1e9062f64a24a740e940", + "revision": "84aa381f08a647ee98fc35ba", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75663,10 +86256,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b771d82191f04cb0979d76f1", + "revision": "f967d7051fd746209ed36695", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75678,10 +86271,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "33b498e487694311a81240f6", + "revision": "d09da9a6f7f44534b28d7ace", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75695,16 +86288,22 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-05-20T23:28:39.623Z", + "date_created": { + "type": 6, + "value": 1684625319623 + }, "history_id": 1684625319623, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-30T14:54:59.499Z" + "date_last_updated": { + "type": 6, + "value": 1696085699499 + } }, - "revision": "32d990eb02904dac86bfd499", + "revision": "4c57dbaed7c749769d66d1ee", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75712,10 +86311,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "17559041dc0a40e49ef754ec", + "revision": "40240b18e986421dadc673c5", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75723,10 +86322,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "0be972ab01f34424b86283bc", + "revision": "89508584d0bf439fbeb88b0e", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75734,10 +86333,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "939863f69f824bf1bff4d828", + "revision": "f7da7815ffc34241abb2ac32", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75745,10 +86344,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0d8212e38d7e48f185e5508b", + "revision": "34231363b7b2421abfdd6df1", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75758,13 +86357,19 @@ "value": { "approvedLimit": 1000, "limitUsed": 400, - "analysisRequested": "2023-05-20T21:32:58.558Z", - "lastReview": "2023-05-20T21:33:49.410Z" + "analysisRequested": { + "type": 6, + "value": 1684618378558 + }, + "lastReview": { + "type": 6, + "value": 1684618429410 + } }, - "revision": "06e4ab7df3a2474699f0c53b", + "revision": "aa787b76141b4a9baa893a51", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75776,12 +86381,15 @@ "dateValidity": 1684492261254, "totalValue": 1371.271, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } }, - "revision": "a87b9a5f5a4348458ed4558f", + "revision": "99b5a31cc03842a3b0fa7c79", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75789,10 +86397,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ad26637942e044d580b3ad2c", + "revision": "489dd5eb855d496797eeda51", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75800,10 +86408,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c098fb075fb44400994d0fa4", + "revision": "fce6c168226b4d6a852f6571", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75816,10 +86424,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "c97518b14e1a4b77a0735c7f", + "revision": "e2a74283fbd04bbb9bad48f7", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75831,10 +86439,10 @@ "symbol": "BRL", "value": 1.74 }, - "revision": "b85551c544c14619b590d47d", + "revision": "0097e289853745929ee89d34", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75846,10 +86454,10 @@ "symbol": "IVIP", "value": 70.34 }, - "revision": "3950b46c563e472d84cebeb0", + "revision": "bf1d0ff39c0f4ad796e6534b", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75857,10 +86465,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b8f8bd4bb1b148c590db994a", + "revision": "b728a065b7474fe9bd7fed31", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75868,12 +86476,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "48e1d2dbf46249438f3f5be0", + "revision": "ff7739a2e77d4cb3b5fb8b51", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75888,22 +86496,37 @@ "total_amount": 100, "history_id": 1684273040978, "id": 1684273040978, - "date_created": "2023-05-16T21:37:20.978Z", - "date_last_updated": "2023-05-17T13:45:34.751Z", - "date_of_expiration": "2023-06-15T21:37:20.978Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-17T13:45:34.751Z", - "money_release_date": "2023-05-17T13:45:34.751Z", + "date_created": { + "type": 6, + "value": 1684273040978 + }, + "date_last_updated": { + "type": 6, + "value": 1684331134751 + }, + "date_of_expiration": { + "type": 6, + "value": 1686865040978 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684331134751 + }, + "money_release_date": { + "type": 6, + "value": 1684331134751 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "e807c883b64643ce9d9deace", + "revision": "2ca31e3702864b12b8684f02", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75911,10 +86534,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1218.4763.4268.5788-20", - "revision": "18559c8674764763b377c1d7", + "revision": "85923755363042f1b50637c0", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75932,12 +86555,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "e52c409e826a485ab71b23fe", + "revision": "ba8cbb207014423aa657607d", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820566, + "modified": 1701465820566 } }, { @@ -75953,9 +86576,18 @@ "original_amount": 97852, "total_amount": 97852, "id": 1684624212629, - "date_created": "2023-05-20T23:10:12.629Z", - "date_last_updated": "2023-05-20T23:10:12.629Z", - "date_of_expiration": "2023-05-20T23:10:12.629Z", + "date_created": { + "type": 6, + "value": 1684624212629 + }, + "date_last_updated": { + "type": 6, + "value": 1684624212629 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624212629 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -75964,10 +86596,10 @@ "history_id": 1684624212629, "description": "Compra de 97.852,00 IVIP por 20,09 BRL" }, - "revision": "f7f8e2741245431ab8235b5e", + "revision": "f59b89ca446a470d86753b28", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -75985,12 +86617,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "59d08cf70db84076a742da70", + "revision": "6e39dc4a80a546ea8cbea497", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76006,9 +86638,18 @@ "original_amount": 345383, "total_amount": 345383, "id": 1684624265601, - "date_created": "2023-05-20T23:11:05.601Z", - "date_last_updated": "2023-05-20T23:11:05.601Z", - "date_of_expiration": "2023-05-20T23:11:05.601Z", + "date_created": { + "type": 6, + "value": 1684624265601 + }, + "date_last_updated": { + "type": 6, + "value": 1684624265601 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624265601 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76017,10 +86658,10 @@ "history_id": 1684624265601, "description": "Compra de 345.383,00 IVIP por 70,91 BRL" }, - "revision": "530d6a50ca7e4160ba518c47", + "revision": "11a99a856f724925bcef6590", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76036,12 +86677,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "c9d748d66ea24563bb9ccb11", + "revision": "c355f56d52bc40c7b0380765", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76049,10 +86690,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/121847634268578820/history/1696563980031", - "revision": "8c203887114c4e5987b24ded", + "revision": "b5dff329ddf84b9bb1a3a0c8", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76068,9 +86709,18 @@ "total_amount": 1000, "id": "1696563980031", "history_id": "1696563980031", - "date_created": "2023-10-06T03:46:20.031Z", - "date_last_updated": "2023-10-06T03:46:20.031Z", - "date_of_expiration": "2023-11-06T03:46:19.931Z", + "date_created": { + "type": 6, + "value": 1696563980031 + }, + "date_last_updated": { + "type": 6, + "value": 1696563980031 + }, + "date_of_expiration": { + "type": 6, + "value": 1699242379931 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76078,10 +86728,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "a87f96f3cdd74df19a4e0a29", + "revision": "955f862a2ee74e6e87d7f026", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76089,10 +86739,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", - "revision": "f4b7917efb8a4d45a69dc8ef", + "revision": "76e6dc7afdb24a4cb7ac0a0a", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76100,10 +86750,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0377550daa534deebea21087", + "revision": "ca03a16b713b47fdb52310ea", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76111,10 +86761,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2516e1b36fe04caaa628bb7d", + "revision": "3f9a84d61a6a4b46b318e3ba", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76125,10 +86775,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "11c802c26c6243fbaa560be2", + "revision": "2724fae590604a8c9c8ed53a", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76140,12 +86790,15 @@ "dateValidity": 1684189916126, "totalValue": 20.09, "currencyType": "USD", - "balancesModificacao": "2023-10-06T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696561200000 + } }, - "revision": "1f6832afda624294930cdd70", + "revision": "0ca90727489c41549cda3e78", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76153,10 +86806,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "60749806027847b6a6000e44", + "revision": "3c3d6a753b0e43ef83f9311b", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76165,12 +86818,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-01T15:25:22.792Z" + ".val": { + "type": 6, + "value": 1693581922792 + } }, - "revision": "e3d9becdbf9d4abd8e5d89a9", + "revision": "a80e8f426cea46bea404eec2", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76186,12 +86842,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "e90686ff5da84dd79dc9848f", + "revision": "19f78742f3354675a4bbf2aa", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76199,10 +86855,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1690989922793", - "revision": "2f7b0d9f5c104841a6fb6bce", + "revision": "2e25d88640ec4cd39c9143bf", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76217,23 +86873,35 @@ "total_amount": 100, "id": 1690989922793, "history_id": 1690989922793, - "date_created": "2023-08-02T15:25:22.793Z", - "date_last_updated": "2023-08-02T19:55:14.626Z", + "date_created": { + "type": 6, + "value": 1690989922793 + }, + "date_last_updated": { + "type": 6, + "value": 1691006114626 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-02T19:55:14.626Z", - "money_release_date": "2023-08-02T19:55:14.626Z", + "date_approved": { + "type": 6, + "value": 1691006114626 + }, + "money_release_date": { + "type": 6, + "value": 1691006114626 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "484cc924eba743d398c13364", + "revision": "4d115746478a46aa91afb556", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76241,10 +86909,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100,00 para a carteira iVip 1227.6483.0599.8103-50", - "revision": "f3ed6453d2eb429887a17e60", + "revision": "b12a2d491c534996a5807ed7", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76260,12 +86928,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "8f10a995a81a4828a96d2526", + "revision": "60172d47891e41d29501dd93", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76273,10 +86941,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691006310448", - "revision": "4fe12a60576c4409817be119", + "revision": "30d2a3b0592a41f481ce8187", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76291,9 +86959,18 @@ "total_amount": 108815, "id": 1691006310448, "history_id": 1691006310448, - "date_created": "2023-08-02T19:58:30.448Z", - "date_last_updated": "2023-08-02T19:58:30.448Z", - "date_of_expiration": "2023-08-02T19:58:30.448Z", + "date_created": { + "type": 6, + "value": 1691006310448 + }, + "date_last_updated": { + "type": 6, + "value": 1691006310448 + }, + "date_of_expiration": { + "type": 6, + "value": 1691006310448 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -76302,10 +86979,10 @@ "description": "Compra de 108.815,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "d6de4edfc051484ab04e179e", + "revision": "aada2b027910486b8cfdded3", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76321,12 +86998,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "932151c2e2ff4826b179a5ca", + "revision": "012a5aa7ab3f46b48f80b7cf", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76334,10 +87011,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691006485984", - "revision": "062cedcb055f4494b35fa3c0", + "revision": "8db8c8fbe3e34e0f91151371", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76352,9 +87029,18 @@ "total_amount": 108815, "id": 1691006485984, "history_id": 1691006485984, - "date_created": "2023-08-02T20:01:25.984Z", - "date_last_updated": "2023-08-02T20:01:25.984Z", - "date_of_expiration": "2025-08-02T20:01:25.917Z", + "date_created": { + "type": 6, + "value": 1691006485984 + }, + "date_last_updated": { + "type": 6, + "value": 1691006485984 + }, + "date_of_expiration": { + "type": 6, + "value": 1754164885917 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76362,10 +87048,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "aad33aa930314b0aaff13ef8", + "revision": "c79d207e805e43f5b1142bcf", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76373,10 +87059,10 @@ "content": { "type": "STRING", "value": "Investimento de 108.815,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 8/2/2025", - "revision": "794d249760a04a83b3cbbd1b", + "revision": "de35cceabb524eb080f26494", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76385,12 +87071,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-08T12:47:40.996Z" + ".val": { + "type": 6, + "value": 1694177260996 + } }, - "revision": "583158a043244d5bb817cb60", + "revision": "979178589ba74c8c97189d5a", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76406,12 +87095,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "42379967b83c4f3b921d818d", + "revision": "90caf8b39b034998982ec2a5", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76419,10 +87108,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691585260996", - "revision": "64aa8f54e29249e8a903d210", + "revision": "e76889aaea164833b4b7fc7a", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76437,23 +87126,35 @@ "total_amount": 50, "id": 1691585260996, "history_id": 1691585260996, - "date_created": "2023-08-09T12:47:40.996Z", - "date_last_updated": "2023-08-09T13:57:20.313Z", + "date_created": { + "type": 6, + "value": 1691585260996 + }, + "date_last_updated": { + "type": 6, + "value": 1691589440313 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-09T13:57:20.313Z", - "money_release_date": "2023-08-09T13:57:20.313Z", + "date_approved": { + "type": 6, + "value": 1691589440313 + }, + "money_release_date": { + "type": 6, + "value": 1691589440313 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "c4b6679feeca41f8ae1be27a", + "revision": "75a1d7f389d04239b5b9ca67", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76461,10 +87162,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 50,00 para a carteira iVip 1227.6483.0599.8103-50", - "revision": "ef39351bbd7f4964ac66c4d9", + "revision": "358390f5791846e181024f38", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76480,12 +87181,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "641d3089d74c464689049296", + "revision": "51d42d74e07840899f981f36", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76493,10 +87194,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691589566120", - "revision": "98923004957149d295b75c67", + "revision": "db5800c5b73f474b8fa25a1a", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76511,9 +87212,18 @@ "total_amount": 76363, "id": 1691589566120, "history_id": 1691589566120, - "date_created": "2023-08-09T13:59:26.120Z", - "date_last_updated": "2023-08-09T13:59:26.120Z", - "date_of_expiration": "2023-08-09T13:59:26.120Z", + "date_created": { + "type": 6, + "value": 1691589566120 + }, + "date_last_updated": { + "type": 6, + "value": 1691589566120 + }, + "date_of_expiration": { + "type": 6, + "value": 1691589566120 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -76522,10 +87232,10 @@ "description": "Compra de 76.363,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "471cf4fb18e1425a9cef8890", + "revision": "4097d0aca39a4923b57800b1", "revision_nr": 1, - "created": 1701463509592, - "modified": 1701463509592 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76541,12 +87251,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "76b566fd25d24462857ef361", + "revision": "37b41f5ca1a34b94b3b89839", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76554,10 +87264,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691589908652", - "revision": "769cb31a7ea94cfd84943e46", + "revision": "018816f9dc0c4626887bc2d0", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76572,9 +87282,18 @@ "total_amount": 20000, "id": 1691589908652, "history_id": 1691589908652, - "date_created": "2023-08-09T14:05:08.652Z", - "date_last_updated": "2023-08-09T14:05:08.652Z", - "date_of_expiration": "2023-09-09T14:05:08.648Z", + "date_created": { + "type": 6, + "value": 1691589908652 + }, + "date_last_updated": { + "type": 6, + "value": 1691589908652 + }, + "date_of_expiration": { + "type": 6, + "value": 1694268308648 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76582,10 +87301,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "a215835f93cb44d492ab4517", + "revision": "c11f72d5f17c448685fcc1fe", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76593,10 +87312,10 @@ "content": { "type": "STRING", "value": "Investimento de 20.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/9/2023", - "revision": "ec95868fe16f44f38bc07ba9", + "revision": "6ceb4c717fe14faa824b1ae1", "revision_nr": 1, - "created": 1701463509593, - "modified": 1701463509593 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76612,12 +87331,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "b14fc7194149470b80a3468c", + "revision": "6480a2fa984647438ce86b1b", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76625,10 +87344,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694268632615", - "revision": "51ae04474b7b413988d2d6cd", + "revision": "b9f5a44195ca401abc3fc2d9", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76643,9 +87362,18 @@ "total_amount": 20400, "id": "1694268632615", "history_id": "1694268632615", - "date_created": "2023-09-09T14:10:32.615Z", - "date_last_updated": "2023-09-09T14:10:32.615Z", - "date_of_expiration": "2023-09-09T14:10:32.615Z", + "date_created": { + "type": 6, + "value": 1694268632615 + }, + "date_last_updated": { + "type": 6, + "value": 1694268632615 + }, + "date_of_expiration": { + "type": 6, + "value": 1694268632615 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -76653,10 +87381,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "6658a7aa5caa433299089cf5", + "revision": "2f56b6d3aa0d44fbb2f49d6f", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76664,10 +87392,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 20.000,00 IVIP com um rendimento de +400,00 IVIP (2,00%) - Y12XDT27", - "revision": "337b8ce4291f4ae99a62fe87", + "revision": "dc4aebda54f94d8b948b38ae", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76683,12 +87411,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "9beac4b9d13a4229a79c0a54", + "revision": "cd1105909ff145249703b91c", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76696,10 +87424,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694304834658", - "revision": "657c3f4c7bc24a6fa358bdb3", + "revision": "a823695a2e1e40afa8145ffa", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76714,23 +87442,35 @@ "total_amount": 63131, "id": "1694304834658", "history_id": "1694304834658", - "date_created": "2023-09-10T00:13:54.658Z", - "date_last_updated": "2023-10-04T23:31:59.684Z", - "date_of_expiration": "2023-10-10T00:13:54.657Z", + "date_created": { + "type": 6, + "value": 1694304834658 + }, + "date_last_updated": { + "type": 6, + "value": 1696462319684 + }, + "date_of_expiration": { + "type": 6, + "value": 1696896834657 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": "2023-10-04T23:31:59.684Z", + "money_release_date": { + "type": 6, + "value": 1696462319684 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "b64f67949ddf418187040558", + "revision": "09abaf70148c47f78e5f7aa4", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76738,10 +87478,10 @@ "content": { "type": "STRING", "value": "Investimento de 63.131,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 09/10/2023 - Y12XDT27", - "revision": "dfa8cba6d8524ee09fe3448b", + "revision": "74fd6bdc21e2497289db008e", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76750,12 +87490,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-14T18:40:41.417Z" + ".val": { + "type": 6, + "value": 1697308841417 + } }, - "revision": "802a7eb2ed214732b9d863db", + "revision": "ae8a504bf0984bf380a20929", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76771,12 +87514,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "590ae670214b4fbb9e728c1f", + "revision": "07ae423e876c4dcdab4b7ee0", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76784,10 +87527,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694716841418", - "revision": "a98a33cd2809419ba31f3da1", + "revision": "92aae60e14a64868b2c6bb74", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76802,23 +87545,35 @@ "total_amount": 20, "id": "1694716841418", "history_id": "1694716841418", - "date_created": "2023-09-14T18:40:41.418Z", - "date_last_updated": "2023-09-14T19:10:39.334Z", + "date_created": { + "type": 6, + "value": 1694716841418 + }, + "date_last_updated": { + "type": 6, + "value": 1694718639334 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-09-14T19:10:39.334Z", - "money_release_date": "2023-09-14T19:10:39.334Z", + "date_approved": { + "type": 6, + "value": 1694718639334 + }, + "money_release_date": { + "type": 6, + "value": 1694718639334 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "d2f5f965b27a45ada122e3db", + "revision": "28ae33bb10cb49889e188764", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76826,10 +87581,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 1227.6483.0599.8103-50", - "revision": "e28dc4be8c2e4751b5861ece", + "revision": "f3d9a138abcb4889bfd302fb", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76845,12 +87600,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "6e6fa121e7a543ccb25dab7d", + "revision": "661a88b24dac4e35a5cb390f", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76858,10 +87613,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694723873975", - "revision": "4c496b0749254ca49cbc6333", + "revision": "b2b03e7947ec40a6a900cf3a", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76876,9 +87631,18 @@ "total_amount": 22823, "id": "1694723873975", "history_id": "1694723873975", - "date_created": "2023-09-14T20:37:53.975Z", - "date_last_updated": "2023-09-14T20:37:53.975Z", - "date_of_expiration": "2023-09-14T20:37:53.975Z", + "date_created": { + "type": 6, + "value": 1694723873975 + }, + "date_last_updated": { + "type": 6, + "value": 1694723873975 + }, + "date_of_expiration": { + "type": 6, + "value": 1694723873975 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -76887,10 +87651,10 @@ "description": "Compra de 22.823,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "f2c7dd38cebb4b98ba4bd1b2", + "revision": "3b064855b136450aacee6dc9", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76899,12 +87663,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-16T17:35:37.888Z" + ".val": { + "type": 6, + "value": 1697477737888 + } }, - "revision": "5b39b276da02493a85849d18", + "revision": "cf40ac9c059548ba8d070fe5", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76920,12 +87687,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "42c412bc54f6428488bbe313", + "revision": "e510d8a61d594efdbcde32e2", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76933,10 +87700,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694885737888", - "revision": "a1167096df424eb097161050", + "revision": "2c289170fa4c42d6b1fdd69f", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76951,8 +87718,14 @@ "total_amount": 28.17, "id": "1694885737888", "history_id": "1694885737888", - "date_created": "2023-09-16T17:35:37.888Z", - "date_last_updated": "2023-09-16T17:35:37.888Z", + "date_created": { + "type": 6, + "value": 1694885737888 + }, + "date_last_updated": { + "type": 6, + "value": 1694885737888 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -76960,10 +87733,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "064cbb74c37344e08586818c", + "revision": "bd9ada524b99406aabb965a6", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76971,10 +87744,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 28,17 BRL para a carteira iVip 1227.6483.0599.8103-50", - "revision": "0ac0032866a8451c976d6024", + "revision": "2a7c27d01ebb48f6afdf3fb4", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -76983,12 +87756,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-19T19:20:50.157Z" + ".val": { + "type": 6, + "value": 1697743250157 + } }, - "revision": "308760226de94ef7a5395edf", + "revision": "1c03d6a3b3564de2a7f8deb3", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -77004,12 +87780,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "bc55827365c34df2a67ffbc7", + "revision": "7b550c947c27499cb25ec78b", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -77017,10 +87793,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695151250157", - "revision": "2b6aa36d536e4f959eec5ec6", + "revision": "a75462ff69a644c3b379b287", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -77035,23 +87811,35 @@ "total_amount": 29370, "id": "1695151250157", "history_id": "1695151250157", - "date_created": "2023-09-19T19:20:50.157Z", - "date_last_updated": "2023-09-19T20:56:06.903Z", + "date_created": { + "type": 6, + "value": 1695151250157 + }, + "date_last_updated": { + "type": 6, + "value": 1695156966903 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": "2023-09-19T20:56:06.903Z", - "money_release_date": "2023-09-19T20:56:06.903Z", + "date_approved": { + "type": 6, + "value": 1695156966903 + }, + "money_release_date": { + "type": 6, + "value": 1695156966903 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "68f8fea964d348df879c6faa", + "revision": "a18d5af279554427b32ab571", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -77059,10 +87847,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 29.370,00 IVIP para a carteira iVip 1227.6483.0599.8103-50", - "revision": "ca4a419a7a2148818f9a8e0f", + "revision": "c7c4cccc212a4967b1786aa6", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -77078,12 +87866,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "4ba0858e90c942808fed0c34", + "revision": "2f4e49dfde6e4c2881a5a5ef", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -77091,10 +87879,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695152833307", - "revision": "76746c23fe3b4357b197185d", + "revision": "4e248ac4435142a29530afd1", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -77109,23 +87897,35 @@ "total_amount": 36455, "id": "1695152833307", "history_id": "1695152833307", - "date_created": "2023-09-19T19:47:13.307Z", - "date_last_updated": "2023-09-25T21:44:43.636Z", - "date_of_expiration": "2024-03-19T19:47:13.306Z", + "date_created": { + "type": 6, + "value": 1695152833307 + }, + "date_last_updated": { + "type": 6, + "value": 1695678283636 + }, + "date_of_expiration": { + "type": 6, + "value": 1710877633306 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": "2023-09-25T21:44:43.636Z", + "money_release_date": { + "type": 6, + "value": 1695678283636 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "813e2a69e6cd4c598d2f5d1e", + "revision": "ae422f3170a74e43a07f45de", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -77133,10 +87933,10 @@ "content": { "type": "STRING", "value": "Investimento de 36.455,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", - "revision": "4cba8bb9ec204268bacfd9b4", + "revision": "0df8a13423db43cfb903fd6f", "revision_nr": 1, - "created": 1701463509595, - "modified": 1701463509595 + "created": 1701465820567, + "modified": 1701465820567 } }, { @@ -77152,12 +87952,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "fcd5eb7b45574144b63b1e9a", + "revision": "43769d97999447f0bd2d997f", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77165,10 +87965,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695158486667", - "revision": "192701747d57493f926b4f78", + "revision": "c55cfff5d0284277b22ab006", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77183,23 +87983,35 @@ "total_amount": 29370, "id": "1695158486667", "history_id": "1695158486667", - "date_created": "2023-09-19T21:21:26.667Z", - "date_last_updated": "2023-09-25T21:45:21.877Z", - "date_of_expiration": "2024-09-19T21:21:26.665Z", + "date_created": { + "type": 6, + "value": 1695158486667 + }, + "date_last_updated": { + "type": 6, + "value": 1695678321877 + }, + "date_of_expiration": { + "type": 6, + "value": 1726780886665 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "cc_rejected_insufficient_staked_amount", - "money_release_date": "2023-09-25T21:45:21.877Z", + "money_release_date": { + "type": 6, + "value": 1695678321877 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "cef48283139c4e9d919b4a00", + "revision": "1096a3c4b97e4a809f721c12", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77207,10 +88019,10 @@ "content": { "type": "STRING", "value": "Investimento de 29.370,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 19/09/2024 - CLSMJY90", - "revision": "f5bc2ca16b0c42f6b2b12f40", + "revision": "628b29f9f72c4ad08698fb04", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77226,12 +88038,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "02864842f4fd41778ec2aff8", + "revision": "f4e10031138643f29e9e1f3c", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77239,10 +88051,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1696466013923", - "revision": "c48f809e8fce438d8a3dc4e9", + "revision": "b5741b01e5b448cc9ec09611", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77258,9 +88070,18 @@ "total_amount": 128956, "id": "1696466013923", "history_id": "1696466013923", - "date_created": "2023-10-05T00:33:33.923Z", - "date_last_updated": "2023-10-05T00:33:33.923Z", - "date_of_expiration": "2023-11-05T00:33:33.853Z", + "date_created": { + "type": 6, + "value": 1696466013923 + }, + "date_last_updated": { + "type": 6, + "value": 1696466013923 + }, + "date_of_expiration": { + "type": 6, + "value": 1699144413853 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -77268,10 +88089,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "1c31cba96e7d475ba63aee0b", + "revision": "802f6d78e278422a959b3ab7", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77279,10 +88100,10 @@ "content": { "type": "STRING", "value": "Investimento de 128.956,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "ad7bd23e218e43f590ff19c3", + "revision": "8cd46775024841dcb9a9cff7", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77290,10 +88111,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8385a091c1954ba78101f585", + "revision": "e7900af77bee495eaf533ad7", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77301,10 +88122,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ee1ae89755424c108529bd48", + "revision": "4fa6d9cdc7b74f1cb72a0b8d", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77315,10 +88136,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "8357a3d151ab4f08b925a66d", + "revision": "26b0910de849438da68e0e1b", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77329,12 +88150,15 @@ "dataModificacao": 1690989855646, "dateValidity": 1690989855726, "currencyType": "USD", - "balancesModificacao": "2023-10-15T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697338800000 + } }, - "revision": "476d0fd2b663479285ab1f1b", + "revision": "27562d6497d14f1fa7e3e19a", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77346,10 +88170,10 @@ "symbol": "IVIP", "value": 789.35 }, - "revision": "703f346f009b4e34a1b690b1", + "revision": "7aca40a2ec9e467e9c0b4c4a", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77357,10 +88181,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d1d59f9cdaca42d6949cae4e", + "revision": "ff66f5b470574fd88a703b41", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77372,10 +88196,10 @@ "label": "Taxa de 1.00%", "amount": 5 }, - "revision": "a2bcacf9b14a4b58afd4b4e8", + "revision": "39ee7fb23c7c4deaa80abff2", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77383,10 +88207,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "867d8135b9624c6eaa2bb472", + "revision": "80be22d758894060bca64f61", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77396,10 +88220,10 @@ "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "13aa37d63e13475094e3c872", + "revision": "186da37e42ea4bb78f423a2c", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77407,10 +88231,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "734101b80a6f42eebba6eeed", + "revision": "1168c21f65b3417abe877e76", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77424,10 +88248,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "58097a0b9d464285a832156c", + "revision": "278154f01d5c4ee0b43159a8", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77435,10 +88259,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55900907390/ticket?caller_id=1310149122&hash=b46698ba-1661-4287-87f2-802c80f36c71", - "revision": "ce4540cbb69c4f1d9d9fe79a", + "revision": "b408ce05cd8a43adbe4c778e", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77446,10 +88270,10 @@ "content": { "type": "STRING", "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406505.005802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter559009073906304E54F", - "revision": "6e1e48d8c3cf42b8aaedb8e6", + "revision": "bd04f3f489ef43f0b032df66", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77457,10 +88281,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI3UlEQVR42u3dUY7jNgwGYN3A97+lbqAC7WITi7+UdFsUXevLw2BmYkuf/UaQItv4jT690dLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tL++9o2f64f//vx7fXzkuvnHddfi7Tpt9dt79fdNvrz4h8/Rrl3YtDS0tLS0tLS0tLS0h6indasqNfq7yv19wcq5P6+83Tx68f7bQsGLS0tLS0tLS0tLS3tEdr3AHIyTtAX5bXZ9AS9xeRhWmDatzBoaWlpaWlpaWlpaWmP1Y57nPjaZ5RYb4oTp6xd/rPGk7S0tLS0tLS0tLS0tLQt3TqRX3FiobR7Ou/2uClbOF1MS0tLS0tLS0tLS0t7tjbj07ZVNq0+/ZYeY3PE7ldqRGlpaWlpaWlpaWlpaX937WLv//rHP+ipQktLS0tLS0tLS0tL+ztr958SVKbiyikcrCWam1UWR+fue9DS0tLS0tLS0tLS0j5buyia3FRi3u7dx6KlTnNqOjnClIBNdo+WlpaWlpaWlpaWlvZ52tRTfwr9Xp6prWQpuGzhi15qLV8vaDocl5v809LS0tLS0tLS0tLSPltbAC142uc/P0aW03uYNk8T2GhpaWlpaWlpaWlpaU/Ublo+jk0OrlRdXuF/y6rLOlB7W3VJS0tLS0tLS0tLS0v7KG1qzz+Fg+WLser5P8JEgF54OW9Yw1BaWlpaWlpaWlpaWtpDtK0cV0tJvLRw7k2yGIBd3kMPT5/xtLS0tLS0tLS0tLS0z9ZO46db6eeYz7ZNHUna/XGXSby+maX99dk9WlpaWlpaWlpaWlraB2lzhq7duz32kMnrIca8cjOS8kau/JZSsxRaWlpaWlpaWlpaWtpztMviyuIepelkplylHHOaIVDqPkdw09LS0tLS0tLS0tLSPl07Nq39U8f9svdVEoCpCDMXZvYw263teqrQ0tLS0tLS0tLS0tI+Tbtppz9ycFd4U9FkyyMApi2X1Zlfz4ajpaWlpaWlpaWlpaV9hnbZRuRThu4q3frTPOw8EWB6tBGSgrS0tLS0tLS0tLS0tIdpdyfVcjFkjQlLFLk4XZfzgVOyj5aWlpaWlpaWlpaW9hzt2IZ+S9kojf/zoy3yfOlIXH4jtLS0tLS0tLS0tLS0T9f27cG1EXpBVsr7dWMzKmBZsbkJV2lpaWlpaWlpaWlpaZ+uHe/JuU3BZSvdR0oEOkozkoJvYQxbDSo/xLy0tLS0tLS0tLS0tLQP0qaWj2ls2nTHMnX3aYE0261mBmlpaWlpaWlpaWlpac/RptBvGQQuY8cpFi0D1K5Qsbn8s3/I7tHS0tLS0tLS0tLS0j5KW8odF1HfVBGZYseUBdyEoa30JslzBWhpaWlpaWlpaWlpaZ+u3e94rQouez4rV+LOXf6uaOs7pKWlpaWlpaWlpaWlPUJbPtPqqaFI7eBfnm95nO5aVXvWzWlpaWlpaWlpaWlpaZ+vTZPVFmWW0+o5REy5v/0ct2V4SUtLS0tLS0tLS0tLe4r203Dq21G3gr9Kt/5y/K1vJmOnTv+0tLS0tLS0tLS0tLTHasv/Uv6urYav1YLLzfG32pFkuo2WlpaWlpaWlpaWlvYI7bL+chlFTtm9VFKZjrqlcHVfsUlLS0tLS0tLS0tLS3uEtsh6PJC2WLOFrv4jVFN+cUdqHElLS0tLS0tLS0tLS3uANt1QTsP1+z4pErzCxLRbQLoMV3PnkouWlpaWlpaWlpaWlvYY7VhVRNZL9vhkLLddIXpNv9HS0tLS0tLS0tLS0p6j7ZvyyXLy7Sr9RVL3kem3slvtXFIWHbS0tLS0tLS0tLS0tMdoxyZ2zOWT1yp2vFbavnqCvgolaWlpaWlpaWlpaWlpT9FOQdvUWiRfUhN2UxD41VC1VOOZtqSlpaWlpaWlpaWlpT1AWzqI1ALJokh1mv0eNvb7ZLXF4bgUwtLS0tLS0tLS0tLS0p6ozaOwF4WUm0Nvo+T+Unya8O/L09LS0tLS0tLS0tLSnqNt4XzaFZbrOZRMJZpf4ds27qSlpaWlpaWlpaWlpT1F+37tKAFkif96blqSk3g1UVj26KtVaGlpaWlpaWlpaWlpz9H2MgV7SrVN5MmzHHa9LNacXlAuwhy0tLS0tLS0tLS0tLSHaL844FbajaTayFE8qZ4zj8eevr2+PrtHS0tLS0tLS0tLS0v7HG25oqXQrwSGtV3k+wIJX5/5c1BJS0tLS0tLS0tLS0v7ZO0X06hTni/9SKfmVgPU5iNxpfTyoqWlpaWlpaWlpaWlPUY77ifQFq0cywC1NCyth/TgyFWXuVizjmajpaWlpaWlpaWlpaU9QpsrLFOGboon02fxaCXtt2jyv626pKWlpaWlpaWlpaWlfZ62RG59M0/tfbm88HxHSd2ladkjdKgctLS0tLS0tLS0tLS0h2iXMdw+EZdiwvLFwrh8Bekd0tLS0tLS0tLS0tLSPl1bwsGe56Sl2sgSbY77+bmeU4GpjX8JYWlpaWlpaWlpaWlpaQ/TtlV/yNZqyHndizX39Zcty/ahJC0tLS0tLS0tLS0t7Tna9Nk0f+z3SLCHBGAqx0xFnVeIVOu7oaWlpaWlpaWlpaWlfbp22WRkGfotuz2WYs22fbSem1N+GfPS0tLS0tLS0tLS0tI+R3uFAHLqNJI+PWfjUnHlp2aSfyeKpKWlpaWlpaWlpaWlfaQ21VqmwdbpgFupnGylGUl5oKtMYFvGp7S0tLS0tLS0tLS0tGdqF/m2NPa6hINpZtu1qbrMY91oaWlpaWlpaWlpaWmP15Z9anYvdfXP4eAUfH5XwElLS0tLS0tLS0tLS3uONq/USkXkVBZZqjPT7Otrcy4unbP7tdNwtLS0tLS0tLS0tLS0v7G2Fj7mQ2qLwdZ5IFvlLedcv7+CXt4SLS0tLS0tLS0tLS3t07X//w8tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t7b+m/QNO7FsdSE0lWQAAAABJRU5ErkJggg==", - "revision": "e71d360046874b41b63256ec", + "revision": "182261ce3df84c67ba8e7c6d", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77468,10 +88292,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "1e1dd10c4ce643a689504c4c", + "revision": "429908175372448599798706", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77486,22 +88310,37 @@ "total_amount": 505, "history_id": 1679152509855, "id": 55900907390, - "date_created": "2023-03-18T11:15:10.620-04:00", - "date_last_updated": "2023-03-18T11:35:13.000-04:00", - "date_of_expiration": "2023-03-19T11:15:10.378-04:00", + "date_created": { + "type": 6, + "value": 1679152510620 + }, + "date_last_updated": { + "type": 6, + "value": 1679153713000 + }, + "date_of_expiration": { + "type": 6, + "value": 1679238910378 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", - "date_approved": "2023-03-18T11:35:13.000-04:00", - "money_release_date": "2023-03-18T11:35:13.000-04:00", + "date_approved": { + "type": 6, + "value": 1679153713000 + }, + "money_release_date": { + "type": 6, + "value": 1679153713000 + }, "wasDebited": true }, - "revision": "6899c00a3290434fa63b6dd1", + "revision": "41dfa883290d4ab5bc6a1ed3", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77509,10 +88348,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "82fa6e87472e48c69232b226", + "revision": "13cd887f047e4ebeb9ebb866", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77520,12 +88359,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "d8422afcf5554660b2612b00", + "revision": "96c22a509ba74581b8bc60e6", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77540,18 +88379,27 @@ "total_amount": 505, "history_id": 1679153875722, "id": 1679153875722, - "date_created": "2023-03-18T15:37:55.722Z", - "date_last_updated": "2023-03-18T15:37:55.722Z", - "date_of_expiration": "2023-04-17T15:37:55.722Z", + "date_created": { + "type": 6, + "value": 1679153875722 + }, + "date_last_updated": { + "type": 6, + "value": 1679153875722 + }, + "date_of_expiration": { + "type": 6, + "value": 1681745875722 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "649f6ab2a9234fd3bde8dec2", + "revision": "c9e7a220e5854109a12db93c", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77559,10 +88407,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 505,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "bf41ffd7c6a04e30b457d060", + "revision": "85eaf237fd6a4354af587ffd", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77570,12 +88418,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "83b834a74ab647d1bd596e64", + "revision": "e36456525b5743878f04b478", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77590,18 +88438,27 @@ "total_amount": 505, "history_id": 1679154208055, "id": 1679154208055, - "date_created": "2023-03-18T15:43:28.055Z", - "date_last_updated": "2023-03-18T15:43:28.055Z", - "date_of_expiration": "2023-04-17T15:43:28.055Z", + "date_created": { + "type": 6, + "value": 1679154208055 + }, + "date_last_updated": { + "type": 6, + "value": 1679154208055 + }, + "date_of_expiration": { + "type": 6, + "value": 1681746208055 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "ebd851e3380a47dd86c5158b", + "revision": "5f957ef5f9924d4aa71599aa", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77609,10 +88466,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 505,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "10e5311a093747338a126db8", + "revision": "ae50dea5d13e40e49ce59526", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77624,10 +88481,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "b006e442723a4e30811738c9", + "revision": "dff3a02bec06451cb2a5cf18", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77635,10 +88492,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "47348654b1d3474f887748c7", + "revision": "7566fb06702d4486a883e136", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77646,10 +88503,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "fab0a8b071564307b707a573", + "revision": "1f33598a199e4495a056be4d", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77664,19 +88521,28 @@ "total_amount": 1100, "history_id": 1679263150490, "id": 1679263150490, - "date_created": "2023-03-19T21:59:10.490Z", - "date_last_updated": "2023-03-19T21:59:10.490Z", - "date_of_expiration": "2023-04-18T21:59:10.490Z", + "date_created": { + "type": 6, + "value": 1679263150490 + }, + "date_last_updated": { + "type": 6, + "value": 1679263150490 + }, + "date_of_expiration": { + "type": 6, + "value": 1681855150490 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "c1d72e7b19144fb69a1237e6", + "revision": "21e6e0eff3594e30a6f81fd6", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77684,10 +88550,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "357ec93a315f4047b0e6b8f9", + "revision": "be0d9ccce4f64b4986d45252", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77705,12 +88571,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "deeabf74bdd647cc9f2df024", + "revision": "5424ffbc7e5349a5bcfc3681", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77726,9 +88592,18 @@ "original_amount": 11643076, "total_amount": 11643076, "id": 1679266956838, - "date_created": "2023-03-19T23:02:36.838Z", - "date_last_updated": "2023-03-19T23:02:36.838Z", - "date_of_expiration": "2023-03-19T23:02:36.838Z", + "date_created": { + "type": 6, + "value": 1679266956838 + }, + "date_last_updated": { + "type": 6, + "value": 1679266956838 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266956838 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -77737,10 +88612,10 @@ "history_id": 1679266956838, "description": "Compra de 11643076 IVIP por 2000 BRL" }, - "revision": "6e6d0a2b9f5f47f8a90fe776", + "revision": "058418a056704b1aab190329", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77752,10 +88627,10 @@ "label": "Taxa de 1.00%", "amount": 15 }, - "revision": "2a77028990524617be0073ca", + "revision": "1485f42562d049e69076f096", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77763,10 +88638,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fbc09fdbf5ae446aafe51dd6", + "revision": "89fb19eeb57e4aa39874ff69", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77776,10 +88651,10 @@ "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "349788fef1b04a21a5d11e9b", + "revision": "dc6fe1b99b014960ba667b76", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77787,10 +88662,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6651cecac7d74adaa2e70db4", + "revision": "e3ce8abd1ff3431dabc8e46c", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77804,10 +88679,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "efb488c159ce4eaeb97c5f4a", + "revision": "55db6f546ff8407c96d1e21d", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77815,10 +88690,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654071515.005802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131358707763045A2A", - "revision": "c0f94c716f6e472b96c7b7d5", + "revision": "33f8880e0c624e49b2d8173e", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77826,10 +88701,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/sandbox/payments/1313587077/ticket?caller_id=1310149122&hash=b6d8c471-76bc-44da-bf9f-76b5ae753314", - "revision": "21370f65c58e4e169a512997", + "revision": "661dff7e39064649997c6035", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77837,10 +88712,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIxUlEQVR42u3dS24sKRAFUHbA/neZO6DVE7uSuJC29NTql5wcWLarCg41C8WHNv6i52q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9e2+an//u//vVCD+/7/t/t1X8Xbt+/3Xe8vXB9rXJ9bVkZtLS0tLS0tLS0tLS0h2j757Kfi7SvHa+y2Oe20+rjftzWWn5h0iYGLS0tLS0tLS0tLS3tKdopgCwxZi/H+P7YFAl+LjrFmCO8ZRG40tLS0tLS0tLS0tLS0s4LT3m5DF1Gm2PzFdDS0tLS0tLS0tLS0tLGaC7FfyX3l4omezlf+jHl/mhpaWlpaWlpaWlpac/WJnwqqSyUkbvmSiPcRNk11v26RpSWlpaWlpaWlpaWlvZv105PSrr9Fz8qg5aWlpaWlpaWlpaW9ghtftKUkp6njyyjyBJ83tKD3ys/W2hpaWlpaWlpaWlpad+tTS1sYzPjMeX+Svy36JqbTj812+VkHy0tLS0tLS0tLS0t7bu1U/vbZ8/a2M54bE+DI5/qOWvtZo4saWlpaWlpaWlpaWlp362dXky3rZUDlTCv5VvUUjpvbMjP3XC0tLS0tLS0tLS0tLSv1V5hGEldczKmUSXt+ZnGT+6PRktLS0tLS0tLS0tL+35tLb0s+DTIpLW4Sknn9fCW1F3X8zdHS0tLS0tLS0tLS0v7dm2J60a4O60VfIkdpwrL1BzXSspw+qoKlJaWlpaWlpaWlpaW9gBtqrWcMm/Lt5S9p+gwJQUXZykRbaelpaWlpaWlpaWlpT1Le9t7H1TmVGCtoSxHu5VyljxfW4WStLS0tLS0tLS0tLS0b9dO4/l7TvtNKb7SCFc3S1cApHGROcakpaWlpaWlpaWlpaU9Rbu562y6CntqZltUSeaYsAVtmur/XCNKS0tLS0tLS0tLS0v7Nm1pa2sh3zZRegg+02/1Hre0wNNXQEtLS0tLS0tLS0tL+25tKrgsP1Lp5dj2saUL1GoomUovaWlpaWlpaWlpaWlpz9T2kpfLJ6jFmvtXS3Hl4n62H1dd0tLS0tLS0tLS0tLSvk37WfOYoshbTi+dJX227DjC3QATvgcoLS0tLS0tLS0tLS3tAdrp858fWGbe2r3gcrltC4FmHReZj9tpaWlpaWlpaWlpaWlP0uY03dVidWa5T20U7eazLaQCR+69o6WlpaWlpaWlpaWlPUKbP5Xm+48QY44QXvYckOaPjXLwQqalpaWlpaWlpaWlpT1AmxQ/OEsJJcc9IJ0+ews5U1Iwb05LS0tLS0tLS0tLS3uOtowHaSmKLP1uV7n7Or9lcl8h2feb29ZoaWlpaWlpaWlpaWnfor3KtqV7rd1jvZFvUfv8s+UxJ+mqgNQDt54eSUtLS0tLS0tLS0tL+zbtBCjx5OJy6rZ9cjVlz8m+tC8tLS0tLS0tLS0tLe1J2kWIuOyBKym+Vo6Rkng/iBhzxSYtLS0tLS0tLS0tLe27tVO9ZJngvwwl64656jJNPembaZTbKJKWlpaWlpaWlpaWlvaN2rHZO//Zwsj+dLv1op1uWbGZ0oi0tLS0tLS0tLS0tLTv116ryslpUH/LCy8jxpKru0qHXP5so6WlpaWlpaWlpaWlPU5bqh/rVMhcp1mPtprM3z5PsIhek4WWlpaWlpaWlpaWlvb92nGXLeLJMpl/QZ7+l05QIsbabEdLS0tLS0tLS0tLS3uiNk8pSWHefox/OlrfjPZPCUBaWlpaWlpaWlpaWtpztBMqdb6V6SP9noibetvafap/zf0l9xRZ3r9IWlpaWlpaWlpaWlra12tzTDhWN6ZNb9ll91IomWo8N4WetLS0tLS0tLS0tLS079amqsuS9mu5YW5qk5uWSqWcm5EmKVKlpaWlpaWlpaWlpaU9QnuVhrT0v1/dojYVUqagspzvhzWitLS0tLS0tLS0tLS0b9OWHFwrfXHLGLMMI9nxylI9R68lNKWlpaWlpaWlpaWlpT1AWwofa4RXeuAWRZMb/CZ/V8ec0NLS0tLS0tLS0tLSnqKddpy63KZgMe/Tw1lavqktJwp7+dK2NaK0tLS0tLS0tLS0tLSv0paF04513Eiqklz2yk03qz1FqoOWlpaWlpaWlpaWlvZUbdtUP24630YIKlsYVdJztrA8nZaWlpaWlpaWlpaW9kBtSr+lt0zXprUyy3/Ep9ZVbsf4P90NR0tLS0tLS0tLS0tL+15tuk+tFGb2VQRar00royFTsm/ky7hpaWlpaWlpaWlpaWmP0Oaax5pqKz1rt7ekS9UKL838H+F8g5aWlpaWlpaWlpaW9izteOp8K1tcgdxCsNg2U0o2i3ZaWlpaWlpaWlpaWtqztI8j9qcOuRafdHfalfvsUnPc5qGlpaWlpaWlpaWlpX27dpnOSzumESRTmm7kWwLK0JLFbJISfNLS0tLS0tLS0tLS0r5bu+xjKyP26wT/ZYqvRJZjlQpMgesmiqSlpaWlpaWlpaWlpX2ttpVpISmxl96SKDkgnQLXNNX/R7dg09LS0tLS0tLS0tLSvkqbnkyukWWpuhyfsk9Pz9e1lUXbQxRJS0tLS0tLS0tLS0v7Pm0O/RY7bmLHGjE+RZEtJwqnmJWWlpaWlpaWlpaWlvb92l6SbulHiR1/VqI5nbQUV/46iqSlpaWlpaWlpaWlpX2lNod0uy1SnLitnGz5a1mEsNsokpaWlpaWlpaWlpaW9hTtbqXcHPcZ+rXtxdZtP2qSlpaWlpaWlpaWlpaWNib7SlLwyiP7px64Mv2/hVvZan6RlpaWlpaWlpaWlpb2HG3Cfy88FUPmLRZzTaZ84PKStvxl0NLS0tLS0tLS0tLSHqGtSbwy0L/lELHk6q486yTNoJwWSNdt09LS0tLS0tLS0tLSHqH9/z+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+w8PIVl9AL56yAAAAABJRU5ErkJggg==", - "revision": "9f0f1f3369ff4e5388deafe2", + "revision": "554c2ebd8901417ab3dce4e7", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77848,10 +88723,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "3acd00caaf3e40ca890f57fd", + "revision": "d4c0d67dab8f45d99f3f7e5c", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77866,19 +88741,28 @@ "total_amount": 1515, "history_id": 1679696530924, "id": 1313587077, - "date_created": "2023-03-24T18:22:11.656-04:00", - "date_last_updated": "2023-03-24T18:22:11.656-04:00", - "date_of_expiration": "2023-03-25T18:22:11.438-04:00", + "date_created": { + "type": 6, + "value": 1679696531656 + }, + "date_last_updated": { + "type": 6, + "value": 1679696531656 + }, + "date_of_expiration": { + "type": 6, + "value": 1679782931438 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "f406982c707547e79681163a", + "revision": "d3c1a03d3681476db63eb7ed", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77886,10 +88770,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "69246826dbbb4c38805d473f", + "revision": "a562f0b5b8f8467987ee4fc3", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77897,12 +88781,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "6672c8637ed642c6816e4209", + "revision": "4d7024955c9c4b1e911e339e", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77917,22 +88801,37 @@ "total_amount": 1500, "history_id": 1679696876215, "id": 1679696876215, - "date_created": "2023-03-24T22:27:56.215Z", - "date_last_updated": "2023-03-24T22:37:00.511Z", - "date_of_expiration": "2023-04-23T22:27:56.215Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-24T22:37:00.511Z", - "money_release_date": "2023-03-24T22:37:00.511Z", + "date_created": { + "type": 6, + "value": 1679696876215 + }, + "date_last_updated": { + "type": 6, + "value": 1679697420511 + }, + "date_of_expiration": { + "type": 6, + "value": 1682288876215 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679697420511 + }, + "money_release_date": { + "type": 6, + "value": 1679697420511 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "bb125d0c9c1c4791a197b4ca", + "revision": "0a11e95d8fd54dc58c668696", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77940,10 +88839,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "b0cb067409b24b0db0f49bef", + "revision": "2c0908dc794946a1b8934a8e", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77951,12 +88850,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "bbcc0faf0ad848a6a87d677d", + "revision": "7b4ae9f5949a43bbab276deb", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77971,22 +88870,37 @@ "total_amount": 500, "history_id": 1679698976004, "id": 1679698976004, - "date_created": "2023-03-24T23:02:56.004Z", - "date_last_updated": "2023-03-24T23:12:40.373Z", - "date_of_expiration": "2023-04-23T23:02:56.004Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-24T23:12:40.373Z", - "money_release_date": "2023-03-24T23:12:40.373Z", + "date_created": { + "type": 6, + "value": 1679698976004 + }, + "date_last_updated": { + "type": 6, + "value": 1679699560373 + }, + "date_of_expiration": { + "type": 6, + "value": 1682290976004 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1679699560373 + }, + "money_release_date": { + "type": 6, + "value": 1679699560373 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "5707aa70037e47999fd67225", + "revision": "ab1310d9015c4fca93a8b169", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -77994,10 +88908,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "475c5095d92f4ea69dcb7464", + "revision": "25e13f9d01b945739ebdad26", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78015,12 +88929,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "0e0a47c4df5848f8b3d93916", + "revision": "ba1b76dcf83245f18ecf7824", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78036,9 +88950,18 @@ "original_amount": 10651254, "total_amount": 10651254, "id": 1679872088470, - "date_created": "2023-03-26T23:08:08.470Z", - "date_last_updated": "2023-03-26T23:08:08.470Z", - "date_of_expiration": "2023-03-26T23:08:08.470Z", + "date_created": { + "type": 6, + "value": 1679872088470 + }, + "date_last_updated": { + "type": 6, + "value": 1679872088470 + }, + "date_of_expiration": { + "type": 6, + "value": 1679872088470 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78047,10 +88970,10 @@ "history_id": 1679872088470, "description": "Compra de 10.651.254,00 IVIP por 2.000,00 BRL" }, - "revision": "db91ef571e234ac0b8b2b8ae", + "revision": "ede4c5c3fa574e5289e56c91", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78058,12 +88981,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "5ae9fbeb7de04452a5cae5b7", + "revision": "e6d34965e9ce498faff0606e", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78078,22 +89001,37 @@ "total_amount": 500, "history_id": 1680996986540, "id": 1680996986540, - "date_created": "2023-04-08T23:36:26.540Z", - "date_last_updated": "2023-04-09T16:29:34.524Z", - "date_of_expiration": "2023-05-08T23:36:26.540Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-04-09T16:29:34.524Z", - "money_release_date": "2023-04-09T16:29:34.524Z", + "date_created": { + "type": 6, + "value": 1680996986540 + }, + "date_last_updated": { + "type": 6, + "value": 1681057774524 + }, + "date_of_expiration": { + "type": 6, + "value": 1683588986540 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1681057774524 + }, + "money_release_date": { + "type": 6, + "value": 1681057774524 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "44492dc5f26f40f38637830b", + "revision": "e614a09a233e41a1b6c198df", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78101,10 +89039,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "8fbf2e037857436fbda1ca61", + "revision": "d3009e60ab85405489ad3b62", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78124,12 +89062,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "33580d784a4645409ab8ac8a", + "revision": "e0d9947d75ac4eff980a948b", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78146,9 +89084,18 @@ "total_amount": 220, "id": 1682640956216, "contract_id": "1679263150490", - "date_created": "2023-04-28T00:15:56.216Z", - "date_last_updated": "2023-04-28T00:15:56.216Z", - "date_of_expiration": "2023-04-28T00:15:56.216Z", + "date_created": { + "type": 6, + "value": 1682640956216 + }, + "date_last_updated": { + "type": 6, + "value": 1682640956216 + }, + "date_of_expiration": { + "type": 6, + "value": 1682640956216 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -78156,10 +89103,10 @@ "currency_id": "BRL", "history_id": 1682640956216 }, - "revision": "c557bd9ad9a64558992f386e", + "revision": "9a305c3a19b24d8f9d2b87e2", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78167,10 +89114,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "333ea49c40584c1a93816c8a", + "revision": "8eea5b01adef4617bc151987", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78190,12 +89137,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "63597d1febc042a295c23bc3", + "revision": "5d83d168706b48918a21771d", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78212,9 +89159,18 @@ "total_amount": 220, "id": 1683194553322, "contract_id": "1679263150490", - "date_created": "2023-05-04T10:02:33.322Z", - "date_last_updated": "2023-05-04T10:02:33.322Z", - "date_of_expiration": "2023-05-04T10:02:33.322Z", + "date_created": { + "type": 6, + "value": 1683194553322 + }, + "date_last_updated": { + "type": 6, + "value": 1683194553322 + }, + "date_of_expiration": { + "type": 6, + "value": 1683194553322 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -78222,10 +89178,10 @@ "currency_id": "BRL", "history_id": 1683194553322 }, - "revision": "50618bf3b8d44196ae48bd9c", + "revision": "1dc8144f36fd4a78ba9e9c10", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78233,10 +89189,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "32344cc6ad9e4b99a7304812", + "revision": "f28ad75bd80a4c9d9cfdbc21", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78254,12 +89210,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "0c0aae90734542b4ab19957e", + "revision": "de6c9ec659a14cd98fe3cc09", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78275,9 +89231,18 @@ "original_amount": 1510, "total_amount": 1510, "id": 1684019013862, - "date_created": "2023-05-13T23:03:33.862Z", - "date_last_updated": "2023-05-13T23:03:33.862Z", - "date_of_expiration": "2023-05-13T23:03:33.862Z", + "date_created": { + "type": 6, + "value": 1684019013862 + }, + "date_last_updated": { + "type": 6, + "value": 1684019013862 + }, + "date_of_expiration": { + "type": 6, + "value": 1684019013862 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78285,10 +89250,10 @@ "currency_id": "BRL", "history_id": 1684019013862 }, - "revision": "24f939d3829e4799a2adc401", + "revision": "0a6109a7e73c4e1aad6a75ab", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78296,10 +89261,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "42bc75e98b0047ab9926680d", + "revision": "dd2cc16fdc4b4e05b7aba253", "revision_nr": 1, - "created": 1701463509596, - "modified": 1701463509596 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78319,12 +89284,12 @@ "installment_amount": 220, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "5a2827b927a44ff7956ef4df", + "revision": "602a0fbc95fe494dbb3312aa", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78341,9 +89306,18 @@ "total_amount": 220, "id": 1684155209634, "contract_id": "1679263150490", - "date_created": "2023-05-15T12:53:29.634Z", - "date_last_updated": "2023-05-15T12:53:29.634Z", - "date_of_expiration": "2023-05-15T12:53:29.634Z", + "date_created": { + "type": 6, + "value": 1684155209634 + }, + "date_last_updated": { + "type": 6, + "value": 1684155209634 + }, + "date_of_expiration": { + "type": 6, + "value": 1684155209634 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -78351,10 +89325,10 @@ "currency_id": "BRL", "history_id": 1684155209634 }, - "revision": "48fdfad080fe4059862ff05d", + "revision": "023f660d275c41a4831e72fb", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78362,10 +89336,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "5d8fce38bb1a4e56ad9f5281", + "revision": "6238df38221b451196c1342a", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820568, + "modified": 1701465820568 } }, { @@ -78377,10 +89351,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, - "revision": "c9861f4c3bbd47f5b3a2e73b", + "revision": "a7d33a070a2f458ba5974fa1", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78388,10 +89362,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0cd7171d75684bc9bc35e66d", + "revision": "0cdf481bca664525827176e0", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78399,10 +89373,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b255bcaf393540978a8c4267", + "revision": "b8de831c5eb94d3d8372adf4", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78417,19 +89391,28 @@ "total_amount": 648, "history_id": 1684158510574, "id": 1684158510574, - "date_created": "2023-05-15T13:48:30.574Z", - "date_last_updated": "2023-05-15T13:48:30.574Z", - "date_of_expiration": "2023-06-14T13:48:30.574Z", + "date_created": { + "type": 6, + "value": 1684158510574 + }, + "date_last_updated": { + "type": 6, + "value": 1684158510574 + }, + "date_of_expiration": { + "type": 6, + "value": 1686750510574 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "588ec5cd38734122b46dcd82", + "revision": "4355ac861aee4a3cac90de93", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78437,10 +89420,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "60cebc39211047a6b13b1680", + "revision": "491da0db29c74ebdbd3bf3d4", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78458,12 +89441,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "f3936150b4d94a4cbdb0f3d6", + "revision": "3a91b7fba5834f58a0f3418b", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78479,9 +89462,18 @@ "original_amount": 5, "total_amount": 5, "id": 1684348943785, - "date_created": "2023-05-17T18:42:23.785Z", - "date_last_updated": "2023-05-17T18:42:23.785Z", - "date_of_expiration": "2023-05-17T18:42:23.785Z", + "date_created": { + "type": 6, + "value": 1684348943785 + }, + "date_last_updated": { + "type": 6, + "value": 1684348943785 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348943785 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78489,10 +89481,10 @@ "currency_id": "BRL", "history_id": 1684348943785 }, - "revision": "c9a63f62c1a84f01869be8dd", + "revision": "65e8d04c02844de7ae9badfd", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78500,10 +89492,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "ebcf4f43f021421fbbed6662", + "revision": "e2f99a82be9b440ca07bba8e", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78521,12 +89513,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "adae4c5af40e467b9c071619", + "revision": "252da1858a414dcaad934fe0", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78542,9 +89534,18 @@ "original_amount": 416.90000000000003, "total_amount": 416.90000000000003, "id": 1684624245338, - "date_created": "2023-05-20T23:10:45.338Z", - "date_last_updated": "2023-05-20T23:10:45.338Z", - "date_of_expiration": "2023-05-20T23:10:45.338Z", + "date_created": { + "type": 6, + "value": 1684624245338 + }, + "date_last_updated": { + "type": 6, + "value": 1684624245338 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624245338 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78552,10 +89553,10 @@ "currency_id": "BRL", "history_id": 1684624245338 }, - "revision": "028fbba95be3488b86a112a0", + "revision": "8ec3d2209e074dec8bfed101", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78563,10 +89564,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "4387dcedc46a42249dad9896", + "revision": "cef307d1b1f04b209ffa0e1b", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78584,12 +89585,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "15baef959da74272a29090fe", + "revision": "c5d676ce4db549e7816c70e6", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78605,9 +89606,18 @@ "original_amount": 11552888, "total_amount": 11552888, "id": 1684624330381, - "date_created": "2023-05-20T23:12:10.381Z", - "date_last_updated": "2023-05-20T23:12:10.381Z", - "date_of_expiration": "2023-05-20T23:12:10.381Z", + "date_created": { + "type": 6, + "value": 1684624330381 + }, + "date_last_updated": { + "type": 6, + "value": 1684624330381 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624330381 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78616,10 +89626,10 @@ "history_id": 1684624330381, "description": "Compra de 11.552.888,00 IVIP por 2.371,90 BRL" }, - "revision": "cc3120da387149be809a721d", + "revision": "0c72c7d2b3434cd389ce3eb3", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78627,12 +89637,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "3fbcff0de309480d9420d937", + "revision": "94473a9325f84bb2a66bf4b7", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78647,18 +89657,27 @@ "total_amount": 100, "history_id": 1686781360635, "id": 1686781360635, - "date_created": "2023-06-14T22:22:40.635Z", - "date_last_updated": "2023-06-14T22:22:40.635Z", - "date_of_expiration": "2023-07-14T22:22:40.635Z", + "date_created": { + "type": 6, + "value": 1686781360635 + }, + "date_last_updated": { + "type": 6, + "value": 1686781360635 + }, + "date_of_expiration": { + "type": 6, + "value": 1689373360635 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "4cea1e8a42cf4a928c439663", + "revision": "590f8dce5c694bca8c00162e", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78666,10 +89685,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "a520d104b51e4fa8954a2db6", + "revision": "6b7932fdaba74aba96ef637e", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78677,12 +89696,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "0c9c3295406a4d2b9a778a83", + "revision": "6b034df6a621419a82df6350", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78697,22 +89716,37 @@ "total_amount": 162, "history_id": 1686838534175, "id": 1686838534175, - "date_created": "2023-06-15T14:15:34.175Z", - "date_last_updated": "2023-06-15T14:25:35.258Z", - "date_of_expiration": "2023-07-15T14:15:34.175Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-06-15T14:25:35.258Z", - "money_release_date": "2023-06-15T14:25:35.258Z", + "date_created": { + "type": 6, + "value": 1686838534175 + }, + "date_last_updated": { + "type": 6, + "value": 1686839135258 + }, + "date_of_expiration": { + "type": 6, + "value": 1689430534175 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686839135258 + }, + "money_release_date": { + "type": 6, + "value": 1686839135258 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "b9eae892b07b4d5988830dcd", + "revision": "59fc92049b8847938c75ffa7", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78720,10 +89754,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 162,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "7660f272106343468358e4b1", + "revision": "7d24b369d63947b1a574a39a", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78743,12 +89777,12 @@ "installment_amount": 162, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b94ec61b6b17453d92ec5c35", + "revision": "822b830b2bca4584a0eb22fe", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78765,9 +89799,18 @@ "total_amount": 162, "id": 1686839367288, "contract_id": "1684158510574", - "date_created": "2023-06-15T14:29:27.288Z", - "date_last_updated": "2023-06-15T14:29:27.288Z", - "date_of_expiration": "2023-06-15T14:29:27.288Z", + "date_created": { + "type": 6, + "value": 1686839367288 + }, + "date_last_updated": { + "type": 6, + "value": 1686839367288 + }, + "date_of_expiration": { + "type": 6, + "value": 1686839367288 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -78775,10 +89818,10 @@ "currency_id": "BRL", "history_id": 1686839367288 }, - "revision": "a8c13339ccb049c79e91c786", + "revision": "bc060754e58b4a46b1df4d37", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78786,10 +89829,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", - "revision": "ed11d4a7ac854246b45252d5", + "revision": "f4c83eba7f3f4621976a3220", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78807,12 +89850,12 @@ "installment_amount": 5132122, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "979169183ad846ac947b704f", + "revision": "992f215f5267488dbebf797c", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78827,9 +89870,18 @@ "original_amount": 5132122, "total_amount": 5132122, "id": 1687526304583, - "date_created": "2023-06-23T13:18:24.583Z", - "date_last_updated": "2023-06-23T13:18:24.583Z", - "date_of_expiration": "2025-06-23T13:18:24.583Z", + "date_created": { + "type": 6, + "value": 1687526304583 + }, + "date_last_updated": { + "type": 6, + "value": 1687526304583 + }, + "date_of_expiration": { + "type": 6, + "value": 1750684704583 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -78838,10 +89890,10 @@ "history_id": 1687526304583, "wasDebited": true }, - "revision": "0f461c15bca247dd932d9b47", + "revision": "0c42020bdde742378c0a057d", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78849,10 +89901,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.132.122,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", - "revision": "3d112f854b5345f98965c0d4", + "revision": "adf93c629ca64201bfc6680b", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78861,12 +89913,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-02T09:29:25.462Z" + ".val": { + "type": 6, + "value": 1693646965462 + } }, - "revision": "89de4c441e8e4900925d05f3", + "revision": "2af4816889a04dec9ca12275", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78882,12 +89937,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "96b1b737b0ae467e9ef8df7c", + "revision": "ef3d175b797141539363b2a0", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78895,10 +89950,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1691054965462", - "revision": "e565d6ec7ddd42dcb3001e09", + "revision": "0eaee3c8d25f4966adf02f02", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78913,23 +89968,35 @@ "total_amount": 510, "id": 1691054965462, "history_id": 1691054965462, - "date_created": "2023-08-03T09:29:25.462Z", - "date_last_updated": "2023-08-03T19:07:16.675Z", + "date_created": { + "type": 6, + "value": 1691054965462 + }, + "date_last_updated": { + "type": 6, + "value": 1691089636675 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-03T19:07:16.675Z", - "money_release_date": "2023-08-03T19:07:16.675Z", + "date_approved": { + "type": 6, + "value": 1691089636675 + }, + "money_release_date": { + "type": 6, + "value": 1691089636675 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "c91d2388299040bbb41c2fc4", + "revision": "74ebee85ece943669d61001f", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78937,10 +90004,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 510,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "546dffb5089e49e1b5ec3d10", + "revision": "577b3d0784b24dedba46e077", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78949,12 +90016,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-06T23:50:11.694Z" + ".val": { + "type": 6, + "value": 1694044211694 + } }, - "revision": "ac7e19de3aad47c59a27a203", + "revision": "e85350b398374342914e7a74", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78970,12 +90040,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "c52227470dc04414b2ea07a3", + "revision": "89d29d83d01f459e8376a6a7", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -78983,10 +90053,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1691452211694", - "revision": "074281fb5b014db59049bcbf", + "revision": "1792cff25c314f9c8f420ecb", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79001,23 +90071,35 @@ "total_amount": 300, "id": 1691452211694, "history_id": 1691452211694, - "date_created": "2023-08-07T23:50:11.694Z", - "date_last_updated": "2023-08-08T00:39:59.247Z", + "date_created": { + "type": 6, + "value": 1691452211694 + }, + "date_last_updated": { + "type": 6, + "value": 1691455199247 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-08T00:39:59.247Z", - "money_release_date": "2023-08-08T00:39:59.247Z", + "date_approved": { + "type": 6, + "value": 1691455199247 + }, + "money_release_date": { + "type": 6, + "value": 1691455199247 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "cf91712d0ead433bb07d43b1", + "revision": "82d14a9d2cb54f51af3943f0", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79025,10 +90107,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 300,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "5825cfd06d9c4615b02ce5fa", + "revision": "d612ddd0ac644c2981447d14", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79040,10 +90122,10 @@ "label": "Taxa de 3,00%", "amount": 750698.52 }, - "revision": "532cbbafcecb4ab98eeb2ec2", + "revision": "baaa81ba972947d6a62e4c38", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79060,10 +90142,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "8e5014a453c9450886d1878d", + "revision": "e45c6be540aa4930a789b7b5", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79071,10 +90153,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1692030522501", - "revision": "c26892637c2649068b4c5518", + "revision": "dc44000842e74ebeb5c5704f", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79082,10 +90164,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "1149868f673948c99f0fbb0b", + "revision": "5c931bdd95f9498a927bf840", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79100,24 +90182,39 @@ "total_amount": 24272585.48, "id": 1692030522501, "history_id": 1692030522501, - "date_created": "2023-08-14T16:28:42.501Z", - "date_last_updated": "2023-08-14T16:40:00.472Z", - "date_of_expiration": "2023-08-14T16:28:42.501Z", + "date_created": { + "type": 6, + "value": 1692030522501 + }, + "date_last_updated": { + "type": 6, + "value": 1692031200472 + }, + "date_of_expiration": { + "type": 6, + "value": 1692030522501 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": "2023-08-14T16:40:00.472Z", - "money_release_date": "2023-08-14T16:40:00.472Z", + "date_approved": { + "type": 6, + "value": 1692031200472 + }, + "money_release_date": { + "type": 6, + "value": 1692031200472 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "0ca8166a1e394edea4afa938", + "revision": "8963375370c5468da982f085", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79125,10 +90222,10 @@ "content": { "type": "STRING", "value": "Saque de 24.272.585,48 IVIP para a carteira 0xC241a13f35a534f3ef174c5cF50Ea8653FfE62F1", - "revision": "c6c532d1fed54527b60c3a76", + "revision": "371cf24e136448da967058f0", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79137,12 +90234,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-19T21:27:27.215Z" + ".val": { + "type": 6, + "value": 1697750847215 + } }, - "revision": "3edfed6828c04181a702304c", + "revision": "93b1226a7aa04c6b81fd0301", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79158,12 +90258,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "7d24d15064984270bfe25fa0", + "revision": "1b479249e2e147a7b96a3548", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79171,10 +90271,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695158847215", - "revision": "178224d70ef044b4b6502a3e", + "revision": "a68342b604374cb08c1f4113", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79189,23 +90289,35 @@ "total_amount": 150, "id": "1695158847215", "history_id": "1695158847215", - "date_created": "2023-09-19T21:27:27.215Z", - "date_last_updated": "2023-09-19T21:40:25.727Z", + "date_created": { + "type": 6, + "value": 1695158847215 + }, + "date_last_updated": { + "type": 6, + "value": 1695159625727 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-09-19T21:40:25.727Z", - "money_release_date": "2023-09-19T21:40:25.727Z", + "date_approved": { + "type": 6, + "value": 1695159625727 + }, + "money_release_date": { + "type": 6, + "value": 1695159625727 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "09e4953a13364a8fabf3f28b", + "revision": "db4dd1c5b43e47ea81c223d0", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79213,10 +90325,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 150,00 BRL para a carteira iVip 1251.9390.3817.0948-30", - "revision": "507855f0960848c5b0d5461c", + "revision": "cba7736a80684903a7a8bd3c", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79232,14 +90344,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 4, "installments_payable": 1 }, - "revision": "a19c7e2d70c54673a669079b", + "revision": "522d755f99724d789cbeb12d", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79247,10 +90359,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884735", - "revision": "137e30ad7b184a6fbddf2595", + "revision": "eb3d67dea7b94ea8aaa22479", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79265,9 +90377,18 @@ "total_amount": 220, "id": "1695159884735", "history_id": "1695159884735", - "date_created": "2023-09-19T21:44:44.735Z", - "date_last_updated": "2023-09-19T21:44:44.735Z", - "date_of_expiration": "2023-09-19T21:44:44.735Z", + "date_created": { + "type": 6, + "value": 1695159884735 + }, + "date_last_updated": { + "type": 6, + "value": 1695159884735 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159884735 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -79275,10 +90396,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "6b5c14de63894343b750a96b", + "revision": "1a74b858850e45ac819c4bf5", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79286,10 +90407,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "cb211f56eb634843940177a4", + "revision": "a493c803347c45f4a9d658d9", "revision_nr": 1, - "created": 1701463509597, - "modified": 1701463509597 + "created": 1701465820569, + "modified": 1701465820569 } }, { @@ -79305,14 +90426,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 2, "installments_payable": 2 }, - "revision": "ccc574649293459b94f81162", + "revision": "23cdb6d9a4f64b5cb36c65ad", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79320,10 +90441,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884797", - "revision": "3f81a9d23f1c4c1198bda92a", + "revision": "08a1346bd0934f44b8f654b0", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79338,9 +90459,18 @@ "total_amount": 162, "id": "1695159884797", "history_id": "1695159884797", - "date_created": "2023-09-19T21:44:44.797Z", - "date_last_updated": "2023-09-19T21:44:44.797Z", - "date_of_expiration": "2023-09-19T21:44:44.797Z", + "date_created": { + "type": 6, + "value": 1695159884797 + }, + "date_last_updated": { + "type": 6, + "value": 1695159884797 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159884797 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -79348,10 +90478,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "7baf4f7b274c463d99860766", + "revision": "eb68179dde5f4e2d94e249f7", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79359,10 +90489,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", - "revision": "9437de064f22489892b6947e", + "revision": "8e05f354d9ee496796036ca8", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79378,14 +90508,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 5, "installments_payable": 0 }, - "revision": "8243e949ff404e6684425abb", + "revision": "aa9ef99303bb4dc4a1aebe93", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79393,10 +90523,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884893", - "revision": "ac2d246eaa714529ab139d2d", + "revision": "2ae71f87010046ff8800d009", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79411,9 +90541,18 @@ "total_amount": 220, "id": "1695159884893", "history_id": "1695159884893", - "date_created": "2023-09-19T21:44:44.893Z", - "date_last_updated": "2023-09-19T21:44:44.893Z", - "date_of_expiration": "2023-09-19T21:44:44.893Z", + "date_created": { + "type": 6, + "value": 1695159884893 + }, + "date_last_updated": { + "type": 6, + "value": 1695159884893 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159884893 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -79421,10 +90560,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "1de9de607d5348b3aa7e9aab", + "revision": "2e36d88aec3b4325aa96b7c3", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79432,10 +90571,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "200e768fbc70477a95533aad", + "revision": "119128fb576a45c3bb53ba0b", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79451,14 +90590,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 3, "installments_payable": 1 }, - "revision": "ae953efcca9a41d099219ab9", + "revision": "9e83aa6bf6404beb959b6b9b", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79466,10 +90605,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884951", - "revision": "33c30360467044ad881f328b", + "revision": "8ac714b4a1b549a7abb9b2fa", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79484,9 +90623,18 @@ "total_amount": 162, "id": "1695159884951", "history_id": "1695159884951", - "date_created": "2023-09-19T21:44:44.951Z", - "date_last_updated": "2023-09-19T21:44:44.951Z", - "date_of_expiration": "2023-09-19T21:44:44.951Z", + "date_created": { + "type": 6, + "value": 1695159884951 + }, + "date_last_updated": { + "type": 6, + "value": 1695159884951 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159884951 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -79494,10 +90642,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "3393ab7ea5894a0aa402c46f", + "revision": "60841a5c81824ef0973d0bb2", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79505,10 +90653,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", - "revision": "c2c06fc67c4945cd9e970488", + "revision": "5bd09471951d41408bd96ef6", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79524,14 +90672,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 4, "installments_payable": 0 }, - "revision": "2abaeba7c71a46ff8d3ecd41", + "revision": "b4290d43bb214b94bcb9f6d9", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79539,10 +90687,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159885077", - "revision": "acad55ca75a2430ebe16dbd6", + "revision": "314672febab24ad986ac91e7", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79557,9 +90705,18 @@ "total_amount": 162, "id": "1695159885077", "history_id": "1695159885077", - "date_created": "2023-09-19T21:44:45.077Z", - "date_last_updated": "2023-09-19T21:44:45.077Z", - "date_of_expiration": "2023-09-19T21:44:45.077Z", + "date_created": { + "type": 6, + "value": 1695159885077 + }, + "date_last_updated": { + "type": 6, + "value": 1695159885077 + }, + "date_of_expiration": { + "type": 6, + "value": 1695159885077 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -79567,10 +90724,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "91c6a22e586b493b8aa46fa3", + "revision": "7cd96b38ce5d4f6fabeb5442", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79578,10 +90735,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", - "revision": "10967f5ee54f44298c220720", + "revision": "893890958a2c4c2da834e015", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79590,12 +90747,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-31T14:53:42.012Z" + ".val": { + "type": 6, + "value": 1698764022012 + } }, - "revision": "ed8f970c708942ca8625e9f6", + "revision": "fe0369a5d0854fecb8eb443d", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79611,12 +90771,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "e12f17ae7a6242dfa7b77613", + "revision": "64fe7130501243e1adda7879", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79624,10 +90784,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1696172022012", - "revision": "ae34a7eee2054c83aa9077e5", + "revision": "50af647df68f4d589cb5cf72", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79643,8 +90803,14 @@ "total_amount": 100000, "id": "1696172022012", "history_id": "1696172022012", - "date_created": "2023-10-01T14:53:42.012Z", - "date_last_updated": "2023-10-01T14:53:42.012Z", + "date_created": { + "type": 6, + "value": 1696172022012 + }, + "date_last_updated": { + "type": 6, + "value": 1696172022012 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -79652,10 +90818,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "e278bce9d1304f8fa92002d1", + "revision": "9bdf7c4b4327490aaa625e1b", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79663,10 +90829,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 100.000,00 IVIP para a carteira iVip 1251.9390.3817.0948-30", - "revision": "24b2e3d4252b4819a6a90add", + "revision": "e3bdea8ddc82404eaf746633", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79675,12 +90841,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-11-11T12:17:09.373Z" + ".val": { + "type": 6, + "value": 1699705029373 + } }, - "revision": "aad813c46b7440519c583f15", + "revision": "70aa108146954c9195725567", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79696,12 +90865,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "1fd6276af41f4333a48b0f2f", + "revision": "650cafc28a54402e9242f9ad", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79709,10 +90878,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1697113029373", - "revision": "1637486365584dd4a496b2f5", + "revision": "7973539604164e389c2c21f0", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79728,23 +90897,35 @@ "total_amount": 2500, "id": "1697113029373", "history_id": "1697113029373", - "date_created": "2023-10-12T12:17:09.373Z", - "date_last_updated": "2023-10-12T12:23:24.981Z", + "date_created": { + "type": 6, + "value": 1697113029373 + }, + "date_last_updated": { + "type": 6, + "value": 1697113404981 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-10-12T12:23:24.981Z", - "money_release_date": "2023-10-12T12:23:24.981Z", + "date_approved": { + "type": 6, + "value": 1697113404981 + }, + "money_release_date": { + "type": 6, + "value": 1697113404981 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "2f87973667d14328a217ac01", + "revision": "0976bc86646a480d847d508b", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79752,10 +90933,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 2.500,00 BRL para a carteira iVip 1251.9390.3817.0948-30", - "revision": "1ad2631c84794dfc98c1d981", + "revision": "781efe7708ad424eb35baca1", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79771,12 +90952,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "24f4b1fe5e824693b389879a", + "revision": "8d4a085da38c418d9adad085", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79784,10 +90965,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1697159292046", - "revision": "e6065d05bac54c8194772e80", + "revision": "a6a585eb710f47a8bb24a9d0", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79803,9 +90984,18 @@ "total_amount": 3812023, "id": "1697159292046", "history_id": "1697159292046", - "date_created": "2023-10-13T01:08:12.046Z", - "date_last_updated": "2023-10-13T01:08:12.046Z", - "date_of_expiration": "2023-10-13T01:08:12.046Z", + "date_created": { + "type": 6, + "value": 1697159292046 + }, + "date_last_updated": { + "type": 6, + "value": 1697159292046 + }, + "date_of_expiration": { + "type": 6, + "value": 1697159292046 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -79814,10 +91004,10 @@ "description": "Compra de 3.812.023,00 IVIP por 2.034,00 BRL", "status_detail": "accredited" }, - "revision": "9ace8d295446461f8366b99a", + "revision": "15d3d71bdcbf40b0a198ed5b", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79825,10 +91015,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4c0f6d3e4d1e4e09abb35162", + "revision": "4c560a4103e3461ca7401b1b", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79840,10 +91030,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "788bbaedb7454e97a27eddbf", + "revision": "67ab755884464b58975cdd83", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79857,15 +91047,18 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-03-19T21:59:10.490Z", + "date_created": { + "type": 6, + "value": 1679263150490 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid" }, - "revision": "34d593b44ee44e3ea59a57f4", + "revision": "75ac8fb8864f419da2152606", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79873,10 +91066,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "684b2e83f37c40c88bcb4e91", + "revision": "f3289770764e462ebac23452", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79884,10 +91077,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "1222c0449a2041f5a1ba6c27", + "revision": "1bdc883962064d72a18b2a19", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79895,10 +91088,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "299d02d5106543f58bde8829", + "revision": "587cf2487c34415bb6244134", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79910,10 +91103,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "3786bf3301344496b880f3a5", + "revision": "d846644fa5924954b64346ac", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79927,15 +91120,18 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-03-19T21:59:10.490Z", + "date_created": { + "type": 6, + "value": 1679263150490 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid" }, - "revision": "68bf243a01ce47a1944c5112", + "revision": "cb7ad7b6a1694a569dc346be", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79943,10 +91139,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "39c3d9a00489433293e598da", + "revision": "be4cf69084b0457ba15cdd08", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79954,10 +91150,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "36909a9265d3463db888c6d8", + "revision": "e173be9d7d9742f8a94cf0b9", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79965,10 +91161,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9c35094b10d140b09c1ee749", + "revision": "c344e5720732458bb771aa05", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79980,10 +91176,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "95ed8511cf8344289595c5bd", + "revision": "e7930edbdb904536ac42db45", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -79997,15 +91193,18 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-03-19T21:59:10.490Z", + "date_created": { + "type": 6, + "value": 1679263150490 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid" }, - "revision": "4e50846d3369494ea95c96b2", + "revision": "70d5e0a9915a4099a66c0bd5", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -80013,10 +91212,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "426b4ac5889b48be9133ef83", + "revision": "2ed8125ea74b458baa46a405", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -80024,10 +91223,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "360f284515ca404f8f79153f", + "revision": "c0664aec584447d2afee282e", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -80039,10 +91238,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, - "revision": "880b554b2da14d768d97aeab", + "revision": "5d6e1d3ca7ca4ecd9a21d619", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -80056,15 +91255,18 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": "2023-05-15T13:48:30.574Z", + "date_created": { + "type": 6, + "value": 1684158510574 + }, "history_id": 1684158510574, "currency_id": "BRL", "status": "paid" }, - "revision": "be5a0f1a09804a1186a76b8b", + "revision": "a23602cbce974bcbb22006be", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -80072,10 +91274,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "cb37bc4152254d3da275f57f", + "revision": "7f7d1e0ed7a74a4caada72ad", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -80083,10 +91285,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e393eef8efa746599e3e7b7d", + "revision": "7f4f37a2d1c842a5a633d859", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -80094,10 +91296,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "43d25ceb5d7b420f97812dfa", + "revision": "1a0661947db44c2b8f16fcc3", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -80109,10 +91311,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "b50396cbd741423db6d137a2", + "revision": "af30ba12fbdb465298aad554", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -80126,16 +91328,22 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-03-19T21:59:10.490Z", + "date_created": { + "type": 6, + "value": 1679263150490 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-19T21:44:44.751Z" + "date_last_updated": { + "type": 6, + "value": 1695159884751 + } }, - "revision": "0118625328804915a35da20c", + "revision": "9521b0b630584718a69f3253", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -80143,10 +91351,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "4b45157aafa049d1a5fe6500", + "revision": "278f5403e7b046a0952755c8", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -80154,10 +91362,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "5181c8471d164df0b4e135c8", + "revision": "d2aab046aaee4173998893ce", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820570, + "modified": 1701465820570 } }, { @@ -80169,10 +91377,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, - "revision": "a7de6d6126184dfab2e16ebb", + "revision": "058c3567c7e747b6bb6564bd", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80186,16 +91394,22 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": "2023-05-15T13:48:30.574Z", + "date_created": { + "type": 6, + "value": 1684158510574 + }, "history_id": 1684158510574, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-19T21:44:44.809Z" + "date_last_updated": { + "type": 6, + "value": 1695159884809 + } }, - "revision": "497b988794db4fcfa969a4c2", + "revision": "9e1f541822544e3fa744ccc8", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80203,10 +91417,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "48e12e0a3bd543deae293114", + "revision": "157f62c2766340a980e27be5", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80214,10 +91428,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "c5cd10254ff248fabc2157ab", + "revision": "90d6ee1bef1145879d2607a1", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80225,10 +91439,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "957782afd49342ca812cd8b1", + "revision": "9ea8c7601044479ea0d4cdae", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80240,10 +91454,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "ac69c8f0644142c1a940706d", + "revision": "9de64334a15d4ff9ae556f69", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80257,16 +91471,22 @@ "total_amount": 1100, "installments": 5, "installment_amount": 220, - "date_created": "2023-03-19T21:59:10.490Z", + "date_created": { + "type": 6, + "value": 1679263150490 + }, "history_id": 1679263150490, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-19T21:44:44.904Z" + "date_last_updated": { + "type": 6, + "value": 1695159884904 + } }, - "revision": "a82eab82e8814c3e9a5d6628", + "revision": "6b9d5d8b3668452f841e84ef", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80274,10 +91494,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "5b5a8e32346d440db52e3a9a", + "revision": "fa66a474795245db89d5619d", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80285,10 +91505,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "2f86229814114ec090f21021", + "revision": "537c43cc23984e47aa56f0c3", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80300,10 +91520,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, - "revision": "85cfc9d764b54644aefe45e0", + "revision": "f7c2a37e52c848738cc2c858", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80317,16 +91537,22 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": "2023-05-15T13:48:30.574Z", + "date_created": { + "type": 6, + "value": 1684158510574 + }, "history_id": 1684158510574, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-19T21:44:44.962Z" + "date_last_updated": { + "type": 6, + "value": 1695159884962 + } }, - "revision": "a6d8727115744b2da4157e65", + "revision": "efd76dc997034dd1a47c16d2", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80334,10 +91560,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "0fc46bac128d41689a170942", + "revision": "ac63db15854749ada3d733ae", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80345,10 +91571,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "1ee1e2ab10964b75ab4bd1aa", + "revision": "7152c497a7b648b787f31bef", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80356,10 +91582,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ad7c22a4bd1c452a84575cd6", + "revision": "9c088fe2403d4d1b9e623327", "revision_nr": 1, - "created": 1701463509598, - "modified": 1701463509598 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80371,10 +91597,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, - "revision": "3ae16a83fb3f4e02a4382401", + "revision": "51ca723440cc4b4b8c115899", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80388,16 +91614,22 @@ "total_amount": 648, "installments": 4, "installment_amount": 162, - "date_created": "2023-05-15T13:48:30.574Z", + "date_created": { + "type": 6, + "value": 1684158510574 + }, "history_id": 1684158510574, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-19T21:44:45.096Z" + "date_last_updated": { + "type": 6, + "value": 1695159885096 + } }, - "revision": "a88d01c21dcb4550a694a232", + "revision": "f8b9cae4367b4759a6d40ee9", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80405,10 +91637,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "7a07fc5cfb4e47fa8960879e", + "revision": "f29efba62b444f6180a0915e", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80416,10 +91648,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "80ee9ae82dc646b38c77ee7a", + "revision": "a68d76ae0c3c430487603041", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80427,10 +91659,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fb369c1b3cf547e4828df02b", + "revision": "abba0a983ffb45208cb1876d", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80438,10 +91670,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4e829c1c11714533b7ca1c0c", + "revision": "3764f568a0fe4b04ba155989", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80451,13 +91683,19 @@ "value": { "approvedLimit": 1000, "limitUsed": 850, - "analysisRequested": "2023-03-18T16:32:25.695Z", - "lastReview": "2023-03-19T21:27:43.210Z" + "analysisRequested": { + "type": 6, + "value": 1679157145695 + }, + "lastReview": { + "type": 6, + "value": 1679261263210 + } }, - "revision": "bdb7b44835f747a892a8831f", + "revision": "bdac640268dc4304abe18eef", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80469,12 +91707,15 @@ "dateValidity": 1679152336550, "totalValue": 1379.3, "currencyType": "USD", - "balancesModificacao": "2023-10-14T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697252400000 + } }, - "revision": "b75d92a09b224a1890985a89", + "revision": "c4f33b6d895448a194885d12", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80482,12 +91723,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "9442c0461f67495eba88e216", + "revision": "853ccd6f60a24b9db228ce5b", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80502,22 +91743,37 @@ "total_amount": 1500, "history_id": 1677727950406, "id": 1677727950406, - "date_created": "2023-03-02T03:32:30.406Z", - "date_last_updated": "2023-03-02T03:38:03.262Z", - "date_of_expiration": "2023-04-01T03:32:30.406Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-02T03:38:03.262Z", - "money_release_date": "2023-03-02T03:38:03.262Z", + "date_created": { + "type": 6, + "value": 1677727950406 + }, + "date_last_updated": { + "type": 6, + "value": 1677728283262 + }, + "date_of_expiration": { + "type": 6, + "value": 1680319950406 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677728283262 + }, + "money_release_date": { + "type": 6, + "value": 1677728283262 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "858feb2ad07c4113b5bf6694", + "revision": "d9df66f478ce4ce89377c6ff", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80525,10 +91781,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "06ab851b0fba45f2b3ff4599", + "revision": "8c6edd1975a44d0688da98be", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80536,12 +91792,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "0e185b80331f49659b284e93", + "revision": "dd9883ed63754d24b847af2d", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80556,22 +91812,37 @@ "total_amount": 100, "history_id": 1677797747321, "id": 1677797747321, - "date_created": "2023-03-02T22:55:47.321Z", - "date_last_updated": "2023-03-03T00:25:24.428Z", - "date_of_expiration": "2023-04-01T22:55:47.321Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-03T00:25:24.428Z", - "money_release_date": "2023-03-03T00:25:24.428Z", + "date_created": { + "type": 6, + "value": 1677797747321 + }, + "date_last_updated": { + "type": 6, + "value": 1677803124428 + }, + "date_of_expiration": { + "type": 6, + "value": 1680389747321 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677803124428 + }, + "money_release_date": { + "type": 6, + "value": 1677803124428 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "8513c2d7769645768cc01e4c", + "revision": "34a1bfe1a97a4ce4a5513e60", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80579,10 +91850,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "b7af9118ebf64c7fa4bc7e31", + "revision": "7623a65b99644b0488996b64", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80590,12 +91861,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "210eb26aff0a48e3bfbdff1b", + "revision": "adced7b24cf8489cb53ae397", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80610,20 +91881,32 @@ "total_amount": 1000, "history_id": 1678363438960, "id": 1678363438960, - "date_created": "2023-03-09T12:03:58.960Z", - "date_last_updated": "2023-03-13T12:44:21.621Z", - "date_of_expiration": "2023-04-08T12:03:58.960Z", + "date_created": { + "type": 6, + "value": 1678363438960 + }, + "date_last_updated": { + "type": 6, + "value": 1678711461621 + }, + "date_of_expiration": { + "type": 6, + "value": 1680955438960 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-03-13T12:44:21.621Z", + "money_release_date": { + "type": 6, + "value": 1678711461621 + }, "money_release_status": "rejected" }, - "revision": "c26112cf3f7d436da4165443", + "revision": "1270811aaf0f4c12ba0ada2e", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80631,10 +91914,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "c3916b768937465489d2453a", + "revision": "ef2282db64c24dd3b043bb53", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80652,12 +91935,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "adb0d6cfc263415b9a3eba1e", + "revision": "055fca0a75814dc5b3c4d4ed", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80673,9 +91956,18 @@ "original_amount": 11439584, "total_amount": 11439584, "id": 1678155991324, - "date_created": "2023-03-07T02:26:31.324Z", - "date_last_updated": "2023-03-07T02:26:31.324Z", - "date_of_expiration": "2023-03-07T02:26:31.324Z", + "date_created": { + "type": 6, + "value": 1678155991324 + }, + "date_last_updated": { + "type": 6, + "value": 1678155991324 + }, + "date_of_expiration": { + "type": 6, + "value": 1678155991324 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -80684,10 +91976,10 @@ "history_id": 1678155991324, "description": "Compra de 11439584 IVIP por 1600 BRL" }, - "revision": "ff57bd04c2004746a60fa5de", + "revision": "b51f838839d6409192d45fe6", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80699,10 +91991,10 @@ "label": "Taxa de 0.99%", "amount": 1.9800000000000002 }, - "revision": "7e2c278bf96f411e8352a350", + "revision": "508e5eb786fe4d67a58051cc", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80710,10 +92002,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2e0f65de9df9461194c49e66", + "revision": "b0e431b0bdb24764a8503e8e", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80723,10 +92015,10 @@ "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "5d5202427dd6473f9dad24eb", + "revision": "1fe4b4a052e94846ab0a702b", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80734,10 +92026,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "eaf7b12c19a444c486cd8b0f", + "revision": "47033cf3b90b4ec8a5157f30", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80751,10 +92043,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "2777f427faef473f807aaf6b", + "revision": "ebd15ebeb4f342c19c1cd40b", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80762,10 +92054,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55108764779/ticket?caller_id=1310149122&hash=bd26ec14-a4ce-4255-b152-2a7df041f5dd", - "revision": "09e6909702f74779845c17b0", + "revision": "86a93244c08e4bd7853913f6", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80773,10 +92065,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI5ElEQVR42u3dUa7jNgwFUO3A+9+ld+Bi0E6TkFdyBh0UrXz8Eby8xPZx/ghSV+P6Hx3noKWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaX9/dpRj+PH/46/P/j514+z/nx5Ha8L/PXBz3Nf33u/x88PXl9+P60zaGlpaWlpaWlpaWlpH6I93ku28jZd/fVBuWP7CcoZk0/fHzIxaGlpaWlpaWlpaWlpH6AtBWR+jPHpbj24sTj3o058PcGicKWlpaWlpaWlpaWlpX229vxs7K1kpe333gD8qCLLs+QXWlpaWlpaWlpaWlpa2jBm2UrJaf03Pmcoi7ZUkWUwk5aWlpaWlpaWlpaW9snaKb5971yugUsPNO3pjbt+IC0tLS0tLS0tLS0t7UO005SSf/fln2aq0NLS0tLS0tLS0tLS/k+1+eihji2WJH0wWTW3Xg13b6GlpaWlpaWlpaWlpd1be7YKbrrALXTeYsOu/JUDJkvy5DTmhJaWlpaWlpaWlpaWdnft67bnJ/S42yetJJKUL+eK8QzPXIrPUlnS0tLS0tLS0tLS0tLurj1zzn6jHOGO7cKrRXTTkrPvErCseWlpaWlpaWlpaWlpaTfT9tvmdXHTht1kHDNtEFAeN/9KdzOitLS0tLS0tLS0tLS0m2knFV7DT8rLEiH5Pp2ZAKvN13ItSktLS0tLS0tLS0tLu7f2XZa2V+t1YioMS2VZoHmxXa9j86e0tLS0tLS0tLS0tLR7a1sYSdpUbXW5El+SjGmkMq2zy2vlaGlpaWlpaWlpaWlp99Y2RW/dhfPjOrY0UpmOFodSmoeLqUtaWlpaWlpaWlpaWtr9tIuhyTQWOYn7b8vkyv+mdzvydOZNzUtLS0tLS0tLS0tLS7ubNhWBrWwcbdbyvQydrIZrW2b3ec6W5X/epvrT0tLS0tLS0tLS0tJupG0XGe3Utrbtbtfqui6ujXdOb3S3CzYtLS0tLS0tLS0tLe2O2mN2pf5BOS1tpdZKxKt18qbL39KNaGlpaWlpaWlpaWlpd9e2AjLtp3aFEnG0vlxu5022zG6jl4uQf1paWlpaWlpaWlpa2p21eUHaZIVcgeZEknTGdLFdKjSPm5qXlpaWlpaWlpaWlpZ2M+2Y3TG17qbRkJP9sAsq/UDrGU9aWlpaWlpaWlpaWtrdtS2j/2zL1RZBjyt8qhjzXOW12JqNlpaWlpaWlpaWlpb2IdqRUxxTQEl6m7IgcwTJGYY1++bZtLS0tLS0tLS0tLS0z9GmoP7yQcmCLLx222mdWLRpk+3zm0wVWlpaWlpaWlpaWlrarbQ5xTF5JvOXbf/qEarSSbbkdOkcLS0tLS0tLS0tLS3tk7TlIq2GG61rd+Twx1aQ9sj+Uq5Osyq/ybqkpaWlpaWlpaWlpaXdQ1tWr7VokduAkrYQbkKZ/jbt7IOWlpaWlpaWlpaWlvZJ2kLOb/v+1WkLgNe50ybeumLMUSW0tLS0tLS0tLS0tLSP0t4Fj0wmLKfDmnep/unc6+sqkpaWlpaWlpaWlpaWdgNt6+ldOd+/NPZSQEmrBPtKulYnTirQWRVJS0tLS0tLS0tLS0u7qfauJrwWS90W535UkdOfYH1fWlpaWlpaWlpaWlra3bWLOnHS9ksDkq2xV9JHxuf/fumgpaWlpaWlpaWlpaXdXTtt2PUeXKsOr7td2VrWyTULRhl5U2xaWlpaWlpaWlpaWtqHaNsOZxE6DepfPOn1i7mULWqSlpaWlpaWlpaWlpZ2b22p+krt2Da7Lgn+k7iRcka7wHF3PVpaWlpaWlpaWlpa2udo095p00ZcypEs+f65NP2oMVMBWW5+34ukpaWlpaWlpaWlpaXdRdvKweOrirGhWkuuL4SbXnT1Y9DS0tLS0tLS0tLS0u6uTVXfohF3hIc8QgE5QjTkt1OXjUZLS0tLS0tLS0tLS7uztlyklHStL9efr6WKXKHavPIGAbna/KrmpaWlpaWlpaWlpaWl3UX7PvPYm3NtMLN04/qRBjjTWrlcwt5nqtDS0tLS0tLS0tLS0u6nLYXcyCvapnGRrVgcn929Y1Z89u/l02hpaWlpaWlpaWlpaR+gLa221NjLk5ilDJ10/MrgZUpCKVOXtLS0tLS0tLS0tLS0T9SmjP53d1L0gJLWpuup/ouq9Ph6z25aWlpaWlpaWlpaWtp9tFeoCY9FX679NUIX8MjjmCllsm0LcD8jSktLS0tLS0tLS0tLu5G2VG7tZeSgx/x8Yza7OVo9macz73dbo6WlpaWlpaWlpaWl3U87WdGWvrJo7KWkkZRSsp66zJUlLS0tLS0tLS0tLS3tztppSknbGXuyZq005/Ls5pWX073fbbSESlpaWlpaWlpaWlpa2odoSw9u1cRr/cCyiK7PaS5yTfpKunzQ0tLS0tLS0tLS0tI+QJvmJct6t6YdIXTyav279JXyA6Ui9X4XbFpaWlpaWlpaWlpa2l20raO2umbbgW18oiaTky0V8sxL7L5eDUdLS0tLS0tLS0tLS7ufdizaebk6LKkipQw929s8rHl+nphTK2lpaWlpaWlpaWlpaXfWLmSr+cvppthpIdz6cVNVSktLS0tLS0tLS0tL+xztqMcRMvqPuzVw6SUZ36vIyZW/7O7R0tLS0tLS0tLS0tLuo51um5ZGJfskZq4iy/9KkMmZV759U0XS0tLS0tLS0tLS0tJuqV2Ug2OWUrKanGxJI6mDeMxK2LFKKaGlpaWlpaWlpaWlpX2GdrQYkfdVbqliHIt1cWXM8ousE1paWlpaWlpaWlpa2qdry4ULZRI1mbdmS1OXI1y5R03S0tLS0tLS0tLS0tI+R5tbdyPn+5fblnun3P7W8Ssx/mfLNaGlpaWlpaWlpaWlpX2SduShybToLZeSV1gSd7QNsHPe5Lm4JS0tLS0tLS0tLS0t7SO0//2DlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlva3af8AAVry9+WFQ1kAAAAASUVORK5CYII=", - "revision": "e59b7f7189e34a059b679487", + "revision": "b7b57b34fec54a3894ec752f", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80784,10 +92076,10 @@ "content": { "type": "STRING", "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d127175204000053039865406201.985802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter551087647796304A631", - "revision": "59ca99a1efe34b00b155a58c", + "revision": "39367a8b086b43b2a20bb6a5", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80795,10 +92087,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "3f696d8094fb48b39e5bfdf1", + "revision": "89d423be5e634252a8493ebc", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80813,19 +92105,28 @@ "total_amount": 201.98, "history_id": 1677377774383, "id": 55108764779, - "date_created": "2023-02-25T22:16:15.134-04:00", - "date_last_updated": "2023-02-25T22:16:15.134-04:00", - "date_of_expiration": "2023-02-26T22:16:14.923-04:00", + "date_created": { + "type": 6, + "value": 1677377775134 + }, + "date_last_updated": { + "type": 6, + "value": 1677377775134 + }, + "date_of_expiration": { + "type": 6, + "value": 1677464174923 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "pending", "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "1ab1967ee90e486a9e33fd6f", + "revision": "b79cb9676acb4af3b4340a25", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80833,10 +92134,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "0d59db63d4d342e8aa5d226e", + "revision": "727f9d46058b4c2e87fbb7c4", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80848,10 +92149,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "714847c1be9f4ae0b3df05ed", + "revision": "1c0927a187f94600929137a2", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80859,10 +92160,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1049c84ccc69434ea99e23b6", + "revision": "7ed687312bd14f81956751db", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80870,10 +92171,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "74998691a58541c38abff38d", + "revision": "9cb0de1962274584be43db71", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80888,19 +92189,28 @@ "total_amount": 3600, "history_id": 1679262602609, "id": 1679262602609, - "date_created": "2023-03-19T21:50:02.609Z", - "date_last_updated": "2023-03-19T21:50:02.609Z", - "date_of_expiration": "2023-04-18T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1679262602609 + }, + "date_last_updated": { + "type": 6, + "value": 1679262602609 + }, + "date_of_expiration": { + "type": 6, + "value": 1681854602609 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "6955ac4b361148df98304361", + "revision": "b61c7933babc406c9b76ff07", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80908,10 +92218,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "5764818f9b6d48c99e80bc8e", + "revision": "3e9f9c43c27a4eb49f5292f5", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80929,12 +92239,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "35a95f8c943841db9a6d20b3", + "revision": "b21ffdcc7ffb40508ff430a4", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80950,9 +92260,18 @@ "original_amount": 17473846, "total_amount": 17473846, "id": 1679266870095, - "date_created": "2023-03-19T23:01:10.095Z", - "date_last_updated": "2023-03-19T23:01:10.095Z", - "date_of_expiration": "2023-03-19T23:01:10.095Z", + "date_created": { + "type": 6, + "value": 1679266870095 + }, + "date_last_updated": { + "type": 6, + "value": 1679266870095 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266870095 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -80961,10 +92280,10 @@ "history_id": 1679266870095, "description": "Compra de 17473846 IVIP por 3000 BRL" }, - "revision": "a29ced931e924a01ac442b39", + "revision": "ec5fda6dada54ea5947a6791", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80976,10 +92295,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "9b2d18edc2ca474db154f61a", + "revision": "19116d1dd7284b278b500f05", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80987,10 +92306,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0446d0c5687f4445815b977d", + "revision": "4a013e8824154f1ebf9b8a82", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -80998,10 +92317,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "8f9cfa88bb064514a09b62fa", + "revision": "12daee48a91645de9b04b6ad", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81016,22 +92335,37 @@ "total_amount": 3600, "history_id": 1678654062362, "id": 1678654062362, - "date_created": "2023-03-12T20:47:42.362Z", - "date_last_updated": "2023-03-21T13:30:48.783Z", - "date_of_expiration": "2023-04-11T20:47:42.362Z", + "date_created": { + "type": 6, + "value": 1678654062362 + }, + "date_last_updated": { + "type": 6, + "value": 1679405448783 + }, + "date_of_expiration": { + "type": 6, + "value": 1681246062362 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "date_approved": "2023-03-21T13:30:48.783Z", - "money_release_date": "2023-03-21T13:30:48.783Z", + "date_approved": { + "type": 6, + "value": 1679405448783 + }, + "money_release_date": { + "type": 6, + "value": 1679405448783 + }, "money_release_status": "rejected", "wasDebited": true }, - "revision": "eb427a78c43042ccbb0d7c8d", + "revision": "f65a784f1ff24f59941d6756", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81039,10 +92373,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "f8e149ef54da4972b57c018b", + "revision": "30bd6c9f54ad482ea2b393b6", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81050,12 +92384,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "aee5734cc3a74d18b7454182", + "revision": "8d7d3d5d9b484ecbb7e26184", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81070,18 +92404,27 @@ "total_amount": 100, "history_id": 1679871546323, "id": 1679871546323, - "date_created": "2023-03-26T22:59:06.323Z", - "date_last_updated": "2023-03-26T22:59:06.323Z", - "date_of_expiration": "2023-04-25T22:59:06.323Z", + "date_created": { + "type": 6, + "value": 1679871546323 + }, + "date_last_updated": { + "type": 6, + "value": 1679871546323 + }, + "date_of_expiration": { + "type": 6, + "value": 1682463546323 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "f2b313e87cd74f50b19d6da9", + "revision": "1f90b5b3e2ec4f41ab4bf186", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81089,10 +92432,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "5c4b0496c51348acb6f0f3ca", + "revision": "76d49f67713743789890dea2", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81100,12 +92443,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "f0b9b43fa6c44110a9ed11f4", + "revision": "ca0dc6a3fef94f7bbcb2fa44", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81120,22 +92463,37 @@ "total_amount": 360, "history_id": 1682619072709, "id": 1682619072709, - "date_created": "2023-04-27T18:11:12.709Z", - "date_last_updated": "2023-04-27T18:30:34.522Z", - "date_of_expiration": "2023-05-27T18:11:12.709Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-04-27T18:30:34.522Z", - "money_release_date": "2023-04-27T18:30:34.522Z", + "date_created": { + "type": 6, + "value": 1682619072709 + }, + "date_last_updated": { + "type": 6, + "value": 1682620234522 + }, + "date_of_expiration": { + "type": 6, + "value": 1685211072709 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1682620234522 + }, + "money_release_date": { + "type": 6, + "value": 1682620234522 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "e0e2e3a015b34f558a81dec5", + "revision": "49dd9a9679144d99bb722de9", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81143,10 +92501,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 360,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "f1aed890474147f28e350b60", + "revision": "271fd81dc922462eb4bfb0f7", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81166,12 +92524,12 @@ "installment_amount": 360, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d171e332bf5d4258b71e7a40", + "revision": "5f6c660d8096404896efa388", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81188,9 +92546,18 @@ "total_amount": 360, "id": 1682620551210, "contract_id": "1679262602609", - "date_created": "2023-04-27T18:35:51.210Z", - "date_last_updated": "2023-04-27T18:35:51.210Z", - "date_of_expiration": "2023-04-27T18:35:51.210Z", + "date_created": { + "type": 6, + "value": 1682620551210 + }, + "date_last_updated": { + "type": 6, + "value": 1682620551210 + }, + "date_of_expiration": { + "type": 6, + "value": 1682620551210 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -81198,10 +92565,10 @@ "currency_id": "BRL", "history_id": 1682620551210 }, - "revision": "3b7c07b4b3354a6490a9d2d4", + "revision": "fd6768d01e824daa9afa23a6", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81209,10 +92576,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "f811973346de43a8bfdb2e1c", + "revision": "37b0a20910784aea842c634b", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81220,12 +92587,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "62f187e327f64ddb8a245bba", + "revision": "360cacb3f340472da7b43776", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81240,22 +92607,37 @@ "total_amount": 200, "history_id": 1683422461919, "id": 1683422461919, - "date_created": "2023-05-07T01:21:01.919Z", - "date_last_updated": "2023-05-07T11:45:42.487Z", - "date_of_expiration": "2023-06-06T01:21:01.919Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-07T11:45:42.487Z", - "money_release_date": "2023-05-07T11:45:42.487Z", + "date_created": { + "type": 6, + "value": 1683422461919 + }, + "date_last_updated": { + "type": 6, + "value": 1683459942487 + }, + "date_of_expiration": { + "type": 6, + "value": 1686014461919 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683459942487 + }, + "money_release_date": { + "type": 6, + "value": 1683459942487 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "46e40aca5da64ea58f746fae", + "revision": "2aee3a194c1e4d4884e24a1f", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81263,10 +92645,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "6f5f816f9c534a6ba7141b96", + "revision": "b0daf46de5634b9fad008ade", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81274,12 +92656,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "e9d217483d1d460ba2bc8328", + "revision": "5d474d7f362a46788b685d25", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81294,22 +92676,37 @@ "total_amount": 200, "history_id": 1683947136546, "id": 1683947136546, - "date_created": "2023-05-13T03:05:36.546Z", - "date_last_updated": "2023-05-13T03:09:15.818Z", - "date_of_expiration": "2023-06-12T03:05:36.546Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-13T03:09:15.818Z", - "money_release_date": "2023-05-13T03:09:15.818Z", + "date_created": { + "type": 6, + "value": 1683947136546 + }, + "date_last_updated": { + "type": 6, + "value": 1683947355818 + }, + "date_of_expiration": { + "type": 6, + "value": 1686539136546 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683947355818 + }, + "money_release_date": { + "type": 6, + "value": 1683947355818 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "08dd8e30a09f40b6bff8ed13", + "revision": "7491feeaadfc467482f689fa", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81317,10 +92714,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "cf16b8a8a32744e4957c358b", + "revision": "3a5265f926ff44eb84e544b6", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81340,12 +92737,12 @@ "installment_amount": 360, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "21f1e8c9f4954570aa542c0e", + "revision": "771015a6edfe4a1bbe1c2c84", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81362,9 +92759,18 @@ "total_amount": 360, "id": 1683947563493, "contract_id": "1679262602609", - "date_created": "2023-05-13T03:12:43.493Z", - "date_last_updated": "2023-05-13T03:12:43.493Z", - "date_of_expiration": "2023-05-13T03:12:43.493Z", + "date_created": { + "type": 6, + "value": 1683947563493 + }, + "date_last_updated": { + "type": 6, + "value": 1683947563493 + }, + "date_of_expiration": { + "type": 6, + "value": 1683947563493 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -81372,10 +92778,10 @@ "currency_id": "BRL", "history_id": 1683947563493 }, - "revision": "a41d09da79b84e4f839ba102", + "revision": "90399d740d7f405398a6ee86", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81383,10 +92789,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 3 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "e51a4077e4e1413db3b94c18", + "revision": "59a6d06ad5f34e6287bc1db4", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81394,12 +92800,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "51ea0baf9b424f2f9f306f63", + "revision": "a89e525cb6b444b8b64d0e74", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81414,22 +92820,37 @@ "total_amount": 66.32, "history_id": 1683948027523, "id": 1683948027523, - "date_created": "2023-05-13T03:20:27.523Z", - "date_last_updated": "2023-05-13T03:21:20.092Z", - "date_of_expiration": "2023-06-12T03:20:27.523Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-13T03:21:20.092Z", - "money_release_date": "2023-05-13T03:21:20.092Z", + "date_created": { + "type": 6, + "value": 1683948027523 + }, + "date_last_updated": { + "type": 6, + "value": 1683948080092 + }, + "date_of_expiration": { + "type": 6, + "value": 1686540027523 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1683948080092 + }, + "money_release_date": { + "type": 6, + "value": 1683948080092 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "b02ca2c088fc46ef9b3801cb", + "revision": "f1b8cfdb47124576b1759c11", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81437,10 +92858,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 66,32 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "93745c4063464c0db529104d", + "revision": "1734afd4535c4c94be23b147", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820571, + "modified": 1701465820571 } }, { @@ -81458,12 +92879,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "1974f4f507244f66b3e17726", + "revision": "1bbe3d900297472a9fbbda1b", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81479,9 +92900,18 @@ "original_amount": 574594, "total_amount": 574594, "id": 1684018958560, - "date_created": "2023-05-13T23:02:38.560Z", - "date_last_updated": "2023-05-13T23:02:38.560Z", - "date_of_expiration": "2023-05-13T23:02:38.560Z", + "date_created": { + "type": 6, + "value": 1684018958560 + }, + "date_last_updated": { + "type": 6, + "value": 1684018958560 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018958560 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -81490,10 +92920,10 @@ "history_id": 1684018958560, "description": "Compra de 574.594,00 IVIP por 106,32 BRL" }, - "revision": "5e159bf2f534449e8dbf63c2", + "revision": "e273a9b23b274f6381673552", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81501,12 +92931,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "fbaaad9efaf642b999803a06", + "revision": "76deab627a8946799bb11144", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81521,22 +92951,37 @@ "total_amount": 130, "history_id": 1684158010439, "id": 1684158010439, - "date_created": "2023-05-15T13:40:10.439Z", - "date_last_updated": "2023-05-15T15:13:10.445Z", - "date_of_expiration": "2023-06-14T13:40:10.439Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-15T15:13:10.445Z", - "money_release_date": "2023-05-15T15:13:10.445Z", + "date_created": { + "type": 6, + "value": 1684158010439 + }, + "date_last_updated": { + "type": 6, + "value": 1684163590445 + }, + "date_of_expiration": { + "type": 6, + "value": 1686750010439 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684163590445 + }, + "money_release_date": { + "type": 6, + "value": 1684163590445 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "238fccc4811544a89812789d", + "revision": "fddadbc99ef44a9a9f3cf34c", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81544,10 +92989,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 130,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "5c4c4ca30c924ac7a238bf2b", + "revision": "7bc3ab0440704564b2657a7e", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81555,12 +93000,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "5f4d4c810ff74603a0acd4c9", + "revision": "6693b8445c0840e8b30354ea", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81575,22 +93020,37 @@ "total_amount": 55, "history_id": 1684458859068, "id": 1684458859068, - "date_created": "2023-05-19T01:14:19.068Z", - "date_last_updated": "2023-05-19T01:25:57.882Z", - "date_of_expiration": "2023-06-18T01:14:19.068Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-19T01:25:57.882Z", - "money_release_date": "2023-05-19T01:25:57.882Z", + "date_created": { + "type": 6, + "value": 1684458859068 + }, + "date_last_updated": { + "type": 6, + "value": 1684459557882 + }, + "date_of_expiration": { + "type": 6, + "value": 1687050859068 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1684459557882 + }, + "money_release_date": { + "type": 6, + "value": 1684459557882 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "a15b1759403341b2a63be274", + "revision": "6bf542cb1ef243fab6a2fac7", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81598,10 +93058,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 55,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "33cb8bd0f4a54e11a5cdd0e3", + "revision": "4ce71af4d1db4583a5fd5e3a", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81619,12 +93079,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "848c3fb9d46744bb9c873017", + "revision": "f08f143ed8a94ba78be957ba", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81640,9 +93100,18 @@ "original_amount": 901085, "total_amount": 901085, "id": 1684624396163, - "date_created": "2023-05-20T23:13:16.163Z", - "date_last_updated": "2023-05-20T23:13:16.163Z", - "date_of_expiration": "2023-05-20T23:13:16.163Z", + "date_created": { + "type": 6, + "value": 1684624396163 + }, + "date_last_updated": { + "type": 6, + "value": 1684624396163 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624396163 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -81651,10 +93120,10 @@ "history_id": 1684624396163, "description": "Compra de 901.085,00 IVIP por 185,00 BRL" }, - "revision": "9dcfa4281df84f85a74b1553", + "revision": "7a0cf924062a4bf784441bdb", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81672,12 +93141,12 @@ "installment_amount": 5000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "efc211dc135d41b29f925c65", + "revision": "5a8e948bb5ac4c7dabe43ed6", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81692,9 +93161,18 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1685667418933, - "date_created": "2023-06-02T00:56:58.933Z", - "date_last_updated": "2023-06-02T00:56:58.933Z", - "date_of_expiration": "2025-06-02T00:56:58.933Z", + "date_created": { + "type": 6, + "value": 1685667418933 + }, + "date_last_updated": { + "type": 6, + "value": 1685667418933 + }, + "date_of_expiration": { + "type": 6, + "value": 1748825818933 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -81703,10 +93181,10 @@ "history_id": 1685667418933, "wasDebited": true }, - "revision": "51fd9fce934347649dfdeb6b", + "revision": "6fe63f865eeb4c87aac9f0ab", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81714,10 +93192,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "1be473286a6144689f92bf5f", + "revision": "8f80f18a9252438499a76dc6", "revision_nr": 1, - "created": 1701463509599, - "modified": 1701463509599 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81735,12 +93213,12 @@ "installment_amount": 4000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "43680dcf42794ec3aebe9e2f", + "revision": "1e1c2d056e7a44b29df3cdc4", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81755,9 +93233,18 @@ "original_amount": 4000000, "total_amount": 4000000, "id": 1685668065254, - "date_created": "2023-06-02T01:07:45.254Z", - "date_last_updated": "2023-06-02T01:07:45.254Z", - "date_of_expiration": "2024-06-02T01:07:45.254Z", + "date_created": { + "type": 6, + "value": 1685668065254 + }, + "date_last_updated": { + "type": 6, + "value": 1685668065254 + }, + "date_of_expiration": { + "type": 6, + "value": 1717290465254 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -81765,10 +93252,10 @@ "currency_id": "IVIP", "history_id": 1685668065254 }, - "revision": "ce1db390589347d788201856", + "revision": "9f9aef07bb934ead8ac9fa68", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81776,10 +93263,10 @@ "content": { "type": "STRING", "value": "Investimento de 4.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "e81bdfdcfac54dc18269eef1", + "revision": "1db35cafc03c42488c9f7ba7", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81797,12 +93284,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "813fb08210914d968d1ae981", + "revision": "75f1ab423bf349ecade53918", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81817,9 +93304,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685668086801, - "date_created": "2023-06-02T01:08:06.801Z", - "date_last_updated": "2023-06-02T01:08:06.801Z", - "date_of_expiration": "2023-07-02T01:08:06.801Z", + "date_created": { + "type": 6, + "value": 1685668086801 + }, + "date_last_updated": { + "type": 6, + "value": 1685668086801 + }, + "date_of_expiration": { + "type": 6, + "value": 1688260086801 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -81827,10 +93323,10 @@ "currency_id": "IVIP", "history_id": 1685668086801 }, - "revision": "132aa98ec8444e5b82114a1d", + "revision": "c09ba9ecd91a4bde88021bc3", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81838,10 +93334,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "b99daa1aef174a69884f5c9d", + "revision": "de80dc74462640a0a429f406", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81859,12 +93355,12 @@ "installment_amount": 5000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "cde95d0925e54010bc92461a", + "revision": "6b24ee51b33b40d58e0676bd", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81879,9 +93375,18 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1685668239552, - "date_created": "2023-06-02T01:10:39.552Z", - "date_last_updated": "2023-06-02T01:10:39.552Z", - "date_of_expiration": "2023-12-02T01:10:39.552Z", + "date_created": { + "type": 6, + "value": 1685668239552 + }, + "date_last_updated": { + "type": 6, + "value": 1685668239552 + }, + "date_of_expiration": { + "type": 6, + "value": 1701479439552 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -81889,10 +93394,10 @@ "currency_id": "IVIP", "history_id": 1685668239552 }, - "revision": "fb19f03d42714e59963afae2", + "revision": "56049f7503e045159a95232e", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81900,10 +93405,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", - "revision": "fceec261c68b4d6f9661b52a", + "revision": "f312fa574f9a499182c2dd1b", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81911,12 +93416,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "696262307b9e4243979ddde8", + "revision": "c4c8b50306d84bb7b963005d", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81931,22 +93436,37 @@ "total_amount": 400, "history_id": 1686858477834, "id": 1686858477834, - "date_created": "2023-06-15T19:47:57.834Z", - "date_last_updated": "2023-06-15T20:00:25.618Z", - "date_of_expiration": "2023-07-15T19:47:57.834Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-06-15T20:00:25.618Z", - "money_release_date": "2023-06-15T20:00:25.618Z", + "date_created": { + "type": 6, + "value": 1686858477834 + }, + "date_last_updated": { + "type": 6, + "value": 1686859225618 + }, + "date_of_expiration": { + "type": 6, + "value": 1689450477834 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1686859225618 + }, + "money_release_date": { + "type": 6, + "value": 1686859225618 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "c1314786ff264b7aa9f156a0", + "revision": "940250bea26e427ba1016bc4", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81954,10 +93474,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 400,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "dd7673ae936d42999a9bd6c0", + "revision": "f4ae3b5f9bd5404b89b1625f", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81977,12 +93497,12 @@ "installment_amount": 360, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "7d0aacb61b6f41b7be83323d", + "revision": "b70cc5a974b542b6985ea49c", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -81999,9 +93519,18 @@ "total_amount": 360, "id": 1686859298764, "contract_id": "1679262602609", - "date_created": "2023-06-15T20:01:38.764Z", - "date_last_updated": "2023-06-15T20:01:38.764Z", - "date_of_expiration": "2023-06-15T20:01:38.764Z", + "date_created": { + "type": 6, + "value": 1686859298764 + }, + "date_last_updated": { + "type": 6, + "value": 1686859298764 + }, + "date_of_expiration": { + "type": 6, + "value": 1686859298764 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -82009,10 +93538,10 @@ "currency_id": "BRL", "history_id": 1686859298764 }, - "revision": "b0689f01a16c46ac9adb4506", + "revision": "b726b1782c664c18a82e8b4d", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82020,10 +93549,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 2 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "ac4311e6e9034a1ea8af0056", + "revision": "9aaa9246fc6144c58dcca198", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82041,12 +93570,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "f33e14da866244c39a0b0549", + "revision": "550ef6d6b32a4d1db4372ff8", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82062,9 +93591,18 @@ "original_amount": 256510, "total_amount": 256510, "id": 1686859421606, - "date_created": "2023-06-15T20:03:41.606Z", - "date_last_updated": "2023-06-15T20:03:41.606Z", - "date_of_expiration": "2023-06-15T20:03:41.606Z", + "date_created": { + "type": 6, + "value": 1686859421606 + }, + "date_last_updated": { + "type": 6, + "value": 1686859421606 + }, + "date_of_expiration": { + "type": 6, + "value": 1686859421606 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -82073,10 +93611,10 @@ "history_id": 1686859421606, "description": "Compra de 256.510,00 IVIP por 40,00 BRL" }, - "revision": "798245b58e9e4d6180507505", + "revision": "bf10690f5bd24470bbebf2f0", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82094,12 +93632,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b12376381ee84cf8a247ae3f", + "revision": "9c50b186b51641bba9ac3493", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82114,9 +93652,18 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1688400452024, - "date_created": "2023-07-03T16:07:32.024Z", - "date_last_updated": "2023-07-03T16:07:32.024Z", - "date_of_expiration": "2023-07-03T16:07:32.024Z", + "date_created": { + "type": 6, + "value": 1688400452024 + }, + "date_last_updated": { + "type": 6, + "value": 1688400452024 + }, + "date_of_expiration": { + "type": 6, + "value": 1688400452024 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -82125,10 +93672,10 @@ "history_id": 1688400452024, "wasDebited": true }, - "revision": "65b63a10e02d4d888f5cdead", + "revision": "b808af02b5f04629ac28560e", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82136,10 +93683,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "a976228b5d364abd9f7644be", + "revision": "9cec6e362bb04f23bddea1a2", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82157,12 +93704,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "e4e50e85d6b543aa88e87765", + "revision": "2730f793d7444fb59215256c", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82177,9 +93724,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1688403103597, - "date_created": "2023-07-03T16:51:43.597Z", - "date_last_updated": "2023-07-03T16:51:43.597Z", - "date_of_expiration": "2023-08-03T16:51:43.597Z", + "date_created": { + "type": 6, + "value": 1688403103597 + }, + "date_last_updated": { + "type": 6, + "value": 1688403103597 + }, + "date_of_expiration": { + "type": 6, + "value": 1691081503597 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -82187,10 +93743,10 @@ "currency_id": "IVIP", "history_id": 1688403103597 }, - "revision": "61ad056f15194d818458329a", + "revision": "0d7ba8d3c0a44bbca430c2f3", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82198,10 +93754,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "e03f3e950ba04b2e87d9d586", + "revision": "dddd5f256cf843459095802f", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82209,12 +93765,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "7568fda929154a27a77cadf8", + "revision": "b0a93c1e502a45d5ac1387ae", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82229,18 +93785,27 @@ "total_amount": 8000000, "history_id": 1688735047266, "id": 1688735047266, - "date_created": "2023-07-07T13:04:07.266Z", - "date_last_updated": "2023-07-07T13:04:07.266Z", - "date_of_expiration": "2023-07-07T13:04:07.266Z", + "date_created": { + "type": 6, + "value": 1688735047266 + }, + "date_last_updated": { + "type": 6, + "value": 1688735047266 + }, + "date_of_expiration": { + "type": 6, + "value": 1688735047266 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "3f925a7ca6704c118d86ca97", + "revision": "c1c193387e284bdb8bb92996", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82248,10 +93813,10 @@ "content": { "type": "STRING", "value": "Saque de 8.000.000,00 IVIP para a carteira 0x3e35E81481645fafD6C410b1833719A8E633ae35", - "revision": "2fe7e75a36e0433790f944ec", + "revision": "b7c50cafb6a44357929f0d80", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82259,12 +93824,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "d2792227aca842c7a1c06bcb", + "revision": "2249d44456954206af139f96", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82279,18 +93844,27 @@ "total_amount": 11000000, "history_id": 1689292258052, "id": 1689292258052, - "date_created": "2023-07-13T23:50:58.052Z", - "date_last_updated": "2023-07-13T23:50:58.052Z", - "date_of_expiration": "2023-07-13T23:50:58.052Z", + "date_created": { + "type": 6, + "value": 1689292258052 + }, + "date_last_updated": { + "type": 6, + "value": 1689292258052 + }, + "date_of_expiration": { + "type": 6, + "value": 1689292258052 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "faee4de5340245ef8ad54fd6", + "revision": "daf1515c829145d8928a8964", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82298,10 +93872,10 @@ "content": { "type": "STRING", "value": "Saque de 11.000.000,00 IVIP para a carteira 0x3e35E81481645fafD6C410b1833719A8E633ae35", - "revision": "04d7fd2ad7004e8ba7a40d9f", + "revision": "be9353492b9543ed993d5a6a", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82319,12 +93893,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "5b27c2777b3b46f8890a3e73", + "revision": "ce7bae747ab54dc2a65a8d3c", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82339,9 +93913,18 @@ "original_amount": 8160000, "total_amount": 8160000, "id": 1691081627683, - "date_created": "2023-08-03T16:53:47.683Z", - "date_last_updated": "2023-08-03T16:53:47.683Z", - "date_of_expiration": "2023-08-03T16:53:47.683Z", + "date_created": { + "type": 6, + "value": 1691081627683 + }, + "date_last_updated": { + "type": 6, + "value": 1691081627683 + }, + "date_of_expiration": { + "type": 6, + "value": 1691081627683 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -82350,10 +93933,10 @@ "history_id": 1691081627683, "wasDebited": true }, - "revision": "410967e0a53544e8927c44d0", + "revision": "4cc329d667e9449d9b2ffd95", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82361,10 +93944,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "59f04da11b4d498088002150", + "revision": "e2d346377f7d4b5fb7f65e20", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82380,12 +93963,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "de7f3be4aa0e49dba072ed97", + "revision": "8114a4571c0e470bb4442eee", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82393,10 +93976,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1691082859805", - "revision": "671f8a1e38a248bd81e80228", + "revision": "f963a0effc194a31bf459611", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82411,9 +93994,18 @@ "total_amount": 8000000, "id": 1691082859805, "history_id": 1691082859805, - "date_created": "2023-08-03T17:14:19.805Z", - "date_last_updated": "2023-08-03T17:14:19.805Z", - "date_of_expiration": "2023-09-03T17:14:19.804Z", + "date_created": { + "type": 6, + "value": 1691082859805 + }, + "date_last_updated": { + "type": 6, + "value": 1691082859805 + }, + "date_of_expiration": { + "type": 6, + "value": 1693761259804 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -82421,10 +94013,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c7258a65bb594fef88f184bd", + "revision": "416af34b784640e7a864493f", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82432,10 +94024,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "644be2a910844c10b5fbc75f", + "revision": "6575b5710c0b405c92f2568a", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82444,12 +94036,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-07T22:34:09.576Z" + ".val": { + "type": 6, + "value": 1694126049576 + } }, - "revision": "f864b5bf12a04b5389e7853f", + "revision": "4743077bc07949829af75415", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82465,12 +94060,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "de9f539fa28c41bcb782d428", + "revision": "ac907f2d832e4472bab13cdc", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82478,10 +94073,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1691534049577", - "revision": "ba5af2f3638c497faa75c60f", + "revision": "d5403002937241c4a2d2e148", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82496,23 +94091,35 @@ "total_amount": 360, "id": 1691534049577, "history_id": 1691534049577, - "date_created": "2023-08-08T22:34:09.577Z", - "date_last_updated": "2023-08-08T23:21:48.177Z", + "date_created": { + "type": 6, + "value": 1691534049577 + }, + "date_last_updated": { + "type": 6, + "value": 1691536908177 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-08T23:21:48.177Z", - "money_release_date": "2023-08-08T23:21:48.177Z", + "date_approved": { + "type": 6, + "value": 1691536908177 + }, + "money_release_date": { + "type": 6, + "value": 1691536908177 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "2de12f80affa45408adaf9cc", + "revision": "866c7f3e0a4c4362a6244c69", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82520,10 +94127,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 360,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "5f9a060725c34653b5dc2949", + "revision": "2212aabc151b43868d9b8e87", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820572, + "modified": 1701465820572 } }, { @@ -82539,12 +94146,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "596be338b91448feaeb6e136", + "revision": "99fd790890e54c63af6ade15", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82552,10 +94159,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1693761380582", - "revision": "c5832f8544fe4984bfecf22a", + "revision": "0d2d3f4bd74042e08d5ff985", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82570,9 +94177,18 @@ "total_amount": 8160000, "id": "1693761380582", "history_id": "1693761380582", - "date_created": "2023-09-03T17:16:20.582Z", - "date_last_updated": "2023-09-03T17:16:20.582Z", - "date_of_expiration": "2023-09-03T17:16:20.582Z", + "date_created": { + "type": 6, + "value": 1693761380582 + }, + "date_last_updated": { + "type": 6, + "value": 1693761380582 + }, + "date_of_expiration": { + "type": 6, + "value": 1693761380582 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -82580,10 +94196,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "4ddb5789c7654181a5b4f1e9", + "revision": "7c1c1493bc02434babb1e56f", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82591,10 +94207,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "f59da14fa90f44dfb175ac5d", + "revision": "9f7f5d9afb7e4432823d6d4d", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82610,12 +94226,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "a73b81f8290447879dbe73ab", + "revision": "0a2081fd98b442c188d88a77", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82623,10 +94239,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1693780032051", - "revision": "262314a5e86345c9bc048c9b", + "revision": "42659c36611e47b7abe3c20e", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82641,9 +94257,18 @@ "total_amount": 8000000, "id": "1693780032051", "history_id": "1693780032051", - "date_created": "2023-09-03T22:27:12.051Z", - "date_last_updated": "2023-09-03T22:27:12.051Z", - "date_of_expiration": "2023-10-03T22:27:12.050Z", + "date_created": { + "type": 6, + "value": 1693780032051 + }, + "date_last_updated": { + "type": 6, + "value": 1693780032051 + }, + "date_of_expiration": { + "type": 6, + "value": 1696372032050 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -82651,10 +94276,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "97373e81045e4e058abbd07a", + "revision": "a37d80c055734c958098fb25", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82662,10 +94287,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "f0c391fa7cf944bdbefe1e61", + "revision": "7a31ebd0892e461bbb7da20f", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82674,12 +94299,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-21T18:47:30.195Z" + ".val": { + "type": 6, + "value": 1697914050195 + } }, - "revision": "8d5f66506737474782e78a0c", + "revision": "4275b5809ef243dd909b2141", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82695,12 +94323,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "8704a3b700dc4faa8a8fcf6e", + "revision": "974701e38de04edda0aef06d", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82708,10 +94336,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695322050196", - "revision": "7f463737a71948c8beb3f139", + "revision": "b4bac040bec44700ae104719", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82726,23 +94354,35 @@ "total_amount": 720, "id": "1695322050196", "history_id": "1695322050196", - "date_created": "2023-09-21T18:47:30.196Z", - "date_last_updated": "2023-09-22T18:08:25.258Z", + "date_created": { + "type": 6, + "value": 1695322050196 + }, + "date_last_updated": { + "type": 6, + "value": 1695406105258 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-09-22T18:08:25.258Z", - "money_release_date": "2023-09-22T18:08:25.258Z", + "date_approved": { + "type": 6, + "value": 1695406105258 + }, + "money_release_date": { + "type": 6, + "value": 1695406105258 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "43399503916f4c969c9dc1f3", + "revision": "8058458be2c9442190c85bdc", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82750,10 +94390,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 720,00 BRL para a carteira iVip 1257.9763.0999.3744-60", - "revision": "12df3a2b17e241bb82585f18", + "revision": "cc5eac30f30e4a07a1dd7e3a", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82769,14 +94409,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 4, "installments_payable": 6 }, - "revision": "5b2e0a602c214ac7a9fbc4db", + "revision": "b200e6989c2643feaf3077de", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82784,10 +94424,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451385", - "revision": "10c35066ce374d1a9d67088a", + "revision": "d78c88a049264eabb1e0a490", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82802,9 +94442,18 @@ "total_amount": 360, "id": "1695423451385", "history_id": "1695423451385", - "date_created": "2023-09-22T22:57:31.385Z", - "date_last_updated": "2023-09-22T22:57:31.385Z", - "date_of_expiration": "2023-09-22T22:57:31.385Z", + "date_created": { + "type": 6, + "value": 1695423451385 + }, + "date_last_updated": { + "type": 6, + "value": 1695423451385 + }, + "date_of_expiration": { + "type": 6, + "value": 1695423451385 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -82812,10 +94461,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "694059ac60e646bf8352f1f7", + "revision": "b3b7c9354c8e4b55853a7315", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82823,10 +94472,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 4 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "6c0fa57c2ff442cb9b964d0b", + "revision": "06792824587245c9912a321a", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82842,14 +94491,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 5, "installments_payable": 5 }, - "revision": "6a02faac05744d77bf73e490", + "revision": "5d7e7e1df7f14a2aa4d08490", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82857,10 +94506,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451505", - "revision": "f5047a6077a941c9b12f66e3", + "revision": "d4ab2a828d1e4959afe08bf3", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82875,9 +94524,18 @@ "total_amount": 360, "id": "1695423451505", "history_id": "1695423451505", - "date_created": "2023-09-22T22:57:31.505Z", - "date_last_updated": "2023-09-22T22:57:31.505Z", - "date_of_expiration": "2023-09-22T22:57:31.505Z", + "date_created": { + "type": 6, + "value": 1695423451505 + }, + "date_last_updated": { + "type": 6, + "value": 1695423451505 + }, + "date_of_expiration": { + "type": 6, + "value": 1695423451505 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -82885,10 +94543,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "44bda5ee854145cb925378ff", + "revision": "1e4ba5361430407ba6fc8d66", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82896,10 +94554,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 5 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "8cd8eba348af4b03a9c1a60b", + "revision": "43839161b14d42f9aa261016", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82915,14 +94573,14 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [], + "costs": {}, "installment_paid": 6, "installments_payable": 4 }, - "revision": "1a15df00baf14206a0fcafa3", + "revision": "40d21b093f884b0090b63084", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82930,10 +94588,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451671", - "revision": "9e6f14fe54e44dbca712e4bf", + "revision": "cd6448eefc7a46feac22f052", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82948,9 +94606,18 @@ "total_amount": 360, "id": "1695423451671", "history_id": "1695423451671", - "date_created": "2023-09-22T22:57:31.671Z", - "date_last_updated": "2023-09-22T22:57:31.671Z", - "date_of_expiration": "2023-09-22T22:57:31.671Z", + "date_created": { + "type": 6, + "value": 1695423451671 + }, + "date_last_updated": { + "type": 6, + "value": 1695423451671 + }, + "date_of_expiration": { + "type": 6, + "value": 1695423451671 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -82958,10 +94625,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "1c15c8d7a75945c8b3532572", + "revision": "acae5cecf51845cfb6e16587", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82969,10 +94636,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 6 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "d98be5fc9d994da4b718e595", + "revision": "42d929989f72464c84fb6fd9", "revision_nr": 1, - "created": 1701463509600, - "modified": 1701463509600 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -82988,12 +94655,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "05e7848870914db89abf7c50", + "revision": "09e501d832454a15bd1efbd4", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83001,10 +94668,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380984974", - "revision": "1bc242ecf3594b3d822f8dec", + "revision": "38cc83b0efd641b79fe2389b", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83020,9 +94687,18 @@ "total_amount": 8160000, "id": "1696380984974", "history_id": "1696380984974", - "date_created": "2023-10-04T00:56:24.974Z", - "date_last_updated": "2023-10-04T00:56:24.974Z", - "date_of_expiration": "2023-10-04T00:56:24.974Z", + "date_created": { + "type": 6, + "value": 1696380984974 + }, + "date_last_updated": { + "type": 6, + "value": 1696380984974 + }, + "date_of_expiration": { + "type": 6, + "value": 1696380984974 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -83030,10 +94706,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "f343e30b0ad94249875c40b5", + "revision": "c92567f1784249d39fa4f1b7", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83041,10 +94717,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "45d206196fa94569a9cc8aac", + "revision": "3dabe898c7104cf4866da46d", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83060,12 +94736,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "f26d7ee8fcf94892bdcd2915", + "revision": "114e0c5a2ff34872920bd274", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83073,10 +94749,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380984991", - "revision": "e7e399942e9e46c8950438f4", + "revision": "471429bb5622426d823d9144", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83092,9 +94768,18 @@ "total_amount": 8160000, "id": "1696380984991", "history_id": "1696380984991", - "date_created": "2023-10-04T00:56:24.991Z", - "date_last_updated": "2023-10-04T00:56:24.991Z", - "date_of_expiration": "2023-10-04T00:56:24.991Z", + "date_created": { + "type": 6, + "value": 1696380984991 + }, + "date_last_updated": { + "type": 6, + "value": 1696380984991 + }, + "date_of_expiration": { + "type": 6, + "value": 1696380984991 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -83102,10 +94787,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "b78383ce79824f5c96daaadd", + "revision": "9e4b3729f87147b7844da185", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83113,10 +94798,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "d569182ab20442a7b965108e", + "revision": "e9a00bde509b4abfac397d12", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83132,12 +94817,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "26a2959f2b1b44d0acb9ba0f", + "revision": "3a892af626a84e66b3d46fe6", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83145,10 +94830,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380985024", - "revision": "74fed235ce8748d789071c0b", + "revision": "e5b3d2ae209a4efb8e025a4b", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83164,9 +94849,18 @@ "total_amount": 8160000, "id": "1696380985024", "history_id": "1696380985024", - "date_created": "2023-10-04T00:56:25.024Z", - "date_last_updated": "2023-10-04T00:56:25.024Z", - "date_of_expiration": "2023-10-04T00:56:25.024Z", + "date_created": { + "type": 6, + "value": 1696380985024 + }, + "date_last_updated": { + "type": 6, + "value": 1696380985024 + }, + "date_of_expiration": { + "type": 6, + "value": 1696380985024 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -83174,10 +94868,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "d76f93fc7efb4812ae600fd0", + "revision": "d71928434b9c4b67b9cd32bf", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83185,10 +94879,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "c00124ee023f4573bf60dc21", + "revision": "fe6c5b5bece64d9bb6ac99b2", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83204,12 +94898,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "362a09b3dfa04717ad6a9d63", + "revision": "1be05f4e9d29485e944d472b", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83217,10 +94911,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380985244", - "revision": "558328f9ba4f45768e16654a", + "revision": "8411e8983a614e9a8ca81d16", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83236,9 +94930,18 @@ "total_amount": 8160000, "id": "1696380985244", "history_id": "1696380985244", - "date_created": "2023-10-04T00:56:25.244Z", - "date_last_updated": "2023-10-04T00:56:25.244Z", - "date_of_expiration": "2023-10-04T00:56:25.244Z", + "date_created": { + "type": 6, + "value": 1696380985244 + }, + "date_last_updated": { + "type": 6, + "value": 1696380985244 + }, + "date_of_expiration": { + "type": 6, + "value": 1696380985244 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -83246,10 +94949,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "53c4782681a34635810967b4", + "revision": "4dcc373480294f519b4f02ba", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83257,10 +94960,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "71bb92377fc44ad2a01ded9c", + "revision": "de027a970f79459dadc22ea4", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83276,12 +94979,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "cc5b8cc16cfb47328d987e21", + "revision": "34def980ab6e48e482051a67", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83289,10 +94992,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384232144", - "revision": "e465526809644d219d207fea", + "revision": "3840e971542d405ca4baaa20", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83308,9 +95011,18 @@ "total_amount": 8160000, "id": "1696384232144", "history_id": "1696384232144", - "date_created": "2023-10-04T01:50:32.144Z", - "date_last_updated": "2023-10-04T01:50:32.144Z", - "date_of_expiration": "2023-10-04T01:50:32.144Z", + "date_created": { + "type": 6, + "value": 1696384232144 + }, + "date_last_updated": { + "type": 6, + "value": 1696384232144 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384232144 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -83318,10 +95030,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "fe84b08b432f4e81bb86ae75", + "revision": "a7d4391e2c6c4568b928ec52", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83329,10 +95041,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "89b288e304984c108dc40f6b", + "revision": "3cc35c11828c4892b7168383", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83348,12 +95060,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "88f8da8030b0433e9f419d11", + "revision": "d806f9cc5dfd44a8b787a89a", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83361,10 +95073,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384243583", - "revision": "9d8b957462814b1b8cbab23f", + "revision": "d1b8e896f20a47bba0c97d5d", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83380,9 +95092,18 @@ "total_amount": 8160000, "id": "1696384243583", "history_id": "1696384243583", - "date_created": "2023-10-04T01:50:43.583Z", - "date_last_updated": "2023-10-04T01:50:43.583Z", - "date_of_expiration": "2023-10-04T01:50:43.583Z", + "date_created": { + "type": 6, + "value": 1696384243583 + }, + "date_last_updated": { + "type": 6, + "value": 1696384243583 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384243583 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -83390,10 +95111,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "8486bf4c6ce4496d842f26fa", + "revision": "4698bec96a364e4b9a8698b1", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83401,10 +95122,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "9535053a30204463a68f3953", + "revision": "03fdbf4a770046039d4b0ea6", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83420,12 +95141,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "fb72c67d0bc64ac4a7eed298", + "revision": "108a87c73939402cb398be26", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83433,10 +95154,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384243588", - "revision": "ca9c70e97d1e4e4f91dc6513", + "revision": "d770bdd3d4724040a685b81e", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83452,9 +95173,18 @@ "total_amount": 8160000, "id": "1696384243588", "history_id": "1696384243588", - "date_created": "2023-10-04T01:50:43.588Z", - "date_last_updated": "2023-10-04T01:50:43.588Z", - "date_of_expiration": "2023-10-04T01:50:43.588Z", + "date_created": { + "type": 6, + "value": 1696384243588 + }, + "date_last_updated": { + "type": 6, + "value": 1696384243588 + }, + "date_of_expiration": { + "type": 6, + "value": 1696384243588 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "rejected", @@ -83462,10 +95192,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "bc46cf1830274bf89b6aedd4", + "revision": "8231e20520a64a21bf5307db", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83473,10 +95203,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "d23b439375b64d41bac63b9c", + "revision": "c99d1b0439be423b83eed64c", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83492,12 +95222,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "f99dfd7892bb48cd932db3df", + "revision": "07948c3fb77848c69f9d3bd7", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83505,10 +95235,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696406601868", - "revision": "6abda445353a4989a0b84510", + "revision": "6122fedb558c4ecd9319c654", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83524,9 +95254,18 @@ "total_amount": 8000000, "id": "1696406601868", "history_id": "1696406601868", - "date_created": "2023-10-04T08:03:21.868Z", - "date_last_updated": "2023-10-04T08:03:21.868Z", - "date_of_expiration": "2023-11-04T08:03:21.847Z", + "date_created": { + "type": 6, + "value": 1696406601868 + }, + "date_last_updated": { + "type": 6, + "value": 1696406601868 + }, + "date_of_expiration": { + "type": 6, + "value": 1699085001847 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -83534,10 +95273,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "fd2f5d77d6f1476cb1902d55", + "revision": "c4b9be851e1747fa86c66a0b", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83545,10 +95284,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "2a60d4aaeedb49b49dc5f24d", + "revision": "b6ab7390848e47d4abfb7a02", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83556,10 +95295,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3c86e479a669479c96f4d0a5", + "revision": "a507e4c08f2c4f6c80d6d14a", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83571,10 +95310,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "b7fbd75913234ed892ae793f", + "revision": "2570374bde664563bba0e46c", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83588,15 +95327,18 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid" }, - "revision": "2250fe0e85694a6db8da677b", + "revision": "52a78a826a6c4b25bb6dc528", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83604,10 +95346,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "6c208d2cab9a40dfa5d21122", + "revision": "06b9dae0e46e488698f33f5c", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83615,10 +95357,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "a07b274c752d4f6b84e4e877", + "revision": "331dcfe9d622470e8af48fd9", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83626,10 +95368,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1b3a9a79d60d45be967d07e0", + "revision": "d0e2397dbef54712a5a37c27", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83641,10 +95383,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "9bdbcf85918a46569b9f8ba8", + "revision": "eee4a9c06064413b9fcac324", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83658,15 +95400,18 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid" }, - "revision": "0377f8bb9c5742da94337101", + "revision": "928e2050ef1b45ffbe62f24b", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83674,10 +95419,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "0e4104006f484bb9acc96159", + "revision": "19273047f41a4550babff869", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83685,10 +95430,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "70b20d1d1fa34b28878c7813", + "revision": "3da090ccfdf04f7f8f6431ca", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83696,10 +95441,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8f07b9bd28ae4addabf3dab5", + "revision": "993b6ba92b614353a42040c5", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83711,10 +95456,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "65bd287ba5974e6aa73050ae", + "revision": "8bdbbf9b9322430f90b380ef", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83728,15 +95473,18 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid" }, - "revision": "3f7e12b021eb41e49b487d0a", + "revision": "358a4c003f0a47c780bd8004", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83744,10 +95492,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "403f631fff0244fbb2595dcb", + "revision": "76f7125cf31049a585361236", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83755,10 +95503,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "1d1b242cc5c340f88b22633d", + "revision": "cdd13b4148cf45ad8d6e2369", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83766,10 +95514,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5fa52dd23a7340248940b50e", + "revision": "7259689f502c46dead175bc8", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83781,10 +95529,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "9de5fdb5ac2147a79bed3533", + "revision": "929e70a1061342e8a576ae26", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83798,16 +95546,22 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-22T22:57:31.406Z" + "date_last_updated": { + "type": 6, + "value": 1695423451406 + } }, - "revision": "ff2d2b7f692a441185188586", + "revision": "679d0cfcbae746d1ba130d6f", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83815,10 +95569,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "d6b4e68946fe4ae48f7c6098", + "revision": "21d12f3bd2d1418e951cdf71", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83826,10 +95580,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "febd9b9e07ec451b8cd26182", + "revision": "dfef0708f6ea405aa134878d", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83837,10 +95591,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e76d92309010469a807d8e58", + "revision": "5733f2c3daa3469e9eef033c", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83852,10 +95606,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "490098bffb9445aca789b8c2", + "revision": "03b301ae47e0403c96549e66", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83869,16 +95623,22 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-22T22:57:31.526Z" + "date_last_updated": { + "type": 6, + "value": 1695423451526 + } }, - "revision": "0391cb42b8c74556be6d56ff", + "revision": "56327c6f598c4daea16cb37f", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -83886,10 +95646,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "891b55832aae40e39326ee21", + "revision": "a5611e544a664683a03b0579", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83897,10 +95657,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "71e46835dee44beb8652ae59", + "revision": "2b0f2aab4ded4917bfd3a344", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820573, + "modified": 1701465820573 } }, { @@ -83908,10 +95668,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c19594c9c15f42b3bd7da592", + "revision": "8abd37eb013f434f99431106", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -83923,10 +95683,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "7d38ab3d07f14a0190139005", + "revision": "033928c18e7d4dc7abe510df", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -83940,16 +95700,22 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL", "status": "paid", - "date_last_updated": "2023-09-22T22:57:31.684Z" + "date_last_updated": { + "type": 6, + "value": 1695423451684 + } }, - "revision": "e25310694129485ea081eeb3", + "revision": "63bcb1ea6030470fb3d6f1e5", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -83957,10 +95723,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "05735b2d5bb444ad9cc4157a", + "revision": "f4eb296535a642a1848f92f6", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -83968,10 +95734,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "74fc6eede4554fa6abed262d", + "revision": "e564d8e1856942e2a4bb95d7", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -83979,10 +95745,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5e08e7ef0f2946388af98dc6", + "revision": "d12dbe4bcde14c699a276ae4", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -83994,10 +95760,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "d0591a246ed64a8b810b8792", + "revision": "16454fa6f6d247b1b4389f59", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84011,14 +95777,17 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL" }, - "revision": "7e6819508cff4e79a7d2abed", + "revision": "db2ac8ba7450482f9dcd61c9", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84026,10 +95795,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "166bc566178749d28931cd7c", + "revision": "889ca40552304939a62c3353", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84037,10 +95806,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "a43aa13a0e064194b244b777", + "revision": "0dfe19c2456b4f02a7443a2c", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84048,10 +95817,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "94c513f2f73e429088ce0fd5", + "revision": "c5ab0cdca3b14487bf0e1afb", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84063,10 +95832,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "a50b76a29dfa4df78e776850", + "revision": "217478d21de741a88f65fa06", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84080,14 +95849,17 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL" }, - "revision": "34158f3af7284b2384aee9ee", + "revision": "4bccd1cb58244b3091326920", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84095,10 +95867,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "2d80bc33c738410998b3c442", + "revision": "56c974569a154a14bf99f98d", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84106,10 +95878,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "c869473241564900a49523fb", + "revision": "dcd39068fc2a470aab4e6af8", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84117,10 +95889,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "14715ed2d6234af3afea5d83", + "revision": "c27a38103d334ee088d6d34b", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84132,10 +95904,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "03fa1c82b6a740aaba885651", + "revision": "a040a58372554b238ada46a6", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84149,14 +95921,17 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL" }, - "revision": "06ab867748ce451bb035fd43", + "revision": "8a53ad7f74e947929d9631f9", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84164,10 +95939,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "2cd17af2417947dc960f6b2a", + "revision": "e6b3f4f7a78b404ba4289b74", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84175,10 +95950,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e177c6345b484129a320719d", + "revision": "db9ec4cac79a42598f7b7fb6", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84186,10 +95961,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5f223feaaf664fbdb2e5227c", + "revision": "702a57234fe64c9986d0fbfe", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84201,10 +95976,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "f3d25a5dead0477d9ab01042", + "revision": "e05455240ea94bf98a63470e", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84218,14 +95993,17 @@ "total_amount": 3600, "installments": 10, "installment_amount": 360, - "date_created": "2023-03-19T21:50:02.609Z", + "date_created": { + "type": 6, + "value": 1679262602609 + }, "history_id": 1679262602609, "currency_id": "BRL" }, - "revision": "75b2f67c941940ffb8051316", + "revision": "cdae4622995d4036bad1e893", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84233,10 +96011,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "ce43520ac629401586fa6ac8", + "revision": "3e297451f02e40fbaf340601", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84244,10 +96022,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "3d5e6e74b6d947f398005a45", + "revision": "e0002c367f974d9a86448500", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84255,10 +96033,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fef6b7975e1141ac87d35c77", + "revision": "22c3212522f148e9a1ae46ee", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84266,10 +96044,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e11e483319114bf4b399b7b0", + "revision": "82f51202b6f04fae9ff40656", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84279,13 +96057,19 @@ "value": { "approvedLimit": 3000, "limitUsed": 2100, - "analysisRequested": "2023-03-19T00:10:39.579Z", - "lastReview": "2023-03-19T21:22:36.380Z" + "analysisRequested": { + "type": 6, + "value": 1679184639579 + }, + "lastReview": { + "type": 6, + "value": 1679260956380 + } }, - "revision": "eb2e10d6fce447c2adf7fdf5", + "revision": "3c4377648a4141219188d3a3", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84297,10 +96081,10 @@ "symbol": "IVIP", "value": 990 }, - "revision": "f4f6a1ccd2804628b0198710", + "revision": "dc133951f4bf4c4380076a9f", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84308,10 +96092,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d7b84ee8d30e4574becd3d54", + "revision": "5a88d92045a54276b39f5eda", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84323,12 +96107,15 @@ "dateValidity": 1679033074324, "totalValue": 3498.3833869132864, "currencyType": "USD", - "balancesModificacao": "2023-10-16T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697425200000 + } }, - "revision": "3615677c357d436797cc05f4", + "revision": "505e124efa4e44faa3dd308a", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84340,10 +96127,10 @@ "available": "454.90000000", "value": 90.844 }, - "revision": "238a064bd5884148a2759c03", + "revision": "fdd2d54cac804ef4851e4229", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84351,10 +96138,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "619ddf09d07e4356b832c81e", + "revision": "ab3c5e74ad0f41448ab0ee5b", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84372,12 +96159,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b1c5b6c1904b4c618d56835b", + "revision": "e0bb9eef3c554346aa11d7e7", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84393,9 +96180,18 @@ "original_amount": 7, "total_amount": 7, "id": 1679266939492, - "date_created": "2023-03-19T23:02:19.492Z", - "date_last_updated": "2023-03-19T23:02:19.492Z", - "date_of_expiration": "2023-03-19T23:02:19.492Z", + "date_created": { + "type": 6, + "value": 1679266939492 + }, + "date_last_updated": { + "type": 6, + "value": 1679266939492 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266939492 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84403,10 +96199,10 @@ "currency_id": "BRL", "history_id": 1679266939492 }, - "revision": "560f4a0eef114a5687375bc5", + "revision": "239a430241eb477699396e81", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84414,10 +96210,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "18308f10ab444e08ae7f4371", + "revision": "9d4ddee1901e40c48aea6713", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84435,12 +96231,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "40ec7372fa83483383b612a6", + "revision": "aba7a2cf16a64aa1b1e7d11b", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84456,9 +96252,18 @@ "original_amount": 50, "total_amount": 50, "id": 1679266973884, - "date_created": "2023-03-19T23:02:53.884Z", - "date_last_updated": "2023-03-19T23:02:53.884Z", - "date_of_expiration": "2023-03-19T23:02:53.884Z", + "date_created": { + "type": 6, + "value": 1679266973884 + }, + "date_last_updated": { + "type": 6, + "value": 1679266973884 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266973884 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84466,10 +96271,10 @@ "currency_id": "BRL", "history_id": 1679266973884 }, - "revision": "485c2b89180c4cd185b51a42", + "revision": "e144cc3c84b648ccbbabf4aa", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84477,10 +96282,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "86801ca4c41f4fa3b8f38dba", + "revision": "d8642c546a364b4b9e0a8a59", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84498,12 +96303,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "aae26ad293674ea19e063132", + "revision": "3c82e35ed4d44933be9a0797", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84519,9 +96324,18 @@ "original_amount": 100, "total_amount": 100, "id": 1679267111761, - "date_created": "2023-03-19T23:05:11.761Z", - "date_last_updated": "2023-03-19T23:05:11.761Z", - "date_of_expiration": "2023-03-19T23:05:11.761Z", + "date_created": { + "type": 6, + "value": 1679267111761 + }, + "date_last_updated": { + "type": 6, + "value": 1679267111761 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267111761 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84529,10 +96343,10 @@ "currency_id": "BRL", "history_id": 1679267111761 }, - "revision": "3d08f0378a0347efb4eca885", + "revision": "b461c398c22f4e52b9e4faec", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84540,10 +96354,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "b3807776648746f8b767448d", + "revision": "d49c41793cd34741b7c86d77", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84561,12 +96375,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "460d99b1bbae431c941362c6", + "revision": "a7d57775ad0d40f284b08828", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84582,9 +96396,18 @@ "original_amount": 25, "total_amount": 25, "id": 1679872001608, - "date_created": "2023-03-26T23:06:41.608Z", - "date_last_updated": "2023-03-26T23:06:41.608Z", - "date_of_expiration": "2023-03-26T23:06:41.608Z", + "date_created": { + "type": 6, + "value": 1679872001608 + }, + "date_last_updated": { + "type": 6, + "value": 1679872001608 + }, + "date_of_expiration": { + "type": 6, + "value": 1679872001608 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84592,10 +96415,10 @@ "currency_id": "BRL", "history_id": 1679872001608 }, - "revision": "0353aa96c2dd410199adeca8", + "revision": "d24daef5035b4ec4808ca50b", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84603,10 +96426,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "ec7aaf8063bc4409af24f4aa", + "revision": "dc9b7ccc7d3d4bc0abb5330a", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84624,12 +96447,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "7f86f4634da34212934e5f3b", + "revision": "d582c362292b444b8e368c32", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84645,9 +96468,18 @@ "original_amount": 120, "total_amount": 120, "id": 1684018958586, - "date_created": "2023-05-13T23:02:38.586Z", - "date_last_updated": "2023-05-13T23:02:38.586Z", - "date_of_expiration": "2023-05-13T23:02:38.586Z", + "date_created": { + "type": 6, + "value": 1684018958586 + }, + "date_last_updated": { + "type": 6, + "value": 1684018958586 + }, + "date_of_expiration": { + "type": 6, + "value": 1684018958586 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84655,10 +96487,10 @@ "currency_id": "BRL", "history_id": 1684018958586 }, - "revision": "5d45452fcdea4c78ad13be1c", + "revision": "8b8d33bd13b74f5d8b6e81ac", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84666,10 +96498,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "f39a7b9f80f148daadc348b3", + "revision": "f30c284bb60648f79058bb1e", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84687,12 +96519,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "958bb881452f43d79f095b8a", + "revision": "79ef25a009e247df9e2b664a", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84708,9 +96540,18 @@ "original_amount": 13, "total_amount": 13, "id": 1684348450676, - "date_created": "2023-05-17T18:34:10.676Z", - "date_last_updated": "2023-05-17T18:34:10.676Z", - "date_of_expiration": "2023-05-17T18:34:10.676Z", + "date_created": { + "type": 6, + "value": 1684348450676 + }, + "date_last_updated": { + "type": 6, + "value": 1684348450676 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348450676 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84718,10 +96559,10 @@ "currency_id": "BRL", "history_id": 1684348450676 }, - "revision": "b7960a3ded1c41f9a4427fcc", + "revision": "f061b52a83884c828d668a06", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84729,10 +96570,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "1be1035e32e44b7f955565cc", + "revision": "ee8c2b0cdb354d2cb6ff804f", "revision_nr": 1, - "created": 1701463509601, - "modified": 1701463509601 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84750,12 +96591,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "fbedda7d9efd4402913f801e", + "revision": "61ad8fa323ca4b61bcdd928a", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84771,9 +96612,18 @@ "original_amount": 30, "total_amount": 30, "id": 1684624165029, - "date_created": "2023-05-20T23:09:25.029Z", - "date_last_updated": "2023-05-20T23:09:25.029Z", - "date_of_expiration": "2023-05-20T23:09:25.029Z", + "date_created": { + "type": 6, + "value": 1684624165029 + }, + "date_last_updated": { + "type": 6, + "value": 1684624165029 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624165029 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84781,10 +96631,10 @@ "currency_id": "BRL", "history_id": 1684624165029 }, - "revision": "b30fd29446e64915b5090772", + "revision": "f683d78d37e24b399f6aefcb", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84792,10 +96642,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "11688a18542d4bf6af400adb", + "revision": "77a9b604f9cb48c3ac937e42", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820574, + "modified": 1701465820574 } }, { @@ -84813,12 +96663,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "2ecd8056e70b47cb917acfd4", + "revision": "5942cfda22c640bf97833a90", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -84834,9 +96684,18 @@ "original_amount": 109.9, "total_amount": 109.9, "id": 1684624981228, - "date_created": "2023-05-20T23:23:01.228Z", - "date_last_updated": "2023-05-20T23:23:01.228Z", - "date_of_expiration": "2023-05-20T23:23:01.228Z", + "date_created": { + "type": 6, + "value": 1684624981228 + }, + "date_last_updated": { + "type": 6, + "value": 1684624981228 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624981228 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -84844,10 +96703,10 @@ "currency_id": "BRL", "history_id": 1684624981228 }, - "revision": "ea39b849235441dd917251da", + "revision": "034bd9625ee54718889c1495", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -84855,10 +96714,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "d5dc120c6dac40dab1f4b007", + "revision": "612b290066f5420ab49518e0", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -84866,10 +96725,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "73fa4c8dfcaf4357aa4d7b8f", + "revision": "75590b3321f24a6f9b500074", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -84882,10 +96741,10 @@ "totalValue": 89.197, "currencyType": "USD" }, - "revision": "78913265dbfb478ab0db2665", + "revision": "d3d313b883724a6baa072ed7", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -84893,10 +96752,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "0338cd2d9d5a4c3cb65bbd20", + "revision": "5af36c9b34744feebe30b670", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -84904,10 +96763,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "abb5ffd7f796440aa50f9d9e", + "revision": "c2b5e2f46a7c4789862c50a8", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -84915,10 +96774,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ab6212ab7d114df0bfa784b9", + "revision": "fb74e4a31f4d44b6a138efd3", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -84929,10 +96788,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "c0f12f8e75b8418da322916f", + "revision": "bab2a1566965409faacca3ae", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -84943,12 +96802,15 @@ "dataModificacao": 1695173270592, "dateValidity": 1695173270620, "currencyType": "USD", - "balancesModificacao": "2023-09-20T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1695178800000 + } }, - "revision": "4ed714d666964130b2d1ab6f", + "revision": "8daf64024e1d46b7ac838ce0", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -84956,10 +96818,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a3c7d55d4c2e47eebf763d56", + "revision": "6c7cff6fd4fa478188bead7a", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -84967,10 +96829,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "13f83623dd4e437bacc20eac", + "revision": "294024d00ad44de592955178", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -84983,10 +96845,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "468ea6596daa4f03a18bc50e", + "revision": "4cf37c497e1b4851aa81c17b", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -84998,10 +96860,10 @@ "symbol": "IVIP", "value": 3434.39 }, - "revision": "5788c857d33d49dfb5aede0c", + "revision": "ed7cc8d89b1f4a66a8816dc6", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85009,10 +96871,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ecb9bfea163846d9be72b3cf", + "revision": "b09a157373e64faba79ee2af", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85020,12 +96882,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "de4e4b497521453bb8a02a78", + "revision": "63d97ba393b14f67bfe49fb6", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85040,22 +96902,37 @@ "total_amount": 2000, "history_id": 1677726769800, "id": 1677726769800, - "date_created": "2023-03-02T03:12:49.800Z", - "date_last_updated": "2023-03-02T11:00:57.517Z", - "date_of_expiration": "2023-04-01T03:12:49.800Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-02T11:00:57.517Z", - "money_release_date": "2023-03-02T11:00:57.517Z", + "date_created": { + "type": 6, + "value": 1677726769800 + }, + "date_last_updated": { + "type": 6, + "value": 1677754857517 + }, + "date_of_expiration": { + "type": 6, + "value": 1680318769800 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677754857517 + }, + "money_release_date": { + "type": 6, + "value": 1677754857517 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "52755e64ec374286a082f2a4", + "revision": "bdf94b7b24b448e89971e0cb", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85063,10 +96940,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80", - "revision": "5447374d7aef4cc5b58f4eef", + "revision": "3525644cca554fbd8ccd1f5c", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85074,12 +96951,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "27c68ec2570244f8b1b0c1d3", + "revision": "f60a2a3e2e304ebdb2ef9e39", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85094,22 +96971,37 @@ "total_amount": 3000, "history_id": 1678032850996, "id": 1678032850996, - "date_created": "2023-03-05T16:14:10.996Z", - "date_last_updated": "2023-03-05T18:41:48.688Z", - "date_of_expiration": "2023-04-04T16:14:10.996Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-05T18:41:48.688Z", - "money_release_date": "2023-03-05T18:41:48.688Z", + "date_created": { + "type": 6, + "value": 1678032850996 + }, + "date_last_updated": { + "type": 6, + "value": 1678041708688 + }, + "date_of_expiration": { + "type": 6, + "value": 1680624850996 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678041708688 + }, + "money_release_date": { + "type": 6, + "value": 1678041708688 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "415d479d37f346feb4404906", + "revision": "7a2fa2e7d2b84928b44a3ad9", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85117,10 +97009,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1287.0114.4173.8232-80", - "revision": "ef3e2aa78cdb45a684d25425", + "revision": "8e945836282f493fae011868", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85138,12 +97030,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "f2927a064402445f8edba70a", + "revision": "3c98cd1568f046ee9187bd7c", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85159,9 +97051,18 @@ "original_amount": 35378057, "total_amount": 35378057, "id": 1678076967863, - "date_created": "2023-03-06T04:29:27.863Z", - "date_last_updated": "2023-03-06T04:29:27.863Z", - "date_of_expiration": "2023-03-06T04:29:27.863Z", + "date_created": { + "type": 6, + "value": 1678076967863 + }, + "date_last_updated": { + "type": 6, + "value": 1678076967863 + }, + "date_of_expiration": { + "type": 6, + "value": 1678076967863 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -85170,10 +97071,10 @@ "history_id": 1678076967863, "description": "Compra de 35378057 IVIP por 5000 BRL" }, - "revision": "0c6537ec418245f89824931d", + "revision": "1a323badd50045f1b6138173", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85185,10 +97086,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, - "revision": "66a1ced4efb24bfca531af4f", + "revision": "01dfff7ad4ef435288c22048", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85196,10 +97097,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "76318debdf2a4a83b33c00a3", + "revision": "b40d17164a33448d8641d11e", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85207,10 +97108,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "df6c2b58ba2f47fb84710d83", + "revision": "a76cfddac7a34d07ad87c307", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85225,19 +97126,28 @@ "total_amount": 2240, "history_id": 1679268249425, "id": 1679268249425, - "date_created": "2023-03-19T23:24:09.425Z", - "date_last_updated": "2023-03-19T23:24:09.425Z", - "date_of_expiration": "2023-04-18T23:24:09.425Z", + "date_created": { + "type": 6, + "value": 1679268249425 + }, + "date_last_updated": { + "type": 6, + "value": 1679268249425 + }, + "date_of_expiration": { + "type": 6, + "value": 1681860249425 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "f37113a1537c47f48c69e254", + "revision": "6074e48aa9234014a22a16e2", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85245,10 +97155,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "5d2ce9bfbc2847ab9d3fb1f9", + "revision": "9352fd5ddbff4479b3c9e69c", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85266,12 +97176,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "498b52fe6721413fb69d6a41", + "revision": "2a236db0b82f412b937264ed", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85287,9 +97197,18 @@ "original_amount": 10651254, "total_amount": 10651254, "id": 1679871677212, - "date_created": "2023-03-26T23:01:17.212Z", - "date_last_updated": "2023-03-26T23:01:17.212Z", - "date_of_expiration": "2023-03-26T23:01:17.212Z", + "date_created": { + "type": 6, + "value": 1679871677212 + }, + "date_last_updated": { + "type": 6, + "value": 1679871677212 + }, + "date_of_expiration": { + "type": 6, + "value": 1679871677212 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -85298,10 +97217,10 @@ "history_id": 1679871677212, "description": "Compra de 10.651.254,00 IVIP por 2.000,00 BRL" }, - "revision": "28df884b53e3408698624880", + "revision": "4f8cdaa3ef95494fa3535e60", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85313,10 +97232,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, - "revision": "30f5c149af954ccd94f505e6", + "revision": "8062bd8156b643b3ba639143", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85324,10 +97243,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d41c62588c1043e099ffd78d", + "revision": "e3f18a7824f04e36b9af1172", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85335,10 +97254,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "56200ddbe3cc457d9fa41a26", + "revision": "8d779cf8f24c4274abaed882", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85353,19 +97272,28 @@ "total_amount": 1120, "history_id": 1679872304314, "id": 1679872304314, - "date_created": "2023-03-26T23:11:44.314Z", - "date_last_updated": "2023-03-26T23:11:44.314Z", - "date_of_expiration": "2023-04-25T23:11:44.314Z", + "date_created": { + "type": 6, + "value": 1679872304314 + }, + "date_last_updated": { + "type": 6, + "value": 1679872304314 + }, + "date_of_expiration": { + "type": 6, + "value": 1682464304314 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "978d6473c25b4d968db659c9", + "revision": "91a4186144454612add84184", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85373,10 +97301,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "068743ba3d6d4f7094a488fb", + "revision": "b853130adef74cb2b3d40219", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85394,12 +97322,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "88480fcb0a264bfd8e08df87", + "revision": "cef860da82754d2ca8bf5845", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85415,9 +97343,18 @@ "original_amount": 5325627, "total_amount": 5325627, "id": 1679872334513, - "date_created": "2023-03-26T23:12:14.513Z", - "date_last_updated": "2023-03-26T23:12:14.513Z", - "date_of_expiration": "2023-03-26T23:12:14.513Z", + "date_created": { + "type": 6, + "value": 1679872334513 + }, + "date_last_updated": { + "type": 6, + "value": 1679872334513 + }, + "date_of_expiration": { + "type": 6, + "value": 1679872334513 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -85426,10 +97363,10 @@ "history_id": 1679872334513, "description": "Compra de 5.325.627,00 IVIP por 1.000,00 BRL" }, - "revision": "714a1f7e27c748dfa7d4f0df", + "revision": "2b8aec98179345c4b4cb6791", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85437,12 +97374,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "a8d4b2bd9b114f77af11073e", + "revision": "b3c5aca2102a4baa85f47c8e", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85457,22 +97394,37 @@ "total_amount": 840, "history_id": 1682619398300, "id": 1682619398300, - "date_created": "2023-04-27T18:16:38.300Z", - "date_last_updated": "2023-04-27T18:22:41.924Z", - "date_of_expiration": "2023-05-27T18:16:38.300Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-04-27T18:22:41.924Z", - "money_release_date": "2023-04-27T18:22:41.924Z", + "date_created": { + "type": 6, + "value": 1682619398300 + }, + "date_last_updated": { + "type": 6, + "value": 1682619761924 + }, + "date_of_expiration": { + "type": 6, + "value": 1685211398300 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1682619761924 + }, + "money_release_date": { + "type": 6, + "value": 1682619761924 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "40397ba3d9f74bdd9ec4ce44", + "revision": "136eb9eaa19a461b8ef499cb", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85480,10 +97432,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 840,00 para a carteira iVip 1287.0114.4173.8232-80", - "revision": "4e0567775f404fb69d228116", + "revision": "b29041bd75994d25a3991134", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85503,12 +97455,12 @@ "installment_amount": 560, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "dcc0572d169f498ab109b8c2", + "revision": "4f6b8f0ec5e5489da31e58fe", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85525,9 +97477,18 @@ "total_amount": 560, "id": 1682619932343, "contract_id": "1679268249425", - "date_created": "2023-04-27T18:25:32.343Z", - "date_last_updated": "2023-04-27T18:25:32.343Z", - "date_of_expiration": "2023-04-27T18:25:32.343Z", + "date_created": { + "type": 6, + "value": 1682619932343 + }, + "date_last_updated": { + "type": 6, + "value": 1682619932343 + }, + "date_of_expiration": { + "type": 6, + "value": 1682619932343 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -85535,10 +97496,10 @@ "currency_id": "BRL", "history_id": 1682619932343 }, - "revision": "ee4e13c33bf74a189a2aa08d", + "revision": "2c3d783e89a64db08f29d649", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85546,10 +97507,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 4 no valor de 560,00 BRL referente ao contrato 1679268249425", - "revision": "c664dad40b4a476ea8be24fa", + "revision": "e0b6097266164725a681b4f9", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85569,12 +97530,12 @@ "installment_amount": 280, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "78dcf520854249bda42f791c", + "revision": "fe5e8c0ee9574d878dbbf5a9", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85591,9 +97552,18 @@ "total_amount": 280, "id": 1682619932484, "contract_id": "1679872304314", - "date_created": "2023-04-27T18:25:32.484Z", - "date_last_updated": "2023-04-27T18:25:32.484Z", - "date_of_expiration": "2023-04-27T18:25:32.484Z", + "date_created": { + "type": 6, + "value": 1682619932484 + }, + "date_last_updated": { + "type": 6, + "value": 1682619932484 + }, + "date_of_expiration": { + "type": 6, + "value": 1682619932484 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "discounted", @@ -85601,10 +97571,10 @@ "currency_id": "BRL", "history_id": 1682619932484 }, - "revision": "f559dcd41a134fe294d7a9f5", + "revision": "06bc591805fc40c8bb0053da", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85612,10 +97582,10 @@ "content": { "type": "STRING", "value": "Pagamento de fatura 1 de 4 no valor de 280,00 BRL referente ao contrato 1679872304314", - "revision": "542a339b92c442dfa95df9c2", + "revision": "5def4621e0fa45a5953c05e6", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85633,12 +97603,12 @@ "installment_amount": 8000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "79902eccd7f54a58a8ea2fc8", + "revision": "c5a1c7a253bb4e5ba40cdf9d", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85653,9 +97623,18 @@ "original_amount": 8000000, "total_amount": 8000000, "id": 1685667547180, - "date_created": "2023-06-02T00:59:07.180Z", - "date_last_updated": "2023-06-02T00:59:07.180Z", - "date_of_expiration": "2025-06-02T00:59:07.180Z", + "date_created": { + "type": 6, + "value": 1685667547180 + }, + "date_last_updated": { + "type": 6, + "value": 1685667547180 + }, + "date_of_expiration": { + "type": 6, + "value": 1748825947180 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -85664,10 +97643,10 @@ "history_id": 1685667547180, "wasDebited": true }, - "revision": "7e301ce822b94deaa39ce34a", + "revision": "c14f08fd7274480880ddd832", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85675,10 +97654,10 @@ "content": { "type": "STRING", "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "f655509910e54e1f9fe777a2", + "revision": "0e376f8b9ee84ee0b798d62e", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85686,12 +97665,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "8fbe8f02a5524af580c77311", + "revision": "25d6f16cd29d4573b3c68a16", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85706,22 +97685,37 @@ "total_amount": 3000000, "history_id": 1688772261924, "id": 1688772261924, - "date_created": "2023-07-07T23:24:21.924Z", - "date_last_updated": "2023-07-10T17:24:09.267Z", - "date_of_expiration": "2023-07-07T23:24:21.924Z", + "date_created": { + "type": 6, + "value": 1688772261924 + }, + "date_last_updated": { + "type": 6, + "value": 1689009849267 + }, + "date_of_expiration": { + "type": 6, + "value": 1688772261924 + }, "operation_type": "regular_payment", "status": "discounted", "status_detail": "discounted", "currency_id": "IVIP", - "date_approved": "2023-07-10T17:24:09.267Z", - "money_release_date": "2023-07-10T17:24:09.267Z", + "date_approved": { + "type": 6, + "value": 1689009849267 + }, + "money_release_date": { + "type": 6, + "value": 1689009849267 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "ba95c8acdb0940c49662e8b1", + "revision": "2a7ad1b468504bca9ff6e7df", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85729,10 +97723,10 @@ "content": { "type": "STRING", "value": "Saque de 3.000.000,00 IVIP para a carteira 0xDB45185C1086eFFBAA2d0b64862c83Bd9D29DE62", - "revision": "1ded726d9de443a197f732c3", + "revision": "30f32c76d5824ebe9d6aec98", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85744,10 +97738,10 @@ "label": "Taxa de 3,00%", "amount": 748170 }, - "revision": "a0084932cbc44a8ea6a17502", + "revision": "1df86e8f7ed141a3a4c5c748", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85764,10 +97758,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "5baee843e65549a98bc64c68", + "revision": "414d6c7e80a64ee79e547cf6", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85775,10 +97769,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/128701144173823280/history/1692276235458", - "revision": "7ebe19100d6b411d98cdef86", + "revision": "e6a1fb66d8f44883853b0507", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85786,10 +97780,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "082ddc29af7e4073b9684736", + "revision": "0ec3d6e8568043ecb2753cb4", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85804,24 +97798,39 @@ "total_amount": 24190830, "id": 1692276235458, "history_id": 1692276235458, - "date_created": "2023-08-17T12:43:55.458Z", - "date_last_updated": "2023-08-18T13:47:15.287Z", - "date_of_expiration": "2023-08-17T12:43:55.458Z", + "date_created": { + "type": 6, + "value": 1692276235458 + }, + "date_last_updated": { + "type": 6, + "value": 1692366435287 + }, + "date_of_expiration": { + "type": 6, + "value": 1692276235458 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": "2023-08-18T13:47:15.287Z", - "money_release_date": "2023-08-18T13:47:15.287Z", + "date_approved": { + "type": 6, + "value": 1692366435287 + }, + "money_release_date": { + "type": 6, + "value": 1692366435287 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "bc356211436b4843919a3487", + "revision": "989f5316f8884c98bccd1b93", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85829,10 +97838,10 @@ "content": { "type": "STRING", "value": "Saque de 24.190.830,00 IVIP para a carteira 0xDB45185C1086eFFBAA2d0b64862c83Bd9D29DE62", - "revision": "0bc33d018bfc4bb486e408b2", + "revision": "27998bfeb77f43b0aee74933", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85840,10 +97849,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9aef850184c74b45bbb7e6ae", + "revision": "fcfc816b9a8e4b179902eb50", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85855,10 +97864,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, - "revision": "6ae2f2dd97c64f269e4aebb6", + "revision": "81a6a936077047e2b06a4990", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85872,15 +97881,18 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": "2023-03-19T23:24:09.425Z", + "date_created": { + "type": 6, + "value": 1679268249425 + }, "history_id": 1679268249425, "currency_id": "BRL", "status": "paid" }, - "revision": "dce520d5fb6942f7a6095a3b", + "revision": "f19311e2a786436d9144eb9c", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85888,10 +97900,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "5cf1c47455f249a7a8bb90a1", + "revision": "63938f5cccb84247b94972dc", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85899,10 +97911,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "4dc4363654dc403fa99ace9d", + "revision": "ca69b6ea898d48b4b7ba7868", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85914,10 +97926,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, - "revision": "dca65c2a39714563b9a5cd71", + "revision": "95e5ad91153d461eb7020f69", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85931,15 +97943,18 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": "2023-03-26T23:11:44.314Z", + "date_created": { + "type": 6, + "value": 1679872304314 + }, "history_id": 1679872304314, "currency_id": "BRL", "status": "paid" }, - "revision": "f7dac66b2a9441b6925678db", + "revision": "bce65f9066634f3eb87ac29b", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85947,10 +97962,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "fcace0aa258944938e8fab3b", + "revision": "8a32f36abf9e42fdbb4f3e50", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85958,10 +97973,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "3d6dc6f816434d0f89cc60c4", + "revision": "6fbf6b498bfc44f29b0498aa", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85969,10 +97984,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7925576826444df09b2e25bb", + "revision": "523523a661c44ec194a14747", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820576, + "modified": 1701465820576 } }, { @@ -85984,10 +97999,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, - "revision": "a854cfa0c8194454aefd5f72", + "revision": "c04dc297fb8540278e1ffa3a", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86001,14 +98016,17 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": "2023-03-19T23:24:09.425Z", + "date_created": { + "type": 6, + "value": 1679268249425 + }, "history_id": 1679268249425, "currency_id": "BRL" }, - "revision": "87f6567d8d9a4803bba24f17", + "revision": "52fd14b0b6c8440cb3bcd110", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86016,10 +98034,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "ac30bc7c512d488eaf8c6c12", + "revision": "8d5cade166cc462c92588787", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86027,10 +98045,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "9b75e5c9891e4aa18c74f059", + "revision": "36af9dd8cb7647c58b950c1f", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86042,10 +98060,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, - "revision": "34463a2572b3488caf64421a", + "revision": "89dbe2378a0e473fa04f4f02", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86059,14 +98077,17 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": "2023-03-26T23:11:44.314Z", + "date_created": { + "type": 6, + "value": 1679872304314 + }, "history_id": 1679872304314, "currency_id": "BRL" }, - "revision": "33e7cc3eb2c84870ae1b3347", + "revision": "df92b7c7a8574bf4bb121ce6", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86074,10 +98095,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "e4f144906f0544ca8a2d6661", + "revision": "29b3ce47aea14ddf802bb0fe", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86085,10 +98106,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "8e1c1521ed65404c80c8553b", + "revision": "4af5078779c2477d90de0278", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86096,10 +98117,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "fb85a3f692e44428b8345031", + "revision": "3c8c7a63ddec441b9038fef6", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86111,10 +98132,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, - "revision": "6e75eae6ca1d4181a1c9e6d3", + "revision": "a770fded47104eea971d159d", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86128,14 +98149,17 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": "2023-03-19T23:24:09.425Z", + "date_created": { + "type": 6, + "value": 1679268249425 + }, "history_id": 1679268249425, "currency_id": "BRL" }, - "revision": "6aa0e96a19114007a3b2e58a", + "revision": "1d02372ae1dc4d7aa236ddeb", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86143,10 +98167,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "4237b39203854e2ea4931e3b", + "revision": "25fef8a7fdd143d08d4c6458", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86154,10 +98178,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "395d8b1213444620ad323a13", + "revision": "0cb7aae903824c32b866fec4", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86169,10 +98193,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, - "revision": "33d33541f00e4d96ad3d7d4e", + "revision": "5b07dd817a534a668ad47dd9", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86186,14 +98210,17 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": "2023-03-26T23:11:44.314Z", + "date_created": { + "type": 6, + "value": 1679872304314 + }, "history_id": 1679872304314, "currency_id": "BRL" }, - "revision": "ec371841adb64d37811a65db", + "revision": "1ec0a997c7ab4f5b85b7ae4d", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86201,10 +98228,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "58441949d5834ef099aa0bef", + "revision": "727f687b4b2241209f179c5d", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86212,10 +98239,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "2d37ed900e5047e48ebc0c57", + "revision": "3d56dd6bbd4c47788aa021bf", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86223,10 +98250,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9a13fa0ca9c5485b8dac4858", + "revision": "70207e3d60244af7847792e7", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86238,10 +98265,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, - "revision": "740d62459cf640d5aa514e89", + "revision": "022b457514f24a6abfff038e", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86255,14 +98282,17 @@ "total_amount": 2240, "installments": 4, "installment_amount": 560, - "date_created": "2023-03-19T23:24:09.425Z", + "date_created": { + "type": 6, + "value": 1679268249425 + }, "history_id": 1679268249425, "currency_id": "BRL" }, - "revision": "1f1aa34d10eb48ac8b82e03c", + "revision": "f087032b31ad4d7ca9048885", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86270,10 +98300,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "4a910a5841334638ba3a2276", + "revision": "7c0839d2d7214168ab0e9c6e", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86281,10 +98311,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "63996f8f910a4cef8424804b", + "revision": "b06ed0337d4a4699851be746", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86296,10 +98326,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, - "revision": "33935ab8b365433281f8607c", + "revision": "d541cbc9550840c9b7185c8d", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86313,14 +98343,17 @@ "total_amount": 1120, "installments": 4, "installment_amount": 280, - "date_created": "2023-03-26T23:11:44.314Z", + "date_created": { + "type": 6, + "value": 1679872304314 + }, "history_id": 1679872304314, "currency_id": "BRL" }, - "revision": "469f0071c22042698f5a7e46", + "revision": "e3d0ae245f1a40dba1299b2a", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86328,10 +98361,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "db88c50f349f49a9b1d94ae8", + "revision": "60bc381573b040678f41da92", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86339,10 +98372,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e5d5c51447f14d59a82550f1", + "revision": "8867276db2e24ae58c2ddbed", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86350,10 +98383,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9706550af32f4102886773a3", + "revision": "83f58b5d360b44e080b1e6cd", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86361,10 +98394,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2999fc185e214d7fac0a5217", + "revision": "49d22af43ee740668ac4088d", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86374,13 +98407,19 @@ "value": { "approvedLimit": 10000, "limitUsed": 2250, - "analysisRequested": "2023-03-19T23:03:43.911Z", - "lastReview": "2023-03-19T23:09:16.871Z" + "analysisRequested": { + "type": 6, + "value": 1679267023911 + }, + "lastReview": { + "type": 6, + "value": 1679267356871 + } }, - "revision": "75390dcd225145b1bc4ad9be", + "revision": "c073ad3f3f0c403fb03c5d64", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86392,12 +98431,15 @@ "dateValidity": 1678206220392, "totalValue": 6834.92, "currencyType": "USD", - "balancesModificacao": "2023-09-28T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1695870000000 + } }, - "revision": "6ab1ebd52c7a432ab94139a1", + "revision": "4d0de4ed23c9450bbae80ec8", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86405,10 +98447,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "477a3137520c4027ab78102f", + "revision": "afb8e1d5a053472fa15c075c", "revision_nr": 1, - "created": 1701463509602, - "modified": 1701463509602 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86416,12 +98458,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "b76a9a803a1942898c62d0b5", + "revision": "ea23ebb5235f4305bc6d4f20", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86436,18 +98478,27 @@ "total_amount": 500, "history_id": 1684145604531, "id": 1684145604531, - "date_created": "2023-05-15T10:13:24.531Z", - "date_last_updated": "2023-05-15T10:13:24.531Z", - "date_of_expiration": "2023-06-14T10:13:24.531Z", + "date_created": { + "type": 6, + "value": 1684145604531 + }, + "date_last_updated": { + "type": 6, + "value": 1684145604531 + }, + "date_of_expiration": { + "type": 6, + "value": 1686737604531 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "36e92129e38f402294b06d42", + "revision": "bada1f87bd654fb1b1fb91e2", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86455,10 +98506,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1302.5146.4382.3786-70", - "revision": "6547a401095642d7a9177ddf", + "revision": "5477937cc3184dafa617ec5d", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86466,10 +98517,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e5db3e6c733f4a228714ad1d", + "revision": "dc1e06e277214bb4b99db550", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86477,10 +98528,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "9da194ce696144f993391905", + "revision": "bacf126983ff429e8debadd5", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86491,10 +98542,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "cbd997ad544047b2a5733460", + "revision": "4c53a741e44a4a62b5a535f2", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86507,10 +98558,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "4944cd507bc640578c1737a9", + "revision": "2337ad1f33fe48b6a5aea5b1", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86522,10 +98573,10 @@ "value": 0, "available": "0.00000000" }, - "revision": "19df4143cba941b38510f083", + "revision": "c7ca1ad3365b4fb9a44558da", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86537,10 +98588,10 @@ "available": "1069072.00000000", "value": 37.92 }, - "revision": "9e2e5eaea3ff41658aaad37d", + "revision": "912cd355581d4785a547e6cd", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86548,10 +98599,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "154cc94bc5a54e9da448c997", + "revision": "6c07cdc680a64191b654008d", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86559,12 +98610,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "ef35eb82d6c149b684592380", + "revision": "02264c2b819b4af8ba2420fa", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86579,20 +98630,32 @@ "total_amount": 20, "history_id": 1677984009002, "id": 1677984009002, - "date_created": "2023-03-05T02:40:09.002Z", - "date_last_updated": "2023-03-10T12:42:28.101Z", - "date_of_expiration": "2023-04-04T02:40:09.002Z", + "date_created": { + "type": 6, + "value": 1677984009002 + }, + "date_last_updated": { + "type": 6, + "value": 1678452148101 + }, + "date_of_expiration": { + "type": 6, + "value": 1680576009002 + }, "operation_type": "regular_payment", "status": "rejected", "status_detail": "rejected", "currency_id": "BRL", - "money_release_date": "2023-03-10T12:42:28.101Z", + "money_release_date": { + "type": 6, + "value": 1678452148101 + }, "money_release_status": "rejected" }, - "revision": "401483fc2a99401cbf1ac7bf", + "revision": "1396f771234140ea980c1624", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86600,10 +98663,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1328.9266.1243.2543-80", - "revision": "a24ae8b01e7e4d8792790478", + "revision": "37ecddc22ceb45368e65d1e1", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86611,12 +98674,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "ab200b0271ec400fb15c935a", + "revision": "b332c68621d14012bfa7d302", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86631,18 +98694,27 @@ "total_amount": 200, "history_id": 1678119185082, "id": 1678119185082, - "date_created": "2023-03-06T16:13:05.082Z", - "date_last_updated": "2023-03-06T16:13:05.082Z", - "date_of_expiration": "2023-04-05T16:13:05.082Z", + "date_created": { + "type": 6, + "value": 1678119185082 + }, + "date_last_updated": { + "type": 6, + "value": 1678119185082 + }, + "date_of_expiration": { + "type": 6, + "value": 1680711185082 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "98f7e8dfd0394aefbe656287", + "revision": "541323bc205440a5b1e471ab", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86650,10 +98722,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1328.9266.1243.2543-80", - "revision": "4c519c4167574762937b7cf7", + "revision": "7dcc20eda83744a5b13071f2", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86661,12 +98733,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "cdc996a61ba146cbb4d0bcea", + "revision": "663b675050d0423fa3be0001", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86681,22 +98753,37 @@ "total_amount": 200, "history_id": 1678119441612, "id": 1678119441612, - "date_created": "2023-03-06T16:17:21.612Z", - "date_last_updated": "2023-03-09T14:31:06.897Z", - "date_of_expiration": "2023-04-05T16:17:21.612Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-09T14:31:06.897Z", - "money_release_date": "2023-03-09T14:31:06.897Z", + "date_created": { + "type": 6, + "value": 1678119441612 + }, + "date_last_updated": { + "type": 6, + "value": 1678372266897 + }, + "date_of_expiration": { + "type": 6, + "value": 1680711441612 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1678372266897 + }, + "money_release_date": { + "type": 6, + "value": 1678372266897 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "856c2cfc539e4afcb75d7cc3", + "revision": "32c1ab9b0b3146a4a15ef6a2", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86704,10 +98791,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1328.9266.1243.2543-80", - "revision": "d1d654ca027045bcbe8bde1c", + "revision": "679cf6891a0544a08d4ceee9", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86725,12 +98812,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "2e531b869e004488a01f883a", + "revision": "c087850349034306bdd24914", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86746,9 +98833,18 @@ "original_amount": 1069072, "total_amount": 1069072, "id": 1679940518294, - "date_created": "2023-03-27T18:08:38.294Z", - "date_last_updated": "2023-03-27T18:08:38.294Z", - "date_of_expiration": "2023-03-27T18:08:38.294Z", + "date_created": { + "type": 6, + "value": 1679940518294 + }, + "date_last_updated": { + "type": 6, + "value": 1679940518294 + }, + "date_of_expiration": { + "type": 6, + "value": 1679940518294 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -86757,10 +98853,10 @@ "history_id": 1679940518294, "description": "Compra de 1.069.072,00 IVIP por 200,00 BRL" }, - "revision": "c7f5ee74594a43aaae84fd70", + "revision": "adc8605d27264f53ace3971d", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86768,10 +98864,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5480369ebb8e453da520fafc", + "revision": "0a514f4347eb49c583587d91", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86784,10 +98880,10 @@ "totalValue": 37.76, "currencyType": "USD" }, - "revision": "6c16b2cace2f43ed9119bce7", + "revision": "57d07b471b7b4c8ea13c63f4", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86799,10 +98895,10 @@ "symbol": "IVIP", "value": 3.42 }, - "revision": "fc0987b9de094bb49d18c54c", + "revision": "27f38589354b403896b58a5a", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86814,10 +98910,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "879713e485c04e2da43afc30", + "revision": "4f6403ff934148d386e4110b", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86825,10 +98921,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "810a75ff559b446b84623697", + "revision": "2fe4b2fbd83848ef8d3e34a7", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86837,12 +98933,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-06T21:00:23.188Z" + ".val": { + "type": 6, + "value": 1694034023188 + } }, - "revision": "b056043e0f1941e2aa6e3f5c", + "revision": "5faba3ecde394f53b24063fe", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86858,12 +98957,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "8bb67f481f68401395bd93ba", + "revision": "36c89a4a4619452bbf08cb69", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86871,10 +98970,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691442023188", - "revision": "003000733b914387be5429d2", + "revision": "a8647461ad654a999f9d0415", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86889,8 +98988,14 @@ "total_amount": 20, "id": 1691442023188, "history_id": 1691442023188, - "date_created": "2023-08-07T21:00:23.188Z", - "date_last_updated": "2023-08-07T21:00:23.188Z", + "date_created": { + "type": 6, + "value": 1691442023188 + }, + "date_last_updated": { + "type": 6, + "value": 1691442023188 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -86898,10 +99003,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "283d90dd73a2408099fab20a", + "revision": "bdc0378361844db9a92075b3", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86909,10 +99014,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 para a carteira iVip 1336.7505.4149.0212-50", - "revision": "5f96ba0a9823492a8b8a7431", + "revision": "2681676bedec473cb02b47c8", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86921,12 +99026,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-09-07T22:30:56.606Z" + ".val": { + "type": 6, + "value": 1694125856606 + } }, - "revision": "7385b707de3e4c1199b0bf90", + "revision": "14d946c8b35045b2bb11a0d4", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86942,12 +99050,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "df46c4f63d3d44b0b56502ff", + "revision": "f1abf928bdba4dab98440479", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86955,10 +99063,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691533856606", - "revision": "3a9105d97bb64cc893e8baad", + "revision": "faa005616507422893c465a8", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86973,23 +99081,35 @@ "total_amount": 20, "id": 1691533856606, "history_id": 1691533856606, - "date_created": "2023-08-08T22:30:56.606Z", - "date_last_updated": "2023-08-08T23:24:11.872Z", + "date_created": { + "type": 6, + "value": 1691533856606 + }, + "date_last_updated": { + "type": 6, + "value": 1691537051872 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "BRL", "base_currency_id": "BRL", "status_detail": "accredited", - "date_approved": "2023-08-08T23:24:11.872Z", - "money_release_date": "2023-08-08T23:24:11.872Z", + "date_approved": { + "type": 6, + "value": 1691537051872 + }, + "money_release_date": { + "type": 6, + "value": 1691537051872 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "ff6d06873e8c4832badc8f6a", + "revision": "b45bb823c27a431bab82c51c", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -86997,10 +99117,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 para a carteira iVip 1336.7505.4149.0212-50", - "revision": "dac35db47c804851a8ad4607", + "revision": "65980c7df9f44df895ff5a83", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87016,12 +99136,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "7f00ef537b6141b197a7dcf2", + "revision": "b5390b6bee2c4daba737bff2", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87029,10 +99149,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691597759364", - "revision": "8ac1cce492bd4166b8897bb0", + "revision": "2e1a3a0414814689837c1c86", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87047,9 +99167,18 @@ "total_amount": 30608, "id": 1691597759364, "history_id": 1691597759364, - "date_created": "2023-08-09T16:15:59.364Z", - "date_last_updated": "2023-08-09T16:15:59.364Z", - "date_of_expiration": "2023-08-09T16:15:59.364Z", + "date_created": { + "type": 6, + "value": 1691597759364 + }, + "date_last_updated": { + "type": 6, + "value": 1691597759364 + }, + "date_of_expiration": { + "type": 6, + "value": 1691597759364 + }, "operation_type": "regular_payment", "payment_type": "ticket", "currency_id": "IVIP", @@ -87058,10 +99187,10 @@ "description": "Compra de 30.608,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "c7e5d7027142481595fdfd58", + "revision": "8a16107f5307420ca0b62c12", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87069,10 +99198,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6f2a3891f5784f82b2f35153", + "revision": "b0b23db8d5574069b4f79b30", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87080,10 +99209,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7833a48bd8c94e34ac97da7f", + "revision": "9757d29882a64683b402fe49", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87094,10 +99223,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "a22bb6cc31554d3a93f976d5", + "revision": "180084451e5b469987987915", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87108,12 +99237,15 @@ "dataModificacao": 1691441898494, "dateValidity": 1691441898538, "currencyType": "USD", - "balancesModificacao": "2023-08-11T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1691722800000 + } }, - "revision": "bc247f6029ee433e9d8ae866", + "revision": "c1cf5b6c903940c4bda7ea15", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87121,10 +99253,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1fc6fec71e2b4cd9bfc679ae", + "revision": "a7c61b1a01104502ab2f1901", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87132,12 +99264,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "bee4fa464deb429baba4c811", + "revision": "2b26f9d456ed4d33add49b7b", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87152,18 +99284,27 @@ "total_amount": 20, "history_id": 1689202732019, "id": 1689202732019, - "date_created": "2023-07-12T22:58:52.019Z", - "date_last_updated": "2023-07-12T22:58:52.019Z", - "date_of_expiration": "2023-08-11T22:58:52.019Z", + "date_created": { + "type": 6, + "value": 1689202732019 + }, + "date_last_updated": { + "type": 6, + "value": 1689202732019 + }, + "date_of_expiration": { + "type": 6, + "value": 1691794732019 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "711b0fa29d084d8689bb5a55", + "revision": "5e712223259f430a94a29a8d", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87171,10 +99312,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", - "revision": "bccb7c6076ad4045801501ae", + "revision": "2672328e7adf4022aa9cddf8", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87182,12 +99323,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "c55df0f80a98412cb4818f00", + "revision": "ba9d1c1918144694a72a4884", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87202,18 +99343,27 @@ "total_amount": 20, "history_id": 1689455294552, "id": 1689455294552, - "date_created": "2023-07-15T21:08:14.552Z", - "date_last_updated": "2023-07-15T21:08:14.552Z", - "date_of_expiration": "2023-08-14T21:08:14.552Z", + "date_created": { + "type": 6, + "value": 1689455294552 + }, + "date_last_updated": { + "type": 6, + "value": 1689455294552 + }, + "date_of_expiration": { + "type": 6, + "value": 1692047294552 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "538c77926121432ab5130f53", + "revision": "4a1d6fd07e2846c89d382f86", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87221,10 +99371,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", - "revision": "7df7b1f1403640409fa4f102", + "revision": "0b1c387aa00c4577b88c2453", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87232,12 +99382,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "4de2231d0ca447a48e917144", + "revision": "13a266be11d24d429f3cb0a5", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87252,18 +99402,27 @@ "total_amount": 20, "history_id": 1689455325352, "id": 1689455325352, - "date_created": "2023-07-15T21:08:45.352Z", - "date_last_updated": "2023-07-15T21:08:45.352Z", - "date_of_expiration": "2023-08-14T21:08:45.352Z", + "date_created": { + "type": 6, + "value": 1689455325352 + }, + "date_last_updated": { + "type": 6, + "value": 1689455325352 + }, + "date_of_expiration": { + "type": 6, + "value": 1692047325352 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "f526cbd91768434bafc4370f", + "revision": "24d968df9f8e41e4827e7712", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87271,10 +99430,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", - "revision": "97cd1078e171457b827aea56", + "revision": "a373194a80034afeba14bf50", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87282,10 +99441,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "16364d526739434fa100650a", + "revision": "6763521fe6ab4e0ea0f5f624", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87293,10 +99452,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d7f8b1ebcc0140428432d1ea", + "revision": "5796ad802b57465488e19bae", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87307,10 +99466,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "4966a54effc14a3592886350", + "revision": "19e21c2c12dc480ca0fc64dd", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87323,10 +99482,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "2329abc0b16e485b962f6057", + "revision": "d3629ddd800242848aeed195", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87334,10 +99493,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4c68954d6acc435facf6bfcb", + "revision": "873a1fe5ce104cda8e9fc537", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820577, + "modified": 1701465820577 } }, { @@ -87345,12 +99504,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "7263dd73eb264f96a91dd0f0", + "revision": "750b87e72f0945f9a8f481f8", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87365,18 +99524,27 @@ "total_amount": 1700, "history_id": 1684183743876, "id": 1684183743876, - "date_created": "2023-05-15T20:49:03.876Z", - "date_last_updated": "2023-05-15T20:49:03.876Z", - "date_of_expiration": "2023-06-14T20:49:03.876Z", + "date_created": { + "type": 6, + "value": 1684183743876 + }, + "date_last_updated": { + "type": 6, + "value": 1684183743876 + }, + "date_of_expiration": { + "type": 6, + "value": 1686775743876 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "6d068c9a44cb4b4a8bc57f39", + "revision": "25fc011f63a7466080cbdb6f", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87384,10 +99552,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.700,00 para a carteira iVip 1346.8212.0797.4517-90", - "revision": "023c0ab82e244793aedea7cc", + "revision": "f55ff62c565340eb9fbcdd4b", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87395,10 +99563,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "6c5620835136482aa0eb48c7", + "revision": "0ec41051ca214ac1ba4a69ff", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87406,10 +99574,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "420e35244db04f12966f21b5", + "revision": "c0ac249143af450ba44d41e5", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87420,10 +99588,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "c8aa58ab391d441fa441ccac", + "revision": "7b75a5742a1f4eccafc7edd3", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87436,10 +99604,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "ca9bc99daa9f44bf8273e030", + "revision": "4ee2baecb2904861aa423189", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87447,10 +99615,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "109093f811014fa0be0da3b3", + "revision": "62b7da588cb44bd7802e188f", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87458,10 +99626,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "dcb47331e6b14fd98366c0c0", + "revision": "275eebf329d74c218018d7e1", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87474,10 +99642,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "786c884518944b8bb77b78b3", + "revision": "683ecaace59f49458f2af24e", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87485,10 +99653,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "2b06f8721c1c428db3483b21", + "revision": "919ab10ca659428a83829bf8", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87496,12 +99664,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "107d5f8ef4d84ae89418b1ed", + "revision": "a799216991724302ac59c609", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87516,18 +99684,27 @@ "total_amount": 20, "history_id": 1689208709356, "id": 1689208709356, - "date_created": "2023-07-13T00:38:29.356Z", - "date_last_updated": "2023-07-13T00:38:29.356Z", - "date_of_expiration": "2023-08-12T00:38:29.356Z", + "date_created": { + "type": 6, + "value": 1689208709356 + }, + "date_last_updated": { + "type": 6, + "value": 1689208709356 + }, + "date_of_expiration": { + "type": 6, + "value": 1691800709356 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "07fddaed0f824ff0b679b02c", + "revision": "52dc91f70e5444228b75b592", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87535,10 +99712,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1384.8850.0273.9255-70", - "revision": "f46ac87824d5487386df1315", + "revision": "7b6dae3154724d7289c494f9", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87546,10 +99723,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5369d2c4c7aa4b0cb4ebd97d", + "revision": "5549495653f14f8ca489ff0f", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87557,10 +99734,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4e79863ba2ab4123ad8773bd", + "revision": "5285eeaaa6954b37b3b6d936", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87571,10 +99748,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "7d0a654274f4463280553b53", + "revision": "a8939cbfd37e4503a3092139", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87587,10 +99764,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "ea54c498f05740449ce0d1e1", + "revision": "1b6e7c0c8f4a43eaaf8e4e07", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87602,10 +99779,10 @@ "symbol": "IVIP", "value": 654.99 }, - "revision": "b92185cc0b7b4cdc82a77a3c", + "revision": "b1586d0d4c9c4b16aabee552", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87613,10 +99790,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a52102e4e0284e4693cf7595", + "revision": "957d45bae73d4f85af3441cf", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87624,12 +99801,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "b705aa50b7d8492aaa1d16ad", + "revision": "79870c1edac04466a9708ae1", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87644,22 +99821,37 @@ "total_amount": 1000, "history_id": 1677847333011, "id": 1677847333011, - "date_created": "2023-03-03T12:42:13.011Z", - "date_last_updated": "2023-03-03T16:22:44.643Z", - "date_of_expiration": "2023-04-02T12:42:13.011Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-03-03T16:22:44.643Z", - "money_release_date": "2023-03-03T16:22:44.643Z", + "date_created": { + "type": 6, + "value": 1677847333011 + }, + "date_last_updated": { + "type": 6, + "value": 1677860564643 + }, + "date_of_expiration": { + "type": 6, + "value": 1680439333011 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1677860564643 + }, + "money_release_date": { + "type": 6, + "value": 1677860564643 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "7cb2ec0683ad465db2b96c64", + "revision": "47733807a57b40c9bf5ba679", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87667,10 +99859,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1385.8527.3860.3328-20", - "revision": "8f1f930bf0334756a35af560", + "revision": "96c8d258d452404ebc250849", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87688,12 +99880,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "7fbd455db8cb461eac1a4799", + "revision": "337098a1815948d8939339b6", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87709,9 +99901,18 @@ "original_amount": 7131208, "total_amount": 7131208, "id": 1678180078100, - "date_created": "2023-03-07T09:07:58.100Z", - "date_last_updated": "2023-03-07T09:07:58.100Z", - "date_of_expiration": "2023-03-07T09:07:58.100Z", + "date_created": { + "type": 6, + "value": 1678180078100 + }, + "date_last_updated": { + "type": 6, + "value": 1678180078100 + }, + "date_of_expiration": { + "type": 6, + "value": 1678180078100 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -87720,10 +99921,10 @@ "history_id": 1678180078100, "description": "Compra de 7131208 IVIP por 1000 BRL" }, - "revision": "06ad89f2b5b04caf9a2286c5", + "revision": "c1c42014b2dc496eb8c9bee4", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87741,12 +99942,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "9860c17efcf44b288c7cd59e", + "revision": "5db92f6414954d13938e283c", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87762,9 +99963,18 @@ "original_amount": 2000, "total_amount": 2000, "id": 1678198835623, - "date_created": "2023-03-07T14:20:35.623Z", - "date_last_updated": "2023-03-07T14:20:35.623Z", - "date_of_expiration": "2023-03-07T14:20:35.623Z", + "date_created": { + "type": 6, + "value": 1678198835623 + }, + "date_last_updated": { + "type": 6, + "value": 1678198835623 + }, + "date_of_expiration": { + "type": 6, + "value": 1678198835623 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -87772,10 +99982,10 @@ "currency_id": "BRL", "history_id": 1678198835623 }, - "revision": "ca76c9c3228d4f3c8aa427cd", + "revision": "8f0f6f68285644159250be50", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87783,10 +99993,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "083cd8dd3270426cb0135d57", + "revision": "f3f644f3076a4f25897ea49a", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87804,12 +100014,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b510d3ca7730466e8a3d6c49", + "revision": "6bfc899d99de4e458c8f49d1", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87825,9 +100035,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1678228246387, - "date_created": "2023-03-07T22:30:46.387Z", - "date_last_updated": "2023-03-07T22:30:46.387Z", - "date_of_expiration": "2023-03-07T22:30:46.387Z", + "date_created": { + "type": 6, + "value": 1678228246387 + }, + "date_last_updated": { + "type": 6, + "value": 1678228246387 + }, + "date_of_expiration": { + "type": 6, + "value": 1678228246387 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -87835,10 +100054,10 @@ "currency_id": "BRL", "history_id": 1678228246387 }, - "revision": "f0d82ba7c22148f5ba98c3de", + "revision": "aaa6ec9e35f94fe6811ef095", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87846,10 +100065,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "7fc9a9dc404c4458a63399b7", + "revision": "509feb0bbb494b2f9785f312", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87867,12 +100086,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "e5e59c7cfe34474e87e1b784", + "revision": "f4b7f0f8a7964574b18b9977", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87888,9 +100107,18 @@ "original_amount": 1000, "total_amount": 1000, "id": 1679266874503, - "date_created": "2023-03-19T23:01:14.503Z", - "date_last_updated": "2023-03-19T23:01:14.503Z", - "date_of_expiration": "2023-03-19T23:01:14.503Z", + "date_created": { + "type": 6, + "value": 1679266874503 + }, + "date_last_updated": { + "type": 6, + "value": 1679266874503 + }, + "date_of_expiration": { + "type": 6, + "value": 1679266874503 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -87898,10 +100126,10 @@ "currency_id": "BRL", "history_id": 1679266874503 }, - "revision": "bcce0b8836a64ed9ba4716b2", + "revision": "184896890d44467b83be7cc0", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87909,10 +100137,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "27fc6c72357d407890695679", + "revision": "141897301ed047db8c67da7f", "revision_nr": 1, - "created": 1701463509603, - "modified": 1701463509603 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87930,12 +100158,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "76a64655e0a441e58df96216", + "revision": "fc0b03b12c8f4a699ef6e149", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87951,9 +100179,18 @@ "original_amount": 23286153, "total_amount": 23286153, "id": 1679267008673, - "date_created": "2023-03-19T23:03:28.673Z", - "date_last_updated": "2023-03-19T23:03:28.673Z", - "date_of_expiration": "2023-03-19T23:03:28.673Z", + "date_created": { + "type": 6, + "value": 1679267008673 + }, + "date_last_updated": { + "type": 6, + "value": 1679267008673 + }, + "date_of_expiration": { + "type": 6, + "value": 1679267008673 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -87962,10 +100199,10 @@ "history_id": 1679267008673, "description": "Compra de 23286153 IVIP por 4000 BRL" }, - "revision": "3058e1599e184deaada4a922", + "revision": "4783d4c7396a4dc3a7b4bc26", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87977,10 +100214,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "8db873d828164b8eb5d97e0f", + "revision": "c7721eb00ea644799d989454", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87988,10 +100225,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "61fa853aa9874ea682b4135d", + "revision": "9fc4416688ac4955954751d0", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -87999,10 +100236,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "85a042ed0f1c4ca8b311197d", + "revision": "abf90a05c7f7436b9b583aa2", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88017,19 +100254,28 @@ "total_amount": 12400, "history_id": 1684019947547, "id": 1684019947547, - "date_created": "2023-05-13T23:19:07.547Z", - "date_last_updated": "2023-05-13T23:19:07.547Z", - "date_of_expiration": "2023-06-12T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1684019947547 + }, + "date_last_updated": { + "type": 6, + "value": 1684019947547 + }, + "date_of_expiration": { + "type": 6, + "value": 1686611947547 + }, "operation_type": "regular_payment", "status": "approved", "status_detail": "accredited", "currency_id": "BRL", "wasDebited": true }, - "revision": "930fd0847bfe412fbfbfbd9f", + "revision": "24190c2dd184467a8fef89f3", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88037,10 +100283,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "b2be8f1a14574319ba7d2b3f", + "revision": "9adec17f607a49eaa97e096c", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88058,12 +100304,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "964415d7bd53403e841e0d56", + "revision": "d8510f1607e3485a82c5a041", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88079,9 +100325,18 @@ "original_amount": 1040, "total_amount": 1040, "id": 1684348689379, - "date_created": "2023-05-17T18:38:09.379Z", - "date_last_updated": "2023-05-17T18:38:09.379Z", - "date_of_expiration": "2023-05-17T18:38:09.379Z", + "date_created": { + "type": 6, + "value": 1684348689379 + }, + "date_last_updated": { + "type": 6, + "value": 1684348689379 + }, + "date_of_expiration": { + "type": 6, + "value": 1684348689379 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -88089,10 +100344,10 @@ "currency_id": "BRL", "history_id": 1684348689379 }, - "revision": "6ac202432d5d44da8e202402", + "revision": "8de7dd771cc4405f97052624", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88100,10 +100355,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "83d56cc81b8e445080aeabe8", + "revision": "8c4f484540944bb781da5d56", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88121,12 +100376,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "f62d9356d72e43be81fd9967", + "revision": "f7715dc34291432192eec9c5", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88142,9 +100397,18 @@ "original_amount": 53772878, "total_amount": 53772878, "id": 1684624162871, - "date_created": "2023-05-20T23:09:22.871Z", - "date_last_updated": "2023-05-20T23:09:22.871Z", - "date_of_expiration": "2023-05-20T23:09:22.871Z", + "date_created": { + "type": 6, + "value": 1684624162871 + }, + "date_last_updated": { + "type": 6, + "value": 1684624162871 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624162871 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -88153,10 +100417,10 @@ "history_id": 1684624162871, "description": "Compra de 53.772.878,00 IVIP por 11.040,00 BRL" }, - "revision": "9ab9a40835b84f12855b379d", + "revision": "0957e2f97de041bfac40dbf4", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88174,12 +100438,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "efdc5acf00f34fcd8c3830c5", + "revision": "9b6e78ff300b44729ee687d9", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88195,9 +100459,18 @@ "original_amount": 258.1, "total_amount": 258.1, "id": 1684624267520, - "date_created": "2023-05-20T23:11:07.520Z", - "date_last_updated": "2023-05-20T23:11:07.520Z", - "date_of_expiration": "2023-05-20T23:11:07.520Z", + "date_created": { + "type": 6, + "value": 1684624267520 + }, + "date_last_updated": { + "type": 6, + "value": 1684624267520 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624267520 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -88205,10 +100478,10 @@ "currency_id": "BRL", "history_id": 1684624267520 }, - "revision": "4d34e5f4204f49a18db70f71", + "revision": "0fce9383a14f47a88c0a294a", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88216,10 +100489,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "28ddf41ffd5947539dea94a0", + "revision": "8dce943eb2924580b92344f3", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88237,12 +100510,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "ed4e8827daa74f6ea2db5744", + "revision": "8e6f47deaf3c42a7869b3308", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88258,9 +100531,18 @@ "original_amount": 1257135, "total_amount": 1257135, "id": 1684624311448, - "date_created": "2023-05-20T23:11:51.448Z", - "date_last_updated": "2023-05-20T23:11:51.448Z", - "date_of_expiration": "2023-05-20T23:11:51.448Z", + "date_created": { + "type": 6, + "value": 1684624311448 + }, + "date_last_updated": { + "type": 6, + "value": 1684624311448 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624311448 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -88269,10 +100551,10 @@ "history_id": 1684624311448, "description": "Compra de 1.257.135,00 IVIP por 258,10 BRL" }, - "revision": "36a5a5ddd8f144649b480919", + "revision": "9dad4d7e60954718a6ad8ed5", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88290,12 +100572,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d1ed10ebb6eb467a9e68875c", + "revision": "aa7aa53a35c5420f92c06183", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88311,9 +100593,18 @@ "original_amount": 12.600000000000001, "total_amount": 12.600000000000001, "id": 1684624493050, - "date_created": "2023-05-20T23:14:53.050Z", - "date_last_updated": "2023-05-20T23:14:53.050Z", - "date_of_expiration": "2023-05-20T23:14:53.050Z", + "date_created": { + "type": 6, + "value": 1684624493050 + }, + "date_last_updated": { + "type": 6, + "value": 1684624493050 + }, + "date_of_expiration": { + "type": 6, + "value": 1684624493050 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -88321,10 +100612,10 @@ "currency_id": "BRL", "history_id": 1684624493050 }, - "revision": "4f4490c31ee04ca1a1686329", + "revision": "2803e6920b40472183af0b3a", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88332,10 +100623,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "428a7b4fbbc14e6cbc790b21", + "revision": "13c572607fe34ad5a0cc080b", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88353,12 +100644,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "9fd35c2c131b46449b4fc29a", + "revision": "87ebd0ea1fb1411e88c8640a", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88374,9 +100665,18 @@ "original_amount": 13, "total_amount": 13, "id": 1684627629023, - "date_created": "2023-05-21T00:07:09.023Z", - "date_last_updated": "2023-05-21T00:07:09.023Z", - "date_of_expiration": "2023-05-21T00:07:09.023Z", + "date_created": { + "type": 6, + "value": 1684627629023 + }, + "date_last_updated": { + "type": 6, + "value": 1684627629023 + }, + "date_of_expiration": { + "type": 6, + "value": 1684627629023 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -88384,10 +100684,10 @@ "currency_id": "BRL", "history_id": 1684627629023 }, - "revision": "c70ca3e870ec4b80bf170e35", + "revision": "6f270880f54440e4ab836be4", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88395,10 +100695,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "1ff5b2a386d345b3802ced5f", + "revision": "7f026a3ecd684cccaf244af8", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88416,12 +100716,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "bfaad7fefa3b49c2baa7aa07", + "revision": "b5976e33685f40cb8164b96d", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88437,9 +100737,18 @@ "original_amount": 3.2, "total_amount": 3.2, "id": 1684692136128, - "date_created": "2023-05-21T18:02:16.128Z", - "date_last_updated": "2023-05-21T18:02:16.128Z", - "date_of_expiration": "2023-05-21T18:02:16.128Z", + "date_created": { + "type": 6, + "value": 1684692136128 + }, + "date_last_updated": { + "type": 6, + "value": 1684692136128 + }, + "date_of_expiration": { + "type": 6, + "value": 1684692136128 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -88447,10 +100756,10 @@ "currency_id": "BRL", "history_id": 1684692136128 }, - "revision": "61c3b18b19774746bbee8ba4", + "revision": "8ee194c9231945e199ba5f73", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88458,10 +100767,10 @@ "content": { "type": "STRING", "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "85fa2b01babd4710b770fecf", + "revision": "71028db5b1314c6f8f160d76", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88479,12 +100788,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "8564e76971014b0991407842", + "revision": "c13126b5eb854ff18f7d7276", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88500,9 +100809,18 @@ "original_amount": 139785, "total_amount": 139785, "id": 1684710449691, - "date_created": "2023-05-21T23:07:29.691Z", - "date_last_updated": "2023-05-21T23:07:29.691Z", - "date_of_expiration": "2023-05-21T23:07:29.691Z", + "date_created": { + "type": 6, + "value": 1684710449691 + }, + "date_last_updated": { + "type": 6, + "value": 1684710449691 + }, + "date_of_expiration": { + "type": 6, + "value": 1684710449691 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -88511,10 +100829,10 @@ "history_id": 1684710449691, "description": "Compra de 139.785,00 IVIP por 28,80 BRL" }, - "revision": "4e363d1ef7e14218922ec946", + "revision": "4c426d0ca08446e8a3f986ff", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88522,12 +100840,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "5e7498c373c64b6d99563856", + "revision": "ce9beb2c023047fc94ac62b9", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88542,18 +100860,27 @@ "total_amount": 30550000, "history_id": 1689025596946, "id": 1689025596946, - "date_created": "2023-07-10T21:46:36.946Z", - "date_last_updated": "2023-07-10T21:46:36.946Z", - "date_of_expiration": "2023-07-10T21:46:36.946Z", + "date_created": { + "type": 6, + "value": 1689025596946 + }, + "date_last_updated": { + "type": 6, + "value": 1689025596946 + }, + "date_of_expiration": { + "type": 6, + "value": 1689025596946 + }, "operation_type": "regular_payment", "status": "pending", "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "b65fe10d6f0649ecae518050", + "revision": "3073c557354e4f22b1aff8a4", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820579, + "modified": 1701465820579 } }, { @@ -88561,10 +100888,10 @@ "content": { "type": "STRING", "value": "Saque de 30.550.000,00 IVIP para a carteira 0xe19A954Bb3bc15ff05fDD30BB22AE96bF4425Bf0", - "revision": "18ad4139d83d4dbb9726a384", + "revision": "510cbf9b05f6430b9759ccad", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820578, + "modified": 1701465820578 } }, { @@ -88572,12 +100899,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "85bea69fc5b648e787bf251a", + "revision": "f1a73d32f0bd465a8703b5e2", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820579, + "modified": 1701465820579 } }, { @@ -88592,22 +100919,37 @@ "total_amount": 48707317, "history_id": 1690515792985, "id": 1690515792985, - "date_created": "2023-07-28T03:43:12.985Z", - "date_last_updated": "2023-07-28T03:43:12.985Z", - "date_of_expiration": "2023-07-28T03:43:12.985Z", + "date_created": { + "type": 6, + "value": 1690515792985 + }, + "date_last_updated": { + "type": 6, + "value": 1690515792985 + }, + "date_of_expiration": { + "type": 6, + "value": 1690515792985 + }, "operation_type": "regular_payment", "status": "refunded", "status_detail": "cc_discounted_due_default", "currency_id": "IVIP", - "date_approved": "2023-07-28T03:43:12.985Z", - "money_release_date": "2023-07-28T03:43:12.985Z", + "date_approved": { + "type": 6, + "value": 1690515792985 + }, + "money_release_date": { + "type": 6, + "value": 1690515792985 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "33dff2b89af24dc99e6e1173", + "revision": "b922e21a936a40e1b1c1851f", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820579, + "modified": 1701465820579 } }, { @@ -88615,10 +100957,10 @@ "content": { "type": "STRING", "value": "Devolução de 48.707.317,00 IVIP da carteira 1385.8527.3860.3328-20", - "revision": "08d90d42e096417a8b9d4c11", + "revision": "bfad67c5121f49a1922c2437", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820579, + "modified": 1701465820579 } }, { @@ -88630,10 +100972,10 @@ "label": "Taxa de 3,00%", "amount": 1047600 }, - "revision": "c3ba02a2c32f4d65938118eb", + "revision": "17f92fa67e5346fd9cefe5fe", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88650,10 +100992,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "f96b6bad96254c508ddf955c", + "revision": "7981a35e625e434297d3a5f3", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88661,10 +101003,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1690812074851", - "revision": "cfccf1990ea545329fb717f2", + "revision": "4621380cda0f4499babf442d", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88672,10 +101014,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "974c5184c7bb41c493ebee22", + "revision": "0ef232f9312141a69d7cc53e", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88690,24 +101032,39 @@ "total_amount": 34920000, "id": 1690812074851, "history_id": 1690812074851, - "date_created": "2023-07-31T14:01:14.851Z", - "date_last_updated": "2023-08-04T21:27:13.764Z", - "date_of_expiration": "2023-07-31T14:01:14.851Z", + "date_created": { + "type": 6, + "value": 1690812074851 + }, + "date_last_updated": { + "type": 6, + "value": 1691184433764 + }, + "date_of_expiration": { + "type": 6, + "value": 1690812074851 + }, "operation_type": "recurring_payment", "payment_type": "ticket", "status": "discounted", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "discounted", - "date_approved": "2023-08-04T21:27:13.764Z", - "money_release_date": "2023-08-04T21:27:13.764Z", + "date_approved": { + "type": 6, + "value": 1691184433764 + }, + "money_release_date": { + "type": 6, + "value": 1691184433764 + }, "money_release_status": "discounted", "wasDebited": true }, - "revision": "67b49b4b3c8c4c38af1d847c", + "revision": "ecce6c663f8c48ff8c732597", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88715,10 +101072,10 @@ "content": { "type": "STRING", "value": "Saque de 34.920.000,00 IVIP para a carteira 0xe19A954Bb3bc15ff05fDD30BB22AE96bF4425Bf0", - "revision": "87aafd0a595043458cf3b1cb", + "revision": "6f560fdbc259449193ca05e4", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820579, + "modified": 1701465820579 } }, { @@ -88734,12 +101091,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "24bb2c245d2f414b964598d7", + "revision": "406625d821a54984a1b2aa0e", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88747,10 +101104,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1691235380464", - "revision": "a32524a0e7e7444a97251e89", + "revision": "5dd63a18574848c7957e7a58", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88765,9 +101122,18 @@ "total_amount": 1959842, "id": 1691235380464, "history_id": 1691235380464, - "date_created": "2023-08-05T11:36:20.464Z", - "date_last_updated": "2023-08-05T11:36:20.464Z", - "date_of_expiration": "2023-09-05T11:36:20.463Z", + "date_created": { + "type": 6, + "value": 1691235380464 + }, + "date_last_updated": { + "type": 6, + "value": 1691235380464 + }, + "date_of_expiration": { + "type": 6, + "value": 1693913780463 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -88775,10 +101141,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "f491936860e6475da54f111a", + "revision": "54a394c50ce346a395c6fee1", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88786,10 +101152,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.959.842,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", - "revision": "43464afbd53447339db1c450", + "revision": "7aca1380806d4df09dacc104", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88805,12 +101171,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "b325b35a146043f8917737ba", + "revision": "ab8222afb4ac4ddcbdc609d9", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88818,10 +101184,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1693914295943", - "revision": "22bfebdf87db49b9932e3d57", + "revision": "c361097ffd3240a1a69de120", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88836,9 +101202,18 @@ "total_amount": 1999038.84, "id": "1693914295943", "history_id": "1693914295943", - "date_created": "2023-09-05T11:44:55.943Z", - "date_last_updated": "2023-09-05T11:44:55.943Z", - "date_of_expiration": "2023-09-05T11:44:55.943Z", + "date_created": { + "type": 6, + "value": 1693914295943 + }, + "date_last_updated": { + "type": 6, + "value": 1693914295943 + }, + "date_of_expiration": { + "type": 6, + "value": 1693914295943 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -88846,10 +101221,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "932b51d1dc2646a3a5a6a8b1", + "revision": "b7c0206191ae446c92ede709", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88857,10 +101232,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 1.959.842,00 IVIP com um rendimento de +39.196,84 IVIP (2,00%) - Y12XDT27", - "revision": "b8d8d8d0ae3543eda98040e5", + "revision": "d6dd58a64d6648d39ab51979", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88868,10 +101243,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ce4dd4dbeb0f40b6988b1e08", + "revision": "9c92357da6024ed6bc6a2eb8", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88883,10 +101258,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "a930c5d1f00d44b19f292051", + "revision": "57fd080d5b2548f0956edd5f", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88900,15 +101275,18 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" }, - "revision": "64a08a0263624519988c9fa5", + "revision": "35081afa80aa4601be85b72a", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88916,10 +101294,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "16cc5dd938e74be7af4603ab", + "revision": "4109376f46334ad4a8b0f241", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88927,10 +101305,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "582a24b213d344b8a469e072", + "revision": "e26bb573f1624bc796be74d1", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88938,10 +101316,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "93cd7697819d445e8d98476d", + "revision": "3621a3d699cb4fc6b241dd8f", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88953,10 +101331,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "53b8914e7fda429f9b130852", + "revision": "07bd6d1bef304f23859197d2", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88970,15 +101348,18 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" }, - "revision": "8b10597d5a6e4951aa7a73ae", + "revision": "99137988a67d44fb8e66e558", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88986,10 +101367,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "adcaec4f12de4b868556155c", + "revision": "87b138fd0ced46378e37a037", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -88997,10 +101378,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "68d8449a29cb488abdcd1cab", + "revision": "99653cb0228249c0b8fd2f9b", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89008,10 +101389,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "979566ad8611483e8f27b93e", + "revision": "38c411556f0349fd85b811ed", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89023,10 +101404,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "ffd0a64c126947ddac0f3273", + "revision": "55e6a5957fa843379a00eef1", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89040,15 +101421,18 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" }, - "revision": "c79c226baa88479a983845f1", + "revision": "6be9f91494dc4054b49f2eb2", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89056,10 +101440,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "23f0841ffd144dbe8bbcbec0", + "revision": "d559d50e28944a30b0e487f8", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89067,10 +101451,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "b48dd2085fe64c1f93a5414a", + "revision": "7bed6144da8e4f2ab9b5ce06", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89078,10 +101462,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f805a3a932544c4fb4bcd131", + "revision": "0ad3c7d9aa2045aba61d6f6e", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89093,10 +101477,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "9a70a86c665f4395a732a5e9", + "revision": "ad3ccc4d745a42e89a0655da", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89110,15 +101494,18 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" }, - "revision": "3d8eb7e312874b05bc7368ec", + "revision": "37f12278b0c14051bd4a4a17", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89126,10 +101513,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "fe55817cf9554a34abab0b6f", + "revision": "415a2839196c49658be8eed4", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89137,10 +101524,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "a81f8a43ca2c4bc480346386", + "revision": "ae54d0916dc54802b7638d09", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89148,10 +101535,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c382f522ef02408bb9315958", + "revision": "4a7d62152e0a47edbe8b4706", "revision_nr": 1, - "created": 1701463509604, - "modified": 1701463509604 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89163,10 +101550,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "2e7b0a2b39944225bbb9c703", + "revision": "a5c90034ba8f43f8a1f1eec0", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89180,15 +101567,18 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" }, - "revision": "434919d516704c9499e043f9", + "revision": "c8bb382bc29f4bc59793b36a", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89196,10 +101586,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "3cd5a29da64a484b84ec5f17", + "revision": "f0d0f39216f4405eb27ee686", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89207,10 +101597,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "144fe2aba0f944289e7a06c9", + "revision": "7fa9fa1ffe234dbba8cfb3bc", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89218,10 +101608,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8ea21f6ae26d47cfaebfaecf", + "revision": "6dfd657653a942329330de4b", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89233,10 +101623,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "311b5342ecf34f6cbab0519d", + "revision": "560b38dab354456ba3634510", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89250,15 +101640,18 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" }, - "revision": "3e7cd2dae437460791a738be", + "revision": "b855cb192bc842fd86e338a0", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89266,10 +101659,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "b1f8462c2d244d81af42967f", + "revision": "b41e68f5d9c6464aabfb0327", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89277,10 +101670,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "d03fea76500343388348a1a6", + "revision": "7de9e48dfcb84df4893a618a", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89288,10 +101681,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "88b3100c04f741f9a208640e", + "revision": "caffc1bc76c246c8949bef4b", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89303,10 +101696,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "087e470b3a29410c83d67d97", + "revision": "e08785e71c5a4c10be5d3a18", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89320,15 +101713,18 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" }, - "revision": "6ce13cdec0204b19b01336fb", + "revision": "7747883c72f2440c93aa4afa", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89336,10 +101732,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "ca3a5110099f4aaa8ca1c74d", + "revision": "6dd2306be6234d3b91c0ea27", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89347,10 +101743,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "6ea898a62f5c4d57bdf22c3d", + "revision": "9953f7fcd7d644eb8aa66380", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89358,10 +101754,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "17ccfdf4836245388d6daf89", + "revision": "830f507c104649d5a137b539", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89373,10 +101769,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "88521da467a94d158fa50573", + "revision": "f6dc234fcd4344c8be0be80b", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89390,15 +101786,18 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" }, - "revision": "d090267141844f788254705e", + "revision": "3324379114b64138a7c6ec6e", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89406,10 +101805,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "c7b8b1ff90f14ab0ad9ea71c", + "revision": "0492a5182a3245e4a7c207ae", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89417,10 +101816,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "02ff30d45172416fb6772b00", + "revision": "8dbaac7d290c455f877fa869", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89428,10 +101827,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "5440de6b0e9040a48a4566ba", + "revision": "86d071ed7fff4e609e58fc09", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89443,10 +101842,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "bb82066498da4bd7a556c7da", + "revision": "b2181145fa7e4d0491c9643c", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89460,15 +101859,18 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" }, - "revision": "adbcdbee2b4f47678403f07e", + "revision": "35ee7237ecaa4fdd89313370", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89476,10 +101878,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "48b9ed4a0efc473990ccfc30", + "revision": "6a26bcc461954ae9966d2737", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89487,10 +101889,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "16c820c6450540bfb5aedbe9", + "revision": "bfc2b40ee32246389c1b2ded", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89498,10 +101900,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c214b765bdfb45cd9fcf294a", + "revision": "dab9f514c83441bf9a706e69", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89513,10 +101915,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "c285e23ff2414a0890e6ab64", + "revision": "51e1de52c6a942e89702fe21", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89530,15 +101932,18 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" }, - "revision": "64eaf38cb4da4f04a6a99dfd", + "revision": "00e9191fd73142db9902e9e5", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89546,10 +101951,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "d6b540f658b645cf9f495932", + "revision": "c5a5102c2be74c23abae7ea5", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89557,10 +101962,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "a920541bd6af4323b2940cd9", + "revision": "80226b84acd743e781d9f741", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89568,10 +101973,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4c93b33865494252bbb290da", + "revision": "7e1679c1cc824ff88e10a001", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89583,10 +101988,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "071a4f092e0144109e82e4ac", + "revision": "4629ac3aa43846f9bc31d3d5", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89600,15 +102005,18 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" }, - "revision": "92400c86be884dd798ebfb0e", + "revision": "2592d71b7c464bf8b3949330", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89616,10 +102024,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "e23a29e5c8a743eaa16b8dfc", + "revision": "2b098bb4ef3b43caa2854ad2", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89627,10 +102035,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "eaa2f6b14e4f434eb3ac073f", + "revision": "512826e40e814b5fba236840", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89638,10 +102046,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e90fb60951814259a78b2003", + "revision": "12bf76ced6d74a88b269a6a5", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89653,10 +102061,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "616563b537b44c6eb620930e", + "revision": "7d80b40d0b7946d1b6108fb8", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89670,15 +102078,18 @@ "total_amount": 12400, "installments": 12, "installment_amount": 1033.3333333333333, - "date_created": "2023-05-13T23:19:07.547Z", + "date_created": { + "type": 6, + "value": 1684019947547 + }, "history_id": 1684019947547, "currency_id": "BRL", "status": "paid" }, - "revision": "b67fbeb0e6e84121a8543b8d", + "revision": "59a0eeb31a9740b9a46ce1fc", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89686,10 +102097,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "be20e67db73f4060b421a015", + "revision": "fc020f019e45492ea2028c4d", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89697,10 +102108,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "e70d3af02fb247378f34159c", + "revision": "6fa8a8c8750f442cb99a20a7", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89708,10 +102119,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "dcdf3a5bd6ca41c2b510083c", + "revision": "a51b438dbe4e43d9a5b121d1", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89719,10 +102130,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e1ca016d24544ff1b1802ac1", + "revision": "8b87dc7c313c4e029f8e11f0", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89732,13 +102143,19 @@ "value": { "approvedLimit": 10000, "limitUsed": 10000, - "analysisRequested": "2023-05-13T11:07:07.691Z", - "lastReview": "2023-05-13T19:52:36.024Z" + "analysisRequested": { + "type": 6, + "value": 1683976027691 + }, + "lastReview": { + "type": 6, + "value": 1684007556024 + } }, - "revision": "55c261d16ff6498b88e8d9d2", + "revision": "e3df682266d74ba08f2c2fa5", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89750,12 +102167,15 @@ "dateValidity": 1678311387021, "totalValue": 3272.893, "currencyType": "USD", - "balancesModificacao": "2023-10-07T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696647600000 + } }, - "revision": "82dd568f5fe348eeb8bda07a", + "revision": "9b64644e51704a96bc912b6f", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89763,10 +102183,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3e55c7b3d634456986a10d4b", + "revision": "494b7363b30346659a9c9675", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89774,10 +102194,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f732d31c1976400db45f7c51", + "revision": "14569e1d6af84f7eacad9007", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89788,12 +102208,15 @@ "dataModificacao": 1696229796136, "dateValidity": 1696229796165, "currencyType": "USD", - "balancesModificacao": "2023-10-02T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696215600000 + } }, - "revision": "303bf0cba7f14dabae3b7cc7", + "revision": "a94c33afa2c44aec88fc3dfc", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820581, + "modified": 1701465820581 } }, { @@ -89805,10 +102228,10 @@ "symbol": "IVIP", "value": 29.61 }, - "revision": "bba18198947d4586a695366e", + "revision": "a1a766bfa9404a19bbb6abc7", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -89816,10 +102239,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e9b39696763e4ae091d6cdf4", + "revision": "e58a1706fb384c99b2c403ba", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -89827,12 +102250,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "bca94b36bd0845be866a19a2", + "revision": "131ec69acb91468ca7e17b44", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -89847,22 +102270,37 @@ "total_amount": 1600, "history_id": 1685110971189, "id": 1685110971189, - "date_created": "2023-05-26T14:22:51.189Z", - "date_last_updated": "2023-05-26T23:32:38.384Z", - "date_of_expiration": "2023-06-25T14:22:51.189Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-05-26T23:32:38.384Z", - "money_release_date": "2023-05-26T23:32:38.384Z", + "date_created": { + "type": 6, + "value": 1685110971189 + }, + "date_last_updated": { + "type": 6, + "value": 1685143958384 + }, + "date_of_expiration": { + "type": 6, + "value": 1687702971189 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1685143958384 + }, + "money_release_date": { + "type": 6, + "value": 1685143958384 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "ab9e7146f58b4bf083ea0c6b", + "revision": "25cd3249ab40481e981a9c66", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -89870,10 +102308,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 1404.9875.6876.3405-00", - "revision": "58dd3b8a499f4b8694544fb3", + "revision": "da5593c579134c39a0427d68", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -89891,12 +102329,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "9a4c33f03c9541d797b52211", + "revision": "a16b416880714de288583bc6", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -89912,9 +102350,18 @@ "original_amount": 5398200, "total_amount": 5398200, "id": 1685727229028, - "date_created": "2023-06-02T17:33:49.028Z", - "date_last_updated": "2023-06-02T17:33:49.028Z", - "date_of_expiration": "2023-06-02T17:33:49.028Z", + "date_created": { + "type": 6, + "value": 1685727229028 + }, + "date_last_updated": { + "type": 6, + "value": 1685727229028 + }, + "date_of_expiration": { + "type": 6, + "value": 1685727229028 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -89923,10 +102370,10 @@ "history_id": 1685727229028, "description": "Compra de 5.398.200,00 IVIP por 1.600,00 BRL" }, - "revision": "c74c3f6551c14fad888d5c20", + "revision": "9c09b9d09d3743e3b8bb0e17", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -89944,12 +102391,12 @@ "installment_amount": 5000000, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "b7e6639c2cbe4120874a17ca", + "revision": "6a1651a4db134dedb03a2914", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -89964,9 +102411,18 @@ "original_amount": 5000000, "total_amount": 5000000, "id": 1687318007517, - "date_created": "2023-06-21T03:26:47.517Z", - "date_last_updated": "2023-06-21T03:26:47.517Z", - "date_of_expiration": "2025-06-21T03:26:47.517Z", + "date_created": { + "type": 6, + "value": 1687318007517 + }, + "date_last_updated": { + "type": 6, + "value": 1687318007517 + }, + "date_of_expiration": { + "type": 6, + "value": 1750476407517 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -89974,10 +102430,10 @@ "currency_id": "IVIP", "history_id": 1687318007517 }, - "revision": "d1b951f137e544b1b0158199", + "revision": "095795a648ea41b096eb1784", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -89985,10 +102441,10 @@ "content": { "type": "STRING", "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2025", - "revision": "973a9d0f4e624ea7b5c56d27", + "revision": "f98255bcc37744bc8a0f8ce0", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90006,12 +102462,12 @@ "installment_amount": 320960, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "02cf65d3d77d4a86aabcdd2b", + "revision": "f07674cc9a704263817b0d1f", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90026,9 +102482,18 @@ "original_amount": 320960, "total_amount": 320960, "id": 1688408922424, - "date_created": "2023-07-03T18:28:42.424Z", - "date_last_updated": "2023-07-03T18:28:42.424Z", - "date_of_expiration": "2023-08-03T18:28:42.424Z", + "date_created": { + "type": 6, + "value": 1688408922424 + }, + "date_last_updated": { + "type": 6, + "value": 1688408922424 + }, + "date_of_expiration": { + "type": 6, + "value": 1691087322424 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -90036,10 +102501,10 @@ "currency_id": "IVIP", "history_id": 1688408922424 }, - "revision": "2cacdf7c09e34d4fb8f3c446", + "revision": "26244b4e1c934433bbd796b1", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90047,10 +102512,10 @@ "content": { "type": "STRING", "value": "Investimento de 320.960,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "11767b7a725e4c849b4b5d02", + "revision": "1cad629d662e4294bbc7fe88", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90068,12 +102533,12 @@ "installment_amount": 320960, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "d1f70411e52a4e45aedacdb9", + "revision": "95a05943826846489536d749", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90088,9 +102553,18 @@ "original_amount": 327379.2, "total_amount": 327379.2, "id": 1691087650613, - "date_created": "2023-08-03T18:34:10.613Z", - "date_last_updated": "2023-08-03T18:34:10.613Z", - "date_of_expiration": "2023-08-03T18:34:10.613Z", + "date_created": { + "type": 6, + "value": 1691087650613 + }, + "date_last_updated": { + "type": 6, + "value": 1691087650613 + }, + "date_of_expiration": { + "type": 6, + "value": 1691087650613 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -90099,10 +102573,10 @@ "history_id": 1691087650613, "wasDebited": true }, - "revision": "fbe002f435f74f26a740bed4", + "revision": "3a69d66f25144d109a8ec5b6", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90110,10 +102584,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 320.960,00 IVIP com um rendimento de +6.419,2 IVIP (2,00%)", - "revision": "57acb8aa8ff440cba00cf500", + "revision": "66d84b469fa140f8bbf46f02", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90129,12 +102603,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "3055348837614c2688559f1c", + "revision": "3c54d4cc8ac9485f8485299f", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90142,10 +102616,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1691114916429", - "revision": "4520ac8e2fe245a38c9241f5", + "revision": "7cb2358c747a42d1a7bb8b34", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90160,9 +102634,18 @@ "total_amount": 366669, "id": 1691114916429, "history_id": 1691114916429, - "date_created": "2023-08-04T02:08:36.429Z", - "date_last_updated": "2023-08-04T02:08:36.429Z", - "date_of_expiration": "2023-09-04T02:08:36.390Z", + "date_created": { + "type": 6, + "value": 1691114916429 + }, + "date_last_updated": { + "type": 6, + "value": 1691114916429 + }, + "date_of_expiration": { + "type": 6, + "value": 1693793316390 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -90170,10 +102653,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "cd25901c6bf942f790c6b2cd", + "revision": "f47c841c36f343848a9c9f51", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90181,10 +102664,10 @@ "content": { "type": "STRING", "value": "Investimento de 366.669,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "59d083f667854fc1ad8a6416", + "revision": "2dab3926116d43b89b71ae0d", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90200,12 +102683,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "4d62ccf6cc7b4b80843835ae", + "revision": "906e7629305f4829a0d63d10", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90213,10 +102696,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1693793335003", - "revision": "d186e971590c4d0eb90be188", + "revision": "ac2717e31a1b4eb89baba299", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90231,9 +102714,18 @@ "total_amount": 374002.38, "id": "1693793335003", "history_id": "1693793335003", - "date_created": "2023-09-04T02:08:55.003Z", - "date_last_updated": "2023-09-04T02:08:55.003Z", - "date_of_expiration": "2023-09-04T02:08:55.003Z", + "date_created": { + "type": 6, + "value": 1693793335003 + }, + "date_last_updated": { + "type": 6, + "value": 1693793335003 + }, + "date_of_expiration": { + "type": 6, + "value": 1693793335003 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -90241,10 +102733,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "7d2814d5155a414c8f6db25e", + "revision": "ce643359e63c4822a38d65d4", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90252,10 +102744,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 366.669,00 IVIP com um rendimento de +7.333,38 IVIP (2,00%) - Y12XDT27", - "revision": "7b4979f5ac9444d8b41ee18a", + "revision": "055e4d9076d04ba5a8f1b332", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90271,12 +102763,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "f4c631eeaae444a180730de6", + "revision": "0591b8f75c844463bb724d1a", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90284,10 +102776,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1693793542322", - "revision": "182d31897ec1462998c5b34a", + "revision": "169eea381c9149ffae867aa9", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90302,9 +102794,18 @@ "total_amount": 411950, "id": "1693793542322", "history_id": "1693793542322", - "date_created": "2023-09-04T02:12:22.322Z", - "date_last_updated": "2023-09-04T02:12:22.322Z", - "date_of_expiration": "2023-10-04T02:12:22.321Z", + "date_created": { + "type": 6, + "value": 1693793542322 + }, + "date_last_updated": { + "type": 6, + "value": 1693793542322 + }, + "date_of_expiration": { + "type": 6, + "value": 1696385542321 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -90312,10 +102813,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "f1ebbf97999d4d29a50955c0", + "revision": "5aa37156d3234152894337d1", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90323,10 +102824,10 @@ "content": { "type": "STRING", "value": "Investimento de 411.950,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "bc96a4543d344526bea5df79", + "revision": "c51dc3f1302b42048f141528", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90342,12 +102843,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "79e40f9696f34eeb858c9d88", + "revision": "6242a93776ee4778a85c30f1", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90355,10 +102856,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1696395329903", - "revision": "55238b344f0c484298c86d64", + "revision": "ecf255ab83084ff7a817ca9d", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90374,9 +102875,18 @@ "total_amount": 420189, "id": "1696395329903", "history_id": "1696395329903", - "date_created": "2023-10-04T04:55:29.903Z", - "date_last_updated": "2023-10-04T04:55:29.903Z", - "date_of_expiration": "2023-10-04T04:55:29.903Z", + "date_created": { + "type": 6, + "value": 1696395329903 + }, + "date_last_updated": { + "type": 6, + "value": 1696395329903 + }, + "date_of_expiration": { + "type": 6, + "value": 1696395329903 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -90384,10 +102894,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "9886340ddc4e46dabe37dac5", + "revision": "64f73191b1a44194a9dbf9c7", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90395,10 +102905,10 @@ "content": { "type": "STRING", "value": "Resgate do investimento staking de 411.950,00 IVIP com um rendimento de +8.239,00 IVIP (2,00%) - Y12XDT27", - "revision": "5c60b1479c254148895a9a74", + "revision": "d51281ccba7940fda1b7c7be", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90414,12 +102924,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "334077ea621d430caffb0e69", + "revision": "f80e0bb3659e43429471ea67", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90427,10 +102937,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1696472422028", - "revision": "f5f7bd925a6a4947a5119d48", + "revision": "da40267fa67941af80ebc4bb", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90446,9 +102956,18 @@ "total_amount": 200000, "id": "1696472422028", "history_id": "1696472422028", - "date_created": "2023-10-05T02:20:22.028Z", - "date_last_updated": "2023-10-05T02:20:22.028Z", - "date_of_expiration": "2023-11-05T02:20:21.996Z", + "date_created": { + "type": 6, + "value": 1696472422028 + }, + "date_last_updated": { + "type": 6, + "value": 1696472422028 + }, + "date_of_expiration": { + "type": 6, + "value": 1699150821996 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -90456,10 +102975,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "1ea7da51f5e94fd5806a67b4", + "revision": "31d529d008a14c64b7127aa6", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90467,10 +102986,10 @@ "content": { "type": "STRING", "value": "Investimento de 200.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "bc92b6a692054143a2653ec7", + "revision": "46ffbe189c0e4e14b4601f81", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90478,10 +102997,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d3b1bd45a608400ca771ee70", + "revision": "0dfc8e17c5384157a700e822", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90489,10 +103008,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e6f7e7a0b16e4ff88fd05f72", + "revision": "4f234c187add4a3ab3012bf8", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90503,10 +103022,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "ff8e8639b21847fa94036d0e", + "revision": "97531c3ceab344b5be49996d", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90518,12 +103037,15 @@ "dateValidity": 1684358980805, "totalValue": 82.79825942258582, "currencyType": "USD", - "balancesModificacao": "2023-10-07T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696647600000 + } }, - "revision": "82e4dc942af64af89ac7ba26", + "revision": "77cba4a3a24e47d2a86dab4a", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90535,10 +103057,10 @@ "symbol": "IVIP", "value": 239.28 }, - "revision": "bdb03a849d9343f68ec16032", + "revision": "9b96031e85cb4caf9ede8969", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90546,10 +103068,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3bdcdf30117e4041a245c0dd", + "revision": "38f922f6928243b6aceddd2e", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90557,12 +103079,12 @@ "content": { "type": "OBJECT", "value": { - "costs": [] + "costs": {} }, - "revision": "17249d538ed3439990fc9a69", + "revision": "e5340ad1d4b244939ff7b9da", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90577,22 +103099,37 @@ "total_amount": 5000, "history_id": 1689206251825, "id": 1689206251825, - "date_created": "2023-07-12T23:57:31.825Z", - "date_last_updated": "2023-07-13T00:14:19.742Z", - "date_of_expiration": "2023-08-11T23:57:31.825Z", - "operation_type": "regular_payment", - "status": "approved", - "status_detail": "accredited", - "currency_id": "BRL", - "date_approved": "2023-07-13T00:14:19.742Z", - "money_release_date": "2023-07-13T00:14:19.742Z", + "date_created": { + "type": 6, + "value": 1689206251825 + }, + "date_last_updated": { + "type": 6, + "value": 1689207259742 + }, + "date_of_expiration": { + "type": 6, + "value": 1691798251825 + }, + "operation_type": "regular_payment", + "status": "approved", + "status_detail": "accredited", + "currency_id": "BRL", + "date_approved": { + "type": 6, + "value": 1689207259742 + }, + "money_release_date": { + "type": 6, + "value": 1689207259742 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "face888afd77435fba02e3c8", + "revision": "bbf9b65364c9498d9b0df35a", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90600,10 +103137,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 5.000,00 para a carteira iVip 1429.7769.3689.8883-40", - "revision": "4e8f9d8cc3864b499b18a692", + "revision": "8543722b4f2b4384a7605fcd", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90621,12 +103158,12 @@ "installment_amount": 0, "financial_institution": "ivipcoin", "external_resource_url": "", - "costs": [] + "costs": {} }, - "revision": "24f71a9743124b5b92012110", + "revision": "da187097b23942958a45f981", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90642,9 +103179,18 @@ "original_amount": 2112486, "total_amount": 2112486, "id": 1689208259450, - "date_created": "2023-07-13T00:30:59.450Z", - "date_last_updated": "2023-07-13T00:30:59.450Z", - "date_of_expiration": "2023-07-13T00:30:59.450Z", + "date_created": { + "type": 6, + "value": 1689208259450 + }, + "date_last_updated": { + "type": 6, + "value": 1689208259450 + }, + "date_of_expiration": { + "type": 6, + "value": 1689208259450 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -90653,10 +103199,10 @@ "history_id": 1689208259450, "description": "Compra de 2.112.486,00 IVIP por 5.000,00 BRL" }, - "revision": "0aae8406a9324fe6a5dce338", + "revision": "3824fa073c0b45939e6427e7", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90664,10 +103210,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "1d584728fa2b4ea7b0ef14a2", + "revision": "5423fc11c2b140599231bd84", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90675,10 +103221,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ed017b1bb7db40a2bddbc4c9", + "revision": "3fd9da69a11a40608e37b8ac", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90689,10 +103235,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "99ba1781c2f1406e84ec4a72", + "revision": "ccf5e2b363414c8e876c7afe", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90704,12 +103250,15 @@ "dateValidity": 1689206116426, "totalValue": 1030, "currencyType": "USD", - "balancesModificacao": "2023-10-12T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1697079600000 + } }, - "revision": "6cb37b834aad472da77ab70a", + "revision": "e679d2a85bd14a6fa5854f8a", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90717,10 +103266,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e9be060be7f54101ac53a623", + "revision": "87f4f09d354d4ade8a1d07a2", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90728,10 +103277,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "e9f126d3dc9343fcb4a3caca", + "revision": "2d2d68a6806b45dd8d56bfdc", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90743,12 +103292,15 @@ "dateValidity": 1679078857171, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": "2023-10-07T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696647600000 + } }, - "revision": "3c136cd3dfc2492280d5cb28", + "revision": "61e5d536bde3418e8fedb040", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90756,10 +103308,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "dcf96d3b87bd44be809814e4", + "revision": "357074f5c9a84dfcb4117cb0", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90767,10 +103319,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "266d726b4b734532943a6a61", + "revision": "96dcc26569a34c2386dbf4f9", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90783,10 +103335,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "422c2688b9d3464fb982220d", + "revision": "2c71a3d49c804eb7a9fb78c8", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90794,10 +103346,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "84d040f7bfcc4034a4d5aa6d", + "revision": "ada6f013346e4ac8941febe2", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90806,12 +103358,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-17T18:47:13.538Z" + ".val": { + "type": 6, + "value": 1697568433538 + } }, - "revision": "accb2b6fc38f451385cf804f", + "revision": "d9d0ec7245644e6da85a3374", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90827,12 +103382,12 @@ "installments": 1, "reference_currency_id": "BRL", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "fe048360112149c0997d9ef6", + "revision": "7e1e2e42a66846e5935d4aa9", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90840,10 +103395,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/146193775313990370/history/1694976433538", - "revision": "e2eb1a49568e4c50b5e88804", + "revision": "4cb751a11726440e99733a96", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90858,8 +103413,14 @@ "total_amount": 20, "id": "1694976433538", "history_id": "1694976433538", - "date_created": "2023-09-17T18:47:13.538Z", - "date_last_updated": "2023-09-17T18:47:13.538Z", + "date_created": { + "type": 6, + "value": 1694976433538 + }, + "date_last_updated": { + "type": 6, + "value": 1694976433538 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "pending", @@ -90867,10 +103428,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "f62a86b55b63405688270a42", + "revision": "b10f6b1dbd4a4a719271e014", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90878,10 +103439,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 20,00 BRL para a carteira iVip 1461.9377.5313.9903-70", - "revision": "6203d33a50a9492aa39861e3", + "revision": "29656fafb561463fa0e3d9e0", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90889,10 +103450,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d73059d706de4cbfb0f91319", + "revision": "45e6361d49a5411f9707ae46", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90900,10 +103461,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "ce2db9e7fbbc4cff980ba192", + "revision": "23aea77da89a4f4fabc7edca", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90914,10 +103475,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "6f3210091055472b9612c652", + "revision": "d26487eb831e400f8dd07afd", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90928,12 +103489,15 @@ "dataModificacao": 1694975442899, "dateValidity": 1694975443028, "currencyType": "USD", - "balancesModificacao": "2023-10-10T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696906800000 + } }, - "revision": "bd6563bab96a46e498cb3ffe", + "revision": "b747d65f0001439488c9c9fe", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90941,10 +103505,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c9231364e1744579b42b7663", + "revision": "2ae198485fe943cb87a00a68", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90952,10 +103516,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "732549acfb25400b91fa7e31", + "revision": "d3a62631833344fda8eac61f", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90963,10 +103527,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "c63baf4a737d45d78faebaf0", + "revision": "ffba100eeb5d4df08cd76663", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90977,10 +103541,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "42ab7fdadb594cb08e6593b2", + "revision": "bf240742fe7f4b9d9a362606", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -90993,10 +103557,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "fb4941402afa4d7f9463818b", + "revision": "e0272441dd8346b7b739aef3", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -91004,10 +103568,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "07d3477500b043d5a6bd58d8", + "revision": "ac076eec7796493a8427ab05", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -91015,10 +103579,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d6ca3d195e8c48979e85eb9b", + "revision": "24fd1061dc5241aca9eb3df6", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -91031,10 +103595,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "6c5670e06c71469b8f9bb42b", + "revision": "ed7b6f2bdb254a4d9d4d4d06", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -91042,10 +103606,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "41ca317f99984735b151edf8", + "revision": "6006c3c02d9545279a06366f", "revision_nr": 1, - "created": 1701463509605, - "modified": 1701463509605 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -91057,10 +103621,10 @@ "label": "Taxa de 0.99%", "amount": 0.9900000000000001 }, - "revision": "cd08031ecf314fd7b7ae3571", + "revision": "322a9120591a4172beeffdac", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -91068,10 +103632,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "da59dc9f9ec24ac2a09e75c1", + "revision": "bea086aca1ef483ea9352699", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -91081,10 +103645,10 @@ "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "79cd12c36e314c56afb27683", + "revision": "da300f7d37814386bd963fc5", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -91092,10 +103656,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "a2257367f3694ef9a88f3012", + "revision": "6169a2447bf549c187b161f5", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -91109,10 +103673,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "7521801d68cf441e970fcfca", + "revision": "b38fb0e87003499598005f62", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -91120,10 +103684,10 @@ "content": { "type": "STRING", "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter5566184887363046119", - "revision": "26e39bb96d8e4802846bd9a3", + "revision": "f372769132e8419b8eaf22da", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -91131,10 +103695,10 @@ "content": { "type": "STRING", "value": "https://www.mercadopago.com.br/payments/55661848873/ticket?caller_id=1310149122&hash=e13553d1-ab9f-45c3-ab92-c23df003b316", - "revision": "9c48d258d81a4b97956c9576", + "revision": "f6ea31d98c114608b1a18594", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -91142,10 +103706,10 @@ "content": { "type": "STRING", "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIxklEQVR42u3dW27kNhAFUO5A+9+ldqAgwWDcYt2inGSAZMSjD8N2d0uH/Veo17h+o+sctLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/Xjvm6/jxv69Xp09Pb/nzdrePnT9+/PW/9KAfb6mfnRi0tLS0tLS0tLS0tLSbaI9C+fztvAO+7nT+PNBxf+zxeaDpBOW4t49lFS0tLS0tLS0tLS0t7QbazwCyGqdI8MudT3COmDyc8Om5hUFLS0tLS0tLS0tLS7ut9rrHiV/P+SyGrDm9+mr+87pHm7S0tLS0tLS0tLS0tLRzNFcVJQicqi5v13TclC2c3kxLS0tLS0tLS0tLS7u3Ngd36bFnaVeb7l5eGE+ydfEnLS0tLS0tLS0tLS3t+7VpSsl/8ONfzFShpaWlpaWlpaWlpaX9nbXrq40EP8PL8x4O1vfloSVNOWa5aGlpaWlpaWlpaWlp365NRZNnl787Fy1xKRYtB5qGTl5l/OQyu0dLS0tLS0tLS0tLS/s+bZqpX0aQXPdOtdQSd3WD+tMs/yusZhvdkH9aWlpaWlpaWlpaWtp3a9M+tTKeP0WCdTL/p+JaJAXLhMp6PlpaWlpaWlpaWlpa2n20JSZsRz5eJbtX7n6G7F5y1+8hP42WlpaWlpaWlpaWlnYD7Xqp2qRIh0xPbF9t84YJREtLS0tLS0tLS0tLu4W2tL+lBreauitpuqtPzo28JeDMtwp4WlpaWlpaWlpaWlra12tzSJfmhtQl1qnBbZHEm2o82y68g5aWlpaWlpaWlpaWdidt+i0PFLm6+SJX2KA9FWHeyjHLWJIR8LS0tLS0tLS0tLS0tFtop0RcKq6s5FIbeS22W6cCzul9Jaw9aGlpaWlpaWlpaWlpt9O226jTMJJ0vuJJceLolq+NUJ1JS0tLS0tLS0tLS0u7lTa1xKXgLg/gb5N9YzGSMoWmz7vhaGlpaWlpaWlpaWlpX6UtY0RS+m3cb3KWmsyQkusHRz5VbNLS0tLS0tLS0tLS0u6oTbm1Zgxkvh7Hl5ThlMcib0hLS0tLS0tLS0tLS7uT9pa/Sy1x7ZrqHGM2icI06ySlAsNESVpaWlpaWlpaWlpa2ndrz9yklu9UM3llT9qqwa3L343pLs8xLy0tLS0tLS0tLS0t7Xu0tzhx2oRWKjHHvYXtDJ5RutxKiFhnUE5B5UPMS0tLS0tLS0tLS0tL+yJt7k9r/ixjRL7XSdfypshyeoGWlpaWlpaWlpaWlnYL7VNe7gi3axJxeV7JVTrf2gLO6RuhpaWlpaWlpaWlpaXdQpsfNsLwxxT6pa65NhU44Ztk37IbjpaWlpaWlpaWlpaW9o3aEUbsj/znFOtN8V+JOx/zd0Vbv0NaWlpaWlpaWlpaWtottGkESUrnPc3tv40ladvk0uK29uG0tLS0tLS0tLS0tLTv1x6hfDL1sV0lEZdLL2sjXAovF+MnL1paWlpaWlpaWlpa2r20zT3TFuxSG3nmrrnS/nZ2GcTHjjtaWlpaWlpaWlpaWtq3a9NkkLJy7SypuzQpsm2Ty+1v6bnjcaYKLS0tLS0tLS0tLS3t27Sju6aKyDKC5OgmnNQzpwg0V11OBZe0tLS0tLS0tLS0tLQbaEs0dy4ptZnt6q5Uibmu4pyCT1paWlpaWlpaWlpa2p20V7nx1A2XR5Uc3XNSBDrl+VZfwUMukpaWlpaWlpaWlpaW9lXa6/6OM8wmuUJZ5AhxZ5MefKqwTL/R0tLS0tLS0tLS0tLuo20WrS0630anbZaqpVxiXpn9rapLWlpaWlpaWlpaWlral2mvboL/Y/lk6WhrtmBPKwByyecoAyZpaWlpaWlpaWlpaWm30JZd1bXwcepjSzm4Endez0vVpuBzlOJPWlpaWlpaWlpaWlranbQ16ktTStYJwLIj+wyfGN1q7ZOWlpaWlpaWlpaWlnZr7ehWrl0hxrzypJF2UXYbi6bvgZaWlpaWlpaWlpaWdjttEwSmELG0xNXutZSrS0NQ0vm6WZW0tLS0tLS0tLS0tLRv1n6+N5VKNh1tizLLUXrb8oGOru5z+gQtLS0tLS0tLS0tLe27tW3727I/beSM37FYmT1l8koAWb85WlpaWlpaWlpaWlraLbQpMGwjxkUR5hG65lI9Z1qPPb16PGT3aGlpaWlpaWlpaWlpX6VNe9LKp2rur0SHacxJwre72BZBJS0tLS0tLS0tLS0t7eu1i23UzWTHfMjmpK1sijG/OVOFlpaWlpaWlpaWlpb2Zdo2sVfzbe2Ukm/MHClB5QivHrHGk5aWlpaWlpaWlpaWdgPtFEo2JZCLR5y54HL6CtIMyvSl0dLS0tLS0tLS0tLS7qNNDWnT59NU/24Afwwln7ZlX4tcIi0tLS0tLS0tLS0t7fu1TQy3HkbS1mmWCLQa2xuUWlBaWlpaWlpaWlpaWtoNtG37W44YU21kXWxdijBTVFr75765s5uWlpaWlpaWlpaWlvaN2tHNh2xCyacwtNZVTrJ1KElLS0tLS0tLS0tLS7uPNl2L4Y9tiHiUz+aEXTME5TPtN120tLS0tLS0tLS0tLTv1o75Wg3qn4LAVHBZQslUdVnd/2CqPy0tLS0tLS0tLS0t7Vu0Rwggm/LJsii7ni8VV5bzTVHp34kiaWlpaWlpaWlpaWlpX6ld1FqO0Op2hM9WSj7p6gRp7xotLS0tLS0tLS0tLe3e2jTycQr42mUAeWdbM8a/nJSWlpaWlpaWlpaWlnZvbTti/7on4s4wXySFg7V1rg0bH3Z209LS0tLS0tLS0tLSvlK7xufosM39jfvu61VfXOmue551SUtLS0tLS0tLS0tL+z5tLXzMTWpnSAA+FmF+5u+a0LQ0xy2rLmlpaWlpaWlpaWlpad+m/f9ftLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/TPsHcCgepoe7LrMAAAAASUVORK5CYII=", - "revision": "b9df56cf30204588ad3d4514", + "revision": "e9a5c0eb0c8d49169fd4728d", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -91153,10 +103717,10 @@ "content": { "type": "ARRAY", "value": {}, - "revision": "cb9683e3f7c9466286c721c4", + "revision": "6537e6dccba2481faa17cb81", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -91171,19 +103735,28 @@ "total_amount": 100.99, "history_id": 1678652275580, "id": 55661848873, - "date_created": "2023-03-12T16:17:56.428-04:00", - "date_last_updated": "2023-03-13T16:21:02.000-04:00", - "date_of_expiration": "2023-03-13T16:17:56.084-04:00", + "date_created": { + "type": 6, + "value": 1678652276428 + }, + "date_last_updated": { + "type": 6, + "value": 1678738862000 + }, + "date_of_expiration": { + "type": 6, + "value": 1678738676084 + }, "operation_type": "regular_payment", "payment_type": "bank_transfer", "status": "cancelled", "status_detail": "expired", "currency_id": "BRL" }, - "revision": "8077d4edf42f40a08b8f9ad8", + "revision": "66d10277ccb24078af7e8f14", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -91191,10 +103764,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1470.0699.3684.7822-00", - "revision": "980c47aaeee34e6b953d0248", + "revision": "b1bcec4548714867bc2d0439", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820582, + "modified": 1701465820582 } }, { @@ -91202,10 +103775,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "617ee839bd1849d49dd974ea", + "revision": "f0e6fffe588c4b43b524a763", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820582, + "modified": 1701465820583 } }, { @@ -91218,10 +103791,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "c02f51aa96bd465984e061b2", + "revision": "991a884c89f34d2e9fdf8206", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91229,10 +103802,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "8b5825c4177a4b39844be0c7", + "revision": "002ab226c2544f849ff25d04", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91240,10 +103813,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "3a28afabeb9e41ab97e3fb82", + "revision": "6c578c0bb106449cbaa18391", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91251,10 +103824,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "f88e61046253495cb3237417", + "revision": "1f9c841dcaed4216bf8de760", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91265,10 +103838,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "6587298118184a7cb7b57f33", + "revision": "35d3472d90304050ad816553", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91280,12 +103853,15 @@ "dateValidity": 1685823720836, "totalValue": 0, "currencyType": "USD", - "balancesModificacao": "2023-10-09T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1696820400000 + } }, - "revision": "7ed5fbddfba24deea54a545c", + "revision": "127fca55d77d4fc2b17596f9", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91293,10 +103869,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b8a392e8d5e340ee8ccb0d7f", + "revision": "a3d8791cf16e443995f8225f", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91304,10 +103880,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "040e41fb900a4b3d83dcf87f", + "revision": "636c1feb76b648618adf578b", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91320,10 +103896,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "c104fbf18df14b6a8fefb141", + "revision": "5b0ce8fa3e394e2f85fa6806", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91331,10 +103907,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "d12f8adf199742d0908f0da4", + "revision": "4788e2a2be04425faba20eb7", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91342,10 +103918,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "b08d37f353c14a2e9630e06b", + "revision": "3f266057bfa84d3db210e929", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91357,10 +103933,10 @@ "dateValidity": 1696981676516, "currencyType": "USD" }, - "revision": "b1c9c825fb39466283bfa841", + "revision": "aba989502c6940c4bb7c19bb", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91368,10 +103944,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "bbc390d6aad143babf50d2ef", + "revision": "402cabd2c02d4c459d5f2a0b", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91380,12 +103956,15 @@ "type": "OBJECT", "value": { ".type": "date", - ".val": "2023-10-05T23:48:45.001Z" + ".val": { + "type": 6, + "value": 1696549725001 + } }, - "revision": "357e7385ffce4479aa20809a", + "revision": "991bb31cdf594980a6210893", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91401,12 +103980,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "fa8ff75ab45244ad8bb8d4fd", + "revision": "48e049c71cd946f18b8a8567", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91414,10 +103993,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/152557644739400160/history/1693957725002", - "revision": "7f472a7c09874750a9c39330", + "revision": "0f81742869374b9c979d6fa4", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91432,23 +104011,35 @@ "total_amount": 1000, "id": "1693957725002", "history_id": "1693957725002", - "date_created": "2023-09-05T23:48:45.002Z", - "date_last_updated": "2023-09-06T00:56:31.127Z", + "date_created": { + "type": 6, + "value": 1693957725002 + }, + "date_last_updated": { + "type": 6, + "value": 1693961791127 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", "currency_id": "IVIP", "base_currency_id": "IVIP", "status_detail": "accredited", - "date_approved": "2023-09-06T00:56:31.127Z", - "money_release_date": "2023-09-06T00:56:31.127Z", + "date_approved": { + "type": 6, + "value": 1693961791127 + }, + "money_release_date": { + "type": 6, + "value": 1693961791127 + }, "money_release_status": "approved", "wasDebited": true }, - "revision": "178cfd602ca2422a9bfde985", + "revision": "c0c2f17116d240f8b2fe9e1e", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91456,10 +104047,10 @@ "content": { "type": "STRING", "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 1525.5764.4739.4001-60", - "revision": "5b9716befe0341519d258fa3", + "revision": "926e1466775a474f820fca5c", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91475,12 +104066,12 @@ "installments": 1, "reference_currency_id": "IVIP", "financial_institution": "ivipcoin", - "costs": [] + "costs": {} }, - "revision": "56294c568a1d4398afd78028", + "revision": "0fd054cdc50040a19087f8bd", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91488,10 +104079,10 @@ "content": { "type": "STRING", "value": "https://ivipcoin-api.com/v1/finances/info_by/152557644739400160/history/1694615393430", - "revision": "ea31a053c7f247b2ab11459c", + "revision": "e3d19c74b0c44f859d602561", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91506,9 +104097,18 @@ "total_amount": 1000, "id": "1694615393430", "history_id": "1694615393430", - "date_created": "2023-09-13T14:29:53.430Z", - "date_last_updated": "2023-09-13T14:29:53.430Z", - "date_of_expiration": "2025-09-13T14:29:53.429Z", + "date_created": { + "type": 6, + "value": 1694615393430 + }, + "date_last_updated": { + "type": 6, + "value": 1694615393430 + }, + "date_of_expiration": { + "type": 6, + "value": 1757773793429 + }, "operation_type": "regular_payment", "payment_type": "ticket", "status": "approved", @@ -91516,10 +104116,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "e80437031d6048de901a229f", + "revision": "68a8fdf44c18437196b616f8", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91527,10 +104127,10 @@ "content": { "type": "STRING", "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 13/09/2025 - P9A02KSL", - "revision": "d641cde587bc4b8799833520", + "revision": "615d3c62c0db4721ae971411", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91538,10 +104138,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "7e80a9be3c954918a7df84ce", + "revision": "e21ae9cd1e3b44788bde6f54", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91549,10 +104149,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "275d2e48281049dca6492350", + "revision": "2767e71e60f04254a9b322cf", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91563,10 +104163,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "e84d574397aa4eaeb60c84e6", + "revision": "baee28f3245740939c308544", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91577,12 +104177,15 @@ "dataModificacao": 1693436516681, "dateValidity": 1693436516720, "currencyType": "USD", - "balancesModificacao": "2023-09-19T03:00:00.000Z" + "balancesModificacao": { + "type": 6, + "value": 1695092400000 + } }, - "revision": "5ac3040ecb8241c6b54be06f", + "revision": "be2b0bd3dce04e3c8a774efa", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } }, { @@ -91590,10 +104193,10 @@ "content": { "type": "OBJECT", "value": {}, - "revision": "4fd098464d9041a295f6a432", + "revision": "75f57d4027c9483d94931cc7", "revision_nr": 1, - "created": 1701463509606, - "modified": 1701463509606 + "created": 1701465820583, + "modified": 1701465820583 } } ] \ No newline at end of file diff --git a/test/resultWithPath.ts b/test/resultWithPath.ts index 283f6429..372c13b8 100644 --- a/test/resultWithPath.ts +++ b/test/resultWithPath.ts @@ -137,33 +137,41 @@ function transform(json: Record, prefix: string = ""): Result[] } function filterKeysFromObject(obj) { - const filteredObject = {}; - function checkIsValidDate(string) { // Expressão regular para validar o padrão da string de data - const datePattern = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d{3})?(-\d{2}:\d{2})?$/; + const datePattern = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d{3})?([+-]\d{2}:\d{2})?Z?$/; if (datePattern.test(string)) { let date = new Date(string); - // console.log(date.getTime()); return !isNaN(date.getTime()); } return false; } - for (const key in obj) { - if (checkIsValidDate(obj[key])) { - let newDate = new Date(obj[key]); - filteredObject[key] = { - type: 6, - value: newDate.getTime(), - }; + function processObject(inputObj) { + const filteredObject = {}; + + for (const key in inputObj) { + if (checkIsValidDate(inputObj[key])) { + let newDate = new Date(inputObj[key]); + filteredObject[key] = { + type: 6, + value: newDate.getTime(), + }; + } else if (typeof inputObj[key] === "object" && inputObj[key] !== null) { + // Recursively process nested objects + filteredObject[key] = processObject(inputObj[key]); + } else { + // Copy other types of values as is + filteredObject[key] = inputObj[key]; + } } - return obj; + + return filteredObject; } - return filteredObject; + return processObject(obj); } // Se não há chaves não objeto, adiciona um resultado com objeto vazio From f3fd0c43d8c6ba7a9e994c2b4affda4230c98058 Mon Sep 17 00:00:00 2001 From: iamrosada Date: Mon, 4 Dec 2023 16:06:59 +0300 Subject: [PATCH 22/36] feat: change type string ti number --- test/resultWithPath.ts | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/test/resultWithPath.ts b/test/resultWithPath.ts index 372c13b8..8aa006d5 100644 --- a/test/resultWithPath.ts +++ b/test/resultWithPath.ts @@ -7,7 +7,7 @@ type NodeValueType = keyof typeof nodeValueTypes; type Result = { path: string; content: { - type: NodeValueType; + type: number; value: Record | string | number | any; revision: string; revision_nr: number; @@ -34,24 +34,23 @@ function generateShortUUID(): string { const shortUUID = fullUUID.replace(/-/g, "").slice(0, 24); return shortUUID; } - -function getType(value: unknown): NodeValueType { +function getType(value: unknown): number { if (Array.isArray(value)) { - return "ARRAY"; + return nodeValueTypes.ARRAY; } else if (value && typeof value === "object") { - return "OBJECT"; + return nodeValueTypes.OBJECT; } else if (typeof value === "number") { - return "NUMBER"; + return nodeValueTypes.NUMBER; } else if (typeof value === "boolean") { - return "BOOLEAN"; + return nodeValueTypes.BOOLEAN; } else if (typeof value === "string") { - return "STRING"; + return nodeValueTypes.STRING; } else if (typeof value === "bigint") { - return "BIGINT"; + return nodeValueTypes.BIGINT; } else if (typeof value === "object" && (value as any).type === 6) { - return "DATETIME"; + return nodeValueTypes.DATETIME; } else { - return "EMPTY"; + return nodeValueTypes.EMPTY; } } @@ -90,7 +89,7 @@ function transform(json: Record, prefix: string = ""): Result[] arrayResults.push({ path: currentPath, content: { - type: "ARRAY", + type: nodeValueTypes.ARRAY, value: {}, revision: generateShortUUID(), revision_nr: 1, @@ -98,7 +97,7 @@ function transform(json: Record, prefix: string = ""): Result[] modified: Date.now(), }, }); - } else if (valueType === "OBJECT") { + } else if (valueType === nodeValueTypes.OBJECT) { results.push(...transform(currentValue as unknown as Record, currentPath)); } else { nonObjectKeys[key] = currentValue; From 55c92d7e8ec69099a3075b4581ca235fe3221fc1 Mon Sep 17 00:00:00 2001 From: iamrosada Date: Tue, 5 Dec 2023 23:52:15 +0300 Subject: [PATCH 23/36] feat: change functions to classes --- package.json | 4 +- .../database/Node/NodeRestructureJson.ts | 116 + .../database/Node/NodeResultWithPath.ts | 252 + test/outputResultWithPathJSON.json | 42432 ++++++++-------- test/restructureJson.ts | 111 - 5 files changed, 21586 insertions(+), 21329 deletions(-) create mode 100644 src/server/services/database/Node/NodeRestructureJson.ts create mode 100644 src/server/services/database/Node/NodeResultWithPath.ts delete mode 100644 test/restructureJson.ts diff --git a/package.json b/package.json index 595c9bae..e240dc5a 100644 --- a/package.json +++ b/package.json @@ -15,8 +15,8 @@ "private": false, "repository": "github:ivipcoin/ivipbase", "scripts": { - "dev": "nodemon ./test/restructureJson.ts", - "dev2": "nodemon ./test/resultWithPath.ts", + "dev": "nodemon ./src/server/services/database/Node/NodeRestructureJson.ts", + "dev2": "nodemon ./src/server/services/database/Node/NodeResultWithPath.ts", "build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:packages && echo Done!", "build:clean": "rimraf dist", "build:esm": "tsc -p tsconfig.json && npx tsc-esm-fix ---target='dist/esm'", diff --git a/src/server/services/database/Node/NodeRestructureJson.ts b/src/server/services/database/Node/NodeRestructureJson.ts new file mode 100644 index 00000000..ab4d16f2 --- /dev/null +++ b/src/server/services/database/Node/NodeRestructureJson.ts @@ -0,0 +1,116 @@ +import { MongoClient } from "mongodb"; +import fs from "fs"; + +// Class encapsulating the data restructuring functionality +class NoderestructureJson { + private readonly uri: string; + private readonly client: MongoClient; + + constructor(uri: string) { + this.uri = uri; + this.client = new MongoClient(uri); + } + + // Establish a connection to the MongoDB database + private async connectToDatabase() { + await this.client.connect(); + } + + // Close the connection to the MongoDB database + private async closeDatabaseConnection() { + await this.client.close(); + } + + // Restructure JSON data based on specified logic + private restructureJson(entries) { + const result = {}; + const KEY_THAT_MUST_BE_ARRAY = ["costs"]; + entries.forEach((entry) => { + const { path, content } = entry; + const parts = path.split("/"); + let current = result; + + for (let i = 0; i < parts.length; i++) { + const part = parts[i]; + + if (i === parts.length - 1) { + let key = part.replace(/__+/g, "_").replace(/^_+|_+$/g, ""); + const { value } = content; + + if (!current[key]) { + key = key.split("[")[0]; + + // Check if the key must be an array + if (KEY_THAT_MUST_BE_ARRAY.includes(key)) { + current[key] = []; + + if (Object.keys(value).length) { + current[key].push(value); + } + } else { + current[key] = value; + } + } + } else { + if (!current[part]) { + current[part] = {}; + } + + current = current[part]; + } + } + }); + + return result; + } + + // Fetch data from MongoDB collection + private async fetchDataFromMongoDB() { + const collection = this.client.db("root").collection("teste"); + const limit = 50; + + console.log(new Date().getSeconds(), "antes da busca"); + const resultData = await collection.find().toArray(); + const afterLimit = resultData.slice(0, limit); + + return afterLimit; + } + + // Convert JSON data to string and save it to a file + private convertToJsonAndSaveToFile(dataWithOutPathFromMongodb) { + console.log(dataWithOutPathFromMongodb); + + const fileAddress: any = "./test/outputRestructuredJSON.json"; + fs.writeFile(fileAddress, dataWithOutPathFromMongodb, (error) => { + if (error) { + console.error("Algum erro aconteceu", error); + } else { + console.log(fileAddress); + } + }); + + return dataWithOutPathFromMongodb; + } + + // Main method orchestrating the data restructuring process + public async main() { + try { + await this.connectToDatabase(); + + const entries = await this.fetchDataFromMongoDB(); + const dataAfterToBeRestructured = this.restructureJson(entries); + const dataFromMongoConvertedToJSON = JSON.stringify(dataAfterToBeRestructured, null, 2); + + console.log(this.convertToJsonAndSaveToFile(dataFromMongoConvertedToJSON)); + + console.log(new Date().getSeconds(), "final da busca"); + } finally { + await this.closeDatabaseConnection(); + } + } +} + +// Usage +const uri = "mongodb://manager:9Hq91q5oExU9biOZ7yq98I8P1DU1ge@ivipcoin-api.com:4048/?authMechanism=DEFAULT"; +const dataRestructure = new NoderestructureJson(uri); +dataRestructure.main().catch(console.error); diff --git a/src/server/services/database/Node/NodeResultWithPath.ts b/src/server/services/database/Node/NodeResultWithPath.ts new file mode 100644 index 00000000..24796cbe --- /dev/null +++ b/src/server/services/database/Node/NodeResultWithPath.ts @@ -0,0 +1,252 @@ +import fs from "fs"; +import path from "path"; + +import { randomUUID } from "crypto"; + +type NodeValueType = keyof typeof nodeValueTypes; + +type Result = { + path: string; + content: { + type: number; + value: Record | string | number | any; + revision: string; + revision_nr: number; + created: number; + modified: number; + }; +}; + +const FILE_ADDRESS = "../../../../../test/__movement_wallet__.json"; + +const nodeValueTypes = { + EMPTY: 0, + OBJECT: 1, + ARRAY: 2, + NUMBER: 3, + BOOLEAN: 4, + STRING: 5, + DATETIME: 6, + BIGINT: 7, + BINARY: 8, + REFERENCE: 9, +} as const; + +class NodeJsonTransformer { + private generateShortUUID(): string { + const fullUUID = randomUUID(); + const shortUUID = fullUUID.replace(/-/g, "").slice(0, 24); + return shortUUID; + } + + private getType(value: unknown): number { + if (Array.isArray(value)) { + return nodeValueTypes.ARRAY; + } else if (value && typeof value === "object") { + return nodeValueTypes.OBJECT; + } else if (typeof value === "number") { + return nodeValueTypes.NUMBER; + } else if (typeof value === "boolean") { + return nodeValueTypes.BOOLEAN; + } else if (typeof value === "string") { + return nodeValueTypes.STRING; + } else if (typeof value === "bigint") { + return nodeValueTypes.BIGINT; + } else if (typeof value === "object" && (value as any).type === 6) { + return nodeValueTypes.DATETIME; + } else { + return nodeValueTypes.EMPTY; + } + } + + private transform(json: Record, prefix: string = ""): Result[] { + const results: Result[] = []; + const nonObjectKeys: Record = {}; + const arrayResults: Result[] = []; + let otherObject; + + for (const key in json) { + const currentPath = `${prefix.replace(/^\//, "")}/${key.replace(/\*\*/g, "")}`; + const currentValue = json[key]; + const valueType = this.getType(currentValue); + + if (typeof currentValue === "string" && currentValue.length >= 50) { + arrayResults.push({ + path: currentPath, + content: { + type: valueType, + value: currentValue, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }); + } + + if (Array.isArray(currentValue) && currentValue.length > 0 && currentValue.length <= 49) { + // Se for um array com valores, itera por cada elemento + for (let i = 0; i < currentValue.length; i++) { + results.push(...this.transform(currentValue[i] as Record, `${currentPath}[${i}]`)); + } + // Adiciona um resultado para o array vazio + arrayResults.push({ + path: currentPath, + content: { + type: nodeValueTypes.ARRAY, + value: {}, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }); + } else if (valueType === nodeValueTypes.OBJECT) { + results.push(...this.transform(currentValue as unknown as Record, currentPath)); + } else { + nonObjectKeys[key] = currentValue; + let ob = nonObjectKeys; + otherObject = Object.entries(ob) + .filter(([key, value]) => typeof value !== "string" || value.length < 49) + .reduce((acc, [key, value]) => { + acc[key] = value; + return acc; + }, {} as Record); + } + } + + // Adiciona um único resultado para chaves não objeto + + if (Object.keys(nonObjectKeys).length > 0) { + if (typeof otherObject === "object" && otherObject !== null) { + const nonObjectResult: Result = { + path: `${prefix.replace(/^\//, "")}`, + content: { + type: this.getType(nonObjectKeys), + value: this.filterKeysFromObject(otherObject), + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + + if (nonObjectResult.path) { + results.push(nonObjectResult); + } + } else { + console.error("otherObject is not an object"); + } + } + + // Se não há chaves não objeto, adiciona um resultado com objeto vazio + if (Object.keys(nonObjectKeys).length === 0) { + const nonObjectResult: Result = { + path: `${prefix.replace(/^\//, "")}`, + content: { + type: this.getType({}), + value: {} as any, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + if (nonObjectResult.path) { + results.push(nonObjectResult); + } + } + + // Adiciona resultados para arrays + results.push(...arrayResults); + + return results; + } + + private filterKeysFromObject(obj) { + const checkIsValidDate = (string) => { + // Expressão regular para validar o padrão da string de data + const datePattern = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d{3})?([+-]\d{2}:\d{2})?Z?$/; + + if (datePattern.test(string)) { + let date = new Date(string); + return !isNaN(date.getTime()); + } + + return false; + }; + + const processObject = (inputObj) => { + const filteredObject = {}; + + for (const key in inputObj) { + if (checkIsValidDate(inputObj[key])) { + let newDate = new Date(inputObj[key]); + filteredObject[key] = { + type: 6, + value: newDate.getTime(), + }; + } else if (typeof inputObj[key] === "object" && inputObj[key] !== null) { + // Recursively process nested objects + filteredObject[key] = processObject(inputObj[key]); + } else { + // Copy other types of values as is + filteredObject[key] = inputObj[key]; + } + } + + return filteredObject; + }; + + return processObject(obj); + } + + private readPath() { + const fileName = FILE_ADDRESS; + const filePath = path.join(__dirname, fileName); + + fs.readFile(filePath, "utf8", (err, data) => { + if (err) { + console.error("Error reading the file:", err); + return; + } + + try { + var dataToArray = JSON.parse(data); + + const result = this.transform(dataToArray); + + const dataJSONModel = JSON.stringify(result, null, 2); + + function afterRestructureSaveIntoJSONFile(dataWithOutPathFromMongodb) { + console.log(new Date().getSeconds(), "started"); + + const fileAddress: any = "./test/outputResultWithPathJSON.json"; + fs.writeFile(fileAddress, dataWithOutPathFromMongodb, (error) => { + if (error) { + console.error("Algum erro aconteceu", error); + } else { + console.log(fileAddress); + } + }); + + return dataWithOutPathFromMongodb; + } + + afterRestructureSaveIntoJSONFile(dataJSONModel); + } catch (parseError) { + console.error("Error parsing JSON:", parseError); + } + }); + console.log(new Date().getSeconds(), "end"); + } + + // Public method to initiate the transformation + public startTransformation() { + this.readPath(); + } +} + +// Usage +const transformer = new NodeJsonTransformer(); +transformer.startTransformation(); diff --git a/test/outputResultWithPathJSON.json b/test/outputResultWithPathJSON.json index 4e4f765b..0dec5fa2 100644 --- a/test/outputResultWithPathJSON.json +++ b/test/outputResultWithPathJSON.json @@ -2,76 +2,76 @@ { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "2528.00700001", "symbol": "BRL", "value": 494.23 }, - "revision": "7531bc0c66f847da8413e498", + "revision": "faf6f6c7bb49483dbd5a6e59", "revision_nr": 1, - "created": 1701465820478, - "modified": 1701465820478 + "created": 1701809344813, + "modified": 1701809344813 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "1499269.00000000", "symbol": "IVIP", "value": 158.48 }, - "revision": "ca0f59e5e087425f91745173", + "revision": "c307b345b97c4f87b1143c38", "revision_nr": 1, - "created": 1701465820478, - "modified": 1701465820478 + "created": 1701809344814, + "modified": 1701809344814 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "0993a6dd6da848d3acd89c27", + "revision": "12196d5aab6a4f6e8dde1ed7", "revision_nr": 1, - "created": 1701465820478, - "modified": 1701465820478 + "created": 1701809344814, + "modified": 1701809344814 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/barcode", "content": { - "type": "OBJECT", + "type": 1, "value": { "content": "23796927400000606493380261019404283200633330" }, - "revision": "f01a33e59fcd477cbb6123e0", + "revision": "e4b0f8ab8d134c43a85852d0", "revision_nr": 1, - "created": 1701465820478, - "modified": 1701465820478 + "created": 1701809344814, + "modified": 1701809344814 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "17a09f2caf014114b4c0cb7c", + "revision": "150ff8a2f37f4e81a6ef724f", "revision_nr": 1, - "created": 1701465820478, - "modified": 1701465820478 + "created": 1701809344814, + "modified": 1701809344814 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": "10194042832", @@ -83,38 +83,38 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "94341b6b6806427d8959701f", + "revision": "20e130c1eff442acac0514e3", "revision_nr": 1, - "created": 1701465820478, - "modified": 1701465820478 + "created": 1701809344815, + "modified": 1701809344815 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1311772470/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772470&payment_method_reference_id=10194042832&hash=af674271-1e58-4fd7-be5a-99a2285e1e5a", - "revision": "ae33173fc33849f096e93bba", + "revision": "ea548de7dbe94a2ba527f739", "revision_nr": 1, - "created": 1701465820478, - "modified": 1701465820478 + "created": 1701809344814, + "modified": 1701809344814 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "4858a98192e34f549141ab68", + "revision": "a187163eb10140e9936d9abb", "revision_nr": 1, - "created": 1701465820478, - "modified": 1701465820478 + "created": 1701809344814, + "modified": 1701809344814 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -141,55 +141,55 @@ "currency_id": "BRL", "history_id": "1677138262468" }, - "revision": "f1a4a7f9b2074f23b8c4a6c1", + "revision": "2e71b7761df54b9bbad8a37f", "revision_nr": 1, - "created": 1701465820478, - "modified": 1701465820478 + "created": 1701809344815, + "modified": 1701809344815 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138262468/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 603,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", - "revision": "dad0148ae27b4367a123963b", + "revision": "0ff46433dfcc426397c930ae", "revision_nr": 1, - "created": 1701465820478, - "modified": 1701465820478 + "created": 1701809344814, + "modified": 1701809344814 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/barcode", "content": { - "type": "OBJECT", + "type": 1, "value": { "content": "23799927400000595493380261019404380900633330" }, - "revision": "f76d59f9a90e45a780b43d67", + "revision": "d8bf2b93736a4572b0da024d", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344815, + "modified": 1701809344815 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "6e5fe2ee906046f7a55e57ec", + "revision": "cfe80f185e8b4f018ddce221", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344815, + "modified": 1701809344815 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": "10194043809", @@ -201,38 +201,38 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "e79d5eacde7b4806a9313004", + "revision": "5b055a9fa8d644e8b0f0f03d", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344815, + "modified": 1701809344815 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1311772488/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772488&payment_method_reference_id=10194043809&hash=73ef0e48-e863-4567-bdcb-8711a40d76b2", - "revision": "080b7fb216d14dfc968167de", + "revision": "94bdb431d6394275830388e3", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344815, + "modified": 1701809344815 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "1b1e06224b954f27a9d2f04c", + "revision": "08101bb0d2fa4064b7988ef5", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344815, + "modified": 1701809344815 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -259,77 +259,77 @@ "currency_id": "BRL", "history_id": "1677138655788" }, - "revision": "baf4a01a2f2644268827d65d", + "revision": "3845ce39009244e0b870d4ac", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344815, + "modified": 1701809344815 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 592,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", - "revision": "2924db24429b46bd9a2e6aaa", + "revision": "36d211bd1d264b5a9c69f6f9", "revision_nr": 1, - "created": 1701465820478, - "modified": 1701465820478 + "created": 1701809344815, + "modified": 1701809344815 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c85ce7e933364dfe95f75ea5", + "revision": "e8650f300ef04b37b7729172", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "f03fe3ef2d044f0fab6c3c4a", + "revision": "039d4f6f02f940a292ba99be", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "45aacd589db547cebf43e494", + "revision": "d91014327b604064a1e2abbd", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 4.95 }, - "revision": "966eba807b874ed4aa101a05", + "revision": "e90fd71dc8c14f04809ee551", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -337,60 +337,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "b0dfc4694d4949b197ba3b25", + "revision": "6e482039a93a4a3fb1555f32", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406504.955802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter1312722165630407FD", - "revision": "d410c0a3a2d74bf89ddf92b6", + "revision": "329111f3791147aeba9cc2be", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344815, + "modified": 1701809344815 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1312722165/ticket?caller_id=1310149122&hash=db7e8cb4-20ed-4664-aa3c-fa50b3f2d6e8", - "revision": "d33e10de8dc04b6d8bfc6274", + "revision": "d4c16a2382a84d85bae938b0", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344815, + "modified": 1701809344815 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dQY7kNgwFUN3A97+lb+Agi8zY4qeqkgyCjPxq0ehu29Jz7QhS5Lh+o885aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXbMn+PP/x0/Lhw/7vvrwp/P3y78XOX+2znGc8fxc9H7Ao8LE4OWlpaWlpaWlpaWlvYl2mnbn4s8ANN9d0V6q2nb826cLty/h6SipaWlpaWlpaWlpaV9gXYKIHN02ER9047liRqBtvtmBi0tLS0tLS0tLS0t7Uu1Ics25++mz6d0Xo1Kyw9aWlpaWlpaWlpaWlraEAlO/7vn6prPnXeWMHRa4FMwS0tLS0tLS0tLS0tL+wJtwi9qMq+QpjtK2WZ5qyMcwDuWxZ+0tLS0tLS0tLS0tLSv0LZdSv7bH/+2pwotLS0tLS0tLS0tLe1vqs2f81lIeZaeI/mo25UbTKbeJPcfnyy0tLS0tLS0tLS0tLR7a5tjbevDbDkCnV5oPFN8R/4y2vejpaWlpaWlpaWlpaV9hTb1F8ld+Ef5szQjaUoq7xulw3GpWPOipaWlpaWlpaWlpaV9ibYEhnWo2lQgOe29ePYM6bwrD9luT9fR0tLS0tLS0tLS0tLurk2bpXNx7adN8U15vil5OBlLAvCipaWlpaWlpaWlpaV9jbaumZJ9ZQp2msp2lsb/Ye+xrLD81FOFlpaWlpaWlpaWlpZ2P2065XaU5Fx7Gi49kfN8o0sFnuFbumhpaWlpaWlpaWlpaV+jPT6tubil7jM1N0lZu9RMsgSzBy0tLS0tLS0tLS0t7Wu0NZ3XduFPQWWeeD3Kn+U10m4jtpqkpaWlpaWlpaWlpaXdWZvSdCkwTJ3578+eZbM8FqDpNzlZaGlpaWlpaWlpaWlpX6bN09FS/u7MOb3y9ke5uf0KpndeVl3S0tLS0tLS0tLS0tJuqi1ptWaI9RQdLppEHiEgrWfq0hf0dcxLS0tLS0tLS0tLS0u7mzYHhmmlx3Ipp9fGiWWjM2T8TlpaWlpaWlpaWlpa2hdqp+aPI/+WaiMnQGo3kjpK5rEAX9aI0tLS0tLS0tLS0tLSbqQtgeGj50hJyR0hvJwyfmWzUbqepBizHbdNS0tLS0tLS0tLS0u7u/ZYpvhSV5EUcrah5JGPun0Rn9LS0tLS0tLS0tLS0r5Hm0+lHTlX1xZStqOw8xG7Ky/1OYqkpaWlpaWlpaWlpaXdSpvrL5uyyHSOLeXq8ty1qepy5MReiGNpaWlpaWlpaWlpaWm3164XTiFnexBukeKrlZiL16WlpaWlpaWlpaWlpX2fNrlbYyrHvC9Vo8gSqVZy/qpoaWlpaWlpaWlpaWl315Ym+nUK9tFVTp5d3Fl7nZSrV5iWXVOLtLS0tLS0tLS0tLS0u2vzEOsRyieP/GrpSFzp5d/MyJ4C13SVlpaWlpaWlpaWlpZ2f+0oLfsXFZFpYPUo8V9bZpneOQ3U7rJ7tLS0tLS0tLS0tLS0+2nzwOrpXNy5GHFdjE3VZTk6t4o7P+QiaWlpaWlpaWlpaWlpt9JeeUL1p6b8q+nW5Thd09ekxJPjb/RUoaWlpaWlpaWlpaWl3UWbKidHmLvW1GSmksopTkypu3U55jcxLy0tLS0tLS0tLS0t7Uba8ttVyixLsq/J33Wd+furqUXKMoqkpaWlpaWlpaWlpaXdStsOQbvHhFNHyatk8iZ3KrMsTxyh9HI8T83R0tLS0tLS0tLS0tK+QJsUOeo7+/RbvHkq6pxyeuXmdkoALS0tLS0tLS0tLS3tC7Rl4vVRXqPk4K5FW5JplfI9fNfun5aWlpaWlpaWlpaW9iXaqzu4dpVHU+VkygKW0PQMj6W+lDnnSEtLS0tLS0tLS0tLu7N2WjNHkRWQ84FpbNr5VYVlO4uNlpaWlpaWlpaWlpZ2d20bRZY2kM3s62mL+31Xzt/lqstHtElLS0tLS0tLS0tLS/sm7Zll6ZBaORw3wkG46eoR0nln19KkTm+jpaWlpaWlpaWlpaXdXVvuOEO3xyNUSY7liOv0Vov83Zji0+eL09LS0tLS0tLS0tLS7qxN7nSY7dM+TWQZeo6MnCMcoU8KLS0tLS0tLS0tLS3tC7S5IvIqW5Szclf5reQIR6nEzK/R9jChpaWlpaWlpaWlpaV9gTZPrT5LcLfoQ1ILOMu5uLOUcpZw9QwlmrS0tLS0tLS0tLS0tK/QXiH91tRftquHLebQdHq/dhZb+B8tLS0tLS0tLS0tLe322qnm8f7olRvwT6HkPQKt75fXezyRelDS0tLS0tLS0tLS0tK+QrvIra06O5aYMF04ywG3FEpOGcTPNaK0tLS0tLS0tLS0tLRbaVM4OG0xBZppslpeYHRdSo4wKLuJVGlpaWlpaWlpaWlpaV+ibeol2xHXKZ23OFiXcn9fFGHS0tLS0tLS0tLS0tK+RztCEm+UtiQ5/jvKzLaSzrsyJceOpbckLS0tLS0tLS0tLS3tztoUMaZh1xMvB5/JWDcqzUjOUqfZRZG0tLS0tLS0tLS0tLTbaseTlxqKtA39z9F8ju7mo3Sj/LLqkpaWlpaWlpaWlpaWdj9t+qTYcb1w7ihZe/6nTij5xN1FS0tLS0tLS0tLS0v7Em0O/Y6culs0k2zGXi+iyFWJ5ueYl5aWlpaWlpaWlpaWdh9tivVSQ5F6c+rCPzUomRZt8V9HkbS0tLS0tLS0tLS0tFtqPwWQj8LMdFaujUVzGNo0opwstLS0tLS0tLS0tLS0b9ee4SBc8y6pOnPqOZLx1z/I7tHS0tLS0tLS0tLS0r5AW/9Myb42z1dCydrSJM3c7r4RWlpaWlpaWlpaWlra7bUL/Hgea0s7HlmbajKnVyvNJHPISUtLS0tLS0tLS0tLu7e2Fj7mCC/Ff+f3wWeKNu//mzpU0tLS0tLS0tLS0tLSvkX7///Q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v4y7R8J/gb3YnjEPQAAAABJRU5ErkJggg==", - "revision": "66feefc2406d48a6928eb1e5", + "revision": "b25b61dd6e954d76aacc0261", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344815, + "modified": 1701809344815 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "f6006460bf774a3588734827", + "revision": "da97871ac6284ce7912a7c9e", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -417,77 +417,77 @@ "currency_id": "BRL", "history_id": "1677139564865" }, - "revision": "391ccfb205fa416b84a772ac", + "revision": "3c1a20e367c84c31a8ab7060", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677139564865/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "dbe7c8aa461d4713a2ba5d17", + "revision": "ccd72093de66469ba93868ee", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344815, + "modified": 1701809344815 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "71bfcc61df4b4bcfa051e831", + "revision": "9107eda8bdd44005a1f2b2d1", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "157d6f1aea084cdda5f21fe9", + "revision": "72ee852b39fb4143947228a9", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "6c051f7fb06c4141b6c4e3fc", + "revision": "bbe5fb425baf4c9390e8e6b7", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "61b9bf6a9b4249588059a529", + "revision": "ba72d0beb8ce49c2bc08f59c", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -495,60 +495,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "52f3b7f15ad145f8a44198e6", + "revision": "a096958b00a64c119443950e", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dW27kNhAFUO5A+9+ldqAgQGZGYl1S7ckgiMmjD8NttcRD/xXqwXZ9o+tstLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLR/Xtv66/j7b8fPG8fP7/24cX/s8fHn29s/P67w5R93f328r/Zg0NLS0tLS0tLS0tLSbqI97iHb/SUPQLfYfdm0q7xsS/ju/1BUtLS0tLS0tLS0tLS0G2i7ALKL/7rny4bOZ/B5PIPKX295hJdp3cygpaWlpaWlpaWlpaXdVPsrDixB4HEHFEoXGJ7hBS3sj5aWlpaWlpaWlpaWlrYPAs9nJebjt1yx2UoNZcoHpn8GLS0tLS0tLS0tLS3t3tqELwWX6eOgTa7ri0vbTcWav1cjSktLS0tLS0tLS0tL+921wykl/+2PfztThZaWlpaWlpaWlpaW9ptq83XeH0zFlfMpk+m3bjZJmjI5stDS0tLS0tLS0tLS0q6tPUsEV3rW6o151WXe7lGWvO/qHCX7aGlpaWlpaWlpaWlp19Z2lDTjcRg25sBwWJ1Zw9A8TLK1NooiaWlpaWlpaWlpaWlp19PmlNyZZ/mXprc0UbILTRPqmJyMPZ1SQktLS0tLS0tLS0tLu542fSN9DEm3Nlx7fqVTtcsLaGlpaWlpaWlpaWlpd9S20vQ2nB45Kam88p675GFXdTmZUElLS0tLS0tLS0tLS7u2NiXnym/1nLS3pOCXmuNqtvC96pKWlpaWlpaWlpaWlnYdbRcxpla369kX192YFVcOz2dLLXHp9bS0tLS0tLS0tLS0tKtrS07v8VQJDI9yN405SXdLpHqMJlSetLS0tLS0tLS0tLS0O2k/emcNKifjImub3Hx/af4JLS0tLS0tLS0tLS3tZtpUV3nHH9NmtpoF7Io1S6BZt1vuXrS0tLS0tLS0tLS0tDtpu6s0uA2rKWeZwTzpf76rt+mRtLS0tLS0tLS0tLS0a2vToMcr83Jz3Bn6565R11ydUPm1qktaWlpaWlpaWlpaWtpVtFeZG5J627qALw+EHD6W1vhgV7S0tLS0tLS0tLS0tPtou2VTH9tVetaGtZspKk3VmTlvOK26pKWlpaWlpaWlpaWlXU1bjp9uZchIV1eZe+Vqh1yZQVkzefOKTVpaWlpaWlpaWlpa2n204Rv9kdRdg9t9Q0d4Vcudb4lX4ti3KJKWlpaWlpaWlpaWlnYpbZehK9HhIKdXUoHH6FUtjyDpUobTvCEtLS0tLS0tLS0tLe3y2hLDnaFoMgWQLYSDx+QF5fVnmFX5lRpRWlpaWlpaWlpaWlra1bSlSnIWReYmulrFOT8tO9+lpaWlpaWlpaWlpaXdR9s91VVEDgK+ble5L+4Mg0xqrWVZqISctLS0tLS0tLS0tLS0K2vzUWrtGeu1Fp9I8/2HvXLd/6YLTfPoE1paWlpaWlpaWlpa2i20Lcdw8863kufr1j7y/2EeMY6CT1paWlpaWlpaWlpa2pW1RXHkHZSQMw2OPEJM2N7GRZbFj09ykbS0tLS0tLS0tLS0tOtoaxtaTr8NjqnOUWQbnc82G4fSpRFpaWlpaWlpaWlpaWk30Q4qJ/Oh2IPjsXPlZP1KnjI5L9akpaWlpaWlpaWlpaXdQtv91m2jDoQcbu2KVz1jbb7kSxRJS0tLS0tLS0tLS0u7kLbLt5XgbliEeZZuuBxUHmXjKdBMh7nR0tLS0tLS0tLS0tJups3npF35ALVSOdnKMMlyDsAxChbPcsDbexRJS0tLS0tLS0tLS0u7inZY+JgW62K9roWtVE4OdlDWOHMoSUtLS0tLS0tLS0tLu4W2C/i6vxVZnR45aaJr4ZC2Wo7Zvfk95qWlpaWlpaWlpaWlpV1KmyonC6o9z10bJOzejseeHbed/kZLS0tLS0tLS0tLS7uJNlVJ1jxfurrosMyMHCQPJ7HjRzNVaGlpaWlpaWlpaWlpl9KmGsoUDnbZuKy4cjtdkdWQcxqf0tLS0tLS0tLS0tLSbqCtEV5O+6U8X03dDXeVizDPEne+RJG0tLS0tLS0tLS0tLQLaRMqhX4f1GSWDF06B+AMZZb17Ouv1IjS0tLS0tLS0tLS0tJ+b223dq6IPMuM/py/m62dyjG732hpaWlpaWlpaWlpaXfUlhRfC3Mk65Wm/3eyHE/Wj+XQgIOWlpaWlpaWlpaWlnYnbcnQnWEOSVdhWW/MtzachBIqLN+mlNDS0tLS0tLS0tLS0q6mHSbY8hKzrF1J3Q0mnJRA88rnuNHS0tLS0tLS0tLS0u6jLSMkj7e/TcZFDuo0U9ovhbAfV13S0tLS0tLS0tLS0tKuon2sU16XxkqeoentnI6V7FZL7kEnHS0tLS0tLS0tLS0t7era8s6zLFHe1M19rDm9e7KvfpxUXeaKTVpaWlpaWlpaWlpa2pW1d08CpPjvEQSmx8r3BlWXOXYshwHQ0tLS0tLS0tLS0tKurC2FlOeoLPLMvDTkf5j2++B8tg9jXlpaWlpaWlpaWlpa2sW0LRx41g0eSUWTVx5VkvKBJXBNj31YdUlLS0tLS0tLS0tLS7uQNl3DEDEflF03+ZYUvJ7pweGztLS0tLS0tLS0tLS0G2iHgVw6q3r49mHEmA9zS2cD1NCUlpaWlpaWlpaWlpZ2E+2RA8huQ8MQsexguJf2nFdyTXY/jiJpaWlpaWlpaWlpaWmX1KYqyRRA3uPOo8R/k8fSSMph1WWbTSmhpaWlpaWlpaWlpaXdSFujvtCpFmf0lwGT9bHSdvd5do+WlpaWlpaWlpaWlnYPbVo29cWlu3ny5FWeyC1xBy0tLS0tLS0tLS0t7XbaCb5m3roJ/rnqsg7qHxZXFt5FS0tLS0tLS0tLS0u7l7YWPqZmtnsA2XW0XWWuSZ5NMpiEUg54m1Zd0tLS0tLS0tLS0tLSrqb9/1+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+xf7jbt53CJCnQAAAABJRU5ErkJggg==", - "revision": "40bbe9bfd543419fbe4cdcef", + "revision": "949dc62b4172421c8b31d306", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b61520400005303986540520.205802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131177255663042F4F", - "revision": "2bb557817c264e049d1e078c", + "revision": "7b7db93ff24d4d6d8cb82228", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1311772556/ticket?caller_id=1310149122&hash=317c7ec8-4131-44a3-a5d4-81d3bd707a5f", - "revision": "dade0f9934904a6aa914b2db", + "revision": "fb623663851e43aaba59777b", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "aa828c8f3f894455afe6469d", + "revision": "e94527e98ef940cdb1fcd514", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -575,55 +575,55 @@ "currency_id": "BRL", "history_id": "1677140212667" }, - "revision": "2c2ab9541bde44ec91aa18b7", + "revision": "e8a8becc8519416e875e674b", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677140212667/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "2c600f8a95e842b9b6fd8637", + "revision": "6128b9325b884747be337440", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/barcode", "content": { - "type": "OBJECT", + "type": 1, "value": { "content": "23791927400000051993380260600338163800633330" }, - "revision": "bfb79928e65b4b01805b387b", + "revision": "c967ad397846450384154776", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3.99%", "amount": 1.9949999999999999 }, - "revision": "ede55c6103544d60ba875c7a", + "revision": "e885ed00fdcb4c398422c1db", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": "6003381638", @@ -635,38 +635,38 @@ "installment_amount": 0, "financial_institution": "10850221" }, - "revision": "f118ec7286f84e2d9af10d0c", + "revision": "72874e41d62e4d54914a97e1", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1311772574/ticket?caller_id=1310149122&payment_method_id=pec&payment_id=1311772574&payment_method_reference_id=6003381638&hash=676a5569-4884-42d3-9e67-bfdb72450090", - "revision": "cd8675178173409a8f7c674b", + "revision": "34cd6df90b0f4da2979a2c15", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "78ea86cec6f6441f9c4465c7", + "revision": "d4e2bc68208e479480b031be", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -693,55 +693,55 @@ "currency_id": "BRL", "history_id": "1677141074675" }, - "revision": "a6750d1e284342b5b3e87948", + "revision": "eb1091cd4b874fd1be90470b", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677141074675/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "2360b02559bd46c19d844105", + "revision": "924ec797ee0346578f90a0fc", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/barcode", "content": { - "type": "OBJECT", + "type": 1, "value": { "content": "23792927400000075493380261019405215900633330" }, - "revision": "3d7a116a52ed457fbf990b49", + "revision": "a600bbc29c5349d58c4fee0b", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "b885f5b63d44417eb8ebadbe", + "revision": "256fe1c8fc7f47ebaada217f", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": "10194052159", @@ -753,38 +753,38 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "a88a0f4282444eb1975cac73", + "revision": "dc2bc96ed5724beaad98ea93", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1312722387/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1312722387&payment_method_reference_id=10194052159&hash=0fea3a36-6354-4019-aec5-950b140fc21c", - "revision": "9bae00e0c4284b808cb3e184", + "revision": "5a751d7e5c154307bdcb308c", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "76bfab93f31a4b7389fb628c", + "revision": "e3e31ea7ef34496b942f5c2b", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -811,55 +811,55 @@ "original_amount": 72, "history_id": "1677143332353" }, - "revision": "cd9bf33ea9514842aff324e9", + "revision": "38ec6c68679d4b0981faa81b", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677143332353/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 72,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "e76e7eaebffa44d8beb98158", + "revision": "8624d2b435634b93b205c0f5", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344816, + "modified": 1701809344816 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/barcode", "content": { - "type": "OBJECT", + "type": 1, "value": { "content": "23791927400000803493380261019405351400633330" }, - "revision": "748d9ed3e09f427eb928acf3", + "revision": "3570810ee2ee49f6ab903078", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "09e639b37e5f42c0b39ef4bc", + "revision": "34a653946ef3428ebfb42476", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": "10194053514", @@ -871,38 +871,38 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "3353df26ade74e82b7d3e7ab", + "revision": "915bd2bcbbe446828ce20dfb", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1311772850/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772850&payment_method_reference_id=10194053514&hash=7f37a98d-46a5-4410-9837-bd450923e2de", - "revision": "1c705db936f04f0aa08b02f7", + "revision": "a152f170efc04138adbec14e", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "f64de41a203a49aa9576d9a5", + "revision": "4db7e21fc38a4ee7afd58bbf", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -929,77 +929,77 @@ "currency_id": "BRL", "history_id": "1677146361537" }, - "revision": "1ed953b2ba434d4cbb11a36e", + "revision": "45e3ec30cd564a89b6d3b87e", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677146361537/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "ec974486918540c8829bc125", + "revision": "ad34466848a24c9e92a8e539", "revision_nr": 1, - "created": 1701465820479, - "modified": 1701465820479 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "548fde989a7342abbc9f1859", + "revision": "5765f31fa7ad4df38e1fdc84", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "ded32fbbddb74370b4eacf13", + "revision": "8b9498e5126c4d2c842627c5", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a182051bd0da48d48d15ec72", + "revision": "600595ca8b4b4d24b5ce3134", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "ff810c50826749b4bbfee545", + "revision": "c708800cf1ea42f7a5f1ebff", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -1007,60 +1007,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "c725885b664c422a91f71bd5", + "revision": "ac61b1e954554cc3aa7ab0d8", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/payments/55087284163/ticket?caller_id=1310149122&hash=d505f218-1883-4e4e-8be7-431e65cdf030", - "revision": "f24218ea34ee43eeacb39d6e", + "revision": "02fb8224df984021a3d7a2bc", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter55087284163630456C0", - "revision": "c20016bdedc54664afbf0dfa", + "revision": "450161c77282489b8a896d93", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dW27kNhAFUO2A+98ld6BgkMlAzbpF2cggyEhHH4bt1uOo/wpVvDzOP+iYBy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS3t79ce6zF+/G/8+uCf335cVU9ZPh1/3/349ZxjecbP/32cfH3aB4OWlpaWlpaWlpaWlvYl2nEt2ZY/r8YKvZ4yPnkfpywvdPXM600zg5aWlpaWlpaWlpaW9gXahXK9YH6WkktNeG7IbaVaysuxYdDS0tLS0tLS0tLS0r5TO0OXrQKKp3ndpTAs7UFaWlpaWlpaWlpaWlraUM1tysGlqBybOvFu9DLdhZaWlpaWlpaWlpaW9n3ajN/NWrbV5rV2nJ9v0HxBd8OftLS0tLS0tLS0tLS0T9fuZP/hj3+bqUJLS0tLS0tLS0tLS/uHavMxSyMuhYws6SPLOGbrWW56b6GlpaWlpaWlpaWlpX22dpYKrtxp5v7dVdscJcZ/WU5X8/233T1aWlpaWlpaWlpaWtqHaq+/LSvVZhcSuVSbZ4klWd55uV877RkeSUtLS0tLS0tLS0tL+2RtucnxCTg+e3pHADTQJY2ydPxSj/AI70JLS0tLS0tLS0tLS/sCbYkROUL6yNGVg0eoLEferq3UiU22JC0tLS0tLS0tLS0t7cu0eV/qNFI58pxmqRjbVW4zr5UrXxUtLS0tLS0tLS0tLe1btIW8iyXJaf2z1H8Z0NaJZ1dj0tLS0tLS0tLS0tLSvkI7w01SEVgTJZdUkTRmmffSbr6CvFaOlpaWlpaWlpaWlpb22dpl4DJNYpbCcG7GMcsL1ePqmZvKkpaWlpaWlpaWlpaW9iXakYvAtEyuZEvW6vB67Qhfxixzmnnp3KClpaWlpaWlpaWlpX2N9sg5+0tzbgGkXJN2W4D84u3b36f609LS0tLS0tLS0tLSPkibhiH3lWAOLakpJeXa2hTcfDpoaWlpaWlpaWlpaWlfo505aSQFPS43Tp6lz5c6iPs4lO3UJS0tLS0tLS0tLS0t7WO1bZk3Sjcuhfen3t+SBdmuritF6ritImlpaWlpaWlpaWlpaR+kLVGOZ9fOG6XubBfHlfvVkvOu0DxpaWlpaWlpaWlpaWlfoz1KJZgS/EspeeQlbItsKSXLF3R0tx+0tLS0tLS0tLS0tLQv0YYPY4uvLQJzvkjaGXvXLdwGmdDS0tLS0tLS0tLS0r5AWxfClaMlN+OY+dlnecn9ECYtLS0tLS0tLS0tLe3TtUtmZLnTcs9js2F1WQ13my3Z5prQ0tLS0tLS0tLS0tK+R5sDHJt68voGcztNmWY3P85rZze3q+FoaWlpaWlpaWlpaWmfqD1LW61NJGnDSNpqs/Da2vHbe8PR0tLS0tLS0tLS0tI+Q7s8cTlyKH9tBd6NaM6u2XeG5w5aWlpaWlpaWlpaWto3ab+wIG3pt7W85eTvV4yl2UdLS0tLS0tLS0tLS/sW7UIuq9fO/L9rFZnKxmMzdZlLzu/0ImlpaWlpaWlpaWlpaZ+hTR21Am0rxjqnWYYw6zhmu/wth6DQ0tLS0tLS0tLS0tK+QFtQI3f8yrP3k5N16VyZ4pz5MlpaWlpaWlpaWlpa2vdo27nKtsbM6f/Lp81dSm5/jvGnpaWlpaWlpaWlpaV9kXbpqKW+XOrBlXbe0rqrm2LnhmLTMqSlpaWlpaWlpaWlpX2PdsntL8XdzO28zZbZM3QBF1TztK4qpaWlpaWlpaWlpaWlfbJ2mXQso5IjLHBb4vmbYc3rmGWb6r9swT3i10JLS0tLS0tLS0tLS/ts7VGqyLJr9VnuXk5O/cAj9/TS1GV+NVpaWlpaWlpaWlpa2ldpU0ZILhG/usptaQC2+2anzQBoaWlpaWlpaWlpaWlfpj1LvGOuE0dY0Za3SOtl7c7YX64iaWlpaWlpaWlpaWlpH6UdeZBynzRSZjLH198lT13WK2hpaWlpaWlpaWlpaV+hzZR5twPbUhNuFsKdYe/rWnJuvhZaWlpaWlpaWlpaWtoXaHMof02ALKvcaubIdllb7PilBXjbrEtaWlpaWlpaWlpaWtrnadto/9KSa7t2M6ypO8KfR958rR30pKWlpaWlpaWlpaWlfbo2FYupMCwF31mMeSbzCCvfmqd9OdWflpaWlpaWlpaWlpb2Udr0nKPbFPsMbzBD+shRYiCXtl+qVO+nLmlpaWlpaWlpaWlpaZ+oXarIXbRIKgJT2biZxFzOS6Xpd7p7tLS0tLS0tLS0tLS0f7y2DD6mxx6liZemKUsYySy7st1NXebKkpaWlpaWlpaWlpaW9vHa3LA7SuZIUdQaM62Gy6c0G2rfpJTQ0tLS0tLS0tLS0tI+Tbvwypjl7R5ry5hlvvPI7cH2e7iZuqSlpaWlpaWlpaWlpX2QdnlYmoNMvb99ZH/aULudukzn3fciaWlpaWlpaWlpaWlpn6JNq9dKx2+ELuDIOZKpb7gY2z23v5jqT0tLS0tLS0tLS0tL+0RtjSpJbbq2qCxl6PKms1sDt2yKPUKcJS0tLS0tLS0tLS0t7bO16UgjlblYnLkVuFyRCsjUIyx5JbS0tLS0tLS0tLS0tC/QluTHFB7S/jnK++XtrOdd+n/eMpuWlpaWlpaWlpaWlvYV2hEKyCZupHTjUkhkbdOV7dWaXbC/UkXS0tLS0tLS0tLS0tI+UltKuo96MidFtrutfVwWnl0ftL+WlpaWlpaWlpaWlpb2jdrRzVrOLkcyLadLxeIMG2ofZZ0dLS0tLS0tLS0tLS0tbb8NW0kfqfgUaVJ4MzT7zttdsGlpaWlpaWlpaWlpaR+pzfhaRS53b1+tnHfkD5YMk2VOk5aWlpaWlpaWlpaW9iXatKxtlmT+pWxMc5ppJjPtwFbuN8NiO1paWlpaWlpaWlpa2rdo//8HLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLe1v0/4FnajhovaFiOwAAAAASUVORK5CYII=", - "revision": "4d918a9dff684bcc94357092", + "revision": "f5334506c7704652b85907c5", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "0e373eea52c743df93ed2a5b", + "revision": "0fcc1b00d7aa4d66901df64f", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1087,77 +1087,77 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "c497231756614653a90dae6c", + "revision": "16372985003e41d9a219146d", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340892851/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "3534362b5e374329a4f826f5", + "revision": "70ce2931f99e4b18b6498f6a", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b8c907c20bd4472d82dbdbd1", + "revision": "a8b8c7438fa645b091235e9a", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "d0c9ecaa4eb9468d9f835143", + "revision": "f55d0f91850840fbb1c200a3", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "20115b172137421e891ba8f0", + "revision": "fd33a3361b354b5ea7628880", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "cfbfa4f4ac4e4ceb9608febc", + "revision": "a5cceb0cabd348478dbc5ab4", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -1165,60 +1165,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "68a3c47d62cb444d8e2a0047", + "revision": "9f3724d2777c4dbfabffcbd9", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/payments/55094059932/ticket?caller_id=1310149122&hash=bd1d3d80-d457-4eee-a797-cd6306ae8561", - "revision": "65301bd5a0e443a1822ddfa7", + "revision": "121bb4ae4a004209909eeb7b", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter550940599326304816F", - "revision": "deded5eaa6e0443082693b39", + "revision": "c5b86d2965824a1da84005c9", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI6UlEQVR42u3dWw7bNhAFUO5A+9+ldqAiRR8S5w7toEXRUEcfQRLL4pH/BvMa1y90nYOWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaW9t/Xjvk6fvzf8dcHf/7tx7dut/z+z78f8Menjw+mW/6+b7r5ftp4nkFLS0tLS0tLS0tLS/sK7XEP2aZ/3o3TuxzPW6Y3eNwyvdD0zuV51/x4WlpaWlpaWlpaWlra7bUT5f6F8xlKXvnmHEU2kWoJL48Fg5aWlpaWlpaWlpaW9p3aM2TZKqB4mtedAsMpFqWlpaWlpaWlpaWlpaWN0dwiHJyCymMRJ+bSy0fecB3M0tLS0tLS0tLS0tLSvkKb8bXWsnytRpv32PF8vkHzA30q/qSlpaWlpaWlpaWlpd1dOxb9bv/hH/90pgotLS0tLS0tLS0tLe0vqs3X+UzTnXnIyDR9ZCrHbD3TQz9baGlpaWlpaWlpaWlp99aeJYIrLWxnCS+nF2qvMsZ/aqer8/2X2T1aWlpaWlpaWlpaWtpNtfe/1YgxdcOtO9rK867SYtdWe5bIkpaWlpaWlpaWlpaWdm9tecgI0WFKzl05u3d/jSOPkFwv2f7cDUdLS0tLS0tLS0tLS7ufNgeLo6umTOQEHaFYc3yeLXl+07tHS0tLS0tLS0tLS0u7lTbvpU4llUeo0zzCo5okXo4nazkmLS0tLS0tLS0tLS3te7T5nGYsyWJa//SNBGjjxKuLMWlpaWlpaWlpaWlpaV+gzWMg01DHOlFymiqSyizzLu3mJ8jBJy0tLS0tLS0tLS0t7e7aMWJQWaaPHKWuMpVjlheq191zLiJLWlpaWlpaWlpaWlraV2jXI/tzeHmW/rkESOMny6fp3OPjDgJaWlpaWlpaWlpaWtrdtCWjdnVFk8dirkmp2BxdieZ0+BkKOC9aWlpaWlpaWlpaWtrXaNv6y/G5ty2Ffu26tpoUXHx60NLS0tLS0tLS0tLSvkabor5pRdoYq3zgCDP6py63K/fKTUd2gSYtLS0tLS0tLS0tLe0LtI+KyHuY12y3LpSa+8sJwKu85BSpfll1SUtLS0tLS0tLS0tLu4t2McpxSucdJe5sm+Pa3F+aUjIZww9ES0tLS0tLS0tLS0u7tzaFjXWCfwkl0xtMx46SKFz8QClSpaWlpaWlpaWlpaWlfYE2fFh71togsKYHS6Iw7dKu13KQCS0tLS0tLS0tLS0t7Qu0YzG8/1vyF4P/c3nnVHU5Psy6pKWlpaWlpaWlpaWl3Uo7zYxMLXHlmc2gx9IN93G2ZJ5rcq2qLmlpaWlpaWlpaWlpaXfT5in8Z6m/vH/QlGOmasr7zdfz/dIatjMORqGlpaWlpaWlpaWlpd1be5XyyXYiSTuMJI+GrCHiInb8yd1wtLS0tLS0tLS0tLS0u2inE6crrVxLqcByHWGrdkr2XeHcg5aWlpaWlpaWlpaW9k3aLxrSpnxby0tFmD8VMeZRJbS0tLS0tLS0tLS0tC/QTuTSvXZ13XDnMmwci6rLHHJ+n4ukpaWlpaWlpaWlpaXdRZsyagWa0n5XniNZijBrOWbb/lZSgbS0tLS0tLS0tLS0tG/RFtSRM35TweUi43eEHGGq4jzz12hpaWlpaWlpaWlpad+jbcPGNsZMa6/Tp+kpZW5/HuNPS0tLS0tLS0tLS0v7Iu0XqbuUgyslmnW4ydT+lhOKzbm0tLS0tLS0tLS0tLTv0eaR/U2cOAWLhVdzf20TXT5jxKiUlpaWlpaWlpaWlpZ2Z+1U6VhKJY/Q4DaN55+CwKMrs0xT/acV3Ef8WWhpaWlpaWlpaWlpaffWNqFfnr1/Lm+e8oEj5/QWAeT53ZQSWlpaWlpaWlpaWlraLbVpRkieXLLucqt5vkTJI00eWwJoaWlpaWlpaWlpaWnfpK3ZuE9B5Xim6a4wquQMnXarzdhfR5G0tLS0tLS0tLS0tLRbaY9cSJm61+4Pubq92R/fJVdd1m/Q0tLS0tLS0tLS0tK+QpvGO+YF2Efun8vNbKNsVkt9dvd84NFbaGlpaWlpaWlpaWlpt9eWcSMrQGl6O0JLXE7TxYxfyiAuZ13S0tLS0tLS0tLS0tLup03TR6arTJlsxpe0rW7Tj5HqPrut2rS0tLS0tLS0tLS0tDtrp0CueM4u4LsW5ZjT88pbNad9PdWflpaWlpaWlpaWlpZ2K206p5lXcs/ppZhwXaw5QqTaJAC7qktaWlpaWlpaWlpaWtr9tCXqO8Im61UQ+MWe63TfIjRd5iJpaWlpaWlpaWlpaWm31KYJItMckrQUe1FXmYLKI8Sn9fDlVH9aWlpaWlpaWlpaWtr9tNP0kfLPKfN2lVAy/a0dOlnmn4zwQp9rRGlpaWlpaWlpaWlpabfSTjm4WmaZY8xmvVr+HY6cHkxFmCXrSEtLS0tLS0tLS0tLu7f2flhTB5krIlcj+9NC7bbqMt33ORdJS0tLS0tLS0tLS0u7izaNi7xXP05puvN5xHq+SIo7m/65Nm9IS0tLS0tLS0tLS0v7Eu14RnhNmm6R7Btd2ebIe9zSfelwWlpaWlpaWlpaWlra3bXrqK/wzm6M/5HffvHONUeYvkZLS0tLS0tLS0tLS7u7dszXsTi7DTkXf6Rxke0C7PF1do+WlpaWlpaWlpaWlnYf7bEIIEv811ZiHl0V5xXWqzVbsL+JImlpaWlpaWlpaWlpabfUppCuPbvdcz3NHCnlk/W7OYQdqykltLS0tLS0tLS0tLS079COUFzZ7FhbtNOlYDEt1B6lz46WlpaWlpaWlpaWlvbt2qOMEbkfO55nT4nCM480KbwzJPuub7Zg09LS0tLS0tLS0tLS7qfN+DqbJG2yTq9WJpKM/EG5JS14o6WlpaWlpaWlpaWl3V07coNb3qxWn17mizzKJ9MGtvK8MzTb0dLS0tLS0tLS0tLSvkX7/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817W9Rdol/1PnhcgAAAABJRU5ErkJggg==", - "revision": "44fa3c4560054886ba6c920e", + "revision": "e0d8a5abda534dcbba3df5a1", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "96d3ac64a0c847df9c1d9db1", + "revision": "66c739de3e7e4dafb9c0e9df", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1254,77 +1254,77 @@ }, "wasDebited": true }, - "revision": "7c38b1d8306a48eb96fbf4b6", + "revision": "87a83d924a5b47408d762bc0", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677340905412/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "02a3c132f5e14c2b9eb24fb7", + "revision": "2ea90959d0c84d38ab3bbed6", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344817, + "modified": 1701809344817 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "964976b53d0042fa8e4f05e7", + "revision": "c9f478ce679c4ea099e64187", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "2263150cb6e245c58205d931", + "revision": "d82b7b5fe8c64de4aba3ee6a", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "272ec49881fe4005937c4b11", + "revision": "81059871c7bd4623a5e23eb2", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c5fbf53e6f6548d6ab448edd", + "revision": "c873edbe18b147d9bd8599c0", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -1332,60 +1332,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "f21878e9d3ae4635ab39a948", + "revision": "99659a4d2e2d4a4ca9cd726c", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/payments/55095321700/ticket?caller_id=1310149122&hash=6c50eaaf-2a5f-4be4-a6b8-fd6340b379a5", - "revision": "6c43d91334b74d888d59e3c4", + "revision": "cd32c4a9790d4c7ab433331e", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dW47cNhAFUO5A+9+ldqDAiB8t1i12T2IEsXj0YXhGI+lIfxdVLI7rDzrOQUtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v7+7VjPo5vvzt+nvjxv29XzX/36wbfzx5/3338fM6YnvH9d7c/fn1avT0tLS0tLS0tLS0tLe3ztcdrZJt+TMbpXRL019+lF0rXLhi0tLS0tLS0tLS0tLQbaCfK6wXnPUpe94dNbzWlyCaplnh5LBi0tLS0tLS0tLS0tLR7as9QZauA4mledwqGr7zpH1paWlpaWlpaWlpaWtp7m2WOg1OoPBY58bXN8tfZqRPzoqWlpaWlpaWlpaWl3V2b8anXMtX+psVxRzAeIUWmy/5JjygtLS0tLS0tLS0tLe2frl3J/sN//u1MFVpaWlpaWlpaWlpa2j9Um4/zXqY7uw7LcZ8FeYWyX/W83rRWEIOFlpaWlpaWlpaWlpb22dqzJLhykzOU+G4v1B5ljP+0nK7O919W92hpaWlpaWlpaWlpaR+qnRaupZmRU4AsafMqY0mmnDh9h7bbM3wqWlpaWlpaWlpaWlraJ2vLTUZIh6k4d5V3maBT5CwVv1QjHOFdaGlpaWlpaWlpaWlpN9C+C4tX2W1tTS5VwOZ1F1+JlpaWlpaWlpaWlpZ2K23elzq1VB6hT7O2Y7a9ljlP1s9CS0tLS0tLS0tLS0u7j7aQm9bLPK2/JssFoM2JV5cxaWlpaWlpaWlpaWlpN9DmMZC1fTJNlCwbqB3dkrgrr3xLufNN1yUtLS0tLS0tLS0tLe3TtOnIK9+O0leZ2jHLC9Xj9X7nIlnS0tLS0tLS0tLS0tJuol2N7C9r5c4yUGRKh2m4SXlabdYsS+cOWlpaWlpaWlpaWlranbQlJ14xzdVxI6u2zbScLt20vP1HexDQ0tLS0tLS0tLS0tI+R9v2X6YRJNd9bVuKfu12bbUouDh70NLS0tLS0tLS0tLSbqNNqW/aIm2MVT1whBn97R5rzUbZuRRIS0tLS0tLS0tLS0u7j/bWEfka845c4itTRUap/ZXldOOObx70YdclLS0tLS0tLS0tLS3tU7RllGNtfMxnU4dlc0WKnO+C5kVLS0tLS0tLS0tLS7uNdiw2wJ7C4pQ2U8FukpVy3vSB0jK5c/42tLS0tLS0tLS0tLS0T9aGk6PU6toQeIUeyqlQmPbSrqXF5SATWlpaWlpaWlpaWlraDbRpIdw02j8lxjqqZD34P7d31iEotLS0tLS0tLS0tLS0+2hTOS9vcf31qt3b2ZLtXBNaWlpaWlpaWlpaWtp9tHmA43l/2LgHzZHbMdO7TKNKJlmp6Z2xAEhLS0tLS0tLS0tLS/tsbT3aiSR537WjGw1ZI+IiO35xbzhaWlpaWlpaWlpaWtqnaMvKt1FiY6nzjTI4shxH2FU7Ffuu8NyDlpaWlpaWlpaWlpZ2J+0HC9KmelvLm/7464kxjyqhpaWlpaWlpaWlpaXdQDuR19P605DIHBvHousyR87Pa5G0tLS0tLS0tLS0tLRP0aaKWh4SOcrqtanXsnRdXrkds13+VkqBtLS0tLS0tLS0tLS0+2jbpslUeUsDStINxqjbbZ+ldzNdRktLS0tLS0tLS0tLu4+2jY1txkzbXqez6S5lbn8e409LS0tLS0tLS0tLS7uRto1+6xpcSptT0JyWv+WCYlMypKWlpaWlpaWlpaWl3Ufb7XAWc2Ia9587LJtey/wG56KLk5aWlpaWlpaWlpaW9unaqdOxtEoeYYHbNJ4/5cm65dr0bdIwydTtSUtLS0tLS0tLS0tL+3xtXeBWdq2+yt1Tw+V0q1IeHN390rW0tLS0tLS0tLS0tLT7adOMkNxh+XaVW3p2ftAIZwctLS0tLS0tLS0tLe2G2itU49ahso4vaXsyc9dlG01PWlpaWlpaWlpaWlravbRHbqRMi+OmVXNtq+T6XXLXZb2ClpaWlpaWlpaWlpZ2C20a77gOgaUKeOY5kmkb7elNpxVynYWWlpaWlpaWlpaWlvbx2jyUP/VaplVuUwxdLGuLnyBVEN/PuqSlpaWlpaWlpaWlpX2UNk0fmY40KTJ1TrZL3aaPkfo+u121aWlpaWlpaWlpaWlpn6ydglzxnF3gayuD9f3KWzVP+3iqPy0tLS0tLS0tLS0t7aO0R3hOM6/ktaZXGylTm2U78780XF6fdF3S0tLS0tLS0tLS0tI+UTulyPW4kRoC2ymTuRNzCpBjMf+ElpaWlpaWlpaWlpZ2H22aIJJaJcsEyJFX0uVQeYR8euVZlbS0tLS0tLS0tLS0tPtoc8Eu1e8+2IZtXd1LoyZHeKHllBJaWlpaWlpaWlpaWtqHa5MsPTZXAUdIh+eiPJiaMAONlpaWlpaWlpaWlpb28dpSybvy/tU5O16vjy3GugauHTDZbQZAS0tLS0tLS0tLS0v7ZG273q0t8ZUrrhAHr/J+LX5RN6SlpaWlpaWlpaWlpd1HW0eVpDLd648TZSzbNs+8Bq4cRxhnSUtLS0tLS0tLS0tL+2ztOvUV3tnNIWn7L888oCTVCMu8ElpaWlpaWlpaWlpa2g20bZDLs/fTj80m1rlkeC03wB4fV/doaWlpaWlpaWlpaWmfoz1CgGzGjUxVuzYJlhi6Gvz/tRRJS0tLS0tLS0tLS0v7SG2JdLfhISUONvtcp8vCs0cKqYtraWlpaWlpaWlpaWlpd9Qei17LvIFaWk6XwuIZNtQeZZ0dLS0tLS0tLS0tLS0t7TWNG3l97Lg/+yr4NNKk8M5Q7Lve7IJNS0tLS0tLS0tLS0v7UG3G1xSZJo2kVyt/N/KJ9L3ep0haWlpaWlpaWlpaWtqHaUde4JZ3Vju7ASVpcsnIO7ClLs70SFpaWlpaWlpaWlpa2i20//+DlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlva3af8CP/KbUvmRbJkAAAAASUVORK5CYII=", - "revision": "7a91350a8ab049a2a156fc2a", + "revision": "80e615fa65ce4f48b8186afc", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter550953217006304FF73", - "revision": "21a777ff25094f99b1c6bd0b", + "revision": "861fb551a4d44a4f8d9cbad3", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "987de334971a4717bc66bfb2", + "revision": "c9f473f572c44943aadec608", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1421,77 +1421,77 @@ }, "wasDebited": true }, - "revision": "a2dfe886e3a5422a8cfc889d", + "revision": "4685530944b6497c9b949161", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677342602434/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "2117da7eed874b93ba4ca210", + "revision": "d696bcd86e8149b0b21be78b", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 3.9600000000000004 }, - "revision": "83e68a064d08481f961544ba", + "revision": "d2616ceba537488c8ca8c086", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b87b1816d1b14daa8e809656", + "revision": "f08a81c7d8474bf183cebc87", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "8024baced511473a9c468c47", + "revision": "85285c84eeb8459386a0f6a1", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9247214e050846ac8a113900", + "revision": "f5fde3f172504b758ffcc908", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -1499,60 +1499,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "341465237ea34dccae98df74", + "revision": "392c5ad3acd64ba29414b1b9", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/payments/55103336998/ticket?caller_id=1310149122&hash=9ef20da2-8e33-4bd3-baa0-734357868736", - "revision": "3f42042805a64abf9d57ea44", + "revision": "cacda10f3703433ead634a64", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2ElEQVR42u3dW47jNhAFUO6A+9+ldqBgkJnYZl1SBjIIMuTxR6PdtqTD/ivUq91/0OtqtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/X9vGV//xt/7PB79++3HV3z9eH7xu8PODX9e+vvf+jF8fvL78flll0NLS0tLS0tLS0tLSHqLt7yHb8DY/7H5/zvtv6ysmn74fMjFoaWlpaWlpaWlpaWkP0A4B5HDBEEpmxfUZWdZnvwLE17WLwJWWlpaWlpaWlpaWlvZs7fV5k/dLWwkbP9J+JQH4kg2nTz9oaWlpaWlpaWlpaWlpQ5llSrrl+K991lAO2hYO1N7PQktLS0tLS0tLS0tLe6x2ik8fvJ6diiZLD1zK6fWv8oG0tLS0tLS0tLS0tLSHaKdTSv7bH/92pgotLS0tLS0tLS0tLe0fqs2vOtSxjCVJH9yha27aDVeThzMLLS0tLS0tLS0tLS3t3tqrRHDlduvmuHtRdZnwOY04TfbR0tLS0tLS0tLS0tLurn09NvGGtrYrvM0tbLXWMpVeTpKMDzEvLS0tLS0tLS0tLS3tVtorzNmvwV0ZX3LPVrOltrbVM57uQktLS0tLS0tLS0tLu7v2fh8tMtwuJeLeE3YtTylJNZlpXknau/ZcI0pLS0tLS0tLS0tLS7uZ9grQaeatf6bu7hJormPM9fK14X60tLS0tLS0tLS0tLRHaHMP3HCTSa1lSQ+miPFezPdfMG5aWlpaWlpaWlpaWtpDtENtZIoEp8Mfywa2XqLDLJv02eUIlJaWlpaWlpaWlpaWdm/t8LChmjLtuU6zIN9vdX2m/eqrxJ1D8nBRdUlLS0tLS0tLS0tLS7ufNi9Lu/Pw/pLdG1ripn+rTyvxaRpuQktLS0tLS0tLS0tLe4o2vc0tcauSynLcVuLElFDMVZw3LS0tLS0tLS0tLS3tIdpSNNmWI0juvNi6TCm5QhR5LQ755RZsWlpaWlpaWlpaWlraHbXDQMi67Lpk6Ca8HCLeJZOXp/qnVCAtLS0tLS0tLS0tLe0B2pK/a8s914/1lyWdd5W0X8kW9och/7S0tLS0tLS0tLS0tDtrU0Naejtk6PJEkskVKU5cBJr9IealpaWlpaWlpaWlpaXdTJsok2H7aTRkDkj7YoHa8A9aCGhpaWlpaWlpaWlpaQ/Qln63K6yuXg96bGFmZF/sC0jZwjTIhJaWlpaWlpaWlpaW9iRtK1McB22unOwhsuzLESRXeFAagkJLS0tLS0tLS0tLS3uKdnr3EiL2vIutPHaV8UtDUPLBaWlpaWlpaWlpaWlpT9EOdZWlK22IMXvIy/Ulqi1mS+aqy05LS0tLS0tLS0tLS3uWdrhJieHiMMnhVKUws4V/QfuccHKXSf/P29ZoaWlpaWlpaWlpaWn30w7TQhZTSuoGttIIt6JMg89ydaelpaWlpaWlpaWlpT1JO5Dz2z4rmqwpuTybpIaXKWLMo0poaWlpaWlpaWlpaWmP0qaqy4JaD5gcAs3a5ZZi1rQKm5aWlpaWlpaWlpaW9ghtHhI52VC9GDWZIsGhG+4qCcDF8uyblpaWlpaWlpaWlpb2QO1jXDeUaE7PXFazTSLQp1iUlpaWlpaWlpaWlpb2AG1qXCt3mmT8Sudbmgo5rMdueeb/4kVLS0tLS0tLS0tLS7u3drGcuoXt1n3WK9cKqsw6STWerWT8HmJeWlpaWlpaWlpaWlra/bRDHeT9HifmU915gv9wvkVl55UnSqaj0dLS0tLS0tLS0tLS7q4t6bc0oGQSba4DyHS+ISAtGwFSApCWlpaWlpaWlpaWlnZ37b2cuF9vkrJ7QxA4fGWaLUwFnOGmtLS0tLS0tLS0tLS0O2un4WDebl3zcnn6f3seF1lLOWfL3GhpaWlpaWlpaWlpaXfWTm9SEnF3ifoWW9laGA35bdVlodHS0tLS0tLS0tLS0u6sLWFjzxP3Q5Nay1P479xil+aaLKo4Oy0tLS0tLS0tLS0t7SHaVPM4TeKVbFx9pfOVkHMVwj5MKaGlpaWlpaWlpaWlpd1Pe4UCySs0s/XcNVeCxfaZ3etZlr6XL6OlpaWlpaWlpaWlpT1AW1rdrtL5thj+OGy87uHZqacuhbAXLS0tLS0tLS0tLS3tmdoSJ/Ywxr9WWE6XYq+P+xSVdlpaWlpaWlpaWlpa2rO0H+T3O/VFbWTpaFtfe+cvh0mRX9SI0tLS0tLS0tLS0tLS7qi9P1vdegjzpum3aWFmSh5OvpdXZtPS0tLS0tLS0tLS0h6gnXa0DQ9bJ/FKSeU1m1KyrrrMkSUtLS0tLS0tLS0tLe3O2oQqabrJdrRy0iu0v9XzPTXMfVV1SUtLS0tLS0tLS0tLu6l2msQrPXC9RIepTjPv0r7D8uzpi5aWlpaWlpaWlpaW9gBtGe9Yo770nJLOu0v+Ln2lBK49JBQ7LS0tLS0tLS0tLS3tIdo8LrKWQA7GlJybVk6WqZCTbOE33XC0tLS0tLS0tLS0tLSbalv8Wu1Zq2fJYei0Q+7OQ1BywSUtLS0tLS0tLS0tLe0B2vQanrg4Ri2pLI1w07RfD9Fma+2bGlFaWlpaWlpaWlpaWtqNtDmQS7/12aLsO28ESEHq+5cnd/4yu0dLS0tLS0tLS0tLS7uPtra6Tfvi3mPHNBryzk8sg0yu3Pn2TRRJS0tLS0tLS0tLS0u7pTaFdDkITAP9rxKJpuEmJYPYn0JYWlpaWlpaWlpaWlra07U1bEwdcjkvV68oe7NT3PlVdo+WlpaWlpaWlpaWlvYobR3ePx01mf82OeS02W65BZuWlpaWlpaWlpaWlnZTbcH3PKg/xX8lxVfn9peJJCkWnVRx0tLS0tLS0tLS0tLS7q+thY9DAFnuNJlSkkLTcshpGHqFM9PS0tLS0tLS0tLS0h6g/f+/aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/m/Yv5+S5wPHlkOQAAAAASUVORK5CYII=", - "revision": "8bfbbd59e4934e65b989b033", + "revision": "1f5b97f0870643cd9f454d9c", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d127175204000053039865406403.965802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter551033369986304804E", - "revision": "1847c2f449db47c3a377b576", + "revision": "c6a7dfcb35b644d3821901cf", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "c2a4991918944f12b7f14652", + "revision": "31ff1aeb626a4b82b2c1e3dc", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1579,77 +1579,77 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "ea54673cba704c71b1c340d6", + "revision": "6400fa458b4946b589de0c1a", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677356987387/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "f78816cf62944b5f8ec12946", + "revision": "d9667321404b4a72a3152adf", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 9.9 }, - "revision": "b87ebc9966bb4f0abd54044f", + "revision": "de15c5b6ed4145e6aa0fed83", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8fc877c1f06743cfab49ed62", + "revision": "ab0de71dc71649238d4cde5d", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "0f7f78c4abfa460cb831e9c1", + "revision": "b5cd56672f1a4ea087788dfd", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "37fecc2f5991433f99d62fb9", + "revision": "ad87062c257c4083a3ffaae0", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -1657,60 +1657,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "047fbb7625df4a1abb8befe0", + "revision": "711a49f2d9b04827ab0799c9", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/payments/55096573577/ticket?caller_id=1310149122&hash=90c37e8f-66e2-44f0-8c67-647e232f6bda", - "revision": "9c096858e2c446cba73c5560", + "revision": "4009edb0b9cf4f3da39b567a", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d1271752040000530398654071009.905802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter5509657357763045E7D", - "revision": "5c344602879b4f97adeebffd", + "revision": "0f746a518e46460e95735338", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIy0lEQVR42u3dW47jNhAFUO5A+9+ldqBgkMdYrFu0ggRBRjz+MNwtSzry30UVi+P6hV7noKWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaX997Vjfh0//nf8deDPTz/OGj8/TRf44+jxeZfpQLnU8TtlfN7txqClpaWlpaWlpaWlpd1EO93iKDFuhNcn+ZyvfrvjmZ+vaFsGLS0tLS0tLS0tLS3tBtopQE4npK/8Qb7uxp+86/PTlBM/D7TBlZaWlpaWlpaWlpaWdm/tVHS7RcTQFplKcnNlsNwyvdHS0tLS0tLS0tLS0tLGiHiFZJnyX1P7m5owP59vhKBJS0tLS0tLS0tLS0u7n3aBn5bETaedy6LgKKhy4Pje/ElLS0tLS0tLS0tLS/t2bTul5L99+6czVWhpaWlpaWlpaWlpaX9RbX6dechIeapbce6ziNcup6ur4b5baGlpaWlpaWlpaWlp3609u9GQ6cCtsLd+jHKp1cz/6St9iqSlpaWlpaWlpaWlpX2bdrpmu1wtxcv2MfIDPVtnVyah0NLS0tLS0tLS0tLSbqD9vOPIC9zKLMjbpth5oH86cHWbbN9+jO89orS0tLS0tLS0tLS0tO/RphEkqaaXPrVbZh+lfpe6LtO+a19SJC0tLS0tLS0tLS0t7cu1paaX2iKnrFf/nAp7U3mwjau5RZOWlpaWlpaWlpaWlvbd2nKlqUuylt/C5UY6d51Kv4XPi5aWlpaWlpaWlpaWdhPtVFabCmwlLI6QDpNxasycZEco56Vb0tLS0tLS0tLS0tLSbqDNFz5zw+V0NFUG21kni+GUR6gqXrS0tLS0tLS0tLS0tJto00bUZQlbbalMS+LKWMlcqxupnJcbOGlpaWlpaWlpaWlpabfQNtNHEjQHvpaXNgg4855tJYFetLS0tLS0tLS0tLS022iPsCBtGv44RtyfrcjSmrrRjew/l8W+g5aWlpaWlpaWlpaWdhtt0yo5DSNpJ/gvlrqNbhfsZq7Jk65LWlpaWlpaWlpaWlrat2nTfUrGTGNJmjmSZeVbKiMe4c+65zYtLS0tLS0tLS0tLe0m2tWMx6nsl0dIpqGT4/4YjTHvIXCsUiQtLS0tLS0tLS0tLe3btNNquPDdftRk6qFM6+emq0wFwJQ2H04poaWlpaWlpaWlpaWlfYF2mj4yVe0WK+S+7oJdfof0Y0zG712XtLS0tLS0tLS0tLS0L9WOMOOxBsM8VjKR0+5tzbjI0nU5+umRtLS0tLS0tLS0tLS079MuAuTRLWE7w9z+o8TB1FeZF9Fd3bI7WlpaWlpaWlpaWlraDbSpLjedP5Xp2iklKVmW57u6qf5T2qSlpaWlpaWlpaWlpd1He93LapPiDLHxKrzUmFmGljTJMrVyPpl1SUtLS0tLS0tLS0tL+w7tZw/luLdZtrc98qSRcoFUD7zCGP/mXFpaWlpaWlpaWlpa2i207fltWMxr2+q5i6n+TWLMo0poaWlpaWlpaWlpaWm30ibZt0VvdZDJYvTJFRJo+2PQ0tLS0tLS0tLS0tJuoF3kujpfJCS8kZLg8+3VUgKlpaWlpaWlpaWlpaXdT/stE14hVF6LzslUqys/wbjvHDA1f9LS0tLS0tLS0tLS0u6i/Uxz436lq6yVa8eXlH3XGk+e279+0dLS0tLS0tLS0tLSvl17ho7II5BH2Rk7nVGSYJ08mQej1B+IlpaWlpaWlpaWlpZ2C+1Uzitj/Nedk81ebFN3Zn6Cupd23iOblpaWlpaWlpaWlpb23dqyB/XtmikYFsqDPs2rjCBJ4yfTVWhpaWlpaWlpaWlpad+vXbQ7jgcZMzVcliR4dRW/K2+eTUtLS0tLS0tLS0tLu5N2de+2LTJFztTKWRbCnSGVHuG+tLS0tLS0tLS0tLS0u2gnSm6GrI+WNrGeLpqeOf1A6Za0tLS0tLS0tLS0tLQ7aWt8+0yMqxVy5Su1kle2UrvyJtvpDFpaWlpaWlpaWlpa2u20tThXHqNds3aVQSZ5XGRzt+VO27S0tLS0tLS0tLS0tG/WrmtwaTVcHvc/PWTahq0m1RJXc7alpaWlpaWlpaWlpaV9s7Ydtl+S4LGMg+3gkStvBjAJcsmQlpaWlpaWlpaWlpZ2A20pv4379JErZMc6LnIa2Z8y5nrIfzmXlpaWlpaWlpaWlpZ2F23Odc1ytdIleeU7truypQElbY6lpaWlpaWlpaWlpaXdRHssd7Ie93mOaYFbSqAjLHBLhcJ1xqSlpaWlpaWlpaWlpd1A2zZNpkyYym+fDzTKcJP0aE8XzNHS0tLS0tLS0tLS0m6mXUwpScNIUsHuXPRurguA7Y9BS0tLS0tLS0tLS0u7mTYly1Lxm27WNmbeKoNtn2aOkhctLS0tLS0tLS0tLe1O2hIWV/uk5S9PyfIqtb/pbQqay8V2tLS0tLS0tLS0tLS0b9YWzxnqbefzHdjaLs626zL3adLS0tLS0tLS0tLS0m6mHSUE5iVsqSh4hGQ5XfnMe6yluSZhcRwtLS0tLS0tLS0tLe2btelVxpJMc/unhWvNnymVPtif7UmPKC0tLS0tLS0tLS0t7Yu06yA3/a+81dPSWy72pdPG4+oeLS0tLS0tLS0tLS3te7THIkCWjdHOsGZtSoLtp3N5lYcpkpaWlpaWlpaWlpaW9pXaxCsZs50eeYU8OeZJIyONi8wRdqymlNDS0tLS0tLS0tLS0u6hPboxkNdiouSUGNuttVN2/DvVPVpaWlpaWlpaWlpa2q20Zxfurhwqy6iSYzHpf7rHdD1aWlpaWlpaWlpaWtp9tO29fxbn1rP3015suZJXF8fl0Se0tLS0tLS0tLS0tLT7aGvjY7lIPZBkJQmObqD/EaZHTttj09LS0tLS0tLS0tLS7qL9/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817W9ibLveeVntBwAAAABJRU5ErkJggg==", - "revision": "468e4dfc316947e8a257e1a7", + "revision": "db95b347b60c4767804366c8", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "6da8572c54004e419eb38e03", + "revision": "9311ff9ebafb4d6f9e50118b", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1737,77 +1737,77 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "b16bf35fe021457dbfa885e7", + "revision": "06ff49f8b58640a4985bd1fd", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677357024740/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "1be6496fae654f13850fd5f2", + "revision": "38e1000658dc430faad43474", "revision_nr": 1, - "created": 1701465820480, - "modified": 1701465820480 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9b53fda8f55e41e9a5a00bee", + "revision": "d42c395dc73c4f41b617b199", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "b76dc61b4f7c4270b94eddc6", + "revision": "6e1eed02fc454dc2ac1bcf37", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ab72683a5ef34ac0881092f0", + "revision": "44cef2ca1b384500bda27dbf", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.34650000000000003 }, - "revision": "8f9a37c34ee04f9e81a905e9", + "revision": "2e3e000c46464fabb58cd103", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -1815,60 +1815,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "76a79aa3b6394848861e2154", + "revision": "399eb59e53bc4277bea0d174", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/payments/55102778083/ticket?caller_id=1310149122&hash=732fd12f-b6ab-488b-bf46-c6e842577653", - "revision": "a170c493ffa04edbba9e930d", + "revision": "0bda13ae636e48f6a8348c21", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIyElEQVR42u3dW47jNhAFUO5A+9+ldqAgyMti3aKVTBBkxKOPRnfblg79V6jXuH6i6xy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tP++dszX8ev/jj9f+OO3Xz/1cU03+P3V47e7jz+fM6Zn/P6/25s/n3Zj0NLS0tLS0tLS0tLSbqI9PkO26c/PuzdnSdC/3pcOlD67YNDS0tLS0tLS0tLS0m6gnSjTBz5DySkmvJ2qRJFNpFrCy2PBoKWlpaWlpaWlpaWl3VPbZPJKTm/ypOPeIsspxiw/aGlpaWlpaWlpaWlpae9lluk5kzYVTT4vvUx3oaWlpaWlpaWlpaWl3U+b8bVDrpzgLN1rn+9r++em0svrh2pEaWlpaWlpaWlpaWlpf3ZtO6Xkv/3xozNVaGlpaWlpaWlpaWlpf1Jtvs6SiJsSdmWsZJv2q55804WFlpaWlpaWlpaWlpb23dqzRHA5iXfcp0LeDtReZYz/1E53hhmUi+weLS0tLS0tLS0tLS3tS7Wfv02damc3JHKKNq8wVvIskyJTi91UiRkeSUtLS0tLS0tLS0tL+2ZtuUltf8vJuZZ3lbgzrWH7fNDIQ0toaWlpaWlpaWlpaWn30ZYxIhP5KtvWplhvel+qyUzHbWdL0tLS0tLS0tLS0tLSbqbN+DOUVKYCydF5UqvbmXvl0ldFS0tLS0tLS0tLS0u7hfYzCFwNIynT+o/uaC2gjROvLsakpaWlpaWlpaWlpaXdQJtniaTU3bkIEdMMk1KJOb25fgW5V46WlpaWlpaWlpaWlvbd2nTlzrdpNklTjrnIDI7Q73YuIktaWlpaWlpaWlpaWtottFPn23ST3L12lv65BPhsibvuJ62PTOsDaGlpaWlpaWlpaWlpt9C2c/ZTArDUWrZxZ7OLLYSI9fSPdhDQ0tLS0tLS0tLS0tK+R9vKUnh5lYAvT/A/QxSZhpu0rx60tLS0tLS0tLS0tLTbaFPU16xIS3HndL7pQPku02bs6VbLGlFaWlpaWlpaWlpaWtqXaq8SDrbZuMk4UVLnW5aliDF/N7S0tLS0tLS0tLS0tG/Wrkc5lldrFjA1x5X71TixjVRL8SctLS0tLS0tLS0tLe3btWn44/Vl/1kdCJmG/FdyejUPMjloaWlpaWlpaWlpaWk30YYX458PgsB0lnUsWuLOR1WXtLS0tLS0tLS0tLS0b9SOsvCsRIptM1uaD3l2z66vliLM8WXWJS0tLS0tLS0tLS0t7au0pbftLCm+9L40OLJ0w32dLVnC0PNLFElLS0tLS0tLS0tLS/s+bZ7CP3lGSPGdXa3lkePT6X2L4POgpaWlpaWlpaWlpaXdS5tKII9yllRhmTra2tmS32LHf7IbjpaWlpaWlpaWlpaW9gXa6Yl5+kgTaKZ5JW3ImZN96/JOWlpaWlpaWlpaWlraDbQPGtK+3X3k+O/vR4x5VAktLS0tLS0tLS0tLe0G2gnVdq+FishV2DgWVZc55Hyei6SlpaWlpaWlpaWlpX2LNmXUvg2JbIf8X+GFWo7Ztr+VVCAtLS0tLS0tLS0tLe0u2pK1OxY5vZwATJWT9S3rjQB5KxstLS0tLS0tLS0tLe27tVOaLp/gyJNLUhRZPNcdcI46ujJZaGlpaWlpaWlpaWlpt9KW2SRNTu9btJkWaqfp/2kwSh1JSUtLS0tLS0tLS0tLu4W2PGcK7s6c7GuXpaXwsqCmE9TfaGlpaWlpaWlpaWlp99GmJF472TGP52+KJj/LLJvT5xa7g5aWlpaWlpaWlpaWdidtieueBZDtUuwcXtasXTpzmvlPS0tLS0tLS0tLS0v7fu0oK67bzWqpa650ud1KL/OfKYBMN6WlpaWlpaWlpaWlpd1H2+TvUqBZknh5RVodDTm+3flxFElLS0tLS0tLS0tLS/sq7dGl2q77s+vVlkquz5KXbNdP0NLS0tLS0tLS0tLSbqFN4x1LSJfa1Uboi5vWY59lj1up9ryVd3YWWlpaWlpaWlpaWlra12uncSMpEkxVlylNt2xrixm/3Bx30NLS0tLS0tLS0tLS7qTNhY816is5uBr/LSZKjvtZat3nk6n+tLS0tLS0tLS0tLS0b9Oup5SkWZBTWWT5RD3fFCe2p38y1Z+WlpaWlpaWlpaWlvZ92qP0u6WBkCUfWJ+TyizTzP88avJ6UnVJS0tLS0tLS0tLS0v7Pm0pvTzCArUmCExpupwAHGU/W6rxLN8XLS0tLS0tLS0tLS3tFto6GrItlWyXWOfd12dorGurLuv2bVpaWlpaWlpaWlpa2i20+WFpQ/W5nE3yILuXRk22M1FoaWlpaWlpaWlpaWn30Y7FVMg0N+T5erWpz269ALuJaGlpaWlpaWlpaWlpad+uLVHfCLymra0d2V8Wap+LqsuyeHuZi6SlpaWlpaWlpaWlpX2bNnWvfX5qFFSKGPN8kRqGpqrLdcxKS0tLS0tLS0tLS0u7iXbc71lrKMtjp2TfWJRtprOkas/yFdDS0tLS0tLS0tLS0m6gTVdZfTbK2P1cQ1lPn/N8V+iku8oISVpaWlpaWlpaWlpa2i20Y76OLjC8FqP4203WeVxkuwB7PM7u0dLS0tLS0tLS0tLSvkd7hAAyoc571m6UzrdcxZlu2kzwfxJF0tLS0tLS0tLS0tLSvlKbQ7pjMRUyBZopIA3P7iPV6ZG0tLS0tLS0tLS0tLR7a8vwkDOvwn7QTlfqNJvY8WF2j5aWlpaWlpaWlpaWdg/tZ+pu5JH9efDIdW+TG7lhbrpfasWjpaWlpaWlpaWlpaXdR7uuuiy3G2FtWjNCMnXcrZvjfrQbjpaWlpaWlpaWlpaW9qfTplLJpvNtSsTl+SI3fNrAttjUlhe80dLS0tLS0tLS0tLSvln7/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817S/WesxQ9BOm/QAAAABJRU5ErkJggg==", - "revision": "0411e04800f0403d9fbdb776", + "revision": "5d4ee38177c943e8a487352b", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540535.355802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter55102778083630472DE", - "revision": "040b749965094f0aba944b02", + "revision": "27014fe7f775413184fec768", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "2d579c9834d347c2833c8d0c", + "revision": "f9b9a421f74c480982d10893", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1895,40 +1895,40 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "db07b8185bfd4e1abb08b178", + "revision": "7d49aa937f9a4d83bbe9deea", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677366880189/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 35,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "f8d13e40eff741c9a2c3d7b5", + "revision": "13c2c4ff9226404c91b686c1", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "caf7f139867b4aa1a390643a", + "revision": "62065576cb68420b9b5e0742", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344819, + "modified": 1701809344819 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -1954,40 +1954,40 @@ "currency_id": "BRL", "payment_method": "whatsapp" }, - "revision": "ff21661531244871a015ab9c", + "revision": "58f4a41485f04f52b1165544", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344819, + "modified": 1701809344819 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710195891/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 234,59 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "31be0511d7cc46c1914efb12", + "revision": "d8e90051485d4d63871af4ec", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344818, + "modified": 1701809344818 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "8263faac28d64b7db8a7d9fd", + "revision": "3919f6972d114f7f9cb231e0", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344819, + "modified": 1701809344819 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -2024,40 +2024,40 @@ "payment_method_id": "whatsapp", "payment_method": "whatsapp" }, - "revision": "98791f8e539a41b3b92fef65", + "revision": "f71b2d8c732740d2a877a948", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344819, + "modified": 1701809344819 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677710725908/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 35,99 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "02c11baff72d4ff5959ba689", + "revision": "81699a2d1bde4eb18fc54f02", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344819, + "modified": 1701809344819 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "cf99c23ab0c7446da2de551a", + "revision": "928546b8884843b8b061fc68", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344819, + "modified": 1701809344819 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -2094,40 +2094,40 @@ "payment_method_id": "whatsapp", "payment_method": "whatsapp" }, - "revision": "d54ea5507e864c8a989e6788", + "revision": "f8189a66e3cc41f48342fba6", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344819, + "modified": 1701809344819 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677711669840/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 450,32 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "aa30cad8a2974801b6b64eab", + "revision": "bbc64d4c77094d58b015d77e", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344819, + "modified": 1701809344819 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "cc4b21d58e67447193d40cdf", + "revision": "ad601e63e0cb4bdf95f4e150", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344819, + "modified": 1701809344819 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -2158,40 +2158,40 @@ }, "money_release_status": "rejected" }, - "revision": "4b9b811019894b3386810571", + "revision": "69b6edf48bc94b1db2f55d5d", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344819, + "modified": 1701809344819 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677716372778/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 600,20 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "b617a88591e64ccdb5b85f3d", + "revision": "1cf796b96a03406985991879", "revision_nr": 1, - "created": 1701465820481, - "modified": 1701465820481 + "created": 1701809344819, + "modified": 1701809344819 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "f1a43dd035fc4e2c87db50eb", + "revision": "f188ab6cdf0b4ad3a55ac3cb", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -2222,40 +2222,40 @@ }, "money_release_status": "in_process" }, - "revision": "f6fb5ba9924042f6a8f55b8c", + "revision": "00410a0a39c74172aea21082", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677721233156/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 602,99 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "681daeace50a4fb29d9c2020", + "revision": "6e5637eb14f94cbf905ddb6a", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "74a75ad077794106bd102e99", + "revision": "a1896735b5404873af043cfe", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -2286,40 +2286,40 @@ }, "money_release_status": "cancelled" }, - "revision": "fb89edf7beab49a6934f87e7", + "revision": "8ec755ab76814acdbfb24269", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677761687105/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 34,89 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "e32d18a5b96f4a5d84d7766f", + "revision": "bee277e5ca0744c1a6c9f93f", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "4285373c2ec8411fb024eb79", + "revision": "0b8a43f2d6b0429aaf6f0a1c", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -2355,40 +2355,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "06a8b7b697bb4d25ae06cccb", + "revision": "30be69f443ff479eae82d3cd", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677762883870/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 43,78 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "294b972fc6c9422ca8f86bdd", + "revision": "955833f4889d415297bc4e61", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "90aa5ab3d38a4a07b57eca94", + "revision": "e17f5111faf3425ba0c4e32c", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -2424,40 +2424,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "aadfac7779b643d18531a0d5", + "revision": "b5161c15b69b420e91af00ae", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677822431645/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 29,91 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "2dbfbe4e915c418e855bb9e8", + "revision": "6209ea0862994dbb89053c74", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "b4d37db62628438f82cef6b8", + "revision": "723c15847711444eab9b7e19", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -2493,40 +2493,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b6080ec0eb9e4ac7a839d690", + "revision": "dce4b5d096704000ba5aef37", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677831643976/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "59544d4b1bc241518dd3a7ae", + "revision": "c43ec6d8471745ef8fb0c017", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "12bb054ba1f3411d851a51bb", + "revision": "a8dc0f7f739d40bb9748e785", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -2557,27 +2557,27 @@ }, "money_release_status": "rejected" }, - "revision": "6973caaf65694f9ea0707c8d", + "revision": "9468c69660b846e99afacb96", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677952604160/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "18a21c4d8f004015b30f4b3a", + "revision": "fba8bf8ab77a419e9fbe605d", "revision_nr": 1, - "created": 1701465820482, - "modified": 1701465820482 + "created": 1701809344820, + "modified": 1701809344820 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033196645/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678033196645, @@ -2591,16 +2591,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "f2c66aec2e874d93a955d079", + "revision": "b4663f5c17f9498aa481eaae", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344821, + "modified": 1701809344821 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033196645", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -2630,16 +2630,16 @@ "history_id": 1678033196645, "description": "Compra de 141586 IVIP por 20 BRL" }, - "revision": "4dc5b7be70f945aaa520ad7d", + "revision": "34e4f5e081ca4f5d9325acae", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344821, + "modified": 1701809344821 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033334564/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678033334564, @@ -2653,16 +2653,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "8ba72ec76d9d4559b363c2d7", + "revision": "5c4c95c9a7ef400d8f470327", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344821, + "modified": 1701809344821 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033334564", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -2692,16 +2692,16 @@ "history_id": 1678033334564, "description": "Compra de 269014 IVIP por 38 BRL" }, - "revision": "874a06c7944545e08505dc02", + "revision": "1556229774404d8ba89b7864", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344821, + "modified": 1701809344821 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033849155/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678033849155, @@ -2715,16 +2715,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d4d3fc09437a4d4085f3a4db", + "revision": "4e200120c0374385a03d50c3", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344821, + "modified": 1701809344821 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678033849155", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -2754,16 +2754,16 @@ "history_id": 1678033849155, "description": "Compra de 297331 IVIP por 42 BRL" }, - "revision": "5902bc22292e421e87d690a7", + "revision": "4188de850355433eb358e71f", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344821, + "modified": 1701809344821 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034274118/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678034274118, @@ -2777,16 +2777,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "c2a2a57c51164680b1b17a6a", + "revision": "442ae9695d194896850a280b", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344822, + "modified": 1701809344822 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034274118", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -2816,16 +2816,16 @@ "history_id": 1678034274118, "description": "Compra de 141660 IVIP por 20 BRL" }, - "revision": "0755642d8b694f24b7fa3ab3", + "revision": "367b53f09909479293f6387e", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344822, + "modified": 1701809344822 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034346295/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678034346295, @@ -2839,16 +2839,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "40dc8f866e3043868aac239f", + "revision": "08ca7c8d6f6b4175a3a45e47", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344822, + "modified": 1701809344822 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034346295", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -2878,16 +2878,16 @@ "history_id": 1678034346295, "description": "Compra de 141586 IVIP por 20 BRL" }, - "revision": "6806b35aeb794ecf86469b37", + "revision": "c14bfdab69af4ded821dda05", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344822, + "modified": 1701809344822 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034463284/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678034463284, @@ -2901,16 +2901,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "27607c757de449a0a821a3d9", + "revision": "d76ba717a23349f7b57b911e", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344822, + "modified": 1701809344822 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034463284", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -2940,16 +2940,16 @@ "history_id": 1678034463284, "description": "Compra de 424981 IVIP por 60 BRL" }, - "revision": "d4b9784c492a41beb990845e", + "revision": "8800cd2441854a3683036ba6", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344822, + "modified": 1701809344822 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034665927/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678034665927, @@ -2963,16 +2963,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "09f990ecc329443096c287e6", + "revision": "80d4399fa8064f608d002287", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344822, + "modified": 1701809344822 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678034665927", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -3002,16 +3002,16 @@ "history_id": 1678034665927, "description": "Compra de 141586 IVIP por 20 BRL" }, - "revision": "2992b23137e1487f83c5d78a", + "revision": "f5c0c16bf38e4fad9072f7f4", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344822, + "modified": 1701809344822 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678041814665/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678041814665, @@ -3025,16 +3025,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "bc567fa172a84e85a59eb3ce", + "revision": "ae191e22f1584a14bdcc43cd", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344822, + "modified": 1701809344822 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678041814665", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -3063,40 +3063,40 @@ "currency_id": "BRL", "history_id": 1678041814665 }, - "revision": "badd91ebfc954411ab4abf49", + "revision": "e0fa89ba3c2d49df8c524fd3", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344822, + "modified": 1701809344822 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678041814665/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho 10% na pré-venda ao indicar o nosso aplicativo", - "revision": "3e12cb07853345d399c0cabc", + "revision": "0685205b1ab54daf8c9f8f2c", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344822, + "modified": 1701809344822 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "7a1bf9e1d97640b4aef0149d", + "revision": "ec376ea834724433b0ad7e1d", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344823, + "modified": 1701809344823 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -3127,27 +3127,27 @@ }, "money_release_status": "rejected" }, - "revision": "5ec5e9422cb74f7782676363", + "revision": "cb96b23817aa4aec95c371a5", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344823, + "modified": 1701809344823 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678047987815/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 60,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "8c2135a1e6074e4cb424d916", + "revision": "9f83b451e88c410094e6b981", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344823, + "modified": 1701809344823 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678160538199/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678160538199, @@ -3161,16 +3161,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "3ae0432d955b4796a77541ec", + "revision": "8ff0c3ed7a284fa19ad4f61b", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344823, + "modified": 1701809344823 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678160538199", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -3200,16 +3200,16 @@ "history_id": 1678160538199, "description": "Compra de 14306893 IVIP por 2000 BRL" }, - "revision": "3bfd90b0115b4fc591f15485", + "revision": "dfac6ef5fda34a76bd47b53a", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344823, + "modified": 1701809344823 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678284807612/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678284807612, @@ -3223,16 +3223,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "7cd6fd9b4e284ce88e2f0bcd", + "revision": "9d1745c93a894cb2890d80c9", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344823, + "modified": 1701809344823 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678284807612", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -3262,53 +3262,53 @@ "history_id": 1678284807612, "description": "Compra de 142846 IVIP por 20 BRL" }, - "revision": "bc222a89952c4799b31d5a8a", + "revision": "c1be6e3726814e948958b66c", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344823, + "modified": 1701809344823 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 32 }, - "revision": "fe9c40622af04750b21a6a2f", + "revision": "f6bd75ed29084f22b4e12ced", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344823, + "modified": 1701809344823 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e0c5d9e4addc43f0a13f1ed6", + "revision": "f4e053101ae6439a98a3c32c", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344823, + "modified": 1701809344823 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "bc4f2bed9d484a48b75d20fb", + "revision": "c8a06d7762d24046995d50b5", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344823, + "modified": 1701809344823 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -3335,64 +3335,64 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "6878a414096a4b3f821990f1", + "revision": "aed8540e3d6a4ec99a7a690d", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678325359354/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês e liberação final", - "revision": "f5322a7f505040a3a90a9c02", + "revision": "37eebc5809a54658ad6b74eb", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344823, + "modified": 1701809344823 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 120 }, - "revision": "b72e8e5238f348e1aac4e3d2", + "revision": "bbe5a08356e54242ba5f16f2", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "d8c51de038204750a71c8520", + "revision": "7f1bf8dbf8ab42e08c4e5909", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "8f9b7c12f32343528d0737cf", + "revision": "3d065132918c4f6bacdddfdd", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -3427,64 +3427,64 @@ }, "money_release_status": "approved" }, - "revision": "8af8679998594e4dbfade224", + "revision": "70c810be5ba34f6686478048", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678400755247/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 3.120,00", - "revision": "4fbada32e2e94123ba2b2549", + "revision": "ef1b74575ac247beb5b342cb", "revision_nr": 1, - "created": 1701465820483, - "modified": 1701465820483 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 16 }, - "revision": "eb7d9595ee8d4bfc8c91a124", + "revision": "8d921e050577427c9851c440", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ab323ea97bce4b399fe9e105", + "revision": "3104ee4f7e3647108f4bba8b", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "8acab75ea342439a9711b80f", + "revision": "8a49c9b54f8a4748bd1c2e58", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -3520,64 +3520,64 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e3712234f6254e32bd1f6085", + "revision": "e1eafe90fc8c4410a0b9399d", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401099895/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 416,00", - "revision": "bed4607d402d4df1b39226f1", + "revision": "f05bb78924484d7dab6f6824", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 9 parcela(s) 18.00%", "amount": 108 }, - "revision": "eeb00d2e549e41469aefd62f", + "revision": "ece36e9dc6484475b23fb87a", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "33078afc111b41f8828bec97", + "revision": "b499a9eca6f848efa946430a", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "1b8b9095e1ec4f15bb03a4b6", + "revision": "2c3eca32f4fe4ace99cb330a", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -3608,64 +3608,64 @@ }, "money_release_status": "rejected" }, - "revision": "7471d0d1e6f744be9ab02de0", + "revision": "37e2281b05eb4443b74dba33", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401292954/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 600,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 9 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 708,00", - "revision": "3b0a64ecd79d407092b94dc9", + "revision": "e104786eeb3f4f95b3d7661b", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 12 }, - "revision": "0e9635ae4dc94fc08ac23655", + "revision": "faeff091168649e98ff0a345", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3c240c44d5b44e6ebbcc410b", + "revision": "88504d44ed7d4ff9b77d5c1c", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "7a851369b390447983977787", + "revision": "0e6e71d59c0e4af695649fe7", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -3701,55 +3701,55 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5ae08e24594e4d1197dbdce6", + "revision": "117ba03a30c147bbbbeba42d", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678401795273/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 312,00", - "revision": "b48d3adbceed4f9999406638", + "revision": "15707972873c4a9481b41154", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/barcode", "content": { - "type": "OBJECT", + "type": 1, "value": { "content": "23796929000000023493380261020453727300633330" }, - "revision": "692c88030ad04439a6f29972", + "revision": "3543938deef24e84bd591e40", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "f58b4d850d344db2b72f6f89", + "revision": "5123d82a69834e108e6209d0", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": "10204537273", @@ -3761,38 +3761,38 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "a964f0635f254b6289ec8dff", + "revision": "f7b17f442c214a6aae7a6668", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/payments/55645430279/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55645430279&payment_method_reference_id=10204537273&hash=557e269b-6b88-40a8-b95a-ce41d6734e10", - "revision": "02c20514dff244f68d7de2bc", + "revision": "858b15f0392a41b7bb83cb4d", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "6c08c0988f1e4ae6a2d737ed", + "revision": "1b06a95ae54142e4adb0850e", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -3819,55 +3819,55 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "a1f2e2d42976465eb30ef20c", + "revision": "ef1bd35829884606a5f6e9ae", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595791470/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "c066bfc4a3d9433a8afec8bd", + "revision": "9c09bb66882a44a8afed6494", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344824, + "modified": 1701809344824 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/barcode", "content": { - "type": "OBJECT", + "type": 1, "value": { "content": "23791929000000023493380261020453555300633330" }, - "revision": "c0af763cee3149c7b331aa11", + "revision": "583740518db6484b8e25a367", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "17803806158d476aa4d37f5b", + "revision": "cb6f88d3daf349b8be4ad081", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": "10204535553", @@ -3879,38 +3879,38 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "6c6fe7c5a13641f6b06e8062", + "revision": "534cc55e023944f5af535043", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/payments/55645448309/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55645448309&payment_method_reference_id=10204535553&hash=3a19b388-0268-4177-bbf8-d1aeb0efa481", - "revision": "e5cbe6d56560448db4a6d361", + "revision": "03ae2d8cdf8c409eba3a6e55", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "65023a90870842eb8f743f05", + "revision": "b23ee29c754840f5963228a2", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -3937,77 +3937,77 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "42fed788b7314ab6ad371562", + "revision": "a11805ceed0447f0ab9d32ec", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678595892940/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "f6c69497b84c4446bfa4e708", + "revision": "48bbcaf1ac3b46b09ff23ec3", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b1d6f95a18264475a783de1e", + "revision": "de2c3f8712074c75a884f62c", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "dc38e13080794b4489dca4a9", + "revision": "75ba020f3da446388fa5af59", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1223dde8e97d4f4b8326ed5a", + "revision": "96c66bdb65a84c63a18a790f", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "687b5dfabf924ffaaa707911", + "revision": "0c37c9ada94648b491627970", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -4015,60 +4015,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "f462e44a962a423fbde6f914", + "revision": "090deb1d3fa647e6822bb081", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/payments/55645618353/ticket?caller_id=1310149122&hash=8fcfd6de-ecd4-4d03-89e3-76d87270fb3b", - "revision": "8fd249e3007f47128f42accf", + "revision": "74247d709fca47188612730a", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540520.205802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter556456183536304B75F", - "revision": "aa1828e4004a44f18eead4ca", + "revision": "cb5e3e1a88be4af28b1566e3", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJgElEQVR42u3dQZLiyA4G4PSKY3BUc1QfYZasyImKnoaUlC6oefEieuyPTRMNtj/XyhJ/Klv/419/NUZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGxj/beG/xdf31P+vvj369WXq//f7o12v5Onj79eb2+z/X13m3dvn6Z/jon/+pRw0nZGRkZGRkZGRkZDyLcfzwC1LfROP6usjXdx7hzrbXRS9fH63jmWeHTxmMjIyMjIyMjIyMZzDefj+tPy/769H+n+v31zP+syB4pKLh8rqzRzAOR9Vr3V8FCiMjIyMjIyMjI+PJjWPTfaBlderHP4YG/DrJwwz3cWdkZGRkZGRkZGRkzM/v3zTUn3XAyG+vwwd1LCzWcjgjIyMjIyMjIyPjyY09JlyWvRLh/srF5MPvqZ1fMzitlBr/Pt/DyMjIyMjIyMjI+F831rWkS+ms/3/e/C/rXRkZGRkZGRkZGRn/y8adV0ijx3Z+L7H0cK/PJaT30sW/9E9fjIyMjIyMjIyMjEc3PlK1cEllxHXsxz/T6I9h/mItNXoMvMcvh3tdPujZMzIyMjIyMjIyMh7UeE3/kyIzS6BtJfCe72ydzjjfCeOsjIyMjIyMjIyMjKc0rmPRkBd6tjKvZXutHM1zX/qkr1/T8ZdXqr0PK1kZGRkZGRkZGRkZz2K8p2DLNjX2WXamxUGMj9K8b+nOLq8qJNI2RkZGRkZGRkZGxnMZc4lQ5yZex3qil907W0ishy7+I015uZcvz34xYGRkZGRkZGRkZDy+cZaLGRvzvfcSkNn2cu6tjGkJsZo+US/phIyMjIyMjIyMjIwnMj7rgCEpcwklQtoFtG5MFC87iOLK0TQt5pMMOyMjIyMjIyMjI+PxjDl7filXG77TAj8/499i0VBnK47lSPtpvoeRkZGRkZGRkZHxMMYe4uRDrXDdG1J+i0GbOtF8Cd+ZlRH3kMpp79e7MjIyMjIyMjIyMh7LmNPoW8G2cVp5D+rZXkP1PHG4S5+OXXyTnWFkZGRkZGRkZGQ8oDE8ttd+fNwjKMTS393i+lEq55PsDCMjIyMjIyMjI+OBjMPz+yMkXIYQek/d99qqv47nyrQ2j+esk+QOIyMjIyMjIyMj41mMO7PJr5Pv7KwunU1b3NIol/ZNh56RkZGRkZGRkZHxbMZ7CrbkNHqA9JJY3yksemnVr9OLzv4ejIyMjIyMjIyMjMc3xtWct8nOQq1Ezp9HzbYPynNf8kfrzpDFhZGRkZGRkZGRkfFMxrH7HsIv9yRqKV+TXjUXM64lbTH5vrPMlJGRkZGRkZGRkfEcxtlGQDkOc3mjTnMTp7MV194nhUUsRxgZGRkZGRkZGRnPYswJl1AHTLfoDK36nrYPuo4LRqeJm9lHW/tsDjsjIyMjIyMjIyPjQYxxEWfAtsncxJYqg/66Wt/LztSPagbnk549IyMjIyMjIyMj44GMsTG/vVIwOdW+pRTMbawe+neRmUfYMnQ44WX+p2JkZGRkZGRkZGQ8g3GWRu8lRFN3+AyP/887260DdjYIrcUHIyMjIyMjIyMj4+GNz4ErS0q15zTN82o5X7N3VP0RYJlh1/e1AiMjIyMjIyMjI+OxjH0yAXHasw+t+ppzj2PL096hvVQY+Vpv1pIyMjIyMjIyMjIyHsuYdxbKU15mj//X3uejXHqMw+yMXQxFw8ezFRkZGRkZGRkZGRkPZawpmJbC7LMpLzuQUCuM5Ui6oRZO+Hb+IyMjIyMjIyMjI+OxjHkfoSG6HmeTt7gd6OPtsPOesjN9jN7EXww2RkZGRkZGRkZGxnMZ89ZA4fl9jK4PwxFDvqalePvuKJc85aWVDA4jIyMjIyMjIyPjWYz5iT5kz7/fq3PIue92329x3Ms4djHVHJ2RkZGRkZGRkZHxZMZeGvNDidBaHXZ+CZVBvY8QmZnt+fn4WXaGkZGRkZGRkZGR8YDG2/erQuN3bmWieZvMdKkZnBqKv5Z6gpGRkZGRkZGRkfF0xpbS6H2SNM8595ymmW1edCmXiBMZGyMjIyMjIyMjI+MpjX0aY8lDFuui0qF5fymrQuuQmEvp4scMDiMjIyMjIyMjI+NZjDXPEs/UJstMr2WAYkjTxMWpITszrR7W+udiZGRkZGRkZGRkPLYxz1YMCZc+e5MWg+ZYzWy0eVw5Wmcr9jSRkZGRkZGRkZGRkfHgxphYv8Uh5d8PMp8VBNveuMS94S7Lz3r2jIyMjIyMjIyMjIcw9kK7h7HlqQ6ou3e+/2g3O1PrEkZGRkZGRkZGRsYTGdOuQdMBim2MzLT5qtA1htkfaVjjffJrwBjPYWRkZGRkZGRkZDyLcbhsbNXXLv42GXbe0u5Dw00/gzY7uxgNtI2RkZGRkZGRkZHxXMaITZmXR+LfS2WQh52HLHwL99qSOpQI94/mzjAyMjIyMjIyMjIexDhcdtl7xm8pBRPGLrb5kMWanelpP6I22eCIkZGRkZGRkZGR8SzGlpaHtnSm2TN+VNcQTRpkvlM9XMtfiJGRkZGRkZGRkfEcxhqiiQMUW6GFO4sR+JBhb2GZaV05enstV20/yc4wMjIyMjIyMjIyHsQ4iPL+P2GA4n2/RBiwS4mu9yH53sZr9TIJhpGRkZGRkZGRkfEMxhxj2UqHPtDqKMRHmQRTh523MuUl/oUYGRkZGRkZGRkZz2kMBUF8kG/jkMU8weXe6muZn2dearSP9vxkZGRkZGRkZGRkPJZxJ0TTxmBL2pBzurHn7pSXIcxex8bE3wcYGRkZGRkZGRkZz2LMD/vX7/LpdZJi3mtotjj1Uhrz98lRCyMjIyMjIyMjI+OZjEuJsbQwiyWE2R8Fm2uF3dmKW+r9/6RWYGRkZGRkZGRkZDyg8Raf+pehMb+OQfVcB1z32/Dh8P5mKWr5WYCRkZGRkZGRkZHxfMadgHmY19JL973G25dhlEtqzD9+lrNnZGRkZGRkZGRkPL5xKY/2O8YtzWtZx1jNrFYYPxpi8ldGRkZGRkZGRkbGExr7zpnia0uP9rfxYb9OK4/Vw62c8BY7/YyMjIyMjIyMjIynMua1pE/s8CZmZ1qacR52+Mxz0LdxlepOKudtdoaRkZGRkZGRkZHxWMY/88XIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyPgHGv8Gg3eEIKcvUa8AAAAASUVORK5CYII=", - "revision": "73bbd9de324a4d54b55d78ab", + "revision": "cf9b6d32cd6845aab34ac846", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "1465bf722182497d82d6b4b2", + "revision": "6909ea5e41844df6bc43e31f", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -4104,77 +4104,77 @@ }, "wasDebited": true }, - "revision": "6bda623dcba44765b510cf62", + "revision": "6f9604e557db466aab2e5a39", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678596937174/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "85907b186f194766a7f6b444", + "revision": "bd25e58591104aada5aabd99", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.20790000000000003 }, - "revision": "c04c1c19ca9f49a897cc90df", + "revision": "dbdc5894a93a42ce831d4667", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9a4ede078d1a464c9b4143c2", + "revision": "262dcf5c148b429b810777a8", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "42489f55e0854fc48da55a68", + "revision": "9372f94e20c64886a165cd0b", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c65bb77a83ba44a89aad7694", + "revision": "cbac6b6978464734ada9d7d6", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -4182,60 +4182,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "083b627da8d8450681ed89ef", + "revision": "c6fad6da294d436b935dd01e", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/payments/55660781347/ticket?caller_id=1310149122&hash=d81b289f-e1b7-45ae-9f11-f314a4fdb9e1", - "revision": "021c31dec038458b9a8cf10d", + "revision": "4ecde434b8a345e384b73ea2", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540521.215802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter5566078134763047D77", - "revision": "650af5adb2a84a19acdfa97c", + "revision": "e057417145684b81bc1c7fc5", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJfklEQVR42u3dQXLbOhIGYGilY+io0lF5hFlyJUxeHFPobtBW5tVUJeTHlUoUiY9eEe0fjdb/+OM/jZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGR8c82ri0et49v7j9PXT5/8+PD4/PUx/Hz1PLx4fH55f3HN9ePa359mJ+KVw03ZGRkZGRkZGRkZDyLcTz5DyR/aD/u/Qz8bZB/flNP/Tp+XnV/YeeXTxmMjIyMjIyMjIyMZzA+Pt/Wt2E/7v1r/O2b9jmN+EUbJg3X15M9k7GFyUcYa31NUBgZGRkZGRkZGRlPbhyL7luJvUd1rcc/hwL8fZKHCZMGRkZGRkZGRkZGRsb0/j4tqKcK/ZadGcMvQR0nFmGGEav4jIyMjIyMjIyMjOc0huzMmgZZUnZmqMeHnHss53+ZwYmn/od8DyMjIyMjIyMjI+PfbqxrSS+lsv7/+fBv1rsyMjIyMjIyMjIy/s3G2TFG11sp5w9PVr/J04hZT5c3DkZGRkZGRkZGRsajG59ptjAM0matXPq0it+Sui5FrU+2vKYI69dzBUZGRkZGRkZGRsZDGm/pZT21VBwT6/dy78dnLH0YrfY4769nzc0aGRkZGRkZGRkZGU9mXEu7xNqSfNZkMdKWBKnNXWq3mMdrrHfyPYyMjIyMjIyMjIwHMsbragfE+TdbhX64/FmK9xG7lN2HWmuleM/IyMjIyMjIyMh4GuNQoW+ltXnvQ3PEPu/70ifrRK+ppWKu0Idmjd/n7BkZGRkZGRkZGRkPZIyR83sJyKRh48SitoTJbVpCrKZP1Jd0Q0ZGRkZGRkZGRsYTGXNTlhp+qbuAhqJ7DrwPorhy9BG7xbyXYWdkZGRkZGRkZGQ8mrGlO9XR1vli0BRvz7X/NumtOE5H2tvZGUZGRkZGRkZGRsajGXt5/Y/G2SAhRLO7j9CWfO/phrdXk8XYRp2RkZGRkZGRkZHxLMadRuYp1R53H7qVenzda2gpc4Vc+09P3xkZGRkZGRkZGRlPZryPTVli55X0HJe9tuVt/oj3neWqz6B+LzvDyMjIyMjIyMjIeBhjTws9l1RrDxX6PmmgeAn9y3u5qgbVl7St6J2RkZGRkZGRkZHxfMbvhl2m7/j5gWYdzadDTCr0jIyMjIyMjIyMjGczrinY0lOIpvZiuU+SMrvHY6dC38J9bvkyRkZGRkZGRkZGxmMbe2rBMivVx60+76+rbpPRKj8uIb3vNFm8MDIyMjIyMjIyMp7J2FOepZdgSw+dFEPgvXZJzLRZqX7dW2bKyMjIyMjIyMjIeA5j3QhoTYtBZ5HzXtq9DM1dam/FWqof4znbjxkZGRkZGRkZGRnPYtx+1UJhflbFX8ace8bGCHyfrkndPbW8UbNnZGRkZGRkZGRkPJAxNym/TdsltnSnmqbJ+wi16cZEcb3pkMF5p2bPyMjIyMjIyMjIeCBjS7mY+No+myu012ZB13CqRmZay03Tww2v5U/FyMjIyMjIyMjIeBrjLI2e3/G/eOtvpeQ/nwfUDUJzpZ+RkZGRkZGRkZHxLMZLaNxSdwRaSlB92Yuup6vqfOIyw96/nyswMjIyMjIyMjIyHsvYJx0Qp63Nh1R7G3u6XNJ8Iv8ToM5LbpOxvllLysjIyMjIyMjIyHgs41pK9dm4G35Jc4XaQHGn7WKYNLzXW5GRkZGRkZGRkZHxWMa4a9Cw0HNJ905dXqbRm/sUu/NAafLByMjIyMjIyMjIeCJj7mg+BNVr38Re9iPqISBT0+h1E9Fe+Pfva/aMjIyMjIyMjIyMhzX2odl5GHYn/NLHruf9dflOK5d8qpUMDiMjIyMjIyMjI+NZjPFlP2XPn6k7y5pq9kO+Zqf6/ojtXsa2i3XOwcjIyMjIyMjIyHgqY5gHxJ6IjxiZybt35shM6M7yTJX+dS+M822+h5GRkZGRkZGRkfGAxsd0LelOCD3NFdoQgQ/YnJ2pofjbZHRGRkZGRkZGRkbGkxljsOU2/uBZ9gUdRXvrRLcb9rJD0WX2DSMjIyMjIyMjI+PJjLde14nGJou91yblW619mURvapOYa6nixwwOIyMjIyMjIyMj41mM614dfQvR1GWmwzv+YIxV/JYaoid13qHoyww7IyMjIyMjIyMj49GMPbRXuccthvL4uTvL8ECzHo3PEKtZUpeXPpmXMDIyMjIyMjIyMp7DGLcGmizrHJ+jzWv2Iah+nZfh95q7XN6q2TMyMjIyMjIyMjIeyxhf9mvb8q2u/2izDYXeObWbnQmrSzsjIyMjIyMjIyPjeYzbXKGF3orhBrlxyzJOHGIKJofZQ7PG3C1mGTcdYmRkZGRkZGRkZDyn8RLyLMP7+5pq7fk5HrEBTA7a7OxiNIvAMzIyMjIyMjIyMp7DGLEt5lkyf51MGuJ8opX+izmVMxT4W/kzMDIyMjIyMjIyMp7DuL6K7pfwjp8hj5Jh7wXSY2/FmJ3ppQ96DtowMjIyMjIyMjIynseYl4cOt2ypt+KwcrSnHYpy28Wtrt/3EuuPcRNRRkZGRkZGRkZGxlMZ42j3SQPFocSejzpp6JMZxnXf2MPTMzIyMjIyMjIyMp7T2Mb3916mCLmlYj7Vp7TYf7FNnv635gqMjIyMjIyMjIyMf79xLW/9ueFKKOdfygrUnezMkmYY97Kt6PAXYmRkZGRkZGRkZDynsZXoeu+1J2Ir04h4hC4vMURT4zltGm9nZGRkZGRkZGRkPIOxHrlmfyu/WEocZrclTAiz59/08e/RGRkZGRkZGRkZGc9jXCex9JYq6190UmxlMWhdnHothfk17VD07nyGkZGRkZGRkZGR8TDGS4mxtNSL5Vo+tFDFD8+x21txyNf89lyBkZGRkZGRkZGR8YDGx+StP2zR2VMcZk0BmfYVNgbVU3Ymp+MZGRkZGRkZGRkZz2r8OvOyleHnl88yOM9SmH/+Xs6ekZGRkZGRkZGR8fjGS3m1z5GZWH1/xLWk2292photNXd5o6cLIyMjIyMjIyMj4wGNfXqnVEePGwrlDUJ76Va+0yt9GCtU+hkZGRkZGRkZGRlPZcxrSTfs8CH2Jl/G0Z5ph89WeqW3kLhJqZzn9O/ByMjIyMjIyMjIeGzjn3kwMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL+gcb/Am9FACpuHEp1AAAAAElFTkSuQmCC", - "revision": "84749771643b4c499d010f98", + "revision": "ecd1153e250f4843a38ffa01", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "097a82e629bc4e32a0774e31", + "revision": "50782fba00a0446cb862cfdf", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -4262,40 +4262,40 @@ "status_detail": "expired", "currency_id": "BRL" }, - "revision": "f0d0ff3460b24bd487f71cbb", + "revision": "d0ea40cadb0641f2a5b45a48", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1678649850085/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 21,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "103bd6fe6b62451ebe63f50c", + "revision": "078ef1bd924649439e0cea6e", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "35a46e1fb746472ba489cc3f", + "revision": "577d82e03b3a4f3b8cf93a7d", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -4321,40 +4321,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "2f1238dac50c4796b23d5622", + "revision": "d34aff8070ba4a46b57573c6", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679007163675/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 70,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "d393982cc7cc4e878f7a655d", + "revision": "df98f2c212a54d0684cbce01", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "6703f4528a34484ca9a769dd", + "revision": "8440fb4aeaeb47e29bb70148", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -4380,40 +4380,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "7bf2affce801411fba1c750e", + "revision": "6c408a4e4a90408b97638d2f", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010027708/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 22,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "1be3cbdcd6f6461da727cfe0", + "revision": "05eb2c69b6f64124929d49e1", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "a06e294e397e4f2195a33a7f", + "revision": "b11f2b6cbab045bfaca8bd30", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -4439,55 +4439,55 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "89f3cd97d8774fc896bcf76f", + "revision": "5b42e3d706e14fe3b8c03524", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679010677912/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 34,53 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "071c82c2ecd5452db795afba", + "revision": "b3bfdeb1766a4402afaa2695", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/barcode", "content": { - "type": "OBJECT", + "type": 1, "value": { "content": "23797929500000053493380261020810012400633330" }, - "revision": "fda5db2b70094f9089419913", + "revision": "65b05722ba2a4e63970d986d", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "2867826dc52e4b189aeb832e", + "revision": "e7615abc355641dbaa1089c6", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": "10208100124", @@ -4499,38 +4499,38 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "aba88f4dc92e4f64a690a6c6", + "revision": "7e6acb4df2dc4b1282b2d6fc", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/payments/55844330172/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55844330172&payment_method_reference_id=10208100124&hash=b65fca1f-6eb0-406a-adf2-94d1c5555b8a", - "revision": "d03966fc56ef480791519abb", + "revision": "d83a86949f2446e6ad4402c3", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "fad6a0d51e4541de8db617c4", + "revision": "1aaac980c60d4d0cb793fef3", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -4557,40 +4557,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "5eb8c6223f2146e2b5083b4a", + "revision": "1dbec628715c45d8918b43db", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012344229/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "d0ab66a908b547ef8e12333b", + "revision": "5e90f0ff17214b6c8b77f4e5", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344825, + "modified": 1701809344825 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "fa52321fbcad483a9b385cc2", + "revision": "c515b21d09b54f84a429a619", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -4616,64 +4616,64 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "927d6531ba8444d88c3c60dc", + "revision": "15a1ee87506c438a8e144a4b", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679012395493/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 23,54 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "174377edf4c845a7b96d130e", + "revision": "9f17c575b8384383ab63f1cc", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "98406803efa54d2d8dc3eaba", + "revision": "df11d9917e2040229beb6091", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "21d9355ebb6f49c4bc04a92e", + "revision": "73adb0f728a14be68166e417", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "f3ebe7a305b34151bb01217a", + "revision": "ed32a64c466f411a9393cc6b", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -4700,64 +4700,64 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "d12ca2b9cc88444aaa871d50", + "revision": "bc8438a88e484a26abfb2d9f", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181025084/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "2c95185e2b5141688ba61de4", + "revision": "a61b4ed24f4b45b8bd906301", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, - "revision": "8cadd83fb31743369a236fa1", + "revision": "f5bb5cb3d00a402197f83cea", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "d4cb2c9e74fe449bbec8db87", + "revision": "3c0d428ac8ec48d3a06df4c2", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "b3ab32ff987242748abcbc8d", + "revision": "2abc3a9f1e8a47fca2fea1ad", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -4784,64 +4784,64 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "a894cd963b464214ad7f7885", + "revision": "37419c2915ee48978a7c4dad", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679181157805/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "43741797a69d44a29208e9fd", + "revision": "0c79dda4ddfa42c2b86d022d", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 9.200000000000001 }, - "revision": "7ce1b016ee114776aafdcff5", + "revision": "9776c779d92e4604a0bb09c4", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "d7ad3e56924849cca1b3a45d", + "revision": "9a46107d361c4f42a8958150", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "af75680c8e2f490aa10c714a", + "revision": "26c3eaeac3624ac6a62d2c48", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -4868,64 +4868,64 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "fc01b3e4fc9845a99ea747d4", + "revision": "8ba423e6fd7d4865b3a28c16", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679183534080/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", - "revision": "b0bd22e8d87c4747919a6847", + "revision": "9fac3656125e4bcda7adb866", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8 }, - "revision": "cfc2564542094f55ad8f3669", + "revision": "a5689acc2a304db085d2b509", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c4eb39d9737f4b409f5038a0", + "revision": "990ff1f4d1064596b00bbaef", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "6eb59e584abb433eaec783ce", + "revision": "9039d9d6931047f786288923", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -4952,64 +4952,64 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "235db943dbab470bad2870ef", + "revision": "c8921dd59d664ce79699e1da", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184046128/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", - "revision": "14fa8c368f624b85be5160a4", + "revision": "b1ea8c3cc89e498fa8c64ede", "revision_nr": 1, - "created": 1701465820484, - "modified": 1701465820484 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8.4 }, - "revision": "b8205fcbcc3a4c29bf227366", + "revision": "88ef00178ac44a1daac091e8", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "350c918e8f0f46518601ecbb", + "revision": "71a861c0307f42dd9fa05314", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "06bcad539471493989d9d1c8", + "revision": "fce704af5ff840829e975eaf", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -5036,27 +5036,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "e1a894fb80834c8381c5eac4", + "revision": "476095aa66464dcda01b639d", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679184832424/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", - "revision": "76b97088993245e09dadc4eb", + "revision": "f2bcba1331dc443a85233453", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780561471/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679780561471, @@ -5070,16 +5070,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "9a840fb4d8fa49f1a71f11e6", + "revision": "4ad970973b0040d3abf79932", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780561471", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -5108,27 +5108,27 @@ "currency_id": "IVIPAY", "history_id": 1679780561471 }, - "revision": "8be3489e42ef4833966b8a95", + "revision": "d505677b8bd94b9ba55c5834", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780561471/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 50,00 IVIPAY por 5,00 IVIP estabilizando US$ 0,00", - "revision": "7c69a06a4d924925b11f0062", + "revision": "dc88871044cf475f8327aafb", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780730626/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679780730626, @@ -5142,16 +5142,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "4b0d185aea964762b4400e1d", + "revision": "69c838d26d4e41c0a1c5a377", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780730626", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -5180,27 +5180,27 @@ "currency_id": "IVIPAY", "history_id": 1679780730626 }, - "revision": "4ebdb473c5bb4e37b978b434", + "revision": "c4d009f158b049a79a3eb2df", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679780730626/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 50.000,00 IVIPAY por 5.000,00 IVIP estabilizando US$ 0,18", - "revision": "f2e6712bec9f4dc7b0e8155b", + "revision": "3a8eb253353b49bf80d5d9b4", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679798199684/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679798199684, @@ -5214,16 +5214,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d7ea6c3875a14e48a861c15d", + "revision": "235b808b6f3b4bd881103723", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679798199684", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -5252,27 +5252,27 @@ "currency_id": "IVIPAY", "history_id": 1679798199684 }, - "revision": "ef24b9ac29414f299e060afe", + "revision": "14d8495f76a44cefb6ef5b79", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344827, + "modified": 1701809344827 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1679798199684/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 100.000,00 IVIPAY por 10.000,00 IVIP estabilizando US$ 0,32", - "revision": "e65bb340bd5c4afda49508db", + "revision": "6d35dd7af28942d5aed2a23b", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344826, + "modified": 1701809344826 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1681764788277/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1681764788277, @@ -5286,16 +5286,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "1f31a159c06c42bb9ff484cf", + "revision": "34ff768b267b4d21a4d23298", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344827, + "modified": 1701809344827 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1681764788277", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -5325,16 +5325,16 @@ "history_id": 1681764788277, "description": "Compra de 3.964.758,00 IVIP por 700,00 BRL" }, - "revision": "6cb248e604454aee9b20b7cb", + "revision": "df28a5998a9942e1addeb1eb", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344827, + "modified": 1701809344827 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323304615/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1682323304615, @@ -5348,16 +5348,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "dec5315a331446909c2973fa", + "revision": "9d7182ab9b0b494fb1ac2394", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344827, + "modified": 1701809344827 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323304615", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -5386,16 +5386,16 @@ "currency_id": "BRL", "history_id": 1682323304615 }, - "revision": "03c1d113b0404fc6a9c4d0d2", + "revision": "9f612af129d94f02b76ff4ec", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344827, + "modified": 1701809344827 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323486538/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1682323486538, @@ -5409,16 +5409,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "425affdcc3d14c9b99480cb2", + "revision": "14d887a3d76a4283a31249fc", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344827, + "modified": 1701809344827 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682323486538", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -5447,16 +5447,16 @@ "currency_id": "BRL", "history_id": 1682323486538 }, - "revision": "0d93781188a048c4b2debd6f", + "revision": "fc1d95452f4644d695c43976", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344827, + "modified": 1701809344827 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324590308/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1682324590308, @@ -5470,16 +5470,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b2c7d635f9fb418a9dc5d886", + "revision": "de17eeecfc7b4de9a88cee0c", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344827, + "modified": 1701809344827 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324590308", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -5508,16 +5508,16 @@ "currency_id": "BRL", "history_id": 1682324590308 }, - "revision": "adf598c4e7e04f1ab5db14ef", + "revision": "dd5ca6665b684bdf84d49991", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344828, + "modified": 1701809344828 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324593569/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1682324593569, @@ -5531,16 +5531,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "8c9780bca7a44eebbc1e9c85", + "revision": "028c4f5d5be14de9a47ea89d", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344828, + "modified": 1701809344828 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682324593569", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -5569,16 +5569,16 @@ "currency_id": "BRL", "history_id": 1682324593569 }, - "revision": "f3babc00f8d743928b97d679", + "revision": "ba7a3db0cc0045738edc372a", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344828, + "modified": 1701809344828 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325423689/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1682325423689, @@ -5592,16 +5592,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "1f93b7fa448d4ef6bd74e56a", + "revision": "bbcbbc8cb329438086b0cbf9", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344828, + "modified": 1701809344828 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325423689", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -5630,16 +5630,16 @@ "currency_id": "BRL", "history_id": 1682325423689 }, - "revision": "c8e07703e54349239391ee12", + "revision": "9ff2ba3d2c584b2a959df378", "revision_nr": 1, - "created": 1701465820485, - "modified": 1701465820485 + "created": 1701809344828, + "modified": 1701809344828 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325428664/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1682325428664, @@ -5653,16 +5653,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "6fe0abb25a504ee2a00df7c7", + "revision": "67f62f7c59f54d64a4b3c5ce", "revision_nr": 1, - "created": 1701465820487, - "modified": 1701465820487 + "created": 1701809344828, + "modified": 1701809344828 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682325428664", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -5691,16 +5691,16 @@ "currency_id": "BRL", "history_id": 1682325428664 }, - "revision": "cafb45e4622d44428394ea7b", + "revision": "de7c0e49e662499e9a54e353", "revision_nr": 1, - "created": 1701465820487, - "modified": 1701465820487 + "created": 1701809344828, + "modified": 1701809344828 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544384/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -5716,16 +5716,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "39ee2b62d25c422893eac765", + "revision": "ba061d71a5cc4588929b92f2", "revision_nr": 1, - "created": 1701465820487, - "modified": 1701465820487 + "created": 1701809344828, + "modified": 1701809344828 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544384", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -5755,27 +5755,27 @@ "currency_id": "BRL", "history_id": 1682578544384 }, - "revision": "020820fc2ff64b51bab3a31c", + "revision": "24a4cae57b2446d3815649f4", "revision_nr": 1, - "created": 1701465820487, - "modified": 1701465820487 + "created": 1701809344828, + "modified": 1701809344828 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544384/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "1e5827d548ed43d094dc9b0f", + "revision": "e7a0de05af324e8294fa7d6b", "revision_nr": 1, - "created": 1701465820487, - "modified": 1701465820487 + "created": 1701809344828, + "modified": 1701809344828 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544557/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -5791,16 +5791,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "48a683771e71455e9744f0ca", + "revision": "352c8b9b5a2a4813a720b562", "revision_nr": 1, - "created": 1701465820487, - "modified": 1701465820487 + "created": 1701809344828, + "modified": 1701809344828 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544557", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -5830,27 +5830,27 @@ "currency_id": "BRL", "history_id": 1682578544557 }, - "revision": "0f5f05f514b14a43abc3eda5", + "revision": "fb6d4ab955974831944da2fa", "revision_nr": 1, - "created": 1701465820487, - "modified": 1701465820487 + "created": 1701809344828, + "modified": 1701809344828 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578544557/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", - "revision": "3f5b25d6c61944d9a9448aae", + "revision": "b381b678af53424ea288f370", "revision_nr": 1, - "created": 1701465820487, - "modified": 1701465820487 + "created": 1701809344828, + "modified": 1701809344828 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984558/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -5866,16 +5866,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "78df81ca5bf447ce944d23c7", + "revision": "b5652b84d8c64768b833c846", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344828, + "modified": 1701809344828 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984558", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -5905,27 +5905,27 @@ "currency_id": "BRL", "history_id": 1682578984558 }, - "revision": "90344fa5408644e0acf64d57", + "revision": "9a8489a35fd34659baf0a6b6", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344828, + "modified": 1701809344828 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984558/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 2 no valor de 119,60 BRL referente ao contrato 1679183534080", - "revision": "bd6bba7b5d074badb8fba21d", + "revision": "30ba66d3fef44496900c9a51", "revision_nr": 1, - "created": 1701465820487, - "modified": 1701465820487 + "created": 1701809344828, + "modified": 1701809344828 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984726/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -5941,16 +5941,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e117b100e95845e68cc2db85", + "revision": "997b3e9796574a9bb061373a", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984726", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -5980,27 +5980,27 @@ "currency_id": "BRL", "history_id": 1682578984726 }, - "revision": "628cd1cff6a24166b78a4c1a", + "revision": "8f179b569ec14f09a6a52af0", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984726/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 2 no valor de 104,00 BRL referente ao contrato 1679184046128", - "revision": "fe54b66aface49cca5851016", + "revision": "dcd21abf464c4ae5a7609120", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344828, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984913/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -6016,16 +6016,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "09bea5f7965f4ea983a50c68", + "revision": "51435939fea540d8bb4fe92a", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984913", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -6055,64 +6055,64 @@ "currency_id": "BRL", "history_id": 1682578984913 }, - "revision": "e9904aebca4a48909651e156", + "revision": "9da1f43e492b46dc896889ea", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1682578984913/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 2 no valor de 109,20 BRL referente ao contrato 1679184832424", - "revision": "1bb3b2aec1b648848b5e2953", + "revision": "5ec68abe08074faf85ae26ee", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 4 }, - "revision": "c89d9f16906a4ebfbe17f656", + "revision": "81285e92698a451e8233cd95", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1cd722cd45e343698b013ce6", + "revision": "fa715efdb7d2424fb255b78d", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "45d8327ba6044b47935281db", + "revision": "1d60bcf0b78f4058a1665d55", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -6139,64 +6139,64 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "e92b8cbc668d4eb7870678d9", + "revision": "7bb89c10e2024bab944185af", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683665355468/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 204,00", - "revision": "0ffaabf5a4c04d49acacfbc2", + "revision": "e5dd4730cadd441fadd0b442", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, - "revision": "a34d3b7f323d48c98bcaba18", + "revision": "1012e5767da44dd8ba8ec564", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1ed676fb16e14717a5893b86", + "revision": "161f4a570fc240b6b2c7daf1", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "0c4af8024cd0471da230c80e", + "revision": "f5e0fcf5040540ff89c4b8a7", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -6223,40 +6223,40 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "df5e874335b84371a3dfc809", + "revision": "c85d723d00534e1d960958d4", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1683667472591/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", - "revision": "478f1dedfcd84067a777a161", + "revision": "c7704c0de25044e395e9bcd4", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "4ae9f106ad3d4c0ab224aea7", + "revision": "dfd435c273d742889788bcba", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -6292,27 +6292,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a371dad100c34f83966d1149", + "revision": "88da02f9ae244d6d87fe1b07", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684303097186/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "4cc5f7d0420943d1a03f1e8e", + "revision": "ef790647732f47d586382445", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684348051817/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684348051817, @@ -6326,16 +6326,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "a834dc1b6ca94e29b7d6df69", + "revision": "5dc543fc9c2641f28a86d9db", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684348051817", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -6364,27 +6364,27 @@ "currency_id": "BRL", "history_id": 1684348051817 }, - "revision": "6772cb85fabc42bfad11ef85", + "revision": "cd4409bb26954a28a86ceac8", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684348051817/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "0b624c892bc44e848c22f0c8", + "revision": "6b7c791f7da54587ad2e8bc8", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739701/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -6400,16 +6400,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "7f85d761a0cb4a77a57cb745", + "revision": "a758077cf6e942d283bb95c2", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739701", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -6439,27 +6439,27 @@ "currency_id": "BRL", "history_id": 1684436739701 }, - "revision": "2f51ee5ab04840a291a81a19", + "revision": "e2f6796946a64593b83b9c3d", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739701/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "4a9b4fe3862a4b44b9ed58f2", + "revision": "959d339de07c4a46a58542b0", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739822/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -6475,16 +6475,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "fbe056b8dc704eacbeeef4ec", + "revision": "dfedffc2087d48df94d9028a", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739822", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -6514,27 +6514,27 @@ "currency_id": "BRL", "history_id": 1684436739822 }, - "revision": "dbcdcd3b41564471a270ee68", + "revision": "a5d6bd36227549ee9ed00bb2", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739822/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", - "revision": "caeaacc121ba4221a80d0852", + "revision": "35e04563fd4e462b95419de5", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344829, + "modified": 1701809344829 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739934/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -6550,16 +6550,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "a54c2e92657c492e886ab517", + "revision": "e1d0f47f91c64b4f9a3f75b1", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739934", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -6589,27 +6589,27 @@ "currency_id": "BRL", "history_id": 1684436739934 }, - "revision": "6f6930f1252c411f82fa50f9", + "revision": "1cf344a5bc55485b812a4bc8", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436739934/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 2 no valor de 119,60 BRL referente ao contrato 1679183534080", - "revision": "ec84e871081944668cf00649", + "revision": "17720167316b4e2cba14d699", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740031/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -6625,16 +6625,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "65e85fb7e233475ea0e8fea5", + "revision": "6b5cb3681e084f568145363b", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740031", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -6664,27 +6664,27 @@ "currency_id": "BRL", "history_id": 1684436740031 }, - "revision": "d6c29f64e1844ab7ba39550b", + "revision": "c012ae5f162749488839ccd2", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740031/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 2 no valor de 104,00 BRL referente ao contrato 1679184046128", - "revision": "d3fd44c5d99d41a69ca05877", + "revision": "3e2c9a8f085f46b98766f285", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740155/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -6700,16 +6700,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b4ac6433ebac4b65a2dbff66", + "revision": "a769ea6f51c248e685e620b5", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740155", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -6739,27 +6739,27 @@ "currency_id": "BRL", "history_id": 1684436740155 }, - "revision": "4e02963a9fd64a44bf87fe69", + "revision": "caa60f951f804013840e8313", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684436740155/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 2 no valor de 109,20 BRL referente ao contrato 1679184832424", - "revision": "af44b8ba76d4417d9f1bbde9", + "revision": "bdf9922d04254912aa437bc0", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790150988/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684790150988, @@ -6773,16 +6773,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e2cf2b2ce36c4d378cae9fea", + "revision": "756856c801e44e968e9e423d", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790150988", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -6812,16 +6812,16 @@ "history_id": 1684790150988, "description": "Compra de 5.850.731,00 IVIP por 1.200,00 BRL" }, - "revision": "54ac83f5600d4c6fb4965d3f", + "revision": "134d938dae354534b69ceb19", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790990972/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684790990972, @@ -6835,16 +6835,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "da9c031d39d645258160c695", + "revision": "233784197d7f4b8bad99bd87", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790990972", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -6873,40 +6873,40 @@ "currency_id": "BRL", "history_id": 1684790990972 }, - "revision": "8d340f7801c546e2a4ab9216", + "revision": "683f8edfcb9245e1b280cfdb", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1684790990972/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "e4b47e4260e447368b092cd5", + "revision": "3adbee9c4025458da7ca2cfb", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "1e9a9145814c4247aa1753f2", + "revision": "ed90202c8c1e41aa8137aff1", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -6932,40 +6932,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "45c9d80234ce4a1ba0c4deff", + "revision": "5aa163c82e0e41c693ee12d9", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376471814/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 2.337.199,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "75ef89b8bf75466a93e0beea", + "revision": "55b4a318c48844a4863d4958", "revision_nr": 1, - "created": 1701465820488, - "modified": 1701465820488 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "a2c5d62cd42d415d9fd48c3a", + "revision": "7bcb2fc829e141bd83777a0d", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -6991,40 +6991,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "9f26855dba6f4158a44093ec", + "revision": "7cca7bdde55b471eb253ea68", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685376968807/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1.357.502,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "927a75dc80d048329e0211c1", + "revision": "1cc54280a8e94c71ab84ffbd", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "14d9087e04fb4ba6b1cbd62d", + "revision": "c788457f1ddf4059b27f3934", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -7060,40 +7060,40 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "c13d66f0661a4e059e022ff3", + "revision": "c3479418bb6947e0be55bdea", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379763814/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 754.612,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "09c5aa05d18746c98481cba0", + "revision": "b9b7d5397ddc489a88646633", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "db9239d7344e4b0d84595c5d", + "revision": "dca47e4a24494a48ab7efdde", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -7119,40 +7119,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "2a69c258e8ac499bac060afc", + "revision": "23a64b064f434d96af437955", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685379960399/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1.432.864,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "50cbf64b9829425ab6d6ce84", + "revision": "b400fa4409494c578ea6bfe4", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344830, + "modified": 1701809344830 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "1791a51353fb43ab8b089835", + "revision": "15f2454581174d48917310fd", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -7183,27 +7183,27 @@ }, "money_release_status": "rejected" }, - "revision": "1ef5a40476184cefb60eb8a8", + "revision": "c962400510454444a8fd4918", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685382789817/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.248,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "d42ec00f9c344388a07b4849", + "revision": "3a82ff9363ba429b8624b016", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685391703693/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685391703693, @@ -7217,16 +7217,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "c7af55bac2b54dae9ff18b67", + "revision": "4a358e76a5d143ebbde3793a", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685391703693", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -7256,16 +7256,16 @@ "history_id": 1685391703693, "description": "Compra de 15,00 IVIP por 150,00 IVIPAY" }, - "revision": "59e6bea6c4464fb2baef1010", + "revision": "b86aeb724f9941759a163548", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685392276817/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685392276817, @@ -7279,16 +7279,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b5184596182f4a3d87eef81b", + "revision": "79bd1e0edb8d4b1cadd4f661", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685392276817", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -7318,16 +7318,16 @@ "history_id": 1685392276817, "description": "Compra de 5.000,00 IVIP por 50.000,00 IVIPAY" }, - "revision": "21073a23ac8f46199f835bb9", + "revision": "6c9f51b3935d48fbab2f1470", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393515405/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685393515405, @@ -7341,16 +7341,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "5191f5605cc94c09912dff8b", + "revision": "82d0ceb4c4aa4183ab122603", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393515405", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -7380,16 +7380,16 @@ "history_id": 1685393515405, "description": "Compra de 500,00 IVIP por 5.000,00 IVIPAY" }, - "revision": "987e82800a2b47cfae0eed38", + "revision": "6f4ac8206f764e64be08088c", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393559293/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685393559293, @@ -7403,16 +7403,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "3be35554a17b4714958e378e", + "revision": "f45ecc48a4164907858884f4", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685393559293", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -7442,16 +7442,16 @@ "history_id": 1685393559293, "description": "Compra de 5.200,00 IVIP por 52.000,00 IVIPAY" }, - "revision": "3cb4ba46792841f2827de853", + "revision": "3faa1529619a4db795dca94c", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685394959774/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685394959774, @@ -7465,16 +7465,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "a46caa04232e492f82b52959", + "revision": "70b8a05fc9174cc284cabe61", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685394959774", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -7504,16 +7504,16 @@ "history_id": 1685394959774, "description": "Compra de 4.200,00 IVIP por 42.000,00 IVIPAY" }, - "revision": "89a66289584c4310a97e0918", + "revision": "c9a802454fca4312a53c943a", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395256711/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685395256711, @@ -7527,16 +7527,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "0daf399f15b546b7ae19f311", + "revision": "d48b0c9158f44a5d8b62871a", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395256711", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -7566,16 +7566,16 @@ "history_id": 1685395256711, "description": "Compra de 9,00 IVIP por 95,00 IVIPAY" }, - "revision": "a586c3c278094c19b26b7acf", + "revision": "d9e26b620f374ee6b6e12843", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395602952/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685395602952, @@ -7589,16 +7589,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "ad5451f413f541e1aa47aa38", + "revision": "fc581233bf584eccb65ddd47", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395602952", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -7627,27 +7627,27 @@ "currency_id": "IVIPAY", "history_id": 1685395602952 }, - "revision": "a2a40d48bde04d47b1d6be25", + "revision": "6ab08d46911b4772b15afa08", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395602952/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 10.000,00 IVIPAY por 1.000,00 IVIP estabilizando US$ 0,09", - "revision": "cfdfc4505cf4492ab117bbd2", + "revision": "6b33e13d0cd14fb698cf792f", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344831, + "modified": 1701809344831 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395698830/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685395698830, @@ -7661,16 +7661,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "80dd96f9bcfd484f8b9cf48e", + "revision": "9acc4d21a11349398e6d7b31", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685395698830", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -7700,16 +7700,16 @@ "history_id": 1685395698830, "description": "Compra de 1.000,00 IVIP por 10.000,00 IVIPAY" }, - "revision": "7ebedcc4eff845efbb30bc2b", + "revision": "ea831cefc86b4d42affb4891", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457147497/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685457147497, @@ -7723,16 +7723,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b724116765e84078b623a2dc", + "revision": "9f15b96419bf4525b014d446", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457147497", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -7761,27 +7761,27 @@ "currency_id": "IVIPAY", "history_id": 1685457147497 }, - "revision": "184357632e824df8aee6046d", + "revision": "a7c9fb56445b41f7981a1de3", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457147497/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 30.000,00 IVIPAY por 3.000,00 IVIP estabilizando US$ 0,22", - "revision": "bcd1bd734f804d79941232cd", + "revision": "014a77265a63496fb7f9ebf0", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457225462/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685457225462, @@ -7795,16 +7795,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "929a25b30f2f4e95ad38e851", + "revision": "a2b54aa8566046999dd43d9a", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685457225462", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -7834,16 +7834,16 @@ "history_id": 1685457225462, "description": "Compra de 3.000,00 IVIP por 30.000,00 IVIPAY" }, - "revision": "f287f25d0c964bb4a823ec13", + "revision": "23dd2b5b83a945cfa928de0c", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458042396/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685458042396, @@ -7857,16 +7857,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "81f4ea41304d41d9a0e4de01", + "revision": "0a19d35bf38148909984019e", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458042396", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -7895,27 +7895,27 @@ "currency_id": "IVIPAY", "history_id": 1685458042396 }, - "revision": "2bb2eb0f060947e4b8b7efcc", + "revision": "99eb9c873b8b4277ad769954", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458042396/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 70.000,00 IVIPAY por 7.000,00 IVIP estabilizando US$ 0,46", - "revision": "13ce49c229274844b29dba6f", + "revision": "a7401b072ec4460c85259c46", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458118470/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685458118470, @@ -7929,16 +7929,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "ae8dd924ac024d0782a650d6", + "revision": "f1735d8a6d9a4b528916dd34", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685458118470", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -7968,16 +7968,16 @@ "history_id": 1685458118470, "description": "Compra de 7.000,00 IVIP por 70.000,00 IVIPAY" }, - "revision": "f9c74da99e5d435b8065d5d2", + "revision": "63105604df884674ab7502bf", "revision_nr": 1, - "created": 1701465820489, - "modified": 1701465820489 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685663081137/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685663081137, @@ -7991,16 +7991,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "fed69f2bd764401cb1e423dc", + "revision": "be6a9d5c044746e19f3091d2", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685663081137", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -8030,16 +8030,16 @@ "description": "", "wasDebited": true }, - "revision": "b14350d8c42a4628a844a624", + "revision": "0e16f2ff77014e589abac27a", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685732640623/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685732640623, @@ -8053,16 +8053,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d6af5ffc15884ffa83fa0493", + "revision": "05bcaa99f0174fd4a6c275cc", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1685732640623", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -8092,29 +8092,29 @@ "history_id": 1685732640623, "description": "Compra de 0,00 IVIP por 75,00 BRL" }, - "revision": "54690799e1ac413993515906", + "revision": "af4b69b9b99045f7a9583c64", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "cfa4bf600aa545c0a8a865e6", + "revision": "bb07c57de49244a784cc472f", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -8140,27 +8140,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "8b019453e10b4ff6b8d736e2", + "revision": "8e9330be1d3d498997d17587", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1686686158496/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 220,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "bee280a3229746f5b310e9c2", + "revision": "7d169a6de4be4adc87bfc055", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344832, + "modified": 1701809344832 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687279230710/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 3, @@ -8176,16 +8176,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "42d21ae8904d41e9834199dd", + "revision": "66d9564c0134486b94bb4ac0", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687279230710", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -8215,40 +8215,40 @@ "currency_id": "BRL", "history_id": 1687279230710 }, - "revision": "08dadd340576450e8d8f3132", + "revision": "296dbd8bed3e457cbe5ac400", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687279230710/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 3 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "d1858943c19b4baa980c11a3", + "revision": "1b8a12c50c5f4a4fb2cb57e9", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "75f934db278d41738127e22b", + "revision": "eb4fca604d5646508969a09f", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -8274,27 +8274,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "5eef77a0322848079f8bff15", + "revision": "c87c6118cab6448093c6a94c", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1687291349985/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 865.324,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "21e3aecd39ad4237aa6c9688", + "revision": "9b33910f8db441df938151ed", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1688400997533/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688400997533, @@ -8308,16 +8308,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "0dbd2ab2a6b8491aa624f38d", + "revision": "b35626d9cba943e7a3fb491c", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1688400997533", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -8346,27 +8346,27 @@ "history_id": 1688400997533, "wasDebited": true }, - "revision": "5ce5ad116a14454092ec6360", + "revision": "e84551122c8f475fa63d78da", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1688400997533/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 100.000,00 IVIP com um rendimento de +2.000,00 IVIP (2,00%)", - "revision": "360d9024088f42f0ba980728", + "revision": "4055c79c7816490689a03d8e", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689203359364/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689203359364, @@ -8380,16 +8380,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "6293bef75fc249ceb8f63379", + "revision": "a4794f01b7fe4569b166d2d3", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689203359364", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -8417,27 +8417,27 @@ "currency_id": "BRL", "history_id": 1689203359364 }, - "revision": "9709e3eff1684a2b98e94b26", + "revision": "c5a4cade1b744585b05f88f7", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689203359364/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 960,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/12/2024", - "revision": "dd77f4547e014ebab99e8fde", + "revision": "6612eb2f02ea4d789e793887", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -8445,16 +8445,16 @@ "value": 1692469402188 } }, - "revision": "f2eb84bfd36d417781edf0da", + "revision": "8b55e42be5244e17976b2f9d", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1689877402192, "net_received_amount": 0, @@ -8466,27 +8466,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c7f6239a941c4ae6b65b1c57", + "revision": "830a0766c5194525b7d4cbec", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/extract/000523147298669313/order/1689877402188", - "revision": "330d5976ce6141e789264a26", + "revision": "b6bc9d323af44830bf8570e1", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -8510,27 +8510,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "3fe077fd85864244b106cb9a", + "revision": "7b69af42ef2b473ead4d298e", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689877402188/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 7.104,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "47cc1caa352f4445ad5a321d", + "revision": "177ece111ec141b789b58f3f", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -8538,16 +8538,16 @@ "value": 1692475284161 } }, - "revision": "51a13e7319e64dd195d11185", + "revision": "23af8fbcc7ee46a68dc17977", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1689883284161, "net_received_amount": 0, @@ -8559,27 +8559,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1dd12f7212574cc38875427d", + "revision": "10134a31d09348a789c348f9", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1689883284161", - "revision": "a941805c09a846beb782d83f", + "revision": "f7e3683f17b2495a9c814fd5", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -8609,42 +8609,42 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "864c3feca2db4e8fb25bd023", + "revision": "c062b6b817774e0ab0d8b327", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1689883284161/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.391,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "5eb6cd6e82ed4620b274b441", + "revision": "b1d1ce1d206046fbb102dc29", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3%", "amount": 145.5 }, - "revision": "d320ddca064544ccab8b6af3", + "revision": "c79d2028d5744c33a611c74f", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690566158772, "net_received_amount": 0, @@ -8655,38 +8655,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "9ac185c80d7d427a8686d5cc", + "revision": "3d2031672713419bb461b116", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566158772", - "revision": "d82ec40efe68417eb2e13331", + "revision": "6eb2a67a45ef412abc2a1cde", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "427f52e721a84039907ed04f", + "revision": "92e75a64ef2c4ee880843948", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -8720,42 +8720,42 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "a6c736792d0f4bc48fb616f2", + "revision": "73394c622b664294a506cd9b", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566158772/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 50,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "1cf75d28cf264bf19f9f9290", + "revision": "c9756c9d62f04de6bcab5a4d", "revision_nr": 1, - "created": 1701465820490, - "modified": 1701465820490 + "created": 1701809344833, + "modified": 1701809344833 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3%", "amount": 29.099999999999998 }, - "revision": "cdf68640f30b4fabb1425bbf", + "revision": "2912d682dfbd4634aa7e5c79", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690566489489, "net_received_amount": 0, @@ -8766,38 +8766,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "612f0ace8bd24c64bfac01b3", + "revision": "5c44644eec754cccaaae33d2", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566489489", - "revision": "a662d6ae386d41b5a04fbee0", + "revision": "330f19e0d30446b69c891282", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "3034ea5bc1a74ba4b6cf7c9b", + "revision": "9af200ae9c5a46ae88a62ac1", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -8835,42 +8835,42 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "934083c802ae4b34852f21a4", + "revision": "dc92ff56e05d4f278d546f52", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566489489/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 10,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "cefa83e6ff9c449cbde96fa2", + "revision": "deca9050d2d44478a797c396", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3%", "amount": 34.92 }, - "revision": "a79e0c66b0434a9ba5f39287", + "revision": "e859e7b38e6645dba8e4022f", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690566618435, "net_received_amount": 0, @@ -8881,38 +8881,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "9b215f62ac8c4998b456a914", + "revision": "8600e2fe62c948fab93a0204", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566618435", - "revision": "2b018ee2a0044fef9272fbe5", + "revision": "5d0859d97eff46c6ad4928a0", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "788a25a360de4393bae51bd2", + "revision": "e6462107867247209e99d83b", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -8946,42 +8946,42 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "629bc6e30b4f42498699118e", + "revision": "e40e9797e3fc470b953aa7da", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690566618435/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1164 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "772bab573208437abcdd4e11", + "revision": "4a1952d26c7f4307a065ebcd", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 392.84999999999997 }, - "revision": "f4e8cf2722144a51bbb0e931", + "revision": "38f8553081f64fdc98ffbce5", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690568586623, "net_received_amount": 0, @@ -8992,38 +8992,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "493739923b5e423486036cd7", + "revision": "63aa117b3b0841338a1562cb", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690568586623", - "revision": "5fbfc7300682469a8b9c560f", + "revision": "f0b9beb39858496aaddc9b03", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "fc63bed908584111a31f6cb2", + "revision": "c2dc75b20b6f4b0a926ed7e8", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -9057,27 +9057,27 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "0417fa1cedde4a43bb12eb0e", + "revision": "a2480cc07d1e41d7aa586797", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1690568586623/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 13.095,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "2ad72a49b6ff4f0a8329ea28", + "revision": "d5f8dad892b342c28e0dde61", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1691685725174/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691685725174, "net_received_amount": 0, @@ -9089,27 +9089,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "92009c65124e4d35b6dbaf30", + "revision": "15f83413027b4a938aad4b64", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1691685725174/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1691685725174", - "revision": "d6a551e5bfcb48f9a2046e60", + "revision": "131a0e02b97543e29963e885", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1691685725174", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -9138,16 +9138,16 @@ "description": "Compra de 155.950,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "22463e0d2283435fbcee95a7", + "revision": "eea10aa8384d4915a6eb781a", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344834, + "modified": 1701809344834 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -9155,16 +9155,16 @@ "value": 1694889623442 } }, - "revision": "8be839bac8e34adca0871130", + "revision": "220b03df7c79438e9676476d", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692297623443, "net_received_amount": 0, @@ -9176,27 +9176,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "e1469eb452254e8ba37384d0", + "revision": "4c3e3c53d76d4591952e0155", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692297623443", - "revision": "064d95fc8a6f4f118f1ef6fa", + "revision": "df352e1cec1d43e9848c7294", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -9220,27 +9220,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "58d49f1db08940869a6e9bb9", + "revision": "cd0f79b5769d487882220d30", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297623443/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 50,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "1967544922a049a88ddb710a", + "revision": "25bc48d0ff6240ce94f3c3ec", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -9248,16 +9248,16 @@ "value": 1694889768550 } }, - "revision": "5a0516a6fa4d451491995501", + "revision": "eaa1dd8436fa4d6882176bad", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692297768550, "net_received_amount": 0, @@ -9269,27 +9269,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "23ceefab2cce4306b17e06be", + "revision": "1af6287c058443b49450e5b2", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692297768550", - "revision": "a1a4ffd5a4c74ab283cb7a25", + "revision": "21e75787d7304b74907d5d03", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -9319,27 +9319,27 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "7f62f601c0414600809cd20d", + "revision": "7aec519ff78b4578aba6876d", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692297768550/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 25,00 BRL para a carteira iVip 0005.2314.7298.6693-13", - "revision": "72689ad73b9442ff90fb45bf", + "revision": "f4253b0b68fc4f12a81f5cf0", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -9347,16 +9347,16 @@ "value": 1694896646621 } }, - "revision": "51036b2816b24b3aae136824", + "revision": "3af723e747984208980a23ed", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692304646621, "net_received_amount": 0, @@ -9368,27 +9368,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4dc8839ba6354b23af4c4feb", + "revision": "861cf65c84fb425089232ad0", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692304646621", - "revision": "8e03b7c3bb954a069ed5d920", + "revision": "40d10b1a1a0541a6b5b1cd55", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -9418,27 +9418,27 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "6037d35522314eadb9af1ac8", + "revision": "7393331bb39c4e45b962f5f9", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304646621/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 1.200,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", - "revision": "1043b77216a1413286837a0f", + "revision": "4532b64fb3984bc1a6306761", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -9446,16 +9446,16 @@ "value": 1694896893953 } }, - "revision": "66f3b9f5cf6244068f23214e", + "revision": "8741865cd1d24635aec3d306", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692304893954, "net_received_amount": 0, @@ -9467,27 +9467,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "001358ad8b964af395105401", + "revision": "8c93d8958d7446dd971d4128", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692304893954", - "revision": "d900a400a75b43958c5046a5", + "revision": "c34d2bdf98c44c09addc3340", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -9521,27 +9521,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f14bc0dc2d2c4b4fa4d40d03", + "revision": "9209ae18a413468da888e385", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692304893954/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 23.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", - "revision": "98a7a4eb57d54738916eac67", + "revision": "a8f1d6895e364058bc13bdbb", "revision_nr": 1, - "created": 1701465820491, - "modified": 1701465820491 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -9549,16 +9549,16 @@ "value": 1694905618376 } }, - "revision": "2c54ae3dee0c49059d6bc926", + "revision": "75ab4975561247099f8b8030", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692313618376, "net_received_amount": 0, @@ -9570,27 +9570,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "32378cf368b74ca8a76fd5b7", + "revision": "6ff2c88d870c4aba9c0dcf05", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692313618376", - "revision": "6b5f88b34c644da4a5d0e4ee", + "revision": "d8557d8bdb2e4d49a263b789", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -9614,27 +9614,27 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "af3e13fc3159425fa4de0c67", + "revision": "5a60637c2e674da8b5dc6849", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692313618376/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 10.000.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", - "revision": "97963a83d9814248be331d4f", + "revision": "2a22a39c024b4be2bcad8efd", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -9642,16 +9642,16 @@ "value": 1694960186664 } }, - "revision": "780158a221e2453493647baa", + "revision": "8401e7b48d2c4c44a381e06b", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692368186664, "net_received_amount": 0, @@ -9663,27 +9663,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c2f9c2ff564c486d99aa4712", + "revision": "adced130647d49f28114a0bc", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692368186664", - "revision": "72b0721ee1be4c51859b6e27", + "revision": "afcb7bdbb0834727a9073efc", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -9707,27 +9707,27 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "933018fcebce4649958d7a99", + "revision": "b0fd7fe570ad4573aca05e05", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692368186664/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 125.000.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", - "revision": "95a346988128403bb2d4da1c", + "revision": "4d788e5610f649b19d1728e6", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344835, + "modified": 1701809344835 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692651485901, "net_received_amount": 0, @@ -9741,27 +9741,27 @@ "installment_paid": 3, "installments_payable": 1 }, - "revision": "8f18a038e2a94740afd299b7", + "revision": "7c433b257e90414fad1c70ff", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651485901", - "revision": "5c693f94dc444cd882a9b44d", + "revision": "6c0349ca57c44eb9b228b75d", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -9789,27 +9789,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "3b36c7282198419eb3d1bb48", + "revision": "e13e9fee76164cc1abd8cb9a", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651485901/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 3 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", - "revision": "7feebac437a94bd6a30544e4", + "revision": "8a3e386e8952434f9f5e38fb", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692651487214, "net_received_amount": 0, @@ -9823,27 +9823,27 @@ "installment_paid": 4, "installments_payable": 2 }, - "revision": "8be754540472427a9869ccb5", + "revision": "447e28c0bb5e4eb2bb738e8b", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651487214", - "revision": "ebf8f035919448b3bc079beb", + "revision": "9244fe4dc8a54859a4bdf925", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -9871,27 +9871,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "b3bec9b6dd3847ef97e2a810", + "revision": "802ff27fad9f423b99972475", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651487214/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 4 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "4acf02b12b1746e3b2d4cefb", + "revision": "ec4749b29b8f4d9c8c7bf1c7", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692651816060, "net_received_amount": 0, @@ -9905,27 +9905,27 @@ "installment_paid": 5, "installments_payable": 1 }, - "revision": "da7fa9b8c54d4a069fe796ab", + "revision": "64e59b4c7d05412fb85c3666", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651816060", - "revision": "cb054d24d3f343e1819cbc7b", + "revision": "5901b179d27c4cacb097f7be", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -9953,27 +9953,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "b48d6abc1d5e4328bde4264f", + "revision": "7e87beefc7904bab8f2c9a68", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692651816060/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 5 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "953efb756ea14c9799aab5ae", + "revision": "68fe5b7994dc47f38d32954a", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692658113429, "net_received_amount": 0, @@ -9987,27 +9987,27 @@ "installment_paid": 4, "installments_payable": 0 }, - "revision": "9030cdd74ab541ffb7640a33", + "revision": "5b211591424940309826ebbe", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692658113429", - "revision": "6e2d0b2b9bfe47a59c40021b", + "revision": "ce160dfc49f74cbc9b0ea6ff", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -10035,42 +10035,42 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "6f7c8e5fd5624c36aff0336f", + "revision": "ed9b847049bb4f9ebe5f42f5", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692658113429/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 4 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", - "revision": "519d93d62dda4362b4242888", + "revision": "438286b12e1747469e82af48", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 660000 }, - "revision": "1d62df6a2fd54732a4261a18", + "revision": "af04a6a50b9048d9a2f1732f", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692976623136, "net_received_amount": 0, @@ -10081,38 +10081,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "17608da0e8c1457d9a692ed2", + "revision": "67fe54f412ec4864a7015295", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692976623136", - "revision": "e05ff37dc35e48e4abcb790e", + "revision": "8d56949d6e6d41d098a928dd", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "194cc035b7e744948f8e2d84", + "revision": "f4ea2854822c41a597973db8", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -10150,27 +10150,27 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "79acd3f3523c426688908897", + "revision": "a34aa89c31c64c09972461e6", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1692976623136/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 21.340.000,00 IVIP para a carteira 0x15a315a0f6917CA88693fDCCD4B753E051c2d173", - "revision": "5f8f81a628384dfb8e0e387f", + "revision": "2592534b002a42d9bb8a83be", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693346357974, "net_received_amount": 0, @@ -10182,27 +10182,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d7038d6180a04b8dbbcccae6", + "revision": "a9f32fa23a88490f880814e7", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1693346357974", - "revision": "6a40e5282bee4ae2a4a6b8f9", + "revision": "07f4f7205201428f8a64596e", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -10230,27 +10230,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ac7c69da2dd4416fb2ffd79e", + "revision": "7d80180949da43e996cc22be", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693346357974/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 2.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 29/08/2025 - P9A02KSL", - "revision": "92b1f7e66e904b4c9ed51e33", + "revision": "3105ddb7fbf14d9eaf5ac2b6", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693765839188, "net_received_amount": 0, @@ -10262,27 +10262,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "0d7088c4601d4a8889e0f94d", + "revision": "ac75bd021b8f4ceb9d1917d0", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1693765839188", - "revision": "bec25a92afa34def96c0979d", + "revision": "c645f41e573c4fb0a7aefb93", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -10310,27 +10310,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "03f73cb1b8384e78bb1d433d", + "revision": "5cacbc81fb5746819a6bfd21", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1693765839188/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "a66046225a9c4187ae8fafb8", + "revision": "f95b48f3a4484f1384b89eaa", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344836, + "modified": 1701809344836 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694554040120, "net_received_amount": 0, @@ -10344,27 +10344,27 @@ "installment_paid": 5, "installments_payable": 1 }, - "revision": "476041ea42d041788d0a219f", + "revision": "9b5678553c4142cd8c3254a0", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554040120", - "revision": "d36ff8342a6e4c3ea6c20974", + "revision": "bcf13bda25fd421cb20bbeb6", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -10392,27 +10392,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "0fee2b88711141e6aa7aed28", + "revision": "e8f58841adcf4a1a8b99cc59", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040120/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 5 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "9a4540bd29714d6f857b4c1d", + "revision": "f67b2e1c97f64d24adecfcf4", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694554040222, "net_received_amount": 0, @@ -10426,27 +10426,27 @@ "installment_paid": 3, "installments_payable": 0 }, - "revision": "1adf2c0ef709429f9ca0d5bc", + "revision": "5488cd32d4754521b06f286f", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554040222", - "revision": "1c297cd5c2474a9fb9221973", + "revision": "d7792db129204e29a27c3dd5", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -10474,27 +10474,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "d183706dbe6a4b6eb95bedec", + "revision": "605d07c57a934ee4b076128c", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554040222/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 3 de 3 no valor de 70,67 BRL referente ao contrato 1683667472591", - "revision": "baaecdc852164da9bd3a0ddd", + "revision": "862133316846495d84e554bb", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694554084107, "net_received_amount": 0, @@ -10508,27 +10508,27 @@ "installment_paid": 6, "installments_payable": 0 }, - "revision": "38fce21d934f44c3b2361057", + "revision": "7e94a1b23c31433f94b4ebf5", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554084107", - "revision": "66ac3bb42061483190fac091", + "revision": "88f7e48f59774b6c960f02ab", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -10556,27 +10556,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "9f6f88f92cc1432ca7c24739", + "revision": "fa61a53dedab4cbab840893a", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1694554084107/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 6 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "d1fc33973b814f4997a9ef6d", + "revision": "9d89b2a471494a25ad93a7f6", "revision_nr": 1, - "created": 1701465820492, - "modified": 1701465820492 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696114300558/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696114300558, "net_received_amount": 0, @@ -10588,27 +10588,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "fa7e7894a99f4a3b97875fa6", + "revision": "0063b39182e4488882b9bfaa", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696114300558/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696114300558", - "revision": "feba84e822d94103a89c78bb", + "revision": "cd8969be820c476ea501f702", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696114300558", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -10638,16 +10638,16 @@ "description": "Ganho de 100.000,00 IVIP pelo VOUCHER", "status_detail": "accredited" }, - "revision": "ae5de2d6916c4e53ad061708", + "revision": "6e90ea69fa0f4546861a9f04", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696118036096, "net_received_amount": 0, @@ -10659,27 +10659,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7b9aa4e01ac649ccadad1355", + "revision": "1ee4a292cfbd4e7280f77347", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696118036096", - "revision": "06f12f5becd0499981cb19f1", + "revision": "a51fb348c4fb4d45ad686b4c", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -10708,27 +10708,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "102516b92f69455a96e6ae87", + "revision": "6669aa4f39804e06a058d323", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118036096/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 100.000,00 IVIP pelo VOUCHER com o número 1037", - "revision": "de7663111a3e476eb2b28d39", + "revision": "b6f1280219d64d14b9690853", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696118157622, "net_received_amount": 0, @@ -10740,27 +10740,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b020f0f6409041f2ba16dc30", + "revision": "35f12135a35049bdaf45d2b1", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696118157622", - "revision": "76f7c88b5fa84b8da31ad150", + "revision": "de4de16897b1446793ae8e56", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -10789,27 +10789,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "901cde7c814942b6ab650db7", + "revision": "e722c4cd7ca348a9b9324519", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696118157622/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 50.000,00 IVIP pelo VOUCHER com o número 0023", - "revision": "574e39cdc1ed48459460f499", + "revision": "b19f6d39c6f940ee8c4b8e05", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344837, + "modified": 1701809344837 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696360843684, "net_received_amount": 0, @@ -10821,27 +10821,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4fc8e905d60b432a828e42a5", + "revision": "a6eb419a30c84ce0b7098387", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696360843684", - "revision": "110587f4210542979f661679", + "revision": "66016d435b83446dbee5e0fd", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -10870,27 +10870,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "59a52d73f08d4f57951a0cbe", + "revision": "fe7e46d24ae84839b8147a28", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696360843684/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%) - Y12XDT27", - "revision": "3e8ff779e5c043c9a80ac52f", + "revision": "bff58bf8fa6f4280bc39e743", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696362317186, "net_received_amount": 0, @@ -10902,27 +10902,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "95c363a02cbe4ba0b6dae293", + "revision": "77a8c374a8d9425b9d70d71a", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696362317186", - "revision": "12f04317bada4951a2e62145", + "revision": "57cfdb885f5e4929bfdbad7a", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -10951,53 +10951,53 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "2a97e6daec00499eac90f573", + "revision": "a1f58323a9b84b288f213cef", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history/1696362317186/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%) - Y12XDT27", - "revision": "7457f4b812ee4e4f9f972d55", + "revision": "284f1bbcb171434f86fea42f", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a1d717634d484113babc4085", + "revision": "97900a6706f04871ad543767", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "d2f0897070cc46a4b2156719", + "revision": "2dea06daee544e4eb143035b", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679181025084, "type": "emprestimo", @@ -11013,53 +11013,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "44376cc77b6e43c0a51929a2", + "revision": "ec56484b498349d8bc7022d7", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "1a4e4f8d5d604b92bd69e38c", + "revision": "a89031d527fd4c2a81d20d31", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181025084/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "8d5bc0c92ef54600bb4247e0", + "revision": "74273c445af64c589300ab96", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, - "revision": "664dfc9dfa6a43429f7f1de4", + "revision": "be4ad627ab8140a4aa1d8e63", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679181157805, "type": "emprestimo", @@ -11075,53 +11075,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "535e841ed0d94a47a4ddb198", + "revision": "90007b5c75ba4f7784506288", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "cab5951320b94473bd202b62", + "revision": "ae65b2b443b04ffcba420a5f", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679181157805/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "2d7aa968a8344c4eb602273c", + "revision": "8669dbde111a4fba80f43350", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 9.200000000000001 }, - "revision": "232c7883355d45548690a010", + "revision": "f6208c7965b0447ba6c3a39e", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679183534080, "type": "emprestimo", @@ -11137,53 +11137,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "8a0db30ccd7a4b69b4408ae0", + "revision": "4081585797fc4bd1976157e3", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", - "revision": "e29fa8d6c4e1482090712832", + "revision": "5fac143ea43140d782f1f91b", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679183534080/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "f97ed7558cda4e909696b7db", + "revision": "7d9bec7c73d84bb58a42f42a", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8 }, - "revision": "ba56370c15de4de3abc5def0", + "revision": "47ea45e58af84f34810a37d9", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679184046128, "type": "emprestimo", @@ -11199,53 +11199,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "0150f351516b46c982480c6e", + "revision": "6c6671b11683483bbe9eccde", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", - "revision": "1b0a18dcfd13446bbba81b83", + "revision": "afe484e9af18410295f0260f", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184046128/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "4e38acf9c80f4bc9ac1386ba", + "revision": "d9673ee239144c11bdb4775c", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8.4 }, - "revision": "ca190534ba5643dea28467fe", + "revision": "48815f16e480476f82ec39eb", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679184832424, "type": "emprestimo", @@ -11261,64 +11261,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "53f77242fcaa4ce98ea894a3", + "revision": "9a3c790018924162ab2cb257", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", - "revision": "24d2505116f34197a6569760", + "revision": "1f6b34e43d39407d9c079ddc", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304/1679184832424/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "dfe3faaa17f543f4ba72bca1", + "revision": "4301c722f9a1410e9868be60", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344838, + "modified": 1701809344838 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202304", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "bf8b89fd54f341ff8f8138aa", + "revision": "13ff00d5a95f44bb9595cd71", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "935fe675ce6b4cae8b152f18", + "revision": "300078f62fc94e57a1fe0a44", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679181025084, "type": "emprestimo", @@ -11334,53 +11334,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "98d82865d8b440a09ab4204a", + "revision": "2e741e1f4fa246ee914fb1da", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "ce7f15006e884f6cacd8eba1", + "revision": "e8cb778d47414aeba0446101", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181025084/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "1b82cd8cddf44db298851552", + "revision": "5b26fbc5254d47cab8813f3b", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, - "revision": "07c08cc39c8f4db5bc646c8a", + "revision": "8a8ff04693594e138b64ba27", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679181157805, "type": "emprestimo", @@ -11396,53 +11396,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "5e835260936c4e3d8e82f156", + "revision": "a4a55f5cfc504440a99bba3b", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "04aa9b832e5c413cb4c5fc8d", + "revision": "f979b20ac6044713930a280c", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679181157805/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "3f9e55c075e940e38d129314", + "revision": "2c38de6b41764f15af7a8a54", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 9.200000000000001 }, - "revision": "b38130c3fded4e0ea67dfa4a", + "revision": "e7512001a9904541874cf635", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679183534080, "type": "emprestimo", @@ -11458,53 +11458,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "169967c0ea3847d0be97858a", + "revision": "8d68965ba2dd46ada77a2e5d", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", - "revision": "86752665dd174ce3a1905d9b", + "revision": "705fc458e7ba47b98a654a05", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679183534080/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "84dda3d6d6af4a9ea962d9bb", + "revision": "f018a087f51b4bb0b90bde45", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8 }, - "revision": "2b48c51b8d3e459696c58849", + "revision": "57287ab3e8c44b049183c55c", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679184046128, "type": "emprestimo", @@ -11520,53 +11520,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "ee27a9a8cb9c4ac690397937", + "revision": "a6c7a2dc3cea456fb131cec7", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", - "revision": "653911d65a59482eb0fb816c", + "revision": "0b67f932c8804971986cdcac", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184046128/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "e3da5387c964449a8ca07d08", + "revision": "3d09fb42d32345059047d8d4", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 4.00%", "amount": 8.4 }, - "revision": "732b6eef6b924d45ab91827f", + "revision": "8ef092a7b77641f6a1f7f405", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679184832424, "type": "emprestimo", @@ -11582,64 +11582,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "a2a305da626a4676b29aecd1", + "revision": "a1eab54d0ce9465287f1322f", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", - "revision": "50b22876b3e24403af4e344e", + "revision": "6b82664405754aa0ad0d0a46", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305/1679184832424/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "efde902e302c4f43a489f702", + "revision": "262a8321696d4eb881ca35b6", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202305", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1801f62bb04346a8a4bdf51a", + "revision": "c3001599a47b494ab6a0cb85", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "ec2c714639e141eba436f63f", + "revision": "fd56c8f6f2e140018db94bba", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679181025084, "type": "emprestimo", @@ -11655,53 +11655,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "89fa8b8c5242441f96894693", + "revision": "1aaaeef28ea04b3c89c901c3", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "903d7431476c4ac2905992b9", + "revision": "0056659f02254a14ab87e73a", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181025084/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "468873fbde4c4f7a80efdbc6", + "revision": "04e4c8348527460698301211", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, - "revision": "dbe344a78a664e56b4bdb9b7", + "revision": "a67659aa81b144c8b7717485", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679181157805, "type": "emprestimo", @@ -11717,53 +11717,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "55fad4567eee4394813add5a", + "revision": "ab3f7b9b3e2e49388a5461d4", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "d74c59b224e74f8a9c50e61e", + "revision": "f5e93561bfda459f9b3d754b", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1679181157805/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "a43ad3154d504c38bef6445c", + "revision": "c692d6d1cfb3437fab777b1d", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 4 }, - "revision": "303d84f0e4a942d5bcfb7b36", + "revision": "4715141246a044ff8f1385b0", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1683665355468, "type": "emprestimo", @@ -11779,53 +11779,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "a1dbc5c850154f61b49b81ee", + "revision": "e5ca1449bda64796b235e9d2", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 204,00", - "revision": "220c806cfed4478781330fa3", + "revision": "4ce35869ed7d46bc8cff241a", "revision_nr": 1, - "created": 1701465820493, - "modified": 1701465820493 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683665355468/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "2cf76ea7894d4db095a12ee4", + "revision": "3f7430f87796486bad5e8ff1", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, - "revision": "f6527c62ba214051803aae53", + "revision": "34f0713e7a9a4329a3a194e5", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1683667472591, "type": "emprestimo", @@ -11841,64 +11841,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "8baf8fad5ccd4f1e83a10b5b", + "revision": "13a54c862edd4e0daf65398c", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", - "revision": "868a892091854204b5dd9577", + "revision": "dd7b53df25d34897bde7e929", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306/1683667472591/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "241fba238216450d82c38f86", + "revision": "e625cfca543d487a827bfe1b", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202306", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "f22a03e73ec947228063312e", + "revision": "cf99528f1ea04704bf5838c5", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "66bdb7c5645443aebe27f39f", + "revision": "8a896a2e0c754e04a4131826", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679181025084, "type": "emprestimo", @@ -11914,53 +11914,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "11d63b7aabd04a1593e611f0", + "revision": "84e7e5df8e2b4a60ba566bdd", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "a22951b212eb4031bd8372e4", + "revision": "0d2df83b062e44b38f18c924", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181025084/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "56aa5f7fc73e452c881092c1", + "revision": "1aa82349d5d14d33a1066972", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, - "revision": "4d4adf9bf03f4427a7c54605", + "revision": "61b213cbf4aa4aa6bb31ba85", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679181157805, "type": "emprestimo", @@ -11976,53 +11976,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "10f58aa0b55146db8dca2812", + "revision": "2ee80cbd2efa4f6e8a623718", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "95d26979021e41ec9f7526e4", + "revision": "1bc82dbe155b40b0a1e071a2", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1679181157805/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "4c462d600ee14b82b2077950", + "revision": "6bdb361d3d4c4c45acb789e6", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, - "revision": "56598c3f3c1b4496820a1091", + "revision": "d59b046944fb40739da22426", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1683667472591, "type": "emprestimo", @@ -12038,64 +12038,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "e822fdc2e57544288a59e17d", + "revision": "d58f9b8a43dd4150bbe3edbd", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", - "revision": "97af53523a3e4e0bbfdf128a", + "revision": "8cdb6feaa9d84bc382e6e10f", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307/1683667472591/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "4e406de4b4874a73b3906e3f", + "revision": "7126e00b1f18426ebf6f968c", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202307", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4bf26d1738054c888983c7f8", + "revision": "b298e880f2d645e0a1098e92", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "37d2cd2c1a0442cbae29123c", + "revision": "2c28907891d34c22acfba3ea", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679181025084, "type": "emprestimo", @@ -12115,53 +12115,53 @@ "value": 1694554040136 } }, - "revision": "06939d980b8940e3a23ff83e", + "revision": "65b48bb4c3444d15b020fd8b", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "3d86846e0f2b449091425adf", + "revision": "134c281caf604b0daee27c38", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1679181025084/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "bb725d1b25b443b5925c02e9", + "revision": "e78d03f2f6d840668d8efbf8", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, - "revision": "0d39e1e9f30b49a287799c93", + "revision": "3f4d8d7a536f4fc38a8aa16e", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1683667472591, "type": "emprestimo", @@ -12181,64 +12181,64 @@ "value": 1694554040249 } }, - "revision": "aabae027721945b390e91ff9", + "revision": "28f414a1f1a34c86ab81fc11", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", - "revision": "a01e90c5d7214638a6d2ac01", + "revision": "686cbe57e02449fcb1ae05c6", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308/1683667472591/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "69adf80a6f794fa281b254b7", + "revision": "bd044e70ad9e4dc2ab843c67", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202308", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "578fba44f5f244508023db61", + "revision": "65362c98823642bc99a62f66", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "976e726831774bbe8f88fd07", + "revision": "36211ec609ee461eb6564407", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679181025084, "type": "emprestimo", @@ -12258,60 +12258,60 @@ "value": 1694554084147 } }, - "revision": "af4ba2dbbf9d4807866bf6e5", + "revision": "c9c9c1893925419da308f887", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "7bcaff9b30af41c99a1418d3", + "revision": "894320c787334756bd5ca983", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344839, + "modified": 1701809344839 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309/1679181025084/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "9b81d0ba5d204700b0aff09f", + "revision": "e44b4f2617cb4fe7a03d2559", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices/202309", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8ef4740b440e4ebebf4bf706", + "revision": "27dfd921a374405ea858494a", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "2cb4b847c2a44a97a16a304c", + "revision": "89b59fa54acc4a54afc63736", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 1500, "limitUsed": 312.50000000000006, @@ -12324,16 +12324,16 @@ "value": 1679030831310 } }, - "revision": "ac0c018fef3541adbc710e2c", + "revision": "ead3fe2128e34246bc797839", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/000523147298669313", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1676677228207, "dateValidity": 1679011956662, @@ -12344,63 +12344,63 @@ "value": 1697166000000 } }, - "revision": "f3eaa3876e084083861f1b0b", + "revision": "9a1a1c18c41b447a84c0ffaf", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001286046930633944/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "22ac86469f80470baf271081", + "revision": "2d0cf0d0fc044ef3bc42acce", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001286046930633944/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "2717045147854363bcec085f", + "revision": "9c86c107045b4c01ae7fe9ee", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001286046930633944/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "48fe66c9a0674bc7be522b5e", + "revision": "0c1a4e24ce6043df958c8e1c", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001286046930633944/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "6922126bb2ee44bb8aad91cc", + "revision": "ba87e15f9f5f47769ba8c698", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001286046930633944", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1695928321328, "dateValidity": 1695928321874, @@ -12410,55 +12410,55 @@ "value": 1696993200000 } }, - "revision": "b8cd31e9d299403385d52a08", + "revision": "08aaba9aba6d434b8708da61", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "-3396779.42000000", "symbol": "IVIP", "value": -452.027 }, - "revision": "6b46afbf14d44107af2f4b68", + "revision": "10e2de28d0a44b2ea9aee1ab", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c17db717e6a44a10b2fa9dc1", + "revision": "f60856e84ff34e2a8aeffff5", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "134d9ba5c3fa4da3ae254487", + "revision": "e27eeb8eb981422fabaed62e", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -12494,64 +12494,64 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "91be748cd5314f208494680e", + "revision": "5fb98b09fc784589a2427644", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684093592429/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "fb7a7d316c4c4c149ede4f22", + "revision": "0065e684f78f4b70bf64cc9e", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 10.02 }, - "revision": "8d9158e5ba024ece8172e463", + "revision": "3c0ef9f2a27948fdbc545e77", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8f6af52b6e424c819ea7fdd9", + "revision": "9d8185c61f2e471580e9864e", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "6424ed4416ff43259a8612ee", + "revision": "52581448997342439a6afa52", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -12578,64 +12578,64 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "a5b1ec05e9964fb389b52f8c", + "revision": "ce2de855901249e096b125a5", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684399661939/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 501,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 511,02", - "revision": "65d9abe0b8af41248b32a66b", + "revision": "5a84e526e7aa4028a551a2d4", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 9.98 }, - "revision": "12210f6afb7d43d2b368aca9", + "revision": "cd2f6f0fdced4d139c11423f", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "170f0f3534f1435fbc274905", + "revision": "04faa12963a94ad0947fb93c", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "f0c1e6a87981400f97b86bb7", + "revision": "5b4bf1ed49154c619a076b74", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -12662,27 +12662,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "8ba2d798255d4ec380e4b163", + "revision": "a23229175fda479fa9bc8c8c", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684612673872/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 499,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 508,98", - "revision": "82c5258821804b4e9ff3b0ec", + "revision": "85e6a2e9bc7c41a396aac56e", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684624250482/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624250482, @@ -12696,16 +12696,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "2ed9f323f54a4f67b7d642be", + "revision": "c23806814a994346a5370480", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684624250482", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -12735,29 +12735,29 @@ "history_id": 1684624250482, "description": "Compra de 7.306.097,00 IVIP por 1.500,00 BRL" }, - "revision": "e639f23f5a664ccc91615ffa", + "revision": "86ea8849b28c413491253b48", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "6b0ff6563ac743a08a7ac91f", + "revision": "93fc5d45e3524b0095ae4936", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -12783,40 +12783,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "ca1271def49a4be098be3733", + "revision": "1044da1bacf74aa19f839a1f", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684792076230/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "b78689d5297e47a484ad22e1", + "revision": "55fdb14e8a9f4afc93137bc1", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "5cf8f4052e93413f9eaba7ed", + "revision": "15ce516a34af4d9c98d97dfc", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -12842,40 +12842,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "b8cb31338f244feeab06a7aa", + "revision": "36de66844516492f88c11467", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684942997083/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "9a397141f7204c4db9aca3f3", + "revision": "1879abfd53114f06ad53959f", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "66b842026c6641d6981e575b", + "revision": "bb801e05d4854d4c8cf063b2", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -12911,40 +12911,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "05951b16a30844489c0d47f5", + "revision": "82335806c57a41d08a1e0708", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1684973822893/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "88f8b0749f0a45dfaa4b5ed2", + "revision": "064e363b89ea45e48921be16", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344840, + "modified": 1701809344840 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "fb2d10d20176425b96a64b23", + "revision": "299e6f1880714369888bcca3", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -12980,40 +12980,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ba40cffea0ae4c82964d0122", + "revision": "9d6d05ec2641494093aec8e6", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685116940519/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 517,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "984c1b1177e145db9f2882ec", + "revision": "b17b1e8f14244112861e3d6a", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "b6b3774db2304289b2e1a153", + "revision": "32f6c58f4739437fac32d275", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -13049,27 +13049,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5f0ba64e53924f49a5229f12", + "revision": "b1f731680b6d445caa2d9389", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685202990180/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 329,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "02e87c6bcc87444093090d34", + "revision": "ceea4ff5633a4f0c9543e131", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685384470907/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685384470907, @@ -13083,16 +13083,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "84cffec0b39343caa3c8aac2", + "revision": "ff6a3c50024e4f59a37a9b5c", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685384470907", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -13121,40 +13121,40 @@ "currency_id": "IVIPAY", "history_id": 1685384470907 }, - "revision": "a0c17bbac7ce41b08bf6e158", + "revision": "b43593b0613d4cee928d0d25", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685384470907/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 45.000,00 IVIPAY por 4.500,00 IVIP estabilizando US$ 0,42", - "revision": "4584fc3e835a4899b2e5da98", + "revision": "d56c8e24e032420398cad65e", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "e4c7c573217547e7bf3fc9c4", + "revision": "f7edda268bb046fb9c4d6da1", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -13190,27 +13190,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "801b01407a41452ca7911b8e", + "revision": "4b734f20c6014dc8905263dc", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685389853107/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 96,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "0ec970e6cd9c44e6bb18f5cb", + "revision": "84083b09db1641ec98054700", "revision_nr": 1, - "created": 1701465820494, - "modified": 1701465820494 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392262218/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685392262218, @@ -13224,16 +13224,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b23cafa53ffa48858e70a869", + "revision": "1d109d3d39a2499da60fa45f", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392262218", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -13262,27 +13262,27 @@ "currency_id": "IVIPAY", "history_id": 1685392262218 }, - "revision": "1f54a93c0203487f9a90d05d", + "revision": "b8cd44e89e724a43924679f4", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392262218/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 3.000.000,00 IVIPAY por 300.000,00 IVIP estabilizando US$ 26,95", - "revision": "ae271b3d208746b5b301ba24", + "revision": "9d037a0af86c40d3a576f643", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392563175/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685392563175, @@ -13296,16 +13296,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "30730eeffdd34209a46485d7", + "revision": "7a5a906eb5c34799b4c6b348", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392563175", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -13334,27 +13334,27 @@ "currency_id": "IVIPAY", "history_id": 1685392563175 }, - "revision": "30f9fa79b64e4306891277dd", + "revision": "1bb8fe5993c04bb3a69edbaf", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685392563175/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 30.000.000,00 IVIPAY por 3.000.000,00 IVIP estabilizando US$ 269,53", - "revision": "27d85367b6d2494d9fc902cb", + "revision": "198abf4e2a4a43b883129da4", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685394042885/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685394042885, @@ -13368,16 +13368,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "42b4ff0fb6f74a72bbc550c4", + "revision": "63ba2ef297434c36a8b3c9ec", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685394042885", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -13406,27 +13406,27 @@ "currency_id": "IVIP", "history_id": 1685394042885 }, - "revision": "ed22c0928737400e933a44c7", + "revision": "b43eaf5d77c84750bc32978d", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685394042885/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 3.300.000,00 IVIP por 33.000.000,00 IVIPAY", - "revision": "3357e4c3624b47ea94619d35", + "revision": "c47dd4f207354fc88192a8f7", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685450530237/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685450530237, @@ -13440,16 +13440,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "3b2fcd61b81a4ddda7d00641", + "revision": "401c832e40b44ee69316f721", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685450530237", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -13478,27 +13478,27 @@ "currency_id": "IVIPAY", "history_id": 1685450530237 }, - "revision": "10fc46ee6fb24e14b24157c1", + "revision": "4a7380af44f942628692b9bf", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685450530237/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 50.000.000,00 IVIPAY por 5.000.000,00 IVIP estabilizando US$ 456,73", - "revision": "5df9af3974724ab58178ace3", + "revision": "fd44ba953e674877880466a6", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685455769977/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685455769977, @@ -13512,16 +13512,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "1c8a9dfb495045b2a8463019", + "revision": "6edd92e6512c44d080eda830", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685455769977", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -13550,27 +13550,27 @@ "currency_id": "IVIP", "history_id": 1685455769977 }, - "revision": "493e0d0ece974261a45c43da", + "revision": "9e221ff6404d45bc898f01b6", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685455769977/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 5.000.000,00 IVIP por 50.000.000,00 IVIPAY", - "revision": "2c2218be175043acaad58f71", + "revision": "21e5a6f184904d3280be2c88", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344841, + "modified": 1701809344841 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685743296302/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685743296302, @@ -13584,16 +13584,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "491bd38b0d6c4efd95e78312", + "revision": "d2ffcd1506024294a9d0dc37", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685743296302", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -13623,16 +13623,16 @@ "history_id": 1685743296302, "description": "Compra de 4.940.350,00 IVIP por 1.408,00 BRL" }, - "revision": "17e241b5b2d64fd3b1ff6121", + "revision": "11c0ca30eb0442d59d9b90b6", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685744480429/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685744480429, @@ -13646,16 +13646,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "4dab2955a5c24637a3b13c8e", + "revision": "983aa607ace64aac9cd47d5b", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685744480429", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -13684,27 +13684,27 @@ "currency_id": "BRL", "history_id": 1685744480429 }, - "revision": "7da99fc880eb482cba4f054c", + "revision": "125845270d4d4c35be9b9eb6", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685744480429/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "ae140a6bb71a445ba3688252", + "revision": "3363a57beedf447ead30553a", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685745152104/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685745152104, @@ -13718,16 +13718,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "5045e0d8eda648d093ddacb8", + "revision": "99cd7018e0e54fe5be4167dd", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1685745152104", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -13757,29 +13757,29 @@ "history_id": 1685745152104, "description": "Compra de 147.164,00 IVIP por 41,90 BRL" }, - "revision": "f628fdeb3b8f4d4ab402c216", + "revision": "a4222ead0b394ee09918c7dd", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "7267402bd90f47688b78688a", + "revision": "d845594deb624fa29b374593", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -13815,27 +13815,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "985b4e5da47f48979be479c9", + "revision": "68668189708a40e3a8492376", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686664360099/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.191,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "a505ea1b7d1043d18ce3cedb", + "revision": "b876e18e7b214c6dbd1e8da8", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436781/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -13851,16 +13851,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "7bf2890ef7af40deb38141ec", + "revision": "163b5d1dd07d4cb2b461212f", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436781", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -13890,27 +13890,27 @@ "currency_id": "BRL", "history_id": 1686844436781 }, - "revision": "d26d2324a7a14a5799a72c49", + "revision": "dbcfb5bd5153435495106bea", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436781/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 1 no valor de 511,02 BRL referente ao contrato 1684399661939", - "revision": "9106f8e944ea46cba225ef9d", + "revision": "a03f4fed236f4f2893ab572f", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436954/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -13926,16 +13926,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "5b4703a47726449a9741f256", + "revision": "384a3d9f1e99461d8d2bcc04", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436954", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -13965,27 +13965,27 @@ "currency_id": "BRL", "history_id": 1686844436954 }, - "revision": "db77120b62bb4163b1ebea42", + "revision": "dcf3b3124a764796a28305ec", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1686844436954/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 1 no valor de 508,98 BRL referente ao contrato 1684612673872", - "revision": "1be729330b76427ebfe90760", + "revision": "5e637f6a34784845b5af9075", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687345768938/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687345768938, @@ -13999,16 +13999,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "42d49aecdb344bef8657240b", + "revision": "1000fcd80744499883394cd7", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687345768938", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -14037,27 +14037,27 @@ "history_id": 1687345768938, "wasDebited": true }, - "revision": "4de45f771e7841cc99b890e9", + "revision": "94a54731e9da48d8ada0a50b", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687345768938/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 11.152.973,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2024", - "revision": "4958a862ddec4961842b2d96", + "revision": "6cbdec54debb459c9c89fc4d", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687393215194/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687393215194, @@ -14071,16 +14071,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "3c91a4369dc743ad970802b4", + "revision": "90e123ffa2874efcab02504b", "revision_nr": 1, - "created": 1701465820495, - "modified": 1701465820495 + "created": 1701809344842, + "modified": 1701809344842 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687393215194", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -14110,16 +14110,16 @@ "history_id": 1687393215194, "description": "Compra de 818.586,00 IVIP por 171,00 BRL" }, - "revision": "2eba72742db84f1c87e4b414", + "revision": "d7eaa6d6479c4d7e9d848a7d", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344850, + "modified": 1701809344850 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687495116294/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687495116294, @@ -14133,16 +14133,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "3cc81620899949919c39724c", + "revision": "19954592d6074f4085237a7c", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687495116294", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -14172,16 +14172,16 @@ "history_id": 1687495116294, "description": "Compra de 496.157,00 IVIP por 96,00 BRL" }, - "revision": "8a10dccb6c344d22a2440d3d", + "revision": "27d558c574f547b8a4eaa094", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687547056698/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687547056698, @@ -14195,16 +14195,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "4256dc2c3ff44fa9869fc414", + "revision": "a696616f8c89477fbac73e4a", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687547056698", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -14233,40 +14233,40 @@ "history_id": 1687547056698, "wasDebited": true }, - "revision": "ca7974c59efd4acfb7dd282b", + "revision": "91cb70d968f3405fb2019995", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1687547056698/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 12.152.954,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", - "revision": "33224257506443648ba9f6f3", + "revision": "ed2e3df35a354b459df2d6b3", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "6f7fc99817f04cbb8d3adeee", + "revision": "cad10461cb9848fa8bb90867", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -14292,40 +14292,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "6f449f13dae8453082c3574a", + "revision": "1b9ef77fb3ff4f8b8ffe1182", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1688994491622/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 526,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "97e62faae86e4e87a203df82", + "revision": "4a628e083530406ea5550718", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "cad3a26546c94cd982bcc6fc", + "revision": "cc82311af8fc49269fc53578", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -14361,27 +14361,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "227502936936434bba719bc8", + "revision": "e2dfa6e52ce0451dbc19ec89", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689000633630/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.224,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "0d58d9562bfc4e4aab23b9b2", + "revision": "d80ecb479aec4b39a0013460", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689082225194/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689082225194, @@ -14395,16 +14395,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "4351e37ad3af47f0a1483b56", + "revision": "d166edf59b6846c0a3be8168", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689082225194", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -14434,16 +14434,16 @@ "history_id": 1689082225194, "description": "Compra de 180.125,00 IVIP por 224,00 BRL" }, - "revision": "1b81e3f74c27443682c596b3", + "revision": "71e95a9fff63408284eb685e", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689114929852/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689114929852, @@ -14457,16 +14457,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "a73c3654bcd540e2a0bb7a66", + "revision": "940f270d453c4cec95a49e99", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689114929852", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -14496,29 +14496,29 @@ "history_id": 1689114929852, "description": "Compra de 305.476,00 IVIP por 500,00 BRL" }, - "revision": "a167a5e6204d4f589e51f344", + "revision": "275150b6278f46d89d8343f4", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "9e3666804aec494ebd52b742", + "revision": "39b10a6417d14038bc88c4f7", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -14554,27 +14554,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "2cd6d74d69c34f3b89976667", + "revision": "088d32a3271944e09204ef43", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689115029893/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 726,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "d5c819ea5341431eb8bc9edb", + "revision": "30da760df1d54198b34a99a5", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344851, + "modified": 1701809344851 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689195736692/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689195736692, @@ -14588,16 +14588,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "78fd833684994f13b5690f0d", + "revision": "032ccb02c8b44cfc8a141fb9", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689195736692", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -14627,16 +14627,16 @@ "history_id": 1689195736692, "description": "Compra de 93.754,00 IVIP por 226,00 BRL" }, - "revision": "b530d407d690440a901120ae", + "revision": "a03c2b821a304402a046fd15", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204261841/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689204261841, @@ -14650,16 +14650,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b7f1b34246e649f09bdf7542", + "revision": "a94bae694bfb46098c29f503", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204261841", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -14688,27 +14688,27 @@ "history_id": 1689204261841, "wasDebited": true }, - "revision": "247e30b548764f44837ef892", + "revision": "da112712a88542ec8a988590", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204261841/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.904,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/12/2024", - "revision": "2ed97c4862c84d38805db730", + "revision": "10e47d86a6ef48d2a3d5e130", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204343069/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689204343069, @@ -14722,16 +14722,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d2259b7091ab412bab1c209d", + "revision": "9763f44ea2144206888c63f3", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689204343069", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -14761,29 +14761,29 @@ "history_id": 1689204343069, "description": "Compra de 40.949,00 IVIP por 96,00 BRL" }, - "revision": "37cd986744f040dd896559ed", + "revision": "ed09c87f77ff4009b8b53e7a", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "182308274f4c4b9fa52eee08", + "revision": "90b2bff527014814b1f3f031", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -14809,40 +14809,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "e02283a982484df8b045566a", + "revision": "5094eb4adc094b36aadd00aa", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689347614368/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.423,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "496cf2b90866440f8e360a47", + "revision": "355b7a86f9a34785aab98e12", "revision_nr": 1, - "created": 1701465820496, - "modified": 1701465820496 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "8eb95cd69a804e7bbc76578e", + "revision": "3ab8be1610dc4b5ab18ccd22", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -14878,27 +14878,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "88b361c2062b4cfabc71fdc0", + "revision": "ac57a7742d16432e84e25da1", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689618134136/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.379,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "e9af378ff32545fdb0171586", + "revision": "7d9fe94ba74541d38005b41f", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689619360780/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689619360780, @@ -14912,16 +14912,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "eca9a32320ca477b877b7c54", + "revision": "65d0d925b3944dde9e3f4a85", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1689619360780", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -14951,16 +14951,16 @@ "history_id": 1689619360780, "description": "Compra de 326.875,00 IVIP por 500,00 BRL" }, - "revision": "085bf7d989834f4f8acec7e5", + "revision": "000387780e2a4dd1afd6ce53", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690237331737/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1690237331737, @@ -14974,16 +14974,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "a8d10a376f3b426495cff345", + "revision": "2c7a7a19567340afa9826f68", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690237331737", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -15013,16 +15013,16 @@ "history_id": 1690237331737, "description": "Compra de 318.321,00 IVIP por 450,00 BRL" }, - "revision": "8aca4a87dfc74d8a8179c5a4", + "revision": "f4f99925e7464c61b1e62b06", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690273510959/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1690273510959, @@ -15036,16 +15036,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "a58ecd078818420eb8b4d4c9", + "revision": "dfe131e6743048eaa2497c5c", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1690273510959", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -15075,16 +15075,16 @@ "history_id": 1690273510959, "description": "Compra de 338.652,00 IVIP por 429,00 BRL" }, - "revision": "df63703cb0bd49788b8518d6", + "revision": "01d4e5c36b3c4dd3ba285ef4", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -15092,16 +15092,16 @@ "value": 1695207854014 } }, - "revision": "eb9c549b006748bd92ede2ab", + "revision": "d538c1a206c247a89acad3b5", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692615854014, "net_received_amount": 0, @@ -15113,27 +15113,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1c68ea03aab14f3a94ac78aa", + "revision": "1e278ac978164f029904263b", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1692615854014", - "revision": "a59c80d339ed41eba066fcb7", + "revision": "9167e376df884e2cad523426", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -15157,27 +15157,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "ebba3fb6a44e42fe8c526e79", + "revision": "51f157fbe9934b27bed3daa6", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1692615854014/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 450,00 BRL para a carteira iVip 0013.4542.5233.2609-77", - "revision": "c471cb68d6be4b4bab858cfd", + "revision": "bfd280af74e44349bd97b8b8", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344852, + "modified": 1701809344852 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693771767267, "net_received_amount": 0, @@ -15189,27 +15189,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "606b5a34b33a444bbc9b9ce7", + "revision": "9be518fe986b47a892663469", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1693771767267", - "revision": "f6a75270c81f406a9d8f3e37", + "revision": "b9ba5ecc223449bdb4eb8aa4", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -15237,27 +15237,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "418d0c6f18e742c28f721133", + "revision": "fd3bb1ab005a40b286a99ccb", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1693771767267/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 3.384.929,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "ecdc0ec6a7ec42d684df56ef", + "revision": "7cddc74a23a444f8995a7452", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696371493428, "net_received_amount": 0, @@ -15269,27 +15269,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "50919b57780a46daae396ef1", + "revision": "d3498b99b2c840e7b6104cbe", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696371493428", - "revision": "eb7d1cc4e7db49b99b0cc152", + "revision": "9e86b9e01a734e0fa4be0b7a", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -15318,27 +15318,27 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "c647b3f2363d4b2db1b8cafe", + "revision": "8bd282acf58343a39364eb4e", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493428/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 3.384.929,00 IVIP com um rendimento de +67.698,58 IVIP (2,00%) - Y12XDT27", - "revision": "964fa4ced8c049a785d0a151", + "revision": "bb1f3fecd21f489b9c5a8d45", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696371493371, "net_received_amount": 0, @@ -15350,27 +15350,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "126ea6a502bb49d681d1616a", + "revision": "5ab6ab49c2d3442eb1de42af", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696371493371", - "revision": "10901be372854ed79524cad3", + "revision": "96a1a2d2d0ed45889ff2d901", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -15399,27 +15399,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "cf077aca27854939837679fc", + "revision": "6fdaa5a04de94fb298e98eaa", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696371493371/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 3.384.929,00 IVIP com um rendimento de +67.698,58 IVIP (2,00%) - Y12XDT27", - "revision": "4d5f1d6f157447068809fe3d", + "revision": "5c77afefa2324d48a9ade26a", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696459483900, "net_received_amount": 0, @@ -15431,27 +15431,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "46433d68600248c491717b07", + "revision": "5111a2e7ef66494a85e4b257", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696459483900", - "revision": "afdbf87aabee4fc7a71d8acb", + "revision": "5cc690fb2820460aae16498d", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -15480,27 +15480,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "bf182e3df7af40209ae008a1", + "revision": "5705d86d8bf3490392239c62", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696459483900/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 7.624.011,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "e6b9539c97b04ba6addb95f4", + "revision": "4bd231182c5442ee86acd0c7", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -15508,16 +15508,16 @@ "value": 1699222159538 } }, - "revision": "e272e069b5944753bab3c589", + "revision": "025314930452499bbecf2de6", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696630159545", "net_received_amount": 0, @@ -15529,27 +15529,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "901cab6667f24f7780289331", + "revision": "62a6725afe6b4b8b8bc3179c", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696630159545", - "revision": "ab852f56005e4aa5ab2994cb", + "revision": "b5cd4da5048b4893beae7cec", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -15574,53 +15574,53 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "285d217a98e14da9abd287dc", + "revision": "08b83eb3b8654dac8a80ae34", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history/1696630159545/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0013.4542.5233.2609-77", - "revision": "a26809dbfa984f318370b895", + "revision": "9319f6bd769c442f8619ffb3", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "cceacec5a9bf43c0a88a0ec7", + "revision": "998d0324d20847968039b7e2", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 10.02 }, - "revision": "0609539cdacf4ae7a02f46c8", + "revision": "57ec5e28c08f400981dfaadd", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684399661939, "type": "emprestimo", @@ -15636,53 +15636,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "49a437f51ade464abec422d7", + "revision": "1a9bd7544a904bed83d54f40", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 501,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 511,02", - "revision": "95ec822f3c74494e9740853d", + "revision": "8c20be3daeff4ab9915029fe", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684399661939/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "e0225e329d2b4bec92f22269", + "revision": "d2e0d98317bd413ca0753dba", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 9.98 }, - "revision": "a94b0d893f1347b092ac7b56", + "revision": "de3a5d66e35544e889f741d4", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684612673872, "type": "emprestimo", @@ -15698,60 +15698,60 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "71e5a812c7ac4fa9a07988ca", + "revision": "c5dda60f06934a29baab56ce", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 499,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 508,98", - "revision": "da31dd0311bc48d09e11b7ba", + "revision": "ca77fc6214964809a260ee6f", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306/1684612673872/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "828fe5431be24904b45c98db", + "revision": "10d300bcd30c49618f4123ed", "revision_nr": 1, - "created": 1701465820499, - "modified": 1701465820499 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices/202306", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "08aa82c889074505b2feed69", + "revision": "82dc159f75624128a30b5b7e", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "724153468f5b4f39b90dc4be", + "revision": "284f066aba594e9a9ec5c898", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 1000, "limitUsed": 0, @@ -15764,16 +15764,16 @@ "value": 1684329814101 } }, - "revision": "d6fd4e628b844c73997383ca", + "revision": "6162172e4d7e467c900638d8", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/001345425233260977", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684091909123, "dateValidity": 1684091909123, @@ -15784,55 +15784,55 @@ "value": 1696820400000 } }, - "revision": "a79b1d37db33441986efff98", + "revision": "8cd685771f9347c0bf2f2684", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344853, + "modified": 1701809344853 } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "BRL", "available": "100.00000000", "value": 20.09 }, - "revision": "40e0efe980ab40d3b70010e8", + "revision": "06dd8420c5f9453bbf8d8cb5", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8a158b387a604e4e920a7dcc", + "revision": "72daa1dbe2f943008243f5d9", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "31c957de989c4238a3786489", + "revision": "0e3c7f81e7174392a3ad1fcd", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -15868,118 +15868,118 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "1fd78aaf97724499a23b5f9b", + "revision": "9803ed1863ea49a4aff8ea4c", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history/1684119457629/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0024.4576.8964.9692-86", - "revision": "f773c3aa732d4d94861b5046", + "revision": "8ec1281dd7ec48c7848e4452", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9812771c455f4401a29d1028", + "revision": "5c1d1276e59044fe8c69721b", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "529c8d82b27f4e6780293a61", + "revision": "ba000fbfb5f24c82827d1fd2", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "b20c34a56ec14a119db77bae", + "revision": "231a6fc74e114fddbf4b8b2e", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/002445768964969286", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684119427446, "dateValidity": 1684119427446, "totalValue": 20.09, "currencyType": "USD" }, - "revision": "059f9b299a6245eb9384ba32", + "revision": "136809c1331b4d99999beb94", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "5324627.00000000", "symbol": "IVIP", "value": 1075.36 }, - "revision": "35f837b7e5e949e9af6a6524", + "revision": "26c0f8ef3fc94a00bdb21e95", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5ff981bc30be46dcb3a93fd9", + "revision": "7545037fa349487d88eac716", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "a611e08d81f14123b7bab90d", + "revision": "89e8b0c68e9b452f8e617404", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -16010,40 +16010,40 @@ }, "money_release_status": "rejected" }, - "revision": "ac1e7e9fef78400699cfe982", + "revision": "39d4d41b2e864b1cae081ab6", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1677798769726/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0037.5729.7582.0925-33", - "revision": "2f09ca68541e40eebec67ea6", + "revision": "3dff5ef798314a6097555e8b", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "5233aae83a1446b591323643", + "revision": "192cbd5e0bee4575b47e6fbb", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -16074,40 +16074,40 @@ }, "money_release_status": "rejected" }, - "revision": "2c38b987168d45b9b3c94583", + "revision": "1e3c9fad52a447e19e68eb76", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678058459792/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0037.5729.7582.0925-33", - "revision": "a40387ab0b7c445085f3436d", + "revision": "abe4df9f90b04397a8c9db34", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "03efc7c094cf4fcb8b6d01b1", + "revision": "53c2a10b59204bbf99962cc0", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -16143,27 +16143,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "73c53e5d009d470c8fb9eaf6", + "revision": "ca3f3470f7514f6aa81c3e7f", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1678527306058/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0037.5729.7582.0925-33", - "revision": "4b14dcb15fc04f8fa982acd5", + "revision": "5b997a1b4cf24d14bc4805e2", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1679908062539/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679908062539, @@ -16177,16 +16177,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "45655ac5a29e4746ba937ed5", + "revision": "13129779aa4b4fa481b14e5b", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1679908062539", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -16216,16 +16216,16 @@ "history_id": 1679908062539, "description": "Compra de 5.325.627,00 IVIP por 1.000,00 BRL" }, - "revision": "a0a3f5a806264d17b626d614", + "revision": "27163ed74f8c4cdbb947c328", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1687109837625/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687109837625, @@ -16239,16 +16239,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "4ecde8f64a1846388c1ba398", + "revision": "931308e5d8b14df19709bee2", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1687109837625", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -16276,63 +16276,63 @@ "currency_id": "IVIP", "history_id": 1687109837625 }, - "revision": "ffae9b9f9483485285e4a713", + "revision": "05f472f99ec049ee8800746e", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history/1687109837625/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/18/2023", - "revision": "842fb38929da4383905f99e2", + "revision": "d601c0720c914144a3cc88cc", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1fc4e6cd1b79487eac714915", + "revision": "a234973b6d4f4c8284ebe6c8", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ad70fe8e4c93457992bc1a35", + "revision": "bf842067ca9347a9a913ce2d", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "16c25bd6827c4727bc00d707", + "revision": "6c9254a2f0ac4845aedd8108", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/003757297582092533", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677457152875, "dateValidity": 1678995120507, @@ -16343,93 +16343,93 @@ "value": 1696129200000 } }, - "revision": "d5f2430a458e445da610e08c", + "revision": "658b4a588dd943909b185265", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/005753000686812060/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6484d6c587094d23959915b9", + "revision": "218e43fb622d4c67ab2947fa", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/005753000686812060/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ef5ea4d7070348108eab63ca", + "revision": "cd693ffcc3674d76a726f4a2", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/005753000686812060", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678127212147, "dateValidity": 1678325697693, "totalValue": 0, "currencyType": "USD" }, - "revision": "1cff53ce0ab244238aea9002", + "revision": "14efa284aa6d46739a65f93b", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "150.00000000", "symbol": "BRL", "value": 29.27 }, - "revision": "04c7cc63a10a4a6a8b9b4f2f", + "revision": "df2c009c9142488aac78ed0f", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "74fee9ea0a1f4c8fab5de816", + "revision": "e69c0eebb9e2437ea2536162", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "4cdc0b11f8734944a63d2590", + "revision": "2d0cb2d324c247ee8455cb70", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -16461,40 +16461,40 @@ "money_release_status": "cancelled", "wasDebited": true }, - "revision": "c920e8887a294a28b13523c2", + "revision": "7f3e2d74d64f4f7294068ab9", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689373938365/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0072.1969.3774.2530-22", - "revision": "0362c130e3e040c9b4094649", + "revision": "90a2597aab3c42bcac242a03", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344854, + "modified": 1701809344854 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "fea74ad57b0c4458aaf0a3c7", + "revision": "aba899080cb54b1b8478ade7", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -16526,27 +16526,27 @@ "money_release_status": "cancelled", "wasDebited": true }, - "revision": "69afa59a731f43ab91cccdde", + "revision": "2b70f827bb5f466f87c35ebb", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1689719003118/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0072.1969.3774.2530-22", - "revision": "d4ea0b7067dd475ba5c3bb99", + "revision": "5a81d57a67424863bf4edc6b", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -16554,16 +16554,16 @@ "value": 1692808041978 } }, - "revision": "f757d963814346ffa503ea96", + "revision": "e8bb6a63829042c9b03322a0", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690216041978, "net_received_amount": 0, @@ -16575,27 +16575,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "222c0fe11ac6475d86054f4f", + "revision": "d1e80bc20d874829b275e26f", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/007219693774253022/history/1690216041978", - "revision": "5d34dbb68fd9407d8900d5b5", + "revision": "b9c913dec5eb4568a5497150", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -16629,63 +16629,63 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9baac3317f8c4db6b85ce22f", + "revision": "59147f66dd4c4fd1ada69705", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history/1690216041978/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0072.1969.3774.2530-22", - "revision": "7f77502d8c804934b0b00636", + "revision": "50ea256a834a48b2915172f7", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "f1b9c0a4fed6436e8919cfeb", + "revision": "297868d11fe14621b069d8a7", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6ccbf325eab54997837941c2", + "revision": "25795349459f4cf3b8a82b6f", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "029f689d9e1e4468a7af8a9c", + "revision": "8065dc5f3fe64b379e38e69c", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/007219693774253022", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1689373828234, "dateValidity": 1689373828234, @@ -16696,116 +16696,116 @@ "value": 1697252400000 } }, - "revision": "da31f314b17f4e8eb9d7636d", + "revision": "d0557cfafced47d3b2cc2c47", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/007971641402707341/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5d38511b5af044eeacf43826", + "revision": "1f3d549a4fc94426a9eca220", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/007971641402707341/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "311c3ffb60cb42028bec1828", + "revision": "6cc7fcbf342d49e4af38c904", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/007971641402707341", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678227735051, "dateValidity": 1678242135085, "totalValue": 0, "currencyType": "USD" }, - "revision": "f5a9a02f06b44833add73023", + "revision": "406721e464e348adb891f736", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/010022330876236384/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9a577079631747b6948cbbe7", + "revision": "9e0c830a705649eeba5559c2", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/010022330876236384/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5b0c2547bfce40f8a5386242", + "revision": "eb7918e41cc340a98e2083d7", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/010022330876236384", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677760347570, "dateValidity": 1677760347570, "totalValue": 0, "currencyType": "USD" }, - "revision": "1419d5d813ba491dbd78e0ab", + "revision": "44f194ecd9294b1db84b359c", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b578b6481f8e4d21a674e7c9", + "revision": "0a1694825f3f4979b23fbefd", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "ce5594d929774a52b91fe1d1", + "revision": "bbdf8230aacf4376a65f0298", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -16841,40 +16841,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "83843e949aff4869827af805", + "revision": "da2364d530cd4f8f95f983ed", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684424340055/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 507,00 para a carteira iVip 0117.2048.7643.9274-14", - "revision": "6261f46aa93a4953ad18b7b1", + "revision": "488c11e874bb4b96a955a54e", "revision_nr": 1, - "created": 1701465820500, - "modified": 1701465820500 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "5afbfd857ed147e99e1ae534", + "revision": "d6655ca0be5e4e4187156428", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -16910,27 +16910,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ca6bc8beddd649fcb15027d1", + "revision": "17813bebe6e449ab92a8c51b", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684539875683/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.093,00 para a carteira iVip 0117.2048.7643.9274-14", - "revision": "7deef3e32d8e46c5ab48be8b", + "revision": "2f78f045c1fe4800b1a0b710", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684625025298/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684625025298, @@ -16944,16 +16944,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "4be01bde0b034addb62ba4ad", + "revision": "6ce9ab405dbf4d86830ac22d", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1684625025298", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -16983,29 +16983,29 @@ "history_id": 1684625025298, "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" }, - "revision": "313353547e774b0cb714e9ea", + "revision": "6eb7a7f3255f43a7b2042fd3", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "4bd62451ff374bf49a891b28", + "revision": "6ffb906e8bbc43c194fa4134", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -17041,27 +17041,27 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "fed8b4a39bea4b669a4d22c5", + "revision": "7ce5b9e1ead5461cb11a761b", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685465338404/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 5.588.008,00 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", - "revision": "c22c4c88fb194425b745f1ca", + "revision": "7ad3e897827d4d12b526df3c", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720288992/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685720288992, @@ -17075,16 +17075,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e23bb799cebf401bb6c2e099", + "revision": "fb2c58bae48247e1a5f7206f", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720288992", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -17112,27 +17112,27 @@ "currency_id": "IVIP", "history_id": 1685720288992 }, - "revision": "193845bd1e184232b492b4cb", + "revision": "1377039764a5466b99f14fc5", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720288992/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/2/2023", - "revision": "0cd6953478bf4c53b5253149", + "revision": "4342710574974eed9ed62b16", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344855, + "modified": 1701809344855 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720363618/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685720363618, @@ -17146,16 +17146,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "afd4a15b6aef4e5bacdead8b", + "revision": "2f7ca4a6cc8144b798879bbe", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344856, + "modified": 1701809344856 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720363618", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -17183,27 +17183,27 @@ "currency_id": "IVIP", "history_id": 1685720363618 }, - "revision": "e3cd0073080f4f5cacdb9ae1", + "revision": "26448cccb26d4ef9ab2ba9a9", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344856, + "modified": 1701809344856 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1685720363618/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/2/2023", - "revision": "c37e5f4f54244de2a8dd4c7a", + "revision": "f279dadfdf87401b8d4b50a9", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344856, + "modified": 1701809344856 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688400602023/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688400602023, @@ -17217,16 +17217,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "fa3c8d0d76ad46b5b6f0180b", + "revision": "5095bf6f9e6c4271a269f3d0", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344856, + "modified": 1701809344856 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688400602023", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -17255,27 +17255,27 @@ "history_id": 1688400602023, "wasDebited": true }, - "revision": "79366f799ef84159ae049594", + "revision": "6ef1297cfa5f4216a985c1c4", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344856, + "modified": 1701809344856 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688400602023/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%)", - "revision": "02a5df96a43e4f25a9f3bc6d", + "revision": "0c36fcacf51f4d12aed3fadb", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344856, + "modified": 1701809344856 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688595538475/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688595538475, @@ -17289,16 +17289,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "363691a4a03c47f7bb1ce033", + "revision": "16529e72aed447e2a2c38543", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344856, + "modified": 1701809344856 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688595538475", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -17326,27 +17326,27 @@ "currency_id": "IVIP", "history_id": 1688595538475 }, - "revision": "6012feecbd894d8280491d0a", + "revision": "cef6ee563aae4e6d88d726e7", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344856, + "modified": 1701809344856 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1688595538475/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 2.154.096,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", - "revision": "27882e6591ff4c37868d8fba", + "revision": "288c67a4be3d4d9f9dab876c", "revision_nr": 1, - "created": 1701465820501, - "modified": 1701465820501 + "created": 1701809344856, + "modified": 1701809344856 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691274110792, "net_received_amount": 0, @@ -17358,27 +17358,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4aaae8d8511b4ab3866bab52", + "revision": "99b240c3c5a14137a84c5c7f", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344856, + "modified": 1701809344856 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691274110792", - "revision": "eb798d75778142a9af272998", + "revision": "4bf4f468d2dc4d76b97f357a", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344856, + "modified": 1701809344856 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -17406,42 +17406,42 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ad2888836919400f9b190164", + "revision": "f2bb77f996dd43c7b202fe84", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344856, + "modified": 1701809344856 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691274110792/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 2.154.096,00 IVIP com um rendimento de +43.081,92 IVIP (2,00%)", - "revision": "9eb333c366524a3c8ccce67e", + "revision": "ee3972ec97424cf097aa814d", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344856, + "modified": 1701809344856 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 36290.1735 }, - "revision": "7e0332003730436b98d3e604", + "revision": "213d20abf1684cd7ad191c04", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691439593377, "net_received_amount": 0, @@ -17452,38 +17452,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "70b8e7b98b5442e88a6f9e13", + "revision": "e3b4601786cd4dc8b7b42249", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691439593377", - "revision": "888ea6328d264ec493c18ddc", + "revision": "39e9f982e88a45dfa0c32ff7", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "7ae2ae66bc4d42cb9e22bcbb", + "revision": "48d52bc72ea944a3ba6033dd", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -17517,42 +17517,42 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "3cd6ce87541b4d5d9a254aa2", + "revision": "812c1d6a98da483ea33ea93a", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439593377/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1.209.672,45 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", - "revision": "4dd2e0b054c8427e8cbd7021", + "revision": "0bf535fa0fda4b7893634adc", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 36184.977 }, - "revision": "11139f3a681d4946a47160af", + "revision": "b7b2ce4211fd48689d8aa609", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691439992266, "net_received_amount": 0, @@ -17563,38 +17563,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "dcfa9987215444bb915c1340", + "revision": "5a992f3a04074b7388aa7dd5", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691439992266", - "revision": "5fe519a6525b4e6a80698249", + "revision": "ab16e4c10e5942b1b2d9d54f", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "e417a890de7d4f03a1b4f42d", + "revision": "f794f5fbc2b04e6caeb9668d", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -17628,42 +17628,42 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "6b3b94c0cbb448dbbbc851c8", + "revision": "6b66d39f1c794b97b1a70589", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691439992266/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1.206.165,9 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", - "revision": "a20d5da5834145bf88775ff5", + "revision": "0d48eeeeee7f4b8d9078b6a9", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 65395.38 }, - "revision": "c6bb5d7d5df24634ba36b9f6", + "revision": "933bf383feb04f56818e68c3", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691447884361, "net_received_amount": 0, @@ -17674,38 +17674,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "ba462484443b498a802d129b", + "revision": "598162aee5464a2c9c03264d", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691447884361", - "revision": "63d75a97ac9b44ceb7bb2fcc", + "revision": "01385710141c4f1bbf2f47d2", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "0559ad765eba4ef9b2f5f5d6", + "revision": "bb61c0c21c384ee8823ad3b7", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -17743,63 +17743,63 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "dbd3c91149364cb4a4c21fa0", + "revision": "5d11def552bb4df1a667ea89", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history/1691447884361/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 2.179.846,00 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", - "revision": "ab1ca1a4ca3545d0ba138172", + "revision": "de175758e73b47dfbd5bc649", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3571bda12988455abd711c2f", + "revision": "f4bc0c08a1c94e78890b1142", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1bc0aacf4cda4c60989c50d2", + "revision": "e90a9a7da86344d9bad3d517", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "4f692ca9600c4fce89bd354d", + "revision": "8f58d65da38d45e9aec0a3eb", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/011720487643927414", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684369387404, "dateValidity": 1684369387404, @@ -17810,38 +17810,38 @@ "value": 1696561200000 } }, - "revision": "69f99221bcd144b69871b8c3", + "revision": "09eb8161d5ae4027b977c8a2", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/012415886921139930/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1f0d95b2db084db48f5af88c", + "revision": "548f3e775e6646a5b0a57f3c", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/012415886921139930/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "cd4356f9424c4ebbae88b49b", + "revision": "0785032326354e5f9afdca20", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/012415886921139930", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1696522229806, "dateValidity": 1696522229867, @@ -17851,40 +17851,40 @@ "value": 1696474800000 } }, - "revision": "1bdf239000464a3a97487cd1", + "revision": "8af635cc4cae451190420c0d", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ec07517dba45412c895a0d33", + "revision": "830572685cae4121abc22b69", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "0c669b4606c84ffd86cfe446", + "revision": "d35e6600164f467ca22cbcd6", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -17920,27 +17920,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "0a314c9763f241baa528da3d", + "revision": "852fbbc0131c4a49b240af1e", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1678555308384/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0128.8622.7244.5948-72", - "revision": "5ff99d575d4c405192557588", + "revision": "740085ab2e5048cc9fba6114", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1679266899414/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679266899414, @@ -17954,16 +17954,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "a89de7ce6a0247ef9ad5b789", + "revision": "09634fb076a24bfd934cfc0b", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344857, + "modified": 1701809344857 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1679266899414", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -17993,16 +17993,16 @@ "history_id": 1679266899414, "description": "Compra de 291076 IVIP por 50 BRL" }, - "revision": "d3123975ee3441eb9664d510", + "revision": "cb3490fc6cd0406495866b51", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1685668294321/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685668294321, @@ -18016,16 +18016,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b3b9d2c5adee47109b9a68b6", + "revision": "35e47d76b90848ae9e13a31d", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1685668294321", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -18054,63 +18054,63 @@ "history_id": 1685668294321, "wasDebited": true }, - "revision": "02440fdbc959494b9408bee7", + "revision": "17b307308caf4206bd0e9a22", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history/1685668294321/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 291.076,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "0998faca1854462387a83391", + "revision": "0394a37872e347b5a8668024", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4de2a0b747ad4142b3b5aed0", + "revision": "18dc8f7d104b4d5182882373", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "0888b0994a464c10ae179853", + "revision": "b075fe6f310e443d8f588869", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "51e57b482c584e6c8f365d9a", + "revision": "0e4196ce9814472589083d03", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/012886227244594872", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678552860672, "dateValidity": 1678668725687, @@ -18121,55 +18121,55 @@ "value": 1696561200000 } }, - "revision": "5f63629d9bc945a6a6fb686e", + "revision": "eb2f4f63bffb477598aff86a", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "739882.02000000", "symbol": "IVIP", "value": 77.94 }, - "revision": "7931951af42e4c2c8581209e", + "revision": "917faee34d944ccda63a2616", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "50621f4e4c534ae0a748122b", + "revision": "f1b37aa7bbff41609bd66eb4", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "16547301fe844972a88f372d", + "revision": "d8a73f84e54841a1927fec64", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -18205,27 +18205,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "07765c4459354ab2a058e1f5", + "revision": "337a3f0b428747e4a3b9335d", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684102091531/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0150.9473.3487.9762-98", - "revision": "e980f814ba5142e7843fc7ef", + "revision": "c1bde9884234424f911281d2", "revision_nr": 1, - "created": 1701465820502, - "modified": 1701465820502 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684624257232/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624257232, @@ -18239,16 +18239,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "ff4bb77a75aa4a7285a57c96", + "revision": "7a10e2310d794dd0ad5de2cd", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1684624257232", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -18278,16 +18278,16 @@ "history_id": 1684624257232, "description": "Compra de 730.609,00 IVIP por 150,00 BRL" }, - "revision": "6eb933f9668d486988074608", + "revision": "438c2039638c43fbb34d58c7", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113576960/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687113576960, @@ -18301,16 +18301,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "7f7ae100f56b419c893f6e93", + "revision": "50377fcbc35f47919733ceba", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113576960", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -18339,27 +18339,27 @@ "history_id": 1687113576960, "wasDebited": true }, - "revision": "394614e05a124a8f969535cf", + "revision": "7af20840ee2d489c9015bb68", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113576960/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/18/2023", - "revision": "f0054c75fd194401a07a7188", + "revision": "a4bfe9dfe20e45a7b283f00b", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113714689/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687113714689, @@ -18373,16 +18373,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "6ecc3e685cdc45d3bc230b18", + "revision": "dffe7f16046b4522b4e34e46", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113714689", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -18410,27 +18410,27 @@ "currency_id": "IVIP", "history_id": 1687113714689 }, - "revision": "1e039c2b91dd4ef48cf89ece", + "revision": "463f54a9eb4941649888a70a", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113714689/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/18/2024", - "revision": "fd8aad25eb6a427eb79912ba", + "revision": "996fa5da50b14c0abfe5b183", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113759469/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687113759469, @@ -18444,16 +18444,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "5cb593e9e7d248d48f2cedfd", + "revision": "94a8578325954bf79abe2cf2", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113759469", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -18481,27 +18481,27 @@ "currency_id": "IVIP", "history_id": 1687113759469 }, - "revision": "e4c6b53f1bfc435789d3c2a7", + "revision": "387083ad2a994f15be50c987", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687113759469/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/18/2025", - "revision": "f9554cb9d84647ccb64f0cc1", + "revision": "298ffb7395da4541bd7c4aa7", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344858, + "modified": 1701809344858 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313544564/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687313544564, @@ -18515,16 +18515,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "07a62049a69c4b6889d7190b", + "revision": "6c32bf8ee1994d6f822707fa", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313544564", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -18552,27 +18552,27 @@ "currency_id": "IVIP", "history_id": 1687313544564 }, - "revision": "270d22b64eb342329c2b2665", + "revision": "659a64daf048450a8fc9a2db", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313544564/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2025", - "revision": "3e545402e23f435eb1eec516", + "revision": "bc30f5367ac5421887238ce7", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313588225/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687313588225, @@ -18586,16 +18586,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "8fc747775cf644bfb358018d", + "revision": "9694c27c99b0419fa1a102cc", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313588225", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -18623,27 +18623,27 @@ "currency_id": "IVIP", "history_id": 1687313588225 }, - "revision": "01243cae902b4ea6ae2b607f", + "revision": "72617e45c68e4e0abe4d2248", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1687313588225/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", - "revision": "de6c98e25a2e43798ac371b4", + "revision": "87d995a0c5084b96a42c0ae8", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1688595606369/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688595606369, @@ -18657,16 +18657,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "44482841b8d04c28aa8d8c37", + "revision": "ebd786a362784dc58c342474", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1688595606369", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -18694,27 +18694,27 @@ "currency_id": "IVIP", "history_id": 1688595606369 }, - "revision": "fc2c307fc4354b82bc55ab9b", + "revision": "a50822b1e48a47a8b94e192e", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1688595606369/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 713.651,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", - "revision": "473787768d3043759a2c0ab8", + "revision": "16c2c94df5c9401e9f9f869e", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691274110709, "net_received_amount": 0, @@ -18726,27 +18726,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4de423a2eba24d208a0aad99", + "revision": "a0ef46a6a3f042b1b4838fa9", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/015094733487976298/history/1691274110709", - "revision": "1ef173ec033d47e884fc4f59", + "revision": "2bb119293a3046599c98dbbf", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -18774,63 +18774,63 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "162bfac1c4d34b6a880231e4", + "revision": "8492871430b64caeb8c82755", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history/1691274110709/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 713.651,00 IVIP com um rendimento de +14.273,02 IVIP (2,00%)", - "revision": "5c792473edc5409ba179d8a2", + "revision": "594dbf284a2747a580286a2a", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "70ff73a351b24b6691ce3c00", + "revision": "46e64b6bc5b64c0abb027caf", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "87371c3fa3f64b0294a534b0", + "revision": "94bee29f787c45d9bb17c861", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "2e243a31c23b4757b1f5a456", + "revision": "96919d97e327495b904eaf84", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/015094733487976298", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684102027321, "dateValidity": 1684102027322, @@ -18841,133 +18841,133 @@ "value": 1697252400000 } }, - "revision": "d36a295e52364188b4528577", + "revision": "ba76b18123d14376a2172b60", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016159398553157178/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "75532c3c861f485c958cb161", + "revision": "6d76f027210b4223bca60b38", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016159398553157178/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b0a107375a5e4e979e67e94f", + "revision": "6a97d48f360844258729fa84", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016159398553157178/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3b8ca280c03a471e859b726c", + "revision": "9cfcd775e6c846de907ff1d7", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016159398553157178/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "dc08873c1ec545569ba2a99d", + "revision": "9f2e501a59154259ac29b71f", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016159398553157178", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1688737390323, "dateValidity": 1688737390323, "totalValue": 0, "currencyType": "USD" }, - "revision": "4461751fed8c4d4db0fe1637", + "revision": "dfe59b97f6464df0a5d6965f", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "BRL", "available": "0.00000000", "value": 0 }, - "revision": "833f36a881ec41f5975d008a", + "revision": "5aad0209026349a18dc43793", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "IVIP", "available": "0.00000000", "value": 0 }, - "revision": "6d52154801cb417db234464d", + "revision": "cf48f2e0b3d04734abead53e", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ad2db4a0e34b4496a0f248f5", + "revision": "9081b2240cbf409fa2d40bfd", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "172c7a723bd347fd8460e41c", + "revision": "27c8f6f21c914d069bd52b62", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -18998,40 +18998,40 @@ }, "money_release_status": "rejected" }, - "revision": "66a8a674cccb49d3a621ef6a", + "revision": "d88615cd0ceb437b80390361", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684198299992/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0164.7568.6934.0474-40", - "revision": "99ba3db1869a4867a8c8dda2", + "revision": "3fc1c59a8663447b85090835", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "a4eeb9772e6f48f9bd40d954", + "revision": "f177e77b7fb14dfe94d999b0", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -19067,40 +19067,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5caf864f37924d0f8a7f2d50", + "revision": "6f787e5b839b45779b75dcd0", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684201414429/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0164.7568.6934.0474-40", - "revision": "a1de140500534678acafe191", + "revision": "ea3aec6f303c4390a67bd8a0", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "67f090e89a674aaabff56345", + "revision": "d72d609bb73e46fabc039b77", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -19136,27 +19136,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "0bdc0e20482c4387b91ebae0", + "revision": "62068bf96fc74028870a853a", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684440954255/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 600,00 para a carteira iVip 0164.7568.6934.0474-40", - "revision": "d75b7b13dc314006aa1484d8", + "revision": "5ba795a244e2474392a22a25", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344859, + "modified": 1701809344859 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684626826140/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684626826140, @@ -19170,16 +19170,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "99868b43d30244cd80f1e86a", + "revision": "1a7b5368a54c43cfac48bc38", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1684626826140", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -19209,29 +19209,29 @@ "history_id": 1684626826140, "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" }, - "revision": "56d2c93f60974ce2920b2ac2", + "revision": "57c244347c574c3797ab2c0b", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "724af4c8777d4d7eb0b7fa27", + "revision": "7264b1cf192343129e495c8d", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -19257,40 +19257,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "2dc33a9a360d4e3b8c2cc6db", + "revision": "4e830f72d5c3473caffa41ec", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685396913259/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 788.564,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", - "revision": "ecc140e783c449ae904f8116", + "revision": "29993f34260243cf877e9ecd", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "b3380ee611f145ddb2903da4", + "revision": "32537941f13f4b72bf29b239", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -19321,40 +19321,40 @@ }, "money_release_status": "rejected" }, - "revision": "e3cd35aeccdc4da5ad257a3f", + "revision": "a879f49b00f84e05a44e1736", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470076106/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 788.564,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", - "revision": "8f5ce38b0a974e8fba4a68ac", + "revision": "431842a6d5524015b702cdca", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "3169ebeaeabe414a85256579", + "revision": "997062d8ea354f68b249e434", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -19390,40 +19390,40 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "b4b71d2b034e48b480234907", + "revision": "b673236c9be5492385e49fc6", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685470615415/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 7.793.170,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", - "revision": "dc42ad96c18c4951be9cd20b", + "revision": "a4e9c99c19e7447497c6c99a", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "c70213cc03544c558cd02efd", + "revision": "c396adb28f2846909514d2fa", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -19454,181 +19454,181 @@ }, "money_release_status": "rejected" }, - "revision": "7999c419a7d24c6994a5bec1", + "revision": "4bbe9cca2db44387a3dff739", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history/1685537035322/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 7.793.170,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", - "revision": "2603656fd5be403eb74956e9", + "revision": "7cf0cc604fe0450eb44f0ac9", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7311b14bb95849efb2331488", + "revision": "eb918293e6034593913985b1", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4916385f8e2e4f48870b7e9c", + "revision": "a29ab2c62c5f4d7489330293", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "bd0fc6091b42477793e36c66", + "revision": "1f954178fbc94eafb763e324", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/016475686934047440", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684198152404, "dateValidity": 1684198152404, "totalValue": 0, "currencyType": "USD" }, - "revision": "4099ecfcd1c04b629783284f", + "revision": "4013b301bc1b4fff90e0500a", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/017170382309708910/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "28b3328e6a4b4fdaa19beca1", + "revision": "64edaf2bd12145e0bc77120c", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/017170382309708910/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "794fdd6d87d746b5aa897fe6", + "revision": "a781d2cf1e614c1a86741f0a", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/017170382309708910/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a0a5c999f0f64668ba1bc743", + "revision": "65473e4a80ab477cbb441c29", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/017170382309708910/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "ec6a33a21eb749278abc00c1", + "revision": "d4a172fd47934edfac6807fd", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/017170382309708910", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1685395419731, "dateValidity": 1685395419731, "totalValue": 0, "currencyType": "USD" }, - "revision": "851a52590beb41699896ab7b", + "revision": "f9b1dc547e5c466e9958fce5", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "0.74000000", "symbol": "IVIP", "value": 0.000077 }, - "revision": "cd4100f73d1e4d8e9d5be8e4", + "revision": "57885b03bee94b5cafdc9f25", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1c60424236bf401785c36345", + "revision": "60cf56bed48d4eb8a358c4f1", "revision_nr": 1, - "created": 1701465820503, - "modified": 1701465820503 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "83e7f1effde644db8a9b53ed", + "revision": "06c90ee6d98e415a805e34a3", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -19664,64 +19664,64 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "93f4b87f79184c6f82fb241d", + "revision": "2e1e6264f4e441fc8cea0482", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1683998693589/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "f83ba09fcd08441ab426564f", + "revision": "a2e19c053a37440fa938f6dc", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "9e9d1eff40714e07a909b1d3", + "revision": "b15184d5e45f4f82b23154eb", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4f0812af7e4a4678a62425ba", + "revision": "c919b6425c1443258d9321d8", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "a4434bf4064f4b39b640ab9e", + "revision": "7d0645b876b84226a001109a", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -19748,27 +19748,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "420cc34b63ef4065b7672c40", + "revision": "8d4615e6643b482289ca73e0", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684003059388/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "c270191acc924a368fc17dde", + "revision": "3eb5b98b95b4404ebf690c2f", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684018960001/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684018960001, @@ -19782,16 +19782,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d7261bb4a3144b6faa16f384", + "revision": "c000a89baf3d478cb1c8d733", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344860, + "modified": 1701809344860 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684018960001", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -19821,29 +19821,29 @@ "history_id": 1684018960001, "description": "Compra de 8.106.588,00 IVIP por 1.500,00 BRL" }, - "revision": "2e110b4ddae449bb9701e5d9", + "revision": "f0e8014ac40f4d2f84522af7", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "dd6c357fd1904dcc9245af5a", + "revision": "ee1f031c301d4ea4bc5b8cde", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -19879,27 +19879,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e1a9582a8fe448518cdfc913", + "revision": "0d3c8d3e1edf40ac806231e4", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684106238297/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "6b91ca8460804817a2b41feb", + "revision": "42521e93f13945968a81aff0", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684631103258/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684631103258, @@ -19913,16 +19913,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "bf000f5796f44e48b1348453", + "revision": "898750d855c74132bd4722ce", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1684631103258", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -19952,29 +19952,29 @@ "history_id": 1684631103258, "description": "Compra de 487.804,00 IVIP por 100,00 BRL" }, - "revision": "2ba8d9460eae452ea25df69a", + "revision": "c039388c35e94322a87e8608", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "881330e224a24a96a3d16898", + "revision": "31b8e2693219409eb48df72f", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -20000,40 +20000,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "6aa17fc807414ceda1bc078f", + "revision": "0d4ada75ca1a4c25b5fb6d95", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1685388293760/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 4.297.196,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "c7ebd7debf914f21b3968dbe", + "revision": "9a50cc7d6afb46ea989982f7", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "6f3280af207a4b43888c850f", + "revision": "393e06e2a108409281fda252", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -20069,27 +20069,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9dd89ae399b94cc183742fe2", + "revision": "61a6b8a2d4044dbfae650451", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686323712726/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "d318bc822c594e648bae044f", + "revision": "187765fe04994e0f903f6c70", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686591730981/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -20105,16 +20105,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "9edc5aa025624993bba92e53", + "revision": "29f046c6de0d4d9e91a13d42", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686591730981", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -20144,40 +20144,40 @@ "currency_id": "BRL", "history_id": 1686591730981 }, - "revision": "f8bb7b694f624217900e8526", + "revision": "45c48417ef0b4eecb97ace1b", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1686591730981/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "0fc4cd75548c46a9a140845e", + "revision": "03b4efe4430547cf94488a09", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "dd7d2fb87dff4392b1c0c3d7", + "revision": "bdac391308674799a891310c", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -20213,27 +20213,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "27d790dbd06e4f4da1f6cd95", + "revision": "2f017b149c65425686a16d88", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688314787645/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "b6917cbab761455a9c7cdd17", + "revision": "b2429f8c1b254454bc092128", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688315152944/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -20249,16 +20249,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d0c24cc7c105478ba57d8f4d", + "revision": "bedef5f110004377a0cabd97", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688315152944", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -20288,27 +20288,27 @@ "currency_id": "BRL", "history_id": 1688315152944 }, - "revision": "5a8670ea5a174261aa5cccbc", + "revision": "09580857b0bd4fb8a23374fc", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688315152944/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "2518467f8c304f059a9be5be", + "revision": "5893a8f60d1f41e1881efe7d", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344861, + "modified": 1701809344861 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688426195717/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688426195717, @@ -20322,16 +20322,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "35b808d0115e40f6b2659bae", + "revision": "b9f9c953f927481cb0146539", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688426195717", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -20360,40 +20360,40 @@ "history_id": 1688426195717, "wasDebited": true }, - "revision": "dd034bae33284e9b9e469237", + "revision": "f81dad4c7c254f9f9cd000d7", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1688426195717/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 344.736,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "89cb397642fc4041b9410456", + "revision": "fdf2edf2dead452988ecb296", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "459d9298033b4290be2a02e7", + "revision": "22fed79e91394860bc2b3bfc", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -20429,27 +20429,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "cf96e2b24d434b01b4a69f52", + "revision": "424aec3976d240f9a3250aa7", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689095226322/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 430,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "8bf00fba4e604f159a1628fb", + "revision": "88ca6dc394c846329fdcd851", "revision_nr": 1, - "created": 1701465820504, - "modified": 1701465820504 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349679189/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689349679189, @@ -20463,16 +20463,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d62780a5aeab4096a51038cf", + "revision": "0c99925a076e4dd683bef8ad", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349679189", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -20502,29 +20502,29 @@ "history_id": 1689349679189, "description": "Compra de 284.782,00 IVIP por 440,00 BRL" }, - "revision": "f0fa55f3b27f465a8adb84cd", + "revision": "7cdbb36b347443cfb08f2300", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "a5e57b5ff4584c8180b7e9f0", + "revision": "b71ae20359d3420ca27be900", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -20560,27 +20560,27 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "f601cb28d3c7440691308401", + "revision": "716c320d08054cce96e6b8e8", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689349971065/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 284.782,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "a997fa2b415840c7a7e6f407", + "revision": "8900f0cf1384404f9818bce5", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689794977578/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689794977578, @@ -20594,16 +20594,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "39f7f058eb4c4dde9ab74c51", + "revision": "330db81703114df2a873bd86", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689794977578", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -20631,40 +20631,40 @@ "currency_id": "IVIP", "history_id": 1689794977578 }, - "revision": "66b5db1d6af4463fb5bedbf5", + "revision": "331a51d46f0a4dc3ad9c34cc", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689794977578/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 500.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/19/2025", - "revision": "ba04229a12014f80b2079d66", + "revision": "6411684fa6fd48faa808bc20", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "8464008471f348f4b1786d31", + "revision": "24bae974228b4285a4e754d1", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -20690,27 +20690,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "3139badb6bc74cd3a3207ed6", + "revision": "46d95b830bba45f982d96d04", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1689796488476/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 345.419,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "d55e4cf66e574fa4804b60c2", + "revision": "99320df722774c20bafe5349", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690130150231, "net_received_amount": 0, @@ -20722,27 +20722,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "5ac30e2b6588418fa9a82e2d", + "revision": "a23621c96c7a4d20aa63bfaf", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1690130150231", - "revision": "fb40a9b8cc9c48809e1da84e", + "revision": "d011fb735c71404fac5cd53b", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -20770,27 +20770,27 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "d0985d36c8d2483dbaf3c206", + "revision": "d8e7693a85da4e4fb4a2e3a5", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690130150231/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1.908.099,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "30d8a4ce8a61402a837dd9ee", + "revision": "f517097757c14a0ba2ebcde0", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690225429559, "net_received_amount": 0, @@ -20802,27 +20802,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7d09a48dd5ad4521918b25b3", + "revision": "d413f17c8c714fb9a6a9683d", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1690225429559", - "revision": "a6b74e858f204b97813cf2c6", + "revision": "98e820d10c7e491e80a189ef", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -20850,27 +20850,27 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "506239df13b84951b0bf20b6", + "revision": "ab697e4213b24e73abea472f", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1690225429559/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1.829.159,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "48c0d33b262d4e02821d6a51", + "revision": "3155448bc8894300b716eed9", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344862, + "modified": 1701809344862 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691104619419, "net_received_amount": 0, @@ -20882,27 +20882,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "35a1ce3fce754e2b88187216", + "revision": "d37d409ff4264274927c1ad5", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1691104619419", - "revision": "a3700491255747e2bd9764ed", + "revision": "8b1a12897a1a4d1c92c88ae3", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -20930,27 +20930,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "5ca94bb15d2c472b8119e83e", + "revision": "81229272ca4f4828923b9e3d", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691104619419/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 344.736,00 IVIP com um rendimento de +6.894,72 IVIP (2,00%)", - "revision": "0a84e23abb3f44a9b2d7cb91", + "revision": "e1ea1104f8004f91ba28d991", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691246155706, "net_received_amount": 0, @@ -20962,27 +20962,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "35d806e57eb34bd7a9455c8b", + "revision": "437a1aa373f546fb96d971f5", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1691246155706", - "revision": "b8d1461b6b2f41f28ea216e2", + "revision": "ceebfe6f4e214d8c9297ffb2", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -21010,27 +21010,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "78863a682fc64a5992623afb", + "revision": "e7851fb1b8ed4c65ba0ea8e8", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1691246155706/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 4.123.251,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", - "revision": "5abd2c4b1bcf4bbd97c4059f", + "revision": "d412b78c547541d1a60b9895", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -21038,16 +21038,16 @@ "value": 1694714218629 } }, - "revision": "65c7d9226c8946bea2b61934", + "revision": "76bd892e13294c33beae7f31", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692122218629, "net_received_amount": 0, @@ -21059,27 +21059,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "eedd10404942440f87e4162a", + "revision": "f5445cd1130c40c3948f8546", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1692122218629", - "revision": "9477355a76a14731a2e0aca9", + "revision": "791e94503d444aec996a276d", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -21113,27 +21113,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "6508d633a8c84c08bbf8e238", + "revision": "11ca028488ee4c6386be779d", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692122218629/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 220,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "e42c500d49994e3ab4ac0465", + "revision": "c8f4f3785efd4b85a66daf30", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692210661601/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 3, @@ -21149,16 +21149,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "31f7842085ef465aa284b227", + "revision": "0d1b615004174326a724410d", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692210661601", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -21188,27 +21188,27 @@ "currency_id": "BRL", "history_id": 1692210661601 }, - "revision": "cc1cae5eb3444d208cbedd82", + "revision": "9eb0e8caef9947c680a89cad", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1692210661601/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "f6a1fa6ba8914595b65305f6", + "revision": "2b09dd271ef94c389a0d77ec", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693924607794, "net_received_amount": 0, @@ -21220,27 +21220,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ef74af9200fe4931985feabe", + "revision": "9b158ef6cce24641827e81b5", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1693924607794", - "revision": "84d72165fccd41d3b768550e", + "revision": "da9cebc6aca3414c8986c4d3", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -21268,42 +21268,42 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "65c5d9741acc4b0483948526", + "revision": "9db1c7326ae04ba38641784a", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1693924607794/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 4.123.251,00 IVIP com um rendimento de +82.465,02 IVIP (2,00%) - Y12XDT27", - "revision": "aefbf6d275c54eaa89b780cc", + "revision": "c1e1d6d4d3e94cf8a6e5f5ee", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344863, + "modified": 1701809344863 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 107596.65 }, - "revision": "dbb8429f1203495cbf650aa0", + "revision": "23c4990cfe4c462ba65c36ff", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694019139358, "net_received_amount": 0, @@ -21314,38 +21314,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "48472de11b4f41d9952b0b42", + "revision": "f73bb20a0668406ca2344572", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694019139358", - "revision": "e35b11817a6b4b5eb82d3310", + "revision": "1a4af518bfa0430faaec48e1", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "42d6052e75c74227988d0a99", + "revision": "fc9779d051c943c895a3422a", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -21383,27 +21383,27 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "dcceb77595dc4c0da583dae7", + "revision": "506ffe599b3045f9986b3549", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694019139358/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 3.478.958,35 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "9d22ed48d1454739b6a43b06", + "revision": "54dffee99eff40909463d4a5", "revision_nr": 1, - "created": 1701465820505, - "modified": 1701465820505 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694530925477, "net_received_amount": 0, @@ -21415,27 +21415,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a9c63c5e7c5b4d21b78fa7aa", + "revision": "49f279f461e14a30af83c7ee", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694530925477", - "revision": "e1bd7ddbb0e64bbba3729511", + "revision": "3ac6c4a3e1f648c18b43268b", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -21469,27 +21469,27 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "06e368f871a34e0283e7c16b", + "revision": "928efee90bfb4a4085bfc7b0", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694530925477/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 13.248,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 12/10/2023 - Y12XDT27", - "revision": "99538fe7f03849c4889cbb34", + "revision": "346aaff69e484318b1167aa2", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -21497,16 +21497,16 @@ "value": 1697151249010 } }, - "revision": "78c47198dacd4032a12cf9ca", + "revision": "030466f361d242b8a80b92d6", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694559249011, "net_received_amount": 0, @@ -21518,27 +21518,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "cccd2da3c4384da28732b290", + "revision": "7dd3fbdc435949ef916f263c", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694559249011", - "revision": "f7337c17ddd64675a2e07292", + "revision": "b161cc53fae4414cb37ca92c", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -21572,27 +21572,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "8ed5793ffc2444fdb43a9473", + "revision": "622c4d38174b44aeaec0ad9e", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694559249011/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 220,00 BRL para a carteira iVip 0176.0919.3050.0250-62", - "revision": "17e3124ccd244df780705efc", + "revision": "978ce73a8a224671b57a39b3", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694560328887, "net_received_amount": 0, @@ -21606,27 +21606,27 @@ "installment_paid": 4, "installments_payable": 1 }, - "revision": "2c4460ab64c74149b032f6b7", + "revision": "d38393c6547b4afba0bc5e74", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694560328887", - "revision": "cee71804b86f45c1b7c9630e", + "revision": "884e1b02da414ee78a68ddf6", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -21654,27 +21654,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "151e12e8959744b880a8417b", + "revision": "4090cea6326a4785bfef6aae", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1694560328887/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "849532eceb89478bac187883", + "revision": "2f964d664b424c469eb47e1f", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695164776163, "net_received_amount": 0, @@ -21686,27 +21686,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "e52279b0af8741408565b4ae", + "revision": "7df87afd88774ff9a9d32d6f", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1695164776163", - "revision": "670c56e651584e87846ea4a6", + "revision": "261f5d513b044f8c92c8db50", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -21740,27 +21740,27 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "63e0b3ea494b45188d29cb18", + "revision": "3d76f354de04469ab921a392", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1695164776163/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 4.583.948,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", - "revision": "d69dc41a19f54443b1378537", + "revision": "55bc4948221944de845fa531", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696551378554, "net_received_amount": 0, @@ -21772,27 +21772,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "20beacff4e9c4c6c83062dd1", + "revision": "c7690f9e0bc848c882c83865", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1696551378554", - "revision": "1ec9b719cc4b4c5fb8514cb4", + "revision": "874cb8ff329b42fea44e4182", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -21821,27 +21821,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ddb5e2a5541440b0908eebeb", + "revision": "da6d93cc9d804a05882a3a2c", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1696551378554/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 4.597.196,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", - "revision": "161d4d9318f64d2788a580b0", + "revision": "a4d1e4de5d6647cab99213a9", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -21849,16 +21849,16 @@ "value": 1699792000740 } }, - "revision": "535f7ad6c4f348c889341871", + "revision": "a1cfc5d27b82450d8db0f397", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344864, + "modified": 1701809344864 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1697200000740", "net_received_amount": 0, @@ -21870,27 +21870,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b3d58b2ea596428cabf0d84e", + "revision": "17e5edd4d6ac495fa696663f", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1697200000740", - "revision": "f3a3900ca19c4f839e7e7f97", + "revision": "f7e16f44746b4754985e7326", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -21925,27 +21925,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5a3277cb1be7469b8a419f0b", + "revision": "f4f02c8977d74c88a2bdf658", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697200000740/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 220,00 BRL para a carteira iVip 0176.0919.3050.0250-62", - "revision": "0996394ade5d43c29b1e8677", + "revision": "e76faba473604a84b10c7219", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1697203305717", "net_received_amount": 0, @@ -21959,27 +21959,27 @@ "installment_paid": 5, "installments_payable": 0 }, - "revision": "e7a641d89b8345bea4ecda0b", + "revision": "aee99c2fec2f4829ab96b9d7", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1697203305717", - "revision": "98e2877a0bea402eb934ac54", + "revision": "17264f8deccb4007886d775f", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -22008,53 +22008,53 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "b124518e1fa44654a76b33d7", + "revision": "37296cf568934be785338847", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history/1697203305717/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "95e6707f1b9244c1bdfb9a61", + "revision": "be0fc115fba844738d612bdb", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "27d8aa9cf2604a03ae89b741", + "revision": "b050e7efc77f42c39baa2496", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "66ed05082d7940f1840c8287", + "revision": "a4b455b115ce4d7798409623", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684003059388, "type": "emprestimo", @@ -22070,64 +22070,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "eb68e09cefcb4a94a80c77cc", + "revision": "cecc886b2a91475c94154c12", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "3ec8c9dbe6b84408bf507cd7", + "revision": "e548fd5128314987a18ae3d5", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306/1684003059388/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "3294094e6667411f91b6016c", + "revision": "5f00a53309aa49c79b21bbaa", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202306", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "94b6040dd11641c6bd327c02", + "revision": "1ac4f907c86e408ea80d7833", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "10f2a87c5f304c6ea7dd0d37", + "revision": "ce1892dbe32f468cbb13292e", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684003059388, "type": "emprestimo", @@ -22143,64 +22143,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "bb6fde636f514e77aaaa8a70", + "revision": "12b7b81f97ee4232a2075a4e", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "ec4c0a9ebb9e4630b70fb0ae", + "revision": "f9c72ca234734def83ccdf71", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307/1684003059388/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "c71e712e0846485c83ab6e7a", + "revision": "a1697f62c60848c6b163490c", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202307", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a287d04a72a6491e8cf611a4", + "revision": "1a90e5043d304f30980cb714", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "31d0324e31af4a369bd1f782", + "revision": "948c3d8224a94de1ab92db6c", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684003059388, "type": "emprestimo", @@ -22216,64 +22216,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "9e54977013be4795858137c1", + "revision": "9689b89099b4421d84699ca4", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "cd60c922e3a64efbabef3ef7", + "revision": "72e631934d6a46dd89aff39a", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308/1684003059388/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "df195d4a9efc409f82f71986", + "revision": "96920b77f6d148568460a333", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202308", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "31e4341f8b5d4a35ad316590", + "revision": "7bd2002707c74bdda904188f", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "c111ad11740a45d685bf9bfa", + "revision": "13f5298621354808a6901e44", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684003059388, "type": "emprestimo", @@ -22293,64 +22293,64 @@ "value": 1694560328902 } }, - "revision": "09686f1c10104aa39fca4d81", + "revision": "b7d858fb4fa649a9be63f1f5", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "ad9d54824dac4ae6878f4f02", + "revision": "d4601584c34f45998ec9ab6a", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309/1684003059388/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "fcbd48895300420f8bdd9b2f", + "revision": "26e943e5f78841e19f773731", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202309", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e50218d0967041bcb3048034", + "revision": "e13d2b3e626c4710a9f1745e", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "b17b9f1cafae4dd3a64ce802", + "revision": "17feaed88b204d889510d103", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684003059388, "type": "emprestimo", @@ -22370,60 +22370,60 @@ "value": 1697203305729 } }, - "revision": "b7c75567fe634351ae67ef56", + "revision": "2e97452eeb2e47d68e29268b", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "24e0a002609b4577ad4e2874", + "revision": "e4d4d6b1730f431d97cfbbc0", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310/1684003059388/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "9fe43c578bc646b3add1b7d9", + "revision": "c9e0a2efff334fefb3987394", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices/202310", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4fe0383d76eb49038ab10a2d", + "revision": "8d91639762c4456bae47a2d9", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c891021ce3954a25b3978b7a", + "revision": "de36883e7f26450197cc97fc", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 1000, "limitUsed": 400, @@ -22436,16 +22436,16 @@ "value": 1684000989928 } }, - "revision": "80bf9d27876943f8b0382c85", + "revision": "237bdab13b3b4e49a9b73cf1", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017609193050025062", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1682097646342, "dateValidity": 1682097646342, @@ -22456,29 +22456,29 @@ "value": 1697338800000 } }, - "revision": "a8490a1e11b44643a307e1ac", + "revision": "8f54586d35bb4dedbf04f173", "revision_nr": 1, - "created": 1701465820506, - "modified": 1701465820506 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "777a22d7ec4944a29a6eea99", + "revision": "494aaea6d4934156ad8d553b", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -22514,27 +22514,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "abc89ab24b1c48daa0cbe8d5", + "revision": "b57f1f5ecbe5496e9401b27d", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1684943727392/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 15.000,00 para a carteira iVip 0176.2260.5984.9780-02", - "revision": "07d7f58e3bc54b9695d85bbb", + "revision": "f82272e1eb0647589dbd401b", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1685471938618/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685471938618, @@ -22548,16 +22548,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "595944987fb64f0aae9b9832", + "revision": "47ed7046e42848ebac3e2db9", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history/1685471938618", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -22587,78 +22587,78 @@ "history_id": 1685471938618, "description": "Compra de 200.000.000,00 IVIP por 15.000,00 BRL" }, - "revision": "15962e19053544f1951a9116", + "revision": "7539912e67644542a20d4c76", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a64f552149ae4301956af509", + "revision": "ddc4e3e79ef44657b8d38c8d", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "d73dba9041b04c85a542f84c", + "revision": "d17660a7de834b6a8de19945", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344865, + "modified": 1701809344865 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "c82ad3000da346398bd89050", + "revision": "59f253acfd98434fa2b6b800", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "200000000.00000000", "symbol": "IVIP", "value": 20332.55 }, - "revision": "e3ea636e4e9840de9c39058b", + "revision": "21d8d22f571642c6b96d5119", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "37e02167660c40349108499e", + "revision": "29e7945b20394631a50802ac", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/017622605984978002", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1683153627758, "dateValidity": 1683153627758, @@ -22669,93 +22669,93 @@ "value": 1697425200000 } }, - "revision": "6e33ca7c50a749adb4ddf186", + "revision": "501a9422402347c1a888d0de", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/018061972197789932/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "16585bec626e44f6b1889725", + "revision": "7e637240f1884806995d7ba3", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/018061972197789932/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "de04195f97a24605ba21c205", + "revision": "375671b1521c458a8570f654", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/018061972197789932", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678058024401, "dateValidity": 1678162416437, "totalValue": 0, "currencyType": "USD" }, - "revision": "0dae032f040548bd85768b33", + "revision": "70fc318eb8e74f9da8b78d93", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "0.60000000", "symbol": "IVIP", "value": 0.000081 }, - "revision": "2e1da8f442ce4022a6d43f82", + "revision": "2bd85aa53da545c98e9df634", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6c68f072e35f4a8c8b63e66f", + "revision": "38480215840f49818a344f47", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "b81a3cabfa044125a0c8b6df", + "revision": "c0e899ab23e64c3eac46948e", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -22786,40 +22786,40 @@ }, "money_release_status": "rejected" }, - "revision": "2e9fe4416bc5410e9de3c08f", + "revision": "ee0ef957e42341c7b8128d2f", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138020034/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0192.1172.1108.0322-64", - "revision": "6399cf1bd712414a8bebbeba", + "revision": "ccebf6786c53499f92203379", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "49fc6c0284ec43c58c160063", + "revision": "70c0e7e649314f618d5163d1", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -22855,40 +22855,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "7b4348d4f23e4839b555df30", + "revision": "cb3bd0fe40864b609d5e8c04", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1677965965594/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0192.1172.1108.0322-64", - "revision": "2c08bbffc0884f629e8f6a5d", + "revision": "1737d73a362a4a519bba2c59", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "a808eb1d524c490586b3e4a2", + "revision": "004821c0ba1d4aba9b5837e5", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -22923,27 +22923,27 @@ }, "money_release_status": "approved" }, - "revision": "4de972d7192f48c78f74ecaf", + "revision": "d19f82cdc1e94c44a1ce181f", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678138148348/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0192.1172.1108.0322-64", - "revision": "4bdb941968e24453a268d880", + "revision": "ff23875ae8334a248ecb5b5f", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678162119494/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678162119494, @@ -22957,16 +22957,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b907da3075fc441394e30392", + "revision": "d2f6f27e4c72428c85a54283", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678162119494", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -22996,16 +22996,16 @@ "history_id": 1678162119494, "description": "Compra de 14292068 IVIP por 2000 BRL" }, - "revision": "6a2d1f69b05c49b2b40f4a48", + "revision": "31270a1991f349b98a9e48a6", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678201718893/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678201718893, @@ -23019,16 +23019,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "232f334595814b8990fe53ce", + "revision": "119725679c2c4d30a575fac1", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1678201718893", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -23058,29 +23058,29 @@ "history_id": 1678201718893, "description": "Compra de 7083024 IVIP por 1000 BRL" }, - "revision": "89514c53e0074f77948acf6b", + "revision": "0f57d59ed55f4019ae77da50", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "b6aa67fcc52641ba859b75e8", + "revision": "3d56d6a494124337b3361e4c", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -23111,40 +23111,40 @@ }, "money_release_status": "rejected" }, - "revision": "416ea69a014f479aa97f2181", + "revision": "6c6179fc547a4a96bfa3e449", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306180932/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 15.000.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", - "revision": "072ecadbc62045c697f3fd14", + "revision": "47f2bb6734ab4de7b05dc699", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "74e8294f09954b88b7149c65", + "revision": "b0bc6261f6644993a59f63b7", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -23180,27 +23180,27 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "11b0f9880ba64a0e90240aa1", + "revision": "c2eb85c3ff1f4a54b0f2a5aa", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687306331776/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 15.000.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", - "revision": "ab14a87956e14b08978de5f7", + "revision": "c890d87714ec4c828c4d346b", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344866, + "modified": 1701809344866 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687525932247/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687525932247, @@ -23214,16 +23214,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "f2830bc9be504efdae616010", + "revision": "26c7622fa58e456697dec67e", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687525932247", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -23252,27 +23252,27 @@ "history_id": 1687525932247, "wasDebited": true }, - "revision": "400698d511ca4aecbf1da0eb", + "revision": "6cf686f2ee594c0583d5d272", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1687525932247/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 6.375.092,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", - "revision": "323e54bf1254481fbc8f5eb0", + "revision": "4e1644baa5f04ec981e5d754", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688054453004/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688054453004, @@ -23286,16 +23286,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d8f79801d55048dfb0d134e6", + "revision": "c1b46cf8eb414017be9359f3", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688054453004", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -23324,40 +23324,40 @@ "history_id": 1688054453004, "wasDebited": true }, - "revision": "80cdd23f05574c5fb890718d", + "revision": "10bca410cfd34b6887a0e1d5", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688054453004/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/29/2024", - "revision": "c9e69deca864425c904acb3d", + "revision": "03dc8b4847a04dd8be0fc90e", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "a524aef66abe45a09ca792c2", + "revision": "4f7ae7fcd57241469eb81da5", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -23383,27 +23383,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "f77937b84f784a599301878c", + "revision": "47df78c2c02140af9a57bfb3", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688055217395/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1.375.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", - "revision": "1185aeda4cd24b9bb3a5baf9", + "revision": "5ca28ee14b264eb6a2c63708", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688400574946/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688400574946, @@ -23417,16 +23417,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "be50c7feb7ee4e0da8f3e4fa", + "revision": "4d1125ce3ab0456a96fcc732", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688400574946", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -23454,27 +23454,27 @@ "currency_id": "IVIP", "history_id": 1688400574946 }, - "revision": "60b95a0a8e4a48ddb9ab5611", + "revision": "e17e158a006041ca88305cfd", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1688400574946/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "2ce02a3e4a0341f0b045cb76", + "revision": "8c15c0460fc84894897b6c7f", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079119787/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1691079119787, @@ -23488,16 +23488,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "432b25d7baf4422ebf5d2dda", + "revision": "952a51bde5ae4194a71d87ba", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079119787", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -23526,27 +23526,27 @@ "history_id": 1691079119787, "wasDebited": true }, - "revision": "e1939560866b413baa732741", + "revision": "d5bb781ffe2640f6bde9cc53", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079119787/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 5.000.000,00 IVIP com um rendimento de +100.000,00 IVIP (2,00%)", - "revision": "b1e133203ab547b1ae116d0e", + "revision": "01bda3f96c4f4c1cac7e71ef", "revision_nr": 1, - "created": 1701465820507, - "modified": 1701465820507 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079120545/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1691079120545, @@ -23560,16 +23560,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "ce81f904b2014fcd92d49e73", + "revision": "116796673bbd4f67b5f88cd1", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079120545", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -23598,27 +23598,27 @@ "history_id": 1691079120545, "wasDebited": true }, - "revision": "fa486a755c534426a37d193b", + "revision": "afe92fd412be474fbfb2fef1", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691079120545/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 5.000.000,00 IVIP com um rendimento de +100.000,00 IVIP (2,00%)", - "revision": "ff446ba08d164556a0d3b1a7", + "revision": "b43c13a72d3e45d4895d3cc0", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344867, + "modified": 1701809344867 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691085199409, "net_received_amount": 0, @@ -23630,27 +23630,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "640f3eee4c134a82991fa1a5", + "revision": "5554285d2d324b4b8bf83982", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1691085199409", - "revision": "7994bf4dff8b460dabd5cba3", + "revision": "672d738c8922466096a73b40", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -23678,27 +23678,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "168eb4d61b004169bceaaa53", + "revision": "586567bb75c14a979a5d0bf9", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1691085199409/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 5.199.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "919554527d39497b81f9889d", + "revision": "9f024b70dd714fb487eeb59f", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693763776046, "net_received_amount": 0, @@ -23710,27 +23710,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "6f46d70bca90448cb4f33454", + "revision": "c565637fd04a4dbc81f90006", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1693763776046", - "revision": "8788365775254d1f83a7a19b", + "revision": "2e2b4008875b4ef78391b88c", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -23758,27 +23758,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c9713851f91e417f988037dd", + "revision": "1b0e9e91cbb9452590d515cc", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693763776046/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 5.199.000,00 IVIP com um rendimento de +103.980,00 IVIP (2,00%) - Y12XDT27", - "revision": "2942fce73bf84a8e9db994fb", + "revision": "fd99974083e842699753c009", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693924633176, "net_received_amount": 0, @@ -23790,27 +23790,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "17d51180e3aa4a32b4f9f83e", + "revision": "cd2a8c3f084342ed88be4776", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1693924633176", - "revision": "5332c87a17b7415bbc80a588", + "revision": "5d5dcd8a553447bebcfeccbf", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -23838,27 +23838,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "2296443c4c574d1181287130", + "revision": "df59a3602c324257a93c5c30", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1693924633176/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 5.302.980,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", - "revision": "2a94ffbf25554f468e3e7193", + "revision": "2833dea93f19456faf3e6a3f", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696516664226, "net_received_amount": 0, @@ -23870,27 +23870,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "605b1419bee441e6a993ce77", + "revision": "332f7447d9e845fa826120b2", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1696516664226", - "revision": "1e7775c31cf34185af453c28", + "revision": "0bea00ae33424f2eb5277dc7", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -23919,27 +23919,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "f592b7b656fd4866a1ea2df0", + "revision": "acd923e504cd48738a09af37", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696516664226/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 5.302.980,00 IVIP com um rendimento de +106.059,6 IVIP (2,00%) - Y12XDT27", - "revision": "9f56de15b0304428a95699fa", + "revision": "df2acdd90fcb4d86877d2236", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344868, + "modified": 1701809344868 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696621887766", "net_received_amount": 0, @@ -23951,27 +23951,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "aee33fdb54154e0f98093866", + "revision": "bdcc7991e86b49f8a922e56e", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1696621887766", - "revision": "9c2be0f035e741f18b0d0b82", + "revision": "abd4685c17e547ac8304fb15", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -24000,49 +24000,49 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ecd4f17f568343a28a74f06e", + "revision": "8aa7e0ed3bf94ef5a65cf69d", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history/1696621887766/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 5.409.039,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", - "revision": "3d35ee5b9b534e26a1cb5fe9", + "revision": "803cd11290324712989060b7", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "154a11eb9cc146f8b71d5a8c", + "revision": "246649a653c6419899abf8a7", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8b27c028d3884537bcf50382", + "revision": "fd0fddadb2b04e9ea978bcea", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0, @@ -24051,16 +24051,16 @@ "value": 1689780416218 } }, - "revision": "7c9acf7abe474b889eb09dad", + "revision": "92cc9385f0d44d3a953e536b", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019211721108032264", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677444787438, "dateValidity": 1678664927087, @@ -24071,55 +24071,55 @@ "value": 1696820400000 } }, - "revision": "6cf449acd7374d808f9253b1", + "revision": "54e67e163c80488f89643894", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "80.00000000", "symbol": "BRL", "value": 16.58 }, - "revision": "5dd54721c1974784bc610429", + "revision": "ef41a9bc419d46f4adfa86e9", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5a2192b4d8b6415bbef72c69", + "revision": "0c8844f7320a429982aafeff", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "3e20d63d6bdd41828d7856dd", + "revision": "0d36d69e61a74d42bcd26894", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -24154,27 +24154,27 @@ }, "money_release_status": "approved" }, - "revision": "daa4382c6eb14745942d19bb", + "revision": "8402f813f3494591a688414c", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1679011728068/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0199.6555.6064.9756-30", - "revision": "de0e7019c5ea4fa3976706b7", + "revision": "095d30b4345b40aba11db774", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1689901373588, "net_received_amount": 0, @@ -24186,27 +24186,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a5c6ee7dbd6e4105922d7ea3", + "revision": "91dbd3a26ee344a4b58d0ce8", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/019965556064975630/history/1689901373588", - "revision": "db151ba216724124bb0aa9af", + "revision": "fde68a3276174ac8b945d64f", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -24234,63 +24234,63 @@ "base_currency_id": "BRL", "status_detail": "accredited" }, - "revision": "ddd8a0e687d04c3aae16cccd", + "revision": "3a0a280db83b4ed3b8f46e78", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history/1689901373588/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 20,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/20/2024", - "revision": "a728294623124f519b9b8ac4", + "revision": "c0f70369930d41f4b7e85a6a", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c49a6f2119734f44ade928f7", + "revision": "8532d26c0e7d43eba12cb7d2", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "f08fd0fb9bdc42d8acf18f6e", + "revision": "1ddf3f9ad0104cefbf90222f", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "38b55f1c148b40a191a1084d", + "revision": "24b20c657289430b9bbdc038", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/019965556064975630", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1679011642708, "dateValidity": 1679026042762, @@ -24298,70 +24298,70 @@ "currencyType": "USD", "balancesModificacao": 1689822000000 }, - "revision": "ea52225a9cb64cf98b434dbe", + "revision": "6889f8bd65cf4bd7afd4b9be", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, - "revision": "2c9be654157a454a80e23c95", + "revision": "292ffc1d1931423e80eb6558", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "72120104.00000000", "symbol": "IVIP", "value": 10477.68 }, - "revision": "029db868bdac4cb0b790a199", + "revision": "d94fe20fa5cb4d3e9f3a5af8", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c83cbf8aa6464ecc94689a23", + "revision": "75c8aafafafb4484b560e7dd", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "a25f7e3c5ce04074b1d7cbb6", + "revision": "5a950c4131f04d4ea98f66d4", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -24397,27 +24397,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d307ca2204084bc3b9dc4293", + "revision": "bf6e0bcbbe2e484b95f0db51", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677725964136/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0219.7710.1011.6756-04", - "revision": "55f773ba08d441e9bbe6e6b0", + "revision": "2ba979345c7c4b6698709206", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678147737654/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678147737654, @@ -24431,16 +24431,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "509c4d27554d437988f471b7", + "revision": "a962925b418c4021855cb44d", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678147737654", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -24470,16 +24470,16 @@ "history_id": 1678147737654, "description": "Compra de 71386212 IVIP por 10000 BRL" }, - "revision": "2790ae09277b49dda9c35588", + "revision": "92ee4d2ba0fb461688b5995e", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678160584706/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678160584706, @@ -24493,16 +24493,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e008318cd72340cd9e8bcef7", + "revision": "a3706174a39b429a945410a6", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678160584706", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -24531,27 +24531,27 @@ "currency_id": "BRL", "history_id": 1678160584706 }, - "revision": "2ee1a03524bc426c908f6eac", + "revision": "6db1ee998bbe4f6b8d8c702b", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678160584706/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "2b3afb340019414b8352ab5c", + "revision": "5180725e4b7145e18ca2f852", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678162248934/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678162248934, @@ -24565,16 +24565,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "a2d6136264ef4239b9b077a4", + "revision": "1d3f8fe097bd490da9c7acf9", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1678162248934", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -24604,44 +24604,44 @@ "history_id": 1678162248934, "description": "Compra de 7146034 IVIP por 1000 BRL" }, - "revision": "de565d76367f4dd5b7c9bf95", + "revision": "3b27ce18776b4076949f60c3", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344869, + "modified": 1701809344869 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/barcode", "content": { - "type": "OBJECT", + "type": 1, "value": { "content": "23797927500010103493380261019562276900633330" }, - "revision": "16bb61a902bb461492220019", + "revision": "67989ea267704d3cba6c3bf1", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "8d0038a815cc411199ce990a", + "revision": "cde67ead2a144b78bc31a244", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": "10195622769", @@ -24653,38 +24653,38 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "23eb0345b0414cbcaed26546", + "revision": "fdb09ee13b2a41a9b3dfe2c0", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1311811220/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311811220&payment_method_reference_id=10195622769&hash=8d50adc1-12db-410d-a168-79594db6001b", - "revision": "2e6dba982658440f8a1d1cf5", + "revision": "61c2fe91837248af9ab741cb", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "d105ddef885f4f09be9bcf17", + "revision": "53ee223d19424ff1ab62ccdc", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -24711,27 +24711,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "51409d44c49f4e799dd1a5e9", + "revision": "bef18da331fd4e92bbb57a82", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1677379209968/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.100,00 para a carteira iVip 0219.7710.1011.6756-04", - "revision": "1a2157d690014195a2546060", + "revision": "bf9687c3b1a04530bff5ed5b", "revision_nr": 1, - "created": 1701465820508, - "modified": 1701465820508 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684348383580/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684348383580, @@ -24745,16 +24745,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "73bcc0ec0df34b9ba38241ac", + "revision": "ddef9c406c6c4ab6a1afe2a8", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684348383580", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -24783,27 +24783,27 @@ "currency_id": "BRL", "history_id": 1684348383580 }, - "revision": "f5de60ec03bf4f5fa58b03a0", + "revision": "5f3f82c4317d418cb03fdf5c", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684348383580/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "650e0bca0d4d4c799e2d851a", + "revision": "b37dd748039c47d58281b591", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684624810300/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624810300, @@ -24817,16 +24817,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "20219dfca7bb4b8b9c11f59e", + "revision": "c42686e05cb1405b9faf3e02", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1684624810300", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -24856,16 +24856,16 @@ "history_id": 1684624810300, "description": "Compra de 1.587.858,00 IVIP por 326,00 BRL" }, - "revision": "045d4b76fc654b11a763e9d0", + "revision": "644489ef64c74dcb8b620d77", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1685668591211/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685668591211, @@ -24879,16 +24879,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "1e11249c552b48c2a9e64d16", + "revision": "8d8a4cf94d394b61973ccaf7", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1685668591211", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -24916,40 +24916,40 @@ "currency_id": "IVIP", "history_id": 1685668591211 }, - "revision": "647715b22b7e446691685724", + "revision": "6aa9e406b4f54f48b7409b81", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1685668591211/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "5b53096822c94d1688139fe3", + "revision": "8d1c684076424d6594184d6c", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "1e47c3a1140e4ee2b531d70f", + "revision": "f2fae1ac2e444488a0836266", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -24975,42 +24975,42 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "fe37256d97d546c7aa6442d4", + "revision": "fce9f6b10df741bf984f8f99", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1689198160853/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 72.120.104,00 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", - "revision": "0e13371008464d179a2b64c9", + "revision": "572916bf437a4d27acf55354", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 2098695.0264 }, - "revision": "c367e2b4fc1542f59df7000a", + "revision": "285935a1c6a949609b92eaf1", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690914468659, "net_received_amount": 0, @@ -25021,38 +25021,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "274d0cb568b348a08bf1385d", + "revision": "9240cd9dbae2439f9924390d", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/021977101011675604/history/1690914468659", - "revision": "0764ee78ae1c445a99e72857", + "revision": "320986cb70014995bbf829f3", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "fd0577e341a34b208497fa3d", + "revision": "af1cc11e9ede41cf825deaa0", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -25090,42 +25090,42 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "fe4e5c3b07f9462f9f6c1001", + "revision": "a3b2170cc2fe4f5e96ce02a7", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914468659/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 69.956.500,88 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", - "revision": "0e1acaa7749542159cbd1a82", + "revision": "713947031ab345d98abfbb62", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 1026103.0443000001 }, - "revision": "0e099af4d031465b80f92c91", + "revision": "8c378834f29c41e795f0e09e", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690914748870, "net_received_amount": 0, @@ -25136,38 +25136,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "bdd0d7890ed04276bc26ecf3", + "revision": "d6487f4d031147f58d88417f", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/021977101011675604/history/1690914748870", - "revision": "91425119f07f43798aab4f33", + "revision": "77ef4af5211040f7a2321c76", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "7bfdfe2860eb496181e2ea5f", + "revision": "a269c6bcba8e4df285a11632", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -25201,63 +25201,63 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "8097eff6958046c79dcb77b8", + "revision": "762a710666604306a1e62f4b", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344871, + "modified": 1701809344871 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history/1690914748870/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 34.203.434,81 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", - "revision": "8bbd0ed4da584345b1dde0e2", + "revision": "9e6e8dd9b47e4d15a884a178", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344870, + "modified": 1701809344870 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7681ff23182d47b69bf12c6b", + "revision": "59bf2bda1f1c4546a4bebb9d", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344871, + "modified": 1701809344871 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e2c94c90b66741e390f1b90c", + "revision": "21fefcb62658441abc5af4a2", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344871, + "modified": 1701809344871 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "7ce6ea7db53d4e2d91548590", + "revision": "772d6a9e5a2c48068fe86ac1", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344871, + "modified": 1701809344871 } }, { "path": "ivipcoin-db::__movement_wallet__/021977101011675604", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677376425892, "dateValidity": 1678341464139, @@ -25265,55 +25265,55 @@ "currencyType": "USD", "balancesModificacao": 1691419368675 }, - "revision": "0a5545ee6d564e8598912ff6", + "revision": "87a87cf08f9e45b99747f4a3", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344871, + "modified": 1701809344871 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "62553.00000000", "symbol": "IVIP", "value": 6.93 }, - "revision": "a6cf6e2db20e4d7c854e3f46", + "revision": "d388fb97cc974de8a9d5fe04", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344871, + "modified": 1701809344871 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "cc3993a2916046b7a8b51813", + "revision": "01dd062dd1fb497f8e48960e", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344871, + "modified": 1701809344871 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "40c4a7c24e1e41398e89d42a", + "revision": "bd0623e5d27f4280964a151a", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344871, + "modified": 1701809344871 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -25349,40 +25349,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "fede065d6e5b480396ca423e", + "revision": "573c26200d7642bc96fd66a8", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344871, + "modified": 1701809344871 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689290027436/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", - "revision": "e512c5002da24101a8746748", + "revision": "ed34a88c03274066a1d74602", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344871, + "modified": 1701809344871 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "7d56db7900ec41b4bb0a80f2", + "revision": "22f4e4af79cc4f0b97e0547b", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344871, + "modified": 1701809344871 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -25408,40 +25408,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "de9735c8e4534381ba1c7497", + "revision": "ef4374343b214752a5a950b8", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344871, + "modified": 1701809344871 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689338968555/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", - "revision": "cee78e819cbc4c0b99a2e332", + "revision": "cbe2e71b4ec941b489d2bc96", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344871, + "modified": 1701809344871 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "257b399fd83247a79f8b2785", + "revision": "bdc54cbaef034a7eb1bcf157", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -25467,27 +25467,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "9a2fc9f77fbf41dd9d5cb901", + "revision": "2e32d2e663bb4c948fbf5683", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689345853748/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", - "revision": "94ae22b6830e496cbc5f34b1", + "revision": "d9305350fd594ddb9fd58b4d", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689357674118/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689357674118, @@ -25501,16 +25501,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "7dd0e433a5b54dc497f444c3", + "revision": "41267f69a4864c9283d295a7", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1689357674118", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -25540,16 +25540,16 @@ "history_id": 1689357674118, "description": "Compra de 62.553,00 IVIP por 100,00 BRL" }, - "revision": "b5f53ce64c9c47068004c681", + "revision": "1c00046b13af4caca0a0e212", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690557889809, "net_received_amount": 0, @@ -25561,27 +25561,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "0bd7f85643bc4977a40ce4d5", + "revision": "113eb874be134231a8ec15e3", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/023129781601157750/history/1690557889809", - "revision": "bd4f7169b5f24d3ea7b1f297", + "revision": "a23bfae2d1c04293839ef27a", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -25609,63 +25609,63 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "c19fe196ea4b4e8bb031edb6", + "revision": "c80dcf6615654d5d8c1fcbcf", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history/1690557889809/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 62.553,00 IVIP para a carteira 0x0f58150836c0785C212ea8Eb4eC1Cce6E595CE4a", - "revision": "d4974b19ce63458d94fa4959", + "revision": "faf2e627dbe74bed92e76046", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b73529af25324f8da7d34090", + "revision": "6ddefb39d3054f31a5ca9ddd", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "246e44d71b8d4b18ab561229", + "revision": "5ee1379054ec4b05bde247ee", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "89c444ff799141b19bdb0342", + "revision": "a9c1089b8ae145a6a042ba9e", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/023129781601157750", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1689289832519, "dateValidity": 1689289832519, @@ -25676,29 +25676,29 @@ "value": 1697079600000 } }, - "revision": "3be963d0e839450595cce842", + "revision": "54bd518eefc6454090ebef14", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "ae2c3e95552e473eab203203", + "revision": "a2d757c0a4754f67be1bc888", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -25734,27 +25734,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5f717bdd2b3840c88ab86853", + "revision": "f792a2bb5df54720b46cde5d", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688838966144/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 62.000,00 para a carteira iVip 0255.1405.5020.5792-40", - "revision": "5f736ad84dce4ef18e5497ba", + "revision": "14d24bbc580045f886048a01", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688839141121/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688839141121, @@ -25768,16 +25768,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e25e8a09ad4f4893bb4168b8", + "revision": "ffcdaa94d1b042a2a084d5e1", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1688839141121", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -25807,29 +25807,29 @@ "history_id": 1688839141121, "description": "Compra de 100.000.000,00 IVIP por 62.000,00 BRL" }, - "revision": "b5619cce586948bf9df23c82", + "revision": "f926774dfc4b49afa81dcee6", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "a8bcb781903e48de8827de41", + "revision": "ee393deef82143ed9b6e42ae", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -25865,27 +25865,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "13b17042f5994bbaacb4df38", + "revision": "a7bad492ebf343a0827944a5", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689276795860/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 50.000.000,00 IVIP para a carteira iVip 0255.1405.5020.5792-40", - "revision": "b1ba40a5d555474fa2900b84", + "revision": "272931cbdf304385a57f91bc", "revision_nr": 1, - "created": 1701465820509, - "modified": 1701465820509 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689278842357/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689278842357, @@ -25899,16 +25899,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "2cab820325a943abb84c3ade", + "revision": "fe3c98999b004052b69b970e", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689278842357", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -25936,27 +25936,27 @@ "currency_id": "IVIP", "history_id": 1689278842357 }, - "revision": "5f314202e4db461d94b5362c", + "revision": "c33be9e5def043b99e07e452", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689278842357/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 149.517.672,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 1/13/2024", - "revision": "019f4d0d0d4c4609badf8eb4", + "revision": "6329654f0267480f80f76965", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689295244660/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689295244660, @@ -25970,16 +25970,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "ac68bfaa9997460bad1bc7f0", + "revision": "d56531f5801449cba3229641", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689295244660", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -26007,40 +26007,40 @@ "currency_id": "IVIP", "history_id": 1689295244660 }, - "revision": "2cd2310870b14f6cbf084e31", + "revision": "e5fd24d5165f498188d3c00a", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689295244660/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 450.820,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/13/2025", - "revision": "0d1be4dc131d4ec1800f4e5f", + "revision": "8bde113ab13a4b7da529ef3d", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344872, + "modified": 1701809344872 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "cefe3fba4d514668a9c51a59", + "revision": "1df0abb7022b4995bfd1eba0", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -26066,40 +26066,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "ab396f7964d94a2686059eca", + "revision": "672e17ba199b4eb79ce9f5e0", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1689350577243/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 9.396,00 para a carteira iVip 0255.1405.5020.5792-40", - "revision": "6ccd631a604d4680a967262f", + "revision": "bfe6847f67d447378df9bd1e", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "8c368eccf32f42acb0f85e9f", + "revision": "17e053b583ff43009f986cc7", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -26125,27 +26125,27 @@ "status_detail": "accredited", "currency_id": "IVIP" }, - "revision": "fa1d4c3657db41b0917b5927", + "revision": "2bc65ed2ff6b4f7587df96b3", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1690472510945/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 30.010.000,00 IVIP para a carteira iVip 0255.1405.5020.5792-40", - "revision": "f2e4813fce424fd1b1ea6d29", + "revision": "3a089c2e57e6478193bc768b", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691081114647, "net_received_amount": 0, @@ -26157,27 +26157,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "75ab809bc7674353bd87880a", + "revision": "c683307fc17e462c80abe2a5", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1691081114647", - "revision": "cdb68d210b05441d9dae5768", + "revision": "dc46cabd650b4df9816f75c0", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -26205,42 +26205,42 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "9ec74c012e0d49109bede343", + "revision": "ba8ff96283da45feb0c387bd", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1691081114647/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 6.001.475,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "4f10ef492e614e37a0521c56", + "revision": "0f63acf7cb8447abb8b20962", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 721200.99 }, - "revision": "185fb4331a07453d8881c9c5", + "revision": "6fed540f933c434b8bfda4e5", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692462419697, "net_received_amount": 0, @@ -26251,38 +26251,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "8549628621554bcfb19ce78d", + "revision": "34f409d4c4aa4c3699caeaf2", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1692462419697", - "revision": "050fae198799473fb9dcd80d", + "revision": "9c694b7569f94de1ac78e670", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "dcae4ed9a1f54a55ad1433c1", + "revision": "3e4ad48db6b64fa59b0bc006", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -26316,27 +26316,27 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "c86f84abe2c54c50997721a1", + "revision": "b863008538b54502acd67c57", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1692462419697/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 23.318.832,01 IVIP para a carteira 0x4BA972D54bb60Db93749D2cf5c4e160a3dd735c8", - "revision": "52c0b52bc37149d2b2616546", + "revision": "e0bb1ba9af6c490aab1e4ed5", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693759701053, "net_received_amount": 0, @@ -26348,27 +26348,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8c96a7576caa4b82a1d069ea", + "revision": "5363c0a1d3cf4d0d92200d5a", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1693759701053", - "revision": "02be7a8a1a0a4e75a598fa01", + "revision": "8a1eb36a2fe0474da4e6920b", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -26396,27 +26396,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "11a7af6d79e14262a6dc7670", + "revision": "911cf4e160574926a635356e", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693759701053/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 6.001.475,00 IVIP com um rendimento de +120.029,5 IVIP (2,00%) - Y12XDT27", - "revision": "112955c490f94ab7bf85eb4f", + "revision": "663279dfb1df47ba843524d3", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693861899974, "net_received_amount": 0, @@ -26428,27 +26428,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "bae351fe962d4469b29017a9", + "revision": "c4c3067e26f74c9b94259873", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1693861899974", - "revision": "6bc91507bfff4d1bb0c19943", + "revision": "cda3e5b3aeed4069b218450e", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -26482,27 +26482,27 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "30167b4179224de6b0840e8a", + "revision": "5b84e6ad1d9247a7a53acc2c", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1693861899974/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 7.836.614,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/10/2023 - Y12XDT27", - "revision": "a1d3a8b7a8fe47618e06c6eb", + "revision": "0582be6447f54cd38a44a7d2", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344873, + "modified": 1701809344873 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -26510,16 +26510,16 @@ "value": 1697203059628 } }, - "revision": "25bc41d97e14485898dbe2bf", + "revision": "28cb116c1083490681a85deb", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694611059637, "net_received_amount": 0, @@ -26531,27 +26531,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "50aba05fcb954a8eaee4c76a", + "revision": "8653d13ebf3943958cf474a5", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694611059637", - "revision": "e5fe492ce9e64cb29ca88e12", + "revision": "61ed3a35858a42809d8e6c74", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -26585,27 +26585,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "4a92d71915a24edfb4832c2e", + "revision": "f6f1886f880d43959c403dcd", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694611059637/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 24.582,00 BRL para a carteira iVip 0255.1405.5020.5792-40", - "revision": "e5eb73f782a543f0bc402909", + "revision": "a35ccd9217574390b023e94b", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694612208335/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694612208335, "net_received_amount": 0, @@ -26617,27 +26617,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d347184cf8494664b78ae070", + "revision": "3a1795b55bf44657852374a9", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694612208335/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694612208335", - "revision": "0506d4690c63442b99547863", + "revision": "eb1e46bc1ff04c23bfe4aca6", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694612208335", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -26666,16 +26666,16 @@ "description": "Compra de 39.021.269,00 IVIP por 24.582,00 BRL", "status_detail": "accredited" }, - "revision": "56a08b9d090747ebaa4328c6", + "revision": "8bf7ce9e454e4aa9a0857abb", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -26683,16 +26683,16 @@ "value": 1697212107989 } }, - "revision": "c2d425ead4534d6cb4d45285", + "revision": "72d4ed8203734cdfbcd968a2", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694620107990, "net_received_amount": 0, @@ -26704,27 +26704,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "dd4be7d1d4624a339c019c10", + "revision": "b201bfadde5f4e009eb30316", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694620107990", - "revision": "b2ea2c7970b24a7abb9cc8d7", + "revision": "27f1517a8879402ebc613eeb", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -26758,27 +26758,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "43da2be98f3641fa89249072", + "revision": "3273bc476b8d4791bb60bc96", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694620107990/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 168,00 BRL para a carteira iVip 0255.1405.5020.5792-40", - "revision": "8bb3967fc6ed49199e3f3da5", + "revision": "be13cfb28ff540a29cc7d547", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694641684988/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694641684988, "net_received_amount": 0, @@ -26790,27 +26790,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "896f6cc00be547cabc6349fe", + "revision": "d87ddea7063c447caf9150aa", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694641684988/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694641684988", - "revision": "3232918ce84c4e708a8c9e7e", + "revision": "1563e51e3793403ebbebf949", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694641684988", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -26839,31 +26839,31 @@ "description": "Compra de 258.446,00 IVIP por 168,00 BRL", "status_detail": "accredited" }, - "revision": "e35b74eb1cc2427298d46df2", + "revision": "5576974d418541fa96453a03", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 750000 }, - "revision": "39164e0e841f406b9c0053b1", + "revision": "98b3d65adb0742eb8d84101a", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694692198880, "net_received_amount": 0, @@ -26874,38 +26874,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "30971c4e7d144cb3bd252043", + "revision": "d5aba13b870e4521a16efc83", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694692198880", - "revision": "16c8cc2b59fc460aab6ef9d2", + "revision": "b5d1b565428b4ed2bc6a05f5", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "6f33c62893e84084b82f9651", + "revision": "2b9356d5e067471c852cf18e", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -26943,27 +26943,27 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "252ebb292f894bc79ed2535b", + "revision": "7575859a7b6b4a3480132eba", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1694692198880/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 24.250.000,00 IVIP para a carteira 0xd3CF5Ea2Dcfb3c96d31AE10BA19cc4c7218b45b1", - "revision": "73e4e136256444e195a23374", + "revision": "1b5d4a17cf92412fbbb172c6", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696451540047, "net_received_amount": 0, @@ -26975,27 +26975,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "880a001033784e20a9f8ccc1", + "revision": "a8770e3e91b241549186d472", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1696451540047", - "revision": "0d8de547912b4006b6a2f804", + "revision": "f2afa24b23f64f83bd39cc31", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -27024,49 +27024,49 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "312a627affb14d509404e23a", + "revision": "35fbd0c98b4d4be296d59db8", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history/1696451540047/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "e70beac989b646f5bb157674", + "revision": "9c09e2f10c48434393a5226d", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "748fb6d4008b435dbcbc8c00", + "revision": "0047cc26788146ed9cecb839", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344874, + "modified": 1701809344874 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "fadf55f51f0d46e2b4874ca8", + "revision": "12275a3168c64543978fa34c", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0, @@ -27075,42 +27075,42 @@ "value": 1695054577899 } }, - "revision": "a56e1a0bea63439aa65b6043", + "revision": "654dc902b7bf48088f3503c6", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "36441252.50000000", "symbol": "IVIP", "value": 4538.39 }, - "revision": "be8488d728c04f319ccc1fff", + "revision": "0606965c5f764bdebab21d4d", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "136089cc22c04632978a8aac", + "revision": "6979cbdab08941acb711f7cc", "revision_nr": 1, - "created": 1701465820510, - "modified": 1701465820510 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/025514055020579240", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1688773726146, "dateValidity": 1688773726146, @@ -27121,55 +27121,55 @@ "value": 1696993200000 } }, - "revision": "19ca6739777d47f8a7f9f61c", + "revision": "2c9687a5e0354ab8aed972d2", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "8958033.00000000", "symbol": "IVIP", "value": 9273.73 }, - "revision": "ed2a59d167d04b1ba2bf6910", + "revision": "22c4bcc4076745f9a0c2bbed", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "da0b313c0bd943cab05f0a25", + "revision": "3eedbce6a2784f05aee21466", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "5868e9625c534dd7b458be8a", + "revision": "84e75ae360fd492da4dab7dc", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -27205,40 +27205,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "46e8f8031fdc4979800bcd42", + "revision": "52e6bc4dabe74409876872b7", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681332472707/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "80d74e64504240b9b440c3c3", + "revision": "817d3c870d8a48eb9d4a3b55", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "009280c529f540a29f70f2c4", + "revision": "6cceab089f2e4669a32ac2a4", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -27274,40 +27274,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b70ae5f9ebca4380b8a3c610", + "revision": "ef3583d031b64ce58a7cf5f8", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1681334377618/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 350,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "6d3ada24751b42e48db3b5d1", + "revision": "6716b3be2c9142278a259458", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "e0fda7c79b1140cba2435191", + "revision": "6dd4f7d6dba1487c80b97cb1", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -27343,40 +27343,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9f1e06f6f1874b3e9cf0a516", + "revision": "48f8e82ea62f44a68a0ff977", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682092492202/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "d00d4196b0f14f77b45a1f6d", + "revision": "ab2096e742c54889b74eb2fd", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "3eb1e05dc73f4655a007bd8a", + "revision": "4504c1728e084d21b4a03b2d", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -27402,64 +27402,64 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "210152ab689c40978b07d259", + "revision": "6aa601105a2444beb3d6a225", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682353441521/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "90455a8f0efb41f8896647d4", + "revision": "cba145272485462d9fdf38f0", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 20 }, - "revision": "ac74ae3385624b4f9220b415", + "revision": "a448dc716b6447aca54bf80e", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a360bf5a48c24a689d3ef2b0", + "revision": "5304c96f3b254b858074d23c", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "7591785278194a80b6bc1237", + "revision": "e191beff86814b22829b7fa4", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -27486,27 +27486,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "567c547add7f4c868174e996", + "revision": "5eea1e4c683c469d97c2c86c", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1682354342344/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0266.8515.5320.8373-72 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.020,00", - "revision": "90e09ed6cf094d149957e89b", + "revision": "2792aa9316f8488cab27a2a0", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1684018921033/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684018921033, @@ -27520,16 +27520,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "8723229c3ca6431c89b45948", + "revision": "293663f51b7144b081e8e249", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1684018921033", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -27559,29 +27559,29 @@ "history_id": 1684018921033, "description": "Compra de 8.647.027,00 IVIP por 1.600,00 BRL" }, - "revision": "7b396ef213eb487e8ba77475", + "revision": "01d8f70c3fc24b1a85a44dfa", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "17e2240c801f47269e595867", + "revision": "af4b8599b9204994ad4ca858", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -27617,40 +27617,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "340e91824f27418bbd754d1d", + "revision": "cb412fdf1bf04d7ca715a9ec", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689084265995/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "a895e35059c04f519e9a5f9e", + "revision": "a63a411501644195b29dec39", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344875, + "modified": 1701809344875 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "3207d31205414306984e59f9", + "revision": "a363cf8bbc4b4c0e975e020a", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -27676,27 +27676,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "0732919d556c4a89a7084ce4", + "revision": "cd3a398293f4405bbe890c49", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689095021542/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 401,02 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "1afd5c93590e433c94e0841d", + "revision": "2ed2963dd59f49fe989f13df", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689275206669/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689275206669, @@ -27710,16 +27710,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b53a2cd0e1954521a52dd395", + "revision": "8149d4bc88f440c9a9e575ef", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1689275206669", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -27749,16 +27749,16 @@ "history_id": 1689275206669, "description": "Compra de 168.630,00 IVIP por 400,00 BRL" }, - "revision": "37235a2d7eaf4991bcf92473", + "revision": "85f82f7dce3742e5a5409d5f", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -27766,16 +27766,16 @@ "value": 1693192070124 } }, - "revision": "98d55a0a66d04f978023dfc7", + "revision": "e978c27e3a8845089118ef27", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690600070124, "net_received_amount": 0, @@ -27787,27 +27787,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f519ef1dcb9a47dbb22f6120", + "revision": "5834c9182b72450e97591697", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690600070124", - "revision": "08ef6688c9b64a0d8d215dca", + "revision": "12cfcf4775334bb6b65819db", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -27841,27 +27841,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c75ae0bbe653414ea720d7cf", + "revision": "9a5766b05c934f5c8284477a", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690600070124/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 30,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "113ec590019f49988719ab3c", + "revision": "b382eb3752f74b68bccc389b", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690822928470/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690822928470, "net_received_amount": 0, @@ -27873,27 +27873,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f6e8111c67644280ba5aad9e", + "revision": "d47e9935f8464102a43f4b20", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690822928470/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690822928470", - "revision": "fdadc746d0bb469e94671281", + "revision": "913611a72b2c4e9cb0c223cd", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690822928470", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -27922,16 +27922,16 @@ "description": "Compra de 26.363,00 IVIP por 30,00 BRL", "status_detail": "accredited" }, - "revision": "cd2397db1ea345f0b198a1f6", + "revision": "677f7d194dc045809ae028cb", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -27939,16 +27939,16 @@ "value": 1693501456427 } }, - "revision": "5ecaaca0a3624c10b332b4ce", + "revision": "f2703a5fd83742249e1b5b8f", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690909456427, "net_received_amount": 0, @@ -27960,27 +27960,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c3ed847d744843efaa6105b2", + "revision": "4bc8ef1e87284048af1a7294", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690909456427", - "revision": "dc2f6aa4847b4654b2614c79", + "revision": "738fcac756094c4ab1ce4a7e", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -28014,27 +28014,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ff00d11bc5f54988a1b497ad", + "revision": "062b68e6fe444697a5b7dfda", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690909456427/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 100,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "2faec6af57664dd39b66ea76", + "revision": "65a426b86e76484ea7b0e4d6", "revision_nr": 1, - "created": 1701465820511, - "modified": 1701465820511 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690977815869/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690977815869, "net_received_amount": 0, @@ -28046,27 +28046,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1ed5607240d243abb08fda06", + "revision": "f99d655c6b514b30aaffaa61", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690977815869/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690977815869", - "revision": "284dd9d445f24ae784ab2106", + "revision": "9bdfd9cf51e944179dc2d400", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history/1690977815869", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -28095,42 +28095,42 @@ "description": "Compra de 116.013,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "6046e8f52707438a8da11afa", + "revision": "463facb1279e42f4a1f31225", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ed6101564b664c9fa96219ee", + "revision": "2047bbce9d00491cb500b887", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 20 }, - "revision": "3d20f1ad18a54b0485851e58", + "revision": "f141b33a1aa24db89b037e79", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1682354342344, "type": "emprestimo", @@ -28145,60 +28145,60 @@ "history_id": 1682354342344, "currency_id": "BRL" }, - "revision": "b34fef00f2034c2393089435", + "revision": "86b9102eefc44b139742bcf1", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0266.8515.5320.8373-72 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.020,00", - "revision": "29273593ceb542ae9fbcef70", + "revision": "3c843ca0a56e42c188d5e715", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305/1682354342344/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "9405adb52331442d86fa023a", + "revision": "70f8ebd7e39546ce8c86305b", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices/202305", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9014737fe2eb467d9e9f9af6", + "revision": "440596dba5004a24820c6cd5", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "76c220fba8d0405d9a53b53f", + "revision": "46abcd41af004b39b14c0654", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 1000, "limitUsed": 1000, @@ -28211,16 +28211,16 @@ "value": 1682092464302 } }, - "revision": "77dbc73063f8408f86dd9947", + "revision": "4085f6d592094741bcd5e86b", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344876, + "modified": 1701809344876 } }, { "path": "ivipcoin-db::__movement_wallet__/026685155320837372", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1681239500343, "dateValidity": 1681239500343, @@ -28231,108 +28231,108 @@ "value": 1696215600000 } }, - "revision": "2ead9d5b096649d39c7da4ee", + "revision": "bc2647aca6e4410c9501df6f", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027193309143186410/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7200c71c0c5147d1a9278b73", + "revision": "f1bd5a3818ce4643ae2cd9c8", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027193309143186410/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5a13328dacf34bf1a4628a5c", + "revision": "86be9bf333334f9eb0a7ad94", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027193309143186410", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678237675259, "dateValidity": 1678252075296, "totalValue": 0, "currencyType": "USD" }, - "revision": "ed38aabf4bdc43c6a3cd697a", + "revision": "194e1d75b4964020bd6ba07d", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, - "revision": "11002c1e5f9e4c2e8a0db93a", + "revision": "3755f70b25474edfa0c4398a", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "7306097.00000000", "symbol": "IVIP", "value": 2344.22 }, - "revision": "537e8adddd624e3b9f060733", + "revision": "0bd94b79d2dc435fb0b103a9", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5124531669904fd5b4eaad11", + "revision": "135826ab7c21491cabd021bd", "revision_nr": 1, - "created": 1701465820512, - "modified": 1701465820512 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "01e9a0386ba2483ab08a63d4", + "revision": "6b3ce8cc506245a0a78a683e", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -28368,40 +28368,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c5f550fd59764a5482985d93", + "revision": "960be1413e5c466dbb8e5058", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684115687035/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0275.3660.7098.8736-24", - "revision": "dd23572baa714b06a0665f64", + "revision": "0dea4ffea08a48a7a3b7d9c2", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "c549dd56ce294c378acd3ddd", + "revision": "b0701c91cec04b56a7a451ff", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -28437,27 +28437,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "03f93bd71ccb411cbde03d6a", + "revision": "7b2f19dec4794411b4ab45b7", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684116712162/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0275.3660.7098.8736-24", - "revision": "976a32a0732c470bb908a39e", + "revision": "c45102c4c71d4499a3014be7", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684625508072/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684625508072, @@ -28471,16 +28471,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "318bf4056b58442aaba23b52", + "revision": "75d2d4eacbff480f84ee7d27", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1684625508072", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -28510,29 +28510,29 @@ "history_id": 1684625508072, "description": "Compra de 7.306.097,00 IVIP por 1.500,00 BRL" }, - "revision": "8505b51f81c24c119426d653", + "revision": "ce5bf36b76e0475dae11e919", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "c246bcc86ad74e638688a7ae", + "revision": "6bd2f9f8b0b847678315a2a1", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -28558,40 +28558,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "e2d8ea4bc12d44c0b9303a2a", + "revision": "2528a0fa697c4b8eb0e6e5e9", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398096730/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 7.306.097,00 IVIP para a carteira 0x5127C3d0B17433E2f03F2bdC96157ca9B00eeD8e", - "revision": "58d80f5366f74716a68a51e2", + "revision": "b7f6a3cbdb3a4269b7df69ed", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "b1df6956f022414690556e87", + "revision": "00a2056d13b648c0b9e64335", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -28617,63 +28617,63 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "f5102a19a3bc425096bad450", + "revision": "351c266217dc48449ee04ab5", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history/1685398151765/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 7.306.097,00 IVIP para a carteira 0x5127C3d0B17433E2f03F2bdC96157ca9B00eeD8e", - "revision": "5b2560b8c441488989b1cb8b", + "revision": "c1517fc9b5ab4e46a4ee70b1", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "24c71073d4044d83b42d2944", + "revision": "78bc7c3484eb4007bfe7fcf8", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3be42a89dcca48959bd89005", + "revision": "5cea17f719434c2eba9b88eb", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "35131b97bcf248d0962a0ce2", + "revision": "d4845940121a4801893c9872", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/027536607098873624", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684115568267, "dateValidity": 1684115568267, @@ -28681,128 +28681,128 @@ "currencyType": "USD", "balancesModificacao": 1689822000000 }, - "revision": "9c42d1d643204791916ed708", + "revision": "a16d1f86fb3445719feef217", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/028175815433013172/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7fd707da4a7f444e99d1412c", + "revision": "0d4898696cab40c683a5de20", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/028175815433013172/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "bca0e65decb0470a875bd7b2", + "revision": "335bd83cf1ee4676b31c5195", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/028175815433013172", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678161645477, "dateValidity": 1678176045916, "totalValue": 0, "currencyType": "USD" }, - "revision": "e796c3669daf4552bfe39c36", + "revision": "2a1db5b9521c49ff95bcc023", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/028947617959504292/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "67d0a1e4bee546c6b5f62b6a", + "revision": "be6f19a08a634ecebfcbc3c3", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/028947617959504292/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ca6bc165ef804cca8688c31a", + "revision": "c5035d9ea3ee476b969c237a", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/028947617959504292", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678243619498, "dateValidity": 1678254419535, "totalValue": 0, "currencyType": "USD" }, - "revision": "da3ace6bce5e4ccbab76a132", + "revision": "bd44ec2374bb413196cfa456", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "07730066bf644567b82cf814", + "revision": "6896d93966be4f0d94ea24c5", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8b36e5d819974893b16a935e", + "revision": "9363ea2ddd654fbe9cf91e84", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "fb0fb403305d4fa2a6bf6471", + "revision": "f1f670f360ff40ff85ac3049", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344877, + "modified": 1701809344877 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -28810,16 +28810,16 @@ "value": 1693005005269 } }, - "revision": "dcccc20a209e428f825480d3", + "revision": "1721a0d2ca004a1bbabe7379", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690413005269, "net_received_amount": 0, @@ -28831,27 +28831,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8b127bb00447465bbc736322", + "revision": "e0cdcc9e3e95440c8908aa4f", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1690413005269", - "revision": "f979b174854c40d88bc38cb3", + "revision": "856e1f726f28478399c70395", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -28875,27 +28875,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "4ff93f26bbd84c61a1072981", + "revision": "896e08f6739445cfa2d369ca", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1690413005269/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0292.8722.8206.6813-90", - "revision": "7fe20fd2a9ef460989b7d533", + "revision": "b85a89064a0f46dc94ee077f", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -28903,16 +28903,16 @@ "value": 1693613470147 } }, - "revision": "e14ffcc5554040278635ce41", + "revision": "5408369543424518b9f3d12a", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691021470147, "net_received_amount": 0, @@ -28924,27 +28924,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "94aefe450dae4bbbb706cf3d", + "revision": "1aa4084eb9f24b7bb0b0b1f6", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691021470147", - "revision": "335715e432f24448b92c7339", + "revision": "84ed47be16e041f1876ce37b", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -28968,27 +28968,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "1bcf92c6c72341cda944c982", + "revision": "02a3f3fff01b4aad91e32908", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691021470147/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 20,00 para a carteira iVip 0292.8722.8206.6813-90", - "revision": "bda525e6a3124f4396137dc5", + "revision": "0796e7dfa1b74eceb16fa906", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -28996,16 +28996,16 @@ "value": 1694007318336 } }, - "revision": "4360362eb4ca4b77ae166041", + "revision": "b28d624a18914e02ae3a91a1", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691415318336, "net_received_amount": 0, @@ -29017,27 +29017,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a390b2dc846141f589810f45", + "revision": "78230806f28d40ccbc8e13e5", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691415318336", - "revision": "bd8cc324d5cd48daa1c1e9a8", + "revision": "c52542e9caa145549e0b44da", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -29071,27 +29071,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d834da02b69540ae9ff7d40f", + "revision": "e22f7c883b44413e8ad56fa7", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415318336/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 30,00 para a carteira iVip 0292.8722.8206.6813-90", - "revision": "5b2a748d68ab4a579175e6be", + "revision": "69de33b82bf74e75a4c0f16f", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415588273/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691415588273, "net_received_amount": 0, @@ -29103,27 +29103,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "47277df820e64727b01c8aac", + "revision": "2203e766f106439fbc5d1fcf", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415588273/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691415588273", - "revision": "ab0ddfcf5d8a4ff590b36348", + "revision": "f7e02f73f99048019b48d728", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1691415588273", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -29152,31 +29152,31 @@ "description": "Compra de 41.845,00 IVIP por 30,00 BRL", "status_detail": "accredited" }, - "revision": "23696e4126934a75889ea6cf", + "revision": "441076a73e494889bcb056b9", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344878, + "modified": 1701809344878 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 1255.35 }, - "revision": "ada83b03123c4b4aa66a61d0", + "revision": "63fc9dfb647a4066bf58e26d", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696141267349, "net_received_amount": 0, @@ -29187,38 +29187,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "ac00684a386c40559f502547", + "revision": "f12635597f284b34a3b24dd2", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1696141267349", - "revision": "1e4b1c6243b643b897abbe9d", + "revision": "4e78d679200f44a69a5dde48", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "923a3d347c68421ab3868d36", + "revision": "8e01bcbd910d403aaeb74e74", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -29257,42 +29257,42 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "8559c74ccebd412b9a5a08f8", + "revision": "709ead5958d341eeac76a7f7", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696141267349/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 40.589,65 IVIP para a carteira 0x8A01aF53Ea3A83B5f89C029a625Bc2B840aa0B17", - "revision": "a59b0b5f81ed482db70f5ae3", + "revision": "cd729b48d1a64f25b7ba36ec", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 1255.35 }, - "revision": "1c222e2390a34045acb2aa24", + "revision": "663ac7ddae63438982265939", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696142296852, "net_received_amount": 0, @@ -29303,38 +29303,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "9b0b8ecc82434f77a9fd2f9a", + "revision": "bcfd2e7690a84aaa88fec590", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1696142296852", - "revision": "5c0e6ff45c8d4a40a2d45b3a", + "revision": "09040f801c574041a163acf1", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "384a70fb3a734267a941c7a1", + "revision": "86cdf7d0cb4a4bb5927927f6", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -29369,38 +29369,38 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "29a680e50c5d4b348ccf0dfa", + "revision": "440138299879455d97d3f130", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history/1696142296852/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 40.589,65 IVIP para a carteira 0x8A01aF53Ea3A83B5f89C029a625Bc2B840aa0B17", - "revision": "9f6c29406a06485b8d6a1ec6", + "revision": "4692a2e99188457aba8749b6", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "fb11abad15e14773ba64db34", + "revision": "38d57527c4ff429c9912f1ac", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/029287228206681390", "content": { - "type": "OBJECT", + "type": 1, "value": { "dateValidity": 1690386695913, "balancesModificacao": { @@ -29408,168 +29408,168 @@ "value": 1697252400000 } }, - "revision": "8defa83424c44630a287a516", + "revision": "d63b17ae5092498eafd44208", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/029673451892467508/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "51bfc421e1f24907a465aaba", + "revision": "81ca4daea6cf4250b6de7edd", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/029673451892467508/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "21b0e5cb610e466f8b06fd0e", + "revision": "8e9ae76ce3614657b02e4b76", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/029673451892467508", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678135581348, "dateValidity": 1678166670994, "totalValue": 0, "currencyType": "USD" }, - "revision": "58b1696f11804386a2de2b21", + "revision": "e1de34583a4d41c3981d540d", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/030266248194021460/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e3fa9211f76e4fcdae3d8f1a", + "revision": "365418b8408f4c57a4637de3", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/030266248194021460/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "60859edc2359471da3aa8dd3", + "revision": "d272baeaa7b3443ebfa0bf83", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/030266248194021460", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684104956115, "dateValidity": 1684104956115, "totalValue": 0, "currencyType": "USD" }, - "revision": "c7147bc1345b4466b2067d09", + "revision": "59957d3ac88e4291ab78b152", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/031498453118469660/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4ecde0c633ea44a9a1603c0e", + "revision": "c402336a84584bdb9a47cec8", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/031498453118469660/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "2bac6977853d40b3be6be0ee", + "revision": "32ec540280024a28b23f8115", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/031498453118469660", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1696478671880, "dateValidity": 1696478671929, "currencyType": "USD" }, - "revision": "f60bddb6a4e84b5399200101", + "revision": "c5ed4c81bced48c6adb52883", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "5000843.00000000", "symbol": "IVIP", "value": 622.94 }, - "revision": "d199ae8e281d44998c578fc3", + "revision": "b9acb7c6fbf1425cb9aa10ce", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "83d7a67a6fe045d2a4fd690a", + "revision": "29d7d76d6b0d4f849b389b9f", "revision_nr": 1, - "created": 1701465820513, - "modified": 1701465820513 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "7ba00fe2cac440a9a9bb802e", + "revision": "a8a7fb791c3541339cd044d7", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -29605,27 +29605,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b51e5760eff24503a22a92ba", + "revision": "414a5cef294843468856b4cd", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1688955478238/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0329.8017.0462.5356-52", - "revision": "bc9bceebdeb646e4afe2ee2e", + "revision": "b70c13b076c043059767bf62", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1689002980878/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689002980878, @@ -29639,16 +29639,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b88873e8c7f74f6e80dd82f7", + "revision": "4d543db1328640d09c98e710", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1689002980878", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -29678,16 +29678,16 @@ "history_id": 1689002980878, "description": "Compra de 145.670,00 IVIP por 100,00 BRL" }, - "revision": "d8746eece24549c9b8ee2807", + "revision": "9af4c31208f04b2dac99cb78", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344879, + "modified": 1701809344879 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -29695,16 +29695,16 @@ "value": 1693784217742 } }, - "revision": "a899df4b8afb4ef2a49eaafa", + "revision": "871798223c4f4df09eedbde1", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691192217742, "net_received_amount": 0, @@ -29716,27 +29716,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "061083373d6a403890b26a53", + "revision": "29186e84338e47c9b7da3029", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691192217742", - "revision": "dcea375299814f86ad1713ba", + "revision": "8aed9a8865954e18a7cefd7e", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -29770,27 +29770,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "283b4aa2e25a4f60a276007e", + "revision": "58702e9748e24cecb1b252b3", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691192217742/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 356,00 para a carteira iVip 0329.8017.0462.5356-52", - "revision": "5eb67993ac6249fbaa953c6c", + "revision": "6c5ea4a34f3c4a6689fff42d", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691277371847/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691277371847, "net_received_amount": 0, @@ -29802,27 +29802,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "290fd59236a846fc96cd26df", + "revision": "ae243259b56d4cabb2bb989b", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691277371847/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691277371847", - "revision": "6ace964263254b38b0481a88", + "revision": "79575f12e8c842a285c067e1", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691277371847", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -29851,16 +29851,16 @@ "description": "Compra de 505.200,00 IVIP por 356,00 BRL", "status_detail": "accredited" }, - "revision": "a2051be706624f7eb9ce5178", + "revision": "d5e3f82068994f4894d2134e", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -29868,16 +29868,16 @@ "value": 1694307306900 } }, - "revision": "a1db79e83c884274b92d1b52", + "revision": "59c97937603c4256b9e4b904", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691715306900, "net_received_amount": 0, @@ -29889,27 +29889,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b18367a60ebc4bea87f48411", + "revision": "4edb84d2ff3a43188fa5a955", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691715306900", - "revision": "bbccaa085bad454eacf13607", + "revision": "6614040e226d4c75ac62cef4", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -29943,27 +29943,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "576b7ffdc611408997ef38c1", + "revision": "e71646cb91a149dc8cc2d5ff", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691715306900/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 1.800,00 para a carteira iVip 0329.8017.0462.5356-52", - "revision": "d248f4926b2a45b4a9cb2cb4", + "revision": "334e1d080fa5461aa5cacd2a", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691847078457/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691847078457, "net_received_amount": 0, @@ -29975,27 +29975,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "eace4507b5494014bc0e53ee", + "revision": "07f7d950b8334a3fa4d03f5a", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691847078457/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691847078457", - "revision": "6e58939817164574b08b3ec8", + "revision": "9d8e2c9c84514fd79a6df6c5", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1691847078457", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -30024,16 +30024,16 @@ "description": "Compra de 3.402.797,00 IVIP por 1.800,00 BRL", "status_detail": "accredited" }, - "revision": "ebbc6573e6a64383b95bda26", + "revision": "57e5fdef104f4118995c5199", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -30041,16 +30041,16 @@ "value": 1698279005865 } }, - "revision": "bf775f9ed82a472780538bd2", + "revision": "b7ba07b79f9245b180d5993b", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695687005865, "net_received_amount": 0, @@ -30062,27 +30062,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "86c159a5af8f45808540e51c", + "revision": "b6f9eff15a694d199aa48170", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1695687005865", - "revision": "6a9330fcf4c649d5832bb2cb", + "revision": "cb61fb9ac7284eb2bdbfe7b2", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -30117,27 +30117,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5b42f5ea64214193aa57d79a", + "revision": "14009a2d81664963a9ce2c38", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695687005865/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 647.176,00 IVIP para a carteira iVip 0329.8017.0462.5356-52", - "revision": "0c2a2bcb93af4aea915fd96f", + "revision": "53dfd71d931e4ef9980890b1", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -30145,16 +30145,16 @@ "value": 1698443432960 } }, - "revision": "ba84511e0d8143cd9f6b95ae", + "revision": "31bc7e340e404e24a113d59e", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695851432961, "net_received_amount": 0, @@ -30166,27 +30166,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4da4ccd8806a463e9389a965", + "revision": "657544d154bd4fccbc8d1676", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1695851432961", - "revision": "c4716120f8ac448abbde02f7", + "revision": "d228d987bd8649f5bb169259", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -30221,63 +30221,63 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "35c9817a8fa341918b121e57", + "revision": "a0e66543a2754c1a9eb4e07a", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history/1695851432961/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 300.000,00 IVIP para a carteira iVip 0329.8017.0462.5356-52", - "revision": "7d53d07a6fce49009c2614e7", + "revision": "e77d95e8237e404896c357f2", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6c289668b5874496a79b26f1", + "revision": "7a06727943dd416bb81aea52", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b22be202f06a448db787e4f0", + "revision": "61715115b0ec47938fac4bdf", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "c71a918e2dd44185be516d8e", + "revision": "6d8b0f45c0e54959b65ea0f3", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/032980170462535652", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1688955354063, "dateValidity": 1688955354063, @@ -30288,70 +30288,70 @@ "value": 1696906800000 } }, - "revision": "dcc640ec0fe348449658f971", + "revision": "0cfd0515885649f2a18667e0", "revision_nr": 1, - "created": 1701465820514, - "modified": 1701465820514 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "62.42718182", "symbol": "BRL", "value": 12.2 }, - "revision": "79c80dd1fdc1482abe89aca2", + "revision": "a8e4bc3c7c17479a833eaf3f", "revision_nr": 1, - "created": 1701465820515, - "modified": 1701465820515 + "created": 1701809344880, + "modified": 1701809344880 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "302069023.00000000", "symbol": "IVIP", "value": 32205.5 }, - "revision": "8d5169a938b04ab28247d131", + "revision": "19d0d82cda854fba982eb1d8", "revision_nr": 1, - "created": 1701465820515, - "modified": 1701465820515 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "07c5376b29bc49a3af34426e", + "revision": "856666c7f3b74cc085d0168b", "revision_nr": 1, - "created": 1701465820515, - "modified": 1701465820515 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "d2a7343601834580ba7d5754", + "revision": "296b4aab40cb484e966ab5d4", "revision_nr": 1, - "created": 1701465820515, - "modified": 1701465820515 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -30387,40 +30387,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "8cd49809cfcc41bdb8c3c13e", + "revision": "db354768690a40fa9a62a618", "revision_nr": 1, - "created": 1701465820515, - "modified": 1701465820515 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785461525/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 5.510,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "a2bafcb8b11d471ba45442fd", + "revision": "3faab98695be42df9aed6014", "revision_nr": 1, - "created": 1701465820515, - "modified": 1701465820515 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "732c6299e7364a96adc0a9c8", + "revision": "f6d7a29ce161408eb17a8bbc", "revision_nr": 1, - "created": 1701465820515, - "modified": 1701465820515 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -30456,40 +30456,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "dee392ddb521408fa96071d6", + "revision": "837462040e7b497c8f3fa010", "revision_nr": 1, - "created": 1701465820515, - "modified": 1701465820515 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785378675/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 6.500,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "2742d82aaf43454fae5c4734", + "revision": "578a02696908481b9fd8e40a", "revision_nr": 1, - "created": 1701465820515, - "modified": 1701465820515 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "5cbdab2fc8a9436dbb2d7709", + "revision": "f5e61f8ed5044c1fa3d65b26", "revision_nr": 1, - "created": 1701465820515, - "modified": 1701465820515 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -30525,40 +30525,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "017bee5a23c24e8a80c96984", + "revision": "eac62f6ab2854588b833adbb", "revision_nr": 1, - "created": 1701465820515, - "modified": 1701465820515 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677785194938/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 7.700,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "90c20095d7c443e793bcf219", + "revision": "a44d03cd61784419b72875c8", "revision_nr": 1, - "created": 1701465820515, - "modified": 1701465820515 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "1dd00dbf7a7d4408bfa1af0d", + "revision": "a2a033ac960d4274b4cba8b5", "revision_nr": 1, - "created": 1701465820515, - "modified": 1701465820515 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -30594,40 +30594,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "94cc4366cd69475388f5f150", + "revision": "ae94f07222ec485385a31554", "revision_nr": 1, - "created": 1701465820515, - "modified": 1701465820515 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748547608/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 9.900,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "4b8c4d6173cd45bcbdf4106a", + "revision": "07ab6c75690c491b91ccccc4", "revision_nr": 1, - "created": 1701465820515, - "modified": 1701465820515 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "2312e535b5a942b995adffb6", + "revision": "45969cf7bdfa449bafb19c4e", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -30663,40 +30663,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3e8116d317d64cbf921eabcd", + "revision": "a7a6778f9e0844b591560391", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677748489604/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "4ed0f9e37b054918acd2a308", + "revision": "8137972334cc4721b4b6cae2", "revision_nr": 1, - "created": 1701465820515, - "modified": 1701465820515 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "87a3244c8b994c7196e1c0c0", + "revision": "8ce53c67e54143aa866e51ae", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -30732,27 +30732,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ef3c6d72ce0b47ce94d3e395", + "revision": "51a7e40dfd0a48b0bfebd39e", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678472649293/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 12.000,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "683f4f83a812470c8860094a", + "revision": "8e2af5c6f986467484b8e3d4", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153842542/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678153842542, @@ -30766,16 +30766,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "098f4035d0d54052acaa9217", + "revision": "f38242affae44ce287028566", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153842542", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -30805,16 +30805,16 @@ "history_id": 1678153842542, "description": "Compra de 71460340 IVIP por 10000 BRL" }, - "revision": "9fe4b31bcb644594ba1d0b22", + "revision": "7b71f9a826834709977354cc", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153902578/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678153902578, @@ -30828,16 +30828,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b4c6725922a041b4b2c759cc", + "revision": "a0db6c99801f492e8e937d22", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1678153902578", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -30867,66 +30867,66 @@ "history_id": 1678153902578, "description": "Compra de 71460340 IVIP por 10000 BRL" }, - "revision": "808465a3d5094059af4c614b", + "revision": "b6a5a31649194b99954a3db8", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 19.8 }, - "revision": "0bd1ce906d7a4abfac48b95a", + "revision": "b0ed3c5c9cba4bc1973d6ff3", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "43820766e8fc405894513543", + "revision": "127b10043c394edebfd4dc41", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "14d1d316acb94195a6385c5e", + "revision": "7cb4ec6816ed40b5800f7a96", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ca71039d8e0f42deb99dac25", + "revision": "5f0d45a99ca94745b70c2bdd", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -30934,60 +30934,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "3cd8872e60df47e7a76af5a8", + "revision": "b9e043f00ba045b5b41a6bdb", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dXYrlNhAGUO1A+9+lduAQCBlb9UnugUAS6/hhmO7rto/uW1F/7fofXaPR0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v7z2jZf/c/f9b8/6Pm+v373+PTPB98+fb6x/brlrx/73x/0zKClpaWlpaWlpaWlpT1E2++PvT/kF6o9n/6Qladfz+M+8OV7GPcvKKtoaWlpaWlpaWlpaWkP0E4BZPm0l2P8+nGKBKc/u8eYV7hlEbjS0tLS0tLS0tLS0tLSXiVNN9oiKdhLdu8eQI6S7CtGWlpaWlpaWlpaWlpa2hDNpfivZO1S0eQj5Fz+kwo4aWlpaWlpaWlpaWlpj9UmfMnk1chy2TVXGuF2mbxN8SctLS0tLS0tLS0tLe0R2lba2v6Vf9qqu46WlpaWlpaWlpaWlvbb2nxNYyDH/PeLGSa13y1Hm6MkD7cWWlpaWlpaWlpaWlrab2tTC9v0pLHtfKtVl2VySTrulNgbq2QfLS0tLS0tLS0tLS3tt7VT+9u9Z21KANa9a2lw5P2h+3rOZTw55rJNWlpaWlpaWlpaWlraL2una3pFPtD1nEOSTpWm/1/PBODIn77EvLS0tLS0tLS0tLS0tN/TjpJ+S6uwU4ZuemOBLq5pl/b+aLS0tLS0tLS0tLS0tF/XpldsSiqn371WTpaodNqbndrkxm6mCi0tLS0tLS0tLS0t7de09xCxlfkiOcas8d9UL5mb49rmHblrjpaWlpaWlpaWlpaW9gBtCd/aCrCINpdFkymyXJ6lfHOdlpaWlpaWlpaWlpb2JO2Uq/vpaMi7dpRRk6X+spcItOzIbj/JRdLS0tLS0tLS0tLS0n5W2zZJvNwNV2PC+//qCoA0LjLHmLS0tLS0tLS0tLS0tEdpy3jHviqGHOXdZb1aiglb0Kap/qOlglBaWlpaWlpaWlpaWtova6d7U05vSZkiwU0UeZUD5RGS/aXqkpaWlpaWlpaWlpaW9nva0v6WEntXHiGZai03C9RqKPm2ho2WlpaWlpaWlpaWlvYcbc/LrsuTrpziy5NGaqBZTt/L9P+XqktaWlpaWlpaWlpaWtqvaROl9MUtE3ujRKDpAUlR8GlYCi0tLS0tLS0tLS0t7QHagppCv0cRZh4IWfdXp1O93XKVp9DS0tLS0tLS0tLS0p6jDRm1lpNuNSW31KaCy1J1uSv+pKWlpaWlpaWlpaWlPUJb/qrnOftTyLlcXZ3mlZTxk/WhZZsALS0tLS0tLS0tLS3tUdo8lqTns2wqMXc9dSlIXQ75p6WlpaWlpaWlpaWlPVN7ldAvxXUTr3S0PUb2/3SZWzkGLS0tLS0tLS0tLS3tOdpR+t1K91oLG9Pa6hVVkaozU/RaZpjQ0tLS0tLS0tLS0tIeoM39blO95DT3Mc0rqTNHSjVlz5Wd6b20tLS0tLS0tLS0tLQnaWurW3ltK0FlPlp6XsrzLSLGPMOElpaWlpaWlpaWlpb229rlfJGUtSvk1Bw3GVvJB26a6HqYk0JLS0tLS0tLS0tLS/t1ba2cXObl7u6pOS5FgmlSZMtVnMuIlpaWlpaWlpaWlpaW9vvaRdZuChYnVA4ql0nB6S+ubbT5NqWElpaWlpaWlpaWlpb2e9rUx5YKJDcx4Xj+r+cg9R5A1igyrxSgpaWlpaWlpaWlpaX9traUWS6u6SGJvOyaW+YDN++jpaWlpaWlpaWlpaU9RZvLLBfvyd1wo0DTerX0jlLFOWIXHi0tLS0tLS0tLS0t7ee1U/ptOX2kLFVLEWjfxKebYZJtnQCkpaWlpaWlpaWlpaU9QFvjxFD9WB/c37J7m0g1zUT5YRRJS0tLS0tLS0tLS0v7Ne1bH1vLYyCXJ97XX07FlfngtLS0tLS0tLS0tLS052jHZgt2nvFYX5bSedNxN+f7napLWlpaWlpaWlpaWlrar2lLDq5WRG4Sdi1QFrwSWdaqy5JQpKWlpaWlpaWlpaWlPUVbCh/rWaZPl0WTG/x0Xw8ZxBEHo9DS0tLS0tLS0tLS0h6kTbFeKZqclq/1cJb2tndtuWQ7jEOhpaWlpaWlpaWlpaX9vHafb0sz+jdh6JUnkkxnfqv7pKWlpaWlpaWlpaWlPUWbSyUXxZClYa6H7F6NRcuXcYU838gtdrS0tLS0tLS0tLS0tF/X3tvfphLIGuaVAsnJvZtD8tYN18PbaGlpaWlpaWlpaWlpz9PmcZFpFfbIQyLvb6y35GTfFcLQTktLS0tLS0tLS0tLe5J2CuRSgWTuWUvNbHXcSG62u2KFZfu9GlFaWlpaWlpaWlpaWtr/vbaQW3hSihh7WAEwvbFtppQU9/jJlBJaWlpaWlpaWlpaWtrPapcj9q9V7Nie/XPXKgJdTvrvscIyNerR0tLS0tLS0tLS0tIeoJ0qLFtegJ0H/9fRIiWdVysxy1VThrS0tLS0tLS0tLS0tEdoy8vGWxHmstby3ttW037LuDMFrqsokpaWlpaWlpaWlpaW9rPaVvZX50kj16qjrb0FhjmhuBuHQktLS0tLS0tLS0tLe4Q2XVMSLy1Gm+6bQs7i6XkzdgpX36suaWlpaWlpaWlpaWlpP6XNoV/tXiuVk6lYsxftJoqsYWM5KS0tLS0tLS0tLS0t7RHangPItGMtzYxMUWRpmOur4srfjiJpaWlpaWlpaWlpaWk/qU2RYH5F3aKW4skQCbbN19Jyix0tLS0tLS0tLS0tLe3B2mWn2uO+zVl2Ryux429m92hpaWlpaWlpaWlpaU/Rpictt6ON5xrtUU41FVwuZ0a+zFShpaWlpaWlpaWlpaX9pDbhSw1lQtUGt2Vx5XL3deFdtLS0tLS0tLS0tLS0Z2lr4ePkya1u1zNX11bbsqd03iizJZfrtmlpaWlpaWlpaWlpaY/Q/vcvWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWtp/TPsHWTbkPnmLk88AAAAASUVORK5CYII=", - "revision": "7961450d72fc4ddea85ccc21", + "revision": "d92e80020960429f86d80d00", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654072019.805802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13128133836304AC44", - "revision": "ece5150e77b8425f97e39382", + "revision": "2114af5267cc4a69a2361507", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1312813383/ticket?caller_id=1310149122&hash=8e6c1cd1-3025-43b0-8279-4a0f2e9a7e7b", - "revision": "fe6c73669e51498ebb8b8540", + "revision": "42a5edaf7d0941c28f1fae52", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "04e2c1569bb5436c8e2e4456", + "revision": "53b59398178f4f2a94c0b219", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -31014,77 +31014,77 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "04272a1391b6495c94df60d4", + "revision": "d81492b3cad84c25bfec1caa", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379374499/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "0a73ec1911f3456d9ac2e922", + "revision": "a862d12f8cc346e298adf314", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344881, + "modified": 1701809344881 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 19.8 }, - "revision": "71b9e41e1cee495c8f3321a8", + "revision": "5314453591c5468b8429c1b2", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b8550437467747edb4642d52", + "revision": "ad1f77553cb9411e82aaf1cf", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "485c1a7543c848c888214407", + "revision": "da367f8811e3477196a96d38", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9de1e1f07b914b629cabef61", + "revision": "25dc6fd7f82a4f7f9db585fb", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -31092,60 +31092,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "4991a72e8dd94ded8027f7b8", + "revision": "7e983994fd654b38983af944", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654072019.805802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13128133936304E9E4", - "revision": "53913b40cf0e497f9c97f9d2", + "revision": "50e4b79b15c74c0fa22573e5", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1312813393/ticket?caller_id=1310149122&hash=ba695c70-a0ed-49a1-b87f-05224cd38f84", - "revision": "56e43a7d43ae49c193092c53", + "revision": "e35aa7d7cc6144f4a979bfde", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2UlEQVR42u3dQY7kNgwFUN3A97+lb6BggmRSFj/l7mCAZOznRaHRLstPtSNIkWP+Rtc5aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXas1/Hjf8fPG0f+3o9F1lX+/N9ff5U3Xh47f658/nxlZdDS0tLS0tLS0tLS0r5Ee3wu+7nI36/9fH7xnGH1ed3uGCPfWLSJQUtLS0tLS0tLS0tL+xbtEkCWu0fZxj+PLZHg8thnjHmJNpffYcOgpaWlpaWlpaWlpaV9qbak6Wo6L7t3WcD0E9DS0tLS0tLS0tLS0tLGaC7FfyVrl4omLyFn+7Hk/mhpaWlpaWlpaWlpad+tTfhUUnlXQ9kEn4Uywsr/ukaUlpaWlpaWlpaWlpb2d9fW9iD/yccXu5TQ0tLS0tLS0tLS0tI+TZuv1IzkyHfbKHIJEZfeJDnkzBZaWlpaWlpaWlpaWtpna9MRtmWlM9Rk1n4liyc1Mkm7X57YZvdoaWlpaWlpaWlpaWmfp12Ov32eWZt3c9da1KYR5SjT1tJv00WRtLS0tLS0tLS0tLS0z9Mu1/KKvKF57UMyY+g3UjrvU3bmuzcxLy0tLS0tLS0tLS0t7fO0Z0m/bSZeH+Gxkf9qr+XL+63R0tLS0tLS0tLS0tI+XVumW+9LKpf/LSHnGXpLpq/UKs5lDsBNr0taWlpaWlpaWlpaWtoHaZdsXErTlRjzNv7Lh+PG5h351BwtLS0tLS0tLS0tLe0LtCV8Gzmn10abbdFk6j7S7qX8cgctLS0tLS0tLS0tLe1LtGnY9T7ZV86xLeS2/vIoEWiZkT1us3u0tLS0tLS0tLS0tLTP06a4bpbm/fk0XH32868jr/K5/AxdJgctLS0tLS0tLS0tLe27tDVDt5l/dnY7SAfcRkgZnlfjgj9HKgilpaWlpaWlpaWlpaV9tnbeDbZeCimvKbvm7pHnuKUCznLi7kvZPVpaWlpaWlpaWlpa2qdo0/G3VE051ms5x7bvzD9LZLnkCMuPRktLS0tLS0tLS0tL+zLtcY0E0yjsuqFytm12x+madF4aELCtuqSlpaWlpaWlpaWlpX2etlBmeL5N7C2DslM8uVt0KcJMj9HS0tLS0tLS0tLS0j5dW1AjlF4eoTCzxHqxF2QJNNuv1FVoaWlpaWlpaWlpaWnfo81R33Hdy7KNowxVWyip4LJUXbbFn5OWlpaWlpaWlpaWlvYl2vJUUwdZdtCMrk79Ssp8tnbRmmmkpaWlpaWlpaWlpaV9hTYda8tH4moqsDSdPMIbl/USvmluQktLS0tLS0tLS0tL+ybtLKFfiutK1eWZY8z0lUVWkn3n987u0dLS0tLS0tLS0tLSPkJbh6CV02sjTEwb3SuqIs9Yq9Fr6WFCS0tLS0tLS0tLS0v7Am0+77bUS6YizHP0V66mPLpEYX0vLS0tLS0tLS0tLS3tm7SjlFmW144SVOatpfVSk/8mYsw9TGhpaWlpaWlpaWlpaZ+tbfuLpKxdGmK9RIzFOK75wGWBEV5+fDkXSUtLS0tLS0tLS0tL+whtE9e1ebny5Sb3lztFjlzF2Ua0tLS0tLS0tLS0tLS0z9emuG6ErpBLJeaxqb/MubrUnPLcFlzS0tLS0tLS0tLS0tK+R9u0d0z9HNuOJDkpOMP+moA0jxSgpaWlpaWlpaWlpaV9trZQbhuPlDLLVFd5loC0vOPYvI2WlpaWlpaWlpaWlvY92px5a96zRJZ5bNoyB2DmU25L6WVanpaWlpaWlpaWlpaW9mXaUlw5b5qHNKWXy7Mp93cp4EzlnX3VJS0tLS0tLS0tLS0t7UO1bTx5hADycnAth5y7ULJNFH45iqSlpaWlpaWlpaWlpX2a9u4c29g0hEzXvv4ytSUpRZi0tLS0tLS0tLS0tLTv0Z6bKdipXWR6WUrnLdvd7O87VZe0tLS0tLS0tLS0tLRP05YcXK2ILMvNsKtxxyuRZa26LAlFWlpaWlpaWlpaWlrat2hL4WNbf3lu+khm6BlCztrLP2UQaWlpaWlpaWlpaWlp36hNsV4pmqzD18pext3ctXbIdmiHQktLS0tLS0tLS0tL+3htzrelyHJ289mOLrKc224mcxOa0tLS0tLS0tLS0tLSvkKbSyWbYshyYO62038us5whz3fmI3a0tLS0tLS0tLS0tLRP134ef1tKIGuYVwokZzfYuvkxNqfhjvA2WlpaWlpaWlpaWlraV2jTELQ0VO3Ig9HSAOx9h5OS7KtBZR9F0tLS0tLS0tLS0tLSPk275OU+I8ua2EtH51KaLnU4yT3/Z5i0PWlpaWlpaWlpaWlpad+lPa8tSEbu219SfOmA21KnOTZdSjaLHrS0tLS0tLS0tLS0tO/SznCibamrTLHjuJ6fm9cayhFyf6PI2n4lXdUlLS0tLS0tLS0tLS3tY7XjWmaZmow0d/fdI9Nelh1sUoa0tLS0tLS0tLS0tLQv0JaX1b4hSxJvceezbaPEiTnubALXLoqkpaWlpaWlpaWlpaV9rHaU+dW508jsTrSNu8AwJxTP7omDlpaWlpaWlpaWlpb2Jdp0LUm83Idk5mzc58aPzSm3sujsxgLQ0tLS0tLS0tLS0tI+W5tDv3TKbamcnGVDS8R4F0XWsLHslJaWlpaWlpaWlpaW9hXaIwSQ+4+lpHJXolnC0JF7Rn45iqSlpaWlpaWlpaWlpX2kdlMlWXtB5raSlzA0RIIj/yxtCHvQ0tLS0tLS0tLS0tK+XduulCh3Hzv8t7N7tLS0tLS0tLS0tLS0L9C2K51rhNcPWistKec1idf0jLzpqUJLS0tLS0tLS0tLS/tIbcKXGsqEqgfc2uLKdvZ14U1aWlpaWlpaWlpaWtp3aWsSb/Hko27zmqsb3bTsXdVlSgXeVF3S0tLS0tLS0tLS0tI+Tfv/v2hpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpf5n2D0v667pa5ajGAAAAAElFTkSuQmCC", - "revision": "65ce5e99235b4796aeef0f7e", + "revision": "cd4347a0e68c44c8a9757216", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "bb2dcb2eee7c48419c3738c8", + "revision": "8d9c833b2ef94619820d2ba2", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -31172,27 +31172,27 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "03561045d7c8465b8f0b37f0", + "revision": "da760a9a45a44ffea0188ade", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1677379588878/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "aa3981c7654f43d3b9ae5755", + "revision": "ce263fd861ad489e95053a79", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679266944717/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679266944717, @@ -31206,16 +31206,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "32621ed59f8f462ea9950d85", + "revision": "4223922fa8844595bfb76d3f", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679266944717", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -31245,53 +31245,53 @@ "history_id": 1679266944717, "description": "Compra de 126385600 IVIP por 21710 BRL" }, - "revision": "f812048589a54d1ea8199656", + "revision": "cfd944a15f0943cfa3682b0f", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 51.1 }, - "revision": "8c467a79075742638d9e9362", + "revision": "dc1c3d41ce344336a6fcd0af", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "aa6eed50cf46405f8adc67a3", + "revision": "ef2f1abdf6354b458412bc95", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "037ca2c83cd241bfaa6a409a", + "revision": "46732b05d0f448bbbc402a4b", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -31318,27 +31318,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "5ef768740bf44268b8d729c7", + "revision": "5b7e4c3fd8dd475faf761639", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679852406395/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.555,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.606,10", - "revision": "c2def5e92af342bdb9a38cf3", + "revision": "d963b3ee37b648cd891f05e9", "revision_nr": 1, - "created": 1701465820516, - "modified": 1701465820516 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679872071598/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679872071598, @@ -31352,16 +31352,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "9d99dd4053404379a66b6755", + "revision": "2ab062d98c7044e9aa885020", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1679872071598", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -31391,53 +31391,53 @@ "history_id": 1679872071598, "description": "Compra de 13.606.977,00 IVIP por 2.555,00 BRL" }, - "revision": "12880530d77945748812ef83", + "revision": "52dddde932a74113b3acb10f", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 52.2 }, - "revision": "63fbf8a326b34071997543ba", + "revision": "0f38abe364c54e7f9a76b277", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "45fcc05ac0e7481cb8b65117", + "revision": "9005c1e7fdc94201ae250639", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "2329fb1d76f34d44bee97993", + "revision": "74a6c479c58b4c74a2e7c382", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -31464,40 +31464,40 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "55a164cdd6ea4cdcbff09b03", + "revision": "6ef9143d886245b7aa868be4", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964262250/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.662,20", - "revision": "effa47f22ad84c8ab80308b8", + "revision": "d2e82a4637754b0a84df126e", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344882, + "modified": 1701809344882 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "9a5d46d4d16d4cc386e93a5b", + "revision": "3bb8068761834016830fddd3", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -31533,27 +31533,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "52964583cd044a64af25598c", + "revision": "20ed47f13e774033b9d0aebc", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682964678725/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "20872e93e196479cb9febbf4", + "revision": "4fdf66bdfc1245bdb9a789a7", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682965648718/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -31569,16 +31569,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "72952e72450a4ea69d1034ea", + "revision": "942ba857ee0c4d3c99a84abf", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682965648718", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -31608,40 +31608,40 @@ "currency_id": "BRL", "history_id": 1682965648718 }, - "revision": "5ac5d4da946d4a688a7a46f5", + "revision": "ac671d5b34074a87ba5d8fd7", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1682965648718/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 1 no valor de 2.606,10 BRL referente ao contrato 1679852406395", - "revision": "90055366b6bf462fbfab2305", + "revision": "072837dc5a074d2ba1567697", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "9a655bb0b5bd45d398e282cd", + "revision": "12ff11d221344ebcba3a637f", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -31677,27 +31677,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d69e45ebe4b34ef8b9dde604", + "revision": "9112559e609b483ab2d758c3", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683077498849/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "0a5ccca41ba244d59f308f9b", + "revision": "5ad706442fb345c8a55334c4", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078471570/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -31713,16 +31713,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "fcfdb918236b4c169f31f905", + "revision": "e89985d250fb45229377d5f0", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078471570", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -31752,64 +31752,64 @@ "currency_id": "BRL", "history_id": 1683078471570 }, - "revision": "ea25b4fc2c914ee09d740c13", + "revision": "d25b2ec2c0ce4112af72f8bf", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078471570/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 1 no valor de 2.662,20 BRL referente ao contrato 1682964262250", - "revision": "b0938c980e7448faab5e61e5", + "revision": "0dacfcaa8dcd4630bda4740f", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "da2c04b717ea4357a07c250f", + "revision": "f532b3d59b47402dbe5585d4", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "12555caf7b054d31a702c934", + "revision": "3ae7045dcc5d4347beb09a8f", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "acd1f2e8808a4cfe82d77a9e", + "revision": "88cda56f9aa64ff184a9fd85", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -31836,27 +31836,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "5b1e730d1ff946ff84adef2b", + "revision": "97ff2c92e05b4d9194b2627a", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1683078539834/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "4566e25bdbd248bc9a80c6d7", + "revision": "0bb34c08e1c5470b9675fb23", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684018958577/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684018958577, @@ -31870,16 +31870,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "1d8a90c9748c47cf92c76667", + "revision": "b15062d8ede24b0ea4ccf8cf", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684018958577", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -31909,16 +31909,16 @@ "history_id": 1684018958577, "description": "Compra de 54.049.325,00 IVIP por 10.001,00 BRL" }, - "revision": "d9e396a0554e472e8185159c", + "revision": "e2fabbd32e6e4068807097fe", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684158157715/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684158157715, @@ -31932,16 +31932,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "139973034f9f4b96989c679d", + "revision": "6a91d697fc3d44fc85efa851", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684158157715", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -31970,27 +31970,27 @@ "currency_id": "IVIPAY", "history_id": 1684158157715 }, - "revision": "1e5b1a37d19f44728f464d02", + "revision": "e1d38319e598464dace9a23a", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1684158157715/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 369.625.820,00 IVIPAY por 36.962.582,00 IVIP estabilizando US$ 1.380,18", - "revision": "b9eb08e4bf284819ab8713dd", + "revision": "4fcee832c2fb4cc7af7c96c7", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344883, + "modified": 1701809344883 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924794730/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1686924794730, @@ -32004,16 +32004,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "0f920a9e315b49578ff38be4", + "revision": "fc814240bfb94a4795985b54", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924794730", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -32042,27 +32042,27 @@ "currency_id": "IVIP", "history_id": 1686924794730 }, - "revision": "9043a72ebc0945939ebddc58", + "revision": "2256fe6413014e96b6ebb95e", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924794730/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 3.989.184,00 IVIP por 39.891.848,00 IVIPAY", - "revision": "223f082268a94a74adda481e", + "revision": "a564e8dbcb654261a8042ea5", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924859436/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1686924859436, @@ -32076,16 +32076,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "ab3db7c9e5a243259ca4ff21", + "revision": "a8b7cdc1d1444c78a16bc9d4", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924859436", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -32114,40 +32114,40 @@ "currency_id": "IVIP", "history_id": 1686924859436 }, - "revision": "8d46a30497154bf09dede8a6", + "revision": "469a94215a8a4a0a83eebe6a", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1686924859436/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 35.902.602,00 IVIP por 359.026.026,00 IVIPAY", - "revision": "72acce09cfb54df78a9f4380", + "revision": "7f51a6c1c339407b8a796225", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "5f51db51307b4868945394b0", + "revision": "edf855cb4f8147fe81dfeb08", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -32183,27 +32183,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "0bff575a7fa3466288e215bf", + "revision": "ce73c23a95e747f0af39e62e", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1688993449178/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.735,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "5f59b075192d417fac1e995d", + "revision": "004b198dc545484c8b3c2450", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689023462249/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -32219,16 +32219,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "969b1f32bc9f4ecaaea4edd8", + "revision": "eed073ac893d4248878b8623", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689023462249", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -32258,27 +32258,27 @@ "currency_id": "BRL", "history_id": 1689023462249 }, - "revision": "76786dbf6b9041cdb6b23b10", + "revision": "7770e686e8de47b1bb11bee2", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689023462249/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 11 no valor de 1.209,09 BRL referente ao contrato 1683078539834", - "revision": "5259203ec6d54454b1d28d5e", + "revision": "bbd7b58f888d4754aabe5d58", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689027294801/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689027294801, @@ -32292,16 +32292,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "bfbe7458403842d683d4a015", + "revision": "4b2afb416b634b1c8ff02049", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689027294801", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -32331,16 +32331,16 @@ "history_id": 1689027294801, "description": "Compra de 23.038,00 IVIP por 26,00 BRL" }, - "revision": "782ad8d34d5544ddbe64d009", + "revision": "93b1cde2193a4b1fafa07ef8", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689119838635/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689119838635, @@ -32354,16 +32354,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "9ba2bbfa6e824c30a12c00f7", + "revision": "f4b3787ec0bc43098f019567", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689119838635", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -32393,16 +32393,16 @@ "history_id": 1689119838635, "description": "Compra de 10.892,00 IVIP por 20,00 BRL" }, - "revision": "9243a936ef454090b66d6860", + "revision": "57418881119b43f59095e609", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344884, + "modified": 1701809344884 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689121233961/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689121233961, @@ -32416,16 +32416,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "7701633381db46aeb5686eb4", + "revision": "c64578f58ec34eb9800a5fd6", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344885, + "modified": 1701809344885 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689121233961", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -32455,16 +32455,16 @@ "history_id": 1689121233961, "description": "Compra de 44.060,00 IVIP por 80,00 BRL" }, - "revision": "2db1d88699eb4c6cb119d2d9", + "revision": "5008830b9117429c98f85b2d", "revision_nr": 1, - "created": 1701465820517, - "modified": 1701465820517 + "created": 1701809344885, + "modified": 1701809344885 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689164526021/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689164526021, @@ -32478,16 +32478,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "9828060c697e456b89169b50", + "revision": "5657c11660c74bf3b1a4ed1a", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344885, + "modified": 1701809344885 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689164526021", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -32517,16 +32517,16 @@ "history_id": 1689164526021, "description": "Compra de 9.455,00 IVIP por 20,00 BRL" }, - "revision": "aaeabf4be3cb4956aaf18c21", + "revision": "b896597acab445929eaf49d5", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344885, + "modified": 1701809344885 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689704009270/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689704009270, @@ -32540,16 +32540,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "bf07d87cb0fc4ea3ab8e7970", + "revision": "c144e66e6e004cf5b5856549", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344885, + "modified": 1701809344885 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1689704009270", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -32579,16 +32579,16 @@ "history_id": 1689704009270, "description": "Compra de 12.818,00 IVIP por 20,00 BRL" }, - "revision": "0a5d7ca8e3fa489d8240ef67", + "revision": "19c77926b30441fdbd0e7c4d", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344885, + "modified": 1701809344885 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245422296/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1690245422296, @@ -32602,16 +32602,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "df9c77656c5d4c2f870f74b6", + "revision": "3cde6ec689434bf8ac62becd", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344885, + "modified": 1701809344885 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245422296", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -32641,16 +32641,16 @@ "history_id": 1690245422296, "description": "Compra de 82.033,00 IVIP por 100,00 BRL" }, - "revision": "793a0b4e813d4330a205ada1", + "revision": "0af464940b08451b949ee930", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344885, + "modified": 1701809344885 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245659912/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1690245659912, @@ -32664,16 +32664,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b09a7c60857b4bc3bf9e6d01", + "revision": "9d62204763c54074951e561c", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344885, + "modified": 1701809344885 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690245659912", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -32703,16 +32703,16 @@ "history_id": 1690245659912, "description": "Compra de 16.360,00 IVIP por 20,00 BRL" }, - "revision": "9d657992100844a2987049a3", + "revision": "9cb70736d28b4d48b0061a37", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344885, + "modified": 1701809344885 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690477890638/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690477890638, "net_received_amount": 0, @@ -32724,27 +32724,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "162c3ed98f8e4dfbaede819a", + "revision": "7965668d8b27421eaee53cc6", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344885, + "modified": 1701809344885 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690477890638/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690477890638", - "revision": "a363b990f96f42579f831217", + "revision": "04d7b7657a2a4d7f80854f63", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344885, + "modified": 1701809344885 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690477890638", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -32773,16 +32773,16 @@ "description": "Compra de 23.044,00 IVIP por 30,00 BRL", "status_detail": "accredited" }, - "revision": "57b342509e884b099573c9b4", + "revision": "4794debe31fa493fafe096db", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344885, + "modified": 1701809344885 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690581074985/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690581074985, "net_received_amount": 0, @@ -32794,27 +32794,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "67b1b3490a7c40ccacd55908", + "revision": "356f31d3cf15426bafeb28a3", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344885, + "modified": 1701809344885 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690581074985/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690581074985", - "revision": "b78ff909851949fab8a8ab65", + "revision": "aecea186769f4da188d9fd9d", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344885, + "modified": 1701809344885 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690581074985", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -32843,16 +32843,16 @@ "description": "Compra de 103.259,00 IVIP por 110,00 BRL", "status_detail": "accredited" }, - "revision": "bea15a6888b04678b460bdef", + "revision": "e54eca444a754fce96b03a42", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690912306732/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690912306732, "net_received_amount": 0, @@ -32864,27 +32864,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "be2a23d748814ac8849fd2a1", + "revision": "7567dc310f95457493b3b716", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690912306732/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690912306732", - "revision": "a369181d07ab4b17a38b42ce", + "revision": "bf02724bdb9340aab1b7a846", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1690912306732", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -32913,16 +32913,16 @@ "description": "Compra de 55.731,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "76ff82869d364f50963f5bf3", + "revision": "4c194fae9ed04d98b1cd6582", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691091813497, "net_received_amount": 0, @@ -32934,27 +32934,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "152fa669078344b598fdd936", + "revision": "9818f9781e634a2394d051a5", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1691091813497", - "revision": "4cec7209637e45b3a24fe56f", + "revision": "1450a70b609c4c908b89f1da", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -32982,27 +32982,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "952a8b77bde642b58a3545e4", + "revision": "887f44585f4541cd91159d18", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691091813497/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 7.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "0c07351a923e4744afa01539", + "revision": "6a36599c65244dd2851a7685", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691190824646/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691190824646, "net_received_amount": 0, @@ -33014,27 +33014,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "fbedf1fc19d54f8790222462", + "revision": "d38f148e16f1471ba17cf002", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691190824646/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1691190824646", - "revision": "8d1f5b765916488b87f3a685", + "revision": "dd864ec78b2740d1a935cd4d", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1691190824646", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -33063,16 +33063,16 @@ "description": "Compra de 61.311,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "f11dde140d5c40c397bf9235", + "revision": "df5ee706f33d479782e25170", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -33080,16 +33080,16 @@ "value": 1695582792970 } }, - "revision": "a80624b8ad40411ebb73ee7b", + "revision": "d8dcf794e29c43ac86173bb0", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692990792970, "net_received_amount": 0, @@ -33101,27 +33101,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f16b0e5913cb45fea9130c10", + "revision": "cd81e27dd73b4daf814d6581", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1692990792970", - "revision": "c6502f1786364297b6ecbbb7", + "revision": "e025d1238118442f9a5f0d81", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -33145,27 +33145,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "d751eaf52f024ccdba346c35", + "revision": "c0147e245eb943a7a28504f7", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1692990792970/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0331.9555.3972.0461-00", - "revision": "aadbf76fc8dd47cb9ecab3ac", + "revision": "417bd3088ff54f909f1a65d0", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693770411115, "net_received_amount": 0, @@ -33177,27 +33177,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ce83f4e39bc542828deb78fe", + "revision": "bcb6480d04be40c79db8f81f", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1693770411115", - "revision": "9fa3c6fb74364c8a816e9db5", + "revision": "eb7a922629be489b94beffbf", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -33225,27 +33225,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "d5e0b68dfde44c1b806cde00", + "revision": "b0ce42348118409fb8e3f701", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1693770411115/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 7.000.000,00 IVIP com um rendimento de +140.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "e38dbf0854e145bcb0c2c17e", + "revision": "b2a03fdf5dd2477c8bf2ae05", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -33253,16 +33253,16 @@ "value": 1697107013081 } }, - "revision": "76c5e250c2da4792959c23ad", + "revision": "4c96377a96d94242a3cd86ba", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694515013082, "net_received_amount": 0, @@ -33274,27 +33274,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f065681cf3c6416bb6906d3d", + "revision": "8e513822a7704ae3950b3b6f", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694515013082", - "revision": "a8e3428f48244e1b85b0559c", + "revision": "67b9114f8cf6490f98feb6c6", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -33318,42 +33318,42 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "11e568ef3a0f40c0bcb2c220", + "revision": "33ae9ce0e9e54e4fb9c97a3a", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694515013082/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0331.9555.3972.0461-00", - "revision": "31dc2d3f0e554f449a6dcf48", + "revision": "2a5bf7d5b03340a59c94f88d", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 30 }, - "revision": "aff13d626b594a7195b67090", + "revision": "44e12ba57f964867b70c63fc", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694563336129, "net_received_amount": 0, @@ -33364,38 +33364,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "89e4cd178337474fa1533498", + "revision": "9010f6f3c2bd4e29b75ccda9", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694563336129", - "revision": "f9c9177ab0264a669a6e179c", + "revision": "7b6efcfe5fcd41a5a9bbfd7b", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "aaa99323157e47da937accf8", + "revision": "b7b184eb9c784143ab0402f1", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -33433,27 +33433,27 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "b1cd0acd49804a90b12752fa", + "revision": "078004758ec24a26a3675ca5", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694563336129/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 970,00 IVIP para a carteira 0x1250E6646AB77FF3f9708D761091ef1aD60bc9ec", - "revision": "2b7045dee734436c83b9d423", + "revision": "84fd56e1f4de4d5d8f22fb91", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344886, + "modified": 1701809344886 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -33461,16 +33461,16 @@ "value": 1697194446900 } }, - "revision": "6f7f1257f9ab4a8fb0e99cd0", + "revision": "85c8786298424732a2881117", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694602446900, "net_received_amount": 0, @@ -33482,27 +33482,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ac22d6c1149644eba354fb55", + "revision": "bef4dd35c35942cdafaa1241", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694602446900", - "revision": "02b5208b94d744d08720b1a7", + "revision": "7403c9d899764efcbc67dc6b", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -33536,27 +33536,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e863516154ff4c6bbe62cc4f", + "revision": "770c1161275b48f38f86f893", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694602446900/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 2.500,00 BRL para a carteira iVip 0331.9555.3972.0461-00", - "revision": "de50fb25ea194ddb80e343b2", + "revision": "162be5e2a75b497392a14dd7", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694614621977, "net_received_amount": 0, @@ -33570,27 +33570,27 @@ "installment_paid": 2, "installments_payable": 9 }, - "revision": "0dc850abf1b346ec9196065c", + "revision": "d504d2ffb2c049ba9e1abda1", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694614621977", - "revision": "a4179bf9c71f496aa2c03d36", + "revision": "a4bc9dc1008e41bebd706c0f", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -33618,27 +33618,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "69e0a956dfd045fcaa3e0ac2", + "revision": "4349999f6fc342a98362ab98", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614621977/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 11 no valor de 1.209,0909 BRL referente ao contrato 1683078539834", - "revision": "4c7373571c1d409195a2ab08", + "revision": "331331982e2842b6a6f70a70", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694614622168, "net_received_amount": 0, @@ -33652,27 +33652,27 @@ "installment_paid": 3, "installments_payable": 8 }, - "revision": "2c66fc2d74c347f9b6ee74aa", + "revision": "18a404d9dcf44d0aac7eeae2", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694614622168", - "revision": "c38d6edd37664665a5c1c502", + "revision": "10665918251946499c576d3a", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -33700,42 +33700,42 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "27025cf605e6481997dde6a0", + "revision": "b32c7509d49247e2ac65b2ae", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694614622168/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 3 de 11 no valor de 1.209,0909 BRL referente ao contrato 1683078539834", - "revision": "9316a14f08e247c4a76d7b1f", + "revision": "e388da51ccab450ab309fd9d", "revision_nr": 1, - "created": 1701465820518, - "modified": 1701465820518 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 942112.9199999999 }, - "revision": "8a94b9483be0431bbfe67fc0", + "revision": "27837d4cbedd46a9824010fa", "revision_nr": 1, - "created": 1701465820519, - "modified": 1701465820519 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694707376145, "net_received_amount": 0, @@ -33746,38 +33746,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "a0622030f3214e709fe915a4", + "revision": "89e3c5227e8245b88f9a4df8", "revision_nr": 1, - "created": 1701465820519, - "modified": 1701465820519 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694707376145", - "revision": "21ac5b62dac344a7ae381a91", + "revision": "2367fc992e9749c8b86fd858", "revision_nr": 1, - "created": 1701465820519, - "modified": 1701465820519 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "f4ecc16dd8674310bd2cdfa8", + "revision": "430906c264ab4939a36a4826", "revision_nr": 1, - "created": 1701465820519, - "modified": 1701465820519 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -33815,27 +33815,27 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "110f7cb13c1e4d95b4ff39d7", + "revision": "b49b55eb4c2b4271bbd35ea1", "revision_nr": 1, - "created": 1701465820519, - "modified": 1701465820519 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1694707376145/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 30.461.651,08 IVIP para a carteira 0x1250E6646AB77FF3f9708D761091ef1aD60bc9ec", - "revision": "78e25ace46a74f8792a632d0", + "revision": "c89693f6ce3c4274a1c0b9ee", "revision_nr": 1, - "created": 1701465820519, - "modified": 1701465820519 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696309633832, "net_received_amount": 0, @@ -33847,27 +33847,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c1f1a07e623a49a7a8610be5", + "revision": "f3f463a1621f43d3bb322364", "revision_nr": 1, - "created": 1701465820519, - "modified": 1701465820519 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1696309633832", - "revision": "d3487a8c42df4581805f3b14", + "revision": "2853ffbc48b3443996e1fefd", "revision_nr": 1, - "created": 1701465820519, - "modified": 1701465820519 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -33896,27 +33896,27 @@ "base_currency_id": "BRL", "status_detail": "accredited" }, - "revision": "1ab6ce5e677245bab9d1c2ee", + "revision": "4c8ea5e2e856470e8d3d29df", "revision_nr": 1, - "created": 1701465820519, - "modified": 1701465820519 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696309633832/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 20,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 03/08/2024 - D03OS92M", - "revision": "3f3e155f8e3e47619f3262ac", + "revision": "0f27f27183d04ff89380a712", "revision_nr": 1, - "created": 1701465820519, - "modified": 1701465820519 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696433201105, "net_received_amount": 0, @@ -33928,27 +33928,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "5b1f071d62d043d88599a62d", + "revision": "8dc2b0290af34bdea1269b74", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1696433201105", - "revision": "d3700dc6f8b944b5b6efaf4b", + "revision": "0db8c3aa30484747908879ff", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -33977,53 +33977,53 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "444d9b8bc7c540a8b8809aee", + "revision": "8d7c5bf81a1f47e991d747f7", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history/1696433201105/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 7.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "11c39b98fde74b309eff50d8", + "revision": "02bef8cafd3c4cd0a2b91da0", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7ab641316d6248c68ad1e9d5", + "revision": "c1847ef0cf334208ae593a8f", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 51.1 }, - "revision": "285921b35c5d4cd9b564f168", + "revision": "6e8730c8dd19402b8a4f7023", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679852406395, "type": "emprestimo", @@ -34039,64 +34039,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "e043c6a8f0c3414baaf3fdb1", + "revision": "9aebd6af32d04b0aa0054384", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.555,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.606,10", - "revision": "89d91c7f105f4130b8cf0c6f", + "revision": "a6d5346ef17b4570aaebaea6", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304/1679852406395/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "f5f5abf53ac94253ab176da7", + "revision": "33cce3ee2c0c4fc98ca7ea23", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202304", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "83eddc103d194ffc896d5f25", + "revision": "25061dff2a564163ba707c14", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 52.2 }, - "revision": "86378c99d9a24364bebc7382", + "revision": "6eb78e14f0784a3ea81a2283", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1682964262250, "type": "emprestimo", @@ -34112,53 +34112,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "ace7a309ed994b80a14de8cd", + "revision": "898a1c1f4bcb418d9477a531", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.662,20", - "revision": "b078028047604c7faf57f675", + "revision": "3c5bdda11408410cbe37d9e0", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344887, + "modified": 1701809344887 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1682964262250/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "fa077f3e4951428d8dc1ca9a", + "revision": "bea853e389e541ebbd03c080", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "9a88bbfa9c8d4546ae10bda8", + "revision": "7d29e9b3add5402baf612ec5", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1683078539834, "type": "emprestimo", @@ -34174,64 +34174,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "556a7bfa08aa436e82e03ad1", + "revision": "bc82e68e908d44bbbb41b8cd", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "777153790d554049ad5b0663", + "revision": "2b985d6b07484e01b122a392", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306/1683078539834/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "77f4c294172049949f496a17", + "revision": "0cef996c3c924c0484f19d9c", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202306", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "61f553cdd5a6453d94753bf3", + "revision": "78bdf834c4ff498096b96a55", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "e766d291f76a489588e992b4", + "revision": "4d012d7ac96d424dad42bcf0", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1683078539834, "type": "emprestimo", @@ -34251,64 +34251,64 @@ "value": 1694614622016 } }, - "revision": "973b2c57c8be42278986db42", + "revision": "ea83104883454d0d9288a130", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "c457a341635a4ea6acf116b0", + "revision": "d4645c4c015949c5b8366e06", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307/1683078539834/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "ffaefa34278b4c7fad3038b0", + "revision": "dae832f3e59c42c9b53875c1", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202307", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "03b2949f319047ad8c661145", + "revision": "c82274ee2716458bac9555f4", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "42b831991a714308a11b22ab", + "revision": "ab591ef24f9e47ad99ab767b", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1683078539834, "type": "emprestimo", @@ -34328,64 +34328,64 @@ "value": 1694614622191 } }, - "revision": "8a9c3eb6d8f04932a39ad3c0", + "revision": "c5ab0681f07342bc9330e2da", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "4c3eb9f064404ce38fc8157e", + "revision": "e72f3af40504414eaad48f88", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308/1683078539834/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "80d8e91dd2fa4008aa60e984", + "revision": "d944c0c6b39d44228388cbf2", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202308", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "86b5d8935b5d42cdbad709d8", + "revision": "b0b2f5f5bdf044a6af627715", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "6f12ad4c2fad49dc86857e20", + "revision": "3b593913d3f64e129715d3c9", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1683078539834, "type": "emprestimo", @@ -34400,64 +34400,64 @@ "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "5ea8f31ccf8a48f486553e31", + "revision": "70cf07fc097e4967867e71df", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "a0cc67c6ee824ffa94b50662", + "revision": "dfcabfe399804488bd925441", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309/1683078539834/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "bbe9a94933724da7b99f41f7", + "revision": "802e259583e74891afa7dd08", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202309", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "683f74a5fb2f487c92b25f14", + "revision": "98089e0a630a47d2987268ec", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "eb15abf0a9c0431f9c969d5e", + "revision": "7d97e5894c644186a103260d", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1683078539834, "type": "emprestimo", @@ -34472,64 +34472,64 @@ "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "2b1c9b33334c426ab6ced6c8", + "revision": "1152a7c804094edd9f26e7b5", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "31ddbad6ea3f4fc585022b7f", + "revision": "7ffba0ef7c8d4dfebf4613d3", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310/1683078539834/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "22800d252e444f2bbe20ef0d", + "revision": "477281f44a99420a84cd24f0", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202310", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e82d7c1f861641ab8f846486", + "revision": "236bdfcdd11545f08e4bf85a", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "057dcdfc52a44250a2a14fff", + "revision": "cba77b5f6d6e4452856d250c", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1683078539834, "type": "emprestimo", @@ -34544,64 +34544,64 @@ "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "f9ebba61c77b421f8152df73", + "revision": "e516b030a4f0423fa292549a", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "bdc67808028c4caa836f3d3f", + "revision": "e627c415789749ee80b1d017", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311/1683078539834/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "fefc73ce0d064b11a77e4992", + "revision": "ebba1db72dbb4008943e7d07", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202311", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3268a1b46c5e4397a588608e", + "revision": "76dc110d30ef4f64898539eb", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "54c8c2e7d1e54c34ab1940cd", + "revision": "3b2139e47b0c481886e76886", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1683078539834, "type": "emprestimo", @@ -34616,64 +34616,64 @@ "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "06a0eb481e5b4775b5d30377", + "revision": "b1b7be2d9da44f7f9397cad2", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "5d61fe04f9e74722817f29bb", + "revision": "8a94b41ff63748b392249989", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312/1683078539834/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "76388db3f94c4042b92c2afc", + "revision": "3fe22283f58e4940839a9069", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202312", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e9adac8470984121abbba2bb", + "revision": "cc72fdce83df441fab1b7996", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "d673fe2cd406442fa1373d56", + "revision": "98eefd1b66a24895aafd7435", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1683078539834, "type": "emprestimo", @@ -34688,64 +34688,64 @@ "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "c76fdca30dc649029c5c8649", + "revision": "9d860c06a8b0412a995f574c", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "2ed974e397fd4fd7b6dc79aa", + "revision": "f6b0503c8e244249a06e61c3", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401/1683078539834/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "88fcfd31e55842ea9c03c286", + "revision": "57fa23679bff47df80a04077", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202401", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a35d15be152e42cf895a1fd7", + "revision": "b988a2ebfe3e4f4bb7aa5945", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "3ed9b87cbc3c4f53af26766a", + "revision": "6247f99b54e44cbcb6b1e646", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1683078539834, "type": "emprestimo", @@ -34760,64 +34760,64 @@ "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "b6d479c9b4bf4eabbc8a8e92", + "revision": "9af353ffa99f4ba0a30d742f", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "f7564d637d9d4082a4f60dc3", + "revision": "ca0a4160afe7495fb4534f4e", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402/1683078539834/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "866bebd39d584ea2bed44105", + "revision": "1de5af0e30af4da183808b68", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202402", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "14c57a5de69b458eb89f626f", + "revision": "d65e1004ab024fb58d8027ba", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "4ac74b7958764d76a559fcad", + "revision": "4674baace55b4684b5fb486c", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1683078539834, "type": "emprestimo", @@ -34832,64 +34832,64 @@ "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "5e7a4a06e12c487d89d4ef73", + "revision": "c790599f67774356aca47893", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "9d99cf7757c74b27a72bc745", + "revision": "87257a6a91984c998e15131b", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403/1683078539834/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "0a0d510940d54688b706f2f0", + "revision": "790998919dff45329dcede31", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202403", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5f9f4ea0a3ae4c8bb41247a9", + "revision": "6adf812f062e435cae1a2927", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "4ceef02f3d4d4a92a8a0d66f", + "revision": "d5e05b7b09be4413bd9119ec", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1683078539834, "type": "emprestimo", @@ -34904,60 +34904,60 @@ "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "36c6080b61da4827a19f8dcc", + "revision": "c39fc4c6c63243c59d911477", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "61eae02f81d74bb2846fee77", + "revision": "4dfe408333b04d23b9abc9f1", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404/1683078539834/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "9e0ab257207d41e684625d26", + "revision": "5980562bc42a41ad98d30231", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices/202404", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "acab1611725d4f90a6444ed0", + "revision": "bdfec54f702f4d81a395617c", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9a4b5ac2b657485f8a97f631", + "revision": "bf531d5c05b1402497974f34", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 10000, "limitUsed": 9090.90909090909, @@ -34970,16 +34970,16 @@ "value": 1679793429922 } }, - "revision": "7e81c716e100471980f73ea9", + "revision": "43375e831d16447ab7dd29e0", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/033195553972046100", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677378717676, "dateValidity": 1678943777415, @@ -34990,55 +34990,55 @@ "value": 1697338800000 } }, - "revision": "66c8acfbb20f4237b2ef63a9", + "revision": "a44fd8f71cdc42d6a0ed2a71", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "38137.00000000", "symbol": "IVIP", "value": 3.88 }, - "revision": "d97499be55c14ffdbc91c1f3", + "revision": "3b6c320339e44c3bb8eacb51", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "0da77f010e51436ebd053f82", + "revision": "4c93da07aaee4cf694b2d7d3", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "d3f5bb57fe5841de82942683", + "revision": "68b2ff79d13e42118cc90506", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -35074,40 +35074,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "6090cd80dd044d47bb4b3bc8", + "revision": "d20802972bea4681a67437e0", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689115233061/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", - "revision": "15c1f41cbc69423baa55be69", + "revision": "aeddc802ee32487199df0088", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "87616fc9ed904fb29deeb29b", + "revision": "7822dc00b34c46c98a2ed291", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -35143,27 +35143,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f79a726b3f1440edb4d10481", + "revision": "7f5ca6a8f7504198a6dcad2e", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689278707835/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", - "revision": "869b54b63f974f23acbcedc6", + "revision": "fa5013a1c7f04c3689532448", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344888, + "modified": 1701809344888 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689683815156/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689683815156, @@ -35177,16 +35177,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "56857d883bdc4bd39473f903", + "revision": "cfa471a52605431b985770dd", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689683815156", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -35216,29 +35216,29 @@ "history_id": 1689683815156, "description": "Compra de 25.268,00 IVIP por 40,00 BRL" }, - "revision": "ff5c99ac28624d72b1efc0c8", + "revision": "77410c0a000b4d05be07d921", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "d6eb814da8c64aae9b4ea702", + "revision": "a80404a4b2c64abca6e2b58d", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -35274,27 +35274,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "0e95e21edaa74a69b68fa7a4", + "revision": "4d541094f9c74ab89ccb05c2", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689684340625/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", - "revision": "eeb3a7cfcc2b47c9a441c825", + "revision": "239873c853664727877c7cae", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689695209900/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689695209900, @@ -35308,16 +35308,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "07f12eef7ccb4a4ab76c52ed", + "revision": "b69978f40e2b4eb888abb160", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history/1689695209900", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -35347,52 +35347,52 @@ "history_id": 1689695209900, "description": "Compra de 12.869,00 IVIP por 20,00 BRL" }, - "revision": "fe1d9e099e6b497ab1c11d46", + "revision": "ad7b877a70234c83a3be4e5e", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e04e772dc65240a68d5ac6f5", + "revision": "8389b56ba43e4dd3ad33b5a5", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "cb673aa439b8445ca6103166", + "revision": "02e20cf1ed8d45f19d77b6eb", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "82ce8843d54243cc924cfd2e", + "revision": "08678f0944c646ec8a19a54d", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/035372379621126936", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1681695529045, "dateValidity": 1681695529045, @@ -35403,118 +35403,118 @@ "value": 1697425200000 } }, - "revision": "4dd7f37134d24533b327b51b", + "revision": "ee8b1778fd8d4b5885c91bf1", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036609796475115090/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9feea5173b1748c08098763e", + "revision": "4c7563ede8184022bc11a728", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036609796475115090/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b14b28951cc54ee48331d929", + "revision": "5206f83d019d4d908e0c571a", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036609796475115090/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "f28f30128bac48348502bff3", + "revision": "5b0789d49f2f4457be8fd6dc", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036609796475115090/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "833bf28c591a43188fd0e71f", + "revision": "73531de617aa4632a07c6087", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036609796475115090", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1689337184637, "dateValidity": 1689337184638, "totalValue": 0, "currencyType": "USD" }, - "revision": "0541709264cf4304828d9e49", + "revision": "f51d386cefda4253a63a0d00", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "31783.20000000", "symbol": "IVIP", "value": 6.74 }, - "revision": "28c531d0c9da4b5695659906", + "revision": "d5b62e16e9eb40bf8ae88cd4", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3bf546fce9f54e12ba3dc205", + "revision": "753566504deb49779b3284d2", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "75dc415e0ab54c3f84341b99", + "revision": "16989d0ccd314215a96b0529", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -35540,40 +35540,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "37922d3dca4f4253bd36fdcc", + "revision": "dedb7b8dc92e47f9b06757d2", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220381451/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "7655e57c569e4871988dbe1b", + "revision": "0d816729be5945768df181ba", "revision_nr": 1, - "created": 1701465820521, - "modified": 1701465820521 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "1f0ec6d766dd4ad7ade35743", + "revision": "026b0ba34c534135ac850951", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -35609,27 +35609,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "cd0fd0c69b3b4e42842be3f6", + "revision": "639d4c128fb648d3a15986b1", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689220411584/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "522030a3e3df454685a56f67", + "revision": "48aab6acc3e5470ba57b23bc", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689258185846/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689258185846, @@ -35643,16 +35643,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "4c2d7ff966de4dd4aaf39d31", + "revision": "8606cd647df544578be8c9e2", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689258185846", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -35682,29 +35682,29 @@ "history_id": 1689258185846, "description": "Compra de 18.682,00 IVIP por 50,00 BRL" }, - "revision": "f2e97798873f4d98af033eb9", + "revision": "05faa6ec7092439ea2bba7d1", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "b612da1ad9b94028b1f5d347", + "revision": "d9429a9a4cf94c86ada338ac", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -35730,40 +35730,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "8d61fe5f9c084219814cbbb3", + "revision": "67beab3bdb2f4a7ca7409ea2", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488308744/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "90a98bbd29394706b11e1ab4", + "revision": "435a939d64804c11ab2111f9", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344889, + "modified": 1701809344889 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "83315f3174904cdfb3efa6c4", + "revision": "a221b6f3270942f18b8fd2a4", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -35799,40 +35799,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "479dd7af9e3d44e588f1d804", + "revision": "65f81b5c7ffb4c618f9e9525", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689488325765/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "6fc0e598d44c4330b80d321e", + "revision": "b2b29a2162174e4c843b4cd6", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "82f720f5089c47ef8c6d0fff", + "revision": "09faf77e4dd84fd7aa788b13", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -35858,27 +35858,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "45fc909e2379424fbebb1be1", + "revision": "48ef5b98e3f6446bbca293e4", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689606916771/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "7172a74f6177495aa0cb6384", + "revision": "20a8a93198324259924c9d3c", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689614163424/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689614163424, @@ -35892,16 +35892,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "4cbf3c540521403a8fce0b49", + "revision": "f084680e102746de93863cc3", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1689614163424", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -35931,16 +35931,16 @@ "history_id": 1689614163424, "description": "Compra de 12.478,00 IVIP por 20,00 BRL" }, - "revision": "9dad3ceb251f4a19be4ecebb", + "revision": "616d39cb121644e88e9fb91e", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690673977679, "net_received_amount": 0, @@ -35952,27 +35952,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "64a47ea0b87444f39b672e2b", + "revision": "b5b026f1d1bb4495bfedaf41", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1690673977679", - "revision": "9914d4e8b70e401a8350dac6", + "revision": "4cb0d6f3b4d34a5dbabe2173", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -36000,27 +36000,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "b2bebf94707c47ccab014c11", + "revision": "1533288a5a9d45cfbf38ee03", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690673977679/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 31.160,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/29/2023", - "revision": "c6cd24c891cd41e3a59da6a1", + "revision": "2fb62842dc0c4caea25d34f6", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -36028,16 +36028,16 @@ "value": 1693266063331 } }, - "revision": "bb532804eae846828331de6a", + "revision": "f8d5ee9a636f4f9ab92c7b2a", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690674063331, "net_received_amount": 0, @@ -36049,27 +36049,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "29dd981fba454463a802f066", + "revision": "13b5850b533641d7bf41eeb7", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1690674063331", - "revision": "31702dd09d824a71b9c394c8", + "revision": "a57114fb1d284b5e829e3b72", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36093,27 +36093,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "7807a2ae78ae4f70a899ec93", + "revision": "a76ea73bd9a04119adb05dd0", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1690674063331/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 50,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "b22afbe15b764ea588bc5827", + "revision": "065770d5998940598c1cbb35", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -36121,16 +36121,16 @@ "value": 1694472568160 } }, - "revision": "36000113361d4ed198dd6f78", + "revision": "3956bc47d5e8474f86b56a15", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691880568161, "net_received_amount": 0, @@ -36142,27 +36142,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "805cb6b7f82b4440bb08c58d", + "revision": "bfd70c6ccaa44bba9eead35d", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1691880568161", - "revision": "cf46bc443dc3444388af314e", + "revision": "21f57eb42b48446aa94aab7f", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36186,27 +36186,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "44a60a67664647d69295cdbe", + "revision": "76f7092510214567b0fa87a5", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1691880568161/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "488756cc980243db99d4acf5", + "revision": "e04cb66b04de465bb06c0b8f", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693353168151, "net_received_amount": 0, @@ -36218,27 +36218,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d611101937fc4c29b9b3531c", + "revision": "e94a3f67f2d7473696caf708", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1693353168151", - "revision": "9ca2c69342d94ae1abb77257", + "revision": "64aca72d9f974c268bce269f", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36266,63 +36266,63 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "0bdb3ab3b0f74ae1a0e4e1f0", + "revision": "0d7fdd6af4044353a0226c77", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history/1693353168151/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 31.160,00 IVIP com um rendimento de +623,2 IVIP (2,00%) - Y12XDT27", - "revision": "620b43a821bb41c795e3fac8", + "revision": "911ea461c1294eb6af7119dd", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "f56038275d4b4d068d4f2df5", + "revision": "9bb002d9e436409f94f19191", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "022a812dd0e6412f9fcc03bc", + "revision": "a3701d290a484afeb01aeb4f", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "68213744ae3948e3887ddd13", + "revision": "a2b2960242e74e5c8a13e520", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/036781805197076300", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1689220270724, "dateValidity": 1689220270724, @@ -36333,80 +36333,80 @@ "value": 1696215600000 } }, - "revision": "85b6e4779d9b4b19bea60e14", + "revision": "7fe9d0f87e98498db19e50e0", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/039695615525592090/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c77953611e36480785f0adbb", + "revision": "295abbd2c0fa4d58a7cd2acd", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/039695615525592090/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "24a0763915ca4137bd71f034", + "revision": "81a4b92ebea5428d960201b7", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/039695615525592090", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677455523126, "dateValidity": 1677455523127, "totalValue": 0, "currencyType": "USD" }, - "revision": "32aa77a1f88a424d8ed42e9f", + "revision": "8b474b1330914bda9006e235", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "150481.00000000", "symbol": "IVIP", "value": 16.044 }, - "revision": "237fb2c1aca04c95858f2e9e", + "revision": "535da9a354634344b69764e8", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "390771d4d59942a08ad067ec", + "revision": "306ac5a1ba3d4a369c82de81", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -36414,16 +36414,16 @@ "value": 1699111958190 } }, - "revision": "e90301ae1be546a3ba51c687", + "revision": "431a295262f346a2a817b128", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696519958190, "net_received_amount": 0, @@ -36435,27 +36435,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "030743662bbf4f61a6f22cfa", + "revision": "1d39af8ba8fa4df1bfde4676", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696519958190", - "revision": "ac53fa7211fa48788710f19a", + "revision": "8d645006962a48c694521273", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36480,27 +36480,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "7054ba79c61f4c03a6a0fa4c", + "revision": "aa9b09d764904393ba81f58c", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696519958190/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0397.3472.1775.6545-10", - "revision": "b94b93799b0a41a68ed203eb", + "revision": "cb3a678c759643f0bac73cf7", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344890, + "modified": 1701809344890 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -36508,16 +36508,16 @@ "value": 1699133572533 } }, - "revision": "b7ddb6e06b5641fb8f9e8878", + "revision": "d0c5c02250d84356aa7d908c", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696541572533, "net_received_amount": 0, @@ -36529,27 +36529,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8087ebedb72e45ec8266c88c", + "revision": "63a12dc50625485e8b319250", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696541572533", - "revision": "40020668bcfd42d281f694ff", + "revision": "7a71dbe587ce42819bea2af0", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36574,27 +36574,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "69faa7100f434247b178ed71", + "revision": "f105d9c8b58440dcb195da0b", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696541572533/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", - "revision": "0214d8a4f711491b8d45e401", + "revision": "76a099d8478549058bcfcd83", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -36602,16 +36602,16 @@ "value": 1699177584658 } }, - "revision": "000a2feaf50149e9a914b355", + "revision": "0a47be595aa542efbc13b51c", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696585584658, "net_received_amount": 0, @@ -36623,27 +36623,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "fa5b863a43e54fec814f672b", + "revision": "b14b6c1528114e2f924e7661", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696585584658", - "revision": "546ae7d81853474f837c2635", + "revision": "b07a7e451ea44accba2e6f53", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36678,27 +36678,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "46a217ee93e94d039265addd", + "revision": "51d88189738d44b5b36ba185", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696585584658/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", - "revision": "04e7eb0e060043ef90f8544e", + "revision": "1cac5dcd1bed4ed1a48fea85", "revision_nr": 1, - "created": 1701465820522, - "modified": 1701465820522 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696706580251/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696706580251", "net_received_amount": 0, @@ -36710,27 +36710,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c5d106cb09c8481098c2adcb", + "revision": "d71807ceedda45a0b07973a5", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696706580251/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696706580251", - "revision": "4e27225b98da490ea5344fe9", + "revision": "3c89f685a08248f8adf7a781", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696706580251", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -36760,16 +36760,16 @@ "description": "Compra de 70.156,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "85ac4439af6743e29986a36a", + "revision": "e085102f55f64aab8473789a", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -36777,16 +36777,16 @@ "value": 1699487170002 } }, - "revision": "eb6e0eb5aad84209b22233b2", + "revision": "1899132ac14748c9a1a5bdf7", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696895170006", "net_received_amount": 0, @@ -36798,27 +36798,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "81abc803c63c44b695fcacfa", + "revision": "d010fb1c4a1045d3a64fa668", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696895170006", - "revision": "46771ccffa6d40b5bbb32635", + "revision": "14032880299e4585bc3c4d36", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -36853,27 +36853,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "91a83fa9e4fa40f4a72030f5", + "revision": "85554af583aa40aca8d92f51", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696895170006/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", - "revision": "05d4d844e1704351b37182f6", + "revision": "5b22c0b31b5a43d3969c5a02", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696951453164/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696951453164", "net_received_amount": 0, @@ -36885,27 +36885,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "cb11d38131de495ab993c92e", + "revision": "3acd3e9eadf84ed682c9adc5", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696951453164/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696951453164", - "revision": "8f04b56a3a854ef3babe2b9f", + "revision": "571f4dc582e24facb59e170b", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history/1696951453164", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -36935,52 +36935,52 @@ "description": "Compra de 80.325,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "ce6ec080359941a5b3821258", + "revision": "60ce498e4d2e4052bb7e46b8", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "52a029a5956c4cf39e11f58b", + "revision": "8c316c20872347be9f6bf4db", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7aebd1b6bdf240f08ca6b4a2", + "revision": "38c11a568a1a470f9ebe2a83", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "032e25d9d0d34ed98f598bc9", + "revision": "bf3fb6b3f36c4b45942e01d6", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/039734721775654510", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1696456086300, "dateValidity": 1696456087509, @@ -36990,104 +36990,104 @@ "value": 1697425200000 } }, - "revision": "8fdf26e4f1ec4ebeb99de95f", + "revision": "157da17ad48d45b2b3c1ff28", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/041090915252286260/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "42cc2ee27e7f42d784f15257", + "revision": "5820f0c08ae04ee78955629e", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/041090915252286260/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5c127b88373a444f96611753", + "revision": "23923e508185444f8399a19b", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/041090915252286260", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677897482019, "dateValidity": 1678002144888, "totalValue": 0, "currencyType": "USD" }, - "revision": "d00b34acb3ba48e6b17cdf32", + "revision": "aaad308a1e3f48bb85e3811a", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344891, + "modified": 1701809344891 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.9900000000000001 }, - "revision": "42fbee2f635144e0bbfca628", + "revision": "f2f9123b70b642efad889caa", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c0d06e7ffeb9424290fdbfd9", + "revision": "b412677bcc2541089c12fe21", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "60ee2778899a46aca84c9e6f", + "revision": "53d406a4a5c14ee29fe0dfde", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8b4e3c3142094725b71f4ba5", + "revision": "60fe0043e5414cb6889abea3", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -37095,60 +37095,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "bac558c0a7034c65b74629f0", + "revision": "6a1192ab980c49a48147bd39", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/payments/55838306631/ticket?caller_id=1310149122&hash=c84a0406-1525-4894-8c96-d700cf2da43d", - "revision": "cd62bed0dcbe48388acd4268", + "revision": "74884f9bb99346e78d3d02f1", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558383066316304189E", - "revision": "ad1dc9bdcf7a41f7b0a5fc4a", + "revision": "00d8e78d602f41ef9981edef", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIwElEQVR42u3dW67rNgwFUM3A85+lZ+CiRYsTi5ty+gDaWisfBzfXr+X8EaS2xvU/+pyDlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlvaf1475c/z+fz9Hp6t/O+XXm4zpX58n/xytD/rt6HReYtDS0tLS0tLS0tLS0m6iPQLlhvq5+3Sn35+zJk+8n8v+OPB5l6SipaWlpaWlpaWlpaXdQPtZQE7G815FnvdHTFVfuqKpItNzC4OWlpaWlpaWlpaWlnZb7Y9ses6Vj6a3mm6V6sTyh5aWlpaWlpaWlpaWlvZ+6SeqbcmdZWRyeqHULZxOpqWlpaWlpaWlpaWl3Vubi7vpsdNzahGYxjbTa0yy9fAnLS0tLS0tLS0tLS3t+7UppeRf+PM3MlVoaWlpaWlpaWlpaWn/z9r1pxR8q8Vx7Yjm5EnpkYsPLS0tLS0tLS0tLS3t27VpaPLs+nfNore2Fi0vdJvinMYxc7OPlpaWlpaWlpaWlpb23dqUqZ/y+NMyuUWxWN+vLLGro5w55J+WlpaWlpaWlpaWlnYDbboq5UOmwvCL0Mn8Vs2tQvIkLS0tLS0tLS0tLS3tm7Vt2fh598dAyMWzk/sM+SdX30GkpaWlpaWlpaWlpaV9s/Yz1LGG8k+5/eWyM/xpj9Y5zfJjXLS0tLS0tLS0tLS0tNtp03K1ttWW2nQF0GyAXWrRVJBmPC0tLS0tLS0tLS0t7Zu1U+2YSro8JVlHKr9q4k1r4NIqvOOb3dZoaWlpaWlpaWlpaWnfoi0tuSvsUD0Wrbt02RRkkuJLyv+NgKelpaWlpaWlpaWlpd1CO9Vwj4EiZTbyDNopanJqBU4/xs1Y3LS0tLS0tLS0tLS0tO/WlttdXb9t3MNIajduPYQ5tf1K5v8I05m0tLS0tLS0tLS0tLRbaOvCtfRJJWLpEa7TTKZHnnk685vd1mhpaWlpaWlpaWlpaV+kzVXfKFtXlzqxjl6WLdea4Mg8sXmUP7S0tLS0tLS0tLS0tDtppxJx3AHJk0Yv1/Elx1M/sOy7RktLS0tLS0tLS0tLu4W2NuJSi6+si7vCXGVqFNYi9fMNmnK1m7qkpaWlpaWlpaWlpaV9o/Ysi9RyETh92r3YVgvcuv7dfJfnmpeWlpaWlpaWlpaWlvY92rbqq1tXT0kjix0BJveRD7RF5UPNS0tLS0tLS0tLS0tL+yJtTnEcnewsGf2lzzfC6za80je8vkuPpKWlpaWlpaWlpaWlfZE2l351zVrbzitf6+Rknthsv54P3T1aWlpaWlpaWlpaWtpXaafdqNuycTq5FHxnCJNM7by08i0FTF60tLS0tLS0tLS0tLTbaJsZyvVquBT0WOrOx/5d0aafhZaWlpaWlpaWlpaWdgNtiiCZFKXMO7sXOrqAknT78+nhtLS0tLS0tLS0tLS079ceYXwyrWO75qbbyKOXdSFcKi/Tj1HKS1paWlpaWlpaWlpa2i20zT3DqrRR9sNuVs2V5W+3a6eXTEn/tLS0tLS0tLS0tLS0+2hTMkjp3zUL3HIr8DaxuVj+lp47HjNVaGlpaWlpaWlpaWlp36b9yjNCJTgFj4x7eXl1gZDncuryeNgFm5aWlpaWlpaWlpaW9n3aqelWbnc978B2hfHJo4svGWOk2c3CuGhpaWlpaWlpaWlpaXfSJuhULJaoklHySkrZ2LzaUzDKcy+SlpaWlpaWlpaWlpb2VdpKbrNJ0tK5z6/rVmA7YZn+RUtLS0tLS0tLS0tLu4+23mQagWxPWdwgdfKushAuT10ej71IWlpaWlpaWlpaWlraV2lTKTnVjkf+miMkx2cTb7pznrpMpSQtLS0tLS0tLS0tLe0u2kw5u7iRK2/DlkJGcmjJ1W0kMEajoqWlpaWlpaWlpaWl3UJ7ftmwO/LXMqy5Wv5WytVV4AktLS0tLS0tLS0tLe0W2sVwZTM+mXJGUuBJiTlp3+C6dwZpaWlpaWlpaWlpaWn30TZFYNmwum3i1fZgGq586hGefVYlLS0tLS0tLS0tLS3tm7WtJ6f1X12QSdPEm0Yv20HPchdaWlpaWlpaWlpaWtr9tOtdq9Nua9OBKdo/D2vW5JI8hHnR0tLS0tLS0tLS0tLupJ3unkYlS8jICrqY52y2x05BlLS0tLS0tLS0tLS0tJtob2XjNCWZlqt9FoarGP+Mr+/8XFTS0tLS0tLS0tLS0tK+W9vuRp3SR6be37GY08y5lFcZ4Jx+m9BLpKWlpaWlpaWlpaWlfbP2qbF3ZVl+q+seEnmWPt9TZ7BuzUZLS0tLS0tLS0tLS/t2bRmuHGUEcnq1DDhz22/6CUq5OrroE1paWlpaWlpaWlpa2n20dUFamrBchEke91e/dQtL6y7tlt0Un7S0tLS0tLS0tLS0tJto2xru7NbAjedokaucnGctp9bi9V13j5aWlpaWlpaWlpaW9kXabKz7pLWzkYshzGkRXXMgl7C0tLS0tLS0tLS0tLSbacfTFte5wrvCHmsVn2TrUpKWlpaWlpaWlpaWlnYfbfp8PuLMo5clgiRVlqlh990+bsupS1paWlpaWlpaWlpa2ldpS2jI48P+cp8vrXy7uo3bDlpaWlpaWlpaWlpa2m20617dGM3JaWe1ZrjyKUzyz1SRtLS0tLS0tLS0tLS0r9SmAjLNRuYu4Cqov23npZ8l1ae0tLS0tLS0tLS0tLR7akfIDRkhAfIKefzNnm3t1OX0us/dPVpaWlpaWlpaWlpa2g20i4j9Jpn/CB2/1M67uunMOsBJS0tLS0tLS0tLS0u7j3aN/5ymXPf+0t7Xq3Vx69V1tLS0tLS0tLS0tLS0m2jr4GNepHbOw5CjnJdW0p3h2qv8DmmJHS0tLS0tLS0tLS0t7Rba//6HlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlvYf0/4CTrnpnMA9aVMAAAAASUVORK5CYII=", - "revision": "f002ad7ea02d412dbf702e25", + "revision": "43395546704c48eb90cfda38", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "787e5504c6b24cada4d55dd7", + "revision": "4a78812d65294f32ac70a81b", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -37175,77 +37175,77 @@ "status_detail": "expired", "currency_id": "BRL" }, - "revision": "7d155e69cb434b03b16db1a3", + "revision": "73000bdf1eca40cf944256cd", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068099316/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0413.9580.8163.2810-30", - "revision": "f2dc0cd26c444531abd99d1f", + "revision": "ff4c5e3d48e1449e9794a3fa", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.9900000000000001 }, - "revision": "ae0732621eaa4a6cb0ea9f2e", + "revision": "a3cf15b64b9143fda50c4d2e", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b4e39c1140ac4ec08a71f48e", + "revision": "50844f2fd5874aa2803d17b2", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "fb48bbf245334e7a818dc39b", + "revision": "c0cb9ddae4724bbc9cc748f6", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "548d99e3db594d139126a1d2", + "revision": "eb511834c35147f1ab002326", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -37253,60 +37253,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "0d8f4dfb206147ce94d6756c", + "revision": "3cdf6184dcac463db775a853", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558382392976304091C", - "revision": "82e4846e8ab146d5b919f244", + "revision": "88916c3b8e894013a7f69899", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/payments/55838239297/ticket?caller_id=1310149122&hash=39da82e9-af89-4bbc-a0a8-066f192eab65", - "revision": "c61735609e01491da183ea94", + "revision": "14feb8ff8afe45c3bc55e94c", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIu0lEQVR42u3dTW7jOBAGUN5A97+lbqDZDDoW6ysqQTcG0+LzIkgcS3r0rlB/4/qLXuegpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpf3z2jG/jn/f+/rvdHV57yyXfb1XLjt//ajXTgxaWlpaWlpaWlpaWtpNtNM9j/tv5+cjPu90/jrQkclfT54+/Pm5r8saBi0tLS0tLS0tLS0t7RbazwCyGqeI8dM9wgnOEZOHEz49tzBoaWlpaWlpaWlpaWm31V73OHGUXF0JG8+c8Vsk+47wg5aWlpaWlpaWlpaWljak33IQOFVY3l7TcVO2cPowLS0tLS0tLS0tLS3t3toc3E2PbXJ6092n39IxJtm6+JOWlpaWlpaWlpaWlvb92hXgP/zxGzNVaGlpaWlpaWlpaWlp/2bt+tVGgmV8yRGa3pq7pOmRixctLS0tLS0tLS0tLe3btalo8szZuLbprY1Fy4GmoZNXGT+5zO7R0tLS0tLS0tLS0tK+T5tm6j/dPbXEXd2g/jOcOYWhoxvyT0tLS0tLS0tLS0tLu4E2XTUNKCknaPekjTLXJCf72ludqxpRWlpaWlpaWlpaWlrat2kztIZ5n+9dIQd33asujxJ3tlWXaaH2suqSlpaWlpaWlpaWlpb2VdoU9bUllSmT91Sieeb2t+m55eujpaWlpaWlpaWlpaXdTHtL3U1PLAWXTRSZrki8coJU1ElLS0tLS0tLS0tLS7uVNod0aW5Is3ft+0m8ZuhkOdpBS0tLS0tLS0tLS0u7ibY0vTV5vtQcN929nPm8D5Mc9w9P742Ap6WlpaWlpaWlpaWl3UqbB0IeIQistZFFe+T3phO0OcLnKJKWlpaWlpaWlpaWlvY92qaGcjrB501Sb9sRPOMeaNb3ptC0VGfS0tLS0tLS0tLS0tJuoE2Na/ksI8iubi3A7bLc+dYMrPzOtjVaWlpaWlpaWlpaWtoXadNYkrS6OsWJJdA87inDZnDkYujkEdZy09LS0tLS0tLS0tLSbqFNPWu3dN6iXe0qgDy+5FjmA6dkHy0tLS0tLS0tLS0t7T7amogrhY9XuXtJ0x1dojAFqVeYWtmOKqGlpaWlpaWlpaWlpX279rw3qbVB4Mh9cWVP2qrBrcvfzXd5jnlpaWlpaWlpaWlpaWnfo03kafhjTd2lwswSHabazZFnUE5f0EPMS0tLS0tLS0tLS0tL+yLtoq5yGiNylkiwzQzm406JwpHvV8i0tLS0tLS0tLS0tLTv1qa8XOpZKwP9cyIuds2tKzbLn+dDdo+WlpaWlpaWlpaWlvZV2mk8fwkbU/y3CPia2s0mimy3tz3EvLS0tLS0tLS0tLS0tK/Sptu13XBHni+S487H/F0KTafvkJaWlpaWlpaWlpaWdgttGkFS9lw3dZqLAzVtcmlxW/twWlpaWlpaWlpaWlra92vrOP22jy3XS6Zrj3uHXA0v05dRwktaWlpaWlpaWlpaWtottM09Q1faKLWWTddcaX87yx63Ms2kDVxpaWlpaWlpaWlpaWnfrU2TQUr+Lg30PxepwKlNbkrdlRMciwpQWlpaWlpaWlpaWlrat2uT57vGhecKUWSNO8tz845sWlpaWlpaWlpaWlraN2vLSuozBIaju+co66yn0stcidk8vPyXlpaWlpaWlpaWlpZ2P227vzqvx75CdeZVosN2OOVicslBS0tLS0tLS0tLS0u7jbbWX6bZJCUVOOHTArUzZAaPnFUsv9HS0tLS0tLS0tLS0u6jPe/B4hTXjfycFEW229YW38jZhZIXLS0tLS0tLS0tLS3tNtqU55tix7rn+vMEdcJJW5OZqy5TKElLS0tLS0tLS0tLS7uLdrHi+ui0o1RipiAwDy25ukUCYzQqWlpaWlpaWlpaWlraDbQp6stTSo6S3ZvqKp9ShiPO7R9pzAktLS0tLS0tLS0tLe1O2tGtXLty+WSaM5IGnpQxJ+0Jrhyf0tLS0tLS0tLS0tLSvl/bBIFPy9Ka7rV2eH/SLuJOWlpaWlpaWlpaWlraHbVXmAC5jv+mIswaVE6ll22hZ7kLLS0tLS0tLS0tLS3tLto8cf8H29bSZWkgZBo6WX7Lf9LS0tLS0tLS0tLS0r5ZWx7RLEtLRZgtdFHPmdZj10GUzzWitLS0tLS0tLS0tLS0b9F+3jgttk6JvbRZLY05Sfi2xW4RVNLS0tLS0tLS0tLS0r5ZWwokx73fbUrJXRk63a9sZWtkU4z5kykltLS0tLS0tLS0tLS079EeXQ9cihhHmFKSqjPrzJEUVGYBLS0tLS0tLS0tLS3tjtqpIrJZhZ1KKqcwdP0VlHB1dKNPaGlpaWlpaWlpaWlpd9FOZZZpSGS6XcnQXaFXLqXu0rbsJvikpaWlpaWlpaWlpaXdR5sKLtPgyDR4JGUB04dzreX0FVwP2T1aWlpaWlpaWlpaWtr3aVP3Woosn2sja9buHCN9I2mMf17wRktLS0tLS0tLS0tLu492PK247iK8+kq9clW2DiVpaWlpaWlpaWlpaWn30abXer7/lLDLOb00VvLIZZaLSf+0tLS0tLS0tLS0tLQbaNdBYHrYYuN1GjCZqi6r+yc7CGhpaWlpaWlpaWlpaV+mrag8GvLIib3pLqm4crG97cdRJC0tLS0tLS0tLS0t7Su1ZdLIyLWRadL/elB/bnBrTpBDWFpaWlpaWlpaWlpa2h21t2AxRXipy61kC49ctllSfGc4KS0tLS0tLS0tLS0tLe2yOa48Z3qv3YJ9ddWZtZ2OlpaWlpaWlpaWlpZ2H+0a/xkdpgXYU+6v1mm2fXHf3BdAS0tLS0tLS0tLS0v7bm0tfMxNaquIcdH0Vj+X+uemFjtaWlpaWlpaWlpaWtp9tP//Fy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS3tH9P+A9AQYpnhsXB9AAAAAElFTkSuQmCC", - "revision": "74be404e71fd4c118d6fcb11", + "revision": "6034d0e914bc4811b509ee6b", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "c9099b68589543d581049d9f", + "revision": "15b602daf137425484ab0efc", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -37342,27 +37342,27 @@ }, "wasDebited": true }, - "revision": "1e1a82b32401403985be66c4", + "revision": "33d76cbb83ac4b66ad670b61", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679068275059/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0413.9580.8163.2810-30", - "revision": "7d26ae58e26d47b59c05b36c", + "revision": "2bb46e486761440490bdfa61", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679267870429/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679267870429, @@ -37376,16 +37376,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b37e7b571c2c42aa9b415f1e", + "revision": "f9acf4a560fd4df682be4e69", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1679267870429", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -37415,29 +37415,29 @@ "history_id": 1679267870429, "description": "Compra de 581846 IVIP por 100 BRL" }, - "revision": "d28754e32e9d4a0f8c732ee2", + "revision": "0d7e9969c348407f88310d15", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "cc61bc8e3d724cbeb6c2db61", + "revision": "ad31ccb9f20346c6b3d7527b", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -37463,40 +37463,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "f36123f99b6c473b9b32fc71", + "revision": "d3592ab5bce94b3fb3b00d20", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586586983/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 581.846,00 IVIP para a carteira 0x37E0fCB4d560966a0564DA6CD53002e1ec1eb98B", - "revision": "9e1d4b6a2f584a949b1857e2", + "revision": "0959245e4333426c9dce7d73", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "38f098e58607432ab45eff89", + "revision": "6e3d9789cb124a04a4f28b9e", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -37522,27 +37522,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "33f66fe91d5c46519446d75b", + "revision": "4133fc6f95f24301b102eef2", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1686586986320/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 581.846,00 IVIP para a carteira 0x37E0fCB4d560966a0564DA6CD53002e1ec1eb98B", - "revision": "b626b75e09444330bfbbbe13", + "revision": "33d6f644c522436b9f8993d8", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690134068779, "net_received_amount": 0, @@ -37554,27 +37554,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ad1f4c00939f49a6bc6b37e8", + "revision": "1e7cab568fea45ab8bd22212", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/041395808163281030/history/1690134068779", - "revision": "4e6984b01c7f407eba09368b", + "revision": "f22bd59cb7e84499baa496d5", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -37602,89 +37602,89 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "4ee8d3bb38cd4da2bfdc6c0e", + "revision": "c75b22780c214957ac4f07cc", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history/1690134068779/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 400.954,00 IVIP para a carteira 0x8B2f02C31F9ab77685A7c7546e3768e290DD6394", - "revision": "44e4119179c94f6a8f5fe4aa", + "revision": "debc373264e848898a58aed3", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3f6294f14a7c43be8aa21881", + "revision": "c37691033db048868981aeec", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "581846.00000000", "symbol": "IVIP", "value": 73.41 }, - "revision": "a26ffb809afb4d3fb853d8bb", + "revision": "796c76010d3448bf8b73bdd6", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3f04ac2ca7334002a3609d9d", + "revision": "5c640b14a7f743b9a38e6fe4", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ba4d27f0980d429badf96b5f", + "revision": "91f3ed1ae4a648518b71ec54", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "4f90b4468c60443fbb568d58", + "revision": "e0fae44f1ec14851a2109664", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/041395808163281030", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1679068061044, "dateValidity": 1679068061044, @@ -37695,40 +37695,40 @@ "value": 1696993200000 } }, - "revision": "4569715dea5245658cce2bff", + "revision": "6e5f990432144d22ac25021b", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ca7586960dca4b80bfb78258", + "revision": "2f783878373b46548cd21138", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "9420d6f7da254a32a03c9ad9", + "revision": "b97c90f02b2f4906aac2d896", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -37754,105 +37754,105 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "389ad1e74b8941668b9504ff", + "revision": "73d8fca93eb84a78b58b5fc2", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history/1689548630515/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0429.6416.2467.3393-60", - "revision": "1c2b95e2f0d14d179f90baf2", + "revision": "73cb061d38b94284a81b033a", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9b9741dec1dd4f18a2b455ee", + "revision": "de26e8e964504a48afe975d7", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c8f5d46cc0194cd0afe0d59e", + "revision": "cb19b597711b469b9893a32c", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "c5bb40ce79bd4db0a5d6df36", + "revision": "b7486dbb93fb4477b52feace", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/042964162467339360", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1689548492145, "dateValidity": 1689548492145, "totalValue": 0, "currencyType": "USD" }, - "revision": "9db2b1d65dd148ad8fb0489f", + "revision": "796c5d8d12684e32a5ac23dc", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "127146.00000000", "symbol": "IVIP", "value": 13.81 }, - "revision": "a5b7694f294a4f49aebf7536", + "revision": "db8ff807d4fc491aa33abf16", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e47f64925cf846f7963c0e64", + "revision": "c251becd2b1f4fe7a63e0440", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344892, + "modified": 1701809344892 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -37860,16 +37860,16 @@ "value": 1698810290801 } }, - "revision": "2001b2199a3e41039c18322d", + "revision": "ddd7caa1b82642c0b5a990d2", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696218290801, "net_received_amount": 0, @@ -37881,27 +37881,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8313d21260304194badc4097", + "revision": "07add11aa2b74fc2a411d923", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696218290801", - "revision": "a481dac898274468a27e2ec9", + "revision": "432ac93cad1a496f9e999c20", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -37926,27 +37926,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "460f46a68fc7461f809dd303", + "revision": "673e5c1836eb41d4972db825", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696218290801/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 150,00 BRL para a carteira iVip 0441.0726.0739.8660-40", - "revision": "dfe857721460451c86c97744", + "revision": "046cd63f93454550af3f75b6", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -37954,16 +37954,16 @@ "value": 1699104289783 } }, - "revision": "8aa39f1a95914964850bab0b", + "revision": "139379a521684598bde95a09", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696512289784, "net_received_amount": 0, @@ -37975,27 +37975,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "e23b7fa9bd9246f790639c02", + "revision": "bea3b1618b6844a89044aec7", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696512289784", - "revision": "8952372d611e4ff384c02eab", + "revision": "0da9f68abf694aa7be7b76b7", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -38020,27 +38020,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "e11d52e27d074286b710ef34", + "revision": "0915f2ed2984408b9ae8b1e4", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696512289784/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0441.0726.0739.8660-40", - "revision": "79fe6f86428a4be192d942e9", + "revision": "5bf8cb26b9a14156ba937ffe", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -38048,16 +38048,16 @@ "value": 1699277069126 } }, - "revision": "2613a3b7d5e7404db555300b", + "revision": "5b5d67fa99d942dea347f8e1", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696685069127", "net_received_amount": 0, @@ -38069,27 +38069,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "63bf4dc4fd7d46bb89ab9082", + "revision": "dd0a41e155044d14bd5375ce", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696685069127", - "revision": "45dd58eb6eb24c1b8db3f2b8", + "revision": "54c2678034944f3581d8a041", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -38124,27 +38124,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ddb4e54715c741ed8b009fc3", + "revision": "23ffe35c625f448d920f8946", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696685069127/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0441.0726.0739.8660-40", - "revision": "8e96986c37544a4396d48599", + "revision": "86b6616ec0f046959389eb28", "revision_nr": 1, - "created": 1701465820523, - "modified": 1701465820523 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696690479419/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696690479419", "net_received_amount": 0, @@ -38156,27 +38156,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "6cdefe5e9f3b4d78986bc220", + "revision": "bf9854a092014ccca816563e", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696690479419/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696690479419", - "revision": "90b6a5838dfc45a6bb6e4eb2", + "revision": "96da4e92d7834f26b02df48e", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history/1696690479419", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -38206,52 +38206,52 @@ "description": "Compra de 127.146,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "8121b77230da4e2ab86321d0", + "revision": "400dc632169a4a8296e55937", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "90fa2bc5a29b4b2e97e276e2", + "revision": "14bee590c0884fef9e201d77", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a29c4c35840e4457913c3a9d", + "revision": "27964bb9253348959c43d54f", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "119d6cc6702c4221b5ed4523", + "revision": "3e9ce28321084a7bb328bd3a", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044107260739866040", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1696161500774, "dateValidity": 1696161500803, @@ -38261,40 +38261,40 @@ "value": 1696993200000 } }, - "revision": "c605c73557b645c086371fdb", + "revision": "d0bd46e1c74b41eb9209856a", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "af389d031a6847cab522b8c7", + "revision": "d3c7e6e53092426888fc9d72", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "d2960e6b6cca4cf9869f3cff", + "revision": "aa6190cf84244de587ba950b", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -38320,93 +38320,93 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "1a7171bbce854def9bf2153c", + "revision": "064adea7533f496ea516ce48", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history/1678092684774/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0443.9842.9081.9756-60", - "revision": "95383276bfa44faba626b0fe", + "revision": "c06d3e5662aa435bad49be17", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b18ac2480363479996416b61", + "revision": "7c0b0ee053e647a3a641c13c", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/044398429081975660", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678092570010, "dateValidity": 1678110570040, "totalValue": 0, "currencyType": "USD" }, - "revision": "ed7a7219cc5b46a5a4b1a848", + "revision": "2c39c5cb22c74910bdba7ebd", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "615.00000000", "symbol": "IVIP", "value": 0.094 }, - "revision": "b1e54d14f7c34d19b0a0191c", + "revision": "313363fcd75e439c92c5a075", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "cc1af0ce7051418684f9c637", + "revision": "cdfec88dfd6147e29e4a8f92", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "449e68a583d94c5b94b43e95", + "revision": "d8d2cfe730124c10a1038c82", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -38442,40 +38442,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "21d0c7ae9c744e178426c3c1", + "revision": "fbe26fb90ce94989a6ab3e2b", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678363004367/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0451.2281.2371.7113-40", - "revision": "8831c0783316416286f1e49e", + "revision": "4127d4af4b4c4f26bf16d331", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "97bf660396784a98900891e4", + "revision": "b1e2f44964b94929a26720b1", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -38511,27 +38511,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5e1e69f44ed04a448e7f195f", + "revision": "816ddadc58d548cfb0fed139", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1678578646817/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0451.2281.2371.7113-40", - "revision": "fdd0a5f75cf948f08a0c5462", + "revision": "1ec681fd50d54720ab077412", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344893, + "modified": 1701809344893 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1679266969508/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679266969508, @@ -38545,16 +38545,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "a85ea829b64547b8b6f40bca", + "revision": "1676313523e34c66b9e1df19", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1679266969508", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -38584,16 +38584,16 @@ "history_id": 1679266969508, "description": "Compra de 9610615 IVIP por 1650 BRL" }, - "revision": "768fa681ca1c4cd19e1e0b66", + "revision": "3f69a56dffcd45a284c34e5d", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1681517575873/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1681517575873, @@ -38607,16 +38607,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "c129c214a6994298a8d098e7", + "revision": "1aa842a76f964e85a81b3dca", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1681517575873", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -38645,27 +38645,27 @@ "currency_id": "IVIPAY", "history_id": 1681517575873 }, - "revision": "44ecf7ff42ba42fc94d18330", + "revision": "7e06402c82e7487f832597a1", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1681517575873/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 1.000,00 IVIPAY por 100,00 IVIP estabilizando US$ 0,00", - "revision": "fd4be7f2c5a74ec4bf387c0c", + "revision": "714bcebe2e1b4fb8ae032bcb", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685393623279/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685393623279, @@ -38679,16 +38679,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "046a294edff74d6c91d7fa1e", + "revision": "ee60dce6b77a4fdf98d32243", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685393623279", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -38718,16 +38718,16 @@ "history_id": 1685393623279, "description": "Compra de 100,00 IVIP por 1.000,00 IVIPAY" }, - "revision": "cc8173458dd14c019261c6c4", + "revision": "d68ca05b3f544617966aadb3", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685666780649/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685666780649, @@ -38741,16 +38741,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "68ac646c5a084308ac01ce3a", + "revision": "95a27fcd8ebf424bb14f0179", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685666780649", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -38778,27 +38778,27 @@ "currency_id": "IVIP", "history_id": 1685666780649 }, - "revision": "0b25e8e4477f4b668df8baa3", + "revision": "48225ec22a46493bb197f864", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1685666780649/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "091ec72fa47641429d08a8d9", + "revision": "1393385119714538bc804729", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688400356570/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688400356570, @@ -38812,16 +38812,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "8f2148304b074c84989747b1", + "revision": "52dc8fef3084409b88e81550", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688400356570", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -38850,40 +38850,40 @@ "history_id": 1688400356570, "wasDebited": true }, - "revision": "80cbef6b68f84912b56ace49", + "revision": "e8157b0705ce4f9088d7813b", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688400356570/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "309315b606df482e9cf0a2b0", + "revision": "41effc0c96f044a5b09d5b4c", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "9d43256129bc4dd4b2ef57d2", + "revision": "725002c628db4b728ef7501f", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -38919,49 +38919,49 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "045ea29308144320ade4eac0", + "revision": "f8c41441ca764720a2f1cff2", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history/1688402757097/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 9.770.000,00 IVIP para a carteira 0xB33c611edEE4ac91638b50464CB3bfd488551499", - "revision": "49f6c1ad558a4dbf9a1a43cb", + "revision": "b49d9208519e4c4db30318e0", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "63c832a6027d483598023f8d", + "revision": "c29017beab3246e09ee748d4", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8318438583b344a1baa372ea", + "revision": "0f4cd350cc1b422ba6365103", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 3000, "limitUsed": 0, @@ -38974,16 +38974,16 @@ "value": 1680978371033 } }, - "revision": "562a294b657d47ec8b14abcc", + "revision": "48e024f0b0234853a6a45c8b", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045122812371711340", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678330009291, "dateValidity": 1678662517584, @@ -38994,55 +38994,55 @@ "value": 1696561200000 } }, - "revision": "389de308ae194aadb46887a0", + "revision": "52e4748753af4b64a89c423f", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "32771309.00000000", "symbol": "IVIP", "value": 4296.45 }, - "revision": "1211ced6a39c4d088a8eb2e4", + "revision": "946f104484dd4d818ad1092c", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "309ca7a373ce4dc69b37c7cb", + "revision": "016311ac45954e0aa0a31b4f", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "00d75eff754a4c858ee6f654", + "revision": "d038f09ab58d448e861145e4", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -39078,27 +39078,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5bce96e1f7ce4250805e00c9", + "revision": "72e25f99cdb44cdc926b6c23", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678148520442/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", - "revision": "e1d57813b904480c8e61705e", + "revision": "402d8169b2364bc884272713", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678207899775/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678207899775, @@ -39112,16 +39112,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "eddc2c58133a408b810ad64b", + "revision": "c91d93b951784a26bd9874ac", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1678207899775", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -39151,29 +39151,29 @@ "history_id": 1678207899775, "description": "Compra de 28376575 IVIP por 4000 BRL" }, - "revision": "5c9f48e12f074d4497818c0e", + "revision": "080abf252b7f42f3a9a8e2c4", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "90f478cae5d64db0a631455a", + "revision": "69abb42b09d74895a3ee6740", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -39209,40 +39209,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "dbf9fe120d0f412c8d9404b6", + "revision": "999a94b986c94c958d15fe8a", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022785271/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", - "revision": "d269d9cdf3734e829039b323", + "revision": "13563319c07740b9b944783f", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344894, + "modified": 1701809344894 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "27081702fba4418e91182e3c", + "revision": "bc59ab08282248e89bcf5bbb", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -39268,27 +39268,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "a2324d4f02be43aeb017c18f", + "revision": "32576cf6df794624a902fbfd", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689022932520/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", - "revision": "b24bbd15b4f8438ea995fd9f", + "revision": "aae42cd1cc8d4784b5ef9c97", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689025604196/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689025604196, @@ -39302,16 +39302,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "f12650092aad41ea8c46fc8f", + "revision": "5a264e29a89340c9aa2c368e", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689025604196", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -39341,29 +39341,29 @@ "history_id": 1689025604196, "description": "Compra de 3.621.314,00 IVIP por 4.000,00 BRL" }, - "revision": "f9e8ad4b7be04bc49ea87ba6", + "revision": "0e9c0211afac42998c4f1618", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "83837c347030405a9c270435", + "revision": "222be041539b48849cf05f5c", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -39399,27 +39399,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "05510fda32364d4297f386bd", + "revision": "60759824596648e7a6aa970f", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689196978297/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0454.0726.5934.5405-84", - "revision": "d6ca94a30d57452fa247196a", + "revision": "8aa4be3021e24fea809e0247", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689258784601/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689258784601, @@ -39433,16 +39433,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "1c7ed0815502443a8b6bf7b9", + "revision": "2fa6f6cf61c34727b1c9ff58", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history/1689258784601", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -39472,52 +39472,52 @@ "history_id": 1689258784601, "description": "Compra de 773.420,00 IVIP por 2.000,00 BRL" }, - "revision": "fe4e138f1bfa42b4bc21d912", + "revision": "6f320d98f31f4b0b8b696a58", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4087c476a69948de99e6de3d", + "revision": "6b279570ed7d4e2699497134", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "736bba28131242d180d82320", + "revision": "9c11d19b61b04de1b19fcc41", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "93d1a75bfa8b4995b1e11399", + "revision": "b937aebecf8642909f1c686d", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/045407265934540584", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678132398712, "dateValidity": 1678671560774, @@ -39528,101 +39528,101 @@ "value": 1696820400000 } }, - "revision": "98c863c898f44c5c94bb2408", + "revision": "48045ab4821f49e980208003", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/045642520706235200/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "13dcf89921f440799255101d", + "revision": "93324f7095d6406baf97230d", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/045642520706235200/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a79d3bca65264a5ca01bb134", + "revision": "01545a1cebb24d9fa14a1da4", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/045642520706235200", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678565263127, "dateValidity": 1678579663168, "totalValue": 0, "currencyType": "USD" }, - "revision": "195bc7e2de7c4f09aa37dd55", + "revision": "6c15a0066fb9456d878c2185", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/046564008100064220/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3c3d1610a3d0468492cca140", + "revision": "bb328d4952b6487f811a73f7", "revision_nr": 1, - "created": 1701465820524, - "modified": 1701465820524 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/046564008100064220/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ceea7429a25e4bd983c8f92f", + "revision": "995d83e778cb4bef98871f60", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/046564008100064220/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b94d4433723c43c29be5c052", + "revision": "971851fc8b7d4788a91a8ba4", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/046564008100064220/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "f143e8c36f584f2091ddeaa2", + "revision": "0d4eb7ff40cd40f083df3325", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/046564008100064220", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1696462399261, "dateValidity": 1696462399357, @@ -39632,38 +39632,38 @@ "value": 1697166000000 } }, - "revision": "c873f129d2274bdb8437fff9", + "revision": "be08950b45824548862ce6eb", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/047633761232259040/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ca344a3183e34f6b855fb794", + "revision": "bc8fdb9703ca4dbe935fb112", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/047633761232259040/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "02cf604032e34c7ea5992339", + "revision": "fc8912618eb543ca981427bf", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/047633761232259040", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1692582136079, "dateValidity": 1692582136128, @@ -39673,55 +39673,55 @@ "value": 1692500400000 } }, - "revision": "9e0ef5112e5d49b19325d10f", + "revision": "a9691a6c541546338d702c6e", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "8588955.54000000", "symbol": "IVIP", "value": 4678.3 }, - "revision": "52cd3ea2499841c8ad03ccfe", + "revision": "31c1e37919624de0a0ca26d4", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "37c916d11ab04883b61e8e3b", + "revision": "13e44398b2574e14ae33d2ab", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "77c373730a684e3c973d366d", + "revision": "888b9d9f87f643bda73f0122", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -39757,27 +39757,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f0a0565c94414a848221fb17", + "revision": "122f31493ab74c58b9b0ad1f", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1683569771704/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 5.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "75a56179397d4b0b82befda8", + "revision": "9edd654182e7418b9e3a15ad", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344895, + "modified": 1701809344895 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1684018936403/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684018936403, @@ -39791,16 +39791,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "76093f24f4dd46739cd294ae", + "revision": "e5137569f2eb463c9d3e288e", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1684018936403", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -39830,16 +39830,16 @@ "history_id": 1684018936403, "description": "Compra de 27.021.960,00 IVIP por 5.000,00 BRL" }, - "revision": "24a0ae67569c4a3aa85c4ba5", + "revision": "698f243757284284a9e5391f", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688531798249/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688531798249, @@ -39853,16 +39853,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e3ea742a65134b53ae1b24d7", + "revision": "1f59c9f90e0245b8a7ea3e0a", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688531798249", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -39891,40 +39891,40 @@ "history_id": 1688531798249, "wasDebited": true }, - "revision": "ac3d81477dd443a2a60f99af", + "revision": "1a851b77b9574c29b1ad69c5", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688531798249/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 7.668.365,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", - "revision": "178ac829d2e64cbabe5ce047", + "revision": "289fe3311ff745f7bd7ad3ea", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "5e543bb1733d4c43997aec4b", + "revision": "b2a6a341c37e4092864593bc", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -39960,27 +39960,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "70281bddbd1240be88d3d9fa", + "revision": "7412c94616f14a44bd247461", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688647483933/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "fa5eed69ccdb4b5d82c2bd53", + "revision": "29899a58af6f476bb7827e42", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688771723408/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688771723408, @@ -39994,16 +39994,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "0839f604a5ce4263a3801354", + "revision": "e2f602a679074e14bd4abcad", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1688771723408", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -40033,29 +40033,29 @@ "history_id": 1688771723408, "description": "Compra de 823.634,00 IVIP por 500,00 BRL" }, - "revision": "f1a23aef1bb94835a5946796", + "revision": "01318a2a71c6437584a5dfc7", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "34f9d0c3867e4967a7965eea", + "revision": "41be530774794bbfa0dbb497", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -40091,27 +40091,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9a1e40ccdb0e4f349593e340", + "revision": "51324b17dcfd4623af04fe32", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689021558105/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "367827951afa4a23b2bf2490", + "revision": "7f6f037b989e4182a7491199", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689023394597/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689023394597, @@ -40125,16 +40125,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "8a4e6bfcf6dc4e3faf0ed2e3", + "revision": "67a435fcac934cecaf70aafa", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689023394597", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -40164,29 +40164,29 @@ "history_id": 1689023394597, "description": "Compra de 914.949,00 IVIP por 1.000,00 BRL" }, - "revision": "b0a37b016bd2465c8a37e0b4", + "revision": "0335c829bd2e4eafab433937", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "df0d71eb7c51498c99f88a61", + "revision": "9528f4fb5a6a493fb1e1c666", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -40222,27 +40222,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "1400e5a33aa24768aec7779d", + "revision": "80242f9323fa4df6adcd6a20", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689248290301/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "874ee1f1bb824e38968b0793", + "revision": "fc9b385dc75c41249ff0d4c8", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689260053657/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689260053657, @@ -40256,16 +40256,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "f4eb03e84cc144ab8df86dec", + "revision": "5f3e9a18208c485d9b11f7b7", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689260053657", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -40295,16 +40295,16 @@ "history_id": 1689260053657, "description": "Compra de 381.522,00 IVIP por 1.000,00 BRL" }, - "revision": "cd9374b130094811bef47971", + "revision": "32e9dfaf9bc44e1987dcc0f5", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344899, + "modified": 1701809344899 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689301547038/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689301547038, @@ -40318,16 +40318,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "a13ed68381bb4704b189b253", + "revision": "096f38ec91ad44449d696b33", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689301547038", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -40355,40 +40355,40 @@ "currency_id": "IVIP", "history_id": 1689301547038 }, - "revision": "1f42549a1bc34fde89289bf2", + "revision": "0e78f8cac82846e8956eb18c", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689301547038/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 5.008.550,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/13/2025", - "revision": "17814be79e1947c49090af99", + "revision": "64c62354a0b64de394c9d94e", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "822b77334faf4467b78c19e2", + "revision": "de8074ec162f46df9708d013", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -40424,27 +40424,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "679f7446906048f6ae99c546", + "revision": "50a24a447af548af944b2632", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689355287691/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "8b83463962aa4bdd9e816a6a", + "revision": "21a5be4681714faeb393672a", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689356922364/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689356922364, @@ -40458,16 +40458,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "596fab1b88e54027921ce078", + "revision": "174c1c8ca795459d9e82a912", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689356922364", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -40497,16 +40497,16 @@ "history_id": 1689356922364, "description": "Compra de 1.235.586,00 IVIP por 2.000,00 BRL" }, - "revision": "93d45152a6354753a68e30e2", + "revision": "f3d1d7f9cbf54a828910cef4", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -40514,16 +40514,16 @@ "value": 1692459787113 } }, - "revision": "33a221469399405eb4dec9b1", + "revision": "ad873fd66c564fe89e4e59f1", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1689867787119, "net_received_amount": 0, @@ -40535,27 +40535,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b93d2c3399394d3dac159b34", + "revision": "e429493e80c64dbf8cfc2fec", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/extract/047925577230662820/order/1689867787113", - "revision": "09466c3fbedc40cfac247f4d", + "revision": "6e47668aae804c919334311f", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -40579,27 +40579,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "f84cec6cf5674429ac814aa1", + "revision": "886d8eb51cf0436a855aead4", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689867787113/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "ad5c66a96a6f4507961b0383", + "revision": "afe1ebaacaa94ea5856beadd", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -40607,16 +40607,16 @@ "value": 1692534311952 } }, - "revision": "1ce8df985fb149f883eb6891", + "revision": "0d782015c31241679c3f9a48", "revision_nr": 1, - "created": 1701465820525, - "modified": 1701465820525 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1689942311952, "net_received_amount": 0, @@ -40628,27 +40628,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "3acd0896327d455daad35480", + "revision": "6a7d9d1964e54485a67a264c", "revision_nr": 1, - "created": 1701465820527, - "modified": 1701465820527 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1689942311952", - "revision": "25cbc0749cba4c15b57a16f5", + "revision": "4217be8dcc7d4309904c45ae", "revision_nr": 1, - "created": 1701465820527, - "modified": 1701465820527 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -40682,27 +40682,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ba6a45642c9f4b5f81799d02", + "revision": "f7c0a5f1e7724738956de245", "revision_nr": 1, - "created": 1701465820527, - "modified": 1701465820527 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942311952/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "8ababeae3e9b4b3eafddcbec", + "revision": "b9fa755fa9514771808d7e8e", "revision_nr": 1, - "created": 1701465820527, - "modified": 1701465820527 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942442311/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689942442311, @@ -40716,16 +40716,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "1eed17bccd0e47a79bbc0639", + "revision": "a4915798b74745e4b785ac96", "revision_nr": 1, - "created": 1701465820527, - "modified": 1701465820527 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1689942442311", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -40755,16 +40755,16 @@ "history_id": 1689942442311, "description": "Compra de 1.849.758,00 IVIP por 3.000,00 BRL" }, - "revision": "b0c0739558814dccba1d8f77", + "revision": "e182b8aa18364f7eb5273e3f", "revision_nr": 1, - "created": 1701465820527, - "modified": 1701465820527 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -40772,16 +40772,16 @@ "value": 1693792496983 } }, - "revision": "152600e6c9244881984ab9a0", + "revision": "7e901c93e2b547999788925b", "revision_nr": 1, - "created": 1701465820527, - "modified": 1701465820527 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691200496984, "net_received_amount": 0, @@ -40793,27 +40793,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "89b30182d18c414a9b40561f", + "revision": "2f8dcc372bd6452580adb7af", "revision_nr": 1, - "created": 1701465820527, - "modified": 1701465820527 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691200496984", - "revision": "3d1226972ad74d8db49072db", + "revision": "1f713f472a314cd9856ea25c", "revision_nr": 1, - "created": 1701465820527, - "modified": 1701465820527 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -40837,27 +40837,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "c90082d5808946b5be8423b2", + "revision": "8cb29e4d1e644490b27c5a4b", "revision_nr": 1, - "created": 1701465820527, - "modified": 1701465820527 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691200496984/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 2.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "d8dc3e78460b4614a6578fc3", + "revision": "a700691cee5346df92281cd2", "revision_nr": 1, - "created": 1701465820527, - "modified": 1701465820527 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691214286883, "net_received_amount": 0, @@ -40869,27 +40869,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "948f4ea6a47c40a683556603", + "revision": "ee6537de2d254cdea03ca718", "revision_nr": 1, - "created": 1701465820527, - "modified": 1701465820527 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691214286883", - "revision": "f2cdfaf7503a456f9904cd95", + "revision": "72ed411c616843858c67dda9", "revision_nr": 1, - "created": 1701465820527, - "modified": 1701465820527 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -40917,27 +40917,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "68310ee156aa46e3a2453764", + "revision": "0ec2e18cf2c442c1b0504d00", "revision_nr": 1, - "created": 1701465820527, - "modified": 1701465820527 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691214286883/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 7.668.365,00 IVIP com um rendimento de +153.367,3 IVIP (2,00%)", - "revision": "e5a1b1c1bffe44108f5c05a6", + "revision": "dd2b48386d59407a88be7438", "revision_nr": 1, - "created": 1701465820527, - "modified": 1701465820527 + "created": 1701809344900, + "modified": 1701809344900 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -40945,16 +40945,16 @@ "value": 1693845025281 } }, - "revision": "2b94344a09c2445aba42c45e", + "revision": "8ebc5f4f371940198952a732", "revision_nr": 1, - "created": 1701465820527, - "modified": 1701465820527 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691253025281, "net_received_amount": 0, @@ -40966,27 +40966,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f8835b36185244eabe0b5b43", + "revision": "40b8631d8aa0438c803fe374", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691253025281", - "revision": "1bf641a9bad947aebae8a0cf", + "revision": "bc181578c51a469289ac0156", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -41020,27 +41020,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f6cddfb789804a479fa11c07", + "revision": "31273b81480f402d867746da", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691253025281/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 1.500,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "43b901734a40421b8bee8240", + "revision": "c26f62cd0c584bf8991b3d04", "revision_nr": 1, - "created": 1701465820527, - "modified": 1701465820527 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691280221861/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691280221861, "net_received_amount": 0, @@ -41052,27 +41052,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7e89453227c645dd89a370f2", + "revision": "2e8732fdd48f488fbc2d23a1", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691280221861/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691280221861", - "revision": "fb94e602118a4afd9f7c9a50", + "revision": "e2b43e60856541f3a1898c1c", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691280221861", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -41101,16 +41101,16 @@ "description": "Compra de 2.127.119,00 IVIP por 1.500,00 BRL", "status_detail": "accredited" }, - "revision": "2ea4364753084c26845fb7a1", + "revision": "bb029dc83e4b439b813e0c93", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691283205891, "net_received_amount": 0, @@ -41122,27 +41122,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1ef3c7dbf39d4842bbe5dac4", + "revision": "7165ad98967a4b7187426b45", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691283205891", - "revision": "4d19a6557e6749e1a2460968", + "revision": "2c27acf038284fc7ac3b07eb", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -41170,27 +41170,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "3e89ab29656b431091f1f484", + "revision": "f974b658dece478284e526d5", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1691283205891/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 7.769.562,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", - "revision": "19271f78bea54f35a472b74a", + "revision": "46731fda1e094c4cbd79dff4", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693962455688, "net_received_amount": 0, @@ -41202,27 +41202,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "554377d224c84a2c9a032014", + "revision": "5958a87a884144e6acf492d1", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1693962455688", - "revision": "b07f218e16da409599df9e4c", + "revision": "cdbb43b92e974676a36ff180", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -41250,27 +41250,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "39666d0c686b461b8353282d", + "revision": "66039569d96540ceb4da7149", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962455688/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 7.769.562,00 IVIP com um rendimento de +155.391,24 IVIP (2,00%) - Y12XDT27", - "revision": "5e5685c2c0e84d35b48b578f", + "revision": "41886a27c723498d936df197", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693962525967, "net_received_amount": 0, @@ -41282,27 +41282,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "fbd5de2eaedf4e2f926028da", + "revision": "ecd1583c50a04b4fb1b966d3", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1693962525967", - "revision": "08ab9f45fb9d47bdad3499f8", + "revision": "df3ba389d6ea4e07a73956d1", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -41336,27 +41336,27 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "7ac9636cda3840ebbb15e71c", + "revision": "c6642b9cc73644a6b6ce9204", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1693962525967/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 7.931.475,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", - "revision": "e37e6bd9cfe84051b3ed67b2", + "revision": "13c8160ff7b047d197993cbf", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695167532103, "net_received_amount": 0, @@ -41368,27 +41368,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "dc27eb8c764941fe9d98ce8f", + "revision": "9a1b17307bc84d98b7d0aa4a", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1695167532103", - "revision": "44add7a15ba846f5a5e39b36", + "revision": "c29be9ff38ec4e78ad55afd3", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -41422,42 +41422,42 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "0551979cd9ef475699167953", + "revision": "19f99d9b863a4f2b994c2b13", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695167532103/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 19.942.224,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", - "revision": "2c373a11a9164ff0a748b143", + "revision": "abcae3fbf46843099aa1fdac", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 30 }, - "revision": "91036140fb5240308462ff4f", + "revision": "21137fab65d848a0a79e7b68", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695956035041, "net_received_amount": 0, @@ -41468,38 +41468,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "e912f1ed783d4fd4940ddfe7", + "revision": "e16d0e39055245adb7b024e1", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1695956035041", - "revision": "7ff4a68cd4414bfd8fbd1e21", + "revision": "49d3f222a7814aa4aa3f0415", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "d9d98ff54642420fbc9e01aa", + "revision": "67e556e874764d8984da2729", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -41538,42 +41538,42 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "9a90b99fedaf4134950587a1", + "revision": "27560379c565452bb4a131ff", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1695956035041/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 970,00 IVIP para a carteira 0x24f07CBa773a4bF9373E50A5694BAb23E5eF5557", - "revision": "a01b78c2c2e744a58b19d1c1", + "revision": "6b58c0ea82ab43d9ba077a33", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344901, + "modified": 1701809344901 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 651697.8461999999 }, - "revision": "edb6d2e2c14b44769c2355dc", + "revision": "860c6a7092db4b31a870dffd", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696003948025, "net_received_amount": 0, @@ -41584,38 +41584,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "0311eda6b9e14514a457dbdd", + "revision": "52b64914324840d8a674411b", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696003948025", - "revision": "e109c99737cc4b06849d3ca6", + "revision": "8c25d8a69d174f0ba6e52a76", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "c10a6914ce1e4e838ab56b7a", + "revision": "6f43b85f74904f7fb1c0b19f", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -41654,42 +41654,42 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "22e268eddbbe434988570bbc", + "revision": "c860a1eac4fa4af7b093f63d", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696003948025/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 21.071.563,69 IVIP para a carteira 0x24f07CBa773a4bF9373E50A5694BAb23E5eF5557", - "revision": "eb55e48223be4cdb89ee0982", + "revision": "dd923d564c8c4574a46a9073", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 304593.12 }, - "revision": "0cac3e2269344c53a206c459", + "revision": "13d012ad17e44f0c93a199de", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696207958470, "net_received_amount": 0, @@ -41700,38 +41700,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "58a868b61e3044c49ffde431", + "revision": "ee149aede1654eb3985891fb", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696207958470", - "revision": "259ce2d5ca1e4fcfa48c1a95", + "revision": "b07ea29f58724d129e5c2202", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "4e9b779fced84946b3b85b86", + "revision": "71316840d80c4b4e95b54599", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -41766,42 +41766,42 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "3c2ff718258f44d8b1834fef", + "revision": "5581c210696345fcad3ca29a", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696207958470/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 9.848.510,88 IVIP para a carteira 0x8de82EE9234B9dF85A4CBc083E49A0B8Db0D4aD1", - "revision": "622b72f29f6b4d1ab95eebac", + "revision": "98757999299d4f8eb6a95d99", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 600892.0499999999 }, - "revision": "6a0a8a63a1f243749005f25b", + "revision": "3b1bb1d7fb644980b15e9faa", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696471625534, "net_received_amount": 0, @@ -41812,38 +41812,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "2ee42720cd49401c98cef070", + "revision": "7d04ac68216244e0a6b8c1c6", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471625534", - "revision": "6ab9ef13bf2847308bf9df12", + "revision": "447cdf64a93a44708309b104", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "86581da7d29e423fa365cf2f", + "revision": "f51f12378ff640af9d58f0e4", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -41882,27 +41882,27 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "809f25cb802c42b28a54f7be", + "revision": "e8cd2685aa334a93a74782ce", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471625534/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 19.428.842,95 IVIP para a carteira 0x8de82EE9234B9dF85A4CBc083E49A0B8Db0D4aD1", - "revision": "d102e54b6d7e4209aab88987", + "revision": "59c9a3d6aae2457db564b791", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696471870838, "net_received_amount": 0, @@ -41914,27 +41914,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "090982bd30c940dc98eb033d", + "revision": "b8e286f36f40424c9dabe1c5", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471870838", - "revision": "7cc2363de7764d99883973a6", + "revision": "792cccd0cd3a497ebd492472", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -41963,27 +41963,27 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_call_for_authorize" }, - "revision": "52941e5429874758a3cfd96f", + "revision": "93d6000e5a5843e2a520605e", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471870838/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 7.931.207,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "9509584cc4f6496d9d8b1cf4", + "revision": "0fb4ad1fd9a047d9bd2c59a9", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696471977293, "net_received_amount": 0, @@ -41995,27 +41995,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "6664f51812654abf9cf65050", + "revision": "6a995bf2639f4ec3b1537b59", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471977293", - "revision": "1ab5e215d55d47cabdef298e", + "revision": "87b5766ec9934ce6b43eb55e", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -42044,49 +42044,49 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "7b615a2dd0454cb7a3266ba2", + "revision": "1dd35b2269234c0d84c510f3", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history/1696471977293/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.035.046,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "4c783df3a378481c8007e1e3", + "revision": "c8eccf8515434dec873394da", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5d098488d0f04de1b4a28297", + "revision": "0f3563b2839c4830953b33ea", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "90b731524c9b442790b878de", + "revision": "5d86db1466d44cec8adba7a5", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0, @@ -42095,16 +42095,16 @@ "value": 1695957287898 } }, - "revision": "99b625866d0348a4ba3e66a9", + "revision": "094cfc14495445339b0aff36", "revision_nr": 1, - "created": 1701465820528, - "modified": 1701465820528 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/047925577230662820", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1683569670949, "dateValidity": 1683569670949, @@ -42115,93 +42115,93 @@ "value": 1697338800000 } }, - "revision": "6bb288110f9046d5ba75ebd4", + "revision": "1ca361e3eece40c4883f8462", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/049717311460128590/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "678bcd0d6083441083d707b1", + "revision": "33f760ae4cbf4d7fb24d24ba", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/049717311460128590/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "f3d9ca68cb1d450d90e1fe13", + "revision": "922eb6fc7c724d60aabcd20e", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/049717311460128590", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678063274590, "dateValidity": 1678170667714, "totalValue": 0, "currencyType": "USD" }, - "revision": "ca94dcaa0cb345138313aff2", + "revision": "f0cd6f2a53414458a799cadc", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "1392927.00000000", "symbol": "IVIP", "value": 149.3 }, - "revision": "80e76cceb4fd46d4b7a329c4", + "revision": "4d1397f506f44ddbab6c5f05", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4a51dfd216ec4630bf3e094a", + "revision": "5f9f95bc04684e0c9e184732", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "7f01352bcecd41f7b7aab790", + "revision": "3b97af9f0c7c4f12802a608d", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -42237,40 +42237,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "07b06e01ecad482690bd4c5b", + "revision": "57cbcbb978824651a559d45b", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232470571/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", - "revision": "8cbd936885204e1596c65aa0", + "revision": "c13569746ef9408c86161846", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344902, + "modified": 1701809344902 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "f2ce7113e21e45698ec35a4d", + "revision": "be53b43cce8c41b18b7818d4", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -42296,27 +42296,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "d322442a2d704bbc8f879c11", + "revision": "0558a652a6ab4bd4b474e3df", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679232566671/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", - "revision": "a115b71c9427477b96f5096e", + "revision": "d3bb9d61b9cc4a8a9e49f93f", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679871668854/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679871668854, @@ -42330,16 +42330,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e946567094684fa9ae17e91e", + "revision": "62d5568bb0a74326a00a67b5", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1679871668854", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -42369,29 +42369,29 @@ "history_id": 1679871668854, "description": "Compra de 1.597.688,00 IVIP por 300,00 BRL" }, - "revision": "26db4d0237b94276b16fc846", + "revision": "cc698284c9c547e09b5c08cf", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "15cda221201a4eaca88f0de0", + "revision": "bcb56e8a9f194233ac87917b", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -42427,27 +42427,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d52b43be638848549d73c8cc", + "revision": "27b6455dc23547bd96b4a0a4", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684190255075/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", - "revision": "a0ad98804c49441dbeee8a4f", + "revision": "3c2e9c7e9b0b4add96e9145e", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684624205744/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624205744, @@ -42461,16 +42461,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "7b66f099f4b84bc79197fdbd", + "revision": "899d17833df5461c91834cf1", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1684624205744", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -42500,16 +42500,16 @@ "history_id": 1684624205744, "description": "Compra de 1.461.219,00 IVIP por 300,00 BRL" }, - "revision": "21534252067241aca8d1d35e", + "revision": "1c42b1f54ce74c768b096cef", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353262267/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1686353262267, @@ -42523,16 +42523,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "3755063c81b844fc8b1af1ae", + "revision": "47933886512e43709f163ebe", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353262267", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -42561,27 +42561,27 @@ "history_id": 1686353262267, "wasDebited": true }, - "revision": "53aeb29470064228986e2102", + "revision": "01a4abe6840b475689654a9f", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353262267/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/9/2023", - "revision": "fd6ad083600d47f4ac8613c2", + "revision": "e9f02c8e3f8740b8913b7305", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353693526/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1686353693526, @@ -42595,16 +42595,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "74f00a62f3564bb6a2198d9a", + "revision": "743244f497244c2eaa148d93", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353693526", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -42633,27 +42633,27 @@ "history_id": 1686353693526, "wasDebited": true }, - "revision": "a96b3129d51a4cc5a785204c", + "revision": "43faf5b743af4fc186677cc4", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686353693526/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/9/2023", - "revision": "730a3cc5968b4dc3ac7cb4a9", + "revision": "651a372610ac4980ae0ad20e", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686657739276/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1686657739276, @@ -42667,16 +42667,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "370e12534fa74dd58131d0c3", + "revision": "15150cd80c6249d3801ab9fc", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686657739276", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -42704,27 +42704,27 @@ "currency_id": "IVIP", "history_id": 1686657739276 }, - "revision": "aed6343765be4f8db3aac861", + "revision": "6fd86bf4b21f473eac5016b8", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1686657739276/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/13/2024", - "revision": "5ee69393fa91483d9768586d", + "revision": "e85317da6d224fb79e3ee5f2", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363201264/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687363201264, @@ -42738,16 +42738,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "58ae0779e87b41e594b0d739", + "revision": "b1772fef67c548628cdf1ed7", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363201264", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -42775,27 +42775,27 @@ "currency_id": "IVIP", "history_id": 1687363201264 }, - "revision": "621b7baa1be84ea489508c3b", + "revision": "9b5b949fe06c4254b6addf4f", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363201264/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 500.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2024", - "revision": "479db855b7bc4c26bd3ac626", + "revision": "ea6ace501e11431aba297c2b", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363301418/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687363301418, @@ -42809,16 +42809,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "59e8257a4e3647b9b8fbe4ec", + "revision": "9fab696a622d4878a0f528eb", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363301418", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -42846,27 +42846,27 @@ "currency_id": "IVIP", "history_id": 1687363301418 }, - "revision": "c6499f0f78cb49f89d6a1acf", + "revision": "73fb1a45d2dd421299bea208", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1687363301418/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2025", - "revision": "cbb1144af194439b984a3ea5", + "revision": "34e00d78e8bc4a29a7f3a6a4", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1689804806407/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689804806407, @@ -42880,16 +42880,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "9f95ea60d9e84269ad208e64", + "revision": "47b3aea9f7804b38a098693f", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1689804806407", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -42918,27 +42918,27 @@ "history_id": 1689804806407, "wasDebited": true }, - "revision": "649c4e2bf1354066b2b45d67", + "revision": "12936cef32b245099f7fbb10", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1689804806407/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%)", - "revision": "cacff3fdcb604a90ba9f71e4", + "revision": "c11d2285279f4139b7bbd3f7", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344903, + "modified": 1701809344903 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690414261722, "net_received_amount": 0, @@ -42950,27 +42950,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "6ca26b44a47c47fd951385fd", + "revision": "633527c3d8e84e48b5429f26", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1690414261722", - "revision": "2efa3c0d09ea43e9984decf6", + "revision": "09be1dbc262343ce87a22242", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -42998,27 +42998,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "8eaea3c72ae648239fc96256", + "revision": "e3a9550904fc4df88bac422b", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1690414261722/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 100.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/26/2023", - "revision": "bd40920480a7495d8cb8152b", + "revision": "73103c3e3c9d433893b2c3d3", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693093011374, "net_received_amount": 0, @@ -43030,27 +43030,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "86e46c45f1c5415e909a7435", + "revision": "742c4d152cce4285bf517176", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693093011374", - "revision": "c596e1d5eba54c8787b54b27", + "revision": "f2f62d6be0004c798b986ef3", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -43078,42 +43078,42 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "2180ea1818dd47699db02088", + "revision": "cb086dc1ba164ba986987ee0", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693093011374/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 100.000,00 IVIP com um rendimento de +2.000,00 IVIP (2,00%)", - "revision": "de4d89981550448894d8bc67", + "revision": "5e94a1fa30f642b19248892d", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 3000 }, - "revision": "6d6bce1a261a40f99e349cae", + "revision": "e4455c2b46ab499c87e117e3", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693173218030, "net_received_amount": 0, @@ -43124,38 +43124,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "5075aa878f984b778b024ca0", + "revision": "318ec8d85a5b4ee6961ea20e", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693173218030", - "revision": "26c5f27cdf9143398a9997f3", + "revision": "1f36cb40ebce44ed8edb0306", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "8f89926d888741548445789f", + "revision": "40b50d20f8ba44bb9f0ee65a", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -43193,27 +43193,27 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "a45918f36fbe4234b6d89239", + "revision": "c16b917b0df64f17bcc2908b", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693173218030/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 97.000,00 IVIP para a carteira 0x984b739d05a74462Ab9171EDF8Be5CDDa7fF8c26", - "revision": "0ddd674b117e4ba89ca6fa87", + "revision": "555d5f1e9c1a48f8b8f105f9", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693228740965, "net_received_amount": 0, @@ -43225,27 +43225,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "efef37b1587d439fa82a3595", + "revision": "07bf8c85939f4d428d56e1f4", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693228740965", - "revision": "ffe567ba06394ebd8652fbcc", + "revision": "d1d81876247248ddad899791", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -43273,27 +43273,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "2ede1d9d25404f169da722e1", + "revision": "f3897ead353f4d0c9415342b", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1693228740965/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 800.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/28/2023", - "revision": "6c45354498cd451b9c3f1f86", + "revision": "05498aed51324d27ba4c852d", "revision_nr": 1, - "created": 1701465820529, - "modified": 1701465820529 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695907162897, "net_received_amount": 0, @@ -43305,27 +43305,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ae7a9a909ddc4c35a518e432", + "revision": "4d598afacdf74dd682eca191", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1695907162897", - "revision": "21450229036d415b9d9238b7", + "revision": "81be45a9e5f14373bfd89201", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -43354,27 +43354,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "05078ef622df42518c64ed92", + "revision": "de447dcf79e847db864504aa", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695907162897/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 800.000,00 IVIP com um rendimento de +16.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "efb028e775b247d1ad1905af", + "revision": "906f51c97cf24dc3ab0c896a", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695925845472, "net_received_amount": 0, @@ -43386,27 +43386,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ec28e2519c084a55aa7f6b5a", + "revision": "a36a0180ec7f42ec8eaf7f9e", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1695925845472", - "revision": "500645558c6a40be853d7af2", + "revision": "ae721a818fae473c8926afa6", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -43435,49 +43435,49 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "e608ced71f2940d8ac27f87a", + "revision": "53dae71e2aeb4e6ba79adc7b", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history/1695925845472/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 80.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 28/10/2023 - Y12XDT27", - "revision": "e3f27859c1e145e392c8d44e", + "revision": "e5bfbd1e108a492084d075ba", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "59fc7cd057ab4ac0ac1003c7", + "revision": "b006af7814fa415091fb9f1c", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "87bebcc31bbf4684b8c13d90", + "revision": "4cb6ec42885a49c99979dabd", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0, @@ -43486,16 +43486,16 @@ "value": 1695926116598 } }, - "revision": "6fc4864d84aa4a7995176da3", + "revision": "ac589648752c4a0496d46778", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050149211466839150", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1679096727973, "dateValidity": 1679096727973, @@ -43506,55 +43506,55 @@ "value": 1697252400000 } }, - "revision": "00224efce16b462686daa96c", + "revision": "40dce9121f1e42b4920eb98a", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "48500.00000000", "symbol": "IVIP", "value": 7.28 }, - "revision": "af5f0216f6854d648bec6e2a", + "revision": "cba8ee1e7aad464bb1585c69", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8cbdf976cc1d4928bde16f5e", + "revision": "10f3166a505e44c891d16750", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "779366c1dfdf473ba4b3e184", + "revision": "0ba847da14524bbeacc884a2", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -43590,40 +43590,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "6bfa3e7a0b454f10bc408b45", + "revision": "829af264ad0b41d5abd2f427", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145412146/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0502.9485.5698.2423-30", - "revision": "ed516bed122a4261a02b2089", + "revision": "e0e4892e33994ba995fc0c16", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344904, + "modified": 1701809344904 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "7e293a1dc4a94d41b6292d93", + "revision": "04aa4162e24142eb8f87a1c2", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -43659,40 +43659,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "04f9980c2d43412aac957576", + "revision": "dd038f67cea6437798efc377", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678043796128/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0502.9485.5698.2423-30", - "revision": "c2b49a346a2e4bd8ac1dd695", + "revision": "c8d993019af04409843a7084", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "2045ee6636ce46b594b426c0", + "revision": "3aabff4f90d84c178fba71d4", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -43728,27 +43728,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f94b28a6066841a180d18778", + "revision": "22fe6efd306447d6aa2903fc", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1677774543947/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0502.9485.5698.2423-30", - "revision": "9fcf7fe785c54c68bd8a6228", + "revision": "2646350de85b4f97a04ddf50", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145303669/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678145303669, @@ -43762,16 +43762,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "9fb50a27c7654dc3b536b1df", + "revision": "4082ba6005c9414695d36251", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678145303669", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -43801,16 +43801,16 @@ "history_id": 1678145303669, "description": "Compra de 14284655 IVIP por 2000 BRL" }, - "revision": "457be54433e449dca2f8f507", + "revision": "8a6c251320274a8891cd105d", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678220742550/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678220742550, @@ -43824,16 +43824,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "0c89c8c932084028bf4aebae", + "revision": "e0c3be818553453b8e8ac353", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1678220742550", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -43863,29 +43863,29 @@ "history_id": 1678220742550, "description": "Compra de 14195700 IVIP por 2000 BRL" }, - "revision": "c467d355dd7f4396b79a7a28", + "revision": "24dfe41fd9ad447d94bd9654", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "e79eb4d78e65499fa316d4b0", + "revision": "112f7d25c28642ee903d0aa4", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -43916,40 +43916,40 @@ }, "money_release_status": "rejected" }, - "revision": "cd819bc557854858943de976", + "revision": "b5db090bbd4349acb85fd6fa", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128267183/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 14.038.113,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", - "revision": "7900efd995ee49539c0c9612", + "revision": "e839cfd417464ca8a76be606", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "944b679b6c4240209e338040", + "revision": "498c02ef28224a04899047ad", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -43980,27 +43980,27 @@ }, "money_release_status": "rejected" }, - "revision": "e06fefb4e5d543a883d18435", + "revision": "f07060d2121947ab8f1e49f0", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686128970156/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 28.480.355,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", - "revision": "363fda8111824a059660c38e", + "revision": "a75c57bb19ab40a7a0852e00", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190557366/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1686190557366, @@ -44014,16 +44014,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "4eedbda85aa94e08bafc2bf0", + "revision": "4e477cabdbf142ca9674f450", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190557366", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -44051,27 +44051,27 @@ "currency_id": "IVIP", "history_id": 1686190557366 }, - "revision": "f2aa9ce8cd9f4c7987e7c6f8", + "revision": "a996c440c26446778fca6124", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190557366/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 50.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/7/2025", - "revision": "8cfedef0813146cf813e02e1", + "revision": "b97ace19cb5e47b3944a35e1", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190633022/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1686190633022, @@ -44085,16 +44085,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d8a3e499295a4350a90aa585", + "revision": "a3fee2a782c6483e93bfef32", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190633022", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -44122,27 +44122,27 @@ "currency_id": "IVIP", "history_id": 1686190633022 }, - "revision": "b63559d3edf54c5c9a3fca36", + "revision": "5d34668406434d87a7601d16", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190633022/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 30.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/7/2024", - "revision": "f2b2c369f5694f9aa3f59d00", + "revision": "ac7ba5d3b1c2463eaa692025", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190671429/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1686190671429, @@ -44156,16 +44156,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d364fc9607024c419629c6a7", + "revision": "15934b4a68184482a6371363", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190671429", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -44193,27 +44193,27 @@ "currency_id": "IVIP", "history_id": 1686190671429 }, - "revision": "495422bdec334f4884e0c66a", + "revision": "bc5c48febf3d456cb05746ab", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190671429/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 50.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/7/2023", - "revision": "1d599eb9ccf14db1b1fbd91e", + "revision": "4df4866fccfa4d9991655bbb", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190710908/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1686190710908, @@ -44227,16 +44227,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b07b7033ea824236a5be6717", + "revision": "f83ef8990cd94f68ba42f601", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190710908", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -44264,27 +44264,27 @@ "currency_id": "IVIP", "history_id": 1686190710908 }, - "revision": "fe716f6008d04c288b29a038", + "revision": "6ceb6d0c18274cfd99f6880f", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1686190710908/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 30.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/7/2023", - "revision": "9747f25cc3d3440faca364e3", + "revision": "25fd6be503c74c708713b210", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1687472497935/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687472497935, @@ -44298,16 +44298,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "07b7b5795e6841e2a4ab24a8", + "revision": "34df3d197a494c1e9255270b", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1687472497935", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -44335,40 +44335,40 @@ "currency_id": "IVIP", "history_id": 1687472497935 }, - "revision": "07b6e0a5f3094995b974fabd", + "revision": "b75af2577553423b9438b906", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1687472497935/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 14.524.522,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/22/2025", - "revision": "b1abf88f0baa4b0c94a696e3", + "revision": "db7f41666ec24e919d8103f4", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344905, + "modified": 1701809344905 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "dd0b1b9b31bc4504aea243c9", + "revision": "4fa514bd5a454ea187a973bd", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -44404,27 +44404,27 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "8d929e3cf0594ab69dd9fdf7", + "revision": "77c664c8a3a24c09aa819d8a", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1688575377865/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 13.795.833,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", - "revision": "7f3fb48f797940f38b136a17", + "revision": "44bc5bdd815c4b83a3eacf43", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1689804799815/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689804799815, @@ -44438,16 +44438,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "f058cce1423f477684de6c6d", + "revision": "b761caa532674b93b304abdd", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1689804799815", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -44476,27 +44476,27 @@ "history_id": 1689804799815, "wasDebited": true }, - "revision": "d2dcaf8286214009aab2e6bc", + "revision": "8bb78e9e59b9408fa59e1f3a", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1689804799815/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 30.000,00 IVIP com um rendimento de +600,00 IVIP (2,00%)", - "revision": "905a7910a99941b28f428222", + "revision": "77e6187373ac4c0cbce8dc44", "revision_nr": 1, - "created": 1701465820530, - "modified": 1701465820530 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690467644472, "net_received_amount": 0, @@ -44508,27 +44508,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b228e4734d5d4568b67c285f", + "revision": "5065dfa5df2647f4be94dc66", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1690467644472", - "revision": "62acc021927840f9bb374f70", + "revision": "4b543ed210334e8cb0a2c9bd", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -44556,27 +44556,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "9be94c9b47f8465e95586e73", + "revision": "a21abac7e0e14f67aba4211a", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1690467644472/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 30.600,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/27/2023", - "revision": "1db3ef13ece146908ae2ddd8", + "revision": "a2140a3827d6486783831302", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693147070930, "net_received_amount": 0, @@ -44588,27 +44588,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "285755ff8ad94f5e9d2aa373", + "revision": "0a2c846a67134041ad640098", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1693147070930", - "revision": "4178d1c5b2f6450f9a29f791", + "revision": "680be5717ba94c2e9b1c1906", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -44636,27 +44636,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "99b5aa34bc7149dd88acb9d4", + "revision": "f5f9f7c7b48444c3b4b90fb4", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693147070930/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 30.600,00 IVIP com um rendimento de +612,00 IVIP (2,00%)", - "revision": "ec42fa99bd884e919ff1f865", + "revision": "26671ac566e448809afe7352", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693780247117, "net_received_amount": 0, @@ -44668,27 +44668,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "87ff64ba31b5492395737976", + "revision": "9b361878ba03470d8d772223", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1693780247117", - "revision": "60cd04edf665454abffd63bf", + "revision": "7ae487aab88c43758ee272b0", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -44716,27 +44716,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "27f258e6a02942d59a538bb0", + "revision": "c86738d22aed4c84ba215eff", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1693780247117/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 2.500,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "30e2571b3d044c95808a247e", + "revision": "fc34a85e2fc643eea1c6991f", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696382633982, "net_received_amount": 0, @@ -44748,27 +44748,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "e635396aa55e48969407deb0", + "revision": "6ae29dc0cfc14f9eab66d0f7", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696382633982", - "revision": "cd7ae4d3dddc45f7bcac8edc", + "revision": "46568aebc7b745ed9536c4bf", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -44797,27 +44797,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "92ed61605b3b4de496c389ee", + "revision": "a3f2a3eb72504f6ab84fcc48", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696382633982/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "a5d7ae4b626d4320869a84d4", + "revision": "e31b1282ed964285b65db62b", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696384242905, "net_received_amount": 0, @@ -44829,27 +44829,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1e59d7ccdfce425691e2307c", + "revision": "df99f21c209f466c88a5ab86", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242905", - "revision": "054aa0767255496bbb3a48a9", + "revision": "c6aeac155a144826a032713b", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -44878,27 +44878,27 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "fa81c83429784d3f8c74c9b7", + "revision": "4363b39d9e5f4470aa247ea2", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242905/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "d7c43de23bff49238d8320f4", + "revision": "99e58694ca8e43019373f185", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696384242925, "net_received_amount": 0, @@ -44910,27 +44910,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b2a1e9f765c7442bba6f3ef1", + "revision": "4ca0a53f71cf4746946f28c5", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242925", - "revision": "11e528f8c74647688eb3c56f", + "revision": "b8c4056ca2ff4cea82e47964", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -44959,27 +44959,27 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "e23894b0a71a4a439931675d", + "revision": "7e92ad7347704458947cb7d9", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242925/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "53caa0e75c7c40bebb9631d1", + "revision": "a0525fcd454a431b8194b53b", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344906, + "modified": 1701809344906 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696384242931, "net_received_amount": 0, @@ -44991,27 +44991,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7794af8bd00e45dfa3692766", + "revision": "982b60116744454eba9de678", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242931", - "revision": "86606fc63afd48acaf55e635", + "revision": "e4b0fdb9a95c441f836ed0fb", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -45040,27 +45040,27 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "8dc0842b041e4563acce870c", + "revision": "79f5df1786a54e2ca38355dd", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384242931/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "c462cccbfe524b518478c142", + "revision": "4c0663bfdad3447a9aafce3e", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696384243125, "net_received_amount": 0, @@ -45072,27 +45072,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f66193f1d7894e01847879b5", + "revision": "560ca09d1d7d4c22bd0686da", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384243125", - "revision": "667d1d5dbd634d67935d1423", + "revision": "49b8459115544a16a4e6c90c", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -45121,27 +45121,27 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "7fb3225bd0594ecfa135fa75", + "revision": "d7bb00c890034c8b80a001e9", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243125/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "3d87786b6bb7440dbc43b281", + "revision": "1c9bfdb3327a41de94ceaac9", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696384243425, "net_received_amount": 0, @@ -45153,27 +45153,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "94b0be5606d64552b8c6b774", + "revision": "69321233c642451da53503b1", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384243425", - "revision": "a8f3cbc40fad4704bec8dbca", + "revision": "b3fa24d8271d4e3da61cc6f4", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -45202,27 +45202,27 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "36f848cb71044f70aafc6e36", + "revision": "aefb788d1974431598c15564", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384243425/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "5ae3953b061f45efaa180037", + "revision": "04c1e1f0d2ad4e49bee13a97", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696384244783, "net_received_amount": 0, @@ -45234,27 +45234,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "fb8b78bc14cd4a508ef6c274", + "revision": "28c28002d19f445c82576920", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384244783", - "revision": "8f324fefb3be4a35ae984619", + "revision": "1bc9f21fe52349f69662a38f", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -45283,27 +45283,27 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "aaff6c1ebf1a4d90a19c5abd", + "revision": "e31afc3377824685a38ac499", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244783/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "85618e7378ac4266b343413e", + "revision": "ce1c65ddf72f4b409fac27fc", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696384244885, "net_received_amount": 0, @@ -45315,27 +45315,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b804ef680b744344bdd2c3d9", + "revision": "02f58d4914c74f2c9ca248eb", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384244885", - "revision": "8a71fd8611d946e3b5c3f0d3", + "revision": "f18611f273244972aa6d41ee", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -45364,170 +45364,170 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "bf6fe2c58662435db0706ae0", + "revision": "643cbb1b54d64b76a55e24b1", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history/1696384244885/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "c26f3c94dc88443b8ca37e43", + "revision": "7e477edda7be4b0d92c5c0bc", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4c9089ad149d4791887685dd", + "revision": "4c1fcc5b23b349ab81d9af41", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "44efcc2f2e114e91968fe95e", + "revision": "d1455fbb8f944d35aa254546", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "c5af1b0b8fe04bf185493f6b", + "revision": "5ea4a03fba2d4115ba5f5cf6", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050294855698242330", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677774434896, "dateValidity": 1678238494873, "totalValue": 9.579933648427893, "currencyType": "USD" }, - "revision": "a8eb21fee89b4cee96e256e1", + "revision": "892e54f0fbcf4fe887f67565", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050395970230084904/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "af424c14f89f49af96582fa3", + "revision": "027600a10b134ac8a2e3dd20", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050395970230084904/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5999f7e25dac4445b21043cd", + "revision": "718f71d0744d4062b76dd005", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/050395970230084904", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1696468517081, "dateValidity": 1696468517276, "currencyType": "USD" }, - "revision": "7f5352545d7b41698e4bfbfb", + "revision": "915eba09c0c042a9b52fb6c2", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, - "revision": "15d1054b258e41c29de7c01f", + "revision": "e143f011a3124068ba06e744", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "812799.00000000", "symbol": "IVIP", "value": 263.24 }, - "revision": "47549bb2d2b3468aa3014728", + "revision": "47dd892c442f4c2a8c9fe4fd", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9c1c8b56fb264f65b10bf2f3", + "revision": "1c651ae953994791874a68a6", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "5986d7d8657c4303ab1c1bea", + "revision": "fc8f22e44c2146f2b1d8955d", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -45563,40 +45563,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3d905316489147bc8beef95c", + "revision": "43c3ec0740f34212859c5c76", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1678221951810/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0532.9875.7978.5992-90", - "revision": "913d2f8ec36046c89a0fc720", + "revision": "6b2526c5c9a14dddb3a3c4fc", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "d67a5a61225842c0861cc22d", + "revision": "92cbb6af0dcd4701ab5c4eee", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -45632,40 +45632,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ff74ff219b51481b9fd1db5d", + "revision": "a873eeb15af04d8ebf00e136", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009072784/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0532.9875.7978.5992-90", - "revision": "1f12f894d68448dda9fbf279", + "revision": "0759b6f3421741a1862b5166", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344907, + "modified": 1701809344907 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "9ad52c39339c416184fa3dc2", + "revision": "25d2696bf3bc42789e857d3a", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344908, + "modified": 1701809344908 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -45696,27 +45696,27 @@ }, "money_release_status": "rejected" }, - "revision": "52e871215c8c48b1a6726853", + "revision": "e728dddf52e94ddbba2a23f3", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344908, + "modified": 1701809344908 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1679009122145/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0532.9875.7978.5992-90", - "revision": "ee8471aea5cc4baab1d54db7", + "revision": "f1b4928008b4486eb4c600b7", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344908, + "modified": 1701809344908 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1680059811857/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1680059811857, @@ -45730,16 +45730,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "1302e54e384d48ddb242b786", + "revision": "0011e5193bdb44a29c7a0945", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344908, + "modified": 1701809344908 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1680059811857", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -45769,29 +45769,29 @@ "history_id": 1680059811857, "description": "Compra de 812.799,00 IVIP por 150,00 BRL" }, - "revision": "1deefdab99664aec90ce0d77", + "revision": "44b36b28f11a4919ac8acdef", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344908, + "modified": 1701809344908 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "8cf3044d9b034aebb72c1062", + "revision": "736b320b5d9c4a1788aba5f7", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -45817,63 +45817,63 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "0e4b7179f98e4a8694342cfb", + "revision": "340f47bd0bee492a897caad0", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history/1687793732463/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 812.799,00 IVIP para a carteira 0x76DD50e5E925D29D22251e5b2A71bBB9b5672254", - "revision": "17d56eee862f4f1493171983", + "revision": "d78e2d9444914739bf324df1", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9996ee6c88e742f7abf89eb2", + "revision": "9a3b1ccb0ed3427a8c79f4bd", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "554d1b9157734c51b0d22264", + "revision": "e78b9e3d524b4a50bd21f562", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "c9a01b1ef73a4c85a836a5d9", + "revision": "20a4ad890a2c43f0b3e1b9f5", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/053298757978599290", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678221202102, "dateValidity": 1679026523803, @@ -45881,55 +45881,55 @@ "currencyType": "USD", "balancesModificacao": 1689822000000 }, - "revision": "f9c5191a961a45e5bd234f7d", + "revision": "add664831b604799892f362d", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "51023.00000000", "symbol": "IVIP", "value": 6.23 }, - "revision": "46eb0f8a3b204fffb795a83e", + "revision": "857e7bdca32c481da2a7afde", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "d3cc36373c5c443db49d2a04", + "revision": "74afc560aea948c99d34ae7a", "revision_nr": 1, - "created": 1701465820531, - "modified": 1701465820531 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "99345887ab8c4b31b1711634", + "revision": "c1012791f4cd4d328afc1b32", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -45965,27 +45965,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "4506d5664e794a98a2ce34b9", + "revision": "174c948b12664b2d9889f1f7", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689173674893/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 120,00 para a carteira iVip 0543.4133.5642.4860-00", - "revision": "1ae5145160354db7b6582877", + "revision": "596aae35b0254cf38c994500", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689182033050/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689182033050, @@ -45999,16 +45999,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "158fb6e789fe4229b901420d", + "revision": "3bcba53efb824e8f97dcc4e8", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history/1689182033050", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -46038,52 +46038,52 @@ "history_id": 1689182033050, "description": "Compra de 51.023,00 IVIP por 120,00 BRL" }, - "revision": "775a51f127bd462ea9309939", + "revision": "91bd83c38531429ba1fb75a3", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "f7696b20e1d842e1b8ef907c", + "revision": "467f94360c534ed9b8a2e66d", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "798c3b7f8c194886abc04471", + "revision": "e8d2d38e03314b9289ec3fb1", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "b7e802e4d9f6442980c488a1", + "revision": "7b38229cfdbc4aa3beb85c2a", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/054341335642486000", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1689173582935, "dateValidity": 1689173582935, @@ -46094,27 +46094,27 @@ "value": 1696906800000 } }, - "revision": "92f0bcfad6354bab98ffe543", + "revision": "edac48c2989448b8a4d02fe7", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e696a613af624fcaa9917dff", + "revision": "a19026c221ed41c9940d6ca2", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -46122,16 +46122,16 @@ "value": 1699670706134 } }, - "revision": "e5019ecc3351464da076dba4", + "revision": "9abb56d09d4d4d50a724b292", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1697078706134", "net_received_amount": 0, @@ -46143,27 +46143,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "85330c5501aa476bb2faa544", + "revision": "364cd447d1124a81927fdd68", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697078706134", - "revision": "5dc496ef3707491180d0fa02", + "revision": "94413af8c2b34cf28c2e8241", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -46198,27 +46198,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "40297cc32e39483cad6ed930", + "revision": "b69c2c1a6e354c2394d40eba", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697078706134/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 99.635,85 IVIP para a carteira iVip 0556.4401.2114.1117-40", - "revision": "6b5a1495e48b4a4cbddd9160", + "revision": "f90aa9baa3de400a8775e668", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -46226,16 +46226,16 @@ "value": 1699711608666 } }, - "revision": "901e015fca1c465db5fbcda2", + "revision": "b5868c6d1ec146b39fb186d0", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344909, + "modified": 1701809344909 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1697119608666", "net_received_amount": 0, @@ -46247,27 +46247,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "0f60e2d8b2b24be6a7d14b23", + "revision": "e27a93a2276144e39d9371fb", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697119608666", - "revision": "743d38f83c8d4650864340be", + "revision": "4aa83578148d4d879049db82", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -46302,27 +46302,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "fd13d72e10854ec482609e39", + "revision": "ea55b08da2134c8895e0d5cb", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697119608666/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 25,00 BRL para a carteira iVip 0556.4401.2114.1117-40", - "revision": "a333230146784928b576a125", + "revision": "8a5e7e37ab4b4156a919ede4", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697122378430/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1697122378430", "net_received_amount": 0, @@ -46334,27 +46334,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b8caa82d4e774ef8be4ededa", + "revision": "f7cc01e8f75646268e3561f4", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697122378430/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697122378430", - "revision": "365e226199b448b3b95c2974", + "revision": "cbf0116aee014656b5178de6", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history/1697122378430", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -46384,52 +46384,52 @@ "description": "Compra de 46.978,00 IVIP por 25,00 BRL", "status_detail": "accredited" }, - "revision": "05bf79d975dd4b8c9577a3dc", + "revision": "b7df231641ba4ce2bfa24472", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "34495648dacc4e079bf0c1d9", + "revision": "d5448654c3374d9eb12f1b34", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "0c264f7439814273945d7771", + "revision": "aa648719f3d247459a6b52cd", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "c1c2a795123b4287b7f38794", + "revision": "f67454a62b434270b0b61445", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/055644012114111740", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1697078617873, "dateValidity": 1697078617917, @@ -46439,70 +46439,70 @@ "value": 1697079600000 } }, - "revision": "8335ae92cf854cfe990d360a", + "revision": "00c0a649f4e44e64930bfb02", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, - "revision": "a5b77b01624843d786e1e17e", + "revision": "b33cfabcf45540b6ad82f166", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "5352934.00000000", "symbol": "IVIP", "value": 720.46 }, - "revision": "e91e93befe0c4455950665ce", + "revision": "31a3fc9594d94367b3164286", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "102adad182054b0abfcac3df", + "revision": "4a7a7a19ca854b0593eb560c", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "15e6a821ad2d4b938273528a", + "revision": "fbc67d6af3d9437592594083", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -46538,40 +46538,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "6c0f173995a349ffbb035201", + "revision": "a1a607d07b5943f28700b400", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684093509797/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0565.4676.9240.3558-40", - "revision": "1afe4ed2779f421cbb83a269", + "revision": "667dea0a4c6f44c99eb54b07", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "ae3edfe77f3f460fb6d9f7cf", + "revision": "833627d590d34359ab53b99d", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -46607,27 +46607,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "cc5bc2325c204268a29ad9e4", + "revision": "4893cc9083a1454a9460df12", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684583054149/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 299,00 para a carteira iVip 0565.4676.9240.3558-40", - "revision": "48527f1c5f8544cfb3c3b449", + "revision": "cb5467c818574495b6af1b04", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684624980630/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624980630, @@ -46641,16 +46641,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "0a6f25a335ae4c6b986c5b19", + "revision": "ecc067a03c5245e791c678f7", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1684624980630", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -46680,29 +46680,29 @@ "history_id": 1684624980630, "description": "Compra de 5.352.934,00 IVIP por 1.099,00 BRL" }, - "revision": "0d6e5dce53154cf3acf1879c", + "revision": "2cfb5ca4932b4b9795168310", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "e3572c2a8e8749c68c55cf0f", + "revision": "dd4acb323eca404683a3b37c", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -46728,40 +46728,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "4597d5a42e2b4419a4dd78d9", + "revision": "8a22ffc7158c4d37bf2e6cff", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104056845/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", - "revision": "3f9228f705924a3fb1cb3c0b", + "revision": "b6ec4aa5ce8946c19fe40890", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "933c010b467a4d56b9d4b52f", + "revision": "767fad012a4c4ab1beeff941", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -46787,40 +46787,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "951c1e0a086b45348c67339a", + "revision": "d3954d9cd794489295999b06", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689104143830/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", - "revision": "b9b766a765f346d9be4dd972", + "revision": "1c74940ae4d340ec8cbda495", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "4a0b29e50e9a4eeb9200771a", + "revision": "728a578b40894a19a0c61322", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -46846,42 +46846,42 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "a0d151187d7c433da46d5ace", + "revision": "40bda0546e4d43f7886e4e0e", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1689646587803/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", - "revision": "8b15f8da93a34f35b4a6c412", + "revision": "5a86af10472d4729b56b5435", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 160588.02 }, - "revision": "1356124d2eb8427299c1cfad", + "revision": "510c453f14934990a42a7ea1", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692620472334, "net_received_amount": 0, @@ -46892,38 +46892,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "d3cba4018c4447268c6d74b5", + "revision": "a2b84a4b6c504ac981740249", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/056546769240355840/history/1692620472334", - "revision": "b6e2dda697b540a6a82f9699", + "revision": "878b0a7516ee44709e38a27c", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "43f3bb609f4e4423b7752532", + "revision": "68c20896d2504bce9fbf48d3", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -46961,49 +46961,49 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "efa69e5af7d2447da91e1fc8", + "revision": "a78ec1ca116c46178ed8d5d5", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history/1692620472334/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 5.192.345,98 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", - "revision": "a0261619b7a7416fad212f23", + "revision": "7b930604a2434d4389740bd1", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344910, + "modified": 1701809344910 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4dd64b2c23a54f24a04d20ee", + "revision": "8458c1d7b51a40c4818777ce", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "09690aa916f94d3f8b6b178e", + "revision": "a70a5774495d4b88a3476e06", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0, @@ -47012,16 +47012,16 @@ "value": 1692384424311 } }, - "revision": "f63025e8a7f14748954d6e1b", + "revision": "92fdfee46212492eb5bab366", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/056546769240355840", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678095088185, "dateValidity": 1678245807542, @@ -47032,93 +47032,93 @@ "value": 1692586800000 } }, - "revision": "1f687eec14114c6ba226d7f4", + "revision": "ca1afd2b561b47e1bf8978a1", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057251085848447400/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1dd22ea9d42e4f3a8fcaec49", + "revision": "4cf5de872cae4e7cad001b62", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057251085848447400/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "d4e09aae48fa4d759990768a", + "revision": "45f28f09272d47ce8d97062c", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057251085848447400", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677956784862, "dateValidity": 1678334303407, "totalValue": 0, "currencyType": "USD" }, - "revision": "eb0f2e81badd4d70878742b0", + "revision": "7c42673cae654dc7bfb5d388", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "561917.00000000", "symbol": "IVIP", "value": 59.89 }, - "revision": "7e19b378fbca41b8b0e6e85d", + "revision": "2d262be07bfd4136a79efd0e", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ec4a87c8191c4a98af4beb7c", + "revision": "b317db54c3ba4152b904d8ff", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "d053e21e9b314aa490041799", + "revision": "64e76c94f1ed4464a8360d3a", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -47154,40 +47154,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5814bd6e6eb3431e8fafd439", + "revision": "d95676b422a143d69e6834cb", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679346644168/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "9d3ac0a13946456e80f22008", + "revision": "3d1bfdfc478d4306bc725b44", "revision_nr": 1, - "created": 1701465820532, - "modified": 1701465820532 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "d56d5221426f486fb9cdaf7b", + "revision": "ed683b85a21e487daf14093b", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -47223,27 +47223,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "416bed2b89fc40eab300c2ca", + "revision": "291dc43c260543df882173de", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679707462559/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "08d0f5208b31427bb5da05db", + "revision": "c8663d9d65a14a4ea55b8ea3", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679871671858/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679871671858, @@ -47257,16 +47257,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "560da8fdc80647ba91f4286c", + "revision": "ac2ae923da514e5ab4206b0b", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1679871671858", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -47296,29 +47296,29 @@ "history_id": 1679871671858, "description": "Compra de 213.025,00 IVIP por 40,00 BRL" }, - "revision": "e03274ff3fe140899a3d6a08", + "revision": "b7540ace88294c47825c81c8", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "09427c889aa746aeb42984e6", + "revision": "b63fc31a26844ae783e79627", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -47344,40 +47344,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "1a1df2b623f3486b96be031a", + "revision": "76e1d238121845a180ba2d44", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689132225947/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "5509d746065447d8a33cebd6", + "revision": "aaaace33e68345a6977f691d", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "b1e8b700891b405db3d1a504", + "revision": "e83136b2273247baa865628b", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -47403,40 +47403,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "e2ffe483fbf84ae38e03a357", + "revision": "79ab4fd9f5ca4431956edbf4", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689175940633/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "c385a3e160204a23aca999e2", + "revision": "86b1c79572be403ba0058c73", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "ac8e0248a1d2493a93257c8e", + "revision": "cc2747d382eb4908a2e0a43c", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -47462,40 +47462,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "23a6ca064fe84fec99b5bb31", + "revision": "db85bbf258f245a1ae277f31", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689367674517/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "b1cf30ff5d3c4192b0a7f807", + "revision": "67772e943bd54be59fa01f16", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "dc88e9bfdff4474d8b51bba4", + "revision": "bd08ec4f99b547baa6484aac", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -47531,27 +47531,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "859d2a77887a4e4a837490c6", + "revision": "9957f8eb25c54c9fa091d837", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689622072746/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "1e399b838a9546cf9b1e1f31", + "revision": "0fee2d3148114a59a51c796a", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689623842206/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689623842206, @@ -47565,16 +47565,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e4761ebd42eb49b89ead64ff", + "revision": "b984ff0c194240a68fbf3519", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689623842206", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -47604,16 +47604,16 @@ "history_id": 1689623842206, "description": "Compra de 32.205,00 IVIP por 50,00 BRL" }, - "revision": "9adbb0d96225422eba869a9e", + "revision": "5477a90d01ec4041a3988b3c", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -47621,16 +47621,16 @@ "value": 1692566630901 } }, - "revision": "bf68e4c534bf422fa6238cd3", + "revision": "3d7e1a61a72f40f695141613", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1689974630901, "net_received_amount": 0, @@ -47642,27 +47642,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "da08c5b416444cd0872b34f6", + "revision": "bd7eb0dd053946f581aac412", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1689974630901", - "revision": "08a5c5d65ff34426a0b74fbf", + "revision": "64cbfd83712a4e47bdd7d1c9", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -47686,27 +47686,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "73c4a0d363494ab9bf279719", + "revision": "000536456ada4b87a7bcd65c", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1689974630901/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "92e17c9baf83474991d5dbe0", + "revision": "d21182b9812b4ecab3b9d2fd", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -47714,16 +47714,16 @@ "value": 1692837872747 } }, - "revision": "af14779493a6455b802678ec", + "revision": "7969d68236454eee8cfe2033", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344911, + "modified": 1701809344911 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690245872747, "net_received_amount": 0, @@ -47735,27 +47735,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "df59969d9bea487198890837", + "revision": "9628a140480f4bc985ab3ffa", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1690245872747", - "revision": "08f8c58cb8a34dd783ac4d4d", + "revision": "b92c61b5488642118659ee36", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -47789,27 +47789,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "dacff5dffaa448d28cfeb88d", + "revision": "8f85a8c0be0b4d8899512528", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690245872747/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "7e6ca2172d2c4ebcacda6c5f", + "revision": "23cdcf5c4b3745beb95e1a6d", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690318679149/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1690318679149, @@ -47823,16 +47823,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "df95e8b062454aa4b794d8bb", + "revision": "70c64d026a99417a93b8ef5e", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1690318679149", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -47862,16 +47862,16 @@ "history_id": 1690318679149, "description": "Compra de 16.406,00 IVIP por 20,00 BRL" }, - "revision": "a097a5b650a74ccc8b58af61", + "revision": "8bceeab1982d4a91824fe1e1", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -47879,16 +47879,16 @@ "value": 1695065586359 } }, - "revision": "7f2fd90607b24630888bdc2b", + "revision": "dfac37015132471993883a53", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692473586359, "net_received_amount": 0, @@ -47900,27 +47900,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "eeef439f665c4d30a9c355e0", + "revision": "31268d2de92f492a80a5a6f0", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692473586359", - "revision": "7e3daa17ed964c4bb45e6528", + "revision": "1f76bbeb0fa64ad296bd13c2", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -47954,27 +47954,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "475d96561e5041ab83a978cb", + "revision": "6dfacf72d49346f0bb466a77", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692473586359/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "b00a96046a96496aac828815", + "revision": "7eafbefb98394c6a8e9f5549", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692476742525/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692476742525, "net_received_amount": 0, @@ -47986,27 +47986,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "087637866b374335860d7b1a", + "revision": "acd0edbe68244ce18f580093", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692476742525/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692476742525", - "revision": "14de1b85b14a4fb09b856915", + "revision": "1b6069f6db014c63a866bca7", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692476742525", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -48035,16 +48035,16 @@ "description": "Compra de 32.045,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "dd2193ca744043b2ad704935", + "revision": "534fbfcc43404a63a2725ae6", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -48052,16 +48052,16 @@ "value": 1695588810545 } }, - "revision": "34a8a48d353b4b1793a8ed0f", + "revision": "84ac8166ee784d9eaecb7a81", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692996810545, "net_received_amount": 0, @@ -48073,27 +48073,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c1bf1a7378424437a76c7fd3", + "revision": "2009f26999864b40a9b90912", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692996810545", - "revision": "3895078a5ff8438b84874e4a", + "revision": "7f9f89e24da648558b29fe83", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -48117,27 +48117,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "e6ee381bac2e4bdeb467d10b", + "revision": "41e9d7e0e4ce4fb49e70d319", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996810545/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "11ea2792de5e4674aaad6572", + "revision": "126404b0aa8e499dbde96600", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -48145,16 +48145,16 @@ "value": 1695588844899 } }, - "revision": "5ba196ca890844db8e12893e", + "revision": "55cf3604b86a431b92a5880e", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692996844899, "net_received_amount": 0, @@ -48166,27 +48166,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "bfbae7f4af314fae98b0c64f", + "revision": "a660c14925ad4c5c8dda7933", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692996844899", - "revision": "d52ae05232c94c68994f7965", + "revision": "eb206a83019f46ba9ad9d287", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -48220,27 +48220,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "48ea4ee42676450e952eb8b4", + "revision": "272541a592664a9a872869bd", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1692996844899/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "e72b2e8c670c4e8299fbc8c0", + "revision": "dc95f49df7a5434c9ed8c7a1", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693000377717/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693000377717, "net_received_amount": 0, @@ -48252,27 +48252,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4d9188e86bf240f089ccaf36", + "revision": "b9c54fd01b104520af2743de", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693000377717/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693000377717", - "revision": "cab45f28db8c40e49a6495f9", + "revision": "1a6b9a1127ed42859d5db581", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693000377717", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -48301,16 +48301,16 @@ "description": "Compra de 40.254,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "9fb7e1ec5679416a9baafacf", + "revision": "1e00c798a58f4951980f924e", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -48318,16 +48318,16 @@ "value": 1696197427916 } }, - "revision": "7fbe480fd9ab4b68b53a3243", + "revision": "f0386ace99bc40329be707a7", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693605427916, "net_received_amount": 0, @@ -48339,27 +48339,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ac92482ef95c4aa8aa93c5a5", + "revision": "d7ab73efab2c4045a1862359", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693605427916", - "revision": "f71d218a02a041fdaf26e17b", + "revision": "582404c9297b4d2fb8b64be7", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -48383,27 +48383,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "9755455eb064425390bf9841", + "revision": "7188386379b44f2dbb2b52e1", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605427916/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "c3b85b1b793841dcb454fe5a", + "revision": "aaafa6d4cc574fcd85f6efce", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -48411,16 +48411,16 @@ "value": 1696197762263 } }, - "revision": "2c6ed338120245c1bb3a3be9", + "revision": "ce80f96ea2094909b72217e7", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344912, + "modified": 1701809344912 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693605762263, "net_received_amount": 0, @@ -48432,27 +48432,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "893f8b822def4790b88d1183", + "revision": "2e4f5c794e6f43a2930edc35", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693605762263", - "revision": "0e61b66db781478c935d3163", + "revision": "92ea877f4cf3470983bf796c", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -48486,27 +48486,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "1bf88d12d2e94755b0cf6022", + "revision": "a507f3deee8e441d8628a028", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693605762263/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "3ad3e0d2470e4c4ea36e3487", + "revision": "f7b3e707a6b7445383884dc3", "revision_nr": 1, - "created": 1701465820533, - "modified": 1701465820533 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693606719867/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693606719867, "net_received_amount": 0, @@ -48518,27 +48518,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7b4682c0603f41c38dbb95e3", + "revision": "67e06ae496f54ae0860c9b4f", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693606719867/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693606719867", - "revision": "4bf4aa5d59394844b10989e7", + "revision": "3d816154f204430388ff3618", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1693606719867", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -48567,16 +48567,16 @@ "description": "Compra de 33.429,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "63fd9129aa6e49bfa8ca580e", + "revision": "72e38f12227d45c2ade458cb", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -48584,16 +48584,16 @@ "value": 1697246922996 } }, - "revision": "7a5641da10124dfdad050e3d", + "revision": "9d5c8d25fc7046ecb0b9c5a6", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694654922996, "net_received_amount": 0, @@ -48605,27 +48605,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "885e39338bb94829ae696af1", + "revision": "cde52fb898b041349f99052e", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694654922996", - "revision": "f0c48e60a9aa41c78af79f82", + "revision": "83bf3ccc3691465d914c48f5", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -48659,27 +48659,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "7b1e8f3a82e84e3686244f1d", + "revision": "a4736aa1cc814c36aec599b5", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694654922996/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "affd49b9be7d48ed837a504f", + "revision": "57306c1d2eba4b5b9a866ca4", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -48687,16 +48687,16 @@ "value": 1697320326075 } }, - "revision": "7c0ce26c76834f3bb00fca62", + "revision": "67e194be9be24e7289c7890a", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694728326075, "net_received_amount": 0, @@ -48708,27 +48708,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c046b7657326460f975d81cf", + "revision": "7cb8eb0b32e5493fb11fa7fa", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694728326075", - "revision": "64bb811f0acb4f169692ab46", + "revision": "97eeae8515b84b31bde366db", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -48762,27 +48762,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3348b183953a491997cca01c", + "revision": "cb005809a2fb4d32b2ec38b7", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728326075/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "b1210b6fd8f243adbf192e43", + "revision": "cd835abb2ea6417ba2d1661c", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -48790,16 +48790,16 @@ "value": 1697320859603 } }, - "revision": "d97d1deaed7c4f3e9fe9c9d6", + "revision": "bca9175585ff48f6bd0ca17c", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694728859604, "net_received_amount": 0, @@ -48811,27 +48811,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "9b061f1207e34289a7ae4335", + "revision": "aefa83dba8f347a39f9144b8", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694728859604", - "revision": "454c104c643341cc863e4ff7", + "revision": "0909ca4b1d594401b481fb34", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -48855,27 +48855,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "1ac0d3feed1f46968c05f3d7", + "revision": "aea46202812a43289e4593f9", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694728859604/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "95072e551a1846bbbdd23574", + "revision": "24acc3b339ac4d7d9d42c33b", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694731526035/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694731526035, "net_received_amount": 0, @@ -48887,27 +48887,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "bc83513b7c62457d904b0fba", + "revision": "c15940bdf3d54bf0b1e0bf83", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694731526035/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694731526035", - "revision": "b55309a1d1224792bbc27195", + "revision": "d2b3299fef634230a21ce9c6", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694731526035", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -48936,16 +48936,16 @@ "description": "Compra de 121.808,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "2e7a0dce781f4923901fb226", + "revision": "0c44bac16a6f4116b7313424", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694793493188/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694793493188, "net_received_amount": 0, @@ -48957,27 +48957,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8dacd893f72c4285965f59f5", + "revision": "a6cf4b37dae64f1e8acb138c", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694793493188/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694793493188", - "revision": "b40ef725935546058862d962", + "revision": "cc528b362f2a488eaacc922b", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694793493188", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -49006,16 +49006,16 @@ "description": "Compra de 25.384,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "a5b2916de82741d78defe340", + "revision": "019bd23b314c4ef499a1e6f2", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -49023,16 +49023,16 @@ "value": 1697558109290 } }, - "revision": "0d04a283812146a890e994f6", + "revision": "bc6a80c1df8345b49273bdda", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344913, + "modified": 1701809344913 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694966109291, "net_received_amount": 0, @@ -49044,27 +49044,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "95147865f13a4de9afc9f6c5", + "revision": "579c41d747f64555b4b9af85", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694966109291", - "revision": "f1cc00903c614bc6b30e5f36", + "revision": "c10df96a45114e8c872cc6c2", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -49098,27 +49098,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5e1eeb7e58814fa68bb4f782", + "revision": "ca42add5323c467c9c18d025", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694966109291/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "ef314544fadd45698859e348", + "revision": "f69dda00f75146dd93315371", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694988703973/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694988703973, "net_received_amount": 0, @@ -49130,27 +49130,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "920750d01aec4911989c49a2", + "revision": "0ed0b62a856e4e25ab320937", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694988703973/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694988703973", - "revision": "d961c80b13a94f1bba71a1c1", + "revision": "b205d026528a4804ab7b298b", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1694988703973", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -49179,16 +49179,16 @@ "description": "Compra de 25.302,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "229f38f072a34c57bd87de26", + "revision": "566e0fdccca54e28a7de095a", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -49196,16 +49196,16 @@ "value": 1699112028284 } }, - "revision": "b3a9586d75c84e019efc09c4", + "revision": "f78d7cc4e62f4cf9ba6cffb2", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696520028285, "net_received_amount": 0, @@ -49217,27 +49217,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f84e5606b8104193aabd4996", + "revision": "bfb92b2fcafe46a9b0105dfe", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1696520028285", - "revision": "c3972b94558449a3a1d25eb3", + "revision": "7b58a07003364c19a66de6a8", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -49272,27 +49272,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "db3d1338bbae48eaa5ffbda6", + "revision": "c3a85b679e294c01a42257da", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520028285/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "769d6511f9814d10a687d756", + "revision": "dfea5accf7f94e66a8a56b1f", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520773436/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696520773436, "net_received_amount": 0, @@ -49304,27 +49304,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "5505caf39e7742a29cc5298c", + "revision": "86613e3ca3d04af28f29d918", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520773436/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1696520773436", - "revision": "e0213390e24c4a73939b46a6", + "revision": "e9c63cf74e0640c8a33a7aff", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history/1696520773436", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -49354,38 +49354,38 @@ "description": "Compra de 22.059,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "d583e96ee6f2475a959721b0", + "revision": "2533383a48454a5a82b54d41", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1e8593c4b34a46da9628a55d", + "revision": "bbcd3f2980174818a5fdd99b", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6f7603938dc845bdb9677ec6", + "revision": "79053cc1c7d94b94bb9751b6", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0, @@ -49394,16 +49394,16 @@ "value": 1696173793593 } }, - "revision": "2dbcb8372fae4edb9d36dcdd", + "revision": "3bf7e852c09946d8897a6856", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/057751007037449620", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1679345183302, "dateValidity": 1679345183302, @@ -49414,55 +49414,55 @@ "value": 1697338800000 } }, - "revision": "b84b5811d90f4584a35a2a28", + "revision": "49b4e9885f774259b65bbb76", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "-14612195.00000000", "symbol": "IVIP", "value": -15912.37 }, - "revision": "4bb5485f0f7b4c4ba180cd78", + "revision": "27f0d09315e948a29a553bf6", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "af392a3848c541199bc4248f", + "revision": "c5665098052445fc8b65c627", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "2eebd94b0bcb42198351db9a", + "revision": "4a2b027dae594e9daf678318", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -49498,27 +49498,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "db295f389e954e479bd5ddf8", + "revision": "2db3a84cf3c74d2fa9e70415", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1683732218933/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0583.5908.1725.8996-56", - "revision": "8f02b3e975f94fbbac9ff7f4", + "revision": "79d517fc667a4c1a8e8f1b9d", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1684627186163/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684627186163, @@ -49532,16 +49532,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "60e8412493d14af2932579a0", + "revision": "f0388b389866492e938cf9c1", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1684627186163", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -49571,31 +49571,31 @@ "history_id": 1684627186163, "description": "Compra de 14.612.195,00 IVIP por 3.000,00 BRL" }, - "revision": "8269ca3a7dde42369b9cb7c0", + "revision": "d11c60da780d4fd596947311", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344914, + "modified": 1701809344914 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 438365.85 }, - "revision": "1448b935bf6a4a70b13dd750", + "revision": "c5f7d5644cc44ffa9104f679", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692302387863, "net_received_amount": 0, @@ -49606,38 +49606,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "698b7d6f82cf4270b67e8c28", + "revision": "957a33ac49224a79811b35a2", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/058359081725899656/history/1692302387863", - "revision": "ad21b64653844cd99dcac418", + "revision": "2ae2ecee56b0458f9b00c116", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "b5fd10de3ac841859b5cb587", + "revision": "b1a0d0c562554cbaae0965bc", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -49675,42 +49675,42 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "b2be8ff4bd2f479dbf3b9644", + "revision": "9d4a7e3fa2614a00a32f9e39", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692302387863/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 14.173.829,15 IVIP para a carteira 0x5cD8D20fc31429974550e7e677C493554c46a73A", - "revision": "61e6ef6cff6f41c299479b66", + "revision": "3b21d04572f048748b06be2f", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 438365.85 }, - "revision": "9fc3410646f7443680b24e7a", + "revision": "1e823b7571c74c9a8f378ac4", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692441112310, "net_received_amount": 0, @@ -49721,38 +49721,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "cbc262a65312468eb5e0e7d2", + "revision": "eb96ee57d48848978006eaae", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/058359081725899656/history/1692441112310", - "revision": "5f8032c6fd1f44ad9a75c734", + "revision": "2bdb9a5ffb8b45e89fc127cb", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "d3ad22451b1a4e628535594c", + "revision": "fb5949cecb5647828b9b637e", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -49790,63 +49790,63 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "a1a53f294382467ead6acd36", + "revision": "511c5be35d214e82819591b4", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history/1692441112310/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 14.173.829,15 IVIP para a carteira 0x5cD8D20fc31429974550e7e677C493554c46a73A", - "revision": "4070f5b0db044d5ab434076e", + "revision": "5d0b57aa6a2a44d98a8b3e73", "revision_nr": 1, - "created": 1701465820534, - "modified": 1701465820534 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b631dbe453e54d2d962ef326", + "revision": "a6f4b729f754446d9f5f7836", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b2402a8220d0445f93d68843", + "revision": "2e4e4f23a35f442fa9bb2f70", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "cadc9d9f57384ac2936f51da", + "revision": "0027328b58c04227a52c77d5", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/058359081725899656", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1683669489240, "dateValidity": 1683669489240, @@ -49857,118 +49857,118 @@ "value": 1696129200000 } }, - "revision": "50c1ba2e10d440bc9b8162b2", + "revision": "78d4ea5ff2f94995a5561401", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/059914438431437400/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "aef741cdd3fb4dd69bd50a56", + "revision": "4654088a9b4041a7a7aaee89", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/059914438431437400/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "76e1921752b6467cb9a5d606", + "revision": "c26907f87bc34f53ac5ad219", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/059914438431437400/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4768b66e68664dda92c953d3", + "revision": "2698fd7634864f65ac3e8c99", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/059914438431437400/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "6d636742b6d34f01ab31e019", + "revision": "3a704b4f5acb43f1b62a19e9", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/059914438431437400", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684637987083, "dateValidity": 1684637987083, "totalValue": 0, "currencyType": "USD" }, - "revision": "7fd2a41cf20345b685d30ea2", + "revision": "567ffa763dd1425a8712c1ae", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "BRL", "available": "30.00000000", "value": 6.027 }, - "revision": "96f5fdea3ae440b491563202", + "revision": "d04be98e47624ef0b03e1b4e", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "695480b6af8c48dc924cc60f", + "revision": "7e1cc0f2fa464c7d90ab736d", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "cfa82d215b2c40b8a8df0751", + "revision": "5bb9a90eb7fb4764aa658def", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -50004,133 +50004,133 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9f2e77a1105042fc9e1f4c46", + "revision": "3b707bf0d97b42588c1cff64", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history/1684092073649/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0600.4447.6007.1925-36", - "revision": "2ee550925f9f4f758186f025", + "revision": "6d2f5f2671e44c69aa28d16b", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "754e6da73b42416ba29284b1", + "revision": "4607d4dfc6f241a4b86c783c", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "440ecf70caab44ab9a67f5c1", + "revision": "968fbf9c026d4c7e86051d3e", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "b99b1cb9a42e4cc9a8136008", + "revision": "6a9e4da633224d2e84ecc6f0", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060044476007192536", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684091907959, "dateValidity": 1684091907959, "totalValue": 6.03, "currencyType": "USD" }, - "revision": "69f27475a22d41a2a93f76ac", + "revision": "031091db2d9f421c95613885", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, - "revision": "93b05cf1278f4882845797c6", + "revision": "f0c9069e10bd44539be3bdee", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "0.00000000", "symbol": "IVIP", "value": 0 }, - "revision": "dbee318ff0ba4ed1a65bf2fc", + "revision": "0cc41993ea0e4403baf8eca9", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "33f4921362c04f03909bb4bf", + "revision": "80cedc01d6ee441d9cb2120f", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "e75d32f122424dd080fec99e", + "revision": "21869dc2a54b46caa2320a13", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -50166,27 +50166,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "2026d5b7dc4f4d5abff792ca", + "revision": "a28945410d2e48bb9b84a362", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684104224358/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0602.8179.3071.1252-50", - "revision": "337d8b41b419482f9aa299ac", + "revision": "f2412543c36c4a4583b44c44", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684702707589/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684702707589, @@ -50200,16 +50200,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "f265d006ca7c4fc79e128c28", + "revision": "6e82758c0bcc4d00be3b6e0d", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1684702707589", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -50239,29 +50239,29 @@ "history_id": 1684702707589, "description": "Compra de 145.829,00 IVIP por 30,00 BRL" }, - "revision": "0509740a7e544e72b9e28005", + "revision": "3a3b5cea1bff4c75b156df10", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "359a5ebf6a40404fa79ccc29", + "revision": "5d192d3c8c154e829844a418", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -50287,40 +50287,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "acf5f201451647e7b366b974", + "revision": "955730bfa4cc49a3917cf49f", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685061340656/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0602.8179.3071.1252-50", - "revision": "a165033d55884eb5aca99f95", + "revision": "f638e84cdf1947ec91a78333", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "9bec816103024b1a8ec074e4", + "revision": "689a7d5901c8491d9508dea6", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -50351,27 +50351,27 @@ }, "money_release_status": "rejected" }, - "revision": "ce75a925992c4bdda9a10a71", + "revision": "92028732b5774ad0a319ed91", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1685664745809/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.055,00 para a carteira iVip 0602.8179.3071.1252-50", - "revision": "2dc2c2192e0343659e925ce2", + "revision": "26603e93dc044a6d8cebfcae", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344915, + "modified": 1701809344915 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690250551090, "net_received_amount": 0, @@ -50383,27 +50383,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "45f8da608e864f3899f6fafb", + "revision": "633531e81b754b078b2506cc", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/060281793071125250/history/1690250551090", - "revision": "28dfc0b1628744198492dde2", + "revision": "06dcfea789f94224b2926b14", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -50431,27 +50431,27 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "ba4c7a7f814f425598af69b9", + "revision": "0eccc0831c174ae68787513d", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690250551090/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 145.829,00 IVIP para a carteira 0xD99D89C01D8F4F0809a32D3916CbC94331E7b87e", - "revision": "81631d2db53d4c179407728b", + "revision": "b110b930fa8b424a858c112a", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690380108963, "net_received_amount": 0, @@ -50463,27 +50463,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7f2cccffdcf245d58055abc6", + "revision": "3a1458af9fa14f829ce1a3b2", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/060281793071125250/history/1690380108963", - "revision": "0fd9d28785cf4136b8765949", + "revision": "6980225a61d541cdbf7a5403", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -50521,63 +50521,63 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "ee707a3ef7074558ba23a071", + "revision": "6973fc2199344a93bfe12dec", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history/1690380108963/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 145.829,00 IVIP para a carteira 0xD99D89C01D8F4F0809a32D3916CbC94331E7b87e", - "revision": "337522e23eca4560aa1daf8f", + "revision": "85097514883a4f10bd010973", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "d1d900bab8354f08ae5bb449", + "revision": "a4e5de244fb9455696470016", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "db3f0556e4314b9998dc48d3", + "revision": "02ea86582095454cac0baef9", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "bff0f37d9bb0457c99b96d1b", + "revision": "be58f5132c5e48d3bac724f6", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060281793071125250", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684104139226, "dateValidity": 1684104139226, @@ -50588,55 +50588,55 @@ "value": 1693018800000 } }, - "revision": "28de9e14cf8649cda3b8872c", + "revision": "74ee1773a4dc4860bd2f6a90", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "2596003.86000000", "symbol": "IVIP", "value": 270.012 }, - "revision": "088c9b564062407b8ad140f5", + "revision": "7abfbce7b4a54d99b70a1aed", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c9d28fcde730430fba1c4402", + "revision": "2a9fc656c92640a6a7d55e6b", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "fe74384089b74898a353a143", + "revision": "47c2912ac15949db8b66c4fc", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -50672,27 +50672,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "511d9bef87a342858a7e2bda", + "revision": "2c914123d36f45abb1e58730", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679009450729/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.800,00 para a carteira iVip 0606.0636.6606.7580-00", - "revision": "73f4c9bd055f4e0abb027c5e", + "revision": "316bbadfa8464765bf4c51bf", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679267499015/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679267499015, @@ -50706,16 +50706,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "be25a08361734f20b8d06ded", + "revision": "20cb367e43384a769fa74308", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1679267499015", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -50745,16 +50745,16 @@ "history_id": 1679267499015, "description": "Compra de 10484307 IVIP por 1800 BRL" }, - "revision": "8a50bc4ce783414f900e7405", + "revision": "43d58075b9704449a1a89de0", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476464326/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688476464326, @@ -50768,16 +50768,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "44e644acce2a47e5a91a185b", + "revision": "81e9104ee64a466caba2a3b9", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476464326", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -50805,27 +50805,27 @@ "currency_id": "IVIP", "history_id": 1688476464326 }, - "revision": "f5495dc16d2840d48d9fa7f3", + "revision": "005c15aa89ba4122a788972e", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476464326/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/4/2024", - "revision": "a1073992e40a4280a732b9b2", + "revision": "ad740305ed8946ed8c1a16a1", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476478538/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688476478538, @@ -50839,16 +50839,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "72de62028f0f4398bcf365c1", + "revision": "a773cdc523bf47599aa1165e", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476478538", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -50876,27 +50876,27 @@ "currency_id": "IVIP", "history_id": 1688476478538 }, - "revision": "dd3020bf73fb4d5fadfca760", + "revision": "de1cec2a00674e23aa05278e", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1688476478538/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/4/2025", - "revision": "61e3aed863b74408b81364bb", + "revision": "3661a98de2474b17aecc903d", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693784335259, "net_received_amount": 0, @@ -50908,27 +50908,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d3fae78f515d417cbafdd2f0", + "revision": "3545e4c2936d434ebe9ca121", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1693784335259", - "revision": "15431bc738384918addab7fc", + "revision": "133857dbc7bb498ea32c12e2", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -50956,27 +50956,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "035e027e3bb3455b9d4d1d7b", + "revision": "e7cdbddc59c245b5899894d4", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1693784335259/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 5.684.843,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "b2545e469c74466d98c0401a", + "revision": "a1f8c09443ae4acaa4397962", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696384249715, "net_received_amount": 0, @@ -50988,27 +50988,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d2497721fda545beae4ca9cc", + "revision": "cbcdc19ae1f54545a652baab", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384249715", - "revision": "8d59f916d2e945628c1470eb", + "revision": "9a85d238ee084d7eaa70a858", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -51037,27 +51037,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "f0dcdd48a4ee4bc08cf3eb3c", + "revision": "2059a8dfb8744953a9f621e4", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384249715/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", - "revision": "344b32ac3cf64fc491852c25", + "revision": "b66cc389b6e74653b9f32283", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344916, + "modified": 1701809344916 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696384254400, "net_received_amount": 0, @@ -51069,27 +51069,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "64a192aafcd24be8b0653573", + "revision": "44c2b051adff4314a3aa26c6", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384254400", - "revision": "1556a2fb85b0413284dbd357", + "revision": "786b6be361e04af285ed396b", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -51118,27 +51118,27 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "373b9016853747a78ec6294d", + "revision": "2f675eddc753485c89218359", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384254400/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", - "revision": "8ced91396c4641959090623d", + "revision": "36a52919f7fa47958aa2a57f", "revision_nr": 1, - "created": 1701465820535, - "modified": 1701465820535 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696384253628, "net_received_amount": 0, @@ -51150,27 +51150,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "3e16f0f00c124d958d1de00b", + "revision": "072c02ceb1f9480fbb0cde28", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384253628", - "revision": "e724b4103c384cb9a20af8d9", + "revision": "fc3219aa981a48cb81309e2c", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -51199,27 +51199,27 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "92185c7ff7444acf84077e4d", + "revision": "553ad82a3a994dc090050800", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696384253628/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", - "revision": "0de3381863914fe9996e1915", + "revision": "ef58617136044828bbae2253", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696457810654, "net_received_amount": 0, @@ -51231,27 +51231,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7ef0e0725b4e413399cbabc1", + "revision": "2acbb17cda8c41d28a0ccb4b", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696457810654", - "revision": "3c5cbfbeb1e64beeaa39f359", + "revision": "8f33323162d54af09bd30466", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -51280,63 +51280,63 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "5f35db3d6e5a440d94c22705", + "revision": "b5776e0b39fc4fa79017fc7b", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history/1696457810654/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "1c7bab2684f245699a05af59", + "revision": "231f0b66a0124596a52ea34c", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9e42622d6e894b9bbc8140e3", + "revision": "91ce67d1d7304abd8ba49067", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "dedaa507b4774e3494b3e78e", + "revision": "f15460006ca544b9a139599c", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "7eec32a4e2654f18919c847f", + "revision": "804b199be3234f9c91dcd433", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/060606366606758000", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1679008860926, "dateValidity": 1679023260971, @@ -51347,215 +51347,215 @@ "value": 1697338800000 } }, - "revision": "41c6cbf76eae41efb534b1a6", + "revision": "7cb6abdecd3e4ae084a08d50", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "36d3a7f214ff458a9c59a8a0", + "revision": "ce9bcd7637c84b07bab4456f", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BTC", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "BTC", "value": 0.12708406600000002, "available": "0.00000509" }, - "revision": "1684529f0af042c5b599a3e9", + "revision": "38411c30316d4d1a9165d69c", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BNB", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "BNB", "value": 0.0088529947, "available": "0.00002689" }, - "revision": "7aa406436d9949849f08e59e", + "revision": "c6dde56722d248fc85b99846", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BUSD", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "BUSD", "value": 0.032112, "available": "0.03211200" }, - "revision": "359865eadaac4cae9e340039", + "revision": "fb2f09379f8c4a8daeeeb3bb", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/KAVA", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "KAVA", "value": 1.4510568362399998, "available": "1.41843288" }, - "revision": "7e625099eece4400a9182d91", + "revision": "8edbe0997a8548fbaa3d4d18", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "BRL", "value": 0.145340815, "available": "0.76697000" }, - "revision": "dbe1219bb9c84d5da2e740b5", + "revision": "807f72ecc3024143b522479e", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/IDEX", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "IDEX", "value": 0.0002743, "available": "0.00500000" }, - "revision": "91f28aef1ddc4ecdbdabcd53", + "revision": "6e245216d1514d5cb533ae00", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/NFT", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "NFT", "value": 0.15272504798763, "available": "372500.117043" }, - "revision": "5dc9a4918a8d491e80f655d8", + "revision": "85a22c3d1f8848e8a518b6a5", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/LUNC", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "LUNC", "value": 7.524e-8, "available": "0.00060000" }, - "revision": "0968222912e547a78e1bd830", + "revision": "598fa3990f754b2a99ad2e24", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances/GFT", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "GFT", "value": 0.001235, "available": "0.10000000" }, - "revision": "0eff2ddb85bd4611a49afa4e", + "revision": "8dd0f45b85b342bda596a310", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "026b96be33c04eee856e714c", + "revision": "bc3653fcd9c24d0faee1577f", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/061447691609698650", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678997573060, "dateValidity": 1679015562550, "totalValue": 1.919, "currencyType": "USD" }, - "revision": "4c813fb7bcbb4c379246e531", + "revision": "544bc67fa8414d50afa45bf7", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "1808506.00000000", "symbol": "IVIP", "value": 279.32 }, - "revision": "8c072f325f9d496186883b99", + "revision": "e19c9365d708414eb2667a3c", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "f6d5d5e582c74228af95b454", + "revision": "55b16c9ec30b4523b709aa22", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -51563,16 +51563,16 @@ "value": 1693586433996 } }, - "revision": "c510fee863eb4c55b4efbd0d", + "revision": "e1de9bc0ada6468e863a87dd", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690994433997, "net_received_amount": 0, @@ -51584,27 +51584,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "48ab706b368c48b48185d7c7", + "revision": "4185a704f65945a4b0e153da", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1690994433997", - "revision": "08bf917ddac2433f98fb0b64", + "revision": "a482afcd80014224a606a99a", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -51638,27 +51638,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "4c978b870ea942ac86bcda2b", + "revision": "2156a123dee84720b510ee17", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1690994433997/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 1.000,00 para a carteira iVip 0625.7521.4502.4773-84", - "revision": "a1ed730649b5467f84dea043", + "revision": "16c2e26b1a544d1ebe1a0546", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344917, + "modified": 1701809344917 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691064347943/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691064347943, "net_received_amount": 0, @@ -51670,27 +51670,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "cc4827f8e7d84e7d9f7658d9", + "revision": "f6ed197f744442849e45cfe0", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344918, + "modified": 1701809344918 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691064347943/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691064347943", - "revision": "dd69e3fe4b22493c877786df", + "revision": "abb184ce6ada4af091565828", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344918, + "modified": 1701809344918 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691064347943", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -51719,16 +51719,16 @@ "description": "Compra de 207.673,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "289b9a5179f24bb7b372dd75", + "revision": "34b840dab00e46ef8d67d036", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344918, + "modified": 1701809344918 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691234903050/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691234903050, "net_received_amount": 0, @@ -51740,27 +51740,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "9db0f7b7e19b4c679ba1af66", + "revision": "06d23458fab046a08d4dd5e1", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344918, + "modified": 1701809344918 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691234903050/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691234903050", - "revision": "41b2bb3ca66a43a7ac379cd1", + "revision": "55f54bf13eba460a9aa54c91", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344918, + "modified": 1701809344918 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691234903050", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -51789,16 +51789,16 @@ "description": "Compra de 292.108,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "4f7d4a8704014d55a89214d5", + "revision": "ad3ee5f55bc24708880451fe", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344918, + "modified": 1701809344918 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691237670718/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691237670718, "net_received_amount": 0, @@ -51810,27 +51810,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "0777081d5a584e6daf5bdc46", + "revision": "774c04616d1f4b33b3445eec", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344918, + "modified": 1701809344918 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691237670718/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691237670718", - "revision": "ccece61815b64bf694946378", + "revision": "93b473a2c91741f3942163c2", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344918, + "modified": 1701809344918 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691237670718", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -51859,16 +51859,16 @@ "description": "Compra de 293.284,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "10b56d22e0f24851b6036fd6", + "revision": "3a3069b487a7472ba773c996", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344918, + "modified": 1701809344918 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691454318499/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691454318499, "net_received_amount": 0, @@ -51880,27 +51880,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7860633b7782401b903a1ff7", + "revision": "9359a2e4c7c54c7295026511", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344918, + "modified": 1701809344918 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691454318499/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691454318499", - "revision": "3b40c1df0c3b4c4991fa7af4", + "revision": "f19b94a67d644d7291c1edb1", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344918, + "modified": 1701809344918 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691454318499", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -51929,16 +51929,16 @@ "description": "Compra de 327.037,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "3c95a50981544b359ac3dc0d", + "revision": "956d9244dc3c4c43b5403496", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344918, + "modified": 1701809344918 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -51946,16 +51946,16 @@ "value": 1694087110176 } }, - "revision": "27cfa011f6754b1091d9baf3", + "revision": "c0233fb513154cd799f4478c", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344918, + "modified": 1701809344918 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691495110179, "net_received_amount": 0, @@ -51967,27 +51967,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "84f891aa2d1c4491a383604c", + "revision": "8e2e1e780edd459bafd25a21", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691495110179", - "revision": "45ccf4f23f104712b79a5e37", + "revision": "bbb1bdf805e14bb58784efc0", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344918, + "modified": 1701809344918 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -52021,27 +52021,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "07e806aceb804d61a57fa469", + "revision": "751167a221db4701b4a3f4a1", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691495110179/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 1.000,00 para a carteira iVip 0625.7521.4502.4773-84", - "revision": "3a75c36bdbd24ccda2af4293", + "revision": "6f4c5b413b0140da803dcd5b", "revision_nr": 1, - "created": 1701465820536, - "modified": 1701465820536 + "created": 1701809344918, + "modified": 1701809344918 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691500327136/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691500327136, "net_received_amount": 0, @@ -52053,27 +52053,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "dedaefbd3a18473a8ce8b42c", + "revision": "a8b3c3bf3aef46d98067f150", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691500327136/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691500327136", - "revision": "d9554e908a4b4254a884be42", + "revision": "ef652f9346464f7a80ead0fd", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691500327136", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -52102,16 +52102,16 @@ "description": "Compra de 332.596,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "c0fafa926640424ea3935f41", + "revision": "8431927d46524318bb40be37", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691711802306/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691711802306, "net_received_amount": 0, @@ -52123,27 +52123,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "291306982ced4a308ed6a612", + "revision": "76aafb4f17f14aa596517730", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691711802306/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691711802306", - "revision": "b2dcbf56f92f4c2db18bb755", + "revision": "a7a2c56559154dfca8fa987a", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691711802306", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -52172,16 +52172,16 @@ "description": "Compra de 372.254,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "a9b5d0973ec449379e4b090d", + "revision": "57f429ad3d444fa99fe566f7", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691848017758/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691848017758, "net_received_amount": 0, @@ -52193,27 +52193,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "cd047cbc9a764d798215ee4a", + "revision": "b820412a4d894d94ac6730ba", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691848017758/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691848017758", - "revision": "fcdfe4a050c0458bbae5db35", + "revision": "cd862b372d9f4456a9b45713", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1691848017758", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -52242,16 +52242,16 @@ "description": "Compra de 378.088,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "e782cfd5124a489aa06359f5", + "revision": "7847bff60634436a9386ea28", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692027842104/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692027842104, "net_received_amount": 0, @@ -52263,27 +52263,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "91b61f7fe63e414ab03bc8c2", + "revision": "a09c260ae28f4c3c9b87775e", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692027842104/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692027842104", - "revision": "3eae0e8091ce491ca534a1d1", + "revision": "f7263eb33d054d12ac493a43", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692027842104", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -52312,16 +52312,16 @@ "description": "Compra de 456.006,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "81e983d6ab254e64972e45f9", + "revision": "f962da7f7ffa492ba87fd95f", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692250715020/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692250715020, "net_received_amount": 0, @@ -52333,27 +52333,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b1e077ebc6404e1c8ec8c83e", + "revision": "8251f6bdf9694af285451c14", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692250715020/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692250715020", - "revision": "67ec1905d23c4c23b6b81145", + "revision": "4d61afca946d44739b4c17d4", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692250715020", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -52382,16 +52382,16 @@ "description": "Compra de 475.181,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "794efde114904122808fe231", + "revision": "6c6c281d7c0541d59ba6db3d", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -52399,16 +52399,16 @@ "value": 1695079270157 } }, - "revision": "2c50d634008249d0ab65bb27", + "revision": "c2636b9d79a94d9da8215867", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692487270158, "net_received_amount": 0, @@ -52420,27 +52420,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "34eb747a6cd44b0a941f3b69", + "revision": "ea663883464a4e399c19b5cf", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692487270158", - "revision": "797449a76db342e2bc62aa4e", + "revision": "5ef0e3c44de64c02bd180a5d", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -52464,27 +52464,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "b2ad010fb5e347209a8ed620", + "revision": "b5922d4ca41d4684a7c32900", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487270158/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", - "revision": "62c8463a7b424847974c077d", + "revision": "6ede44be702c4fae8e04c1e5", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -52492,16 +52492,16 @@ "value": 1695079578184 } }, - "revision": "6c5be1296eec4076b8ed5904", + "revision": "286e0f34b132453f9540182f", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692487578184, "net_received_amount": 0, @@ -52513,27 +52513,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "cf5babbea7b949b4bbaaaaf6", + "revision": "f1aa188a486244779f186f4c", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692487578184", - "revision": "d0a91822d19a4270a61c90f0", + "revision": "ea9c14cce39c44a9be076044", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -52557,27 +52557,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "d7046f19adf74234a1e39f1c", + "revision": "f362c3661d0d4280a2e9ce46", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692487578184/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", - "revision": "275ad02976a942bca723d426", + "revision": "0fdfdfb2e9134d93b26d0e2e", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344919, + "modified": 1701809344919 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692488711638/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692488711638, "net_received_amount": 0, @@ -52589,27 +52589,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "530ce4da0d1e45f7adc03e2f", + "revision": "7e223f0d5d9641339bb7f916", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692488711638/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692488711638", - "revision": "5ca944a855174c478848116c", + "revision": "c4efcb9c8bb845e999189174", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692488711638", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -52638,16 +52638,16 @@ "description": "Compra de 328.542,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "c3c85781e9c144b9be5b0800", + "revision": "cddf593c08574f94b04f1b7c", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -52655,16 +52655,16 @@ "value": 1695240164836 } }, - "revision": "d2be1bcaba2c414aafce73b2", + "revision": "970661767bc34a18ab4fe462", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692648164836, "net_received_amount": 0, @@ -52676,27 +52676,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "9d0031f3055a4d81a9c1607e", + "revision": "e8e2fb2b54d44f22a0420e93", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692648164836", - "revision": "86c8c805df85443aaa2ec11c", + "revision": "88cf78d172ce412f9152ef15", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -52730,27 +52730,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ed870950596541feb0dfcbe8", + "revision": "37d7c4007399406a82990beb", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692648164836/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", - "revision": "e9ef5dc1a14848d4bb0174c2", + "revision": "f3841b7db6044161982f440d", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666772551/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692666772551, "net_received_amount": 0, @@ -52762,27 +52762,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b9c59bc6496a46ddbb42f65b", + "revision": "c052c0ce9f304b2bbd8ca601", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666772551/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692666772551", - "revision": "49f8b706649c47fcb562ee33", + "revision": "95c8c87475264041a66fa8e5", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666772551", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -52811,16 +52811,16 @@ "description": "Compra de 285.329,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "10881fafc79d4e31bb2acf39", + "revision": "f3629d133f574796962f25b0", "revision_nr": 1, - "created": 1701465820537, - "modified": 1701465820537 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666803752/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692666803752, "net_received_amount": 0, @@ -52832,27 +52832,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "dd0dbbc163c94889bc788434", + "revision": "b813b79177cf401c8c8269b9", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666803752/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692666803752", - "revision": "7f196cf037f54a498006ccbf", + "revision": "5bda8048e79e47d6b741812b", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692666803752", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -52881,16 +52881,16 @@ "description": "Compra de 285.329,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "6e57c944d3b74225a9d5ee8a", + "revision": "78ab271565b640519541a701", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692730130844/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692730130844, "net_received_amount": 0, @@ -52902,27 +52902,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "896f7764b478404a91d404ca", + "revision": "28bd8093d64d453f8d563639", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692730130844/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692730130844", - "revision": "2255ec964b0a4dd196d0f8ae", + "revision": "8bae35cf88d94d728e86770f", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692730130844", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -52951,16 +52951,16 @@ "description": "Compra de 282.682,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "76f906f5fda848a78a4b20f2", + "revision": "76e1da159cc74a388d51111f", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692751123570/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692751123570, "net_received_amount": 0, @@ -52972,27 +52972,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "5dc38b49191a4235b1f1e76f", + "revision": "22c410f631ba4f2fb0b5a0e3", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692751123570/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692751123570", - "revision": "98ccb23787bc4f9d9f65a215", + "revision": "4f5e1b73896e45f092787dae", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692751123570", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -53021,16 +53021,16 @@ "description": "Compra de 526.629,00 IVIP por 400,00 BRL", "status_detail": "accredited" }, - "revision": "37f9e7bde4324f35b01d4075", + "revision": "8acb79bf955443489ecfe6c1", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692814492618/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692814492618, "net_received_amount": 0, @@ -53042,27 +53042,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a9bbeef56277427f9f0ebbf8", + "revision": "8e38d460bb1d449d80563f98", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692814492618/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692814492618", - "revision": "09f74d8b87584d87baec7d80", + "revision": "2f185ee0f8ce43f29c88ea0c", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1692814492618", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -53091,16 +53091,16 @@ "description": "Compra de 614.430,00 IVIP por 500,00 BRL", "status_detail": "accredited" }, - "revision": "45039878390d458c953f731f", + "revision": "3b74ee141b6541f88acb26dd", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -53108,16 +53108,16 @@ "value": 1697297622264 } }, - "revision": "d1c15bc3b953458daca4dd60", + "revision": "f707acddd7c14782b645cda5", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694705622264, "net_received_amount": 0, @@ -53129,27 +53129,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4517e79651bf49f18ff0c07a", + "revision": "75673b21bd0746ed917332ae", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1694705622264", - "revision": "61ac829acf214d5588834e84", + "revision": "816a5f0bfde54c4da944ac72", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -53183,27 +53183,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "eb32450e8b144e61a692cf63", + "revision": "712b8dda7c024daca6ac95c2", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694705622264/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0625.7521.4502.4773-84", - "revision": "5f0e304538ce4a0980d2c519", + "revision": "b6e22aa6dede48c88c10706c", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344920 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694719090426/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694719090426, "net_received_amount": 0, @@ -53215,27 +53215,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "63bb1de00a7a43b1aaf29447", + "revision": "a1508d947e474cc79592a6e5", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694719090426/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1694719090426", - "revision": "ffc58264ed4a414a91107848", + "revision": "9c30549b51514da296a8cc04", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344920, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1694719090426", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -53264,16 +53264,16 @@ "description": "Compra de 2.446.285,00 IVIP por 2.000,00 BRL", "status_detail": "accredited" }, - "revision": "32dcc1621dc4457b846f33ca", + "revision": "405a59f0eef245b290a072c8", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695328321082, "net_received_amount": 0, @@ -53285,27 +53285,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4b4a22a7e13f42939225d3f5", + "revision": "2eea0baca02a4afdbe04fa35", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1695328321082", - "revision": "1a00139d0a48484282828c2e", + "revision": "08fbcbdf3521449baf6dce89", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -53333,27 +53333,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "2fb1b5d4e6814adeb1fe2f46", + "revision": "fb7ba38fccb841ba859ca0c0", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1695328321082/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.136.670,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 21/09/2025 - P9A02KSL", - "revision": "5595fbe1f8b14105b6fccb12", + "revision": "19e171fe28db4a56b73e7839", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696508927650, "net_received_amount": 0, @@ -53365,27 +53365,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "fd59a498e26a46dcb1daa15c", + "revision": "4eeff3164bc94307995b11b5", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1696508927650", - "revision": "210096fde7bc4f81b44f8ab9", + "revision": "f9118364810041b791f8cae3", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -53414,49 +53414,49 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "2db46fb8552e4ae3bc198144", + "revision": "99152dd6b1944c5686560798", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history/1696508927650/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 4.958.277,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", - "revision": "b08c1a20adad43c899603191", + "revision": "4fcf6b7d20c842b28e98da49", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "bd953279f1824da7a584e07c", + "revision": "f11644483ca14eaa826e0ebe", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "299cff0554054710bc8f3ab3", + "revision": "1732ef97f7524faa8e7d8d4c", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0, @@ -53465,16 +53465,16 @@ "value": 1691240400848 } }, - "revision": "f8ceb8d511d2407695384053", + "revision": "2adcf6b9a55e4ae688217c11", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/062575214502477384", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1690559154331, "dateValidity": 1690559154379, @@ -53484,55 +53484,55 @@ "value": 1696561200000 } }, - "revision": "e83446b3516f4443ad9f24af", + "revision": "bcaf5e08a76e4723bd4bf6d0", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "150.00000000", "symbol": "BRL", "value": 30.33 }, - "revision": "9cb5d6fb962c40609b38cb37", + "revision": "ac8cc298b3444d1681c317a3", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3849242863dc44c7bcc8684e", + "revision": "4c35eee326d84839a0d28fae", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "7f6f4a92767c4aec98197508", + "revision": "f902329a7fd44af595e995a6", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -53568,63 +53568,63 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "de156444f8fb466788ac5b3a", + "revision": "119890398023412a8f2c89e0", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history/1689114820357/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0650.1373.1763.7014-00", - "revision": "bdc4a789b73142dfb8ebfe5f", + "revision": "7eb820c83135453a8d09f50b", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8df7f8e604dd427f9166770b", + "revision": "946ff685c3a94aac9bb4fee6", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b621b0e68525450cb0eb79d0", + "revision": "bf4c97eb14d94ba895064db5", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "8945e3ad5c934b118f29c272", + "revision": "b6d5b711e5274309bdaf9a05", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/065013731763701400", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1689114736496, "dateValidity": 1689114736496, @@ -53635,77 +53635,77 @@ "value": 1691895600000 } }, - "revision": "e8e99ef8f48246be9fd3e910", + "revision": "bf5f55a130e84281aa691761", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ae93085e699d42638740c968", + "revision": "ad63fcdc7f704ff9b1619376", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "5add4859930c498a8a391663", + "revision": "3147d1c4340543588fb3139a", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a3ae035698fe40158c474198", + "revision": "bbe4efe635a2467997bb82d8", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "76bd28192968444ea3efa32b", + "revision": "b219e4ace9b640aa9c9a7176", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1a3064ae2ab549c095d223c3", + "revision": "d29b717520fd4be48c5b5c26", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -53713,60 +53713,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "81588be9134f4d04b90d92bb", + "revision": "2ae823a102b343be967fba3f", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540520.205802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558382385016304DD50", - "revision": "c5833189668f4d0a8379bfa5", + "revision": "19056ae478de41a2874af89e", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/payments/55838238501/ticket?caller_id=1310149122&hash=983b907e-205f-4db2-9b0a-8e3b51ecea21", - "revision": "70ce0eda884843988911a0e1", + "revision": "37560005f02745e79ce17ecb", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJf0lEQVR42u3dQW7jOhIGYGrlY/io9lF9hLfUShwEebFZVVTizGCAbunzpo0okj72isX8LLb+x3/+aYyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjH+2cW3xc/38ye3r0ueXpff716XPz/Jx8+Pzy/3rh89f/rh0+fjn49Klbx+X/v1JvWt4ICMjIyMjIyMjI+NZjOPFD0j9Eo2310s+fmebjay9aH18Tr19ymBkZGRkZGRkZGQ8g/H+NVt/vvZzav/v+/trjt++XrulouHyGtkWjI9URoR3ra8ChZGRkZGRkZGRkfHkxj68NiyxR/WwVP8cUBvHET/DOFZGRkZGRkZGRkZGxjx/ny6opxX6Zage2uv2QR0Li1BhXMIqPiMjIyMjIyMjI+M5jT0mXJawQj8s3q8lcr6+vsTl/JrBqaXGf5/vYWRkZGRkZGRkZPzbjXUv6VJW1v8/X/6X/a6MjIyMjIyMjIyMf7Nx5xPS6HE5v5dYehjrcwvpWlbxL/3dDyMjIyMjIyMjI+PRjVuqFi6pjLiO6/HPNPqWOri0lIIJW1HjL4exLm+s2TMyMjIyMjIyMjIe1HhNP0mRmSXQHiXwnkd2G3ucxwxODePcGBkZGRkZGRkZGc9mXEu7xLzRs5V+LaHLS5+v4j9Sc5d7HGsfbr+/le9hZGRkZGRkZGRkPJ5x6KSYOyC29JOhlcs1reKnxfuWRhYP/xxoD0ZGRkZGRkZGRsYTGts4bb/Mw+xp1t/m5wiFkW2py8tafnn2FwNGRkZGRkZGRkbG4xtzLD2vtffeS0DmUXLu889SBl3VS3ogIyMjIyMjIyMj4xmMucf5kJS5hBJhfgpo2zuGaBDFnaOpW8x7GXZGRkZGRkZGRkbGoxlz9vxS3jb8TmygGIqGJQ2x7fVWfKR64t18DyMjIyMjIyMjI+NhjD3EyYeXXPealN/LftNvurykMqKlL7GNOiMjIyMjIyMjI+NZjDmN/ijYNnYr70ndyllD9Tk5jDNvu9gZGRkZGRkZGRkZT2YM0/a6qTSeEbRXK0yHeHsrlfNOdoaRkZGRkZGRkZHxQMZh/h4bH157beXSS/UwdGfpKbqeC4tezizqb5+HxMjIyMjIyMjIyHg0Y+1NHl87RM5ju8RbbIiei4bL/BWTFXpGRkZGRkZGRkbGsxnXFGzJLVh6qRWeU/v7RD1Lx89W6OPm1Gu+jZGRkZGRkZGRkfHYxp5asFyni+41jb57fNBaCot46bbTZHFhZGRkZGRkZGRkPJMxZ2damMgPM/rQUjGu9D9f8ii0Ni75j+XIbJspIyMjIyMjIyMj4zmMwwp9zs6sr6hLjpzvhNl773u9FdOgx3hO2LfKyMjIyMjIyMjIeAZjXJj/ZhU/5dxzu8Q4xD7dk7p76dF+0YedkZGRkZGRkZGR8e83zub4W2mX2Mpy/jig25hzXycbT7+5tL2Vs2dkZGRkZGRkZGQ8mjEuzD9eKZicas/9WmqqfS8ys83veqQ0DSMjIyMjIyMjI+OpjLM0ep7j13h7G6f/LWRw5nXAOj8gNERvGBkZGRkZGRkZGc9hfCbWl5RqzztHQ+Q892KZ3dXLHwGWGfb2c63AyMjIyMjIyMjIeCxjn3RAnK7Zf2O8xyaLeQdqrkuuk3f9sJeUkZGRkZGRkZGR8VjGIeqSZ/2tTP+rOs/6Qxxmp+1iKBre7q3IyMjIyMjIyMjIeChjTcG0FGa/TLq87EBm2J0BDQ/8sf8jIyMjIyMjIyMj47GMsVv5bYyux97kLR4HGr/s7gqth4j2wr+99XcFRkZGRkZGRkZGxgMZ89FAYf6+Jdqatn4+XptBY9+X2aBzl5c2zcIzMjIyMjIyMjIynsEYY+kpez6Ntw9r9o/XgHZW3++x3cuy15Gxf1/PMDIyMjIyMjIyMh7SeE0L82HnaG12fnkZ4xbSfAxR2znzc/tddoaRkZGRkZGRkZHxgMaQednps7JXK4wR+IDN2Zkair+WeoKRkZGRkZGRkZHxdMYYbLmOF/Ny/hpaKu7tE30+MJYjuSNjY2RkZGRkZGRkZDytsU9akscmi3kcYfH+MhlHbhJTQ/Exg8PIyMjIyMjIyMh4FmPNs8Qntck202tpoBjSNOOS/6w3TK4ebvW/i5GRkZGRkZGRkfHYxtxbMb+kfkmbQWOspqWtqC1Ctln781vPHRkZGRkZGRkZGRkZD26Ms/77mILpk6JhPDXoPs76Z9tMl1kEvnaCeWPNnpGRkZGRkZGRkfFoxiXR6slCa+l6Hjee/nBpNztT6xJGRkZGRkZGRkbGExnnpwbFBoptjMy0+a7QWwmzh2aN6+SvAWM8h5GRkZGRkZGRkfEsxjxtDwmX/Oza7LylbovPzxC02TnFaKA9GBkZGRkZGRkZGc9m7GGpPuRZWuKvpTJoqdQIWfiYymlJHUqE9Xf9HxkZGRkZGRkZGRn/bmPOzjxKw5UQOW/p9M42ae6SEzfxrr3O6IyMjIyMjIyMjIynMra0PXR4ZEu9FZ9z/KiuIZrUyHyaWA+HiDIyMjIyMjIyMjKeyhixt9JAsRVa2m/aQ9HQJxXGZd/Yw3I+IyMjIyMjIyMj46mMgyif/xMaKM7atMSXzGix/2Ib39VLJxhGRkZGRkZGRkbGMxhzjKU2XAm03ApxnXSCiVtRw4C2UGE8/xsYGRkZGRkZGRkZz2lskzxLT4/MHVyGpMzPIZoaz2mTUDwjIyMjIyMjIyPjOYw7IZr2TbAl5muWFL1pe03Ta9uYnv4+wMjIyMjIyMjIyHgWY57sXyf59BpC36kMbn22OfVSFubXyV0LIyMjIyMjIyMj45mMS4mxtNSLpZ4a1MLpQ6FWmPVWzKmcX9cKjIyMjIyMjIyMjAc03uOsfwklQh/DL7EOuO4vw4fb67tiqTHczsjIyMjIyMjIyHhW407APPRr2b09PzlkZ56Q7Xc5e0ZGRkZGRkZGRsbjG5fSSTFHZobV92d0ffzSXgv8+a8Bz0st7kllZGRkZGRkZGRkPJux7zwpfh5lHMNkv3YrX1MDmPzAtBWVkZGRkZGRkZGR8VTGvJf0iR2+bIM6vW1LJ3zOEust8Gsq58fsDCMjIyMjIyMjI+OxjH/mh5GRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGR8Q80/gd+PCOEIzZrpQAAAABJRU5ErkJggg==", - "revision": "833c1ec4f670422d8850f3ea", + "revision": "c9a8c50e1c4247238ab723f1", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "f7e3ff311e2b4ed5a76f01db", + "revision": "6ec72e19cee04d8b8262dbdc", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -53793,133 +53793,133 @@ "status_detail": "expired", "currency_id": "BRL" }, - "revision": "28af291c6cb547e1a08cfe01", + "revision": "20aeaf5687034efda3cb02be", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history/1679067982009/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0667.4940.3784.9818-40", - "revision": "efda49e996c1413fa7a8fd9b", + "revision": "bb2ef2dab6144013b80cd734", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5a7c64c4b17b44e0b2963745", + "revision": "81b17e6220584e73a6ae5ba5", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c0e2ce0b7b4f46cfa9232fd5", + "revision": "bf68b9f219fc4d8a85ce13e5", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "7dfc0a64e85f4790a3f3bf1c", + "revision": "9d307fc843b64d77aeb34561", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/066749403784981840", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1679067783161, "dateValidity": 1679067783161, "totalValue": 0, "currencyType": "USD" }, - "revision": "dfe96a2c4754422baa772d3f", + "revision": "457a8bf417874277b6229bd8", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "20.00000000", "symbol": "BRL", "value": 3.86 }, - "revision": "e0fc2f8f586c4277b61ae198", + "revision": "e941f601af9146fcb79b18eb", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "12224831.00000000", "symbol": "IVIP", "value": 1888.088 }, - "revision": "2a8ebd668c084e06b3f170ce", + "revision": "23bcfdd944164f84b0c21dc8", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "622d02756bd74eda8ac69499", + "revision": "10f4b8ec42624d03b109efa6", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344921, + "modified": 1701809344921 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "a599740be6c3462a8d399f61", + "revision": "ed89a6b660cc4e2199041773", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -53955,64 +53955,64 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "59193178cb994fb5821b9317", + "revision": "bf85a2c0d59740739f6d51c6", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684181007832/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 0721.5687.2012.5989-10", - "revision": "b4ece90339414af1a4839808", + "revision": "9cd0ca1ce821436b9b5bc706", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, - "revision": "6d42553e16764459892cfe6b", + "revision": "49f6710711c94d35b49e2531", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "637367bb38b84d6d97da997f", + "revision": "e76f898f573645a68bb49495", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "727be00a8faf4f888cc47011", + "revision": "c29257ddc43043b8abb3fb67", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -54039,27 +54039,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "c3a171ae1cdf44e8b9c7c738", + "revision": "a8c43f54ddbb481a818baa42", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684623306168/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "9547438d72cf46589e90c327", + "revision": "b43609771d064900904fb9c8", "revision_nr": 1, - "created": 1701465820538, - "modified": 1701465820538 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624428265/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624428265, @@ -54073,16 +54073,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b4792d235b904607af9309ec", + "revision": "8f563885f7344dd4905bb4c5", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624428265", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -54112,53 +54112,53 @@ "history_id": 1684624428265, "description": "Compra de 15.956.517,00 IVIP por 3.276,00 BRL" }, - "revision": "3dfa9e2adbfc49c7bcff9145", + "revision": "d71846c06f7a406fb855b559", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, - "revision": "fd077770b3b641c9b11ec5e0", + "revision": "d55f1674faf14b75a0e83c17", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e37e7305d54f479088166f30", + "revision": "d4b15b102dc94abda0121248", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "92eba3945e1d477b98d1dda6", + "revision": "4c9c38248ebd47a59b7700f3", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -54185,27 +54185,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "d184a69789354dacbd20fd86", + "revision": "be6a7d2bd95d48ba9a2848c8", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624857509/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "9e7edbf1604f47708deae79c", + "revision": "a3c8e4b0d7434870a25202a9", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624906138/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624906138, @@ -54219,16 +54219,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "61b390cf90134c1099a0c877", + "revision": "f46950daa3ef400788822c24", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1684624906138", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -54258,29 +54258,29 @@ "history_id": 1684624906138, "description": "Compra de 6.448.848,00 IVIP por 1.324,00 BRL" }, - "revision": "6b1798e0c0344e7787ddb50d", + "revision": "aeb30c4fc1bc45d589669030", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "93d6944904b140ba87a53c61", + "revision": "39ee532e9e324c379aa175da", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -54316,27 +54316,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3c1b73989c114ad0ab68b9cf", + "revision": "3ba2451fa9e04b6eb4668aec", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687293918217/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0721.5687.2012.5989-10", - "revision": "5d5581fd96fd4874a7f8a585", + "revision": "e6346f2a5a7447eea90e9104", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024615/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -54352,16 +54352,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "289bc1be92f54ecebeb5accf", + "revision": "8d9993cde45e4f378313e285", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024615", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -54391,27 +54391,27 @@ "currency_id": "BRL", "history_id": 1687294024615 }, - "revision": "f3f6582650c54af39f9cc988", + "revision": "f201ff2207434439a8488fac", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024615/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", - "revision": "edbb599e936143bf9cd005f3", + "revision": "4e4ca1e5d25345959891c4dd", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024774/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -54427,16 +54427,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "0a8ab55c3fdb4459b8f26d5e", + "revision": "73e9121a58d04ceb8326889e", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024774", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -54466,27 +54466,27 @@ "currency_id": "BRL", "history_id": 1687294024774 }, - "revision": "77ca31ea98da4df58e32d256", + "revision": "38be887570cb48f9b04ca27c", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1687294024774/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", - "revision": "7a2efccc3cae48928cf3f10a", + "revision": "be148c7d1c1b44af922346c3", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688524692305/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688524692305, @@ -54500,16 +54500,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "f6b01100e97349438534d3d4", + "revision": "d235c1e0ed4e4911ab27389f", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688524692305", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -54537,27 +54537,27 @@ "currency_id": "IVIP", "history_id": 1688524692305 }, - "revision": "8b5d60f77de34596b78b8e74", + "revision": "1f0a90680c5c473888bafcc0", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688524692305/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/4/2023", - "revision": "0474e7d761dd43538cd28ad0", + "revision": "c376cbc1d3db489d901e63b9", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344922, + "modified": 1701809344922 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688525524308/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688525524308, @@ -54571,16 +54571,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "5774cacf38d74272864a5342", + "revision": "5b5b8d76db9b4d6886a8123e", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1688525524308", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -54610,29 +54610,29 @@ "history_id": 1688525524308, "description": "Compra de 155.466,00 IVIP por 50,00 BRL" }, - "revision": "dd34e70c416d48fb9a45b3a6", + "revision": "54b17c6991e04771809a6e3f", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "abfa87ed7681445a9527ee42", + "revision": "2726bbb9323a4b118840428a", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -54668,40 +54668,40 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "9f3b784e6c7e409285d3a506", + "revision": "26239c19c2a241c9830e6e09", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689182003298/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 2.500.000,00 IVIP para a carteira 0xA7d5Cb00F2824b3D3Bf7b0a4AFe13175618B0FdC", - "revision": "e17a78575bd849d3826187fd", + "revision": "7f53446b9f2c480f98b4b738", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "9684f4415ced455ab865ae89", + "revision": "ee8ca4f855934a1388fce475", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -54737,27 +54737,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "8dc5d081a99c42de8e122d6e", + "revision": "d94179d9cf1b42fcb48d4093", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689689388308/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0721.5687.2012.5989-10", - "revision": "ce2d174ad8604ef6bef3ef98", + "revision": "04576f5e69524ea8b0bc3936", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928096/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -54773,16 +54773,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "6c9521b5259b4b05bb7b4ece", + "revision": "3f81c5448cd1467992be4bfa", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928096", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -54812,27 +54812,27 @@ "currency_id": "BRL", "history_id": 1689690928096 }, - "revision": "c2e286d786e54cf48da9cf10", + "revision": "1c7c288f5ead45b287b58629", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928096/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", - "revision": "848ea558912e4711a7523671", + "revision": "28cf9d6d786744a19594fbd3", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928337/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -54848,16 +54848,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "91c9a021338f4a539a2bb7de", + "revision": "e2c88f14d1154628b18f46e3", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928337", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -54887,27 +54887,27 @@ "currency_id": "BRL", "history_id": 1689690928337 }, - "revision": "a97b716ec14e4c54974d59c7", + "revision": "bae67004e2bb4bcf9d7688d1", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1689690928337/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", - "revision": "a3da8603b00e4592bc64efd2", + "revision": "b9cc3cff7f5b433e84122ac7", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691203130486, "net_received_amount": 0, @@ -54919,27 +54919,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "37ea101d268d48739b96f911", + "revision": "b94d90ea0f874d1eac117f7f", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691203130486", - "revision": "5b9894d0cc2048d4b784868f", + "revision": "f826c01e75f44874b6540338", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -54967,27 +54967,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "cc62703405c448108eec5fdc", + "revision": "719a2d07d0e94e8089741394", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691203130486/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "a812bd2635a74024bb08c64d", + "revision": "7dd0df51c8a4423e91c3ce97", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691556958476, "net_received_amount": 0, @@ -54999,27 +54999,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "30451f11933047d3a0886bec", + "revision": "23506659daa1440cbea0476c", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691556958476", - "revision": "e6ef2aad11c7440fa18a8714", + "revision": "81e3069169a141b4b32a1b61", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -55047,27 +55047,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "aa23aec84c3a4ce8ae5defae", + "revision": "7ee3fb4a9b904a6ab16e0425", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691556958476/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 200.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/9/2023", - "revision": "75b2efafccc6494a8f198dd9", + "revision": "95492387caa348409dc8c955", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344923, + "modified": 1701809344923 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691557017053, "net_received_amount": 0, @@ -55079,27 +55079,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "9f28e366a74d4c6295ccffc2", + "revision": "eb2ee384a04149938d0269ab", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691557017053", - "revision": "9620f503499c42c29ae80bde", + "revision": "df8ee6c0a8734ff38e821044", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -55127,27 +55127,27 @@ "base_currency_id": "BRL", "status_detail": "accredited" }, - "revision": "0377ec74b8de49c1938449b3", + "revision": "e8950c66a74b4bc4b0310618", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1691557017053/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 30,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/9/2024", - "revision": "82f5c69fcd3b4a51b2169d4a", + "revision": "13327e724c8b4043a2466141", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -55155,16 +55155,16 @@ "value": 1694808463023 } }, - "revision": "3b6fc55f22b24c5db2fd7957", + "revision": "2d491dc4754743e7a5cd86a7", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692216463023, "net_received_amount": 0, @@ -55176,27 +55176,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b3178a966ce94b7da6248929", + "revision": "0a641d68795b40af999c696f", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1692216463023", - "revision": "15e34a377d1847f5bf228704", + "revision": "1981f3a340fb406b81937c1c", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -55230,27 +55230,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d92498f473ab4bd19d999668", + "revision": "d6e892970b9649819aa2bd7f", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692216463023/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 720,00 para a carteira iVip 0721.5687.2012.5989-10", - "revision": "bfb46460e77a477199833a4d", + "revision": "d2e5266b7e684d29a102f7fb", "revision_nr": 1, - "created": 1701465820539, - "modified": 1701465820539 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296799894/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 3, @@ -55266,16 +55266,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "55ac29ff4210412a9a72b652", + "revision": "271d6a69c5cd43e68be9fa7e", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296799894", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -55305,27 +55305,27 @@ "currency_id": "BRL", "history_id": 1692296799894 }, - "revision": "ff70666ad8ff402695fca29c", + "revision": "4090cd56525b47b8b05e910e", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296799894/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 3 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", - "revision": "7388e604992d4cb39c362d2e", + "revision": "1a496f5cb025417494f7fe37", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296800012/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 3, @@ -55341,16 +55341,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "75a01d16886f4efd9e191d23", + "revision": "44b60f419def4eedaa4fc487", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296800012", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -55380,27 +55380,27 @@ "currency_id": "BRL", "history_id": 1692296800012 }, - "revision": "725cd98dfa614c0b90863787", + "revision": "f41dde8086934f279cf9d060", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1692296800012/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 3 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", - "revision": "38d700c0c1074165b18e2d7f", + "revision": "49917965f1bd4e58b934b7ec", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694237371329, "net_received_amount": 0, @@ -55412,27 +55412,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "032255a9e3854dc787a2784f", + "revision": "0337ae262267451891872542", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694237371329", - "revision": "d490523d0f884bc39caf1bcc", + "revision": "6efef2d8142e43218b60b438", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -55460,27 +55460,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "0e282546fce446fe970bab5e", + "revision": "342c0f8001734b83998e0d7c", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237371329/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 200.000,00 IVIP com um rendimento de +4.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "2faba63194b94ccd97cbe30d", + "revision": "db6753138b8a478c9f3147c2", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694237443497, "net_received_amount": 0, @@ -55492,27 +55492,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a4d8f4c09c1f4775ad1718d6", + "revision": "55c6b5d89e1f4bcea33574a1", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694237443497", - "revision": "ee97d727ab4b49d8b31e0ac6", + "revision": "5540d5bb1f894e7299890025", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -55546,27 +55546,27 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "f0f5412430994bcdb6568f1b", + "revision": "3467833768c84a3b887fdf65", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694237443497/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.030.591,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 09/10/2023 - Y12XDT27", - "revision": "c911ebe37b034f66b30106a0", + "revision": "c2a495b1d6494ac4a54422d6", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344924, + "modified": 1701809344924 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -55574,16 +55574,16 @@ "value": 1697304530286 } }, - "revision": "b362345bc17f43c1ba6e434b", + "revision": "5c0ea6fa3dd948cc845d4f7c", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694712530286, "net_received_amount": 0, @@ -55595,27 +55595,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8ffccadc9eae47e494766ce4", + "revision": "a291867a52ed4396ab7c8b34", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694712530286", - "revision": "281bf663cc4c4ecba188cce8", + "revision": "bedc9c6b0c9546bdba89b801", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -55649,27 +55649,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f8da5272a1c342ed9be33490", + "revision": "d6b66d98c9844b04bae2b8a9", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694712530286/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 820,00 BRL para a carteira iVip 0721.5687.2012.5989-10", - "revision": "69c23c90db244f61ac5b51f0", + "revision": "a1360141fd2143a299a30677", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694723447405, "net_received_amount": 0, @@ -55683,27 +55683,27 @@ "installment_paid": 4, "installments_payable": 0 }, - "revision": "619a549697a74e6185d0f009", + "revision": "c73699625a2c47bab9bdd3a8", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694723447405", - "revision": "6e024182aeec42f3a5161f3c", + "revision": "6261aa5c30c04551b71c4c77", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -55731,27 +55731,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "f98341ad9ce94618b01227c6", + "revision": "a7a419bb8c32405aacac21b4", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447405/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 4 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", - "revision": "42860aac22e943c9b8653300", + "revision": "72488f80303c4508afa2419e", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694723447463, "net_received_amount": 0, @@ -55765,27 +55765,27 @@ "installment_paid": 4, "installments_payable": 0 }, - "revision": "ec065867a3cc4e9cad2d27f4", + "revision": "caea9c4566854744b363e375", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694723447463", - "revision": "6972724de7e24a6e9ae8f865", + "revision": "a96112a404134bca98e6180b", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -55813,27 +55813,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "2f878a155c6c436398483ac0", + "revision": "d567d85c335d45e7ac645f7e", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1694723447463/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 4 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", - "revision": "ba599d98c61348a6b2920a82", + "revision": "280360d093ff4c6c8e2d583b", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696464489805, "net_received_amount": 0, @@ -55845,27 +55845,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b91f751a9855468698366b34", + "revision": "e8d46e11f36c4a1aa6c4c7a7", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1696464489805", - "revision": "7ff22691adca43b19b94e064", + "revision": "0eec7700800b4560bd78b988", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -55894,53 +55894,53 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "b78e27905e6d4fe19a997282", + "revision": "e8a7171f2ac248c680cea0f6", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history/1696464489805/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "96bd9135eff84ab4ba688037", + "revision": "00a67da18ad34d1fab7ed504", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9f12d1b4c3ab4b5f8fff6bf5", + "revision": "12193075d66d412fa8c18023", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, - "revision": "2d529b14e8094bcd9f9dc495", + "revision": "46c47e254acf4d7d9d40b305", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684623306168, "type": "emprestimo", @@ -55956,53 +55956,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "3493ca09ad8f4eb0b0208e53", + "revision": "d248be574d784baa9101049b", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "937554ef739a47e4b960ed69", + "revision": "349985dd593948ec9cebcfe5", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684623306168/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "96e7b3cc6fc74fc0a8419696", + "revision": "6131cc3ec5d6489d96e6ab37", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, - "revision": "313f04ef40cf4948bba222fe", + "revision": "5794c29373064936b41aa2d8", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684624857509, "type": "emprestimo", @@ -56018,64 +56018,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "9fe474dd7cce4d348e6de10f", + "revision": "41e7f1252e52422a85b78d5b", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "a5014a7caea641c7aeef5ea5", + "revision": "0767b09d166e4fc59557d6af", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306/1684624857509/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "73c68560ba794b1daeba0d62", + "revision": "7dc854a6086b45c1b1121684", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202306", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "942c1fbceefb4238a19b75b7", + "revision": "ddf396f9838044e6a51d9905", "revision_nr": 1, - "created": 1701465820540, - "modified": 1701465820540 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, - "revision": "c755c964d6324fe79407a995", + "revision": "e473ac5e22224d618e99b59c", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684623306168, "type": "emprestimo", @@ -56091,53 +56091,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "74746bd728da40d9ab0b3a33", + "revision": "5e42e7d762fb487e811ede78", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "5855d4a5d1ea4e508bd2c2f3", + "revision": "95b686b667744b63b7037429", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684623306168/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "0853ab6db4f442df87c30d55", + "revision": "9d8e6f2fe347482ebbb4c2c1", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, - "revision": "e794d907027644f69d54c9ea", + "revision": "444b9eb176894b1b85ac00f7", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684624857509, "type": "emprestimo", @@ -56153,64 +56153,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "761e02d65bba4a38aa8c4a65", + "revision": "c696e43e22df43cab4c11712", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "d0d80ac42b944008ad901c59", + "revision": "29afd10fe18642e598454e85", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307/1684624857509/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "d6bd37e7fbb549348ee93222", + "revision": "047d3493a91946c9a99f3595", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202307", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "40ea664b4fda4f9aab58a0c5", + "revision": "add2f38513574571827b4d9b", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, - "revision": "d6935a2da6004b9aa3af036a", + "revision": "1df94515a9a945e1a767a1b6", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684623306168, "type": "emprestimo", @@ -56226,53 +56226,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "d2ca5383e11f426a8cf90f2f", + "revision": "e1a97535484e47a293eb0b00", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "64b6d81c53704bb0bba65bb4", + "revision": "fec886708bea4324b03a1017", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684623306168/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "b6632b91483c43d69965ffc7", + "revision": "d28dae51162f4bebbddc178a", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344925, + "modified": 1701809344925 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, - "revision": "67680bbda80747399f4d1462", + "revision": "02e8889c41a9459685df76d4", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684624857509, "type": "emprestimo", @@ -56288,64 +56288,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "2fb39b7ab1c94dba96f794b8", + "revision": "f7a4cf47f2fd408b9da72b06", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "6af9797b7819481e9a8314bd", + "revision": "3573db0f904947209681bef8", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308/1684624857509/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "fde6fc2dc09b4dbd969f4b18", + "revision": "3d732fde9e52429693889122", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202308", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "2b55cc2d461542dbbbc5eae9", + "revision": "9c51fdbb921744c9b1e3d561", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, - "revision": "b67d03c9790f4e678124e07f", + "revision": "819e406ded9140ec9982ade3", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684623306168, "type": "emprestimo", @@ -56365,53 +56365,53 @@ "value": 1694723447423 } }, - "revision": "6ce332c55f214ca6874d7cbd", + "revision": "17246d058225436caefd0f7c", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "f689c8a7f9de45479da62fd5", + "revision": "3a62148f4fd44746a1edc0fb", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684623306168/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "40f1db14dfef4d46ba301b02", + "revision": "3e4e7c56731846ff9f4b09db", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, - "revision": "8cebf6a46ceb445fab7069c9", + "revision": "bd5e3657672f4ac2abf16d1d", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684624857509, "type": "emprestimo", @@ -56431,60 +56431,60 @@ "value": 1694723447480 } }, - "revision": "f9d789e96ed8498889345e77", + "revision": "bf8a714076544a6eb51c71fd", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "1e94ac299bd04d3fadf4b3a7", + "revision": "876f6a7ef38041dc9a78f20e", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309/1684624857509/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "172189a40f064467bbe261ae", + "revision": "b3db9cef15c74b5db3bdea24", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices/202309", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "0a4be2c6053b47aa82737c52", + "revision": "fb6ab521dd7b4f2d85eaf3f0", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "2ac4080fd1f045d390c261ad", + "revision": "dc9c8f1edc2f4ec5a1fcaff2", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 3000, "limitUsed": 750, @@ -56497,16 +56497,16 @@ "value": 1684186352172 } }, - "revision": "cb22375f06864a25bc0332cc", + "revision": "d6a3dbb90d054d31bf5114a1", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072156872012598910", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684180740501, "dateValidity": 1684180740501, @@ -56517,108 +56517,108 @@ "value": 1696561200000 } }, - "revision": "6bcfc29d475642968d068df8", + "revision": "ea29a009fe6f4e1e9d36765d", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072270616449276800/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c3eee25cf40342348944f8ba", + "revision": "1aeac505f77341b484e14344", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072270616449276800/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3fdc316c14af429ebf61b191", + "revision": "f95efdeab97e487fa2a717c4", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072270616449276800", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1683670601575, "dateValidity": 1683670601575, "totalValue": 0, "currencyType": "USD" }, - "revision": "d963e9deff5c4f62a86cf070", + "revision": "7c6935648ca74e75bc8bec28", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, - "revision": "348fa626d9bb448989f5152c", + "revision": "5b731c5f5bb849f68d6531d4", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "44999.00000000", "symbol": "IVIP", "value": 15.26 }, - "revision": "d6805da9dea742c18798d245", + "revision": "22fc014527384077a510e09c", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3f157669241840ee89f2e238", + "revision": "73456c74c02b4434a0229c99", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "3c7d989f31374ad586633a3d", + "revision": "64c1ce1cacb24546b8821583", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -56654,27 +56654,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "14f40a56891c41e4bce4756b", + "revision": "3bde945f7f5e40629435872a", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689017003664/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0723.1653.8247.0090-10", - "revision": "a29effdc9f6a4104bdcd7c2a", + "revision": "7e642831e7b24e2f8ff0ed36", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689029121257/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689029121257, @@ -56688,16 +56688,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "12fd391903a04162b027422c", + "revision": "60753dde915c4953aa8491dd", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history/1689029121257", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -56727,52 +56727,52 @@ "history_id": 1689029121257, "description": "Compra de 44.999,00 IVIP por 50,00 BRL" }, - "revision": "d0333b5622934aa1887cad55", + "revision": "6ae89d83c8a246509da03d26", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6090051af64b445093a7534d", + "revision": "a71501d8cecd4f93b11f7fb6", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "30e9eedffbad4873b59a3aee", + "revision": "d9fc5eed4c21400fa8266c56", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "0d44dd553bb4437292332069", + "revision": "837f78e9ba0a460cb6c5f233", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072316538247009010", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1689016980183, "dateValidity": 1689016980183, @@ -56780,70 +56780,70 @@ "currencyType": "USD", "balancesModificacao": 1689822000000 }, - "revision": "a3539c5179cb4973b35ff44e", + "revision": "8682030f69664bc59be8552e", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, - "revision": "42ec070a2b3745e799d80b5a", + "revision": "ea22662e36d94454a2c4cd27", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "88319.00000000", "symbol": "IVIP", "value": 24.34 }, - "revision": "4d9d1ba9c2564279933c4b9f", + "revision": "45b217e60c124fea92c6b014", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "0960a524907445bdb789c783", + "revision": "3a2b8f2cb23d432c8c758ac6", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "99dc016b02c1489c8a2e29e2", + "revision": "e4633167df32412a87ec9dcb", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -56879,27 +56879,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "94cfc2896c4e4d0b98de3a46", + "revision": "c6349c29e1d74665923b67b4", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684153197656/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0724.0208.9290.1489-10", - "revision": "3e29b106f45049c4b4a87fc7", + "revision": "b7181ce4e3a041a084d7d8fc", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684634671417/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684634671417, @@ -56913,16 +56913,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "8bd7c88bfc5a44709c41b456", + "revision": "1465f349c5394f968a7abdf0", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1684634671417", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -56952,29 +56952,29 @@ "history_id": 1684634671417, "description": "Compra de 488.292,00 IVIP por 100,00 BRL" }, - "revision": "348d5e54be3b406b8d3cbead", + "revision": "0605359aa4a9474da70a6c10", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "6e04b72d8feb41cc8daa75f1", + "revision": "597342c90c74423c9bc9a5a9", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -57010,40 +57010,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "904b05a65a8047fc98535a51", + "revision": "885b5b5f9e994c749396d101", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685124719970/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 120,00 para a carteira iVip 0724.0208.9290.1489-10", - "revision": "53bb90a1ddba4b63a7dd05e4", + "revision": "f96c78b632c04f6fac149c5d", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "79b4dd05f8154342a69211ed", + "revision": "7769a155e5c74aa1815d030d", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -57079,27 +57079,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "02bf21f5309b4453974893b0", + "revision": "ec878c6eb26643349d9c9470", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685203508718/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.510,00 para a carteira iVip 0724.0208.9290.1489-10", - "revision": "c6396387a18944629e89ce59", + "revision": "76b23c27846f498f83eb2b74", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344926, + "modified": 1701809344926 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685744132878/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685744132878, @@ -57113,16 +57113,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d8f83fd76d5e46998f1f91cb", + "revision": "d6f74071a7a34406919b4b4b", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1685744132878", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -57152,29 +57152,29 @@ "history_id": 1685744132878, "description": "Compra de 5.725.017,00 IVIP por 1.630,00 BRL" }, - "revision": "e83ffa96ee7e465d9dac33ba", + "revision": "58e78cf6b4374eb9a053d608", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "6b55f01194f74310a7c364bf", + "revision": "e7744c86aea54e7084c4e91b", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -57210,40 +57210,40 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "462c5461879345618548f517", + "revision": "de13ea1354a847bdaa68f1aa", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1687787978807/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 5.122.916,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", - "revision": "cc24e8eafb4c4e938405edb4", + "revision": "c537206dab204917be6516ab", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "221c9a455b594c18abf8d8a5", + "revision": "8fdfbc51a60a4ae79b08fda6", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -57279,27 +57279,27 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "3b2b617f06214403a2085a40", + "revision": "de896683d9d9439bae8abcf0", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1688549736848/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1.002.074,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", - "revision": "e6b418745c5e401e9cf2293d", + "revision": "cd1aebd17a0a4f52904f3a06", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690225683361, "net_received_amount": 0, @@ -57311,27 +57311,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "31623fcf0d8c4e98a1f0a466", + "revision": "de73d466e7104fd8ada4f0e9", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072402089290148910/history/1690225683361", - "revision": "d6b2f684d9674331bc3c33e3", + "revision": "fc3e8a71c76f4222b50141aa", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -57369,49 +57369,49 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "9f0dffea2700492e8465aaa8", + "revision": "ae2f104e8e6040b69b9781b3", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history/1690225683361/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 88.319,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", - "revision": "db79951904dc476c8e60d4b7", + "revision": "35e921dfbf514d2d9e406425", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8d5802f404064be68ababa04", + "revision": "63a51698be18414d987ba373", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "be59bd8a5c88476a8c7a0702", + "revision": "bd00d6e57f434da49fb7cec1", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 3000, "limitUsed": 0, @@ -57424,16 +57424,16 @@ "value": 1687975284723 } }, - "revision": "e33b2b2a64014086b8994915", + "revision": "3aeb759a3bcb41bb864344b2", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/072402089290148910", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684153171860, "dateValidity": 1684153171860, @@ -57441,77 +57441,77 @@ "currencyType": "USD", "balancesModificacao": 1690398452515 }, - "revision": "250e81e6223e4a8fa4f8fc54", + "revision": "241098007c374bae81c7a8e5", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/073789164441763200/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "bfcf823f123c4923a4cfb574", + "revision": "35c70c54f4d64f23bf6abd83", "revision_nr": 1, - "created": 1701465820541, - "modified": 1701465820541 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/073789164441763200/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "896c2e145ac44b34ac8b184b", + "revision": "60741896a90847d4b07de7fd", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/073789164441763200", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1696199966019, "dateValidity": 1696199966060, "currencyType": "USD" }, - "revision": "dcee15cda42544438722b200", + "revision": "59c9c44f481c4ab4b77adafd", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "59c469f2b4eb41d1a199ab8f", + "revision": "9c31ef4e3dac43f9bfe7a595", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "210030bcb5594708bdd7ccba", + "revision": "3aa4e67f2d1041aaac795a7c", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -57542,93 +57542,93 @@ }, "money_release_status": "rejected" }, - "revision": "b43aeda57d984dd89e2abca9", + "revision": "a2c4a63d847842e49857e99b", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history/1678088421430/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0749.8124.2324.5748-20", - "revision": "188f74eaab3b454ba2c5f0c6", + "revision": "efe557e5efe44327b316a874", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e23aeda2c4594df4a5c0e646", + "revision": "3b8d094b4dfb4cb5a487e35d", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/074981242324574820", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677902662156, "dateValidity": 1678146242488, "totalValue": 0, "currencyType": "USD" }, - "revision": "c4df6565409b4dd496409947", + "revision": "d15b781297c143088e6c8848", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "30.00000000", "symbol": "BRL", "value": 6.28 }, - "revision": "490be5a6130149eb940052de", + "revision": "fb4bfdebf32749fea7e112e1", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "13b66d5102034e0aaae3aa56", + "revision": "82a93c411c574ceb892d683f", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "53c09ba26bf34f9ea5691640", + "revision": "4546d79f15184f728ac07ea5", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -57664,63 +57664,63 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "97f36384d7c9458dbde78ce8", + "revision": "086ae82ab7264214a7febd96", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history/1689767358341/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0752.7001.2379.5890-70", - "revision": "9b7fb83b3def43deb07f5e46", + "revision": "541ee115e0ae4b43a31c630f", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7ff9bb442ade418698e45f7f", + "revision": "cc8b1afd71c643628ebb3847", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "2bc1cd0e033440beab14b53d", + "revision": "a732d3c6e40a4736915b3bbd", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "138510d34ff142b5b58285ac", + "revision": "c89b435c885840dbbcb6876b", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/075270012379589070", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1689767257899, "dateValidity": 1689767257899, @@ -57728,55 +57728,55 @@ "currencyType": "USD", "balancesModificacao": 1690416536434 }, - "revision": "b62f2510c590480791067ab8", + "revision": "2cb96982ab2f4ce185dc8d82", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344927, + "modified": 1701809344927 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "186.00000000", "symbol": "BRL", "value": 36.47 }, - "revision": "63a18a7373e94963843dd49c", + "revision": "0b4f7bf3b0f5402584fb41ee", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "605b1fdbc27641df92517c75", + "revision": "b9e3641bd226414aac77eae8", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "534f6c9726d8400b90ee4749", + "revision": "3bf4690ea0b7469aaf19fa54", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -57812,27 +57812,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "cff4c2137ad5487c86854254", + "revision": "05bcc4fca50b4458a0ec92a9", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1684093506914/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 240,00 para a carteira iVip 0754.2952.0947.6616-50", - "revision": "be353628af8948c0a6abffce", + "revision": "e140115f78ac4d58beffe5be", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1689771495719/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689771495719, @@ -57846,16 +57846,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "70f1eb7d24f84c22ad518422", + "revision": "06b99cc9471d4294ac68ac6a", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1689771495719", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -57883,63 +57883,63 @@ "currency_id": "BRL", "history_id": 1689771495719 }, - "revision": "e8dc036677bc4cd68f03e0b5", + "revision": "96c291db1f334a4a96067ea6", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history/1689771495719/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 54,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/19/2024", - "revision": "f970a58f92df48fb9f57f6bf", + "revision": "410d6cd253b94f4a9f6f914b", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6e0538023ccc49799e3002b9", + "revision": "6d111e9c6de346ed96978fe8", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "16114b98b86a49efbabaf3ea", + "revision": "116d28c8473e43be978a9b21", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "75ccef1ac2274f05aa4fdf92", + "revision": "c47366f0ada64aa9abaa945b", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/075429520947661650", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684093342801, "dateValidity": 1684093342801, @@ -57950,63 +57950,63 @@ "value": 1697425200000 } }, - "revision": "c2b4a7a247bd4794964f6135", + "revision": "912bbdca7ef84095ab2d1a87", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076012264992064480/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "362ac2949b914c0b838e9b4c", + "revision": "2f601264abc04157932f3c13", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076012264992064480/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "d62f42b4c4144110b593db62", + "revision": "f5947844b2f348718aadea6f", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076012264992064480/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a217ed6dcd9e411e9d960313", + "revision": "ec02722840c6487e878bdea7", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076012264992064480/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "cc674cf758c245ff9ede0be1", + "revision": "b6fc05c615db490e90c2dc12", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076012264992064480", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678218975769, "dateValidity": 1678233375802, @@ -58017,55 +58017,55 @@ "value": 1697079600000 } }, - "revision": "1ca8bd812016436c9595c1d6", + "revision": "1330b1ed85ee4ae485f5cf6c", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "932705.00000000", "symbol": "IVIP", "value": 508.13 }, - "revision": "2f3bbe7558b9419696458b32", + "revision": "91ce844409bc41e39d0c6c12", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "bbb685676a9c484eb85e5a6b", + "revision": "c3c25488048543d89eb63cd3", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "b961c3e7b42c4018ba6dcdc2", + "revision": "cc577fd4330844aab8be5c59", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -58101,40 +58101,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9e5c3b56ac1b497d9db1a84d", + "revision": "a6e4f5db171c4fa69ee7ae18", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1683069444271/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "f57d538028a4405882ab2cdb", + "revision": "ad4da5be90074add99e50061", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "46946214010a4b2a8265001b", + "revision": "e8b9091361fd454cb01f5f3a", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -58170,40 +58170,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "df9778d1b99d481c99177ab9", + "revision": "fa2e36a6826c432e921b742c", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684135234297/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "d4367723eb4e4ca6abf02a78", + "revision": "4f89797f6bf847d9b9830cfe", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "f3ba4c400ddb45c6a06e6ae8", + "revision": "4ac5a8f2fa6f4bb381d650d2", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -58239,64 +58239,64 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5a03a519b2874505b9f15279", + "revision": "23d08643d9b746fda2f97293", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684178465791/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "533746d2cb454104a8998168", + "revision": "6bba0e2c69ef46b594581dd5", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "277e3f09d5fe42ae9239572a", + "revision": "6fb2af4ef3924733be900bf5", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c23dac4c4d594ec893de0650", + "revision": "b2f6706af6034e3e972934cd", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "3f06ca599d3341f19a7297d6", + "revision": "690147948d4b467e872b697b", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -58323,27 +58323,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "76a76045eaf649a8911eb13c", + "revision": "0e2dc1ce51f2445783f5f8f1", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684353970499/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "096d59d89a5c4b498495bab0", + "revision": "2f7e72c4b73b4464a28e1969", "revision_nr": 1, - "created": 1701465820542, - "modified": 1701465820542 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684627580539/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684627580539, @@ -58357,16 +58357,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "3f65a5a40ce64d4b889c5fdb", + "revision": "5fd11ef777b347568f08fdc2", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684627580539", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -58396,16 +58396,16 @@ "history_id": 1684627580539, "description": "Compra de 6.331.951,00 IVIP por 1.300,00 BRL" }, - "revision": "219e20a88dfb456fb7c2854c", + "revision": "dfa1c9fff04a4f7badae36b7", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344928, + "modified": 1701809344928 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684628335504/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684628335504, @@ -58419,16 +58419,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "1141b52e41804c749728ec40", + "revision": "d391a3311f734d2194a1cee0", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684628335504", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -58457,27 +58457,27 @@ "currency_id": "BRL", "history_id": 1684628335504 }, - "revision": "df1a65e8bb6d46ba9276c34e", + "revision": "e65bcc572a744a9f8c0b6e92", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684628335504/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "ac1bba3556314aa89c55836d", + "revision": "44d8ff6d86a248a083184319", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684633146254/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684633146254, @@ -58491,16 +58491,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "3f73041747304d4ebd8ae076", + "revision": "4ce2f2194e744c6dbdd3b861", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1684633146254", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -58530,29 +58530,29 @@ "history_id": 1684633146254, "description": "Compra de 1.561.756,00 IVIP por 320,00 BRL" }, - "revision": "5f3a3b05282f41219518c1b4", + "revision": "7f97bffc68d84309837780a7", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "1145373ba5e444659a6fae04", + "revision": "b6382d551e75413dac1a2b13", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -58588,40 +58588,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e958a414cefe49488472015f", + "revision": "a314a8b57722431d830c464d", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1687191698878/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "3ddd6c16ac11447f80975c39", + "revision": "e9e019d1338246ab9b6b7d9e", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "78e9f9fd3b39423ab8f2e64c", + "revision": "64c0a53d9c504a20af14e314", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -58647,40 +58647,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "a4152b0a7a974602b6d515e2", + "revision": "b9ea02c2b0c045f2a4898459", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689106982837/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1.000,00 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", - "revision": "7358c72fb2ea4bd9b90036db", + "revision": "52a143ffd61b4f7daa239115", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "2bbc04edff0d43f99e42b324", + "revision": "330c482923c34ecabf2eb1e2", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -58706,27 +58706,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "216d2b10f4624aeea1fe7672", + "revision": "c7cce0ff48e84c3abbc8ad64", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689107140445/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 100.000,00 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", - "revision": "18955406efa345f98e17fe0b", + "revision": "1a64486eb80041bb905e464e", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689751872577/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -58742,16 +58742,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "a8b139b2b9ec44b2b1411746", + "revision": "9638f36fd4c747c9b31253c6", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689751872577", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -58781,40 +58781,40 @@ "currency_id": "BRL", "history_id": 1689751872577 }, - "revision": "ede2a4e416004ef5a3b98ed9", + "revision": "ce4042baffa841599bad21b0", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689751872577/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", - "revision": "382ed52f4c994d0dbf02a7b3", + "revision": "582cec2ed2124246a74533b7", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "9e32c20995a8466da6f21f73", + "revision": "a7463cf0edc94a72a6bd6810", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -58850,27 +58850,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "72347cefd1514d7f8097549c", + "revision": "3668fcd4cffe4621919b6357", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1689787472412/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "c66c2b27e47c416aa7f227ed", + "revision": "a90e6381ee514526a5216061", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1690471265404/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -58886,16 +58886,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "71305042c8fd4a9d89a67ae8", + "revision": "542071b27b304cbdaacf5862", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1690471265404", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -58925,27 +58925,27 @@ "currency_id": "BRL", "history_id": 1690471265404 }, - "revision": "1b0c7c623412468cb1c022b0", + "revision": "f084ac36c0ef49929125f73b", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1690471265404/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", - "revision": "842e4db71d5b43bb87322c8a", + "revision": "f132b34f5c544d498d51f88a", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344929, + "modified": 1701809344929 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -58953,16 +58953,16 @@ "value": 1695216566475 } }, - "revision": "f56365dd9b4b47f5aab8399f", + "revision": "033560d414574a579fd2148b", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692624566475, "net_received_amount": 0, @@ -58974,27 +58974,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "24c7c72f76c442e7a58aec02", + "revision": "a08ac1448e3d464d8a273356", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692624566475", - "revision": "b09cbd6e352341f48a892eb3", + "revision": "3d0bfab34bf84634bcc3aee1", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -59028,27 +59028,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "986206d4233a45e28b94e8de", + "revision": "5a3dc0d6857843048c9e290f", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692624566475/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 130,00 BRL para a carteira iVip 0765.1978.1500.7150-40", - "revision": "780b7fa64f39444e8661f2cc", + "revision": "639c1bef329547eeb4285409", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692660761580, "net_received_amount": 0, @@ -59062,27 +59062,27 @@ "installment_paid": 3, "installments_payable": 7 }, - "revision": "3ae7ac991148477ab137137a", + "revision": "33d26d2564e8406abdc092ca", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692660761580", - "revision": "6464fc0d1934447aab6e4c5c", + "revision": "e5d459f318e14688ba8c9adc", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -59110,42 +59110,42 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "2ef931c3339941b5a3c47c5f", + "revision": "4c5cf438ac75454889c71a34", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692660761580/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 3 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", - "revision": "621022f3367240b7910a85ff", + "revision": "8fed5e0ae03b4552bb211d98", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 208830.06 }, - "revision": "fc133993d56b4224b505af89", + "revision": "37f7b63a63544c7f81514e6f", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692785689941, "net_received_amount": 0, @@ -59156,38 +59156,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "76191fa4e6f54045ad2d9f7e", + "revision": "a0b94886fefe4b1081ffdc79", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692785689941", - "revision": "6c695a2bc06d411197c5678f", + "revision": "10e4ed7b45334cd9a78f3519", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "38efdbe17b8742ec86ec5732", + "revision": "a8561a20c9794dec8f48fff8", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -59225,27 +59225,27 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "973dfa2982e34b1baa1bdb68", + "revision": "dcb6937a80964a10a2a04da2", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1692785689941/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 6.752.171,94 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", - "revision": "c3b8c0a130144490a47655dc", + "revision": "df5ec1a6b9724a9180016892", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -59253,16 +59253,16 @@ "value": 1699203881018 } }, - "revision": "a5b6477a09f045cfb7c82090", + "revision": "5b8e81d18069446e9ae2c0e4", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696611881018", "net_received_amount": 0, @@ -59274,27 +59274,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4a9611b163a34c3982963244", + "revision": "942f6ac53d4847b8937e11e9", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1696611881018", - "revision": "6a9eb5e5502148dcb42a8982", + "revision": "0d8b8e0f6afd4e7eadaf8ae9", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -59329,27 +59329,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "66f179f68f374f1f814f450a", + "revision": "c6524eeb31ba4dbf81856fb4", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696611881018/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 130,00 BRL para a carteira iVip 0765.1978.1500.7150-40", - "revision": "e0711c02048c4b88af162ed6", + "revision": "e6cbdb591b934449b8cd7edd", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696613460272", "net_received_amount": 0, @@ -59363,27 +59363,27 @@ "installment_paid": 4, "installments_payable": 6 }, - "revision": "3ac6cf316f9e4d038ac29ceb", + "revision": "0b2df1f98f4b42b886a6ea50", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1696613460272", - "revision": "0a5bc846e85044e6a74fc573", + "revision": "ecd6536a6454484f91b3d1d6", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -59412,53 +59412,53 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "afffe18d391f4d35bdb69b39", + "revision": "e3cd914f7f5f4b71b06f53fa", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history/1696613460272/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 4 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", - "revision": "138497b4ff39495c879f2488", + "revision": "07bba2b621b64ca0bfacd52a", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "f2b14e77bc4741088a8d30d6", + "revision": "5915556912f048db8c4bf058", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "d6dc4bdc56474ffd9b32ad7c", + "revision": "cb61d7b59ca741d4bf5253b3", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684353970499, "type": "emprestimo", @@ -59474,64 +59474,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "7a6ec2183e0b4c568f74644d", + "revision": "d9bf2b7277ea408581654a60", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "5832691c47dc418487575e20", + "revision": "2506ee2e1c2e4757a7e00a87", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306/1684353970499/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "23aae0cf17db421096b60dc8", + "revision": "d27ece412971429ea5cdd89c", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202306", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "2b49ffb7b23a4427812b82be", + "revision": "2b8bf396e4f0469da65a15aa", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "fff9318653e34a97853df6b5", + "revision": "731561521b36496ca6e1405e", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684353970499, "type": "emprestimo", @@ -59547,64 +59547,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "83bc23e14dcb434c9c14678c", + "revision": "583612c3795a4a32b4518f02", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "4b716aae22fe46719b2183c3", + "revision": "17289a0e57214219afbc476e", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307/1684353970499/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "e59ce63859974f6a9107e8a8", + "revision": "7644664137114340ada3bed0", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202307", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ee678a30865b4bacbd37b2f8", + "revision": "39236e68017f43ceb3d8c1cd", "revision_nr": 1, - "created": 1701465820543, - "modified": 1701465820543 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "cba12ec53f7f4ff4a0db7a96", + "revision": "4c087789274e4def9a0db845", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684353970499, "type": "emprestimo", @@ -59620,64 +59620,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "19975e87f1c74b9299d9c678", + "revision": "c67ee7e237cd46e184db1ff1", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "f9364a82562f47299db5a5fb", + "revision": "d601f5e440d94ae6b5eac68e", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308/1684353970499/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "9f80ad3fc4694f6492ea2fae", + "revision": "3b1c158ffaeb454cbe7cc2f8", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202308", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1dd1ffad75404a7bb5315784", + "revision": "4f22a57757544b5eb9b445b9", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "fa5b2a7ad31c44e4aefd45ce", + "revision": "512b96996871419f9978a2fa", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684353970499, "type": "emprestimo", @@ -59697,64 +59697,64 @@ "value": 1696613460287 } }, - "revision": "0ece03c9dbe44840bc6d8b3e", + "revision": "7a2222dd97c644f399f94bc5", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "00ff42d3b61e4adc9ea57e25", + "revision": "49a240dda02f45af97e1204c", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309/1684353970499/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "b329e786dc1b4f398a447f72", + "revision": "3de3ac5630654139847de9b7", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202309", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1919c601edf849e38649c9cf", + "revision": "953b04e9cbfb462c8fe98f1d", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "d2e4d60cbf944aa8b648a0db", + "revision": "537518fabac04e0da51f633c", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684353970499, "type": "emprestimo", @@ -59769,64 +59769,64 @@ "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "5db4ebe253de43fb807ae1e5", + "revision": "9596fea63b0147dfb2a84e08", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "e74e0b49039044c5ac62ad90", + "revision": "9986a97a1ee84fa1a8e65882", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344930, + "modified": 1701809344930 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310/1684353970499/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "647af73148af4f41941fdfb8", + "revision": "a85d0f57397b42eeadb07234", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202310", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "82b25351eeb841a9b62bf680", + "revision": "160023cd6c7246da8db7f2a8", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "0762646fea9a49c2a5cd55f9", + "revision": "bb324b1cbe5447bd833fbf6f", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684353970499, "type": "emprestimo", @@ -59841,64 +59841,64 @@ "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "193797733cbb41c0b86e8c90", + "revision": "d14f0b0236244faa989492f8", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "de6249f4890544d58713d226", + "revision": "e22095df4f2942d7b6faee32", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311/1684353970499/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "b1f6a1bcc381431f9ad815a6", + "revision": "e9d641e656ea48118f900c84", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202311", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8735a41785d74194835b80de", + "revision": "13336d1cbe7a4ab88aae3088", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "4d6ea9a0021f46a0a31f69b3", + "revision": "9d14af432f574e8aae1d0ccb", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684353970499, "type": "emprestimo", @@ -59913,64 +59913,64 @@ "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "dbf15a2502884d939a7a5b0a", + "revision": "2c2c0ddcfcbe47ca88840ec2", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "843de70e8e464a428be31caa", + "revision": "9223ab8a1afd4d0f99c259de", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312/1684353970499/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "1ba9e878021244dcac69b50d", + "revision": "fd1c7b9cf03a49c799d8b20e", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202312", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3d6a8883f6fa4b7582f689a6", + "revision": "8c20c8ea3e0a41cfa84bc215", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "a3ba7f4c0f9041f8830e35fe", + "revision": "5b4aac3c15bb4cdeb3f90ac1", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684353970499, "type": "emprestimo", @@ -59985,64 +59985,64 @@ "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "b3802af94e19463c9148a270", + "revision": "341d762967984098914bab7d", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "1bb270c574ec4c5b866f8bc1", + "revision": "29b5a86157c8401ab9aa6d18", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401/1684353970499/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "1fe92b95e42545d6b18c96a0", + "revision": "90458a5282444bccb262cf86", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202401", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "dcc71f26fe0640dd90181beb", + "revision": "495eef70fe71460c9867d505", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "4c633216dab449c5ad6e1df3", + "revision": "03fce6d3d3ac4017a64bb389", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684353970499, "type": "emprestimo", @@ -60057,64 +60057,64 @@ "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "58444e7b6538443ca59cda63", + "revision": "156650d161644159968b66a4", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "6b8d99366bcd4be985559c24", + "revision": "0e62082e4ee0464fb88f3b0a", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402/1684353970499/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "7a64fd9ef8a8482e8afa4151", + "revision": "923260079ba342108e40e015", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202402", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7896490b1af24dedbaa7a9ba", + "revision": "24036c2e131b485a9dd983f9", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "9f918deffba1422b9f5c4aaa", + "revision": "8d7b1dd264f2404e9cd72c3c", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684353970499, "type": "emprestimo", @@ -60129,60 +60129,60 @@ "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "9e7ea3dda3b74b97a574b2bc", + "revision": "9a4be2c1f7f2415a8276fb8c", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "b7b264e33fae48dab55cdf96", + "revision": "263457c393aa411aab8c7dcd", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403/1684353970499/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "c11acf49ce714a7f83f865b1", + "revision": "5e85b1be06374024a8800ab5", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices/202403", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7244490876fc40f2b43d4729", + "revision": "d2e55e18ea4148538626b412", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "bf513c57e0b7426cbad44e47", + "revision": "6090f28f916c4d11ba3451f6", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 1000, "limitUsed": 800, @@ -60195,16 +60195,16 @@ "value": 1684329405576 } }, - "revision": "62278681b654454e85d8c9aa", + "revision": "59f3340b571a4d43a97c35c5", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/076519781500715040", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1682778060382, "dateValidity": 1682778060382, @@ -60215,78 +60215,78 @@ "value": 1697425200000 } }, - "revision": "6e57604d1be94729b9be331e", + "revision": "4f783be837dd4932a75bf496", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078019109826485740/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c5891d068a734b0cb8a82e8a", + "revision": "51247a6567684a2292847dbd", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078019109826485740/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "66d5ad67ab62482abdf7b204", + "revision": "7c31b182515646ce945b370e", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078019109826485740", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677453360716, "dateValidity": 1677453360716, "totalValue": 0, "currencyType": "USD" }, - "revision": "78fe0055ce894d4eb61fbdde", + "revision": "6a3ae2494d894b779cc0ee95", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c39d516e05f7447584e2d304", + "revision": "540959344d194a7eb383c892", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "653b4d9322f54f219f20e28c", + "revision": "773557a5a3d24d5ea9c31f98", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -60317,108 +60317,108 @@ }, "money_release_status": "rejected" }, - "revision": "71ec2133566448acadea2098", + "revision": "9509152baee24416bccb41e8", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history/1677768924149/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0782.9501.4075.3404-50", - "revision": "6bf71f5a965641f294186ceb", + "revision": "dc1b2f65a58347df9c7773e0", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7276efd4aef145f189b12f3b", + "revision": "584f51d812c04a5aacf50da2", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078295014075340450", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677768631228, "dateValidity": 1677768631228, "totalValue": 0, "currencyType": "USD" }, - "revision": "84a4de273aa342dca9a49fe9", + "revision": "ff5754d5adf943118b1a06c7", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "BRL", "available": "0.00000000", "value": 0 }, - "revision": "12b00c36a05942c980cffae3", + "revision": "29ea6927d9a244e794a979f4", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "IVIP", "available": "0.00000000", "value": 0 }, - "revision": "13609b97875f458cb1f1e392", + "revision": "52cae4167edf4aa4932910cc", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b2b2ada4f10b435d81ea5c20", + "revision": "c85eb6b393664d969aa619ec", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "e359e1d44e5d4fea93057198", + "revision": "7cd96d88c55f42c489cb9e56", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -60454,27 +60454,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b05b68190a2440feb65ba241", + "revision": "709df0f950e7424f9eac3816", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684172899523/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0783.4537.2944.2504-80", - "revision": "af22f121baea445683a6072b", + "revision": "70606b3edf9d46209ce2ae39", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684625628231/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684625628231, @@ -60488,16 +60488,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "86cda426d1ea482b8c2d318a", + "revision": "7ad932eb823b411ea6f32e9a", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1684625628231", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -60527,29 +60527,29 @@ "history_id": 1684625628231, "description": "Compra de 487.073,00 IVIP por 100,00 BRL" }, - "revision": "8ffb72b92ff04d67b02b1ca0", + "revision": "851927c350c442059e61c006", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "00558b344070445092f9d7ab", + "revision": "790501360e2a44a8aacec62f", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -60575,40 +60575,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "6a0e48fd9c804e44b201b6e5", + "revision": "4edf106f4c7b442096246de1", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1688602924031/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", - "revision": "d53988abdce545fdbd7e603d", + "revision": "3345122ac891416f9ecf0f20", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "0c99183f76ef4171b059141a", + "revision": "fc74a887371049f9af099f1a", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -60634,40 +60634,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "cbeb2c6ef2a3485788632ecb", + "revision": "774622c9f8904a36a0e03ab7", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689096874209/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", - "revision": "def7f260663b447799464cad", + "revision": "6ad6e307edc84a02a84374ee", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "8b3e6f8bd1e5458a91b50a8c", + "revision": "f22d175d90064fdeae8353ec", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -60693,40 +60693,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "1e9fc8653465457395938ccd", + "revision": "482c962fdc6a4924b438654d", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689182689273/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", - "revision": "e97d7bf72633497ba243ea22", + "revision": "dbd442deb1a7442fbef3a77b", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "0127ca22c5d74d90a3e98aab", + "revision": "3aab81b393ee430c92d6cff8", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -60762,118 +60762,118 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "6954ecf831e3440bbc3e0a28", + "revision": "596dedc316e14c95a07ed7ea", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history/1689197773070/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", - "revision": "dddb9d330f1546ce82e4ea42", + "revision": "d02af2f1a1d74cf183c220cc", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "53af84371adf415f99e968d0", + "revision": "a59e48b7ff1e4ff6b99a4834", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6f89296546294ceaacd8fd01", + "revision": "3b0c3cbfc6a14ac785df6eed", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "39e524b61be949b086db655b", + "revision": "ac3f6f4d9f3e483d9fc56d89", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/078345372944250480", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684172840672, "dateValidity": 1684172840672, "totalValue": 0, "currencyType": "USD" }, - "revision": "6e2b1791fd244ca1a5b1d19d", + "revision": "adb63b97f70442dc82206522", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344931, + "modified": 1701809344931 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "1863605.00000000", "symbol": "IVIP", "value": 199.32 }, - "revision": "7e5a109f981a4d328b299d1f", + "revision": "29e1fefcda80470d8f714503", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "f223d1c4018a4f41a52dbb8a", + "revision": "1d70000e4cfe4e7f8d5a8b34", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "1410793e73054f60adcbe75c", + "revision": "c1218ee24236473c8a4af3f5", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -60909,27 +60909,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b58c71bb9efa4429a5b77dbc", + "revision": "201d9b5e6feb4bd2af68d056", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684105639483/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.020,00 para a carteira iVip 0807.3197.8336.0713-80", - "revision": "bbbda4fea9ee4d3bb5e88de6", + "revision": "d0fd2ae7cabf47ff88e92989", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684624287649/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624287649, @@ -60943,16 +60943,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "48e34f3dda7f4aa09044f9aa", + "revision": "a43913b7878d49dd93553a16", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1684624287649", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -60982,16 +60982,16 @@ "history_id": 1684624287649, "description": "Compra de 9.838.878,00 IVIP por 2.020,00 BRL" }, - "revision": "55c68619ab4441e1b4fdc8ac", + "revision": "5f955e9d71f349a08b1d927f", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1685667269938/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685667269938, @@ -61005,16 +61005,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d9b7002b6c834b3ebf4c0fd7", + "revision": "9186243ad6274faabdefe381", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1685667269938", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -61042,63 +61042,63 @@ "currency_id": "IVIP", "history_id": 1685667269938 }, - "revision": "9f390a864576439b98122479", + "revision": "fa416fd3096e400faea6c1d7", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history/1685667269938/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 7.975.273,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "9f28d432ca1944ab83fbd5f8", + "revision": "d432d3e88ea34ae4b9f4eb82", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ecd3161a2c894486a72b908c", + "revision": "ce3de01483cd46169e840e3b", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "d3044b48d9ff47b3984de218", + "revision": "cca8db8cfb1f46a7acafa455", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "2ba552b92f184fb29e66bf18", + "revision": "4d56c62b54fb4982955881b9", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/080731978336071380", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684103814248, "dateValidity": 1684103814248, @@ -61109,55 +61109,55 @@ "value": 1697166000000 } }, - "revision": "e4b317e50fe7416190829615", + "revision": "b3d68bcb52474b3fa69d13d2", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "2366500.54000000", "symbol": "IVIP", "value": 355.3 }, - "revision": "71ca7ea7e172449aa8506627", + "revision": "58ed410c7f814a6ea4ec3bfd", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "624a88405459457e941a4875", + "revision": "760f8155661845859dfe8fc8", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "0cac5fdab7b2477c93fdc73e", + "revision": "bdd0533f2ecf41b5bd788d6b", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -61193,40 +61193,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e62a5b05719146c5a3ea3e64", + "revision": "c32ac9287bc84f55a39359ab", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677928546145/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "3dad8c6dc4e5414a9e55b5b3", + "revision": "e8db0240864147dda7febeb2", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "69950841b161448db4c87efc", + "revision": "a8fb367eea5e49cd8e0b6090", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -61262,27 +61262,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "af70b7f259dc46929c92c1be", + "revision": "57ac13067efd47209bb9a478", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1677787145274/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "e554cf06f0ff498dbda32b72", + "revision": "ad376c69ffb24ad596c837c1", "revision_nr": 1, - "created": 1701465820544, - "modified": 1701465820544 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678059759995/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678059759995, @@ -61296,16 +61296,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "4d574186f21d426a8f698175", + "revision": "a8b0937a7dd54b5c9c51c388", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678059759995", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -61335,29 +61335,29 @@ "history_id": 1678059759995, "description": "Compra de 10760563 IVIP por 1520 BRL" }, - "revision": "8b43b8ac945147c6be02c598", + "revision": "29425836be4c45329fe03d4d", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "9e1504127c6f44df9a82e130", + "revision": "1bc8e44229714dd994756ff3", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -61393,27 +61393,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "399e357a85f14504a111ebdb", + "revision": "2d9561a9a5854baaa4a20ef6", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678742795429/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 153,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "b857a7322c9e4ac38454158f", + "revision": "ab61cf0c68b04a9095b88dff", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678209797800/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678209797800, @@ -61427,16 +61427,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "f7ec8b83376d4229aef3824f", + "revision": "b225fbabe61b41798b5af4ab", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678209797800", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -61465,27 +61465,27 @@ "currency_id": "BRL", "history_id": 1678209797800 }, - "revision": "f4749d6aa0b4425a95931092", + "revision": "cec4fc2495c947d2a2c8a32f", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678209797800/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "72ae3802d7e5400ea9445ce2", + "revision": "4b1d8567315f4185889ef3fb", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344932, + "modified": 1701809344932 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678215371496/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678215371496, @@ -61499,16 +61499,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "fe68983328f64a5a89de05a5", + "revision": "b6bfee95af414dae95eaeb88", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678215371496", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -61537,27 +61537,27 @@ "currency_id": "BRL", "history_id": 1678215371496 }, - "revision": "d5315504f6384af5b57f3155", + "revision": "b95817f18a424a218feb36d5", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1678215371496/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "09c7f112908b4e4b96416bc9", + "revision": "8401635ba31b4f0faa7ff1f2", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679267048083/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679267048083, @@ -61571,16 +61571,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e2c3c85d59cb4e1e8df0d243", + "revision": "e5f82bac748d4cb194fb36b6", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679267048083", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -61609,27 +61609,27 @@ "currency_id": "BRL", "history_id": 1679267048083 }, - "revision": "c8d9f2b8a5304c918768c6f0", + "revision": "526e7c0b160d442cad618ab7", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679267048083/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "a0483e65c0434815b9df48be", + "revision": "bd9e33bcaa894611b374a0fa", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679268223760/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679268223760, @@ -61643,16 +61643,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "cfe0e5ff4e72470188bd3865", + "revision": "2b0273cdf7c44930b156399c", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679268223760", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -61682,16 +61682,16 @@ "history_id": 1679268223760, "description": "Compra de 974525 IVIP por 167.4 BRL" }, - "revision": "6061efd144af404a83e972ef", + "revision": "78888bada2f54ec1961ad69c", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679914966258/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679914966258, @@ -61705,16 +61705,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "9aa7a20145694110bf10a0ee", + "revision": "ac57870c5f21465783eb822b", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679914966258", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -61743,27 +61743,27 @@ "currency_id": "BRL", "history_id": 1679914966258 }, - "revision": "b1af08261b2047bda0f3649a", + "revision": "94786a2e75fb4f8bb8b770d1", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1679914966258/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "6d52d62f5ebe415db5ebdf4f", + "revision": "f4c0ae16a2604f0abe9c92ac", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684348398411/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684348398411, @@ -61777,16 +61777,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "ea733187e0554ceeae34e6ee", + "revision": "43469a9f9b464af5b09f9d1f", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684348398411", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -61815,27 +61815,27 @@ "currency_id": "BRL", "history_id": 1684348398411 }, - "revision": "5a386835986c4625b06d1873", + "revision": "1c7dd9db3f4a4f3686067563", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684348398411/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "a4c7c9ec79e74a7a982c19e2", + "revision": "a5eb10d93ee54c44bfcbea17", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624161069/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624161069, @@ -61849,16 +61849,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "3735c162c0f04d09a3055c25", + "revision": "73749b822e894622ade2aa82", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624161069", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -61887,27 +61887,27 @@ "currency_id": "BRL", "history_id": 1684624161069 }, - "revision": "7a5b5cb256904c939a94147a", + "revision": "5229a5209f4f46f888353d27", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624161069/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "749fe8ca186a4bd78bbbf92e", + "revision": "fbe4ed269815400a9b0d001a", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624222413/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624222413, @@ -61921,16 +61921,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d5f6975c8f784bd8809b4922", + "revision": "81edd87f13874b0a9db97138", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624222413", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -61960,16 +61960,16 @@ "history_id": 1684624222413, "description": "Compra de 1.081.302,00 IVIP por 222,00 BRL" }, - "revision": "81f60d6aba0b4a71a39b4d87", + "revision": "7ee6c0ef54a948b3994c6c30", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624292772/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624292772, @@ -61983,16 +61983,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "fd036b1c25db4d95abd5d831", + "revision": "ac39d9b4f1df43f4bde5ea54", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624292772", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -62021,40 +62021,40 @@ "currency_id": "BRL", "history_id": 1684624292772 }, - "revision": "ea2571d17aee4e569ae0aa7b", + "revision": "8c39c6b1aaf244358eadefbc", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1684624292772/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "d7dee5274a2f416fb02bcc70", + "revision": "0c9792a6425f4dea8683a1c3", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344933, + "modified": 1701809344933 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "4fed02db1eb44747b63480aa", + "revision": "4dc4022dcd394e318d1272bb", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -62090,40 +62090,40 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "86109888b1a24bbbb1efd7a1", + "revision": "dcd4b593ad7446949ce3f772", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1688520874831/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1.061.299,00 IVIP para a carteira 0xE15d4Dd48a54BAF74D9FA6a77FBb4B943a2A0d07", - "revision": "4fddc1c60c7c46dfb403523d", + "revision": "ca443f14b4894bdcb11e41b4", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "47b3822a2fbf4f84952bd3eb", + "revision": "a46c9fff184945308f77ba7c", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -62159,40 +62159,40 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "a19c574722ee49dbb80ffad0", + "revision": "1568bb2bbd2e45988059a952", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689257644454/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 10.045.174,00 IVIP para a carteira 0xE15d4Dd48a54BAF74D9FA6a77FBb4B943a2A0d07", - "revision": "d0b5e9c5e2aa455385d2b266", + "revision": "4feb346e7cad41208eed0287", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "4168de639cca462aaf43c976", + "revision": "9c1d458523ac424fad9ae573", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -62228,27 +62228,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ad6b3c561c5147a1866beffa", + "revision": "cde7184f268a457ab99cc16f", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689463707269/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "6ad28cd7c16a462190691eda", + "revision": "2e98eea1dea8436d8aa51ba0", "revision_nr": 1, - "created": 1701465820545, - "modified": 1701465820545 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689688682027/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689688682027, @@ -62262,16 +62262,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "f2345430eff14ce298ddbe6f", + "revision": "4fa5c41c0ed64c53a8e0b540", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1689688682027", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -62301,16 +62301,16 @@ "history_id": 1689688682027, "description": "Compra de 661.120,00 IVIP por 1.007,00 BRL" }, - "revision": "8eb3ace52693485cae49a5c5", + "revision": "6d1d404b9f134ffc86cdaaa0", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -62318,16 +62318,16 @@ "value": 1692810437203 } }, - "revision": "78b56710c7614a628ffca1ff", + "revision": "0b1d55a1c49e46c2ba153e88", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690218437204, "net_received_amount": 0, @@ -62339,27 +62339,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1f8b935857ac4b8e8924e582", + "revision": "3d8be33efb104cc9b72dbaf8", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1690218437204", - "revision": "9226b94534814e0d895c00d7", + "revision": "9e9fe7e050b8479db94c253d", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -62383,27 +62383,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "7258132f33ab4b00a4adb6c1", + "revision": "6e44e905abdf4cae8c6a99e5", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1690218437204/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "da4bc0c5d8d34374bc139d4c", + "revision": "1e5c30d3252d4ac690594f42", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691105324726, "net_received_amount": 0, @@ -62415,27 +62415,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "da1bcf7e9562444ca3be972c", + "revision": "26a09426470a4169b7b90be7", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1691105324726", - "revision": "2fe8c74a66e14138afce1321", + "revision": "56f2d477cf4249d59227f17f", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -62463,27 +62463,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "98512af7251d463593729da3", + "revision": "9b7cc46d8fae42a38465d7ba", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1691105324726/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 2.362.853,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "218673e1d8c2488aa03c6677", + "revision": "3bbd7086367342f09e5dbeda", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693783873313, "net_received_amount": 0, @@ -62495,27 +62495,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "61ed664d48954558b14041ef", + "revision": "a992ba0b3eea4487acdc5a40", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1693783873313", - "revision": "7b655eff33e34f34806ec7f1", + "revision": "f220895b26f44cc19719b0ce", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -62543,27 +62543,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "e69ec5654d744ec58b1be067", + "revision": "17ec478372a74da19b7462e0", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693783873313/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 2.362.853,00 IVIP com um rendimento de +47.257,06 IVIP (2,00%) - Y12XDT27", - "revision": "f222a486bba34a698cf3ab8a", + "revision": "e2e9ff3e6bc345e0945f5f7e", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693916505659, "net_received_amount": 0, @@ -62575,27 +62575,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1cbdced6e19647389d9b37f9", + "revision": "40fb9757f7b04a5bab240d5a", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1693916505659", - "revision": "99ebacf5b1634e0a9a02a0ad", + "revision": "d0d6acdb7721420f9b9f28b0", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -62623,27 +62623,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "9524b2fd12c34e68a8350a25", + "revision": "bcdb20180b004d609cea9f0b", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1693916505659/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 2.410.324,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", - "revision": "f761cbbb84414ac480fb5d86", + "revision": "18a3ec0c243643508ca72d79", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696508517073, "net_received_amount": 0, @@ -62655,27 +62655,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "5fc2eab9cf8b49a8ad042602", + "revision": "f6945f3142c24dfa90d674dd", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696508517073", - "revision": "637ab18dc12a41c38e31dcb7", + "revision": "ada2981f0f98434cb30820d7", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -62704,27 +62704,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "4baf9fcf74004af5a9d9d2b9", + "revision": "3a3bb81cb822428d8cb9a6c3", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696508517073/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 2.410.324,00 IVIP com um rendimento de +48.206,48 IVIP (2,00%) - Y12XDT27", - "revision": "1b18e2da27314719aaffa1cb", + "revision": "fc084c11c3ec498a8e38d1ab", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696541853446, "net_received_amount": 0, @@ -62736,27 +62736,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "307742d64928465fb68304c4", + "revision": "efcb3ffa2b834d809bb81c4d", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696541853446", - "revision": "c9ee87bf1c1246fd9623b428", + "revision": "08875622bf2446c5b15b2453", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -62785,27 +62785,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "13923ec7d0b9440a94f4a9b5", + "revision": "45804716b90c4e6eac8f34e7", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696541853446/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 100.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 05/10/2025 - P9A02KSL", - "revision": "5d5dc84924c443b7bb776b61", + "revision": "7d77623708bc4a1ba9fab714", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344934, + "modified": 1701809344934 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696640077573", "net_received_amount": 0, @@ -62817,27 +62817,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "bd6b3d20d30c4fe3a9a0a4b2", + "revision": "95b3802fc4e045c6bd8b92e9", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696640077573", - "revision": "4d4bec50ab024187ae2f33c3", + "revision": "f69b89aada20472298026713", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -62866,63 +62866,63 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "314b15804e0a4a23ab853ae0", + "revision": "ef2bf233b68e4cd09759d600", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history/1696640077573/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 2.366.500,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", - "revision": "d3e8c436a1c5453f8d7f7352", + "revision": "3df95a454d1541bfb83e682d", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a30ae95876f345c98274a74e", + "revision": "33d6abbcf8654b619585c34f", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "f48df06137814d2f8672de82", + "revision": "83143492d9924f53a0c2593f", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "56fb80d261024169874d3929", + "revision": "432570e3f0f840789b6449b8", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/081398362853569280", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677420406636, "dateValidity": 1678944817912, @@ -62933,42 +62933,42 @@ "value": 1696561200000 } }, - "revision": "74bc065d9a8349ffa42bd173", + "revision": "3ac62a28cd104df2841c4134", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "1189036.00000000", "symbol": "IVIP", "value": 151.17 }, - "revision": "83808b69fe434f4ab11b10bc", + "revision": "ff96817fdbd542d8bf9edd26", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "d50a1eb08325469890bf069a", + "revision": "f25f8eb2c0b2413e9fee0c3b", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -62976,16 +62976,16 @@ "value": 1698791726584 } }, - "revision": "b723f61b7f274a57a89d3d49", + "revision": "67f780cac3014866ae262fc8", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696199726584, "net_received_amount": 0, @@ -62997,27 +62997,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "24ef9e0c6d1f4dbfbddc9734", + "revision": "0c03902c3db5403ea769a7f1", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696199726584", - "revision": "83a638695fbc4b4d96284052", + "revision": "a8625ad5da0345f2a1337d94", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -63042,27 +63042,27 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "170d5c4e0b9a4d278a6e9c74", + "revision": "807cc0f2cfe24a59be99fa9d", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696199726584/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 10.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", - "revision": "822e363d72e44eb7a8362f10", + "revision": "a63dc2bf985e4c2aa0bca089", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -63070,16 +63070,16 @@ "value": 1698801123721 } }, - "revision": "25b1465158eb49b18f5f2295", + "revision": "9757fb605ec74d119d726b5e", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696209123721, "net_received_amount": 0, @@ -63091,27 +63091,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "58f1adb911514011bb6941b3", + "revision": "9ccd165b1cb640a69dbe0107", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696209123721", - "revision": "936cf506fe1b4444b85e53e0", + "revision": "7f0ba649a5cb435bb1baa899", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -63146,27 +63146,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "09cecc02c2024d8484750af6", + "revision": "a06fb981280645c987d2aabe", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696209123721/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 10.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", - "revision": "9300dd060ecf45f1a587b90f", + "revision": "9a38337c39854c4f8b16a812", "revision_nr": 1, - "created": 1701465820546, - "modified": 1701465820546 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696355307483, "net_received_amount": 0, @@ -63178,27 +63178,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ef328be498ad4563aa199bcd", + "revision": "068a5ca75d9746cb8cd02952", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696355307483", - "revision": "1253f2043c044c299b8d437a", + "revision": "708aad9472194076931eb40e", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -63227,27 +63227,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "00dd7e8914434d16a0aec5c8", + "revision": "01fcea27d38d491e88baa9ed", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696355307483/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 10.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/11/2023 - Y12XDT27", - "revision": "3e6fdaeb864d4c149e730bad", + "revision": "84504b00e8264e2db933aedc", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -63255,16 +63255,16 @@ "value": 1699201715603 } }, - "revision": "b0d33cd26cb244edb398ac38", + "revision": "80bb773bc7b2470690bf9452", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696609715603", "net_received_amount": 0, @@ -63276,27 +63276,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1c4a1795cb7e40339a39f1cf", + "revision": "7404bd75472a4b359ccf81b5", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696609715603", - "revision": "8b129f0ab0d642188685eb41", + "revision": "e3876acad6d64effa8904329", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -63331,27 +63331,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "07254d7e3d6a4c4c9df74ec3", + "revision": "4bd609cc08284516ad5f57ab", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696609715603/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 250,00 BRL para a carteira iVip 0832.4975.9247.3140-30", - "revision": "a1ca6684c38b437e96759bfe", + "revision": "63aeedad73f0440da9317e30", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344935, + "modified": 1701809344935 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -63359,16 +63359,16 @@ "value": 1699202450136 } }, - "revision": "c4ca01cccda34a24ad84a95b", + "revision": "7d9d9c4b12f24c0e801dc417", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696610450136", "net_received_amount": 0, @@ -63380,27 +63380,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ff002dadbd2142d68de84762", + "revision": "fc062270a8214b11a7aad22d", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696610450136", - "revision": "40507032a2464ad78a857baf", + "revision": "858f671e56914ba9a48d1b20", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -63435,27 +63435,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "be1b226850e441c8a10dbe36", + "revision": "e258d33581524deaad1303dc", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696610450136/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 868.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", - "revision": "dcdba2d02de545b7b702510b", + "revision": "bde53a58107e4a53bf0f4317", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696611534552/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696611534552", "net_received_amount": 0, @@ -63467,27 +63467,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f72dd8fb3ca946868f64f308", + "revision": "3b0e6a08e5f1481881e204c8", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696611534552/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696611534552", - "revision": "96ce77a2f0df437eb44970b5", + "revision": "cbc036fcf9034e858a1d99c4", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history/1696611534552", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -63517,52 +63517,52 @@ "description": "Compra de 321.036,00 IVIP por 250,00 BRL", "status_detail": "accredited" }, - "revision": "757b77b3c34140588a06f7ee", + "revision": "99e450372e7048a28b79639e", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "774afc423a254b6684cc2a04", + "revision": "238e4f04e2854a38a2a956f7", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5f9ec4ecb05f4578a1d25c48", + "revision": "c64cac637118490dbcee7ddb", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "6e509ceb255f461d831fb739", + "revision": "3f96b0c539374a3a8f919c7e", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/083249759247314030", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1696067091160, "dateValidity": 1696067091189, @@ -63572,27 +63572,27 @@ "value": 1696820400000 } }, - "revision": "fc521ed77cf243d7a3c8163d", + "revision": "e488893a3b6e4b39a025fb7f", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1ecf538e9bfe4e04a5ad56a8", + "revision": "a35036f010594a7d88ab343f", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -63600,16 +63600,16 @@ "value": 1698340651115 } }, - "revision": "8be7be49ae3b42feab1db9f0", + "revision": "dbc09baadbef4efb907a18b8", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695748651115, "net_received_amount": 0, @@ -63621,27 +63621,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1e73f80d9c6847f99a41eaab", + "revision": "79498c0f77c24b7cbb2f9184", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748651115", - "revision": "376ed78929344ecabbf6de65", + "revision": "ac2eea8f610e4625b9d414fa", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -63666,27 +63666,27 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "a21fcc9f264c42f5afb34a68", + "revision": "07df3bc355b74a01936b4e41", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748651115/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", - "revision": "fa392341058b40358fa764ce", + "revision": "db55d76b34e649449e658a86", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -63694,16 +63694,16 @@ "value": 1698340743839 } }, - "revision": "7143396977524c26b05164d2", + "revision": "4cbc7b7caeba47f5bd0e94ce", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695748743840, "net_received_amount": 0, @@ -63715,27 +63715,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "e00e485dc2054e1abe51add2", + "revision": "db24207a06c845e4bf5233e2", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748743840", - "revision": "78f8c791a3964b518a6fc9cc", + "revision": "a79f6725c7854eba9a6b6236", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -63760,27 +63760,27 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "a8fa909042574cc7aaf5a237", + "revision": "589c8546f6e549749c865e50", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748743840/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", - "revision": "67bd2b98d36745c29bc23193", + "revision": "f82d060248c44aa9b6073ca9", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -63788,16 +63788,16 @@ "value": 1698340845971 } }, - "revision": "7f6de35d45394ee0a528e172", + "revision": "fe84247aaacc48b7a6c89f65", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695748845971, "net_received_amount": 0, @@ -63809,27 +63809,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "3d18bd94487c43ba9a895053", + "revision": "0292d7d0467046f495ddf256", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748845971", - "revision": "a3bed33a6d5640198dc63797", + "revision": "a1e7972a4c7c44e5a3c7c842", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -63854,63 +63854,63 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "73f8455035b54661a6cd854d", + "revision": "79fd41179a8e414f8ee84657", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history/1695748845971/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", - "revision": "f273e44a8e7d4afd8031588e", + "revision": "0ec814c38783432e8172103b", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e215bd05cfbf4b7e9fe4f169", + "revision": "4235b4fe0cff45abbcc36019", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "44fa2ac4dc904419b984b2a3", + "revision": "b7c797e0a6d64d35b885f03f", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "2ebdd7efe8c9457394842fea", + "revision": "2ca4baf4711f418abfc35940", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/084938385673306140", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1695748509301, "dateValidity": 1695748509557, @@ -63920,40 +63920,40 @@ "value": 1695870000000 } }, - "revision": "40c136c09db44e5b98b35058", + "revision": "60bf9b138aeb4d8abf7143c8", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a419a28a2c7c4208afccce9e", + "revision": "7cc334c3328e4e84a6f6f8cc", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "cbd1a6a2351a4b90a406c776", + "revision": "8047d4195b3e4c05b84d923a", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -63989,27 +63989,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "7f90a7f68d6c4bb7b5a92967", + "revision": "abf74178bbcb44c4923fe247", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678035077732/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "b6d18c4024d74db98744a8db", + "revision": "0ef4a53b6e2e420cab612eb3", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678163430853/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678163430853, @@ -64023,16 +64023,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "3dc1886e1cba4b5aa23feb88", + "revision": "d2240c8ab38a49e48f22a4f2", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1678163430853", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -64062,29 +64062,29 @@ "history_id": 1678163430853, "description": "Compra de 1426241 IVIP por 200 BRL" }, - "revision": "64850881b9944f72a913ae4b", + "revision": "e6fbe31baa1e466e8c08c5aa", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344936, + "modified": 1701809344936 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "9203e2dac9b946f1af3b0810", + "revision": "8ff624c86a8247dea784c8d8", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -64120,27 +64120,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ce7e189cf20640d28085c62d", + "revision": "bfa96d25ce5a4ede88253e5c", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1681136191198/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "5ab42c65d99f4b9f8fd4caea", + "revision": "afc11359622a4b8e9de4f1bd", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1684632748749/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684632748749, @@ -64154,16 +64154,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e7ee9acaf51f43fbb59f7be6", + "revision": "c798293dc47044e38c8a983f", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1684632748749", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -64193,29 +64193,29 @@ "history_id": 1684632748749, "description": "Compra de 976.097,00 IVIP por 200,00 BRL" }, - "revision": "ebf8abe3f98a4ecdaa85e0a1", + "revision": "cf5e09e27f5e41578aba334a", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "ff670aa4ad13414285d86e36", + "revision": "bfb5d3b9a448400bbe514191", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -64241,40 +64241,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "23c16d0556fa4c2caab25ff8", + "revision": "a5c84bdafce64d5697c8886f", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109385732/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "58d4847f5dce4b96bec2afef", + "revision": "7fa68187ffb74983af943439", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "ba9cbdc77f96492cb80b36d7", + "revision": "b9391d403dbd4c59a47a1c43", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -64300,40 +64300,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "5cb61033b68c401784e03ce5", + "revision": "b9e8b7625a3c4c30a616bd7a", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685109442881/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "7259edb185264c349efd7c24", + "revision": "c7bf870aafd242b09a4d2055", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "e1bd7ae62fcf441c82b79ae3", + "revision": "7e74d7558f97421993c46983", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -64369,27 +64369,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "0ea4815dc0e041bc9beff876", + "revision": "07ecfab5d6694b2bb659ab3e", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685213653014/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "028ee9665daf4793b33564bb", + "revision": "4602b245c2cf435e85756de2", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685666059762/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685666059762, @@ -64403,16 +64403,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "907c0404f3cc4e19bd62beae", + "revision": "94e67fa67e164d2ebaec9f90", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685666059762", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -64440,27 +64440,27 @@ "currency_id": "IVIP", "history_id": 1685666059762 }, - "revision": "f01d7ecc651d4b2e9a72a222", + "revision": "7ad3cedd332c4d4b9aa331ed", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685666059762/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 2.402.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "4d86dc8d54124f8a935b0cda", + "revision": "b2d7d1425f6045e485eddd81", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685744731387/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685744731387, @@ -64474,16 +64474,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "4f065fedadf34ae1a7639f91", + "revision": "94985f76cb6a48bb9a013bb3", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1685744731387", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -64513,16 +64513,16 @@ "history_id": 1685744731387, "description": "Compra de 4.214.736,00 IVIP por 1.200,00 BRL" }, - "revision": "0572714235da477180fc7d84", + "revision": "50cac4b3f13248e6a5416532", "revision_nr": 1, - "created": 1701465820547, - "modified": 1701465820547 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1688521364022/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688521364022, @@ -64536,16 +64536,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "0e4057e4f0c94a53b3f2021f", + "revision": "3dc5dbc572e04b89a16056f5", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1688521364022", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -64573,27 +64573,27 @@ "currency_id": "IVIP", "history_id": 1688521364022 }, - "revision": "081ddebdcb2342b1b79e5aae", + "revision": "91e608966f7b421bb9209b8b", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1688521364022/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 4.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/4/2023", - "revision": "e8520bf0b9294468a05b0e42", + "revision": "6493d86a13d14a81b4b84478", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691199857902, "net_received_amount": 0, @@ -64605,27 +64605,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "0a586bf810da4f0990290f51", + "revision": "cc022f44f75d4fb297b9a61f", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691199857902", - "revision": "8b55b53dd7bd49a09e1ae7be", + "revision": "eb384764168e46fd937f2d01", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -64653,42 +64653,42 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "67dc72a1ab98447dbab3e4e3", + "revision": "ec4bd64cda984cb4b5ea3566", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691199857902/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 4.000.000,00 IVIP com um rendimento de +80.000,00 IVIP (2,00%)", - "revision": "5611813cbf864616a9250131", + "revision": "d1caf690cc694cd381b7609d", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 124986.6534 }, - "revision": "76e7fe6564cc4ba3b5225b8b", + "revision": "abfca2aaab2945058a510924", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691271945589, "net_received_amount": 0, @@ -64699,38 +64699,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "c731e3508d1e4e7aa197a64c", + "revision": "d79f75e6e2074febbf969157", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691271945589", - "revision": "7c06048cdb12425498ede64e", + "revision": "466457fc4d65478894c02461", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "6477349a5675491fb88f94c5", + "revision": "d16f4321fab84f64bce1dabb", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -64764,42 +64764,42 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "88a8745387db42fcbafcf431", + "revision": "ca1abf4d303843a682bd14a4", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691271945589/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 4.166.221,78 IVIP para a carteira 0x13d16B24c3293ABAD823e83A490982c0906508A8", - "revision": "72effef3f34347788d654319", + "revision": "cfd3b493dfd94cd08fccac49", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344937, + "modified": 1701809344937 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 124986.6534 }, - "revision": "ccc040edde3749339211c8ff", + "revision": "637539905e4d4a4fa3e28b98", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691437746780, "net_received_amount": 0, @@ -64810,38 +64810,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "2220f4009eeb4ef6a7c79ba0", + "revision": "300001ff486e44d2a1880061", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691437746780", - "revision": "543bc9ecdaad43679e9f28a9", + "revision": "3c5ee8b21df542d69035a096", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "b5f3ef5cbfc140a681c86e69", + "revision": "e04605b9bff341b99e7f8cdb", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -64879,49 +64879,49 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "01f4f173a83e477db7b55154", + "revision": "13bb7c00ed7645d6ac4e3efc", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history/1691437746780/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 4.166.221,78 IVIP para a carteira 0x13d16B24c3293ABAD823e83A490982c0906508A8", - "revision": "36a95da262794148b6b038db", + "revision": "59b5f962218749a58a825e84", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "57211aca90f84308abd81c86", + "revision": "4460f0517daf41019872ce47", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6695f729e60947d5b0dc66d7", + "revision": "f11b61d6e8144bee82a6cd4d", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 1000, "limitUsed": 0, @@ -64934,16 +64934,16 @@ "value": 1679261140619 } }, - "revision": "2baf67e4939d46abba66055f", + "revision": "f15b89f0cd714928abfab7ad", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085212609036684260", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678034837603, "dateValidity": 1679040303242, @@ -64954,40 +64954,40 @@ "value": 1696561200000 } }, - "revision": "c2f8bad475874d6fb89d3316", + "revision": "648497c111214949aa5ffba4", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ef3a0412c18546afa27a9fbc", + "revision": "d206d90edbcf4678bcd14b08", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "0199e053ae704f389fc8c958", + "revision": "876fbd26142d47048738754f", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -65018,118 +65018,118 @@ }, "money_release_status": "rejected" }, - "revision": "1d7f4d7e9a0a40188824bda4", + "revision": "935d73a52af34b73a1ed52f9", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history/1677939492133/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0858.6972.0472.7301-10", - "revision": "12f3da3db5fd4feb863f6b8e", + "revision": "f1a75cf28f4046cdb578dde8", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ad9e2b529abe4518a3c49535", + "revision": "07f4da068d3145518cb996dd", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4107b23916fc4f3792f5fe39", + "revision": "3400f9d5e4a4445895a12826", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "ed3582298816444e8342a116", + "revision": "e51745f820204b168648a92b", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/085869720472730110", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677772587436, "dateValidity": 1678142633851, "totalValue": 0, "currencyType": "USD" }, - "revision": "9ba1968ca8624dce87084991", + "revision": "11dd0f0d142f41cc90816e30", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "1370911.00000000", "symbol": "IVIP", "value": 901.85 }, - "revision": "bfac56ba729e4083ac3a200a", + "revision": "049b0235d20144fea6a7718c", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "bf94ab8d268240c48a3abdd9", + "revision": "b6dd593c276a4cbdb2516209", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "1cc5e41ba78b4a10a7a04742", + "revision": "f734052e1ea4422594191036", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -65165,77 +65165,77 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "99bb415db715429ca774263f", + "revision": "aeeb2d2ce15a4ffab52c628c", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1678097305816/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 140,00 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "087dfb35a70a42e2a4ad3cf5", + "revision": "be72056712a04aaab9f81b99", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 1.00%", "amount": 1.1111 }, - "revision": "53689ac7f4f64bcda7cbcebe", + "revision": "e7aaa4e798d141fea635be0c", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "2a629e1449a94331853c3eba", + "revision": "cf2e6236f0834394b152d1e6", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "c053a1cea5234a3883f927eb", + "revision": "bf0feb1205954a44a47fec00", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4b9e7d413b9542b18fa949e6", + "revision": "e46dbc076a594f3a8ad3d4be", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -65243,60 +65243,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "96380c0cf30449a6bfc3e22f", + "revision": "e637326e9b104f5093047c4b", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406112.225802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13123227786304C4AC", - "revision": "01d7ef05342c42be90f90ce7", + "revision": "0c1ff7e0c28c495d8876c633", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1312322778/ticket?caller_id=1310149122&hash=6c5d5276-a6c2-41fd-b3ac-10aff2badfc5", - "revision": "8f5c0b9153564e38b81dade3", + "revision": "a4830fa656784280ba48356e", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI3klEQVR42u3dSY7kNhAFUN5A97+lbiDDC7uUjB9UeoDhpl4uGo1SpfRUu48YOK5f6HMOWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWtp/Xzvmz/H7z44/Lxx//t4fF37//u3Cz13u/zvH+Hzi+Lnp/QYfFyYGLS0tLS0tLS0tLS3tS7TTY39u8vPYyitvWt/qfuHjLtOF+98hqWhpaWlpaWlpaWlpaV+gnQJk+lb6vSkT3n+WvvvjXt2vMGhpaWlpaWlpaWlpaV+qLVW2q8TL6fNUzvsoAN6NtLS0tLS0tLS0tLS0tDEdtjeeyn4juKfy4BVS5Ph8A1paWlpaWlpaWlpa2jdrEz5dnebYSuluQk0vdDw1a/69HlFaWlpaWlpaWlpaWtpfXdtuKflv//mnO1VoaWlpaWlpaWlpaWl/UW3+nJ+NlOciBLYpsp2ku++WnLZMZgstLS0tLS0tLS0tLe3e2masLe19/NHmBPrhKd2ZR6kRtkcF9CmSlpaWlpaWlpaWlpZ2N23aL5J3PI774pH70Fs7IZcOZGuH447+pDZaWlpaWlpaWlpaWtqdtSUYtudc192SaSQuhcXFnyAd4XasMi8tLS0tLS0tLS0tLe1u2lRRW5/Alrsz6xHXU51vKh6WrsvmpG1aWlpaWlpaWlpaWtrdtan1Mh1sPcXLactkul8edUtdnEdgHLS0tLS0tLS0tLS0tC/Rlum1a5EESylw5O3/7eHZ+RtniJcXLS0tLS0tLS0tLS3tS7Tf37NNmx/PycNxzYlupcfzy8xLS0tLS0tLS0tLS0u7lfb8zITNZsdyzzQcd4UdJnXDSeq1TKVFWlpaWlpaWlpaWlra92jTRNsi9dWXfGrMXD2jPG3Q0tLS0tLS0tLS0tK+S1vJpc1yMqYuyXPEVs5UMiy/cnUL/WlpaWlpaWlpaWlpad+izUmwdk6mzSVTiW+6cDemibsRDml7SpG0tLS0tLS0tLS0tLQ7a8tA2rm83ZlfqM2JJU+eo57IfdLS0tLS0tLS0tLS0r5Qe5TRtMldHnGW9yu3GmGwbnrklc/XpqWlpaWlpaWlpaWlfY82VdRKDa4uLZm6JMtLTiv76zhdyZjtcdu0tLS0tLS0tLS0tLS7a2t8W6fIdhlJ6cSsqbT8lY6/tqWElpaWlpaWlpaWlpZ2U225XUqCU6/lFU5MS+RrET5TT+ZziqSlpaWlpaWlpaWlpd1KW9xH0T61XqZz19Jp2VPX5ciFvUKmpaWlpaWlpaWlpaV9gbZU1JrP9Ox7JqzNle2R2dOB2qkJk5aWlpaWlpaWlpaW9p3aUaLfVABMwbDEwdWtUtvmoqpIS0tLS0tLS0tLS0v7Cu1ZUl9ZDXk8B8gRDsWe/pkuXOGRU58mLS0tLS0tLS0tLS3tC7R5mG2UXDddaL9WTsuuS/4nT3sDWlpaWlpaWlpaWlral2gnwNWdX308LZi8l/iaNss8bFcn6brqHi0tLS0tLS0tLS0t7X7afGD1tFpk5S7GdkvJFENXufOhFklLS0tLS0tLS0tLS7uV9lo8ewp37TRcToLtS448/lZ6N2lpaWlpaWlpaWlpaV+hTZ2TI5+C/fR7I38jle7Wh7R9k3lpaWlpaWlpaWlpaWl304b4Npf42mQ5fSPdKrdUXqU788uuS1paWlpaWlpaWlpa2l205XDqtFXkzLI8IVej6XT7p2j6vFOFlpaWlpaWlpaWlpZ2I23+pNR3fpbfRoiXzZL/e4nvCGGxHgFAS0tLS0tLS0tLS0v7Jm07kLZaXzJlwp/vtjso0ztP71cCJC0tLS0tLS0tLS0t7Qu0pX2y7hfJWa+p1eXCXoqNV64qhk5MWlpaWlpaWlpaWlra7bX35xxdia8ekZbOU0uvVjosj8VW/2V1j5aWlpaWlpaWlpaWdj9tkpUy3Xhyp57MUiOs03UlVH7ZI0pLS0tLS0tLS0tLS7uV9gyyI6TIa7mHJDVXtk2YKZ+OsvWElpaWlpaWlpaWlpb2Fdq0c2QKd4uz067uiOtzMVO3LiNOG05oaWlpaWlpaWlpaWl31yZ3+7BFc2WTLMPOkVhGvL/9V1v9aWlpaWlpaWlpaWlp99Gmk9VWvZZp1WS6UEbdVmN3U3mQlpaWlpaWlpaWlpb2PdoS6abbnTlAdgv4x7RzJN0vl/PSiB0tLS0tLS0tLS0tLe2rtO0c2zTMVtoir26Z5HqwrjmLLfyMlpaWlpaWlpaWlpZ2Z+0EKMZRCnvJXebdkqfWDct0Xa0g0tLS0tLS0tLS0tLS7q+tnY5tYa9Mr9XwuTgtu34tHQHw0CNKS0tLS0tLS0tLS0u7m7b0Rq4G3HJz5fis+J0lWebGzNFt9T9oaWlpaWlpaWlpaWnfpA2hbZRaXbPfvxQFz26wbpRmzdyEmT60tLS0tLS0tLS0tLSv0I5P4yjDbKUjsj4nJdAUL8tz616ThxRJS0tLS0tLS0tLS0u7kTYnxlqDm8bVcqhMpcD6oHRIW15QQktLS0tLS0tLS0tL+x5tsy0krYsspbta8Xuamqu7Tr7uEaWlpaWlpaWlpaWlpd1Nmz7rPSTpTLQSIM8yCJen686n8ElLS0tLS0tLS0tLS7u7to1+04RcIrdNk3kZSUqRTYvmc+alpaWlpaWlpaWlpaXdR9tkvSnclaJbzZ2p9pe6MxP+6xRJS0tLS0tLS0tLS0u7pbbEwVG6Lstc3BVWi9T2yYJqTgRYRlhaWlpaWlpaWlpaWtqXakdosxx5+0g+2PocTVxNu06+r+7R0tLS0tLS0tLS0tK+RXt0Z2TXUbdp6WR7BEC5ywhnAxy0tLS0tLS0tLS0tLSv0y7wIz92emI7EpcC5Ho47jlF0tLS0tLS0tLS0tLSbqZNlbwp4U2yUfLkInw2o3P5DeqGSlpaWlpaWlpaWlpa2t21//8PLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLe2/pv0Nc/R6xtt85A0AAAAASUVORK5CYII=", - "revision": "4411ff80433c49e18cb2b1c7", + "revision": "7858d3b3bb334d4992d3c0ab", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "39de4a09007f4df1835f6aa4", + "revision": "164a5d13cf06476fa6ab97d6", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -65323,27 +65323,27 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "25f58c47e5934c13b5328198", + "revision": "27d74f2f40874755aa1f2e4d", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1679947244258/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 111,11 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "0bd71c01abf242f88c62daf5", + "revision": "8c82b2db60bf4e8f9d81213b", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680260155565/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1680260155565, @@ -65357,16 +65357,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e4f335b4e4bb4e3a8776ff47", + "revision": "7d96d8d4132e4840acf9698a", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680260155565", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -65396,16 +65396,16 @@ "history_id": 1680260155565, "description": "Compra de 500.004,00 IVIP por 91,56 BRL" }, - "revision": "2fd6d0a324494507b36ce393", + "revision": "e2066d3103ee4471a5be0e2b", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344938, + "modified": 1701809344938 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680391431083/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1680391431083, @@ -65419,16 +65419,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d645b647514f441da988b75a", + "revision": "41c4db0ba93c4025adc7a780", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1680391431083", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -65458,29 +65458,29 @@ "history_id": 1680391431083, "description": "Compra de 267.396,00 IVIP por 48,44 BRL" }, - "revision": "82975c87c317422192df84bf", + "revision": "f6b8025fe46744dabbe88d06", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "e2e5e0f287fa48eea70a4acb", + "revision": "a75057004d024c268fd47630", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -65516,27 +65516,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b48e019c8f894b7190731f28", + "revision": "eb18e30b7a824963acd1a3c5", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1683913607250/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 99,99 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "cf48c0c2f1eb43ab9892c5bf", + "revision": "8eebc409e4bf4ef9bd2cd5ea", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1684628885106/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684628885106, @@ -65550,16 +65550,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "3a4a60445f134d6984709cb8", + "revision": "b1f5c0d280114868a0f04617", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1684628885106", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -65589,16 +65589,16 @@ "history_id": 1684628885106, "description": "Compra de 487.512,00 IVIP por 99,99 BRL" }, - "revision": "6ce338ed4aec4fa698a44444", + "revision": "9bbb8122a4724e678bb98a59", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -65606,16 +65606,16 @@ "value": 1693414337210 } }, - "revision": "757ff866e684452a87d7f686", + "revision": "943c6f8e92924d22b23817d2", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690822337211, "net_received_amount": 0, @@ -65627,27 +65627,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a5faad4a82944888bce447c6", + "revision": "d40dab3b7b5b48a281fce3fb", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1690822337211", - "revision": "5aeb31be8fb04b5a94a121c1", + "revision": "10be6b69403c4a9c86ef2a29", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -65671,27 +65671,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "d4781bfd14414b8a87a05662", + "revision": "44d3d32cfa0341bd93fe74dc", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822337211/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 20,00 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "53a33e1ca8164a79a316cca7", + "revision": "063800c9200c4890bd95159d", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -65699,16 +65699,16 @@ "value": 1693414439890 } }, - "revision": "29e95e5f1f314d52a3414d95", + "revision": "51bfa286cff6433bbd5c7056", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690822439890, "net_received_amount": 0, @@ -65720,27 +65720,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "3eff61852fc54031a6000bc2", + "revision": "a4b93c5e6e9648ca96f5bc3c", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1690822439890", - "revision": "d37e821c635c4b139001df7b", + "revision": "17a531ec45ed4b7b9db057b0", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -65774,27 +65774,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d95c4f4ed7664ca0822ee94c", + "revision": "cf017aa728024ebeb3170723", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1690822439890/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 100,00 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "95f177de9b3e4805b3c42f30", + "revision": "8883f9c08c754db7a6fb36af", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1695782499707/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695782499707, "net_received_amount": 0, @@ -65806,27 +65806,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "592584c64b3e47a7b132202a", + "revision": "b92f20567c744c8e9af9553e", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1695782499707/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1695782499707", - "revision": "08d9f613b9bc43c38536bba5", + "revision": "d9e24d3214954586b7918719", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history/1695782499707", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -65856,52 +65856,52 @@ "description": "Compra de 115.999,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "81385c95e9a640e08bb6f412", + "revision": "5a90c661f3ac4c25b8b11c15", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7b266a3bd77d4d80bfd7db46", + "revision": "3403921c40784561a1339025", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "80da4e9b787443afabbd11c8", + "revision": "2c94e50105ad4b819a67e8f0", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "048507e13eb1404082390b66", + "revision": "0ead53197bcd4b5abf11f2ed", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/087877902032143410", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677405879103, "dateValidity": 1678984144008, @@ -65912,55 +65912,55 @@ "value": 1696906800000 } }, - "revision": "e35daef290644bfbaedb1f1e", + "revision": "99a9e0b639694941ba562d08", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "16470.00000000", "symbol": "IVIP", "value": 4.22 }, - "revision": "46b4f30bf9d7400496db17bc", + "revision": "43d8f77393c4408ca2cf0f4c", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "87febe6c37014e739bfdc3c3", + "revision": "8f8c6799fed3448d90c4618c", "revision_nr": 1, - "created": 1701465820548, - "modified": 1701465820548 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "4176ed26f25a4de9a06f5e3a", + "revision": "83cf4c75924f4f58ac8536c1", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -65996,40 +65996,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ce1fcbecb11d4a8897304178", + "revision": "79559e480b754403bffeb6d9", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684164750598/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "6ec90822c2e247d885b4eb1a", + "revision": "efed09028cfa4b3b849f3c65", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "412741d1a1714234ba8bd22e", + "revision": "739de4497c0b4c2f873143f9", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -66055,40 +66055,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "314b3ead05144cecbc136c06", + "revision": "3fab04a605634cc3890a2f52", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684165632184/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.800,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "17cf12d88d7d4741be50385d", + "revision": "8a1b981d319d446bbd486e6a", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "9ee426b18a3d41efab46d809", + "revision": "c746b40079b44413911efe4e", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -66124,40 +66124,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "96aebe6fd7744b0783ef166d", + "revision": "5b9810059aa54e5e88dd1058", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684452112873/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "35773ae40d6043bca5ba585c", + "revision": "d45d47d3e98d48fc912bfbe5", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344939, + "modified": 1701809344939 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "86f422a674f340c7bb6bde89", + "revision": "a5790aba11be4d989988378a", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -66188,40 +66188,40 @@ }, "money_release_status": "rejected" }, - "revision": "e35f43f2db84449db0b22981", + "revision": "27bad8432e0c4ba18ef60f1b", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684519388805/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "a0c8665237584102b7bc9500", + "revision": "042d4850f20a484c8a6488ea", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "e58dbe60fff94c94b9edb6de", + "revision": "1b520052377145a0a315e7f5", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -66252,40 +66252,40 @@ }, "money_release_status": "rejected" }, - "revision": "b6090a4ff6514f4f8c3fc00b", + "revision": "7501ab9b82c94e3296bf32b7", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684538973500/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "95723d3c53554a94af63d993", + "revision": "f1ef0e6c791e4167947b4157", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "aa35f54dd4334b9495a0e1ab", + "revision": "be2a95df26a54e7d872a8c98", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -66316,40 +66316,40 @@ }, "money_release_status": "rejected" }, - "revision": "06c285d417e74644868f4280", + "revision": "d088016ac2e94477832c28d7", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684540522383/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "d2f34b9f636146c9b3cd714c", + "revision": "6e3e8ee0a55f4e6fac98bdf0", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "679a246443774144a8b2668f", + "revision": "f2801fe09b264e3592e83019", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -66385,27 +66385,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "94371258265844328c8d3b4a", + "revision": "288ac6f8c5ba4bf69ab87eb9", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684589302647/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "cb7374e42775400190ccb2e0", + "revision": "f52de73aca81490f89673c61", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624236329/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624236329, @@ -66419,16 +66419,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "3ca040264894488ea9a89932", + "revision": "76a8d397e2164a16b0cb8fe7", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624236329", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -66458,16 +66458,16 @@ "history_id": 1684624236329, "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" }, - "revision": "04143b4aa6fb47cba77509bb", + "revision": "b60e477f952940219ff58b0e", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624348122/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624348122, @@ -66481,16 +66481,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "efe5509ffa044c2093742c49", + "revision": "f8cfb63e54a942ce96ac1bbe", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624348122", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -66519,27 +66519,27 @@ "currency_id": "BRL", "history_id": 1684624348122 }, - "revision": "99e9a883dfe6401f88b007fc", + "revision": "5dc5ec0114b34beb9a6c2d2d", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624348122/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "0b8aa33164a74f53894144e2", + "revision": "e80a926be06a4d72a32f512d", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624387279/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624387279, @@ -66553,16 +66553,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "1d5d46944d184b489d3d5e49", + "revision": "ef66115b290d42e3b41c4f0b", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624387279", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -66592,16 +66592,16 @@ "history_id": 1684624387279, "description": "Compra de 779.317,00 IVIP por 160,00 BRL" }, - "revision": "af817b4a2d72403f855f89be", + "revision": "9b89e71b06354455b99e2c08", "revision_nr": 1, - "created": 1701465820549, - "modified": 1701465820549 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624827425/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624827425, @@ -66615,16 +66615,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e04affe2986f46578ef68168", + "revision": "422c9b64d4e643c5bb1e245c", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624827425", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -66653,27 +66653,27 @@ "currency_id": "BRL", "history_id": 1684624827425 }, - "revision": "b489b18d9a37481684564f4b", + "revision": "250b319faf65450683c13c68", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624827425/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "13c5729462c14657a4c64310", + "revision": "a1f4f4f6f42045cdbe331207", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624867474/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624867474, @@ -66687,16 +66687,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "9eb8bdd9f4d34eef963ec2b6", + "revision": "8309fb8c455f44218f95372c", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1684624867474", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -66726,16 +66726,16 @@ "history_id": 1684624867474, "description": "Compra de 97.414,00 IVIP por 20,00 BRL" }, - "revision": "014987fc53dc414782127e28", + "revision": "719402e7c75142ac806e452c", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685361710845/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685361710845, @@ -66749,16 +66749,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "cdd2695c05f240d5ba72b9bf", + "revision": "d3d36ea95f374050bae59b84", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344941, + "modified": 1701809344941 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685361710845", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -66787,27 +66787,27 @@ "currency_id": "IVIPAY", "history_id": 1685361710845 }, - "revision": "19749b796aee44289dc9d891", + "revision": "b63223a0a6b643938ff69b0a", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344941, + "modified": 1701809344941 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685361710845/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 40.000.000,00 IVIPAY por 4.000.000,00 IVIP estabilizando US$ 164,00", - "revision": "1d3d336a16234d89b2b18130", + "revision": "b4f5f277f58f44a3998422ca", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344940, + "modified": 1701809344940 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391792305/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685391792305, @@ -66821,16 +66821,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "4a16cf470bb24fbb8b916d74", + "revision": "f1bc8b12c6df4921bd26187c", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344941, + "modified": 1701809344941 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391792305", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -66859,16 +66859,16 @@ "currency_id": "IVIP", "history_id": 1685391792305 }, - "revision": "6bc11824f89849649e7256f1", + "revision": "3428521cef784076b5dbfef4", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344941, + "modified": 1701809344941 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391842660/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685391842660, @@ -66882,16 +66882,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "6473b6153f8b4bf7815d014f", + "revision": "180ad8590f02425d8b266a45", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344941, + "modified": 1701809344941 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391842660", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -66920,27 +66920,27 @@ "currency_id": "IVIP", "history_id": 1685391842660 }, - "revision": "93954df119d2414cb73cd7fc", + "revision": "8cd1e3d219204350a2f84f8a", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344941, + "modified": 1701809344941 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391842660/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 2.000.000,00 IVIP por 20.000.000,00 IVIPAY", - "revision": "edaf77a02023450b9c8ca6a1", + "revision": "f791f293c2b1478ea12105f3", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344941, + "modified": 1701809344941 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391972284/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685391972284, @@ -66954,16 +66954,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "0488d0cf988c4462acc6fbf1", + "revision": "cb1d9a98aedc4d1ab7bb9b6b", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344941, + "modified": 1701809344941 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685391972284", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -66992,16 +66992,16 @@ "currency_id": "IVIP", "history_id": 1685391972284 }, - "revision": "f386360aae914c8695e6d891", + "revision": "4ab0c72cc1ea4f2f88b4bce4", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344941, + "modified": 1701809344941 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392038537/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685392038537, @@ -67015,16 +67015,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "9a753ad15710439f8fd003ca", + "revision": "4c04b1dffefd4f61beb9cd3f", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344941, + "modified": 1701809344941 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392038537", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -67053,27 +67053,27 @@ "currency_id": "IVIP", "history_id": 1685392038537 }, - "revision": "3325c103a4844fa9bb42e767", + "revision": "8667097a4a6d4712a29f5f93", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344941, + "modified": 1701809344941 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392038537/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 1.400.000,00 IVIP por 14.000.000,00 IVIPAY", - "revision": "12734fdc32214904aa0ec414", + "revision": "a9d5b029d5ce4f5383dab8d0", "revision_nr": 1, - "created": 1701465820551, - "modified": 1701465820551 + "created": 1701809344941, + "modified": 1701809344941 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392165654/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685392165654, @@ -67087,16 +67087,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "3df66f29ce5547b0bf263516", + "revision": "0ae6f7becf0d4ba18c9ab9f2", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344943, + "modified": 1701809344943 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392165654", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -67126,16 +67126,16 @@ "history_id": 1685392165654, "description": "Compra de 10.000,00 IVIP por 100.000,00 IVIPAY" }, - "revision": "d574c05618694002909d36a7", + "revision": "cceb9bc47d3a40caa9302ff9", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344943, + "modified": 1701809344943 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392465062/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685392465062, @@ -67149,16 +67149,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "2116aeaf268f4879bcce9c3c", + "revision": "d253041136064416988dc23c", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344943, + "modified": 1701809344943 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685392465062", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -67188,29 +67188,29 @@ "history_id": 1685392465062, "description": "Compra de 30.000,00 IVIP por 300.000,00 IVIPAY" }, - "revision": "8df74c0505c94b40be68f523", + "revision": "2e3036b1ea904635ad1d9449", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344943, + "modified": 1701809344943 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "6055a112d29240a8b6cf6305", + "revision": "f9aa6df73e3c4c96bb873336", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344943, + "modified": 1701809344943 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -67236,27 +67236,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "9844aec0fac54e70854cee0e", + "revision": "a5c8f7831f21408488c983b3", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344943, + "modified": 1701809344943 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685396749543/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 4.669.901,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "818dd714ad2b4298b9e88933", + "revision": "ee9842e2b83149b2962d1ae7", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344943, + "modified": 1701809344943 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685409104532/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685409104532, @@ -67270,16 +67270,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "f0ad3826749b4358ae9b6723", + "revision": "057fa961bda9432c98b7256a", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685409104532", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -67308,27 +67308,27 @@ "currency_id": "IVIPAY", "history_id": 1685409104532 }, - "revision": "d6332eac80d34c7799cfca14", + "revision": "123fd3c1c4d445d29044c773", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685409104532/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 86.699.010,00 IVIPAY por 8.669.901,00 IVIP estabilizando US$ 790,81", - "revision": "ccafbfd5ed694d338ba6b6e4", + "revision": "e4e44b75061b4aad8ccf9114", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494858663/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685494858663, @@ -67342,16 +67342,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "fe757f9793ce4dc091f8a5ae", + "revision": "8ee1a6f1adcf4f00819a95f1", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494858663", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -67380,27 +67380,27 @@ "currency_id": "IVIP", "history_id": 1685494858663 }, - "revision": "184d0a2fbcb74deab593c906", + "revision": "cdeaf795b3ce4b1db2d38590", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494858663/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 1.544.789,00 IVIP por 15.447.894,00 IVIPAY", - "revision": "587c25b5ce0c483295aca0ca", + "revision": "ab5ddcdb1c704ea491cd39f1", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494914975/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685494914975, @@ -67414,16 +67414,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "9d6d3bbe4b664b099931adfa", + "revision": "45794bd70a704fff8c128206", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494914975", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -67452,27 +67452,27 @@ "currency_id": "IVIP", "history_id": 1685494914975 }, - "revision": "770f15410fc24df3903e77a2", + "revision": "81aeb7e12a90401a957b171e", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685494914975/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 13.900.000,00 IVIP por 139.000.000,00 IVIPAY", - "revision": "685d8e78b5cd4c34b6af8f75", + "revision": "d38243abcd7540c9b2910df9", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495030715/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685495030715, @@ -67486,16 +67486,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "8f2d23e6155a41a59c7036f8", + "revision": "7ded78b95bde4a2ba1e2c893", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495030715", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -67525,29 +67525,29 @@ "history_id": 1685495030715, "description": "Compra de 3.105,00 IVIP por 31.054,00 IVIPAY" }, - "revision": "f547be6f391a459380ec9eaa", + "revision": "ef41ee5b8a7a478b97199ba7", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "2ddeb8aa4a0844c4a5e88cfa", + "revision": "c67dadb4e05a4de79480bdd7", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -67578,27 +67578,27 @@ }, "money_release_status": "rejected" }, - "revision": "0046844005104da6b7b5f948", + "revision": "4a35dcc587c14b9d8292f34e", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685495440046/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 15.447.894,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "f1c3edf2d99a4006af4d1781", + "revision": "a0ffad7441a14e0ba9a2f56e", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685496474860/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685496474860, @@ -67612,16 +67612,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "48a8b5c3ae6347b2b8ebfa09", + "revision": "c9e32d675b7f4f7995d334c6", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685496474860", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -67650,27 +67650,27 @@ "currency_id": "IVIPAY", "history_id": 1685496474860 }, - "revision": "81c6cdaf538d438c8f313e86", + "revision": "3b373c36d10c4c48924ea4bd", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685496474860/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 154.478.940,00 IVIPAY por 15.447.894,00 IVIP estabilizando US$ 957,12", - "revision": "dab9534c77da431a97f121bf", + "revision": "419cc3a6884d45bd8f513a66", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685572512459/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685572512459, @@ -67684,16 +67684,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "5272e1f91d5d449d838b14b1", + "revision": "ec837bfdc33844718fdcc13f", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685572512459", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -67722,40 +67722,40 @@ "currency_id": "IVIP", "history_id": 1685572512459 }, - "revision": "0c8c99726f0c4b96a55fb682", + "revision": "e6c3e4c7ffe8416991fb4b8c", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685572512459/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 14.660.794,00 IVIP por 146.607.949,00 IVIPAY", - "revision": "496f9b59cffd423782ca8a29", + "revision": "2014ff7cfc244f359be3ea98", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "d3b64ffa9649457484e8f91c", + "revision": "a6a75029b51e40878fd9b994", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -67786,40 +67786,40 @@ }, "money_release_status": "rejected" }, - "revision": "85351568d3e346eba4d29565", + "revision": "d01d8f51ff8e476a8be344e8", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685574712795/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 10.637.617,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "07e5c2acbeed492ca0d840bd", + "revision": "960ed7a65058489eb74b048e", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "51fd07ff65924c0e9d6fdb8a", + "revision": "6e96e5517cea4b5bb027907c", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -67850,40 +67850,40 @@ }, "money_release_status": "rejected" }, - "revision": "04ed4778ed4448e6a73917b8", + "revision": "1ea157caf8394764a41c2a0f", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685587807706/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 14.660.794,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "8488939583104f92b8537494", + "revision": "cdabe35989f74d5eb90356c9", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "388c534e564a40cea164469c", + "revision": "4f2fae53466f488f9621bf34", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -67919,27 +67919,27 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "5f4cf93826654bf2ae9a4b60", + "revision": "5f65bb99682047d2b6c823c8", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685623890790/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 14.660.794,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "0fa0d1d41fbb458c82eb1401", + "revision": "702e43d51c2742a48f934bc3", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344944, + "modified": 1701809344944 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685625562355/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685625562355, @@ -67953,16 +67953,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "5454c801abd342cdafcb3bdf", + "revision": "4c71ed1f8eda4271bcfec7eb", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685625562355", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -67991,27 +67991,27 @@ "currency_id": "IVIPAY", "history_id": 1685625562355 }, - "revision": "6ea5a7ff1f994dde9266f8c6", + "revision": "7b540bd2c8314fc6965e2dd6", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685625562355/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 146.607.940,00 IVIPAY por 14.660.794,00 IVIP estabilizando US$ 749,86", - "revision": "215727dba9694c20aedfa1af", + "revision": "027a186754f449afa9296254", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685639526258/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685639526258, @@ -68025,16 +68025,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "cf64f1a07d0c45c69d70a5d4", + "revision": "04626c3009924d8ca020a5ba", "revision_nr": 1, - "created": 1701465820552, - "modified": 1701465820552 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685639526258", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -68064,29 +68064,29 @@ "history_id": 1685639526258, "description": "Compra de 1.490,00 IVIP por 14.900,00 IVIPAY" }, - "revision": "c30010be48e14f1e8ba72193", + "revision": "747e56075e5c4843ade82a01", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "80a3082937864c45bceb7988", + "revision": "76011af32d204d4284b83a4d", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -68122,27 +68122,27 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "98c8ce9a23bf44f8bc5d9738", + "revision": "338e2ab56b474c9c98a3620c", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685647933824/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1.490,00 IVIP para a carteira 0x46450913428e27edfc5B4055875c08eC6a22cbfF", - "revision": "5b9c3a7aef3043039fdf4c4a", + "revision": "f10142d04e604725aa383ecb", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685653675417/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685653675417, @@ -68156,16 +68156,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "65005b84427c4488b8d2d36f", + "revision": "632261042e3444429d1d9139", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685653675417", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -68194,40 +68194,40 @@ "currency_id": "IVIP", "history_id": 1685653675417 }, - "revision": "9e88e1d733dd413d8c1818b6", + "revision": "91983ad51a5647b894bb0cf6", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1685653675417/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 13.603.163,00 IVIP por 136.031.630,00 IVIPAY", - "revision": "dd550716963846489692584e", + "revision": "a5ce9bf541254c1ebfa46013", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "c3eb1c26731f42de98d136d4", + "revision": "c5bf8f9c719f42cda4f8b8e4", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -68253,40 +68253,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "be5b200148f94c128e818d95", + "revision": "fa3b69b5c78f486eb28bb2d2", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1688596994749/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.463,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "200a52e9dc434cdda9bac3e9", + "revision": "12363ec146f8417297828110", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "41cb3bf0d5524443be98a1df", + "revision": "725822cbc62e47729edaba8a", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -68312,27 +68312,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "4901ad9f66c84d3684317bbd", + "revision": "efe9964c766641a09f5fafde", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689384333712/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "280c32b88aa343079ab5ce7b", + "revision": "8720a6c87d0f427b95bcf8c0", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -68340,16 +68340,16 @@ "value": 1692547137377 } }, - "revision": "18fdf2d2e0de4da0ab374e9a", + "revision": "4e3f4740ceae4d09a21a2f3f", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1689955137377, "net_received_amount": 0, @@ -68361,27 +68361,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "efb46482564a4a6aae298679", + "revision": "03dd877492f540d4a240aa1c", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1689955137377", - "revision": "78aa1e475c494356bab803c2", + "revision": "6826f41aaddc458285b0355b", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -68405,27 +68405,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "4b08cbe6aea34c7396370407", + "revision": "dcaebc4f46024e5a8ed1194d", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1689955137377/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.671,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "03179652ad714458a3f583c8", + "revision": "cbb156c45ed74ae497d2ba34", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -68433,16 +68433,16 @@ "value": 1693429523298 } }, - "revision": "87496e4102364d2199c513fa", + "revision": "7af73d8bdcbe46df812ae0e8", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690837523298, "net_received_amount": 0, @@ -68454,27 +68454,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d7e3d78ac3864d06adc56f8c", + "revision": "8277b4e1220745d38c0510b6", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1690837523298", - "revision": "4bee1a1e13f449a4b2b30b27", + "revision": "51bcea4e50b44ab4932573a4", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -68508,27 +68508,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "8e267d7ccd9848aa976d6242", + "revision": "503a93233529408f8e186ae9", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690837523298/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 20,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "ce05c26f314540bc9c742dd7", + "revision": "0fcaaff357e84099bea6f693", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690844181474/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690844181474, "net_received_amount": 0, @@ -68540,27 +68540,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "aceedc3154d0410db6ace0f3", + "revision": "b515d48f323a47dca5c59d27", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690844181474/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1690844181474", - "revision": "b64f5a5e688b416e983b476a", + "revision": "46d7ee7062454caebd7f869d", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history/1690844181474", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -68589,38 +68589,38 @@ "description": "Compra de 17.960,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "7d1a96e4570149c09bf274af", + "revision": "d0ba8a3ff845421b98b62426", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "0bcb504da3674cf39ce4c680", + "revision": "a4289906b510494cb6d36bec", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "aab6ae65cd4843279267c1e9", + "revision": "33d25de7c5d54f4cb070d85c", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0, @@ -68629,16 +68629,16 @@ "value": 1688858744635 } }, - "revision": "ee093558d71646ffb5856501", + "revision": "1c3ddaa72a7241a0bfa2ff4d", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/088753368634775000", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684160584822, "dateValidity": 1684160584822, @@ -68649,55 +68649,55 @@ "value": 1695956400000 } }, - "revision": "4279a5252a0342ad9684bc47", + "revision": "1b4402be38f74d4588124231", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344945, + "modified": 1701809344945 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "465751.00000000", "symbol": "IVIP", "value": 507.45 }, - "revision": "b1b02ebc66444c3e9f17816e", + "revision": "e9bb6dfd7ade495fbf4baf40", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "88df378a91e14311a2d871ea", + "revision": "23c6ae94fc954014b8fc397c", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "ec026b9bca3b449bacf907b8", + "revision": "8dfd67788cf54b779106ae4c", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -68733,27 +68733,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e3bbcbcfdeb045cbbadd76f7", + "revision": "271dbd86d6034181b4b51ccd", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689132397301/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0918.7836.9033.5585-10", - "revision": "8966cab287d94be0aba2249a", + "revision": "4e156ff2a39e42858f7f740d", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689197549929/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689197549929, @@ -68767,16 +68767,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "7c36c764703a4368a6545e8b", + "revision": "3e1e613232684107bdca33a5", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1689197549929", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -68806,16 +68806,16 @@ "history_id": 1689197549929, "description": "Compra de 82.125,00 IVIP por 200,00 BRL" }, - "revision": "294fb5d33fd0403c8cd04adc", + "revision": "6a1cefd5e3004c87a28a0c1e", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -68823,16 +68823,16 @@ "value": 1698492550248 } }, - "revision": "61c8de43275c44b595adf4d6", + "revision": "5c57bb5b2a464ddfa6043068", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695900550248, "net_received_amount": 0, @@ -68844,27 +68844,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b9cbeb22bf21437f82c8181d", + "revision": "01601e192b374fecb2683c97", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900550248", - "revision": "422f35d8e9994ad58255f05c", + "revision": "dee5f9c7364b498f8c14c04b", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -68889,27 +68889,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "450ad0fddb3749249b4f06e4", + "revision": "305284c71b554a468ba113af", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550248/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", - "revision": "77e8a1226d4c48049e244075", + "revision": "29dbf25831c24fdb89ff9490", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -68917,16 +68917,16 @@ "value": 1698492550761 } }, - "revision": "f59ec9f3de7d475e86ac9402", + "revision": "8ad6bf470f854f34b6006319", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695900550761, "net_received_amount": 0, @@ -68938,27 +68938,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a25b97ad9d6e4f21a890ae0a", + "revision": "8c80588f11f74297a89709d9", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900550761", - "revision": "aed18779f5b4453ca6d5386c", + "revision": "7b881aefe52644ddbc124aed", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -68983,27 +68983,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "23585cc6a116417db61a1de7", + "revision": "7b3599f9774f49a7926085a8", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900550761/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", - "revision": "16ca0532d92646609a85a5af", + "revision": "50ab24cae49f462ca4769bcd", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -69011,16 +69011,16 @@ "value": 1698492565784 } }, - "revision": "5207d90ee188483cab3f8ad7", + "revision": "faa26543a9194d1fb0ad316f", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695900565784, "net_received_amount": 0, @@ -69032,27 +69032,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "07889ffd0e5e44bd8c897e88", + "revision": "3d58646f28514a3194114fd0", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900565784", - "revision": "ab577a42e7434e099424ab5b", + "revision": "95fb680823af480bb021b8d4", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -69087,27 +69087,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d2f2862850c84817a1f1301f", + "revision": "c4d554bab16e48b3a486897a", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695900565784/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", - "revision": "24006d2de2c84ee0950d7f8f", + "revision": "5d5f61bbb65b4e1d80071a7f", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695903994262/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695903994262, "net_received_amount": 0, @@ -69119,27 +69119,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "59d4879f7bd04925be7d465e", + "revision": "1c33f5ac16524c6ab7ea7dab", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695903994262/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695903994262", - "revision": "54a1ba610817483bb38f9456", + "revision": "14bf9b22b19f4a51b58a3fe4", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history/1695903994262", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -69169,52 +69169,52 @@ "description": "Compra de 383.626,00 IVIP por 458,00 BRL", "status_detail": "accredited" }, - "revision": "d157ff6db1b8417b808f11b0", + "revision": "3c886c1c68ec4161b2ea41b6", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "eb1aa8dcbee246379ffdcedd", + "revision": "b5b69d84694843ca9fb66e26", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1bc050e0fc324f08b2d70906", + "revision": "bab7bf46f2ec4091a7846124", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "0f11e29d152a4450942e7b7e", + "revision": "80f0a5e2c54149a3becdc523", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/091878369033558510", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1689132373088, "dateValidity": 1689132373088, @@ -69225,40 +69225,40 @@ "value": 1696129200000 } }, - "revision": "799ef726691d49789a6c255c", + "revision": "b2cc0bd614c84914a45114fe", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ee49cdcb90a84c5f9a8bf0a5", + "revision": "cef2ca26ac76464c9ae2db5e", "revision_nr": 1, - "created": 1701465820554, - "modified": 1701465820554 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "87befac6100347e8918d2d98", + "revision": "819a570a8801482daf0f34a1", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -69289,78 +69289,78 @@ }, "money_release_status": "rejected" }, - "revision": "8896117c785c457c9f5e2e9e", + "revision": "9e1e338ba5e54e468d60a516", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history/1678089239675/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0923.9225.3957.1184-80", - "revision": "9666e20c861d44baba62db0f", + "revision": "02c7ac6a9d6b422b9a113109", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "eba1cde267a24f0bb792106d", + "revision": "09f8545bd2e64079a9617f18", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/092392253957118480", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677466864789, "dateValidity": 1678103589466, "totalValue": 0, "currencyType": "USD" }, - "revision": "7c0382c7ceb04ffbafcb44da", + "revision": "ab4e1484b5914fe8b81218bd", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ec839e29a0a242609b629864", + "revision": "8d45ce64f35e464486b20fac", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344946, + "modified": 1701809344946 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "548508a3194f403da0dcf753", + "revision": "c9e08d59d1f04a9e8cc9f45f", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -69386,40 +69386,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "6a981182f9964baf82ca73c7", + "revision": "4e848b1a7e6e4aefae4fce57", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689457461269/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0956.3322.9427.8818-90", - "revision": "dddb104e97f24f14897e3345", + "revision": "97892240426d4efaa8b11afd", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "03b8a6e08c1d4e19b9ed897f", + "revision": "3a23a6f74075474881fb120e", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -69445,103 +69445,103 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "00021a76169445d5ad3787b9", + "revision": "5c947bc1f3934319a362dbf0", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history/1689629737479/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0956.3322.9427.8818-90", - "revision": "86c4765baff14a11b0113315", + "revision": "1bfc8cb16cdf4f6fa455d55f", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "108afa5165a14644b11ee6ad", + "revision": "7902593151674bdbbbce1ac5", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c62d7e1b63fc40fa8e5e3b52", + "revision": "501d7872a39f4fbf9ab10e4c", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "ef6b1200a76b4e4fa1f421e8", + "revision": "024c0db3134a48aca5de4b5d", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/095633229427881890", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1689457427075, "dateValidity": 1689457427075, "totalValue": 0, "currencyType": "USD" }, - "revision": "d0911ca45bb04c0ba9eaf1d7", + "revision": "e00a881ed7744a8d9ad0ba1f", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "84fe208cda6d4d2fac6fc771", + "revision": "5f104ee4b2d8411eb2f06d58", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "adba1cfbd432433a8797a720", + "revision": "989e0b4f350a4fa790e93739", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -69567,170 +69567,170 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "e8dd14d050804e7f9ef6ce23", + "revision": "39353db5ed3a4bc595a666bd", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history/1684543373520/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0961.2401.6860.3556-50", - "revision": "721f72b1cff04c81955460d2", + "revision": "d03185c8927e40219a601e25", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "836c655b68e540a79c116438", + "revision": "4e48b7b83e684c8dad83bffa", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3e7dbc70b5a94186b0df85a6", + "revision": "ae8b384bf3cd4258bb87a66e", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "172b348b45804e568924cfd1", + "revision": "ef2a1766c7bd4e019298293e", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/096124016860355650", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684187165100, "dateValidity": 1684187165100, "totalValue": 0, "currencyType": "USD" }, - "revision": "650acfe88bf94d9ba3a02ee8", + "revision": "ab194c82f0c2492db90f56b9", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/096261179492313170/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "cdad262e156f4597bd89e005", + "revision": "9044b20db79d4608a06490e1", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/096261179492313170/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1b4862286c974213b566db29", + "revision": "64776d73acec40eb891d5e20", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/096261179492313170", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1696117965905, "dateValidity": 1696117965942, "currencyType": "USD" }, - "revision": "450760d748c44e008568b8ab", + "revision": "78af01ab47ab46c18ba5e2f7", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "10.00000000", "symbol": "BRL", "value": 1.92 }, - "revision": "049d219f0e464ea7a0415a6d", + "revision": "8a622b01ba9e4bed9732e6d5", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "480000.00000000", "symbol": "IVIP", "value": 62.92 }, - "revision": "92e8797506f541248ed93641", + "revision": "7d92986b6d30407f924b88b3", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "cfd7db51bde64c8caf847ef6", + "revision": "18e5151df9e041a083137f3d", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "ef9d4999cc1641ecafc92862", + "revision": "73205112a9014525a7655e96", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -69766,40 +69766,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "336cbc7e9bec4beb82899349", + "revision": "65042288374d43e2856bc706", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680564390483/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "b7a00026a4334f4984c728ad", + "revision": "98c0870bf07c459faeaa6423", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "ad1980a3f4044fba882492a6", + "revision": "6b2b4e51e4224f1393bbf12c", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -69835,64 +69835,64 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a05dfb70f29740348c064495", + "revision": "f9b9c249cac842cebef81069", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680570737667/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "6e7c4fe7b3db4c74b3e6a994", + "revision": "fd8fb5aeec6b4bd2805d08fd", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "e432e11db17f476f9961b786", + "revision": "2240135dceae4eccb9b61f6e", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7a25a3f37efc430e86754ef8", + "revision": "5db8376dddfe4108b775d1d2", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "76bcb646ddee45859b02a82c", + "revision": "d7281e234a514be2abf79e1e", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -69919,27 +69919,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "3d3c10ee720a44a4ad0b0549", + "revision": "18138d3f16954f53884a3b50", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1680571158806/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "a8e745dcf2d246b7b1d6ee31", + "revision": "fa9566f63b7f4a3497d0d5ac", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1683548182568/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -69955,16 +69955,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "ad3d8e6dd53e41f89fde8400", + "revision": "f1a0e52b3fe44825b2b49133", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1683548182568", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -69994,27 +69994,27 @@ "currency_id": "BRL", "history_id": 1683548182568 }, - "revision": "a38f6b68c1434901bb4134c9", + "revision": "2242011dc3404ba5944fbd26", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1683548182568/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "640abe00c7c14e11b2f940e4", + "revision": "bd713a4776e949469d5a210e", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367503606/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -70030,16 +70030,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "0ee20193dc474d9e98d33446", + "revision": "0d188abe4c1a4f9e99d995b7", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367503606", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -70069,64 +70069,64 @@ "currency_id": "BRL", "history_id": 1684367503606 }, - "revision": "9779f8376d264442a1b76cc1", + "revision": "4bd6c1a404fb480492662383", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367503606/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "9ce464f03b8e4024a8721b30", + "revision": "d8fc2d8282714c3b88bfd142", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "2caa762056c84e03bae3cc00", + "revision": "6a3107d0f7a44c9cb4127dd8", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "19209ff1bf8f42fca3a5e201", + "revision": "1fd26fcd4e364d608ce70b97", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "dce3c8d36d444d1e860ed6cb", + "revision": "925d2be099d14ede883fcc09", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -70153,27 +70153,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "2ea680c630c34e76b83dcbee", + "revision": "ecd9ecd3dfa04806bd671680", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684367721554/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "ae34a24c319341bfb8690ea2", + "revision": "a227cd0d4f1e47a497a5224b", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684415962143/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -70189,16 +70189,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "3926b2f8810b467887f47133", + "revision": "d264cc10c1e5455c820c18a9", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684415962143", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -70228,40 +70228,40 @@ "currency_id": "BRL", "history_id": 1684415962143 }, - "revision": "6635698def244c0e9416a26d", + "revision": "41ec97e55f6f4e2ea5f30486", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684415962143/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "af0b7ca967264d4f8f52741a", + "revision": "666a7f803bb941ffa3b8f135", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344947, + "modified": 1701809344947 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "d92d0cfb136544dda2e2955e", + "revision": "69b66a8e977b401c8726face", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -70297,27 +70297,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a46dbee2e9fc4c2eb7517502", + "revision": "8097525315ad4fe0b52271ed", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684544477879/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "4ce77422608b4032972077dd", + "revision": "46a1424103ec4114b3249e95", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684624390329/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624390329, @@ -70331,16 +70331,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "fb1186efbbc044c7850b378e", + "revision": "53ebb98a3b184a45ad768729", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684624390329", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -70370,53 +70370,53 @@ "history_id": 1684624390329, "description": "Compra de 77.493.341,00 IVIP por 15.910,00 BRL" }, - "revision": "a701cb2d038f41f6bfabcf64", + "revision": "45644d70ada74262ac89e05c", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 5 }, - "revision": "79942cfe06fe4172a13e61ac", + "revision": "ac3c550abc904ec3be8fe4e1", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3c5d7bcaf7ed432e941734ea", + "revision": "b1c0994718684f69a36f9f71", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "fd2a56cc3b1044b3b08363dc", + "revision": "f0709db64aa845cf81e30519", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -70443,27 +70443,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "eb2154c2e0ff4cd5a2d9d6ae", + "revision": "a1d9425aca4b46a2a5dd000c", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661775049/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 255,00", - "revision": "ad4606e8d9584c358d15e0af", + "revision": "e6398a87d4a844c6a4669815", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661800868/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684661800868, @@ -70477,16 +70477,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "6c22b7d9d00d43fb9c122f09", + "revision": "4840863d23a44275b8c7c908", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1684661800868", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -70516,29 +70516,29 @@ "history_id": 1684661800868, "description": "Compra de 1.218.292,00 IVIP por 250,00 BRL" }, - "revision": "4cc67f481bfc42fd9436395a", + "revision": "1d0018d23b25442f8fd7d298", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "86685191d6d24b159b1dbe0e", + "revision": "d81b5d693e024fc1ad7d8e1f", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -70574,27 +70574,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "875a7129927f497eb473854c", + "revision": "cdc95869216d4eafb8f6aa10", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685452383443/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 255,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "1c0f97e00c8a47a1ac1c3fc7", + "revision": "c15876b4366448ed8e54ec6d", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685486477860/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -70610,16 +70610,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "68f6f6d6d6fd4a7b9bfbb09a", + "revision": "f443443c8c8948878988417e", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685486477860", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -70649,27 +70649,27 @@ "currency_id": "BRL", "history_id": 1685486477860 }, - "revision": "b018e56030bc43abbc62fd0e", + "revision": "09a55f38ec78418288ea652e", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685486477860/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 1 no valor de 255,00 BRL referente ao contrato 1684661775049", - "revision": "6585c12afca041c2bd4572b7", + "revision": "fa658f544beb4c3b87769353", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667437011/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685667437011, @@ -70683,16 +70683,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "77178a97cbcc444eada026ce", + "revision": "90ba8fa6a358410d8f4aa47f", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667437011", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -70720,27 +70720,27 @@ "currency_id": "IVIP", "history_id": 1685667437011 }, - "revision": "1c594c59816c449aa6d38114", + "revision": "1fb7f4f7fd524038bb589738", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667437011/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "73a67750eff84fdb868ff8a0", + "revision": "5cbc264d754243cc9452b15b", "revision_nr": 1, - "created": 1701465820555, - "modified": 1701465820555 + "created": 1701809344948, + "modified": 1701809344948 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667452001/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685667452001, @@ -70754,16 +70754,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "95151e8f95334d7fb98d0a3f", + "revision": "3b4fbc32aeee47f9b2f0bc18", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667452001", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -70791,27 +70791,27 @@ "currency_id": "IVIP", "history_id": 1685667452001 }, - "revision": "083831314ac84a9db67613a1", + "revision": "f8d5ad93007c49eb93d364a1", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667452001/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "2fc8bbb951a14bdf9a22d639", + "revision": "62fe6712b7484ff096c39d1b", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667466065/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685667466065, @@ -70825,16 +70825,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "476c184972e54e3aa5629fa8", + "revision": "14d29eca56bb4e8092e5864f", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667466065", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -70862,27 +70862,27 @@ "currency_id": "IVIP", "history_id": 1685667466065 }, - "revision": "58ce3d13d11841afaedd871c", + "revision": "c55aaa6632d942248f904063", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667466065/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", - "revision": "fc6170fd814047f99c7717cc", + "revision": "717a2f045b814400b716942f", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667479611/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685667479611, @@ -70896,16 +70896,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "66d2ecb9d84e4f9b8bcb6704", + "revision": "2fc0f61333544ff3a052d6e1", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667479611", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -70933,27 +70933,27 @@ "currency_id": "IVIP", "history_id": 1685667479611 }, - "revision": "77137e93e9a44afab500bbec", + "revision": "a40e3b05ca904f3fb874eff7", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1685667479611/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "2b14d172eb75486d9853ae90", + "revision": "895c855562c747b2b69a50f8", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687307213896/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687307213896, @@ -70967,16 +70967,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "9bc39ffb9c484034bf056d7e", + "revision": "6c31a70a50d54ab88ce2f999", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687307213896", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -71004,27 +71004,27 @@ "currency_id": "IVIP", "history_id": 1687307213896 }, - "revision": "fe1b48a450fa460eb5213bad", + "revision": "72751f15f03e42ea84a4e0e6", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687307213896/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 22.711.633,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", - "revision": "e22a618bdf424eca96e8cc4f", + "revision": "f8c9430a49264386874a1628", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687313762388/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687313762388, @@ -71038,16 +71038,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "8d16aabf872a4f7a9790ab93", + "revision": "b7c7cf51eeb946908a3fc3ca", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687313762388", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -71075,27 +71075,27 @@ "currency_id": "IVIP", "history_id": 1687313762388 }, - "revision": "ce64039ba722498991c983b7", + "revision": "65aef165e07a4ef897e3ac30", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1687313762388/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 24.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2025", - "revision": "ae51cd68f331436985072839", + "revision": "951669da32ac4cd0a4f5a252", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688400402521/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688400402521, @@ -71109,16 +71109,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "cdfff26a9752431180898834", + "revision": "232c37de96914499b81b4318", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688400402521", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -71147,27 +71147,27 @@ "history_id": 1688400402521, "wasDebited": true }, - "revision": "a138f3ad93004406bdcb0157", + "revision": "c534ded07d14462583ec5cad", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688400402521/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "c7a21f586c6544a0b315ca7a", + "revision": "4ecb132ea2744074b431c760", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688403044242/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688403044242, @@ -71181,16 +71181,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "258ac8e35b5e49919c131c70", + "revision": "20c9ad808e5c495db9ed1094", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688403044242", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -71218,40 +71218,40 @@ "currency_id": "IVIP", "history_id": 1688403044242 }, - "revision": "fee5fc5d332248bca129a0bf", + "revision": "9521636f805042fa9a9c53bb", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1688403044242/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "20cc9dc36173458c928b01ef", + "revision": "8f8a579946734808b9fb7002", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "d869c61be52d4db28c06efa3", + "revision": "158fd038252f47ab9da24ce9", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -71287,27 +71287,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "220924c53f9e49278c7570e5", + "revision": "972f5b5038c740598e8dd212", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689132091915/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "32d741983e9544c79199c0ee", + "revision": "02cdba69e48d43e982e69cc5", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234387/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 3, @@ -71323,16 +71323,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "6286a6abf5e84554b98b6c11", + "revision": "6b2e9a7ca62e4fc1bf0cb3cf", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234387", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -71362,27 +71362,27 @@ "currency_id": "BRL", "history_id": 1689211234387 }, - "revision": "9674a44b7e8f4a579d217650", + "revision": "720da6a5cb2d4592a14ab444", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234387/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 3 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "71c22fb02b3740229a385b03", + "revision": "c35d5ceff777491294aef567", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344949, + "modified": 1701809344949 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234773/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -71398,16 +71398,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e072eb852f5645bd8a742b5e", + "revision": "1f9583aa66c14aa18c1974a3", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234773", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -71437,27 +71437,27 @@ "currency_id": "BRL", "history_id": 1689211234773 }, - "revision": "e9db0a89ad7c4104a27f23f1", + "revision": "28b7d742755848fc844a6895", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1689211234773/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "bac5099da65d427fb99984ae", + "revision": "9396f0605d0b40feaffebb3e", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691081485992/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1691081485992, @@ -71471,16 +71471,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "aa95185c415d4bf49909e688", + "revision": "55ab392e2e7d45c39aacad48", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691081485992", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -71509,27 +71509,27 @@ "history_id": 1691081485992, "wasDebited": true }, - "revision": "1e2114547070468b9353b715", + "revision": "5f2a02f798e34a1ba5cbb5a6", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691081485992/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "00a4320ead4f43e0ad3a50e7", + "revision": "aaa07512ac7e44249066f40e", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691082200859, "net_received_amount": 0, @@ -71541,27 +71541,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4f4b895c18144de48bbb52e9", + "revision": "37c8e789e6cb4a8ca9123ffd", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1691082200859", - "revision": "dd13e260790949149ad109b8", + "revision": "e783dbce4ef54cab95b4bf92", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -71589,27 +71589,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "5d4e5d1705b347bdb8200e32", + "revision": "0dae9e5a0765453b9196a313", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691082200859/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "055ba3ab351d4ae8bc10ee1a", + "revision": "7c7dc189ae994a14bf6aa499", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -71617,16 +71617,16 @@ "value": 1694387537743 } }, - "revision": "2fcffd6516d742b287092a3b", + "revision": "0048ea0837a243bba192ef8a", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691795537743, "net_received_amount": 0, @@ -71638,27 +71638,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ff73d827fc9e46088a6eb20a", + "revision": "31cb2bdf3123481cbc9dde75", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1691795537743", - "revision": "a82dd96781984f8aa14f4617", + "revision": "fb1881e4fc1a473790d9ed6e", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -71692,27 +71692,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b49940b4bab54c6fa41fbdae", + "revision": "d65d00efcebc457a97851782", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691795537743/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 1.490,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "5617fafda86244908ea0d6ae", + "revision": "6bf417da8b5e494c9f3de81b", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838943906/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 4, @@ -71728,16 +71728,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d87485eb67944d1abb169277", + "revision": "1bb87e80f00e4d46a9f80a8e", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838943906", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -71767,27 +71767,27 @@ "currency_id": "BRL", "history_id": 1691838943906 }, - "revision": "62c8b53430674a818032e579", + "revision": "6a83e170572e4de9a11315d0", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838943906/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 4 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "1b433602e9df42f88263297b", + "revision": "613a92ad8e5f47ce97cc6a46", "revision_nr": 1, - "created": 1701465820556, - "modified": 1701465820556 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838944125/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 3, @@ -71803,16 +71803,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d985fae9fece48e2ba32ad74", + "revision": "8d18dadd1d8e4875b7f50aaa", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838944125", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -71842,27 +71842,27 @@ "currency_id": "BRL", "history_id": 1691838944125 }, - "revision": "21d9d6b82f574a35a88ea7cc", + "revision": "02130c495fa8448482d008ad", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1691838944125/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 3 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "f303bf1d9d86419a91223554", + "revision": "468772c0300140b69037805f", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693760654707, "net_received_amount": 0, @@ -71874,27 +71874,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1ec7028f91484705ba00ee55", + "revision": "087ed29d8cf44a5584cb1999", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1693760654707", - "revision": "c5e0df7dfcf2485aa96f9b81", + "revision": "d679f16813ef4a2988f996d6", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -71922,27 +71922,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ea70a52c47d9463eb25bec25", + "revision": "5cbf829402de465ca550c5ee", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693760654707/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "1f91237e911c48eeb8b8cd1c", + "revision": "1401c62a6f5642d8bb39e8ea", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693869394011, "net_received_amount": 0, @@ -71954,27 +71954,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "44be1f8ef31342ad8c50368f", + "revision": "80ebbfe839354b53b66cac33", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1693869394011", - "revision": "b5ef5688a50840679d0de252", + "revision": "abc6e0181c194d24a55463bc", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -72008,27 +72008,27 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "aa84fd1871734bb9ae26a394", + "revision": "69f822a405ab4bfe8bd76302", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1693869394011/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/10/2023 - Y12XDT27", - "revision": "d82ee7ea1541488eb50a4a9f", + "revision": "abc44b4ce41b4d7d80964b57", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344950, + "modified": 1701809344950 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -72036,16 +72036,16 @@ "value": 1697073911857 } }, - "revision": "208a41855a3d464b99521680", + "revision": "d6370eebe60547a5a5389ff8", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694481911857, "net_received_amount": 0, @@ -72057,27 +72057,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "47528fea58fb4603a6c4394e", + "revision": "7e6413f293124d03881ce171", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694481911857", - "revision": "e985919ea87b4277aa92b499", + "revision": "9dfa4826fae7419d8ffbdd34", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -72111,27 +72111,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "722e9d627005410680f4b621", + "revision": "0475b4402fa345328ce7feeb", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694481911857/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 1.490,00 BRL para a carteira iVip 0983.0244.9130.1420-80", - "revision": "6bd4344daf054d5cb38e8da8", + "revision": "c49b91e0ad1f40c5aa4627b6", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694627290479, "net_received_amount": 0, @@ -72145,27 +72145,27 @@ "installment_paid": 5, "installments_payable": 5 }, - "revision": "e27f00d09cb34c2d8fadf588", + "revision": "9da7924938174d46a8bc9e32", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694627290479", - "revision": "0a027807af12481a91a5e70c", + "revision": "ac419332a4dd4055b88c1e04", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -72193,27 +72193,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "ef28ddae7e764180b415abb9", + "revision": "b6d2bac969374c3aa69dae7f", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290479/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 5 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "9093b25f2b524bdd86c0ba67", + "revision": "9cd6c2af43da4bdc9f853549", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694627290565, "net_received_amount": 0, @@ -72227,27 +72227,27 @@ "installment_paid": 4, "installments_payable": 4 }, - "revision": "0d14c458de484bf08ed6c208", + "revision": "ffeb03acd83e4883852d1b83", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694627290565", - "revision": "6888afbbfcc0443da2530252", + "revision": "8c4075e7fe094fac805d3346", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -72275,27 +72275,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "e2656b0223c949efb6f045e7", + "revision": "2154fa3c000f4a14910c8a8d", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1694627290565/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 4 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "1904448fc655492dbaef3c11", + "revision": "4c131d90debe43e299a2c978", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696555808953, "net_received_amount": 0, @@ -72307,27 +72307,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4c8bf33cd5eb45adbb496150", + "revision": "4ff1641bed1349c29ce4dcf4", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696555808953", - "revision": "f6b56445bacf425a97569096", + "revision": "5f9123fa487446889a8fe85c", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -72356,27 +72356,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "1ce2b76ab44b4cf2ab07f478", + "revision": "3ebf78b218124c90a6cebc70", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696555808953/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", - "revision": "142c612f0c5040c3ba78b858", + "revision": "e3db6ebc36ad4910803ca40e", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -72384,16 +72384,16 @@ "value": 1699411744331 } }, - "revision": "c33fe0f7be074f268b2fd8a3", + "revision": "eef8569d8c3f42478dc75d1f", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696819744331", "net_received_amount": 0, @@ -72405,27 +72405,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4e5c58c98f1e40cd9d1d1a3c", + "revision": "5a2cdd10bd7a42db9eb097f0", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696819744331", - "revision": "dea7a0300088433ba0d6ba46", + "revision": "50840a7c55804bb891928d8c", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -72460,27 +72460,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d2faf65cc4234eb78c4df715", + "revision": "84fa3926b95c4ffea0b4cf34", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696819744331/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 1.490,00 BRL para a carteira iVip 0983.0244.9130.1420-80", - "revision": "58ed427e2ab04cc892947e20", + "revision": "d0ca753981f04af6ab11acfe", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696861214347", "net_received_amount": 0, @@ -72494,27 +72494,27 @@ "installment_paid": 6, "installments_payable": 4 }, - "revision": "e0b695d160224d538f04c896", + "revision": "52f9d4f991ff4cb980973cb6", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696861214347", - "revision": "da200e7aed0d43f199f7201b", + "revision": "1ebb58811d754e0a96d6cfaf", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -72543,27 +72543,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "1290c84714764ba6b06ddbff", + "revision": "2854e4bbd1434d5f8d2192e3", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861214347/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 6 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "179598130f99437aad5c0559", + "revision": "cf1d4cf8b831497dbde6f765", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696861218511", "net_received_amount": 0, @@ -72577,27 +72577,27 @@ "installment_paid": 5, "installments_payable": 3 }, - "revision": "282eb344e6f24ed4b9dff3eb", + "revision": "f3a5d0309faf4aceb548d1a3", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696861218511", - "revision": "1718c7cd88e64008b886c485", + "revision": "3cf8617370624a61b173e943", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -72626,53 +72626,53 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "25bdd4fa717849bb8937fc3c", + "revision": "a4c1d29f624e401ead9325d7", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history/1696861218511/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 5 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "26b7ef5b0dff4381a6fbe71d", + "revision": "9ae2abe80c70499c9e30edae", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "62f9facaf0654e2580465b09", + "revision": "2adaaaabd2d5401394862c8f", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "b71415635b9744479fa0fdf0", + "revision": "ca7b6568971747ce8e918710", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680571158806, "type": "emprestimo", @@ -72688,64 +72688,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "c01742a82a1c461ba26fab25", + "revision": "4ca790b606bc496083731b49", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "911291478ab74b97a40d2597", + "revision": "d663f804c77049caadebd62a", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305/1680571158806/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "ab8086eff8d844de8694bfcd", + "revision": "0b0c0cdde6a84494801bb9e7", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202305", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c58c2fbda5024170ad3271be", + "revision": "6cde0bc0dbe04993a76fcaa7", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344951, + "modified": 1701809344951 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "0af74db24ff146a2b56d14eb", + "revision": "d4c20d4ba7b94e55b4c92cd3", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680571158806, "type": "emprestimo", @@ -72761,53 +72761,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "241d8d34ed1348e891c78111", + "revision": "58c60046fa0b4916a9c6e8c5", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "c94e978f32154f2c91f3bbe5", + "revision": "48dc7f2ec9534e7db874cbbc", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1680571158806/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "2fa31e79386c4a799881f680", + "revision": "dd472748beb5407faec6283f", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "976ee6e00f0d40f8ae6e2de5", + "revision": "21b997f270054a0c8c0c7526", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684367721554, "type": "emprestimo", @@ -72823,53 +72823,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "0f503d54dfaf4a949b9de83a", + "revision": "d58aaba3530f4c88a290221c", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "fcff552968d3474281cfaf2d", + "revision": "506464c579b74bdf8703a954", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684367721554/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "2a42d1e100a843f0b26ed51b", + "revision": "79d6a054c85448e5adf624ef", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 1 parcela(s) 2.00%", "amount": 5 }, - "revision": "5442b1be230844fb8437606b", + "revision": "05c3a41855c94d5eb7240656", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684661775049, "type": "emprestimo", @@ -72885,64 +72885,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "a0ec8c8618284a91b4fdd334", + "revision": "f382f175d1554afc81e78942", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 255,00", - "revision": "59141fd39c5448158ad98d52", + "revision": "8da102b049764623a1ed8ae4", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306/1684661775049/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "700021a65574481f952a5b15", + "revision": "070706e7c9c14d7196583775", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202306", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5201bd37188243f6a976c98a", + "revision": "42178749099e4e499d37972d", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "6ea56113a5c3486395c584cc", + "revision": "315c270b519b4fcf81f2dcc2", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680571158806, "type": "emprestimo", @@ -72958,53 +72958,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "61feafeecd764645a8fdcdc8", + "revision": "5b27a5b5b2904c8f8987242f", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "ed5216ac1a0a4a38b26e9d2e", + "revision": "dccee9cc8df6495f853ee5d6", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1680571158806/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "5676015e91bc4ca7adb29acb", + "revision": "fe3f25755db44d1389c294bf", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "c80ebe99f7bd4585956afbf5", + "revision": "cced3f25a0a9407093c49400", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684367721554, "type": "emprestimo", @@ -73020,64 +73020,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "db50a38940ca43da8ef86950", + "revision": "c572075823f84a5689e8b187", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "163339454c5c4e939c31959c", + "revision": "1ecaf574059b4fc9a31f7ca8", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307/1684367721554/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "87535c38e15f411aad796985", + "revision": "dd4538b6d27948239407ac0f", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202307", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ff84678b7aae4426a3a9071c", + "revision": "0bc922daedc846119256059a", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "10f88b9e340c49cb81c1c161", + "revision": "61bb2326e6964305a61ed7f4", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680571158806, "type": "emprestimo", @@ -73093,53 +73093,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "221a82466bf247298f8d7fe7", + "revision": "147097f5e7a5477089e1a122", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "b88874c16d2047898b8d6d44", + "revision": "5411a0baa8924589ad62b52e", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1680571158806/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "44b4e6f21b9f4c739cf8d10f", + "revision": "b87b1907ee2343c196dcbe40", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "956862b89e804dd98fdb99b9", + "revision": "304658a957b743ec920ae692", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684367721554, "type": "emprestimo", @@ -73155,64 +73155,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "2cb2481938eb4c129b6add9f", + "revision": "333c1fc7fb0e4fa8af0d8d29", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "ce1c6eba25154df39b38d272", + "revision": "2eadc355af6c4ad983dbea71", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308/1684367721554/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "b1615198d8224cb9aa5fbad3", + "revision": "4f557fde27334c069599ef1f", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202308", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "dcf3def86ce845898b58d1e7", + "revision": "ef6bfa2fc13246ef9b8da88d", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "b8e6353c28254c84907be1a8", + "revision": "57c3bf72579948fea20ceed2", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680571158806, "type": "emprestimo", @@ -73232,53 +73232,53 @@ "value": 1694627290497 } }, - "revision": "d4a204254af6450eb27bfb38", + "revision": "d673025b14094e87a9ad6e53", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "c59ad3783d1646ecb1e40350", + "revision": "b000b33982f2499a8cff0966", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1680571158806/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "31077d57428140db8882d389", + "revision": "d700529635ed4329b1d2a5cd", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "0b7910646fd547d4ab050b85", + "revision": "09362595913f4100b54fa138", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684367721554, "type": "emprestimo", @@ -73298,64 +73298,64 @@ "value": 1694627290583 } }, - "revision": "d4ce8f9a29fa4b4d8833dd51", + "revision": "5f1a70a6f5df48699b32e962", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "9184ee39c94b431bacef88d9", + "revision": "be0a7b406718464fa1c66501", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309/1684367721554/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "b194eae2007f485baf5c6986", + "revision": "730cfe0f3f6c4869aa92a331", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202309", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "d3d55d10e9db4d1781195612", + "revision": "5b437c02d7544d5bb50271e1", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "984c4474aa8e4987b2e9afae", + "revision": "91cb98a3ef62451b9ddf9d18", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680571158806, "type": "emprestimo", @@ -73375,53 +73375,53 @@ "value": 1696861218119 } }, - "revision": "a6940973bc884673a91e2382", + "revision": "3922b3eb3fb1459abff34768", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "a67694cfdd784f488541da89", + "revision": "75bb261cf1e24549b81edb8a", "revision_nr": 1, - "created": 1701465820557, - "modified": 1701465820557 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1680571158806/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "6585f4144cb84baaa8bb0ba8", + "revision": "2bd46197297e43dda6cf7398", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "dab2a2a23bba4de0941f226b", + "revision": "36fd31fc2a724707857a13d8", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684367721554, "type": "emprestimo", @@ -73441,64 +73441,64 @@ "value": 1696861218540 } }, - "revision": "26a3e8dd63ea435d80e08c93", + "revision": "bfb42f5bb6ed4dafb2f75f8a", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "7c353d552af04a5eb5677a55", + "revision": "0ab88bfb324043c89a020c1c", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310/1684367721554/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "584b1e6a623441ae8f0d4f78", + "revision": "88f4dcd6de494db58c27d803", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202310", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e705f88d3fdb4999a6c5247b", + "revision": "d13073b581ed4ae0b356946f", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "4d82f781e0dd4cad8e516726", + "revision": "4515eabb3c9a4202acd2f95c", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680571158806, "type": "emprestimo", @@ -73513,53 +73513,53 @@ "history_id": 1680571158806, "currency_id": "BRL" }, - "revision": "7fed518f339a4bc6964cd613", + "revision": "c0ab416bc6634232a95da001", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "f991443ea3c0423a89464764", + "revision": "c423e97a8768464f9b680806", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1680571158806/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "fb96b2cc3bde493ca12ff4aa", + "revision": "dcae8cea1f614a82a4ea4fac", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "aad9ba154a014591a2fe4fdb", + "revision": "ebe6962974654558898c4e61", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684367721554, "type": "emprestimo", @@ -73574,64 +73574,64 @@ "history_id": 1684367721554, "currency_id": "BRL" }, - "revision": "2c755a48e5fb418f94d2473f", + "revision": "ee2b0d64a9af447a8b438f46", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "08d94cd5b2954b3db5c88076", + "revision": "1de02b32a75a41418270c7a0", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311/1684367721554/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "61a64dd65b2d4060aaac462a", + "revision": "4cfb8457621149148cf55be2", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202311", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "642f11553c5b401ea778f126", + "revision": "a1d4891b30fd42428c9d9ec4", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "bcf8cb91174f4a57a3221fd4", + "revision": "0c30e533505c4049b67e975e", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680571158806, "type": "emprestimo", @@ -73646,53 +73646,53 @@ "history_id": 1680571158806, "currency_id": "BRL" }, - "revision": "175201e05f904bc6b96fb397", + "revision": "7b9cd22152134908a9d7bb84", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "d489cfa85e534da2aa0fd5d8", + "revision": "1e2fdd84d5e44220b5623faf", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1680571158806/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "fcc744b49861443b9503b4af", + "revision": "7698ca9b037745acb2c5d009", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "a10bf27babc747399e65d9b3", + "revision": "2207fdeecf38482e890e5f20", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684367721554, "type": "emprestimo", @@ -73707,64 +73707,64 @@ "history_id": 1684367721554, "currency_id": "BRL" }, - "revision": "9e975203e33d43d499a79a37", + "revision": "b0b1bc24bf50467680fe0402", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "0653dfd75a2e41068f920da8", + "revision": "536d905a3fb14fbb8fa9d240", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312/1684367721554/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "aa654b1ae03148789eed8f2e", + "revision": "0e9244203f184dde92838886", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202312", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "26306f0aee6a4914a72383d5", + "revision": "030d6df0d91948bb84770fd9", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "886314bea8424c0caf2ef3c5", + "revision": "4589ea1f0fec45b88439b6cd", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680571158806, "type": "emprestimo", @@ -73779,53 +73779,53 @@ "history_id": 1680571158806, "currency_id": "BRL" }, - "revision": "901a39c422214e8c8def4c8f", + "revision": "c944aacb73c6455f95bc15a9", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "c963a114b466444785f2572a", + "revision": "509bc3ac3e7b4c77ac137865", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1680571158806/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "866add7676584761b9e05fa6", + "revision": "0cfada6065004fa7b1010043", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "7d1ab24db0ee4ba48a042ad7", + "revision": "d208e86b07eb49dd8c24ef66", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684367721554, "type": "emprestimo", @@ -73840,64 +73840,64 @@ "history_id": 1684367721554, "currency_id": "BRL" }, - "revision": "4e535a24b64143ed8048298f", + "revision": "12a4b7b26b3746a3aa203b40", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "3b98e263470e4acbad549950", + "revision": "3a3902153950429e8f9ab922", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401/1684367721554/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "fccb6c34534d459397ad83ac", + "revision": "82c32cd0027946b69ddbb640", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202401", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6b40ebbfe1234fbdb6adec4e", + "revision": "18fb29d542634c3fb9a83e87", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "0e53b3fac0d649b1ae699db7", + "revision": "88c6baeec83b40ad8733e6c4", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680571158806, "type": "emprestimo", @@ -73912,60 +73912,60 @@ "history_id": 1680571158806, "currency_id": "BRL" }, - "revision": "a0a1f521abc54ee98853e965", + "revision": "6721220caa6f4aee884021d9", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "51db7197d941446780ed10b8", + "revision": "f6f91bdaba5647ffbf7f6fea", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402/1680571158806/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "9daecbb1dbef405a88644139", + "revision": "8d115032a3fb4497b06a8b35", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices/202402", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "81e6b77d4df148739b8a65e7", + "revision": "8318042b1d094d8b8a9ff16b", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9c5ce5783e6240eb98528394", + "revision": "eeee9225ac634041b6156245", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 10000, "limitUsed": 7250, @@ -73978,16 +73978,16 @@ "value": 1680978393740 } }, - "revision": "a074f6fa09324ccc84b29c7b", + "revision": "e87552eef23c46a3840c5547", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/098302449130142080", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1680465637248, "dateValidity": 1680465637248, @@ -73998,204 +73998,204 @@ "value": 1696820400000 } }, - "revision": "babeb8b8c8544efa8873d7f2", + "revision": "b6a7be9bdc914813af472a55", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/099867702110120200/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7b87957771694dcc9f5a993a", + "revision": "e618e72e75424e03a9203e98", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/099867702110120200/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ad9b24adcbcb425ebab4b8b9", + "revision": "583787ef4e1b4a259451bf80", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/099867702110120200/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1a0528ed4cf2483e9a6d1d14", + "revision": "d1b9d2dfbe1f4ebd94a8064b", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/099867702110120200/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "ccf201c6b7de40efb52cfba6", + "revision": "f52c3a7e29e3428eb53c8652", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/099867702110120200", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684118396230, "dateValidity": 1684118396230, "totalValue": 0, "currencyType": "USD" }, - "revision": "f57fd8574f6d4cbc961dbb1d", + "revision": "ed708a37c8a049fbb047529e", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/100571192646522480/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b718b3af5567478986657ec3", + "revision": "e4d52de86e344e21ad1c7cba", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/100571192646522480/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7de273b53d9442629a5d88c5", + "revision": "421e5f31096849d1ab4c23a2", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344952, + "modified": 1701809344952 } }, { "path": "ivipcoin-db::__movement_wallet__/100571192646522480", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677468345456, "dateValidity": 1677468345456, "totalValue": 0, "currencyType": "USD" }, - "revision": "0782485fccdd41af9c46d16b", + "revision": "abbc72cc758b4ba5893106ac", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101099073948007100/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e9e3bcb76a6e4799968e8b1b", + "revision": "a8973723ae774f7bbe2cac70", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101099073948007100/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "90ad1921e65a45bfbff0826f", + "revision": "d781fa2a9b1e4382af1e1e65", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101099073948007100/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "86e7c346fefd45bab3e69bb9", + "revision": "43c0c8e6eb214157974ba748", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101099073948007100/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "3c20d01bf1f3465d85d00914", + "revision": "f876ae423c3947c88c7f9e86", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101099073948007100", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1685622109779, "dateValidity": 1685622109779, "totalValue": 0, "currencyType": "USD" }, - "revision": "7038507849db4c398e32c239", + "revision": "cf08f45f6b214c1281e6bd41", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6f1d78142aec4acf8e071008", + "revision": "5d676f3731354d3694a857fe", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "716dec5eebac445c897398cb", + "revision": "677cbd0b0488418e90a51999", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -74231,40 +74231,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e2c5eedd77ad4cacab70afe7", + "revision": "6f5b6c4584394d39a9490e40", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683387433855/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.700,00 para a carteira iVip 1017.8820.3938.8364-80", - "revision": "dace1b1dcac54b65903f05d3", + "revision": "845520a894ed4b1b91473201", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "f9aafe009c3a497db4f76827", + "revision": "f29893577cc144bfa5b70e78", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -74300,27 +74300,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b5113fa86e5e4e27962e0601", + "revision": "b73a7a3fae5a441383944404", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1683729448058/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1017.8820.3938.8364-80", - "revision": "4d8699d04903458aa822801c", + "revision": "c87c7bae383d452089a212ad", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1684018976722/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684018976722, @@ -74334,16 +74334,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d51f12989f7f443d814c2e4a", + "revision": "4e6eeec3b3b943c5ab01d658", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1684018976722", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -74373,29 +74373,29 @@ "history_id": 1684018976722, "description": "Compra de 14.591.858,00 IVIP por 2.700,00 BRL" }, - "revision": "21fa3e3ebae7460d93d0f020", + "revision": "946fc908944a4ef68ee1334a", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "a65bbfaaab5a48f893f77596", + "revision": "069880364b0e4c1cbc60d2bf", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -74421,40 +74421,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "c97a3029df4f4dbbb3c2525c", + "revision": "193f692f24334e50a037a009", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686488141706/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "6a81e621213947e1bc119252", + "revision": "360e089cb16e4bd5b39ad154", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "7d99b52793354ae8862ca1bf", + "revision": "ad07ef5b242f4fa69aa0146a", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -74480,40 +74480,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "b7faa0cbe720482a88c20cc3", + "revision": "9381c05679c4442a9ae26eb5", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686581079256/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "e9a3c808bd414b00a698359a", + "revision": "8c2a5a0d62624ba19b7ef8c6", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "418ece975087467ba46b3622", + "revision": "f939a9d56c7f409986bed389", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -74539,40 +74539,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "ae1f7da0546041a9bf82a2ce", + "revision": "2dd99664f2094da99a2b9e91", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686647052098/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "6ba03871db5f4e828fab93cd", + "revision": "939dba89c19545b682ea36e3", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "03db37d04a3d44fbbe13a1cf", + "revision": "77c22496b8ee4579a9d20d20", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -74608,40 +74608,40 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "dc7e00f973084967bfe67950", + "revision": "89496252af074fc2afcfc8ba", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686750536224/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "437f21d7c9254d9699324340", + "revision": "663d99c5fbdc466ca1cd4c7a", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "37c4153f2b274e51a0a222f4", + "revision": "e4bdf69b9e2d402cb028c779", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -74667,49 +74667,49 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "c7161b7b580e49359039c693", + "revision": "c58e2cb794754b67b5893795", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history/1686865268655/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "957a5e359df44b2b913df9cf", + "revision": "518363cfed424dd88ebf3faa", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "672377aa7a7946b89c78e5ae", + "revision": "f0d01e1df0054b02ad1f2b56", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "be683b13c4c6431a82bfed9c", + "revision": "9cb24e03a55a401189e21c10", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0, @@ -74718,16 +74718,16 @@ "value": 1694712457445 } }, - "revision": "74626fe89e6b4da2bf226149", + "revision": "439b238361f347798f98c055", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101788203938836480", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1683247685722, "dateValidity": 1683247685722, @@ -74738,259 +74738,259 @@ "value": 1695610800000 } }, - "revision": "10f2ddbb1bef4103b92e8ab7", + "revision": "551777150f5e4252976d4f09", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101924508374940270/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5f598cfb35a64e55a1241bc9", + "revision": "84f6e56c9afb47dab14ae45c", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101924508374940270/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8d137eba7190427eb17da4f7", + "revision": "566eac2174a14455a38c7799", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/101924508374940270", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1679287665883, "dateValidity": 1679287665883, "totalValue": 0, "currencyType": "USD" }, - "revision": "43c249d90ea6479d8649a993", + "revision": "1a812915090f4bab8e68d809", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/102162769887914180/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6aaca4c2645646abbe54d4d3", + "revision": "ca3463529ef44a11a72e52b0", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/102162769887914180/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a95cc44e75d9464f8ae4704f", + "revision": "d2b025cb6064473782a2b86b", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/102162769887914180", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1689113009824, "dateValidity": 1689113009824, "totalValue": 0, "currencyType": "USD" }, - "revision": "8ddbaebec46a4e699e6cf807", + "revision": "4f43b45273c44e66a5eab60f", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/102585657323784220/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3b1ea8b1e79f497fb09c5884", + "revision": "6dfadf0eb7b54e89acd9c7ef", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/102585657323784220/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "401045a619574efb9b566679", + "revision": "83e106df6ae249958b918a37", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/102585657323784220", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1679436379945, "dateValidity": 1679436379945, "totalValue": 0, "currencyType": "USD" }, - "revision": "336a3168291546458645e531", + "revision": "24f119fb3fd945d89e974f04", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/102986238363877330/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "98a0895604b644a08ff94fbb", + "revision": "bb879373ec86452a945de348", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/102986238363877330/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e80b4257d0174c5e98679130", + "revision": "913ce64213884c68af138a5b", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/102986238363877330", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1696096915384, "dateValidity": 1696096916164, "currencyType": "USD" }, - "revision": "f25570bd01a3466f948489d8", + "revision": "53ec4c9ba646468989e1aee4", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/103931688787322940/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "33f0ab8ef0bb4b31a960660a", + "revision": "b07056b8d5ba4473b22f7006", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/103931688787322940/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "30bda68bcbc74441bfcb60ec", + "revision": "bc0fdb1a8e9a4822a8bc32d2", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/103931688787322940", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1679165777705, "dateValidity": 1679165777705, "totalValue": 0, "currencyType": "USD" }, - "revision": "e41948ba223843f8957708e4", + "revision": "2922959141344b6fa6b029f6", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "BRL", "available": "0.00000000", "value": 0 }, - "revision": "0c7fccb1ff40479d89ab81eb", + "revision": "6ff18f60d5a145e58afd8368", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "IVIP", "available": "0.00000000", "value": 0 }, - "revision": "384df6218304442c95bea8a1", + "revision": "04d3138fa1a448eb972c044f", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4281d389dd424fd98bddc7da", + "revision": "3d7310e4bc904c9398d0cc86", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "e88faeec7c89486cbbd80065", + "revision": "38547e1680a24be39e51c740", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -75026,27 +75026,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "7707539cba754bf5b2e0f26d", + "revision": "1577edbcddea463fb21bc15d", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684170542717/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 1069.0089.6878.2698-70", - "revision": "0094cf42f48a4ba981d040c6", + "revision": "547265388fa6449d8b54ff31", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344953, + "modified": 1701809344953 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684624294208/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624294208, @@ -75060,16 +75060,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "f92beddc8d514920982b708e", + "revision": "ad9f89a06ecb47a187bd9f4e", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1684624294208", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -75099,29 +75099,29 @@ "history_id": 1684624294208, "description": "Compra de 243.536,00 IVIP por 50,00 BRL" }, - "revision": "0ce89941d18d4572a237c83f", + "revision": "030d2994fce24e2781c40fa3", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "65302b584a8e4c11a538d0ab", + "revision": "eceaa163849d4a26b3a6ef87", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -75157,168 +75157,168 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "d1828d75d0ca4af7a489c1c3", + "revision": "99f12fd185b24943ab198359", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history/1688846842830/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 243.536,00 IVIP para a carteira 0x58120E330A738FD12B195740b06B7792A5C7DD7D", - "revision": "9701c6750abe4c258fa08699", + "revision": "5b7d46e1b19b4505997fb6b9", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "34ad3285abfa46ddb518fe6a", + "revision": "a16c2a81f7024bd48ac47ee6", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "50abda1ad7934fbf909974f1", + "revision": "c56065d903454cea990e8f73", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "5bf83dec19af46e78ec094fd", + "revision": "ccc6eaec05ef4fe689b42ec2", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/106900896878269870", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684170470840, "dateValidity": 1684170470840, "totalValue": 0, "currencyType": "USD" }, - "revision": "02b105685539477f91db8fb6", + "revision": "52cf8259173a486890319c26", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/108390022183703310/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "bc765069dfbd430991442be2", + "revision": "5388506801e44d3c8aee129f", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/108390022183703310/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a454181c121c4377a3d2ce80", + "revision": "6fb512adaa734bbd8b718a29", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/108390022183703310", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1680695438579, "dateValidity": 1680695438579, "totalValue": 0, "currencyType": "USD" }, - "revision": "6ce58bf9cb7b439795527e85", + "revision": "039352bc55d544eaaac1ef96", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/108783781111851280/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6042f2b4d8b3400ca046bcae", + "revision": "c86a3f4946e14e77b048af73", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/108783781111851280/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a35f59b3868a49b989fa8c49", + "revision": "6dae3b0b6a794bf1b82db3bc", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/108783781111851280", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1681661884795, "dateValidity": 1681661884795, "totalValue": 0, "currencyType": "USD" }, - "revision": "687d12af574b4fa4890a096a", + "revision": "6ce60d8080c348bf939cfb16", "revision_nr": 1, - "created": 1701465820558, - "modified": 1701465820558 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "8bfcf87ce4d0404194c85908", + "revision": "a88abca47d2e436a8d5a3c84", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -75354,27 +75354,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f5e6bad18fd54bc5b0cfceec", + "revision": "77ea2d360c1844bbbc9cc27d", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1684095990042/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1100.9860.6095.8997-30", - "revision": "56efae51263e4d6d9d68cf2a", + "revision": "d33f1d2e12964d5395837fa9", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1686325443110/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1686325443110, @@ -75388,16 +75388,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "f6f6b87f4df44c3fa46102bc", + "revision": "bcb2c8229a8c45918bdd76f9", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1686325443110", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -75427,16 +75427,16 @@ "history_id": 1686325443110, "description": "Compra de 1.792.114,00 IVIP por 500,00 BRL" }, - "revision": "088fd38536564915862bd5fd", + "revision": "b9097396eb5b4036ad75c426", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690019958173, "net_received_amount": 0, @@ -75448,27 +75448,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "2c681d3471ac4a229a5b5616", + "revision": "2114beabe53b4a31a43e532f", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/110098606095899730/history/1690019958173", - "revision": "d847c1c214e349da93f8cd3b", + "revision": "aff3a453bead40918ec32bd0", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -75496,42 +75496,42 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "1a7e34637789437db3c4c335", + "revision": "d1e184c4e4e34d15a5a27151", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1690019958173/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1.792.114,00 IVIP para a carteira 0x007E69086fF7981e3fA99368fACD516952625148", - "revision": "ba903b3dc2814f55b3a10d4c", + "revision": "4beca3e7430c444fab11fd5d", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 53763.42 }, - "revision": "abb8080956d944338253dac7", + "revision": "6e838cfe7e2941b49933c720", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694046051457, "net_received_amount": 0, @@ -75542,38 +75542,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "48e9a9b9b06d4372b482e8bc", + "revision": "a7809e9b947e48fe9b979224", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/110098606095899730/history/1694046051457", - "revision": "62b7643d3a724ac980998017", + "revision": "a5b481e8a2574cb7a0d7733e", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "7b219aa14bd0473cb2401bab", + "revision": "30202abe5fbf4696a43632c4", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -75611,104 +75611,104 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "0872f607a40f401383f3de4d", + "revision": "42e3d26f414e46feb0d4866c", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history/1694046051457/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1.738.350,58 IVIP para a carteira 0x007E69086fF7981e3fA99368fACD516952625148", - "revision": "04b7090c34184bda86be62d0", + "revision": "17da3a51f65b45bea7b1dfbd", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344954, + "modified": 1701809344954 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ef6d7aeb44b547889b184a74", + "revision": "d556edd6247a4882a740cc32", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "0c57d08cd9ba4c70b30d21ec", + "revision": "84e2565d77204716b8c9bac2", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "908ecdb7a39f403e892e0457", + "revision": "dddc240551da47308be00d00", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, - "revision": "bca1a2f05d2a48acbcc2f0c0", + "revision": "6bc021841f6a4c808da3a8d8", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "1792114.00000000", "symbol": "IVIP", "value": 199.51 }, - "revision": "ca46f0de360446fcbfbb7b2d", + "revision": "33a9fdca55234752b33ec98b", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5e206c127b4e43de87451887", + "revision": "39eaba8528974e8eb44bed34", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110098606095899730", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684095886828, "dateValidity": 1684095886828, @@ -75719,40 +75719,40 @@ "value": 1694401200000 } }, - "revision": "a1521afe61784953aef47cbc", + "revision": "d4fee56e5c794e07bc4e8dd3", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e7274f19520c44a28fc2f13e", + "revision": "617ff3497d6e4c72ab2cd7fa", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "8723be76776341b69d8f0612", + "revision": "93be7fc56378412bba071077", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -75778,158 +75778,158 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "ed556690fc004783844f3559", + "revision": "f45aa7af00f4487588c14f81", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history/1684539878275/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1101.2161.6136.6665-00", - "revision": "2bfd081ae3664b6f88521ab5", + "revision": "9f0c681777f641d592229a4d", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4606e3433fc240979aea9f35", + "revision": "df29c67e2f6743f89160be6c", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "069bb182aacf461a874c39fc", + "revision": "88d6451128724444b2cb6924", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "02586abeeaf943cf86fba1f4", + "revision": "6b44ff5f20104f6f8f754794", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110121616136666500", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684536217510, "dateValidity": 1684536217510, "totalValue": 0, "currencyType": "USD" }, - "revision": "4c0c23b1b18c465c9e2b021a", + "revision": "25298b32e81340d3b745c3ba", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110261910786918940/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "26f5073ce88a4496bb8666c0", + "revision": "fb862bb421064fc488cbb3b4", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110261910786918940/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8927f618b906405c95a9850e", + "revision": "f23677f80c4f4c46a3379255", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110261910786918940", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1679301294113, "dateValidity": 1679301294113, "totalValue": 0, "currencyType": "USD" }, - "revision": "a92ec497599641a589d644f6", + "revision": "8b3fafaccb4c40b6bc98addf", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "BRL", "value": 0.132, "available": "0.66666666" }, - "revision": "0ff4836ef1c44679aafab553", + "revision": "f659cf3df7be484d9078f2dc", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "IVIP", "value": 0, "available": "0.00000000" }, - "revision": "b8e56950a1544303812748b9", + "revision": "37d1b1549af54933b00a8762", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "92e2d13089ae4cbb9578804e", + "revision": "47a2793fce8c4ae5bb47df53", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1678154662168/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678154662168, @@ -75943,16 +75943,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "18ffba16808a4e9dba3f205c", + "revision": "574d3a002b7c4ccdb2e1eb83", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1678154662168", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -75982,29 +75982,29 @@ "history_id": 1678154662168, "description": "Compra de 1594392 IVIP por 223 BRL" }, - "revision": "f59b73d4f98e498196229ed3", + "revision": "11ef74f50d6148fa9add3296", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "2f1535e7b93f452c900d0dd6", + "revision": "f0e33b6ed97b47a08a785f5d", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -76040,27 +76040,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f11140127e064c82b6f96471", + "revision": "37a07c7204484688be33524f", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1677860043639/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 223,00 para a carteira iVip 1105.2091.7322.8272-00", - "revision": "ef9cbc89c8494618ab2bbb1e", + "revision": "d143c365ae7e4209a92ada9c", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547247302/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1680547247302, @@ -76074,16 +76074,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "11204d4fd3b3423ea41849b7", + "revision": "c81f597aee6e454393ee2619", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547247302", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -76113,29 +76113,29 @@ "history_id": 1680547247302, "description": "Compra de 2.760.078,00 IVIP por 500,00 BRL" }, - "revision": "764e098a4d954b18a2dedac4", + "revision": "271a98624d5b45908e2adb75", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "6e246a050a5749719bfd815c", + "revision": "4307fc46ec9f408bbd94f814", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -76171,27 +76171,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "76a882e40a524690a94aeb75", + "revision": "892e1c91cf5f4203aaed490d", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007108709/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 52,00 para a carteira iVip 1105.2091.7322.8272-00", - "revision": "73610606979a4cecbc2371d5", + "revision": "7d239bc0bc4e469bbb67c094", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007784160/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -76207,16 +76207,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "7d6aad3b3e654eb884304248", + "revision": "5bf92066fa4b4b90aff2a43c", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007784160", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -76246,40 +76246,40 @@ "currency_id": "BRL", "history_id": 1684007784160 }, - "revision": "eb142f72ff004e70b0b0d6ba", + "revision": "88b7117aa05947db89919ea4", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1684007784160/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 12 no valor de 51,67 BRL referente ao contrato 1680547112243", - "revision": "ee41c47bb52544be865548ba", + "revision": "c3551a9addda4c51948e64b5", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "bda7116b023f480f99abb6f9", + "revision": "38a60f62be004473a97d1510", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -76315,27 +76315,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a249489ea1314650aeb0f12f", + "revision": "2aed2e59b5f04bf1b7eea847", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685634389886/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 52,00 para a carteira iVip 1105.2091.7322.8272-00", - "revision": "80f5e9fe677b4ba98512b105", + "revision": "397ea6cb1a4440e289de69f0", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685657159164/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -76351,16 +76351,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "45542c0a4cc34144a12eaa2c", + "revision": "1817a4418c86456aaff3930f", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685657159164", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -76390,27 +76390,27 @@ "currency_id": "BRL", "history_id": 1685657159164 }, - "revision": "b069e0fb13ba4f88a4b438f3", + "revision": "3555a9adb2394c48890c9fc4", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1685657159164/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 12 no valor de 51,67 BRL referente ao contrato 1680547112243", - "revision": "be01438e580c47c7912fea1a", + "revision": "05ffdee20e824567ba6b86a2", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344955, + "modified": 1701809344955 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686939269544/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -76426,16 +76426,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "bd7080d7a5f54cc0bc31a080", + "revision": "e7271f7b39844621b300ca2c", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686939269544", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -76465,64 +76465,64 @@ "currency_id": "IVIP", "history_id": 1686939269544 }, - "revision": "1c3e301011f747ddb3b04aa0", + "revision": "033d6557db94488081c2a75a", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686939269544/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de faturas no valor de 2.300.063,00 IVIP referente ao contrato 1680547112243", - "revision": "8b39d0db089742c2af0bb895", + "revision": "059f6605d6bd4d17b02e85cc", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "738a1cb675304d4ca524242b", + "revision": "17e222b23285440ebe277698", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "30c73bbcccfd41869b67442d", + "revision": "af6e18553ac04983999ae0e5", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "2239a6a6d146424baa0f69a9", + "revision": "67012022bf93479d96626713", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -76549,40 +76549,40 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "1bd3475990464288b61d5206", + "revision": "abd4b68ffdb54560bd6f0bfa", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1680547112243/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "053a0bf63935477c99b1a71a", + "revision": "9309375c2c01408bb05b66d3", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "fd52fb9577cf4608bdc0de31", + "revision": "5f7b988e603e4c21887f03d1", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -76618,53 +76618,53 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "f0e3b26ece7e4cb4875a72c3", + "revision": "2cbb733d445041568b5fc2bf", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history/1686940226040/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 2.054.407,00 IVIP para a carteira 0x660cf406B5942C1cfAb19D31EAe648D68fAb56bF", - "revision": "ce26ed4d805d4f81abc1f7ae", + "revision": "3fdd4872dfff475aba5234f4", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "0786188b54f04a8b98e410b8", + "revision": "6be2580c24ef4ce4b9bf15e5", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "a93a610433694443a056d139", + "revision": "472741177f4f4502bd782fc6", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680547112243, "type": "emprestimo", @@ -76680,64 +76680,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "5b50ab4a91c4490cb17fb2f3", + "revision": "0c2382137fff4fec91deb6b7", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "beba73cc32c44433bbfaecb7", + "revision": "d6822f84b1e54ab9a5592116", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305/1680547112243/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "553764fd53884ec58dfcd541", + "revision": "92e9da38772a4998842b038e", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202305", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "935cf1f7258f402ea91845a2", + "revision": "0fa58ab29a9d42f2afabfe7b", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "64445c37b3ee481786f667fa", + "revision": "d118f872d642413f8f1be164", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680547112243, "type": "emprestimo", @@ -76753,64 +76753,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "7800c5ad5e6548849fc4ee31", + "revision": "eb10d6515bd041b38c9e0538", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "58ad9a63d8e04848a67e728d", + "revision": "a0cb2ecc10ac4969bfb6cc6f", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306/1680547112243/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "f17a0e4e22c649d999e20239", + "revision": "571ff8c9c9cb444a867a5210", "revision_nr": 1, - "created": 1701465820559, - "modified": 1701465820559 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202306", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "dc022531c45548198d812814", + "revision": "f71930b769e6462792b745b7", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "1bed38f481404dc4bdb8fa87", + "revision": "d5f61114fdc84d2592e5ed99", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680547112243, "type": "emprestimo", @@ -76826,64 +76826,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "f9a0c73b4c104b219cc8472f", + "revision": "48b3a01ef7234ec389ae40f8", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "a930a0a7d37b49b498fdf8fb", + "revision": "e9b5f2a573d940e1af625476", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307/1680547112243/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "d556e069fba94f498bfd7ebb", + "revision": "98d6cc9514684d848b8c57cb", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202307", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "97ca44721351466fb832fc75", + "revision": "8912b24c520a4a1a9a7b7f23", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "cae7069ce3da4c508d035f9a", + "revision": "a3958c45e1d94297a160eef2", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680547112243, "type": "emprestimo", @@ -76899,64 +76899,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "bc22ab6b74984ea8a9667907", + "revision": "41c90a018b554a6c84e3e213", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "a17857093dd74e59863658a4", + "revision": "71fc2e7312974d508b2c3796", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308/1680547112243/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "ee8923f220ce4172b881f40a", + "revision": "c2025856fc8246918cfdb329", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202308", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "f8f7b312cc4849c7a1c82b2b", + "revision": "50570a15f7244e26925cc04b", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "284f8487499541e585d7c19f", + "revision": "43aced83c4ec4955afea97dc", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680547112243, "type": "emprestimo", @@ -76972,64 +76972,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "d19be388e0b2402e8a55f43e", + "revision": "a51325decc534ac48459eaf6", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "be9db1d0e1764d8783ca54f2", + "revision": "1f1734a3f7174340b51e2899", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309/1680547112243/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "d05ad042a2084f6b8e6d85b8", + "revision": "72787477b6a04abfa96816d6", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202309", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4842aae2a7fe4b029ae23e64", + "revision": "2d5bba6669604aa7800d3109", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "1f12b6cdb79a4fb09aef2d47", + "revision": "14f8189c705345bda1b565a5", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680547112243, "type": "emprestimo", @@ -77045,64 +77045,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "fa785df6ebe54708a4dcfe0f", + "revision": "0a0b43cbb7be4551abfd4478", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "8413466f6f524230bf89bf29", + "revision": "ccdbd139dd6d4aa3b461aeba", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310/1680547112243/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "5df9bc3915214ec3a057c021", + "revision": "c84b6aa0fd9b499b85901619", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202310", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8d3464c72a0848d6b110c9c1", + "revision": "91a5fb1c177849f5b81b13b0", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "55377f11b2b4463a9593dea9", + "revision": "35f0caa160db47b5a0f68f6d", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680547112243, "type": "emprestimo", @@ -77118,64 +77118,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "92d2f6f481474b15a5184fd4", + "revision": "e2ed9622a91d4de0b903ed64", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "ebac1d2a509644b083d61ed7", + "revision": "28d49683ced04eddbf1bd280", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311/1680547112243/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "afc9d99273bc4b6cb16421a7", + "revision": "caa4af7768464d26b22b3fa3", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202311", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "79c3f05c6ee04b9bba588af3", + "revision": "bf800f3d886d47d0955554e1", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "36a6209e69b44a068acc7e4e", + "revision": "9ae4e115d0724fdca195372d", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680547112243, "type": "emprestimo", @@ -77191,64 +77191,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "124d83d0da014a6e91275671", + "revision": "fecbbb34055f427ab3a9f7ca", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "4808077959a84b78923ff5d1", + "revision": "be678f232c27453ea198833f", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312/1680547112243/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "dbd63ece17ae4d90951b71a1", + "revision": "4caa1aabdec84c47861b862c", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202312", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "cc9673b2fa5f444ea02d8c3b", + "revision": "dd7cb3ebf8074f7e9bfb7d02", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "5b9e30d050f84a40acc84f21", + "revision": "f14c36ae35d140a5977cac31", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680547112243, "type": "emprestimo", @@ -77264,64 +77264,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "788cd246e0674bd3844748a0", + "revision": "7d45de6d95aa463d925f2342", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "fd4961bb1f3a44dba9fe5ab1", + "revision": "017ff424337048d892912083", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401/1680547112243/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "639ba885b730481d9d1db0d2", + "revision": "7b15c670a01b43b9a44d9d1c", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202401", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "71d205837ecb4996b6795dfd", + "revision": "bfc680abbe1f4a14b3881702", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "e07088ba6f3a4d3ca0747be7", + "revision": "96777cf53ee14485aa28676f", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680547112243, "type": "emprestimo", @@ -77337,64 +77337,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "f99fbc38249041d0a09115eb", + "revision": "f00df1f6355143ba91ebbbf4", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "92995669f4894614b0a94a02", + "revision": "1e8f3f309e894de4862a21ff", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402/1680547112243/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "dc8b0ef0a9f44e8aa599681a", + "revision": "dda1df57f5414881add062ba", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202402", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c04256cceafc4ef79c999bdb", + "revision": "3cdc839a16ff42198ead54d6", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "527bb70172b14baab64e78e8", + "revision": "9edfd1fe1a25452c8462a9be", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680547112243, "type": "emprestimo", @@ -77410,64 +77410,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "a11d796ff92d43909424ad8b", + "revision": "bc085e0bb5314f9f9d7ac4fc", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "7a09a205686d448f97f7115d", + "revision": "e422d58ad1974e069bf9b983", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403/1680547112243/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "56dffdf575a3473eb7942b8f", + "revision": "82f52b92fbe04bb38c549345", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202403", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5c7d55e8598c42409e6b9806", + "revision": "1678da6f8e2942ef84b44781", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344956, + "modified": 1701809344956 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "315aa526973046b8bb46edbf", + "revision": "2feff9d54a69480f9517743a", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1680547112243, "type": "emprestimo", @@ -77483,60 +77483,60 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "1edd02b236a348d398801330", + "revision": "ae7fb3ab26ad4c3ebe7aab97", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "dc722b0849bd4fa289b4cf4c", + "revision": "815d5f6407cb4b0095bbedda", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404/1680547112243/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "edef2aca5b9e4d84af9e9df3", + "revision": "c9e4ed0a42f0428a9c88557f", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices/202404", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "38eeec147b624245be3f2454", + "revision": "bea75aedf5794c9da117658f", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a9689d7110754c0eabf45b94", + "revision": "75659672a59d4cc392e9ac29", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 1000, "limitUsed": 0, @@ -77549,86 +77549,86 @@ "value": 1679261067910 } }, - "revision": "aa67ff6cc6554f5c8c5d1c1e", + "revision": "b8b01174378145e8bc98626b", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/110520917322827200", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677859170230, "dateValidity": 1678919633238, "totalValue": 0.13, "currencyType": "USD" }, - "revision": "b62baba9ea4840d5b93bcd53", + "revision": "97ffbcc202b94977b5fb8791", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, - "revision": "64a3208dd17b40c4a1eedd8d", + "revision": "3832eeac88404493abdb6ede", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "0.00000000", "symbol": "IVIP", "value": 0 }, - "revision": "d1c0dac24cbc4404874f96c0", + "revision": "1d5e50fd2a2a49398820ce12", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "fe53074fece54192b9363f6e", + "revision": "f154721ee0b64e0680dd0278", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "cfb93150cb6c49398ce7e92e", + "revision": "f334a24987fc411480b767c1", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -77654,40 +77654,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "1af67b70856d41ad856500e6", + "revision": "2571b7f4d93449b08b851cf2", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156066045/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "f2bc30ddd7544d24857e8935", + "revision": "c5a541d7eb364e75a583c606", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "ed268d0caea84a75af3340c0", + "revision": "f436e08a98464f8580ca31fd", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -77713,40 +77713,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "d04cb670a89f4750912ad271", + "revision": "3c76cc986e5941e1806f1210", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684156180281/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "1e7cec5a837545bf99296af9", + "revision": "79dcf09ab91d41648e449560", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "7aa30c252e574f9ab6c20911", + "revision": "3bc36ba10b244a1795d47b85", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -77782,27 +77782,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9e7c99bac31b4813817df11c", + "revision": "d175e8e5fc1b47648e885610", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684157124109/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "46490e14c95c44929ae3dc2e", + "revision": "637a7fbbd66649df8ba7a2d2", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684667280508/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684667280508, @@ -77816,16 +77816,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b6f32291f08f41718f7b7e60", + "revision": "6c433d53fb684eac866ee281", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1684667280508", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -77855,29 +77855,29 @@ "history_id": 1684667280508, "description": "Compra de 487.073,00 IVIP por 100,00 BRL" }, - "revision": "6682b9e897524dfdafb3760c", + "revision": "1458748703ce4c4cae647b8d", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "3d136f1d4eee484cb223f02f", + "revision": "4b3b57e160c6488f98eccea2", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -77913,40 +77913,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "0551dd211df04e8ea12d7d82", + "revision": "40efb9c2ac0e47ab84c85576", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685125796189/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 120,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "ec682a20757a4ee8816e8513", + "revision": "4611adec536543edac561a24", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "a642363cc653423b8f731d79", + "revision": "6016f0646b784520b40b4c95", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -77982,27 +77982,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b5a2570fbd9d4d82a3da5a68", + "revision": "129ac28971c247a9a5bbb85e", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685203490781/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.410,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "d8be439d84464a49a6fd10b0", + "revision": "48b814b2db9d45bdb6d64c19", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685730135668/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685730135668, @@ -78016,16 +78016,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e49f59f7d7e34a8d8d94bc17", + "revision": "75c5d14b39874218a8569b21", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1685730135668", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -78055,29 +78055,29 @@ "history_id": 1685730135668, "description": "Compra de 5.206.344,00 IVIP por 1.530,00 BRL" }, - "revision": "f69110e6fbce42e4ad15f3fc", + "revision": "93975b4dceb246f48e672895", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "76a1b02a94d14de2a05d9165", + "revision": "7d0984d436434cabad19d4ab", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -78113,27 +78113,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d68cfe71d6aa4db28bb3b437", + "revision": "fa1a8c8b9cae49e0a817083e", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686621899168/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "f892d76111dc4587ad4efe91", + "revision": "a653fd72db7e4a98b00ea8c1", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344957, + "modified": 1701809344957 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686792689847/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1686792689847, @@ -78147,16 +78147,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "7a07861395124c2cbffd5f11", + "revision": "ba4fa005cb944f6bb8536274", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1686792689847", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -78186,16 +78186,16 @@ "history_id": 1686792689847, "description": "Compra de 637.246,00 IVIP por 100,00 BRL" }, - "revision": "11bffacadd844d8aa6d24f06", + "revision": "9954ace40d214660b6f0fc42", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1688230681708/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688230681708, @@ -78209,16 +78209,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "1d2cc7c86ab34c80bbb02697", + "revision": "f041830dfe374abf85bbae55", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1688230681708", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -78246,27 +78246,27 @@ "currency_id": "IVIP", "history_id": 1688230681708 }, - "revision": "0b72b33cedad403289d1eb37", + "revision": "3da888644e064bacbd293c60", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1688230681708/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 5.832.008,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/1/2025", - "revision": "4507a79888f242d2b48c24e9", + "revision": "b637f428e3c049f0b335b7f5", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690233382656, "net_received_amount": 0, @@ -78278,27 +78278,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "90816caa2cee49e6a1f294c9", + "revision": "947141e6738042e0803a93b2", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/111597444051012800/history/1690233382656", - "revision": "136b13f0c8c54ac8a3a970ac", + "revision": "48549fe74e4e49099f39e03b", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -78336,63 +78336,63 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "ff9d0dc153b246a195b980fa", + "revision": "aa9ea2d3e4ac4e5496ba8010", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history/1690233382656/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 498.655,00 IVIP para a carteira 0x31608012D8205A2BE2AaDBE2c528d75de71a36E8", - "revision": "729abaab9d6b4ced80a14052", + "revision": "6bbd54eea3b44b769ea34de6", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c7f0dad44b6940cda539c7fc", + "revision": "dd41e7f387fb4447bfc2586e", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "27715f48840e4edb91a5b4e4", + "revision": "706b59d19fa74b5b8b92beb9", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "43321d5d591e499387139b9d", + "revision": "dae4b9c5a7bf43cc96e22f65", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/111597444051012800", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684155865709, "dateValidity": 1684155865709, @@ -78400,131 +78400,131 @@ "currencyType": "USD", "balancesModificacao": 1691060735628 }, - "revision": "09b733e557404ca99cb1302b", + "revision": "f2a535e21cb5405cbf3b61c4", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112180841461099860/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b18fb094c09b4e3f913bd53e", + "revision": "173ef9b6f32a47e8a9aa0ec8", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112180841461099860/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c5b32306ef644dd4995b798c", + "revision": "9500b343827f4937ace3ee6a", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112180841461099860", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1689619740886, "dateValidity": 1689619740886, "totalValue": 0, "currencyType": "USD" }, - "revision": "957ba7e1b6f6454c84f7dc0a", + "revision": "4331a294380e4025b30c619f", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112268931101963340/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9229c3dc45e04c52b8574c1b", + "revision": "d8068a1077c84e4895d02337", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112268931101963340/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "db0c92fe9e3f4be78911346a", + "revision": "ce1285f1b1d34116a8ca1330", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112268931101963340", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677432431553, "dateValidity": 1677432431553, "totalValue": 0, "currencyType": "USD" }, - "revision": "cf92b7531583425b96e9d1f7", + "revision": "851c6d6efd694f48978496c9", "revision_nr": 1, - "created": 1701465820560, - "modified": 1701465820560 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "5721757.00000000", "symbol": "IVIP", "value": 612.41 }, - "revision": "b4d65613c734454b89a7b43f", + "revision": "be1aa99e6a2e425b9d86c405", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7d4e3fe1bbf84b129c4a01e0", + "revision": "b9505c4f4253468997d10ef8", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "2d234f3d568d4f2596c25122", + "revision": "470ec7585fad4d0d80a90249", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -78560,27 +78560,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "13efb2ab269e46a4bff8bda3", + "revision": "46aa6c0ae5214ea29241ff81", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1677943939458/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 1127.2038.0478.0658-70", - "revision": "3b3c32e295344281ae463a47", + "revision": "bd87c03de4a145ba9f46668c", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1678154526038/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678154526038, @@ -78594,16 +78594,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "ff5d24c3090b4eb7ac97e993", + "revision": "0347e4b68f8a42ae8d51d888", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1678154526038", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -78633,29 +78633,29 @@ "history_id": 1678154526038, "description": "Compra de 11445515 IVIP por 1600 BRL" }, - "revision": "817e7f64a1b84e19b8a87b05", + "revision": "a1ebe43bef5947248f6ddecf", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "acb44e76a7624b429020adf1", + "revision": "fa273adb8a8c4c5cb7d2e279", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -78681,27 +78681,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "06c246d2d865444c87add17d", + "revision": "a3ed93a673694029921d4adf", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1689270623353/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1.766.725,00 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", - "revision": "7bf26928c91b4c499e79ca2f", + "revision": "b666edf931904641bcbeb690", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690310464254, "net_received_amount": 0, @@ -78713,27 +78713,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "5be89cc408344067a8eb05bf", + "revision": "ae6736096b75476b81483988", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1690310464254", - "revision": "3d5c0ad793b744c3b6eea075", + "revision": "f28a23b2cb5442ab9f3f55e6", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -78771,42 +78771,42 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "b743fa2088794d959017c6c6", + "revision": "2cc9795b7c164acd8d481772", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1690310464254/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1.000,00 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", - "revision": "82ddc91bbade41e4b02462f3", + "revision": "15735225d64e4c778b9ebbc0", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344958, + "modified": 1701809344958 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 171682.74 }, - "revision": "30f20776985e42ceb29c9a8d", + "revision": "181efe0f279f4820a7edb1ea", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695843073185, "net_received_amount": 0, @@ -78817,38 +78817,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "03080d3b28d346a9b52ee412", + "revision": "08f4b968f519488681b866e4", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1695843073185", - "revision": "0a30ad0aacb9400c8b0f7ac3", + "revision": "222eb59e277c4f2596c76fe0", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "67349db12c8748b9be9233bb", + "revision": "aafbb0e26b4a49e1b92e07fa", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -78883,42 +78883,42 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "11c4828b9a984413a7075543", + "revision": "c3373d85c4764738ab166920", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843073185/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 5.551.075,26 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", - "revision": "1984f1a8d173421ea0eb077b", + "revision": "6f74152da73248b58de10335", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 171682.74 }, - "revision": "0faa2fa9d23141b69cc6b647", + "revision": "535dedc457644b5aa49544af", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695843125867, "net_received_amount": 0, @@ -78929,38 +78929,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "0926feed7f834b2ba1485d83", + "revision": "a30d5c4722ce484688381df5", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1695843125867", - "revision": "8a4a21b1afea4f6596205c6d", + "revision": "0e013900635043848a605d11", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "fddc683bc2e041f3905efe38", + "revision": "1f467d96edfd4d8295f95ac9", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -78999,63 +78999,63 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "0dc9957b702d4eacb14b168a", + "revision": "98b8ec3d7b1f4e08996be7fc", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history/1695843125867/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 5.551.075,26 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", - "revision": "188e6e5efdae48ff857562ca", + "revision": "2a66690dd5d143239653cb95", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5cd3622cc06d48728439a9af", + "revision": "beb1e6d5582f4a62b09caa08", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "71e4741823f94991be53f1a9", + "revision": "80fb7eacef0842d18baae6af", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "942b6247f19d4f98bb97555b", + "revision": "e868ad18142646dca9f61fea", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/112720380478065870", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677943677925, "dateValidity": 1678919503018, @@ -79066,390 +79066,390 @@ "value": 1697425200000 } }, - "revision": "a8c06bdcc8fa4f4d844e66bd", + "revision": "4cd5806366d84c17a6a387b6", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113397082035573860/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "59b4548163814b6bbec0401f", + "revision": "d1c8fb326f204b43b4c28659", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113397082035573860/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a9937920f9244c40910bc865", + "revision": "4f2a8fcdc0ff4b76aee5ef73", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113397082035573860/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9bd5bb06f465491aa5b60281", + "revision": "5cd277ec124c4c1a9562921c", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113397082035573860/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "948a40ee1c1c46f38406b502", + "revision": "d54ac4e2822d4f928c3dc3fc", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113397082035573860", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684093885315, "dateValidity": 1684093885315, "totalValue": 0, "currencyType": "USD" }, - "revision": "384d1ad4e41940dba55973b3", + "revision": "e6754f452b254da88343c156", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "539acb9a9f9343d3a61a2a11", + "revision": "2ced71d3787d427990563dfe", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BNB", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "BNB", "value": 329390, "available": "1000.00000000" }, - "revision": "96a8fee6a8f6490f973b4ce3", + "revision": "d5d5b4c94761402e8928a8e3", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BTC", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "BTC", "value": 24969.54, "available": "1.00000000" }, - "revision": "be3899447e64414989c19fd5", + "revision": "253be85c862a4642b54187ac", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/BUSD", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "BUSD", "value": 10000, "available": "10000.00000000" }, - "revision": "2ead88808ec44373ad1176a7", + "revision": "6416deaeff054eb3a9c81a3b", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/ETH", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "ETH", "value": 168116, "available": "100.00000000" }, - "revision": "759630b8fac64c7ea65d4745", + "revision": "f7a8ac28546b44988dc56a90", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/LTC", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "LTC", "value": 39525, "available": "500.00000000" }, - "revision": "9eae878140074859a4ae4406", + "revision": "7b1fec68018844d5b5e706d6", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/TRX", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "TRX", "value": 32965, "available": "500000.00000000" }, - "revision": "d0b9d3977f7e44be92440a81", + "revision": "bd6f7a9bb7d3476092b4ab08", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/USDT", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "USDT", "value": 10020, "available": "10000.00000000" }, - "revision": "cf3d50943157433ab75139ea", + "revision": "b8a9ca2d5c3b408689fc6320", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances/XRP", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "XRP", "value": 18315, "available": "50000.00000000" }, - "revision": "2318a4d3ee0b4eff81115ca5", + "revision": "e12f6d84d5b94efe9a961bbd", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5d435b1327494f4888b97d1f", + "revision": "bb9beebc01714451901d97de", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113456931219695800", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678997585705, "dateValidity": 1679015574916, "totalValue": 633300.54, "currencyType": "USD" }, - "revision": "1ef62f8d85bc4bdd83c9c16b", + "revision": "282221995b8e4ccbabf0138b", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113679410552544270/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5dbf186ed74b4897abfd73f4", + "revision": "d39b55a62ff7432784a68eaf", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113679410552544270/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e119c4e93e1d495bb7dd2cd5", + "revision": "da8952190a5142858d63b589", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113679410552544270", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677932902892, "dateValidity": 1678217961007, "totalValue": 0, "currencyType": "USD" }, - "revision": "4f22b761838446e8a97d28c9", + "revision": "d24f3184c61f4a74b24c56c1", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113719047968885220/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "278524466bc840c281041894", + "revision": "6144e495c20f47aba2bffbdd", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113719047968885220/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "492b3ab852084d6cb706e57e", + "revision": "eefb94bce8fc45288562a23d", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/113719047968885220", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678200529926, "dateValidity": 1678214929961, "totalValue": 0, "currencyType": "USD" }, - "revision": "debbedbd18fc414fab072e1a", + "revision": "910242f9c26640b681deb157", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/114964316693074270/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "928d10cc622c4ada86cd6a34", + "revision": "e9b64ddc1626432680a5af41", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/114964316693074270/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a79d17beaefd48c5aaed75b8", + "revision": "bfb1a705b54542a7bc3028e9", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/114964316693074270", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1680104445044, "dateValidity": 1680104445044, "totalValue": 0, "currencyType": "USD" }, - "revision": "c6120cab59e54c30ab7a3888", + "revision": "fc4f1553274c4028bae2cb22", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "1000000.88000000", "symbol": "IVIP", "value": 106.42 }, - "revision": "53753c63a7574725818d1199", + "revision": "ffa7da270f394fff957dc7fe", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b4f56d7d7574494087bee7c0", + "revision": "6dc1febe929549778bd57d41", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "70d134d8e2db40fabe8970cd", + "revision": "eca79810916c46c68e4b532b", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -79485,27 +79485,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "6e0d66c023ff4e2ea7546e79", + "revision": "b1bc5bde8af2433d8e148166", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689207673127/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1154.3638.5305.7469-60", - "revision": "4d3a7f8f4d1245d9afa75291", + "revision": "1e48ab9b2570403db1aa75d8", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689260591470/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689260591470, @@ -79519,16 +79519,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "158fc8b596344dcca39f37ec", + "revision": "d2359150d64840da9bc3f469", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689260591470", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -79558,16 +79558,16 @@ "history_id": 1689260591470, "description": "Compra de 593.666,00 IVIP por 1.500,00 BRL" }, - "revision": "3d66df9ec6184c85b0d959e2", + "revision": "46da92493a2445148a8b1830", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -79575,16 +79575,16 @@ "value": 1692464251151 } }, - "revision": "3d2b9ab17ed64d7e971a2194", + "revision": "bb299ffab35a4a30bd5e519f", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1689872251156, "net_received_amount": 0, @@ -79596,27 +79596,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "3ed4ffffee5d420c9c39a262", + "revision": "c30f00eb096c4df58daf8e4a", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/extract/115436385305746960/order/1689872251151", - "revision": "7fd77ca6e7b04da1a685b868", + "revision": "22885ff55e8843d8ae7c8965", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -79640,27 +79640,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "a3c7d746675d45dfab125a4d", + "revision": "dae760a65ff64e01bfaeb49e", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1689872251151/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 650,00 para a carteira iVip 1154.3638.5305.7469-60", - "revision": "78716c7196ef416facbe0d82", + "revision": "27ba7c1df1644dff89fc9a61", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344959, + "modified": 1701809344959 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -79668,16 +79668,16 @@ "value": 1692903106238 } }, - "revision": "d2251e9a91a147e480e18b39", + "revision": "139b5eb33ebc40d6965ae618", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690311106238, "net_received_amount": 0, @@ -79689,27 +79689,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "44988300e7a5417ca46c9215", + "revision": "1c9da289476144ad8befa13b", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1690311106238", - "revision": "775e4545ba5a488aa8308101", + "revision": "863426e36ced4d9e8f8e1d88", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -79743,27 +79743,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "13381c09b6bf431d85bc898f", + "revision": "9190cb9e634b41c384e5cc6d", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311106238/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 650,00 para a carteira iVip 1154.3638.5305.7469-60", - "revision": "90d55a9b9bce4659bcbb9e3c", + "revision": "578ed9474ff24349a393cbc5", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311787862/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1690311787862, @@ -79777,16 +79777,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "189a1153996e4a8698133e61", + "revision": "3921cdc5786c49e1be9ef1b8", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1690311787862", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -79816,16 +79816,16 @@ "history_id": 1690311787862, "description": "Compra de 526.109,00 IVIP por 650,00 BRL" }, - "revision": "a6f9cdc30a4045de9ee3cc0a", + "revision": "4ecdf1fdc9424eb5b6ef07a7", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691353182696, "net_received_amount": 0, @@ -79837,27 +79837,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a928a1f7bafb4ff69cf17f08", + "revision": "a40877d1f6a54c97a9540f8c", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691353182696", - "revision": "641ab7f714c44b57acc56b78", + "revision": "5e3ac4838c8147e4acc069a3", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -79885,27 +79885,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ff731b755cc9429c94c2262a", + "revision": "123471ffba8e4e109269ee28", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691353182696/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.119.775,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/6/2023", - "revision": "80759109ff274702a1d33f1f", + "revision": "4f2a93fde4134a65aaa04560", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -79913,16 +79913,16 @@ "value": 1694348197423 } }, - "revision": "eb94ed453ef74c9aabe6fc0f", + "revision": "54eecb6859b0481ab72edb90", "revision_nr": 1, - "created": 1701465820561, - "modified": 1701465820561 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691756197423, "net_received_amount": 0, @@ -79934,27 +79934,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "9b24217a9e6144d790f90b7a", + "revision": "fe8f18a501184acb9986ed49", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691756197423", - "revision": "bc930990a1aa41be9b4d83a9", + "revision": "fad807076c56458e9959a566", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -79988,27 +79988,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "95056cef02554e8ebf7ae486", + "revision": "502377fab90542a9a7f5053a", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691756197423/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 500,00 para a carteira iVip 1154.3638.5305.7469-60", - "revision": "3d31a0b09add40ea981351b3", + "revision": "8135fd8e255c436a8c2bb441", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691761354889/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691761354889, "net_received_amount": 0, @@ -80020,27 +80020,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "5ff5ed8f21f04ac5a5b5a039", + "revision": "4e8958279a8c4d6fb33b2cc9", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691761354889/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691761354889", - "revision": "83c369e8e06d44b0aaafc64f", + "revision": "e1a56fe1ff3c4b838ee927bd", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1691761354889", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -80069,16 +80069,16 @@ "description": "Compra de 917.399,00 IVIP por 500,00 BRL", "status_detail": "accredited" }, - "revision": "e0b07e7afc114e83866b6037", + "revision": "ac75f846f8164b60a65831f8", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694032195852, "net_received_amount": 0, @@ -80090,27 +80090,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "459ccec9f88d481c920df462", + "revision": "13113423679a4e87b73052b5", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1694032195852", - "revision": "bb8e6675860c4abb861efcc2", + "revision": "30d6529bd545488193930726", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -80138,27 +80138,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "e6ed243352c04987889c6614", + "revision": "ec9f5b5c2c834285849196c5", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694032195852/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 1.119.775,00 IVIP com um rendimento de +22.395,5 IVIP (2,00%) - Y12XDT27", - "revision": "db1932bcd61f40e98702daba", + "revision": "cfe86b5bc124418484397190", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694041733454, "net_received_amount": 0, @@ -80170,27 +80170,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "2d41d1bf281e4e24a99253e4", + "revision": "08bc0f57c3c141a2918373cc", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1694041733454", - "revision": "e82aacc01686467c9203407b", + "revision": "0c674ce56fee4ca0924e0a94", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -80218,27 +80218,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ad707ecffe144eadb7c1b96c", + "revision": "92e2bf8e46954bdf8ba136fc", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1694041733454/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 2.059.569,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/10/2023 - Y12XDT27", - "revision": "c7499cbec3784b07a1444bba", + "revision": "c922d6dbccc6409bada71af0", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696633733454", "net_received_amount": 0, @@ -80250,27 +80250,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "521e25192aab459697ac7808", + "revision": "55bf3270034b47718f1f2ba6", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1696633733454", - "revision": "f4a48e5f85114a9082a64948", + "revision": "0ae302487aa5475a88bb96b8", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -80299,27 +80299,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "8af2ce1093894573b28ebc04", + "revision": "45c98cee3feb4cd78f9447df", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696633733454/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 2.059.569,00 IVIP com um rendimento de +41.191,38 IVIP (2,00%) - Y12XDT27", - "revision": "d1de576ffe9e4601aa73d4fe", + "revision": "03d1ac00173a4a1d9416fd73", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344960, + "modified": 1701809344960 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1696668184975", "net_received_amount": 0, @@ -80331,27 +80331,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b54539a82613473fa65e23dd", + "revision": "4cfa4a752de14dff93eccbe8", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1696668184975", - "revision": "242db63cd2b642a797f2fd79", + "revision": "2ab8fc58d2f142d9b3ef05d5", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -80380,27 +80380,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "a23349ef9f23486c8200d7d9", + "revision": "ad71ba19554a4f5b8f64f160", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1696668184975/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.100.760,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 07/11/2023 - Y12XDT27", - "revision": "d216abd2a7444fcea827c66c", + "revision": "e8b607244e404abaaa58f147", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -80408,16 +80408,16 @@ "value": 1699795525577 } }, - "revision": "e56cb80d253141369850931d", + "revision": "f471d9655ada46609d6a2813", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1697203525578", "net_received_amount": 0, @@ -80429,27 +80429,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a512d61c01eb4d078e9a1a62", + "revision": "30f0c937a07e46ea90acff06", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1697203525578", - "revision": "40d9e67eacc74b4390a211d8", + "revision": "7b8bba794cba497d86b0f83e", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -80484,27 +80484,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f1c3cfdd087b4c91af1b53f8", + "revision": "c254423829ed485f8544af36", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697203525578/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 1.600,00 BRL para a carteira iVip 1154.3638.5305.7469-60", - "revision": "6b60444fb9cf40e2a981e651", + "revision": "5fe840c524a24edeb2d934e4", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697204057820/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1697204057820", "net_received_amount": 0, @@ -80516,27 +80516,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "2d1f86ec35bd4a93a6d01b2d", + "revision": "bbf9584a9eee4713b4ce7c40", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697204057820/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1697204057820", - "revision": "2db3b50fb6c74195a695a076", + "revision": "2ef9b0b4906b4bfeb6fc3ccc", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history/1697204057820", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -80566,38 +80566,38 @@ "description": "Compra de 2.947.170,00 IVIP por 1.600,00 BRL", "status_detail": "accredited" }, - "revision": "f14d6fc9a737462c88cc5130", + "revision": "83cddac8efc547a1b441620c", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "575faad576b046ce8136db64", + "revision": "691038de9e1b4458b5306b09", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "625f2405928441a6830763c7", + "revision": "d3a49c26780b47689a9c22f9", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0, @@ -80606,16 +80606,16 @@ "value": 1695990240020 } }, - "revision": "6cef98764feb42009075a096", + "revision": "86920c27f1fb4edabc2bd71e", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115436385305746960", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1689197249139, "dateValidity": 1689197249139, @@ -80626,118 +80626,118 @@ "value": 1697166000000 } }, - "revision": "74c3bc2f92c444b48c69a01a", + "revision": "bd8d1e2510bb41df86330b21", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115766338093199020/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8bcab2e6ae90468192831a3d", + "revision": "05cef67f37cf47a4a033ee84", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115766338093199020/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "2ccc100eb9b849c495a161fc", + "revision": "86059946ae7b46baa3a78d3e", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/115766338093199020", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1679078083825, "dateValidity": 1679078083825, "totalValue": 0, "currencyType": "USD" }, - "revision": "746e2484165b43d7b59c247b", + "revision": "08814fb7060f43d38cc8bb49", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "794fc71d319a402080fa25fb", + "revision": "2fae37a98d7b44cea856be9d", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "73763ffd03eb4942b0f52013", + "revision": "bddbcea5069042c4a000b5b3", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "36743092.00000000", "symbol": "IVIP", "value": 7620.42 }, - "revision": "2d862c1d6545476da64fafba", + "revision": "4236f0b1318049478f9badff", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8b1b64cd4bac407b85122046", + "revision": "a5dad1cec3464710a3d0b7ed", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "57649bc957ac42f49c5d4a55", + "revision": "5ff1b4bef5a8435983e297c5", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -80773,27 +80773,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e1f8f0533f254b8d838dc5a4", + "revision": "2dce7581c4534bc4aa087770", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1685463962891/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1162.6149.5252.0901-80", - "revision": "fddb1815199e4038985dfb8f", + "revision": "28d491f4455a413da447c4fc", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1688996128425/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688996128425, @@ -80807,16 +80807,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "872cce86a04140eca8f53146", + "revision": "a35ade51e95244a5a76ffc86", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history/1688996128425", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -80846,27 +80846,27 @@ "history_id": 1688996128425, "description": "Compra de 36.743.092,00 IVIP por 10.000,70 BRL" }, - "revision": "60ddbf9782774f0b80a8c3cd", + "revision": "a6a79bd3cc13477a8f2d0cef", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "314ef8676cd44eb5a569f3b6", + "revision": "8fa89e57c2da4a14b00dac76", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/116261495252090180", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1685463582486, "dateValidity": 1685463582486, @@ -80877,155 +80877,155 @@ "value": 1696215600000 } }, - "revision": "a3c3a947326442bc926785ad", + "revision": "56b17e652f934b0ba62c3b60", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/116696192475580050/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "2c66dc4075de4a6f80385f0a", + "revision": "750247e3a3cc49f6b5c2b9cf", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/116696192475580050/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "730f1053481b486ca67102a8", + "revision": "e32ef68d87de4fc9b57b3c7b", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/116696192475580050/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e2de2689a8f648ecb7110f1f", + "revision": "d48f1ba1df2248c182e20059", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/116696192475580050/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "0de66c59816949788b7de39a", + "revision": "3523885067c44a439d0331dc", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/116696192475580050", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678753662620, "dateValidity": 1678768062657, "totalValue": 0 }, - "revision": "48239a504b0e459fb8bdfb67", + "revision": "19ed1c397d6a412db0de0bf8", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/117188412170673220/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "09a11176c06a41a0b023cd4e", + "revision": "09c3be65750c4689a6f49e46", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/117188412170673220/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e97a4764977248b99b8fbb8b", + "revision": "5f09801b80c5400da4e99dca", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/117188412170673220", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678532146149, "dateValidity": 1678546546189, "totalValue": 0, "currencyType": "USD" }, - "revision": "b8d9759c1b7b4e6088218d8b", + "revision": "891a4b5f91eb49189e11337f", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "0.70000000", "symbol": "IVIP", "value": 0.00037 }, - "revision": "70603056af96486d8a583ca4", + "revision": "7800f3b5cb6943aaa0bb2aaf", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "eabd03a3f0f7402fb895fdf5", + "revision": "189710f3a3fc4320b161502e", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "40f3a7a6b97d43199aa73605", + "revision": "7fe2e0164b4141aea15fc7f1", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -81061,27 +81061,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "4fb3384ffd6a440eb9853fc7", + "revision": "e7a367d79221465fa4a35d11", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1677877705308/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "8f432e221a6446a9821c308f", + "revision": "a741bd4e121f47668ba19ea2", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344961, + "modified": 1701809344961 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1678145189537/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678145189537, @@ -81095,16 +81095,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d13cb1132a94428891db7ac5", + "revision": "d1e3fbb6bda24656b16b04ca", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1678145189537", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -81134,29 +81134,29 @@ "history_id": 1678145189537, "description": "Compra de 1428465 IVIP por 200 BRL" }, - "revision": "6d3a1d25ba5547af8a367e40", + "revision": "e087c5e3333d4a659342458c", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "0a5bc95f31b24df293334fc3", + "revision": "6bde06f63e99403484b34e8e", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -81182,40 +81182,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "a0b8c2b4095e45abb24ba064", + "revision": "0b5dcc7f053846f5870d34dc", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1683395429062/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "307a7dc3511a425084df6db8", + "revision": "aacfc62b4e4a4df19ba61f2e", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "891bbc34fc304d668d1be890", + "revision": "508e914670a946a2ae81435c", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -81251,64 +81251,64 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c9b295c2fd3b4f00835f363f", + "revision": "36a48d389ff6481b9820d8e5", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684179573429/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 350,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "686c32bfe0cb4b8e921cd8fc", + "revision": "215c643bfd65450c91a8b2a6", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 6.00%", "amount": 60 }, - "revision": "e4d60b41da0d4b42a7006fa6", + "revision": "a9a180459f284108bcc1ddec", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "841883035f514c909a72bfb0", + "revision": "ef11b33cf4dc4e74a1a39b47", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "6639028aa2634638a42402da", + "revision": "787498330b4f490c835ae0af", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -81335,27 +81335,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "565c52c4ec894066bdcaaf35", + "revision": "09c8c64638de4dfc9f401c96", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684182120706/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", - "revision": "1c6e5410ff3644c8b7c097b9", + "revision": "84ee2e62845843a4819321bc", "revision_nr": 1, - "created": 1701465820562, - "modified": 1701465820562 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684624218931/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624218931, @@ -81369,16 +81369,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "1e9098a9c06940d6a15aafd4", + "revision": "54b1314970c34b578822a70f", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1684624218931", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -81408,29 +81408,29 @@ "history_id": 1684624218931, "description": "Compra de 6.575.487,00 IVIP por 1.350,00 BRL" }, - "revision": "e60ce71de5b14a9a9bc07559", + "revision": "e5ac4a491fb94754831a6124", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "61e56ad939ba4f31bbcc969f", + "revision": "426c63f9a6924a4690fea10b", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -81456,40 +81456,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "9c8d3ca36faa4733b0cb5ba6", + "revision": "67b1a4568c80453fa0357b83", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685388624157/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 2.982.650,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "e481c4d32e4c4fd6a7b6c696", + "revision": "562ad9f214234ebba266a1c2", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "1bf2a7cce4ac470bbd68dde9", + "revision": "e50a4aecabca4e03ae0f5983", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -81515,27 +81515,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "8ecf14a6e2dc4ccc910716b9", + "revision": "af9c547373d14a71a9d45c9f", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685389940740/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 8.003.952,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "96ce190de1764d7cb9497d78", + "revision": "ff51c732fd904d7b8745f7e7", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685665639073/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685665639073, @@ -81549,16 +81549,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "a5b7ba72b1ba4430ab43d5e8", + "revision": "b0d1b3ab054542728562d672", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685665639073", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -81587,27 +81587,27 @@ "history_id": 1685665639073, "wasDebited": true }, - "revision": "8a919e1fb5184fd09f415223", + "revision": "549a57a1c93c45a7af3bc916", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685665639073/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 3.568.754,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "63849387409b43698980424f", + "revision": "6757f76e9a4c45d4a6629bd7", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685668997292/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685668997292, @@ -81621,16 +81621,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "7fe5bedaaf594a518c25cf9d", + "revision": "ca78cb448dbf4610af72dd42", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685668997292", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -81658,27 +81658,27 @@ "currency_id": "IVIP", "history_id": 1685668997292 }, - "revision": "fba76279575c423c89868f6c", + "revision": "e0c205e520e649bd9f33e85b", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685668997292/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", - "revision": "c38b24ec99a34f21866ff834", + "revision": "60ed6d6ea234452a8d40ad52", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669010794/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685669010794, @@ -81692,16 +81692,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d4f9d61b1fee4513b4a97e97", + "revision": "07b9f4763fed4a20a3b76638", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669010794", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -81729,27 +81729,27 @@ "currency_id": "IVIP", "history_id": 1685669010794 }, - "revision": "ad742fbb102c40b8bd350b55", + "revision": "6d6aaa6e86244c9e8f3eff24", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669010794/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "85181bd14ab14594b6b7d9f6", + "revision": "11ef901f57ac48d9913599c1", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669017906/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685669017906, @@ -81763,16 +81763,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e9c7c8ebc780440d9b98261a", + "revision": "88487b4558ce4071a4b3a211", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669017906", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -81800,40 +81800,40 @@ "currency_id": "IVIP", "history_id": 1685669017906 }, - "revision": "fbdb812b5446476796ea4a2d", + "revision": "2172c344259249b18129c14f", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1685669017906/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "5a1672458d6847e2849feb96", + "revision": "323efbf6e047497cab2f010b", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344962, + "modified": 1701809344962 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "bb2b8a836e8f49f49975d6b7", + "revision": "6e0825331671489a839f5b42", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -81859,40 +81859,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "184dfbd2f548402da8479b2c", + "revision": "9b43c0b61c2e436988e760e9", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686742076839/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 470.112,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "d8bd1aaf022246268db4d57d", + "revision": "7a51c80842c7446a98ac95c0", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "acf2264f005b427dad41fe0b", + "revision": "87e622c0ca8d4e0085d123bd", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -81918,40 +81918,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "49474e9126a549d880f5ddea", + "revision": "3a2733fe15fb42ccb9188999", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831828859/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "1ce987d1f7504402858624d7", + "revision": "6f9846af6fa748ec8d690e28", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "caeeb484493a472f81f6e2b4", + "revision": "7e68f35ef6f4495cb93dbea7", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -81987,27 +81987,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "7bd67f69a09e43cd8325891c", + "revision": "d5d784d20f7b4012b5b431db", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686831937569/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "cf62b3d1a48b4840919f43f7", + "revision": "9642541c4ce94ad79a86aaa0", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838699070/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -82023,16 +82023,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "9c7002a86f4b4e8aae5aa3eb", + "revision": "901c36678cd5405ea42a6bc6", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838699070", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -82062,40 +82062,40 @@ "currency_id": "BRL", "history_id": 1686838699070 }, - "revision": "af74dcd0012c4ce68a8842a3", + "revision": "bfac150c23464dc0aec21566", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838699070/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 2 no valor de 530,00 BRL referente ao contrato 1684182120706", - "revision": "4ba992dfcdfd444ebe3e04da", + "revision": "aa093053c4b745e0a4198bab", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "b9e40ff0cd394065a74b095f", + "revision": "c1668c0e8c4942f987d41a5e", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -82121,27 +82121,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "db3182febfed4b49834a9ba0", + "revision": "0cdd8a9fa5304068ba51ebc5", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1686838872989/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 3.897.629,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "829482940cd541c9a542ff92", + "revision": "b964155edfe84be9985a5984", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688400243137/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688400243137, @@ -82155,16 +82155,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "98facb46fba647d99e173c65", + "revision": "7e19e8926bd14dc5a76c5034", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688400243137", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -82193,40 +82193,40 @@ "history_id": 1688400243137, "wasDebited": true }, - "revision": "12e810d7fd96461d8babaed7", + "revision": "b5159e1244a2447f9ebfa4e6", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688400243137/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 3.568.754,00 IVIP com um rendimento de +71.375,08 IVIP (2,00%)", - "revision": "d977e443884742a7a1759016", + "revision": "860f604fc821407ca3370627", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "525a6239d0624f45a4f4d29b", + "revision": "eb895f0cb37d440585fe56dd", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -82252,40 +82252,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "a1ae014b296146d9a9009c51", + "revision": "6586f2cb5e3b4d9b9bc0db48", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1688424411822/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 4.926.607,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "0e52b74781e34164ae793e81", + "revision": "9ed3c9798f2a44f49c001a8a", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "4d7f3936247a4f06a757687d", + "revision": "a43e7a48c2eb4c2da17efc9f", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -82321,40 +82321,40 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "d3363413bd9e4235aa98f711", + "revision": "b3f7d47265ec47ec84581e95", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689020922030/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1.082.278,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "265d380a60d948feaee2f49d", + "revision": "cb367a7310f1410596fd2bbc", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "e4748c13a491469289d37637", + "revision": "ef401da7f67940b99c55ddce", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -82380,40 +82380,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "f40f4d2101f14d08805f8d9f", + "revision": "9dfd01f70b404277ba3b45c4", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689102393644/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 5.031.032,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", - "revision": "03ae4769c7d84a4fa22a8614", + "revision": "58f7c250cf1345119024f4cf", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "4ddf5e064c844de89d073640", + "revision": "a48b3125392f4cb2afa7f7af", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -82439,40 +82439,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "0f2296568b994c8481bb62d7", + "revision": "0a5e4cd3d4584c8e8e2ba740", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689189282410/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 5.995.148,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "969a3e68abbc41d6979600c7", + "revision": "d2ffd09af83b4295be7a8753", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "57c10a8b6a854a37a6269ce1", + "revision": "f4068e9dcff24f9d93e8340f", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -82498,40 +82498,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "68bf99cb1491425fa43a1dc7", + "revision": "c3a2c60fa3484adf959a277d", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689258056089/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 1.000.000,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "0eb965ac32fc4709bf7f7306", + "revision": "52c49ce2ce334c3280dcabdf", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "e16903785e304bf3a4979626", + "revision": "1fe6ab43769c493895eb5c98", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -82557,40 +82557,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "c5dc8ab9c5eb473392d22fbf", + "revision": "3d37c667255b44c2b0c11feb", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689390236969/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "84c6f73eca654c3b8eebc3eb", + "revision": "b72ab4c37cd14b41be8410bf", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "98eb1774c0ff4998b943637e", + "revision": "f5aec607f8704af18537cbef", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -82616,40 +82616,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "b6dd8e8109b5445e9fef896e", + "revision": "e959315b8cd94e1882f9d1db", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689424277440/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "5f78d6bf80394a99a04ead29", + "revision": "c7203bd63652441ab0e3b0a3", "revision_nr": 1, - "created": 1701465820563, - "modified": 1701465820563 + "created": 1701809344963, + "modified": 1701809344963 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "8f12f67cdebb4d7882c875d2", + "revision": "95dbef3633784da99c2e8aff", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -82685,40 +82685,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d748de5aaaa247a7bd72a31f", + "revision": "037908402db64b3cb2ac610a", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612021512/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "7a1c1a7abe144983813ba2f4", + "revision": "19a54e6eabfa412d95f0d5ca", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "acc356adcf8e4b45bf723fee", + "revision": "99e5bc84945d4548a196d924", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -82744,27 +82744,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "48e4ccdc2bbf4aa9ab90d97f", + "revision": "e614d07b2ca246b4876248fd", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1689612840534/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 2.000.000,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "87871cfeed454f0997bf4f03", + "revision": "1d854abcfd7441b8be69627b", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690326796884/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -82780,16 +82780,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "0fccec855e7e41c4a6c693c8", + "revision": "5a6ce87636f245db88adc9bd", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690326796884", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -82819,27 +82819,27 @@ "currency_id": "BRL", "history_id": 1690326796884 }, - "revision": "6daddfe05dd44628a004023f", + "revision": "591cfce95d2c41d8b8ad2b94", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690326796884/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 2 no valor de 530,00 BRL referente ao contrato 1684182120706", - "revision": "d406baa86b46412b91c2c057", + "revision": "71ddc1ff11f349b2afffba92", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690327152842, "net_received_amount": 0, @@ -82851,27 +82851,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "cd803da2e32f49aabc3333e2", + "revision": "317dcf29caeb4407902d5820", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1690327152842", - "revision": "776faa1b42d641539b8af07d", + "revision": "a001167eba434f46859209fc", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -82905,27 +82905,27 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "db1019ef679246b7b3688fd2", + "revision": "722f268f81f5498993067872", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690327152842/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 6.990.049,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", - "revision": "fd862116acdd48d0a85e6368", + "revision": "6731580ab840484d80b45275", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690371637044, "net_received_amount": 0, @@ -82937,27 +82937,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a2e27fb7bf3f4280bac8b638", + "revision": "f8dfc6f302db4415b069b2bf", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1690371637044", - "revision": "1e3a7fde91fe4d64984f522b", + "revision": "e1c095e1c97a4cbd9adf9d46", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -82995,27 +82995,27 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "ba2f08b8a920467a92d6b1ac", + "revision": "0639aa1ec9ef44b58325a472", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1690371637044/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 3.280.090,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", - "revision": "37bda2f611754d95908a25ed", + "revision": "305ef8b297134ae18fd58962", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694007742356, "net_received_amount": 0, @@ -83027,27 +83027,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a2fa059061d24cdfa43a68fe", + "revision": "2bc57569248748eeaabb462d", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1694007742356", - "revision": "ea618a369e1b4080bbbab7b6", + "revision": "9968f61015ae4c4787742d29", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -83075,27 +83075,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "78b7349066b945a78bb0ea33", + "revision": "70e892bdf873446ab847c426", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1694007742356/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 3.678.031,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/10/2023 - Y12XDT27", - "revision": "d3e5f65756504d499b91e74d", + "revision": "449b5d706a0545e69436396b", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696599770690, "net_received_amount": 0, @@ -83107,27 +83107,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "54a92c2ac82940c8adde62a1", + "revision": "679311345b3f48f68b9cd40e", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1696599770690", - "revision": "488965e4dc3245b5a95f9921", + "revision": "47e351f90aac4f0b87c7598a", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -83156,27 +83156,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ae8ec11bdac241ac84d99bc1", + "revision": "8b292ed6cec649948541b9b8", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599770690/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 3.678.031,00 IVIP com um rendimento de +73.560,62 IVIP (2,00%) - Y12XDT27", - "revision": "96eeada9a6a840ad9d7361d4", + "revision": "fe87679d3e744c1f93603020", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696599812843, "net_received_amount": 0, @@ -83188,27 +83188,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "315326fc904647a7b7c880db", + "revision": "b544c5a21e834fc6a0e58817", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1696599812843", - "revision": "cef10707bce1467ab7c9c4ea", + "revision": "b34e41326f434df1840ec6d7", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -83237,53 +83237,53 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "14d226efedb24ce38005cea0", + "revision": "c873988c4cf44d569da61ddf", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history/1696599812843/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 3.783.519,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", - "revision": "f271e13de3124645a3a97926", + "revision": "20f1e30800ba491ea5f6ff69", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "da463a04bd03408c8a7d55b2", + "revision": "c0a3cf8768dc472684f830b2", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 6.00%", "amount": 60 }, - "revision": "7c619999045249da98747a93", + "revision": "64f3c290ac6d4369b4a68860", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684182120706, "type": "emprestimo", @@ -83299,64 +83299,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "95e4b01fad6b4f14a6314778", + "revision": "8dc4c6ea0c2d4e80a711dc0a", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", - "revision": "1e0a03f433dc4bf99c1518b0", + "revision": "cfc91f21c9cd4c44acbc49f8", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306/1684182120706/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "bf41895707c24f0f8e08842a", + "revision": "bd518974483044a79f6e48f2", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202306", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "0a5dafac07a845a7add45480", + "revision": "57961ae2f63e49b582c3655a", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344964, + "modified": 1701809344964 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 2 parcela(s) 6.00%", "amount": 60 }, - "revision": "4ee34800649743b9af62a8cc", + "revision": "8fd1fd59f06549c2b2ef6057", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684182120706, "type": "emprestimo", @@ -83372,60 +83372,60 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "3d7e30eb49e945978fe9ed8b", + "revision": "5eadd79f96e240439831a581", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", - "revision": "7ce36b05f75a4a619d5f14ed", + "revision": "bd065079d3f644f59f2eb0ce", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307/1684182120706/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "c0182ee7d2824a0da80dc642", + "revision": "8d032ca9df0540b4ae7895f0", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices/202307", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9aed098d5c054f7b82737752", + "revision": "071121fb9db640fdb0bbe2ff", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9c0ca5e928c443f1b99e8518", + "revision": "970c3e3bb45d42b48a702f42", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 1000, "limitUsed": 0, @@ -83438,16 +83438,16 @@ "value": 1683344393183 } }, - "revision": "50d5d60d8ef143d496e4617e", + "revision": "d75cb143ea8c40bcb71be832", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/117718803693710020", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677877676290, "dateValidity": 1678707203279, @@ -83458,70 +83458,70 @@ "value": 1697338800000 } }, - "revision": "b3e8e565aa254f3a86e9c319", + "revision": "6d975725979844d49194c4e9", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "5.00000000", "symbol": "BRL", "value": 0.98 }, - "revision": "e1c050688c1543d393343299", + "revision": "9302d2198f52474c89e2a421", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "0.20000000", "symbol": "IVIP", "value": 0.000021 }, - "revision": "4d51b1b5ef3d46f6bae486b8", + "revision": "166a0c7270734fa8bc770544", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "249a476e33a74565890a3d32", + "revision": "208cd035665a4b98ade6f67d", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "362b052ab69145fd9032c9c3", + "revision": "3647b146e5e44fff9919127a", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -83557,27 +83557,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c71cfbcfff6e4421b2a3242d", + "revision": "256f8393130a412f89a94351", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684492352568/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "762130dcbb184cc5b822a2bc", + "revision": "ee3eae8beb344fb3a5ea83dc", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684624220546/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624220546, @@ -83591,16 +83591,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e3153e2a366b4191823be207", + "revision": "337e09988eeb4f078f0b7718", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684624220546", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -83630,53 +83630,53 @@ "history_id": 1684624220546, "description": "Compra de 974.146,00 IVIP por 200,00 BRL" }, - "revision": "7a77785292a04d90906e622c", + "revision": "a36b0dbd82904afda23492f6", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "e3473e1dbc9346fd81ffd39f", + "revision": "8a140c9fffb24c0eb483980e", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "781b3e0bd53c4d3dbca4d7fb", + "revision": "359fc55943ae44ccb6433007", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "664661a0fcc74efcb03457b5", + "revision": "6bcf1806ebfb4c3a870bebf6", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -83703,27 +83703,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "9685cf84b21c4915823a5832", + "revision": "a406c6c35c3645068264b1ec", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625319623/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "d5fac9f742a04d6b80c335b7", + "revision": "5d670fa529fe43bc8841f480", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625351966/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684625351966, @@ -83737,16 +83737,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d265e7966d6e4c73a6242010", + "revision": "59cec570044d4dc8b0677f3c", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1684625351966", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -83776,29 +83776,29 @@ "history_id": 1684625351966, "description": "Compra de 4.870.731,00 IVIP por 1.000,00 BRL" }, - "revision": "d5920c590c534d5eb455ff81", + "revision": "1276210703c04330b4e06135", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "f7d3e12a2740481ab0437bbf", + "revision": "90baf7ea4caf46ce907bd64c", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -83834,27 +83834,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "60c26d6b44d444abbf21dfd6", + "revision": "88fa9fd0444b48e8a13b5a7b", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685027205516/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 400,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "2cdd7ab6f5754c4e867b12e0", + "revision": "35af4b31d7ba4d178d33ba06", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685234226998/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685234226998, @@ -83868,16 +83868,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e3239c81e00c4a4f8dbd15b1", + "revision": "2831187034314bfcb9f31afb", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685234226998", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -83906,27 +83906,27 @@ "currency_id": "IVIPAY", "history_id": 1685234226998 }, - "revision": "0daf27b18c174ecebada66ec", + "revision": "5f5a9a79032342eabdb2190a", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685234226998/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 10.000.000,00 IVIPAY por 1.000.000,00 IVIP estabilizando US$ 41,00", - "revision": "a271383e5a1641388dbb5754", + "revision": "bc44de475a874d64ba458d4a", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685456788341/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685456788341, @@ -83940,16 +83940,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "727deae844a74fb282888c95", + "revision": "3b48d2b6ddc2433e87722bcc", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685456788341", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -83978,27 +83978,27 @@ "currency_id": "IVIP", "history_id": 1685456788341 }, - "revision": "2bf11003efc54669a8cc67f7", + "revision": "20a9a097afeb4162bad5c09d", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685456788341/description", "content": { - "type": "STRING", + "type": 5, "value": "Compra de 1.000.000,00 IVIP por 10.000.000,00 IVIPAY", - "revision": "be407a14fae04a44b6a05a10", + "revision": "6d6ebc443f9d40f4980799f0", "revision_nr": 1, - "created": 1701465820564, - "modified": 1701465820564 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665895143/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685665895143, @@ -84012,16 +84012,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "f455b90ba6cd44469ef592ef", + "revision": "e653502fb2f54fd2bd4becfd", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665895143", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -84049,27 +84049,27 @@ "currency_id": "IVIP", "history_id": 1685665895143 }, - "revision": "8e2d0e5904cd415580484cad", + "revision": "c45b2203c5384a1ab0a05285", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665895143/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "1af80350e36f4f4c9508750d", + "revision": "c5d7cbb671a94268a1df253f", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344965, + "modified": 1701809344965 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665913616/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685665913616, @@ -84083,16 +84083,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "53d018b783414a81aa5749eb", + "revision": "f280fb54a41448e6b6c6b12f", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344966, + "modified": 1701809344966 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665913616", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -84120,27 +84120,27 @@ "currency_id": "IVIP", "history_id": 1685665913616 }, - "revision": "646a9432abb8425089dc902e", + "revision": "e9fc23f54db840bc878f39bb", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344966, + "modified": 1701809344966 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665913616/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "242381d074144a6aaaf2b89b", + "revision": "243cdd26f63149ddb07a537f", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344966, + "modified": 1701809344966 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665938582/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685665938582, @@ -84154,16 +84154,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "23276bc2b02742c8bb03139f", + "revision": "b9668958080a48ba8a2aa029", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344966, + "modified": 1701809344966 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665938582", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -84192,27 +84192,27 @@ "history_id": 1685665938582, "wasDebited": true }, - "revision": "040d64e503cf46c3b5536f23", + "revision": "af59785864ee40bcbadef3b7", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344966, + "modified": 1701809344966 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665938582/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.844.877,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", - "revision": "31f66aaf3d7e423ea8368aae", + "revision": "cb4a39428aca4599acb2b385", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344966, + "modified": 1701809344966 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665980650/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685665980650, @@ -84226,16 +84226,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "006e81b8df3641f9a0188d97", + "revision": "63d1f200a68e423bb97f499e", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344966, + "modified": 1701809344966 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665980650", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -84263,27 +84263,27 @@ "currency_id": "IVIP", "history_id": 1685665980650 }, - "revision": "2dfdc3b36eba4c699df8e011", + "revision": "9cdb3f0932cb4b8fb8e53e39", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344966, + "modified": 1701809344966 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685665980650/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "8283bbd991cb47db8899ffad", + "revision": "8c3c871fa38a43609c8ac619", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344966, + "modified": 1701809344966 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685743358755/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685743358755, @@ -84297,16 +84297,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "84ec22e73f54445ab21854ae", + "revision": "9a064eed2e4147e59e048ca4", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344966, + "modified": 1701809344966 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1685743358755", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -84336,29 +84336,29 @@ "history_id": 1685743358755, "description": "Compra de 1.403.508,00 IVIP por 400,00 BRL" }, - "revision": "206bcf27190045df8dfdd3b2", + "revision": "f22eef00df74498ab76fb22e", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344966, + "modified": 1701809344966 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "f12291a1d50449578c5adf50", + "revision": "6c0a0953c6ab4d44895f0d7e", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344966, + "modified": 1701809344966 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -84394,27 +84394,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "142d532345be4b438ffbb636", + "revision": "4b178222895e4eca83c87c87", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344966, + "modified": 1701809344966 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686581106502/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 250,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "89464362d6b94298a07960af", + "revision": "d5e2d92aec884cf2ae7eaf42", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344966, + "modified": 1701809344966 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686597954870/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -84430,16 +84430,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b537c309522b42a9b2e2305a", + "revision": "15c6e2c33a2d4bcd9603dae9", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344966, + "modified": 1701809344966 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686597954870", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -84469,27 +84469,27 @@ "currency_id": "BRL", "history_id": 1686597954870 }, - "revision": "08b5e68f17114cc892becd0d", + "revision": "79ac210c73c443dfba40f8ad", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344966, + "modified": 1701809344966 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1686597954870/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "9ddea63e93454924bb2f2a48", + "revision": "ef5ef89a7c06499ab025a870", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344966, + "modified": 1701809344966 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1687313544975/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687313544975, @@ -84503,16 +84503,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "190a195a38954ca8b88f1751", + "revision": "825b414c44204052840e7b3c", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344967, + "modified": 1701809344967 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1687313544975", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -84540,27 +84540,27 @@ "currency_id": "IVIP", "history_id": 1687313544975 }, - "revision": "4df60fb8bb75414f8c6eb18d", + "revision": "e02e6a8cc8f644c090ba6b1a", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344967, + "modified": 1701809344967 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1687313544975/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 2.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", - "revision": "b7c94abd40d548aaa834f4a7", + "revision": "c635e9206bdc4a4ca2e53837", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344967, + "modified": 1701809344967 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400283150/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688400283150, @@ -84574,16 +84574,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "cf861cce60134068ac59ac55", + "revision": "cbe79489b3794a1ebcfadb99", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344967, + "modified": 1701809344967 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400283150", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -84612,27 +84612,27 @@ "history_id": 1688400283150, "wasDebited": true }, - "revision": "8ba2c6ff09e244749c71f96d", + "revision": "581587d4bfaf442d99a789eb", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344967, + "modified": 1701809344967 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400283150/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 1.000.000,00 IVIP com um rendimento de +20.000,00 IVIP (2,00%)", - "revision": "624fa9bfd844437c964f5017", + "revision": "f48720c0751f4b2a867c1210", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344967, + "modified": 1701809344967 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400827775/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688400827775, @@ -84646,16 +84646,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "c4de4400d51741838d10479b", + "revision": "6d75408f42964fc680e317c5", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344967, + "modified": 1701809344967 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400827775", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -84683,40 +84683,40 @@ "currency_id": "IVIP", "history_id": 1688400827775 }, - "revision": "67b9776fd3c84cb68abb3fdc", + "revision": "45173686f6dd4f4ebf53a5ea", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344967, + "modified": 1701809344967 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1688400827775/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 3.268.385,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "502108e1ff134f2e8091ff8b", + "revision": "d6710afbeb01401397d5f70f", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344967, + "modified": 1701809344967 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "84213b4366bc4ce0915df283", + "revision": "5831dd454f9b4874899823f2", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344967, + "modified": 1701809344967 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -84752,27 +84752,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f1d61a48b1d040118096e037", + "revision": "1dc5cfe0d5484db4a2d175cb", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344967, + "modified": 1701809344967 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689085555442/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "c27abdf15c1545f5a44a82de", + "revision": "4bab9d2255214feaa78ef86d", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344967, + "modified": 1701809344967 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689168458989/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -84788,16 +84788,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "8b8c21529d5244258f635fce", + "revision": "39ae7cc9107541cda1eae574", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344967, + "modified": 1701809344967 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689168458989", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -84827,27 +84827,27 @@ "currency_id": "BRL", "history_id": 1689168458989 }, - "revision": "cb0f3684fced4fc68301c067", + "revision": "691e4f7859954358a4ff0c1f", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1689168458989/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "fa2e16adb833457f8213053a", + "revision": "8e90e0a3f9094eb589b3daa3", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344967, + "modified": 1701809344967 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691079300942/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1691079300942, @@ -84861,16 +84861,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "59db2b8d671a4101af2c5049", + "revision": "69a626475bad4a7dbd179981", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691079300942", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -84899,27 +84899,27 @@ "history_id": 1691079300942, "wasDebited": true }, - "revision": "8db1dd1ae7d34ca483e1ffb3", + "revision": "a2c2f1642edd4eb89591aa47", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691079300942/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 3.268.385,00 IVIP com um rendimento de +65.367,7 IVIP (2,00%)", - "revision": "4710e6d423504cba8bc6c26f", + "revision": "52314c2d245e4f9d904c226f", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691084485881, "net_received_amount": 0, @@ -84931,27 +84931,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "6a09bee1ffdc4ded8f50c4c2", + "revision": "ba0839bfef7c4199afe5ee49", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1691084485881", - "revision": "45fda5dd035c482db3d7af7b", + "revision": "91acf4204d004d16b1b1c5bc", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -84979,27 +84979,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "a77648e44b864ed598c8ce9c", + "revision": "474f8dc236cc47048c183427", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1691084485881/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.488.875,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "2ac159bc7efd4daba1ff8de2", + "revision": "1169fe73bdb44abf8424b6d0", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -85007,16 +85007,16 @@ "value": 1694610080318 } }, - "revision": "4059722b36b442038eca6501", + "revision": "520367583146457f9ea905a2", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692018080319, "net_received_amount": 0, @@ -85028,27 +85028,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "585322a9ac1a4d8db9ea34ae", + "revision": "959426e86178447d894f1ef3", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1692018080319", - "revision": "04c87682e15b4b2c9b9f955f", + "revision": "f0f1e8003c3142428d5d4f64", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -85082,27 +85082,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d28d03caea044294a4c8dcf2", + "revision": "88e3a8854f4c4aa8a6d83afc", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692018080319/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 250,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "5298268151194490b7073e02", + "revision": "fef972e9e168432eaeb56cbb", "revision_nr": 1, - "created": 1701465820565, - "modified": 1701465820565 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692288719964/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 3, @@ -85118,16 +85118,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "c8963294f7f848d4938d0538", + "revision": "fb8e19ca73574785b723dcaa", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692288719964", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -85157,27 +85157,27 @@ "currency_id": "BRL", "history_id": 1692288719964 }, - "revision": "781bd1d90d26438cb7637cc6", + "revision": "2a66252ce6ac4faf82d5e9ef", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1692288719964/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "785a71cf562546929b29ff72", + "revision": "c406c58b32f74da29d56a78c", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693763097865, "net_received_amount": 0, @@ -85189,27 +85189,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "82a48dfdc26b44ddb44a384b", + "revision": "97814dbd85784445ad85a22c", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1693763097865", - "revision": "c2e51c90c65c45b298b6830b", + "revision": "c780422cb65b4ec19a5a7632", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -85237,27 +85237,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "d285a4763bc442c390b519ca", + "revision": "860b551a2a784776a481516d", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693763097865/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 1.488.875,00 IVIP com um rendimento de +29.777,5 IVIP (2,00%) - Y12XDT27", - "revision": "47406df899884531ab088465", + "revision": "9334ef74f4b64f7cbc432e69", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693915531936, "net_received_amount": 0, @@ -85269,27 +85269,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ae5d5c761d264beeadd3a736", + "revision": "c785364efaaf43bc98db3c90", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1693915531936", - "revision": "77ba57b99be04430b703d809", + "revision": "832c36362f2f4d359f5a9b63", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -85323,27 +85323,27 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "6cc62917ea964e03bb1c9c63", + "revision": "82bc5c132e5a4e76bb5efa98", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1693915531936/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.487.490,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", - "revision": "d647159ba55948248e065923", + "revision": "e9db0f44457f4357b6bcd641", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -85351,16 +85351,16 @@ "value": 1696598496774 } }, - "revision": "f81cd30900dd425bbc16e212", + "revision": "e8de32e9c62d41a584c6c509", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694006496775, "net_received_amount": 0, @@ -85372,27 +85372,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8bda314a449e4d9981b8213f", + "revision": "246b06424a574d43938e5117", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1694006496775", - "revision": "f3fecc164aad4ec888aeeae5", + "revision": "d10c7c4b009d41dba9b171cb", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -85426,27 +85426,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5b6652d7a23e4baeb1b84b6a", + "revision": "734042419ff0443ba0057ad8", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694006496775/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 220,00 BRL para a carteira iVip 1181.6054.9969.9842-60", - "revision": "66f604ce05ab40ef95b4eda0", + "revision": "9d512d88cd2f4498af9e8a9f", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344968, + "modified": 1701809344968 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694572285717, "net_received_amount": 0, @@ -85460,27 +85460,27 @@ "installment_paid": 4, "installments_payable": 1 }, - "revision": "57b19b7aeb0442eb87a7cdd6", + "revision": "08b0d6bedbcb460cb15fe33e", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1694572285717", - "revision": "050e5d8a95ca4feea9557afc", + "revision": "1e3da73003d34c83a109d721", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -85508,27 +85508,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "d8d04414fab84d799944124a", + "revision": "f1a9b85e404a4f209f1f5811", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1694572285717/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "59f0bab97c1a4f30b1103a68", + "revision": "59300f41d55840f58ff4a726", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696081581090, "net_received_amount": 0, @@ -85540,27 +85540,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b9ff39325ad243d68e1c865c", + "revision": "bc1e3b47ecd34e6aa528693f", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696081581090", - "revision": "84d973da6bc842ae9acbde2a", + "revision": "43d9024ec3ef46dca72ba404", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -85589,27 +85589,27 @@ "base_currency_id": "BRL", "status_detail": "accredited" }, - "revision": "f63a7b7bfdb841d8a22e700e", + "revision": "8d0db4aa56d340f590815eb8", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081581090/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 40,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 30/07/2024 - D03OS92M", - "revision": "3f0127f7e3c04b508d27ba7e", + "revision": "309d02fac44541ea824e218b", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -85617,16 +85617,16 @@ "value": 1698673702609 } }, - "revision": "ac91a9c4c07046dbb28901dd", + "revision": "bdb286941f1a4066bc5a1e86", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696081702609, "net_received_amount": 0, @@ -85638,27 +85638,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "68d01a2e7b0b4f01910b0841", + "revision": "a096507a07214b7f9a8289ab", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696081702609", - "revision": "c8851e7db5654a299dfb8566", + "revision": "3e8555a60aaa47a086f2fe9e", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -85693,27 +85693,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "1db881cf3de14b20a38437c0", + "revision": "89bc727c1c5d4e31a1c6fd5c", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696081702609/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 225,00 BRL para a carteira iVip 1181.6054.9969.9842-60", - "revision": "70d66a9dddd74467a121401c", + "revision": "386830b437da440bbf1d3a21", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696085699487, "net_received_amount": 0, @@ -85727,27 +85727,27 @@ "installment_paid": 5, "installments_payable": 0 }, - "revision": "c892b10e24d84c7db2381273", + "revision": "5b447cb0fdb545de9c8768aa", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696085699487", - "revision": "4f495f832be14f0abfd189f6", + "revision": "552d954c3df44164a360ef88", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -85776,27 +85776,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "c84a8306706247fc94cd0dd2", + "revision": "491ed018a8fa4671842b99bf", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696085699487/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "4be0fbea369a4ac68c1d40e8", + "revision": "e275915da55048ba8ed0edeb", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696349167615, "net_received_amount": 0, @@ -85808,27 +85808,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8c9f41cebab14c92983b690b", + "revision": "436c2f8142af4615949da873", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696349167615", - "revision": "55cb9b6df32a4466bbe42490", + "revision": "4b545147ed274c7e9753bb07", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -85857,27 +85857,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "bde7cfb54d2b4b8784f98940", + "revision": "94f80d8350ed4f19af7c1caf", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696349167615/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 31.163,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 03/10/2025 - P9A02KSL", - "revision": "29151c0d75ef41a083d99d98", + "revision": "98748f427b56487b8284b50f", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696462181596, "net_received_amount": 0, @@ -85889,27 +85889,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "aa5d64d105ac40bab346bbb9", + "revision": "ca74b17eb9ce477da220eb88", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696462181596", - "revision": "fe1c3aff39c643169c624b6f", + "revision": "3a66ce974a284026b6617ccb", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -85938,53 +85938,53 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "537b2f8b6f51449ba8270535", + "revision": "2be028cb3f3b4fed9b077d1c", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history/1696462181596/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.487.490,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "5498c227643f48578b0852c9", + "revision": "ee120ca42f1f418dbb15f103", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "868b352a4d5446aa815384c6", + "revision": "1317bfbc87ec44b0818cea23", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344969, + "modified": 1701809344969 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "41c978654341485c84ee0d96", + "revision": "8151ad8254d444ae9ecc7256", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684625319623, "type": "emprestimo", @@ -86000,64 +86000,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "2de1d4e62bec47b3b4356ec6", + "revision": "2f648c0321d9417685d4b27c", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "40a0516c24a04f0ea1fb3369", + "revision": "9ff50b51b7674a3aacb15242", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306/1684625319623/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "dc4f898082614ada9056e3d1", + "revision": "baf3061dc14a4c339856af73", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202306", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e8f762f4ebe6404895a6ffb8", + "revision": "b1c78ad078f443528acc98d4", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "b05dc1e0f4ae4b4d92f42951", + "revision": "0c2da021aa4b41ea86b23ba3", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684625319623, "type": "emprestimo", @@ -86073,64 +86073,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "5002de96d01745f1a3e764dd", + "revision": "e001d0858a4245499051c8e1", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "600642446a814cc0b9767aea", + "revision": "b788e3aae11342968b0c3a12", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307/1684625319623/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "64e71c70410c48c6b84734f1", + "revision": "7ad5bbe36dc64b06ac335394", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202307", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "faed97cadb764816a7ea8bd4", + "revision": "4574515500534d9f88920e4b", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "dd326d6f469a4daa8a3949b6", + "revision": "17941a275aea40448b8333f7", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684625319623, "type": "emprestimo", @@ -86146,64 +86146,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "2b0b77b595754a72baf48d70", + "revision": "ba53150cc2bf405b9a7f8472", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "b7145b3f888647c48138cb69", + "revision": "0cf96adeb0fe42a29c19b2d5", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308/1684625319623/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "54bf9823e64e4837991c60d9", + "revision": "37e92768adda4f3e92095726", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202308", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9a3404e256cc41ae84cc0b61", + "revision": "83c9509fe86d4034a0b26ba2", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "ff8718aea55247c4a78fe51c", + "revision": "9d3c242b28ec4e4f99e74f4c", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684625319623, "type": "emprestimo", @@ -86223,64 +86223,64 @@ "value": 1694572285736 } }, - "revision": "b1f3777dc01243318fa07d7f", + "revision": "2456d630b6024463b7ebe340", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "829948c677eb4beba7d4f1f2", + "revision": "17cc7d7389874d74b8f70e63", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309/1684625319623/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "84aa381f08a647ee98fc35ba", + "revision": "f9196fd1401b472f893ae612", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202309", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "f967d7051fd746209ed36695", + "revision": "02ca07cea57d4b25b075d646", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "d09da9a6f7f44534b28d7ace", + "revision": "3566c1cc837d49a5a55816c2", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684625319623, "type": "emprestimo", @@ -86300,60 +86300,60 @@ "value": 1696085699499 } }, - "revision": "4c57dbaed7c749769d66d1ee", + "revision": "0a5a798ff84d4928818152dc", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "40240b18e986421dadc673c5", + "revision": "d899cf471f28473381973988", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310/1684625319623/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "89508584d0bf439fbeb88b0e", + "revision": "4155a12578a442a1b30dbabb", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices/202310", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "f7da7815ffc34241abb2ac32", + "revision": "ae3b4d0bc46446bc93c14f7e", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "34231363b7b2421abfdd6df1", + "revision": "3b6d6e76bf58453b849f261f", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 1000, "limitUsed": 400, @@ -86366,16 +86366,16 @@ "value": 1684618429410 } }, - "revision": "aa787b76141b4a9baa893a51", + "revision": "1b1b18a51b944e7598b24a8f", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/118160549969984260", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684492261254, "dateValidity": 1684492261254, @@ -86386,108 +86386,108 @@ "value": 1697338800000 } }, - "revision": "99b5a31cc03842a3b0fa7c79", + "revision": "3721cc4684fe44a0a6ecece9", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/120996359783253070/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "489dd5eb855d496797eeda51", + "revision": "8875275110844969845e4547", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/120996359783253070/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "fce6c168226b4d6a852f6571", + "revision": "f7410dbb0c734a7bb0791754", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/120996359783253070", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678148092390, "dateValidity": 1678198916837, "totalValue": 0, "currencyType": "USD" }, - "revision": "e2a74283fbd04bbb9bad48f7", + "revision": "c665c6f6f8414448a693b1b4", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "9.00000000", "symbol": "BRL", "value": 1.74 }, - "revision": "0097e289853745929ee89d34", + "revision": "82072500a35f4baa8902e0e6", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "443235.00000000", "symbol": "IVIP", "value": 70.34 }, - "revision": "bf1d0ff39c0f4ad796e6534b", + "revision": "cbaa575673f340929b4a9116", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b728a065b7474fe9bd7fed31", + "revision": "94c16ff84e9949dfa08dc11e", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "ff7739a2e77d4cb3b5fb8b51", + "revision": "b9713baefe494042971d3320", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -86523,27 +86523,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "2ca31e3702864b12b8684f02", + "revision": "e16e7a0f78674ff5a9866ab0", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684273040978/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1218.4763.4268.5788-20", - "revision": "85923755363042f1b50637c0", + "revision": "7686476cdabe402caad4c575", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624212629/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624212629, @@ -86557,16 +86557,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "ba8cbb207014423aa657607d", + "revision": "457a50fd104a4e9e8ae0569c", "revision_nr": 1, - "created": 1701465820566, - "modified": 1701465820566 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624212629", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -86596,16 +86596,16 @@ "history_id": 1684624212629, "description": "Compra de 97.852,00 IVIP por 20,09 BRL" }, - "revision": "f59b89ca446a470d86753b28", + "revision": "15af7d6f71304fcd9c1e4ee6", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624265601/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624265601, @@ -86619,16 +86619,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "6e39dc4a80a546ea8cbea497", + "revision": "91b2d5a793b04dd59efa0784", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1684624265601", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -86658,16 +86658,16 @@ "history_id": 1684624265601, "description": "Compra de 345.383,00 IVIP por 70,91 BRL" }, - "revision": "11a99a856f724925bcef6590", + "revision": "40e85beea7a649e68ce176ee", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696563980031, "net_received_amount": 0, @@ -86679,27 +86679,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c355f56d52bc40c7b0380765", + "revision": "020c09d879c94dddadcbf99a", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/121847634268578820/history/1696563980031", - "revision": "b5dff329ddf84b9bb1a3a0c8", + "revision": "1a2296fb910c4004a87d61e2", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -86728,63 +86728,63 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "955f862a2ee74e6e87d7f026", + "revision": "f7d9981d8c4849a2b1a91980", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history/1696563980031/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", - "revision": "76e6dc7afdb24a4cb7ac0a0a", + "revision": "50ebdae6dd7c403e8a3147e6", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ca03a16b713b47fdb52310ea", + "revision": "96157be767244695a28ec946", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3f9a84d61a6a4b46b318e3ba", + "revision": "4b563222fe4a4f25a516acab", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "2724fae590604a8c9c8ed53a", + "revision": "d3b147522cc04b8aa3fa1225", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/121847634268578820", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684189916126, "dateValidity": 1684189916126, @@ -86795,27 +86795,27 @@ "value": 1696561200000 } }, - "revision": "0ca90727489c41549cda3e78", + "revision": "4429bd42cf09404393e92add", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3c3d6a753b0e43ef83f9311b", + "revision": "7b576a572d754ab893d3067e", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -86823,16 +86823,16 @@ "value": 1693581922792 } }, - "revision": "a80e8f426cea46bea404eec2", + "revision": "1abe074db5e442d29f8b2720", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344970, + "modified": 1701809344970 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690989922793, "net_received_amount": 0, @@ -86844,27 +86844,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "19f78742f3354675a4bbf2aa", + "revision": "3416c74eaf1e483a83856066", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1690989922793", - "revision": "2e25d88640ec4cd39c9143bf", + "revision": "33cadf61692c4e88978c28a2", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -86898,27 +86898,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "4d115746478a46aa91afb556", + "revision": "217773d027b2438d9e9a6eea", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1690989922793/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 100,00 para a carteira iVip 1227.6483.0599.8103-50", - "revision": "b12a2d491c534996a5807ed7", + "revision": "f79d3f5971b049639aa0d241", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006310448/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691006310448, "net_received_amount": 0, @@ -86930,27 +86930,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "60172d47891e41d29501dd93", + "revision": "5c0875c9833f4c708edb5c30", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006310448/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691006310448", - "revision": "30d2a3b0592a41f481ce8187", + "revision": "28cda71bfabe47b78dbbde65", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006310448", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -86979,16 +86979,16 @@ "description": "Compra de 108.815,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "aada2b027910486b8cfdded3", + "revision": "f38c0c5cff5d4d8195f61cf1", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691006485984, "net_received_amount": 0, @@ -87000,27 +87000,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "012a5aa7ab3f46b48f80b7cf", + "revision": "fce4384d9e5b4d8299afbae4", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691006485984", - "revision": "8db8c8fbe3e34e0f91151371", + "revision": "d85d67268f304548a45e5c83", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -87048,27 +87048,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c79d207e805e43f5b1142bcf", + "revision": "e33ae0d151c145d497c43489", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691006485984/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 108.815,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 8/2/2025", - "revision": "de35cceabb524eb080f26494", + "revision": "37be1acb347f4b388cd3f9da", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -87076,16 +87076,16 @@ "value": 1694177260996 } }, - "revision": "979178589ba74c8c97189d5a", + "revision": "186522c7089e4762ad73bd44", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691585260996, "net_received_amount": 0, @@ -87097,27 +87097,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "90caf8b39b034998982ec2a5", + "revision": "dc11a9f008954b0ab013292e", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691585260996", - "revision": "e76889aaea164833b4b7fc7a", + "revision": "9ecd5c993c0d4165b3db8c9a", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -87151,27 +87151,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "75a1d7f389d04239b5b9ca67", + "revision": "cc3b1eb065484003ad4612a7", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691585260996/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 50,00 para a carteira iVip 1227.6483.0599.8103-50", - "revision": "358390f5791846e181024f38", + "revision": "3da7576aae0e4d8f977fbe8b", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589566120/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691589566120, "net_received_amount": 0, @@ -87183,27 +87183,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "51d42d74e07840899f981f36", + "revision": "9b829a962143426b9610eed1", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589566120/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691589566120", - "revision": "db5800c5b73f474b8fa25a1a", + "revision": "66d59d99f94c46fb970bef99", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589566120", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -87232,16 +87232,16 @@ "description": "Compra de 76.363,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "4097d0aca39a4923b57800b1", + "revision": "fa72bd121327476e89cdfb38", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691589908652, "net_received_amount": 0, @@ -87253,27 +87253,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "37b41f5ca1a34b94b3b89839", + "revision": "add8adf1da624a8482e4ef5c", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691589908652", - "revision": "018816f9dc0c4626887bc2d0", + "revision": "a6c1d0207adb4e47a9df5993", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -87301,27 +87301,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c11f72d5f17c448685fcc1fe", + "revision": "b83bdc8763b34224b08ee0c4", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1691589908652/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 20.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/9/2023", - "revision": "6ceb4c717fe14faa824b1ae1", + "revision": "f34c09e4cf8945368a09a7bb", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694268632615, "net_received_amount": 0, @@ -87333,27 +87333,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "6480a2fa984647438ce86b1b", + "revision": "ad4fc2162d5846b38b7e94ed", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694268632615", - "revision": "b9f5a44195ca401abc3fc2d9", + "revision": "0dde874aedc74508a3cfb074", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -87381,27 +87381,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "2f56b6d3aa0d44fbb2f49d6f", + "revision": "031f3297f49c422a882cae30", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694268632615/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 20.000,00 IVIP com um rendimento de +400,00 IVIP (2,00%) - Y12XDT27", - "revision": "dc4aebda54f94d8b948b38ae", + "revision": "665cff73da214b63bd05a8c0", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694304834658, "net_received_amount": 0, @@ -87413,27 +87413,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "cd1105909ff145249703b91c", + "revision": "d5ac775c30c847a0ae3647bc", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694304834658", - "revision": "a823695a2e1e40afa8145ffa", + "revision": "9d63c54cd9524d61b6905fd4", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -87467,27 +87467,27 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "09abaf70148c47f78e5f7aa4", + "revision": "433e2f354d9e4eff9c82ce21", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694304834658/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 63.131,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 09/10/2023 - Y12XDT27", - "revision": "74fd6bdc21e2497289db008e", + "revision": "2164588200034acb869d4eb1", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344971, + "modified": 1701809344971 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -87495,16 +87495,16 @@ "value": 1697308841417 } }, - "revision": "ae8a504bf0984bf380a20929", + "revision": "26a5fbac0a634edebadafc83", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694716841418, "net_received_amount": 0, @@ -87516,27 +87516,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "07ae423e876c4dcdab4b7ee0", + "revision": "4a9e035c82be4fa9bd0dfb41", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694716841418", - "revision": "92aae60e14a64868b2c6bb74", + "revision": "02dd0d569e3d438782fd32de", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -87570,27 +87570,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "28ae33bb10cb49889e188764", + "revision": "dc55a79312ac4318b91a74c3", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694716841418/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 1227.6483.0599.8103-50", - "revision": "f3d9a138abcb4889bfd302fb", + "revision": "8ffb9b68c4324891962ad4eb", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694723873975/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694723873975, "net_received_amount": 0, @@ -87602,27 +87602,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "661a88b24dac4e35a5cb390f", + "revision": "eaaa627b8eef4023bc0c2844", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694723873975/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694723873975", - "revision": "b2b03e7947ec40a6a900cf3a", + "revision": "ca8293f0c18b4bfb9b59fb3f", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694723873975", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -87651,16 +87651,16 @@ "description": "Compra de 22.823,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "3b064855b136450aacee6dc9", + "revision": "1075a5bb4be642e78b8c0bcb", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -87668,16 +87668,16 @@ "value": 1697477737888 } }, - "revision": "cf40ac9c059548ba8d070fe5", + "revision": "675f522c204648ef906bbcd7", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694885737888, "net_received_amount": 0, @@ -87689,27 +87689,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "e510d8a61d594efdbcde32e2", + "revision": "88598bb69e274e3b99f8c128", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694885737888", - "revision": "2c289170fa4c42d6b1fdd69f", + "revision": "c03a1293e9314600a49ab601", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -87733,27 +87733,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "bd9ada524b99406aabb965a6", + "revision": "1caa1076050a4c9094b78666", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1694885737888/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 28,17 BRL para a carteira iVip 1227.6483.0599.8103-50", - "revision": "2a7c27d01ebb48f6afdf3fb4", + "revision": "7a75ca4a3e8c453888f5fc8b", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -87761,16 +87761,16 @@ "value": 1697743250157 } }, - "revision": "1c03d6a3b3564de2a7f8deb3", + "revision": "de30922f74364dd3beff840e", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695151250157, "net_received_amount": 0, @@ -87782,27 +87782,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7b550c947c27499cb25ec78b", + "revision": "c38d1c458694430cafdb81ab", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695151250157", - "revision": "a75462ff69a644c3b379b287", + "revision": "3614ffd1bee74e6c8e936def", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -87836,27 +87836,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a18d5af279554427b32ab571", + "revision": "9df378c28c4b41f5916a5224", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695151250157/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 29.370,00 IVIP para a carteira iVip 1227.6483.0599.8103-50", - "revision": "c7c4cccc212a4967b1786aa6", + "revision": "f0ebc33cd18c443a856dbee7", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695152833307, "net_received_amount": 0, @@ -87868,27 +87868,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "2f4e49dfde6e4c2881a5a5ef", + "revision": "bb7ad5f8196b4e11a36716c8", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695152833307", - "revision": "4e248ac4435142a29530afd1", + "revision": "dd69d38edb9a409989bc5d19", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -87922,27 +87922,27 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "ae422f3170a74e43a07f45de", + "revision": "caf2ebce64c841aa845d8d81", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695152833307/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 36.455,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", - "revision": "0df8a13423db43cfb903fd6f", + "revision": "c8ba24b66698408bab43919c", "revision_nr": 1, - "created": 1701465820567, - "modified": 1701465820567 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695158486667, "net_received_amount": 0, @@ -87954,27 +87954,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "43769d97999447f0bd2d997f", + "revision": "9fc71e018b85467fb212ebd5", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695158486667", - "revision": "c55cfff5d0284277b22ab006", + "revision": "8e609daaefdc49c0990ab30c", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -88008,27 +88008,27 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "1096a3c4b97e4a809f721c12", + "revision": "3c9b6b65b0744ccfa53f4c53", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1695158486667/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 29.370,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 19/09/2024 - CLSMJY90", - "revision": "628b29f9f72c4ad08698fb04", + "revision": "446b0c07fd5745529a617ce2", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344972, + "modified": 1701809344972 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696466013923, "net_received_amount": 0, @@ -88040,27 +88040,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f4e10031138643f29e9e1f3c", + "revision": "a31f2c324aed473c8692adc4", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1696466013923", - "revision": "b5741b01e5b448cc9ec09611", + "revision": "c548317c955544b3bf879303", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -88089,63 +88089,63 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "802f6d78e278422a959b3ab7", + "revision": "d0c1441eb6c94a1d8d0e7538", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history/1696466013923/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 128.956,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "8cd46775024841dcb9a9cff7", + "revision": "3591f22956f541a899b14e93", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e7900af77bee495eaf533ad7", + "revision": "563c0834f77b4596b80d4c40", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4fa6d9cdc7b74f1cb72a0b8d", + "revision": "b8f388f5d0504edda2c107fa", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "26b0910de849438da68e0e1b", + "revision": "6d11263731784e1cb2a7e30a", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/122764830599810350", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1690989855646, "dateValidity": 1690989855726, @@ -88155,92 +88155,92 @@ "value": 1697338800000 } }, - "revision": "27562d6497d14f1fa7e3e19a", + "revision": "bd9694e9cf984df1876f3bf2", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "7503835.00000000", "symbol": "IVIP", "value": 789.35 }, - "revision": "7aca40a2ec9e467e9c0b4c4a", + "revision": "b9375ab77d3141709a6f2ee8", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ff66f5b470574fd88a703b41", + "revision": "65c124c5ab9043b1a21c23ef", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 1.00%", "amount": 5 }, - "revision": "39ee7fb23c7c4deaa80abff2", + "revision": "d4f8b47833db43fa9a56ee13", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "80be22d758894060bca64f61", + "revision": "cdae9d070754417fbfecaf60", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "186da37e42ea4bb78f423a2c", + "revision": "e8eab1498443438abb49641f", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1168c21f65b3417abe877e76", + "revision": "e4fc6ec189d94000a89dc4a4", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -88248,60 +88248,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "278154f01d5c4ee0b43159a8", + "revision": "fa5cf62aebc648b8aea416aa", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/payments/55900907390/ticket?caller_id=1310149122&hash=b46698ba-1661-4287-87f2-802c80f36c71", - "revision": "b408ce05cd8a43adbe4c778e", + "revision": "23303c20085949bca259d5f9", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406505.005802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter559009073906304E54F", - "revision": "bd04f3f489ef43f0b032df66", + "revision": "e53c2f8e88e9428b935f8c74", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI3UlEQVR42u3dUY7jNgwGYN3A97+lbqAC7WITi7+UdFsUXevLw2BmYkuf/UaQItv4jT690dLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tL++9o2f64f//vx7fXzkuvnHddfi7Tpt9dt79fdNvrz4h8/Rrl3YtDS0tLS0tLS0tLS0h6indasqNfq7yv19wcq5P6+83Tx68f7bQsGLS0tLS0tLS0tLS3tEdr3AHIyTtAX5bXZ9AS9xeRhWmDatzBoaWlpaWlpaWlpaWmP1Y57nPjaZ5RYb4oTp6xd/rPGk7S0tLS0tLS0tLS0tLQt3TqRX3FiobR7Ou/2uClbOF1MS0tLS0tLS0tLS0t7tjbj07ZVNq0+/ZYeY3PE7ldqRGlpaWlpaWlpaWlpaX937WLv//rHP+ipQktLS0tLS0tLS0tL+ztr958SVKbiyikcrCWam1UWR+fue9DS0tLS0tLS0tLS0j5buyia3FRi3u7dx6KlTnNqOjnClIBNdo+WlpaWlpaWlpaWlvZ52tRTfwr9Xp6prWQpuGzhi15qLV8vaDocl5v809LS0tLS0tLS0tLSPltbAC142uc/P0aW03uYNk8T2GhpaWlpaWlpaWlpaU/Ublo+jk0OrlRdXuF/y6rLOlB7W3VJS0tLS0tLS0tLS0v7KG1qzz+Fg+WLser5P8JEgF54OW9Yw1BaWlpaWlpaWlpaWtpDtK0cV0tJvLRw7k2yGIBd3kMPT5/xtLS0tLS0tLS0tLS0z9ZO46db6eeYz7ZNHUna/XGXSby+maX99dk9WlpaWlpaWlpaWlraB2lzhq7duz32kMnrIca8cjOS8kau/JZSsxRaWlpaWlpaWlpaWtpztMviyuIepelkplylHHOaIVDqPkdw09LS0tLS0tLS0tLSPl07Nq39U8f9svdVEoCpCDMXZvYw263teqrQ0tLS0tLS0tLS0tI+Tbtppz9ycFd4U9FkyyMApi2X1Zlfz4ajpaWlpaWlpaWlpaV9hnbZRuRThu4q3frTPOw8EWB6tBGSgrS0tLS0tLS0tLS0tIdpdyfVcjFkjQlLFLk4XZfzgVOyj5aWlpaWlpaWlpaW9hzt2IZ+S9kojf/zoy3yfOlIXH4jtLS0tLS0tLS0tLS0T9f27cG1EXpBVsr7dWMzKmBZsbkJV2lpaWlpaWlpaWlpaZ+uHe/JuU3BZSvdR0oEOkozkoJvYQxbDSo/xLy0tLS0tLS0tLS0tLQP0qaWj2ls2nTHMnX3aYE0261mBmlpaWlpaWlpaWlpac/RptBvGQQuY8cpFi0D1K5Qsbn8s3/I7tHS0tLS0tLS0tLS0j5KW8odF1HfVBGZYseUBdyEoa30JslzBWhpaWlpaWlpaWlpaZ+u3e94rQouez4rV+LOXf6uaOs7pKWlpaWlpaWlpaWlPUJbPtPqqaFI7eBfnm95nO5aVXvWzWlpaWlpaWlpaWlpaZ+vTZPVFmWW0+o5REy5v/0ct2V4SUtLS0tLS0tLS0tLe4r203Dq21G3gr9Kt/5y/K1vJmOnTv+0tLS0tLS0tLS0tLTHasv/Uv6urYav1YLLzfG32pFkuo2WlpaWlpaWlpaWlvYI7bL+chlFTtm9VFKZjrqlcHVfsUlLS0tLS0tLS0tLS3uEtsh6PJC2WLOFrv4jVFN+cUdqHElLS0tLS0tLS0tLS3uANt1QTsP1+z4pErzCxLRbQLoMV3PnkouWlpaWlpaWlpaWlvYY7VhVRNZL9vhkLLddIXpNv9HS0tLS0tLS0tLS0p6j7ZvyyXLy7Sr9RVL3kem3slvtXFIWHbS0tLS0tLS0tLS0tMdoxyZ2zOWT1yp2vFbavnqCvgolaWlpaWlpaWlpaWlpT9FOQdvUWiRfUhN2UxD41VC1VOOZtqSlpaWlpaWlpaWlpT1AWzqI1ALJokh1mv0eNvb7ZLXF4bgUwtLS0tLS0tLS0tLS0p6ozaOwF4WUm0Nvo+T+Unya8O/L09LS0tLS0tLS0tLSnqNt4XzaFZbrOZRMJZpf4ds27qSlpaWlpaWlpaWlpT1F+37tKAFkif96blqSk3g1UVj26KtVaGlpaWlpaWlpaWlpz9H2MgV7SrVN5MmzHHa9LNacXlAuwhy0tLS0tLS0tLS0tLSHaL844FbajaTayFE8qZ4zj8eevr2+PrtHS0tLS0tLS0tLS0v7HG25oqXQrwSGtV3k+wIJX5/5c1BJS0tLS0tLS0tLS0v7ZO0X06hTni/9SKfmVgPU5iNxpfTyoqWlpaWlpaWlpaWlPUY77ifQFq0cywC1NCyth/TgyFWXuVizjmajpaWlpaWlpaWlpaU9QpsrLFOGboon02fxaCXtt2jyv626pKWlpaWlpaWlpaWlfZ62RG59M0/tfbm88HxHSd2ladkjdKgctLS0tLS0tLS0tLS0h2iXMdw+EZdiwvLFwrh8Bekd0tLS0tLS0tLS0tLSPl1bwsGe56Sl2sgSbY77+bmeU4GpjX8JYWlpaWlpaWlpaWlpaQ/TtlV/yNZqyHndizX39Zcty/ahJC0tLS0tLS0tLS0t7Tna9Nk0f+z3SLCHBGAqx0xFnVeIVOu7oaWlpaWlpaWlpaWlfbp22WRkGfotuz2WYs22fbSem1N+GfPS0tLS0tLS0tLS0tI+R3uFAHLqNJI+PWfjUnHlp2aSfyeKpKWlpaWlpaWlpaWlfaQ21VqmwdbpgFupnGylGUl5oKtMYFvGp7S0tLS0tLS0tLS0tGdqF/m2NPa6hINpZtu1qbrMY91oaWlpaWlpaWlpaWmP15Z9anYvdfXP4eAUfH5XwElLS0tLS0tLS0tLS3uONq/USkXkVBZZqjPT7Otrcy4unbP7tdNwtLS0tLS0tLS0tLS0v7G2Fj7mQ2qLwdZ5IFvlLedcv7+CXt4SLS0tLS0tLS0tLS3t07X//w8tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t7b+m/QNO7FsdSE0lWQAAAABJRU5ErkJggg==", - "revision": "182261ce3df84c67ba8e7c6d", + "revision": "cf09da1aebce4b68926df25e", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "429908175372448599798706", + "revision": "5f05acb0fcb44267a712763a", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -88337,40 +88337,40 @@ }, "wasDebited": true }, - "revision": "41dfa883290d4ab5bc6a1ed3", + "revision": "afccb24802b846cd8b4429ab", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679152509855/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "13cd887f047e4ebeb9ebb866", + "revision": "15658dc3797345c5ac98e896", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "96c22a509ba74581b8bc60e6", + "revision": "1e011d9b446f42509e7e90b5", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -88396,40 +88396,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "c9e7a220e5854109a12db93c", + "revision": "a90a928e582a432587f78364", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679153875722/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 505,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "85eaf237fd6a4354af587ffd", + "revision": "600a409ba0d640d9b407552c", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "e36456525b5743878f04b478", + "revision": "bef292770812424e9cbd6464", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -88455,64 +88455,64 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "5f957ef5f9924d4aa71599aa", + "revision": "836074900c364811ab68fea9", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679154208055/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 505,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "ae50dea5d13e40e49ce59526", + "revision": "caf67c83453a467ead5e4d24", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "dff3a02bec06451cb2a5cf18", + "revision": "3da651dbd3f84c5ea9076466", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7566fb06702d4486a883e136", + "revision": "8e45a5b5f1c44e1fbf0d2039", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "1f33598a199e4495a056be4d", + "revision": "7dd68bd41a6b4c5f96ae6103", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -88539,27 +88539,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "21e6e0eff3594e30a6f81fd6", + "revision": "ef750c0f187844668c74e259", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679263150490/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "be0d9ccce4f64b4986d45252", + "revision": "9b2e22797aa34d63bfa77f51", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679266956838/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679266956838, @@ -88573,16 +88573,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "5424ffbc7e5349a5bcfc3681", + "revision": "8a2bb910f6e34ce5af5ddd04", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679266956838", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -88612,66 +88612,66 @@ "history_id": 1679266956838, "description": "Compra de 11643076 IVIP por 2000 BRL" }, - "revision": "058418a056704b1aab190329", + "revision": "aa62206f2a9944f09800f42d", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 1.00%", "amount": 15 }, - "revision": "1485f42562d049e69076f096", + "revision": "592c931f75d3426894134c1a", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "89fb19eeb57e4aa39874ff69", + "revision": "a4f6b73c7fd9400097a0798b", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "dc6fe1b99b014960ba667b76", + "revision": "daff287f23a4494f8e58cb38", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e3ce8abd1ff3431dabc8e46c", + "revision": "91e9f4de645b453a800064a8", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -88679,60 +88679,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "55db6f546ff8407c96d1e21d", + "revision": "700b8c982c9940d891d291f2", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654071515.005802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131358707763045A2A", - "revision": "33f8880e0c624e49b2d8173e", + "revision": "0fadd967bfb84005a283c3de", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1313587077/ticket?caller_id=1310149122&hash=b6d8c471-76bc-44da-bf9f-76b5ae753314", - "revision": "661dff7e39064649997c6035", + "revision": "87df646cb9f847c5a9b4bc2b", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIxUlEQVR42u3dS24sKRAFUHbA/neZO6DVE7uSuJC29NTql5wcWLarCg41C8WHNv6i52q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9e2+an//u//vVCD+/7/t/t1X8Xbt+/3Xe8vXB9rXJ9bVkZtLS0tLS0tLS0tLS0h2j757Kfi7SvHa+y2Oe20+rjftzWWn5h0iYGLS0tLS0tLS0tLS3tKdopgCwxZi/H+P7YFAl+LjrFmCO8ZRG40tLS0tLS0tLS0tLS0s4LT3m5DF1Gm2PzFdDS0tLS0tLS0tLS0tLGaC7FfyX3l4omezlf+jHl/mhpaWlpaWlpaWlpac/WJnwqqSyUkbvmSiPcRNk11v26RpSWlpaWlpaWlpaWlvZv105PSrr9Fz8qg5aWlpaWlpaWlpaW9ghtftKUkp6njyyjyBJ83tKD3ys/W2hpaWlpaWlpaWlpad+tTS1sYzPjMeX+Svy36JqbTj812+VkHy0tLS0tLS0tLS0t7bu1U/vbZ8/a2M54bE+DI5/qOWvtZo4saWlpaWlpaWlpaWlp362dXky3rZUDlTCv5VvUUjpvbMjP3XC0tLS0tLS0tLS0tLSv1V5hGEldczKmUSXt+ZnGT+6PRktLS0tLS0tLS0tL+35tLb0s+DTIpLW4Sknn9fCW1F3X8zdHS0tLS0tLS0tLS0v7dm2J60a4O60VfIkdpwrL1BzXSspw+qoKlJaWlpaWlpaWlpaW9gBtqrWcMm/Lt5S9p+gwJQUXZykRbaelpaWlpaWlpaWlpT1Le9t7H1TmVGCtoSxHu5VyljxfW4WStLS0tLS0tLS0tLS0b9dO4/l7TvtNKb7SCFc3S1cApHGROcakpaWlpaWlpaWlpaU9Rbu562y6CntqZltUSeaYsAVtmur/XCNKS0tLS0tLS0tLS0v7Nm1pa2sh3zZRegg+02/1Hre0wNNXQEtLS0tLS0tLS0tL+25tKrgsP1Lp5dj2saUL1GoomUovaWlpaWlpaWlpaWlpz9T2kpfLJ6jFmvtXS3Hl4n62H1dd0tLS0tLS0tLS0tLSvk37WfOYoshbTi+dJX227DjC3QATvgcoLS0tLS0tLS0tLS3tAdrp858fWGbe2r3gcrltC4FmHReZj9tpaWlpaWlpaWlpaWlP0uY03dVidWa5T20U7eazLaQCR+69o6WlpaWlpaWlpaWlPUKbP5Xm+48QY44QXvYckOaPjXLwQqalpaWlpaWlpaWlpT1AmxQ/OEsJJcc9IJ0+ews5U1Iwb05LS0tLS0tLS0tLS3uOtowHaSmKLP1uV7n7Or9lcl8h2feb29ZoaWlpaWlpaWlpaWnfor3KtqV7rd1jvZFvUfv8s+UxJ+mqgNQDt54eSUtLS0tLS0tLS0tL+zbtBCjx5OJy6rZ9cjVlz8m+tC8tLS0tLS0tLS0tLe1J2kWIuOyBKym+Vo6Rkng/iBhzxSYtLS0tLS0tLS0tLe27tVO9ZJngvwwl64656jJNPembaZTbKJKWlpaWlpaWlpaWlvaN2rHZO//Zwsj+dLv1op1uWbGZ0oi0tLS0tLS0tLS0tLTv116ryslpUH/LCy8jxpKru0qHXP5so6WlpaWlpaWlpaWlPU5bqh/rVMhcp1mPtprM3z5PsIhek4WWlpaWlpaWlpaWlvb92nGXLeLJMpl/QZ7+l05QIsbabEdLS0tLS0tLS0tLS3uiNk8pSWHefox/OlrfjPZPCUBaWlpaWlpaWlpaWtpztBMqdb6V6SP9noibetvafap/zf0l9xRZ3r9IWlpaWlpaWlpaWlra12tzTDhWN6ZNb9ll91IomWo8N4WetLS0tLS0tLS0tLS079amqsuS9mu5YW5qk5uWSqWcm5EmKVKlpaWlpaWlpaWlpaU9QnuVhrT0v1/dojYVUqagspzvhzWitLS0tLS0tLS0tLS0b9OWHFwrfXHLGLMMI9nxylI9R68lNKWlpaWlpaWlpaWlpT1AWwofa4RXeuAWRZMb/CZ/V8ec0NLS0tLS0tLS0tLSnqKddpy63KZgMe/Tw1lavqktJwp7+dK2NaK0tLS0tLS0tLS0tLSv0paF04513Eiqklz2yk03qz1FqoOWlpaWlpaWlpaWlvZUbdtUP24630YIKlsYVdJztrA8nZaWlpaWlpaWlpaW9kBtSr+lt0zXprUyy3/Ep9ZVbsf4P90NR0tLS0tLS0tLS0tL+15tuk+tFGb2VQRar00royFTsm/ky7hpaWlpaWlpaWlpaWmP0Oaax5pqKz1rt7ekS9UKL838H+F8g5aWlpaWlpaWlpaW9izteOp8K1tcgdxCsNg2U0o2i3ZaWlpaWlpaWlpaWtqztI8j9qcOuRafdHfalfvsUnPc5qGlpaWlpaWlpaWlpX27dpnOSzumESRTmm7kWwLK0JLFbJISfNLS0tLS0tLS0tLS0r5bu+xjKyP26wT/ZYqvRJZjlQpMgesmiqSlpaWlpaWlpaWlpX2ttpVpISmxl96SKDkgnQLXNNX/R7dg09LS0tLS0tLS0tLSvkqbnkyukWWpuhyfsk9Pz9e1lUXbQxRJS0tLS0tLS0tLS0v7Pm0O/RY7bmLHGjE+RZEtJwqnmJWWlpaWlpaWlpaWlvb92l6SbulHiR1/VqI5nbQUV/46iqSlpaWlpaWlpaWlpX2lNod0uy1SnLitnGz5a1mEsNsokpaWlpaWlpaWlpaW9hTtbqXcHPcZ+rXtxdZtP2qSlpaWlpaWlpaWlpaWNib7SlLwyiP7px64Mv2/hVvZan6RlpaWlpaWlpaWlpb2HG3Cfy88FUPmLRZzTaZ84PKStvxl0NLS0tLS0tLS0tLSHqGtSbwy0L/lELHk6q486yTNoJwWSNdt09LS0tLS0tLS0tLSHqH9/z+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+w8PIVl9AL56yAAAAABJRU5ErkJggg==", - "revision": "554c2ebd8901417ab3dce4e7", + "revision": "61f7c7c7d8a04cf591d8855a", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "d4c0d67dab8f45d99f3f7e5c", + "revision": "6672682ab4b443f8bac6eb37", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -88759,40 +88759,40 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "d3c1a03d3681476db63eb7ed", + "revision": "66db88dc959f4c279a4fdf7f", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696530924/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "a562f0b5b8f8467987ee4fc3", + "revision": "70f06c6541fc4ef9b79e4b75", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344973, + "modified": 1701809344973 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "4d7024955c9c4b1e911e339e", + "revision": "92157324cde84c4182544966", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -88828,40 +88828,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "0a11e95d8fd54dc58c668696", + "revision": "ea4cd8d9faba4f56beca3222", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679696876215/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "2c0908dc794946a1b8934a8e", + "revision": "f357577b664e47c9b31fffd4", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "7b4ae9f5949a43bbab276deb", + "revision": "5803c4bb52b24936b9226cf1", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -88897,27 +88897,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ab1310d9015c4fca93a8b169", + "revision": "277e5ec8e20f419298762f02", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679698976004/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "25e13f9d01b945739ebdad26", + "revision": "58e9eb40185e45d7a68583e7", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679872088470/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679872088470, @@ -88931,16 +88931,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "ba1b76dcf83245f18ecf7824", + "revision": "6911b018bd7b4225ba24cc4e", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1679872088470", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -88970,29 +88970,29 @@ "history_id": 1679872088470, "description": "Compra de 10.651.254,00 IVIP por 2.000,00 BRL" }, - "revision": "ede4c5c3fa574e5289e56c91", + "revision": "bca08e21770d40b2936d5094", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "e6d34965e9ce498faff0606e", + "revision": "98cf453adbec4c45934bad99", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -89028,27 +89028,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e614a09a233e41a1b6c198df", + "revision": "c38692b461e941679e78837b", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1680996986540/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "d3009e60ab85405489ad3b62", + "revision": "3ce682f85d0a400fb7dc474a", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1682640956216/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -89064,16 +89064,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e0d9947d75ac4eff980a948b", + "revision": "49b1e8511f6a4d8baaaad6b7", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1682640956216", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -89103,27 +89103,27 @@ "currency_id": "BRL", "history_id": 1682640956216 }, - "revision": "9a305c3a19b24d8f9d2b87e2", + "revision": "e1b361f9a3ac4705aec46d1d", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1682640956216/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "8eea5b01adef4617bc151987", + "revision": "067fdaa03aa24621a21010ce", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1683194553322/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 3, @@ -89139,16 +89139,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "5d83d168706b48918a21771d", + "revision": "721285b78f1240ebaa4fe207", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1683194553322", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -89178,27 +89178,27 @@ "currency_id": "BRL", "history_id": 1683194553322 }, - "revision": "1dc8144f36fd4a78ba9e9c10", + "revision": "0fcca629957045e78007b1a5", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1683194553322/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "f28ad75bd80a4c9d9cfdbc21", + "revision": "7ed0e0df4a964e6c90bdcf15", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684019013862/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684019013862, @@ -89212,16 +89212,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "de6c9ec659a14cd98fe3cc09", + "revision": "22296c88d6484f97b12a595d", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684019013862", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -89250,27 +89250,27 @@ "currency_id": "BRL", "history_id": 1684019013862 }, - "revision": "0a6109a7e73c4e1aad6a75ab", + "revision": "768988d03a3d435d95ea86f0", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684019013862/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "dd2cc16fdc4b4e05b7aba253", + "revision": "d8ebcc198db94a4aba073a36", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684155209634/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -89286,16 +89286,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "602a0fbc95fe494dbb3312aa", + "revision": "d985de6cd40f4264bd1fda1f", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684155209634", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -89325,64 +89325,64 @@ "currency_id": "BRL", "history_id": 1684155209634 }, - "revision": "023f660d275c41a4831e72fb", + "revision": "ee69609a0bcf481f8a9e5678", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684155209634/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "6238df38221b451196c1342a", + "revision": "c5224958c1ee4ce79432db4f", "revision_nr": 1, - "created": 1701465820568, - "modified": 1701465820568 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, - "revision": "a7d33a070a2f458ba5974fa1", + "revision": "be6ff5ea49de4dbfb6ae7846", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "0cdf481bca664525827176e0", + "revision": "bb2f909ec92b49739594ceb7", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "b8de831c5eb94d3d8372adf4", + "revision": "15725386bf154ceab3ee92b2", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -89409,27 +89409,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "4355ac861aee4a3cac90de93", + "revision": "d5d06bc14b6940af9fb2d9a2", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684158510574/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "491da0db29c74ebdbd3bf3d4", + "revision": "00c3c5262ca5484d8f133c51", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344974, + "modified": 1701809344974 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684348943785/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684348943785, @@ -89443,16 +89443,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "3a91b7fba5834f58a0f3418b", + "revision": "c772145255df46958420af9c", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684348943785", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -89481,27 +89481,27 @@ "currency_id": "BRL", "history_id": 1684348943785 }, - "revision": "65e8d04c02844de7ae9badfd", + "revision": "60096ef859254994bcf40fd3", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684348943785/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "e2f99a82be9b440ca07bba8e", + "revision": "abe1b522a6fe438ba7a3a0b4", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624245338/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624245338, @@ -89515,16 +89515,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "252da1858a414dcaad934fe0", + "revision": "c5db156841ad4393b1cf02e2", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624245338", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -89553,27 +89553,27 @@ "currency_id": "BRL", "history_id": 1684624245338 }, - "revision": "8ec3d2209e074dec8bfed101", + "revision": "84399282bf7348f7b5690f32", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624245338/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "cef307d1b1f04b209ffa0e1b", + "revision": "83595ab806374d5ca75c8027", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624330381/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624330381, @@ -89587,16 +89587,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "c5d676ce4db549e7816c70e6", + "revision": "0f47757f4be44a64924c30ae", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1684624330381", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -89626,29 +89626,29 @@ "history_id": 1684624330381, "description": "Compra de 11.552.888,00 IVIP por 2.371,90 BRL" }, - "revision": "0c72c7d2b3434cd389ce3eb3", + "revision": "fa3cd4d83b9f44359ffe7add", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "94473a9325f84bb2a66bf4b7", + "revision": "c1af9e18379b43ea84ec825a", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -89674,40 +89674,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "590f8dce5c694bca8c00162e", + "revision": "0eb8b7b151694c9eb273a7d5", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686781360635/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "6b7932fdaba74aba96ef637e", + "revision": "9427fab8975447acb550226b", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "6b034df6a621419a82df6350", + "revision": "4928910c582f43168c76cd86", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -89743,27 +89743,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "59fc92049b8847938c75ffa7", + "revision": "71b28c9517a44fa69fbb8f4c", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686838534175/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 162,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "7d24b369d63947b1a574a39a", + "revision": "0c3eaaa2876a4b958b0f96b2", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686839367288/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -89779,16 +89779,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "822b830b2bca4584a0eb22fe", + "revision": "a4192e134de14aad98fe1e82", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686839367288", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -89818,27 +89818,27 @@ "currency_id": "BRL", "history_id": 1686839367288 }, - "revision": "bc060754e58b4a46b1df4d37", + "revision": "04f9a74486f14b92aa370889", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1686839367288/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", - "revision": "f4c83eba7f3f4621976a3220", + "revision": "802a54611d5f47b5b6592bdb", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1687526304583/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687526304583, @@ -89852,16 +89852,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "992f215f5267488dbebf797c", + "revision": "08ef180c3dab42aaa535089f", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1687526304583", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -89890,27 +89890,27 @@ "history_id": 1687526304583, "wasDebited": true }, - "revision": "0c42020bdde742378c0a057d", + "revision": "b010d37ad16f420c9ded0d3c", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1687526304583/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 5.132.122,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", - "revision": "adf93c629ca64201bfc6680b", + "revision": "2192c33fef5c4c75a2153d7f", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -89918,16 +89918,16 @@ "value": 1693646965462 } }, - "revision": "2af4816889a04dec9ca12275", + "revision": "c8a98ed075594b12948efd71", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691054965462, "net_received_amount": 0, @@ -89939,27 +89939,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ef3d175b797141539363b2a0", + "revision": "1a7772cccfbe401d80baae50", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1691054965462", - "revision": "0eaee3c8d25f4966adf02f02", + "revision": "892c03e4363d47119afbbf27", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -89993,27 +89993,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "74ebee85ece943669d61001f", + "revision": "c402e051ad5847d392d25e6c", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691054965462/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 510,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "577b3d0784b24dedba46e077", + "revision": "18187ebf0cdf47408fa5c131", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -90021,16 +90021,16 @@ "value": 1694044211694 } }, - "revision": "e85350b398374342914e7a74", + "revision": "4cf0ec2688774e53bc5ed7bd", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691452211694, "net_received_amount": 0, @@ -90042,27 +90042,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "89d29d83d01f459e8376a6a7", + "revision": "7014e6ad07794f2384f9cb75", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1691452211694", - "revision": "1792cff25c314f9c8f420ecb", + "revision": "e7e64968692d498191589fb9", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -90096,42 +90096,42 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "82d14a9d2cb54f51af3943f0", + "revision": "e1b58e79c13f4433a1ff79dd", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1691452211694/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 300,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "d612ddd0ac644c2981447d14", + "revision": "9389c63debb24355955be2ab", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344975, + "modified": 1701809344975 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 750698.52 }, - "revision": "baaa81ba972947d6a62e4c38", + "revision": "80f08138ee2642ea80865920", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692030522501, "net_received_amount": 0, @@ -90142,38 +90142,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "e45c6be540aa4930a789b7b5", + "revision": "95d5a311249446de84d46861", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1692030522501", - "revision": "dc44000842e74ebeb5c5704f", + "revision": "4eaf5154d5c047838a6caf60", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "5c931bdd95f9498a927bf840", + "revision": "ce27789073354fe5aac0f4f0", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -90211,27 +90211,27 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "8963375370c5468da982f085", + "revision": "b4ef47c709f74e97b1db26e1", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1692030522501/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 24.272.585,48 IVIP para a carteira 0xC241a13f35a534f3ef174c5cF50Ea8653FfE62F1", - "revision": "371cf24e136448da967058f0", + "revision": "a353ac8533ca4e97b38adde2", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -90239,16 +90239,16 @@ "value": 1697750847215 } }, - "revision": "93b1226a7aa04c6b81fd0301", + "revision": "6b014ce0b4c941788861f7f8", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695158847215, "net_received_amount": 0, @@ -90260,27 +90260,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1b479249e2e147a7b96a3548", + "revision": "d0b783f467384ad084492ca5", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695158847215", - "revision": "a68342b604374cb08c1f4113", + "revision": "21a395d862874c60bf2b3829", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -90314,27 +90314,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "db4dd1c5b43e47ea81c223d0", + "revision": "b0ac87b1eb2a47249da0d197", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695158847215/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 150,00 BRL para a carteira iVip 1251.9390.3817.0948-30", - "revision": "cba7736a80684903a7a8bd3c", + "revision": "4c003fe7ee7d4950be62e46a", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695159884735, "net_received_amount": 0, @@ -90348,27 +90348,27 @@ "installment_paid": 4, "installments_payable": 1 }, - "revision": "522d755f99724d789cbeb12d", + "revision": "4c04621d28d242d49ae8d314", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884735", - "revision": "eb3d67dea7b94ea8aaa22479", + "revision": "667d86e05e50418aaaa83c7c", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -90396,27 +90396,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "1a74b858850e45ac819c4bf5", + "revision": "a2f3e3d3370e48beb9dcbd57", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884735/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "a493c803347c45f4a9d658d9", + "revision": "b0d1802df7f04efe8305678f", "revision_nr": 1, - "created": 1701465820569, - "modified": 1701465820569 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695159884797, "net_received_amount": 0, @@ -90430,27 +90430,27 @@ "installment_paid": 2, "installments_payable": 2 }, - "revision": "23cdb6d9a4f64b5cb36c65ad", + "revision": "744d4c0bb1aa4c26829f773b", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884797", - "revision": "08a1346bd0934f44b8f654b0", + "revision": "5d5875243fa74a799dc746d3", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -90478,27 +90478,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "eb68179dde5f4e2d94e249f7", + "revision": "46ccf3fe6bfe41a1aac63328", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884797/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", - "revision": "8e05f354d9ee496796036ca8", + "revision": "5fcce70a0aa344d7bf013f19", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695159884893, "net_received_amount": 0, @@ -90512,27 +90512,27 @@ "installment_paid": 5, "installments_payable": 0 }, - "revision": "aa9ef99303bb4dc4a1aebe93", + "revision": "d2b8ea0de1d3459aa3e7de59", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884893", - "revision": "2ae71f87010046ff8800d009", + "revision": "ea37df2e96694523a44bad27", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -90560,27 +90560,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "2e36d88aec3b4325aa96b7c3", + "revision": "4b8d7110100141b19fddff42", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884893/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "119128fb576a45c3bb53ba0b", + "revision": "618a1e47aecd467db381bd2b", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695159884951, "net_received_amount": 0, @@ -90594,27 +90594,27 @@ "installment_paid": 3, "installments_payable": 1 }, - "revision": "9e83aa6bf6404beb959b6b9b", + "revision": "390570a5580b49259181b407", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884951", - "revision": "8ac714b4a1b549a7abb9b2fa", + "revision": "9e4efe0ce34d4fab8d143879", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -90642,27 +90642,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "60841a5c81824ef0973d0bb2", + "revision": "743507fb04804ae59d28e386", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159884951/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 3 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", - "revision": "5bd09471951d41408bd96ef6", + "revision": "bed4fc0b5e2c4a18805881c2", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695159885077, "net_received_amount": 0, @@ -90676,27 +90676,27 @@ "installment_paid": 4, "installments_payable": 0 }, - "revision": "b4290d43bb214b94bcb9f6d9", + "revision": "95098b72520545099eb0e5b0", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159885077", - "revision": "314672febab24ad986ac91e7", + "revision": "757aa8dca1664f9eb3c1e3f4", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -90724,27 +90724,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "7cd96b38ce5d4f6fabeb5442", + "revision": "f85bfe42125d4fa1ba5f801a", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1695159885077/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 4 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", - "revision": "893890958a2c4c2da834e015", + "revision": "c4adafd222dc43e392b98bae", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344976, + "modified": 1701809344976 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -90752,16 +90752,16 @@ "value": 1698764022012 } }, - "revision": "fe0369a5d0854fecb8eb443d", + "revision": "cfc71a9cdcab443a94dc4740", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696172022012, "net_received_amount": 0, @@ -90773,27 +90773,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "64fe7130501243e1adda7879", + "revision": "33b8aba054db40d1929c4f18", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1696172022012", - "revision": "50af647df68f4d589cb5cf72", + "revision": "31f23b4f8d074fdfb33a584e", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -90818,27 +90818,27 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "9bdf7c4b4327490aaa625e1b", + "revision": "30e7be7a500d40cc9fe04ebf", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1696172022012/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 100.000,00 IVIP para a carteira iVip 1251.9390.3817.0948-30", - "revision": "e3bdea8ddc82404eaf746633", + "revision": "13517d8f9bc3420eb00c72c5", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -90846,16 +90846,16 @@ "value": 1699705029373 } }, - "revision": "70aa108146954c9195725567", + "revision": "a6390529b69347c8ae1b828b", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1697113029373", "net_received_amount": 0, @@ -90867,27 +90867,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "650cafc28a54402e9242f9ad", + "revision": "425fad9a76604f069375d1f5", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1697113029373", - "revision": "7973539604164e389c2c21f0", + "revision": "565185e4f27848308be0863c", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -90922,27 +90922,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "0976bc86646a480d847d508b", + "revision": "8be68c517feb44a9894768f1", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697113029373/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 2.500,00 BRL para a carteira iVip 1251.9390.3817.0948-30", - "revision": "781efe7708ad424eb35baca1", + "revision": "77bc52b53a3e4ae79b5e19bc", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697159292046/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": "1697159292046", "net_received_amount": 0, @@ -90954,27 +90954,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8d4a085da38c418d9adad085", + "revision": "7b6411c730a243b688f15d04", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697159292046/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1697159292046", - "revision": "a6a585eb710f47a8bb24a9d0", + "revision": "4fe79c00a1ee4186bc751d6a", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history/1697159292046", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -91004,42 +91004,42 @@ "description": "Compra de 3.812.023,00 IVIP por 2.034,00 BRL", "status_detail": "accredited" }, - "revision": "15d3d71bdcbf40b0a198ed5b", + "revision": "4c6478ef0e7e454a9105de05", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4c560a4103e3461ca7401b1b", + "revision": "cd9e2312c91c41c280997539", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "67ab755884464b58975cdd83", + "revision": "5b0cde8142e74944bf5ce0b4", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679263150490, "type": "emprestimo", @@ -91055,64 +91055,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "75ac8fb8864f419da2152606", + "revision": "0f60ce99ecbd40f8b619fdc7", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "f3289770764e462ebac23452", + "revision": "09ed11ae3ad74fbaaecf2f65", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304/1679263150490/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "1bdc883962064d72a18b2a19", + "revision": "7043ff455c1f4fda873b2512", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202304", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "587cf2487c34415bb6244134", + "revision": "d5a4c3dc32244a21a2a72ed9", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "d846644fa5924954b64346ac", + "revision": "5a1801896d664f0fbc3b4ee6", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679263150490, "type": "emprestimo", @@ -91128,64 +91128,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "cb7ad7b6a1694a569dc346be", + "revision": "ad97b5cc83c24ba2be87cd83", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "be4cf69084b0457ba15cdd08", + "revision": "f48e57c905fc4ef58422a542", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305/1679263150490/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "e173be9d7d9742f8a94cf0b9", + "revision": "28caaf1400544979a1ec8136", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202305", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c344e5720732458bb771aa05", + "revision": "67f6c727369d43bbb88f6793", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344977, + "modified": 1701809344977 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "e7930edbdb904536ac42db45", + "revision": "0edbbe2e3503490cac030159", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679263150490, "type": "emprestimo", @@ -91201,53 +91201,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "70d5e0a9915a4099a66c0bd5", + "revision": "f8a5e8ad53d840e2a9a3f8a8", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "2ed8125ea74b458baa46a405", + "revision": "e2b9466a733745c09962fa6c", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1679263150490/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "c0664aec584447d2afee282e", + "revision": "a041e6b1cae1428183de5d15", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, - "revision": "5d6e1d3ca7ca4ecd9a21d619", + "revision": "1c01474df8b54d64b5106eec", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684158510574, "type": "emprestimo", @@ -91263,64 +91263,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "a23602cbce974bcbb22006be", + "revision": "5c216dbdf9f842a6ab245f70", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "7f7d1e0ed7a74a4caada72ad", + "revision": "dd24f84c6d27470f98cfa9da", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306/1684158510574/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "7f4f37a2d1c842a5a633d859", + "revision": "a4d4745dd03745648ec34b22", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202306", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1a0661947db44c2b8f16fcc3", + "revision": "0052e2f6ed9f499bb710d33d", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "af30ba12fbdb465298aad554", + "revision": "1175ae1ef6644471baccd62d", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679263150490, "type": "emprestimo", @@ -91340,53 +91340,53 @@ "value": 1695159884751 } }, - "revision": "9521b0b630584718a69f3253", + "revision": "3033bc2666c84955810f27f8", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "278f5403e7b046a0952755c8", + "revision": "c14d0273594245f3a3ca6bc1", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1679263150490/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "d2aab046aaee4173998893ce", + "revision": "fad1a383014b4628a8d1918f", "revision_nr": 1, - "created": 1701465820570, - "modified": 1701465820570 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, - "revision": "058c3567c7e747b6bb6564bd", + "revision": "48eaf7a0839a434e8a7d5737", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684158510574, "type": "emprestimo", @@ -91406,64 +91406,64 @@ "value": 1695159884809 } }, - "revision": "9e1f541822544e3fa744ccc8", + "revision": "950d60396bfd49199e718f4c", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "157f62c2766340a980e27be5", + "revision": "e64d668d08074266990581d6", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307/1684158510574/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "90d6ee1bef1145879d2607a1", + "revision": "f162409280bb43f880c5a160", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202307", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9ea8c7601044479ea0d4cdae", + "revision": "ce3c6bd9ed5845ab8ad692bf", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "9de64334a15d4ff9ae556f69", + "revision": "5c8a4f76a135488f8bf6f99d", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679263150490, "type": "emprestimo", @@ -91483,53 +91483,53 @@ "value": 1695159884904 } }, - "revision": "6b9d5d8b3668452f841e84ef", + "revision": "e3342cfa88b8450882fe06bc", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "fa66a474795245db89d5619d", + "revision": "231d967cb67746338b2e91a1", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1679263150490/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "537c43cc23984e47aa56f0c3", + "revision": "3ecdbcf199874bb79ae1df5a", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, - "revision": "f7c2a37e52c848738cc2c858", + "revision": "5855ea2cc75644aeb6c40d7b", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684158510574, "type": "emprestimo", @@ -91549,64 +91549,64 @@ "value": 1695159884962 } }, - "revision": "efd76dc997034dd1a47c16d2", + "revision": "368721684dc74755b9213740", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "ac63db15854749ada3d733ae", + "revision": "91ef2eed20994242bdf2e3f4", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308/1684158510574/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "7152c497a7b648b787f31bef", + "revision": "6e6dfb539524451a8ca30ee5", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202308", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9c088fe2403d4d1b9e623327", + "revision": "f27d1b33c9f94560b3b49791", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, - "revision": "51ca723440cc4b4b8c115899", + "revision": "839369bd608944439f295cc2", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684158510574, "type": "emprestimo", @@ -91626,60 +91626,60 @@ "value": 1695159885096 } }, - "revision": "f8b9cae4367b4759a6d40ee9", + "revision": "6c314d903ede440a9e955260", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "f29efba62b444f6180a0915e", + "revision": "f897c11f92e94d0ba74e56b4", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309/1684158510574/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "a68d76ae0c3c430487603041", + "revision": "6dc53d200eca4e369faa30ab", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices/202309", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "abba0a983ffb45208cb1876d", + "revision": "b54d0ee540ee47a28658488a", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3764f568a0fe4b04ba155989", + "revision": "4468a7199bab4546a641001d", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 1000, "limitUsed": 850, @@ -91692,16 +91692,16 @@ "value": 1679261263210 } }, - "revision": "bdac640268dc4304abe18eef", + "revision": "4396520d2f4b4881bf4b988d", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125193903817094830", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1679152336550, "dateValidity": 1679152336550, @@ -91712,29 +91712,29 @@ "value": 1697252400000 } }, - "revision": "c4f33b6d895448a194885d12", + "revision": "32536245ba9a4d7a902c64fe", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "853ccd6f60a24b9db228ce5b", + "revision": "4227fcd2b6444d118adca907", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -91770,40 +91770,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d9df66f478ce4ce89377c6ff", + "revision": "aeaaa6993f924b1da0c29197", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677727950406/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "8c6edd1975a44d0688da98be", + "revision": "553286d6ca044ef2baca8d4e", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "dd9883ed63754d24b847af2d", + "revision": "4da3ea6b90da4389a3483345", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -91839,40 +91839,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "34a1bfe1a97a4ce4a5513e60", + "revision": "0a03b661983e46279e004bda", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677797747321/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "7623a65b99644b0488996b64", + "revision": "fa55763aee804527a0238b49", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344978, + "modified": 1701809344978 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "adced7b24cf8489cb53ae397", + "revision": "ecbdf23d114645de91d466bb", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -91903,27 +91903,27 @@ }, "money_release_status": "rejected" }, - "revision": "1270811aaf0f4c12ba0ada2e", + "revision": "20f004efff10450285571407", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678363438960/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "ef2282db64c24dd3b043bb53", + "revision": "14ce1a79927d4b19b699e58d", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678155991324/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678155991324, @@ -91937,16 +91937,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "055fca0a75814dc5b3c4d4ed", + "revision": "0447cfc38f6b473c8938fc2f", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678155991324", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -91976,66 +91976,66 @@ "history_id": 1678155991324, "description": "Compra de 11439584 IVIP por 1600 BRL" }, - "revision": "b51f838839d6409192d45fe6", + "revision": "f4d25513873d4c2f9b70ed8b", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 1.9800000000000002 }, - "revision": "508e5eb786fe4d67a58051cc", + "revision": "e5d24945c9ec4d03920b142d", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b0e431b0bdb24764a8503e8e", + "revision": "9cd11a093d3241f7a685c879", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "1fe4b4a052e94846ab0a702b", + "revision": "0dac3410a2c6421999b62ac8", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "47033cf3b90b4ec8a5157f30", + "revision": "1f6726079c5b4298a69d5a40", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -92043,60 +92043,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "ebd15ebeb4f342c19c1cd40b", + "revision": "533c5b4d44d644baa1fbdb13", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/payments/55108764779/ticket?caller_id=1310149122&hash=bd26ec14-a4ce-4255-b152-2a7df041f5dd", - "revision": "86a93244c08e4bd7853913f6", + "revision": "e71ab4c1dde642109be5d7fc", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI5ElEQVR42u3dUa7jNgwFUO3A+9+ld+Bi0E6TkFdyBh0UrXz8Eby8xPZx/ghSV+P6Hx3noKWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaX9/dpRj+PH/46/P/j514+z/nx5Ha8L/PXBz3Nf33u/x88PXl9+P60zaGlpaWlpaWlpaWlpH6I93ku28jZd/fVBuWP7CcoZk0/fHzIxaGlpaWlpaWlpaWlpH6AtBWR+jPHpbj24sTj3o058PcGicKWlpaWlpaWlpaWlpX229vxs7K1kpe333gD8qCLLs+QXWlpaWlpaWlpaWlpa2jBm2UrJaf03Pmcoi7ZUkWUwk5aWlpaWlpaWlpaW9snaKb5971yugUsPNO3pjbt+IC0tLS0tLS0tLS0t7UO005SSf/fln2aq0NLS0tLS0tLS0tLS/k+1+eihji2WJH0wWTW3Xg13b6GlpaWlpaWlpaWlpd1be7YKbrrALXTeYsOu/JUDJkvy5DTmhJaWlpaWlpaWlpaWdnft67bnJ/S42yetJJKUL+eK8QzPXIrPUlnS0tLS0tLS0tLS0tLurj1zzn6jHOGO7cKrRXTTkrPvErCseWlpaWlpaWlpaWlpaTfT9tvmdXHTht1kHDNtEFAeN/9KdzOitLS0tLS0tLS0tLS0m2knFV7DT8rLEiH5Pp2ZAKvN13ItSktLS0tLS0tLS0tLu7f2XZa2V+t1YioMS2VZoHmxXa9j86e0tLS0tLS0tLS0tLR7a1sYSdpUbXW5El+SjGmkMq2zy2vlaGlpaWlpaWlpaWlp99Y2RW/dhfPjOrY0UpmOFodSmoeLqUtaWlpaWlpaWlpaWtr9tIuhyTQWOYn7b8vkyv+mdzvydOZNzUtLS0tLS0tLS0tLS7ubNhWBrWwcbdbyvQydrIZrW2b3ec6W5X/epvrT0tLS0tLS0tLS0tJupG0XGe3Utrbtbtfqui6ujXdOb3S3CzYtLS0tLS0tLS0tLe2O2mN2pf5BOS1tpdZKxKt18qbL39KNaGlpaWlpaWlpaWlpd9e2AjLtp3aFEnG0vlxu5022zG6jl4uQf1paWlpaWlpaWlpa2p21eUHaZIVcgeZEknTGdLFdKjSPm5qXlpaWlpaWlpaWlpZ2M+2Y3TG17qbRkJP9sAsq/UDrGU9aWlpaWlpaWlpaWtrdtS2j/2zL1RZBjyt8qhjzXOW12JqNlpaWlpaWlpaWlpb2IdqRUxxTQEl6m7IgcwTJGYY1++bZtLS0tLS0tLS0tLS0z9GmoP7yQcmCLLx222mdWLRpk+3zm0wVWlpaWlpaWlpaWlrarbQ5xTF5JvOXbf/qEarSSbbkdOkcLS0tLS0tLS0tLS3tk7TlIq2GG61rd+Twx1aQ9sj+Uq5Osyq/ybqkpaWlpaWlpaWlpaXdQ1tWr7VokduAkrYQbkKZ/jbt7IOWlpaWlpaWlpaWlvZJ2kLOb/v+1WkLgNe50ybeumLMUSW0tLS0tLS0tLS0tLSP0t4Fj0wmLKfDmnep/unc6+sqkpaWlpaWlpaWlpaWdgNt6+ldOd+/NPZSQEmrBPtKulYnTirQWRVJS0tLS0tLS0tLS0u7qfauJrwWS90W535UkdOfYH1fWlpaWlpaWlpaWlra3bWLOnHS9ksDkq2xV9JHxuf/fumgpaWlpaWlpaWlpaXdXTtt2PUeXKsOr7td2VrWyTULRhl5U2xaWlpaWlpaWlpaWtqHaNsOZxE6DepfPOn1i7mULWqSlpaWlpaWlpaWlpZ2b22p+krt2Da7Lgn+k7iRcka7wHF3PVpaWlpaWlpaWlpa2udo095p00ZcypEs+f65NP2oMVMBWW5+34ukpaWlpaWlpaWlpaXdRdvKweOrirGhWkuuL4SbXnT1Y9DS0tLS0tLS0tLS0u6uTVXfohF3hIc8QgE5QjTkt1OXjUZLS0tLS0tLS0tLS7uztlyklHStL9efr6WKXKHavPIGAbna/KrmpaWlpaWlpaWlpaWl3UX7PvPYm3NtMLN04/qRBjjTWrlcwt5nqtDS0tLS0tLS0tLS0u6nLYXcyCvapnGRrVgcn929Y1Z89u/l02hpaWlpaWlpaWlpaR+gLa221NjLk5ilDJ10/MrgZUpCKVOXtLS0tLS0tLS0tLS0T9SmjP53d1L0gJLWpuup/ouq9Ph6z25aWlpaWlpaWlpaWtp9tFeoCY9FX679NUIX8MjjmCllsm0LcD8jSktLS0tLS0tLS0tLu5G2VG7tZeSgx/x8Yza7OVo9macz73dbo6WlpaWlpaWlpaWl3U87WdGWvrJo7KWkkZRSsp66zJUlLS0tLS0tLS0tLS3tztppSknbGXuyZq005/Ls5pWX073fbbSESlpaWlpaWlpaWlpa2odoSw9u1cRr/cCyiK7PaS5yTfpKunzQ0tLS0tLS0tLS0tI+QJvmJct6t6YdIXTyav279JXyA6Ui9X4XbFpaWlpaWlpaWlpa2l20raO2umbbgW18oiaTky0V8sxL7L5eDUdLS0tLS0tLS0tLS7ufdizaebk6LKkipQw929s8rHl+nphTK2lpaWlpaWlpaWlpaXfWLmSr+cvppthpIdz6cVNVSktLS0tLS0tLS0tL+xztqMcRMvqPuzVw6SUZ36vIyZW/7O7R0tLS0tLS0tLS0tLuo51um5ZGJfskZq4iy/9KkMmZV759U0XS0tLS0tLS0tLS0tJuqV2Ug2OWUrKanGxJI6mDeMxK2LFKKaGlpaWlpaWlpaWlpX2GdrQYkfdVbqliHIt1cWXM8ousE1paWlpaWlpaWlpa2qdry4ULZRI1mbdmS1OXI1y5R03S0tLS0tLS0tLS0tI+R5tbdyPn+5fblnun3P7W8Ssx/mfLNaGlpaWlpaWlpaWlpX2SduShybToLZeSV1gSd7QNsHPe5Lm4JS0tLS0tLS0tLS0t7SO0//2DlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlva3af8AAVry9+WFQ1kAAAAASUVORK5CYII=", - "revision": "b7b57b34fec54a3894ec752f", + "revision": "1acc8b9c91df4f208334300d", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d127175204000053039865406201.985802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter551087647796304A631", - "revision": "39367a8b086b43b2a20bb6a5", + "revision": "1582417ac7bf4d4f9a32bda8", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "89d423be5e634252a8493ebc", + "revision": "f7dcfc20b4674cf7b6b6851b", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -92123,64 +92123,64 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "b79cb9676acb4af3b4340a25", + "revision": "518e4c332efa4169ae5913e7", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1677377774383/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "727f9d46058b4c2e87fbb7c4", + "revision": "3894bf800598419198124735", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "1c0927a187f94600929137a2", + "revision": "42a6e7d3aaba4198bb81382a", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7ed687312bd14f81956751db", + "revision": "2ecc538efebe47dbac58a323", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "9cb0de1962274584be43db71", + "revision": "f589b47b3c6e42f3a0723875", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -92207,27 +92207,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "b61c7933babc406c9b76ff07", + "revision": "089be2de978c434ead4ac23d", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679262602609/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "3e9f9c43c27a4eb49f5292f5", + "revision": "2921b56019814ad9af863e09", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679266870095/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679266870095, @@ -92241,16 +92241,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b21ffdcc7ffb40508ff430a4", + "revision": "28da23676cc645f3b897e0df", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679266870095", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -92280,53 +92280,53 @@ "history_id": 1679266870095, "description": "Compra de 17473846 IVIP por 3000 BRL" }, - "revision": "ec5fda6dada54ea5947a6791", + "revision": "76b50092b0314b62aabcfe7b", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "19116d1dd7284b278b500f05", + "revision": "a4f8d69d70984e968f5008e9", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4a013e8824154f1ebf9b8a82", + "revision": "4113e71cefa548dd9321b608", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "12daee48a91645de9b04b6ad", + "revision": "2b02df9e6caa4ee2b908a907", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -92362,40 +92362,40 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "f65a784f1ff24f59941d6756", + "revision": "dd0669063a8d4374b319137d", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1678654062362/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "30bd6c9f54ad482ea2b393b6", + "revision": "380a21e659f7439291bcdf28", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "8d7d3d5d9b484ecbb7e26184", + "revision": "fd00d9f2010840179e038bb0", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -92421,40 +92421,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "1f90b5b3e2ec4f41ab4bf186", + "revision": "e1edeac2a05b4cebb551cb5b", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1679871546323/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "76d49f67713743789890dea2", + "revision": "f08b0e3591354c85ae876e9a", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "ca0dc6a3fef94f7bbcb2fa44", + "revision": "8f61acd4119d478e81ac06a5", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -92490,27 +92490,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "49dd9a9679144d99bb722de9", + "revision": "e7999b7f004c48e3ab1cee49", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682619072709/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 360,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "271fd81dc922462eb4bfb0f7", + "revision": "eb654e16068f4c7fa0ab30e6", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682620551210/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -92526,16 +92526,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "5f6c660d8096404896efa388", + "revision": "a43e109272c84268a836fa9f", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682620551210", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -92565,40 +92565,40 @@ "currency_id": "BRL", "history_id": 1682620551210 }, - "revision": "fd6768d01e824daa9afa23a6", + "revision": "9bf9a06d6fd64bd0bfdcb250", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1682620551210/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "37b0a20910784aea842c634b", + "revision": "38fb3ff0e8004de8bcfda59b", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344979, + "modified": 1701809344979 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "360cacb3f340472da7b43776", + "revision": "63494b03e1a8405eb0e7e1a2", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -92634,40 +92634,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "2aee3a194c1e4d4884e24a1f", + "revision": "29fe7ab8786a4ab08d5f4f49", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683422461919/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "b0daf46de5634b9fad008ade", + "revision": "29134986f3554f51ab132e2c", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "5d474d7f362a46788b685d25", + "revision": "d6e741909f244cfbb685ade5", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -92703,27 +92703,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "7491feeaadfc467482f689fa", + "revision": "77804e9ecda34783849e146d", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947136546/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "3a5265f926ff44eb84e544b6", + "revision": "d84f9675e2864f8eab2f3f64", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947563493/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 3, @@ -92739,16 +92739,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "771015a6edfe4a1bbe1c2c84", + "revision": "1b0d51b849164227bf22a4c5", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947563493", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -92778,40 +92778,40 @@ "currency_id": "BRL", "history_id": 1683947563493 }, - "revision": "90399d740d7f405398a6ee86", + "revision": "e87ebb729db14b9b98521fb8", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683947563493/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 3 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "59a6d06ad5f34e6287bc1db4", + "revision": "09156d45d7094fcfb7b3631d", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "a89e525cb6b444b8b64d0e74", + "revision": "792039d782ed4df5b738e961", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -92847,27 +92847,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f1b8cfdb47124576b1759c11", + "revision": "25b7740839c346b9b6454ec0", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1683948027523/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 66,32 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "1734afd4535c4c94be23b147", + "revision": "c82d8934079d412a9840ae0b", "revision_nr": 1, - "created": 1701465820571, - "modified": 1701465820571 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684018958560/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684018958560, @@ -92881,16 +92881,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "1bbe3d900297472a9fbbda1b", + "revision": "55c172af269940e3bbbb6e4c", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684018958560", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -92920,29 +92920,29 @@ "history_id": 1684018958560, "description": "Compra de 574.594,00 IVIP por 106,32 BRL" }, - "revision": "e273a9b23b274f6381673552", + "revision": "ec2b2d9b055f4b0e91e37ee5", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "76deab627a8946799bb11144", + "revision": "93eb0ea3f75846e99bfae65b", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -92978,40 +92978,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "fddadbc99ef44a9a9f3cf34c", + "revision": "bc29b6538f5a42c28c8f41a8", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684158010439/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 130,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "7bc3ab0440704564b2657a7e", + "revision": "69da17adbd4f4640960a22ef", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "6693b8445c0840e8b30354ea", + "revision": "d28191d571c040089379484d", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -93047,27 +93047,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "6bf542cb1ef243fab6a2fac7", + "revision": "a887ab35797840d89e3dc3e4", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684458859068/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 55,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "4ce71af4d1db4583a5fd5e3a", + "revision": "7252ef67638b44eaaf88ae4f", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684624396163/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624396163, @@ -93081,16 +93081,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "f08f143ed8a94ba78be957ba", + "revision": "efc20b11b4914875be4ae4bd", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1684624396163", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -93120,16 +93120,16 @@ "history_id": 1684624396163, "description": "Compra de 901.085,00 IVIP por 185,00 BRL" }, - "revision": "7a0cf924062a4bf784441bdb", + "revision": "ca5d1f681c5f462287527f55", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685667418933/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685667418933, @@ -93143,16 +93143,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "5a8e948bb5ac4c7dabe43ed6", + "revision": "6a2f1d23f2c0496b81ba336f", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685667418933", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -93181,27 +93181,27 @@ "history_id": 1685667418933, "wasDebited": true }, - "revision": "6fe63f865eeb4c87aac9f0ab", + "revision": "dd05d81157154ac4ba423897", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685667418933/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "8f80f18a9252438499a76dc6", + "revision": "ef0030590a5749bba8b02f01", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668065254/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685668065254, @@ -93215,16 +93215,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "1e1c2d056e7a44b29df3cdc4", + "revision": "812fb0077661480d8370a78e", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668065254", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -93252,27 +93252,27 @@ "currency_id": "IVIP", "history_id": 1685668065254 }, - "revision": "9f9aef07bb934ead8ac9fa68", + "revision": "9fb870804ba7495faf1f1e46", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668065254/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 4.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "1db35cafc03c42488c9f7ba7", + "revision": "f708437ce2784480b3f1dc89", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344980, + "modified": 1701809344980 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668086801/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685668086801, @@ -93286,16 +93286,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "75f1ab423bf349ecade53918", + "revision": "9d767ec592ce4ed095a0240b", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668086801", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -93323,27 +93323,27 @@ "currency_id": "IVIP", "history_id": 1685668086801 }, - "revision": "c09ba9ecd91a4bde88021bc3", + "revision": "7a8a5b5ad9184eb58685f174", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668086801/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "de80dc74462640a0a429f406", + "revision": "2dc58ef6a811461ab3c1ce41", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668239552/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685668239552, @@ -93357,16 +93357,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "6b24ee51b33b40d58e0676bd", + "revision": "fafd1055cf68453e8a91e7e5", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668239552", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -93394,40 +93394,40 @@ "currency_id": "IVIP", "history_id": 1685668239552 }, - "revision": "56049f7503e045159a95232e", + "revision": "e2f2e6f91b8649c7bc78299a", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1685668239552/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", - "revision": "f312fa574f9a499182c2dd1b", + "revision": "b1a172dc91294e21abcb7ac0", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "c4c8b50306d84bb7b963005d", + "revision": "73dbec400c4b45c0a33cf766", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -93463,27 +93463,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "940250bea26e427ba1016bc4", + "revision": "d244d57cbbea4d729495f2d0", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686858477834/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 400,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "f4ae3b5f9bd5404b89b1625f", + "revision": "de9d41665d4e42579715d04f", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859298764/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 2, @@ -93499,16 +93499,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b70cc5a974b542b6985ea49c", + "revision": "dea41a104e6f460289e17742", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859298764", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -93538,27 +93538,27 @@ "currency_id": "BRL", "history_id": 1686859298764 }, - "revision": "b726b1782c664c18a82e8b4d", + "revision": "e1172f91694847b1b61f63df", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859298764/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 2 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "9aaa9246fc6144c58dcca198", + "revision": "bb0ba0c6ec374ac1b20dd530", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859421606/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1686859421606, @@ -93572,16 +93572,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "550ef6d6b32a4d1db4372ff8", + "revision": "03e0d987c88c421fb5843bae", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1686859421606", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -93611,16 +93611,16 @@ "history_id": 1686859421606, "description": "Compra de 256.510,00 IVIP por 40,00 BRL" }, - "revision": "bf10690f5bd24470bbebf2f0", + "revision": "f93a13a8098e480485b9e1d0", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688400452024/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688400452024, @@ -93634,16 +93634,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "9c50b186b51641bba9ac3493", + "revision": "ea50b72dd3a64130b760e85f", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688400452024", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -93672,27 +93672,27 @@ "history_id": 1688400452024, "wasDebited": true }, - "revision": "b808af02b5f04629ac28560e", + "revision": "30417863b76343a78240159c", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688400452024/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "9cec6e362bb04f23bddea1a2", + "revision": "7d5b70ff45f64d96a79503b1", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688403103597/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688403103597, @@ -93706,16 +93706,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "2730f793d7444fb59215256c", + "revision": "ea46feb4d99b4c92877b13f7", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688403103597", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -93743,40 +93743,40 @@ "currency_id": "IVIP", "history_id": 1688403103597 }, - "revision": "0d7ba8d3c0a44bbca430c2f3", + "revision": "07146b2557cf4cf784de30fc", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688403103597/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "dddd5f256cf843459095802f", + "revision": "d643f40a13fc4f4e9f80b6c0", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "b0a93c1e502a45d5ac1387ae", + "revision": "c6c8c2963a784e62a8a5f077", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -93802,40 +93802,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "c1c193387e284bdb8bb92996", + "revision": "4516ac723e5b41fe8a572147", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1688735047266/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 8.000.000,00 IVIP para a carteira 0x3e35E81481645fafD6C410b1833719A8E633ae35", - "revision": "b7c50cafb6a44357929f0d80", + "revision": "e57ae91b1c8d4a1392baf894", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "2249d44456954206af139f96", + "revision": "bbcabb8b74a445b89742a657", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344982, + "modified": 1701809344982 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -93861,27 +93861,27 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "daf1515c829145d8928a8964", + "revision": "a407da4472b1476d82a88b01", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344982, + "modified": 1701809344982 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1689292258052/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 11.000.000,00 IVIP para a carteira 0x3e35E81481645fafD6C410b1833719A8E633ae35", - "revision": "be9353492b9543ed993d5a6a", + "revision": "f7fd6ea55b084235a8114b84", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344981, + "modified": 1701809344981 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691081627683/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1691081627683, @@ -93895,16 +93895,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "ce7bae747ab54dc2a65a8d3c", + "revision": "1ff809050aa942d396ce4b00", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344982, + "modified": 1701809344982 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691081627683", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -93933,27 +93933,27 @@ "history_id": 1691081627683, "wasDebited": true }, - "revision": "4cc329d667e9449d9b2ffd95", + "revision": "cbf113fde3de4b0383afd18e", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344982, + "modified": 1701809344982 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691081627683/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "e2d346377f7d4b5fb7f65e20", + "revision": "d6b2cb8e84714e20b0650d63", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344982, + "modified": 1701809344982 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691082859805, "net_received_amount": 0, @@ -93965,27 +93965,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8114a4571c0e470bb4442eee", + "revision": "0926ae6a757c44cdad29205c", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344982, + "modified": 1701809344982 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1691082859805", - "revision": "f963a0effc194a31bf459611", + "revision": "37c9be7469504dee87c6b2c0", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344982, + "modified": 1701809344982 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -94013,27 +94013,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "416af34b784640e7a864493f", + "revision": "b8e67af3ba3d42b9bc206537", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344982, + "modified": 1701809344982 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691082859805/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "6575b5710c0b405c92f2568a", + "revision": "877ff669f48042ca9ed07034", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344982, + "modified": 1701809344982 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -94041,16 +94041,16 @@ "value": 1694126049576 } }, - "revision": "4743077bc07949829af75415", + "revision": "ff94e566593040909b606e11", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344982, + "modified": 1701809344982 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691534049577, "net_received_amount": 0, @@ -94062,27 +94062,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ac907f2d832e4472bab13cdc", + "revision": "3f540e6afb9e4b9293754f6f", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344983, + "modified": 1701809344983 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1691534049577", - "revision": "d5403002937241c4a2d2e148", + "revision": "b60e4d9fdd61496fbceb52a9", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344983, + "modified": 1701809344983 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -94116,27 +94116,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "866c7f3e0a4c4362a6244c69", + "revision": "84459735075a4693afd47073", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344983, + "modified": 1701809344983 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1691534049577/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 360,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "2212aabc151b43868d9b8e87", + "revision": "010ab9324d504b76b0067dda", "revision_nr": 1, - "created": 1701465820572, - "modified": 1701465820572 + "created": 1701809344982, + "modified": 1701809344982 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693761380582, "net_received_amount": 0, @@ -94148,27 +94148,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "99fd790890e54c63af6ade15", + "revision": "969d8e3995b142c091b82d98", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344983, + "modified": 1701809344983 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1693761380582", - "revision": "0d2d3f4bd74042e08d5ff985", + "revision": "ba1b59a641ec4ebfb79d0d32", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344983, + "modified": 1701809344983 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -94196,27 +94196,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "7c1c1493bc02434babb1e56f", + "revision": "1bd4055c373149d8bb409e0c", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344983, + "modified": 1701809344983 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693761380582/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "9f7f5d9afb7e4432823d6d4d", + "revision": "cb32529f56dc47af99e0e4cf", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344983, + "modified": 1701809344983 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693780032051, "net_received_amount": 0, @@ -94228,27 +94228,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "0a2081fd98b442c188d88a77", + "revision": "50adeebade9241cfa7038b0c", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344983, + "modified": 1701809344983 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1693780032051", - "revision": "42659c36611e47b7abe3c20e", + "revision": "deecdeaaef724d07a1d7a08c", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344983, + "modified": 1701809344983 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -94276,27 +94276,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "a37d80c055734c958098fb25", + "revision": "bb828127ddf4421c9fba4f28", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344983, + "modified": 1701809344983 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1693780032051/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "7a31ebd0892e461bbb7da20f", + "revision": "8d723cdb057a42d58e54d55a", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344983, + "modified": 1701809344983 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -94304,16 +94304,16 @@ "value": 1697914050195 } }, - "revision": "4275b5809ef243dd909b2141", + "revision": "20db09bd11744828ad1b836f", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344983, + "modified": 1701809344983 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695322050196, "net_received_amount": 0, @@ -94325,27 +94325,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "974701e38de04edda0aef06d", + "revision": "53cf1c238cae44d5a924af75", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344983, + "modified": 1701809344983 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695322050196", - "revision": "b4bac040bec44700ae104719", + "revision": "745fca4b2ffd411d918fdc9f", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344983, + "modified": 1701809344983 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -94379,27 +94379,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "8058458be2c9442190c85bdc", + "revision": "b16618716f034525b9b1c8b4", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344983, + "modified": 1701809344983 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695322050196/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 720,00 BRL para a carteira iVip 1257.9763.0999.3744-60", - "revision": "cc5eac30f30e4a07a1dd7e3a", + "revision": "fd9b975e35904205baf93aa7", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344983, + "modified": 1701809344983 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695423451385, "net_received_amount": 0, @@ -94413,27 +94413,27 @@ "installment_paid": 4, "installments_payable": 6 }, - "revision": "b200e6989c2643feaf3077de", + "revision": "abcbc3c424ff4e519932dd09", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451385", - "revision": "d78c88a049264eabb1e0a490", + "revision": "76f385b947854f978fb0694a", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -94461,27 +94461,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "b3b7c9354c8e4b55853a7315", + "revision": "559d209927c14495a3d5cf40", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451385/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 4 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "06792824587245c9912a321a", + "revision": "676645eda7bd454bb4d9cf49", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344983, + "modified": 1701809344983 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695423451505, "net_received_amount": 0, @@ -94495,27 +94495,27 @@ "installment_paid": 5, "installments_payable": 5 }, - "revision": "5d7e7e1df7f14a2aa4d08490", + "revision": "4452cd1fcbe642509f605f35", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451505", - "revision": "d4ab2a828d1e4959afe08bf3", + "revision": "afeb6be48b3c4b7b94d9cb17", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -94543,27 +94543,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "1e4ba5361430407ba6fc8d66", + "revision": "3097512c525d4d2a92195724", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451505/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 5 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "43839161b14d42f9aa261016", + "revision": "8b5661ee7d8344dd842ac166", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1695423451671, "net_received_amount": 0, @@ -94577,27 +94577,27 @@ "installment_paid": 6, "installments_payable": 4 }, - "revision": "40d21b093f884b0090b63084", + "revision": "d1cce972bf6d496888c0574c", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451671", - "revision": "cd6448eefc7a46feac22f052", + "revision": "2ee0f2219bfd44d8a1d6a167", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -94625,27 +94625,27 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "acae5cecf51845cfb6e16587", + "revision": "47d0a19e18e3481f869de2ce", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1695423451671/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 6 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "42d929989f72464c84fb6fd9", + "revision": "08f1803544194e8ebd5a0fd0", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696380984974, "net_received_amount": 0, @@ -94657,27 +94657,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "09e501d832454a15bd1efbd4", + "revision": "58b0e87865cd44818fddf81a", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380984974", - "revision": "38cc83b0efd641b79fe2389b", + "revision": "959ca656a77f4204835f2459", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -94706,27 +94706,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c92567f1784249d39fa4f1b7", + "revision": "066c228508ad4a96b36c8fa0", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984974/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "3dabe898c7104cf4866da46d", + "revision": "ef68e0e1850148fb8b337def", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696380984991, "net_received_amount": 0, @@ -94738,27 +94738,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "114e0c5a2ff34872920bd274", + "revision": "c4685a53197b471bb44d52f9", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380984991", - "revision": "471429bb5622426d823d9144", + "revision": "366cd221f11340a193310ffe", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -94787,27 +94787,27 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "9e4b3729f87147b7844da185", + "revision": "50b5b584ac004baca3acb4ba", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380984991/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "e9a00bde509b4abfac397d12", + "revision": "711ce465b85d48c1adcf7004", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696380985024, "net_received_amount": 0, @@ -94819,27 +94819,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "3a892af626a84e66b3d46fe6", + "revision": "1a1b60828ed54c2e96aaa2c9", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380985024", - "revision": "e5b3d2ae209a4efb8e025a4b", + "revision": "43b0d4ac9b754606ac3a0ac9", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -94868,27 +94868,27 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "d71928434b9c4b67b9cd32bf", + "revision": "37095b76d1d446eabc57e11a", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985024/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "fe6c5b5bece64d9bb6ac99b2", + "revision": "1fe1070a97164eadaf976938", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344984, + "modified": 1701809344984 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696380985244, "net_received_amount": 0, @@ -94900,27 +94900,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1be05f4e9d29485e944d472b", + "revision": "c2aae996ab95421192eaef83", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344985, + "modified": 1701809344985 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380985244", - "revision": "8411e8983a614e9a8ca81d16", + "revision": "56f2bb3d59c34c53b0afd964", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344985, + "modified": 1701809344985 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -94949,27 +94949,27 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "4dcc373480294f519b4f02ba", + "revision": "a11e763ed1674c0cbf8eefcd", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344985, + "modified": 1701809344985 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696380985244/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "de027a970f79459dadc22ea4", + "revision": "068779adec4f479a9686e1b9", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344985, + "modified": 1701809344985 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696384232144, "net_received_amount": 0, @@ -94981,27 +94981,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "34def980ab6e48e482051a67", + "revision": "d4187ef679d343a3be207bbf", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344985, + "modified": 1701809344985 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384232144", - "revision": "3840e971542d405ca4baaa20", + "revision": "a51037f1d75744c09357d8e0", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344985, + "modified": 1701809344985 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -95030,27 +95030,27 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "a7d4391e2c6c4568b928ec52", + "revision": "a0ef8059b1284e2bad9e9a8e", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344985, + "modified": 1701809344985 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384232144/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "3cc35c11828c4892b7168383", + "revision": "1e3f21ce59d042b8bc95c683", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344985, + "modified": 1701809344985 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696384243583, "net_received_amount": 0, @@ -95062,27 +95062,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d806f9cc5dfd44a8b787a89a", + "revision": "4c19b0343abd42fead2818a3", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344985, + "modified": 1701809344985 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384243583", - "revision": "d1b8e896f20a47bba0c97d5d", + "revision": "1e543d9f636544f394ce73f7", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344985, + "modified": 1701809344985 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -95111,27 +95111,27 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "4698bec96a364e4b9a8698b1", + "revision": "ac254b343f7342a0981e7466", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344985, + "modified": 1701809344985 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243583/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "03fdbf4a770046039d4b0ea6", + "revision": "a4fadae1b8b64a76ac2fb93c", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344985, + "modified": 1701809344985 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696384243588, "net_received_amount": 0, @@ -95143,27 +95143,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "108a87c73939402cb398be26", + "revision": "cb1188d8ce6b48a7897d118d", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344985, + "modified": 1701809344985 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384243588", - "revision": "d770bdd3d4724040a685b81e", + "revision": "c8e1bbe233cd437b8a10474a", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344985, + "modified": 1701809344985 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -95192,27 +95192,27 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "8231e20520a64a21bf5307db", + "revision": "a8c2b419a453474fbcbc333f", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344985, + "modified": 1701809344985 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696384243588/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "c99d1b0439be423b83eed64c", + "revision": "347a861755ea4bcbb823d515", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344985, + "modified": 1701809344985 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696406601868, "net_received_amount": 0, @@ -95224,27 +95224,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "07948c3fb77848c69f9d3bd7", + "revision": "2b77d926917849538e05cd5a", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696406601868", - "revision": "6122fedb558c4ecd9319c654", + "revision": "ebbe992d642e41789703f045", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -95273,53 +95273,53 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c4b9be851e1747fa86c66a0b", + "revision": "0a16fe08fd0a4784893d1fb0", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history/1696406601868/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "b6ab7390848e47d4abfb7a02", + "revision": "692d131eafb64141ab8cc893", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a507e4c08f2c4f6c80d6d14a", + "revision": "45d63302ed634ea88a2be049", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "2570374bde664563bba0e46c", + "revision": "0f727c1f0f5944dfa8da2fb9", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679262602609, "type": "emprestimo", @@ -95335,64 +95335,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "52a78a826a6c4b25bb6dc528", + "revision": "cc29af8c6e2b4c35b5eb3cb2", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "06b9dae0e46e488698f33f5c", + "revision": "d642a9c029374014b44fdfc0", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304/1679262602609/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "331dcfe9d622470e8af48fd9", + "revision": "6c65eccb003b478a9fbf68a9", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202304", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "d0e2397dbef54712a5a37c27", + "revision": "f239a9a3dbef4b589f29ef56", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "eee4a9c06064413b9fcac324", + "revision": "01bbbcfa1d3a407b9d89e20c", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679262602609, "type": "emprestimo", @@ -95408,64 +95408,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "928e2050ef1b45ffbe62f24b", + "revision": "345a334ed1a14c6ea357cea1", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "19273047f41a4550babff869", + "revision": "7b0297085437426daaee3841", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305/1679262602609/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "3da090ccfdf04f7f8f6431ca", + "revision": "f1f22f9d6dc741b19672e33f", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202305", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "993b6ba92b614353a42040c5", + "revision": "0ae3374311cd46f6a22c0ae5", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "8bdbbf9b9322430f90b380ef", + "revision": "0cc7bf11a63c4731ad513cff", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679262602609, "type": "emprestimo", @@ -95481,64 +95481,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "358a4c003f0a47c780bd8004", + "revision": "b45dfd1f7461446d922f98d2", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "76f7125cf31049a585361236", + "revision": "75514a7143864f51b49531fc", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306/1679262602609/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "cdd13b4148cf45ad8d6e2369", + "revision": "98d1b9b2640c480094dd7a5f", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202306", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7259689f502c46dead175bc8", + "revision": "2ecfc2f36daf43b5be2e9a5c", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344990, + "modified": 1701809344990 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "929e70a1061342e8a576ae26", + "revision": "82a7769286fd4fc2b5450ec1", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679262602609, "type": "emprestimo", @@ -95558,64 +95558,64 @@ "value": 1695423451406 } }, - "revision": "679d0cfcbae746d1ba130d6f", + "revision": "835126add6ca4509a79dd189", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "21d12f3bd2d1418e951cdf71", + "revision": "05d8ce51ecbb413797f3c92c", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307/1679262602609/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "dfef0708f6ea405aa134878d", + "revision": "0a42a54158484d5b979016b9", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202307", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5733f2c3daa3469e9eef033c", + "revision": "18f8530e3a97452c806446bb", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "03b301ae47e0403c96549e66", + "revision": "634e096746b146d6b22aaa8c", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679262602609, "type": "emprestimo", @@ -95635,64 +95635,64 @@ "value": 1695423451526 } }, - "revision": "56327c6f598c4daea16cb37f", + "revision": "b3f25a800c874f299dc113b6", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "a5611e544a664683a03b0579", + "revision": "5d90ffea5fdb4271a87a628f", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308/1679262602609/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "2b0f2aab4ded4917bfd3a344", + "revision": "78a13b16a72641429d3c109e", "revision_nr": 1, - "created": 1701465820573, - "modified": 1701465820573 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202308", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8abd37eb013f434f99431106", + "revision": "a3b5280272d24c5495a52ed0", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "033928c18e7d4dc7abe510df", + "revision": "42f74156f0ce40c7b01e2fe8", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679262602609, "type": "emprestimo", @@ -95712,64 +95712,64 @@ "value": 1695423451684 } }, - "revision": "63bcb1ea6030470fb3d6f1e5", + "revision": "95b3d6300dc44b0a8643d4ae", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "f4eb296535a642a1848f92f6", + "revision": "7a4cc0145d2d4ed79c519679", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309/1679262602609/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "e564d8e1856942e2a4bb95d7", + "revision": "625fe18d476f4b60abc9c2a1", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202309", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "d12dbe4bcde14c699a276ae4", + "revision": "eaad2e2715ed40cf9c26a12d", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "16454fa6f6d247b1b4389f59", + "revision": "cbeaa1d38c9042eab2343ae8", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679262602609, "type": "emprestimo", @@ -95784,64 +95784,64 @@ "history_id": 1679262602609, "currency_id": "BRL" }, - "revision": "db2ac8ba7450482f9dcd61c9", + "revision": "cd90bf48345c476480852ca6", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "889ca40552304939a62c3353", + "revision": "85495d3ee9b645139e93aea4", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310/1679262602609/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "0dfe19c2456b4f02a7443a2c", + "revision": "50a8f39624774f97b0015f8b", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202310", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c5ab0cdca3b14487bf0e1afb", + "revision": "cc7286823c2147bd8efb71de", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "217478d21de741a88f65fa06", + "revision": "627266b4eb284fe2b47408fc", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679262602609, "type": "emprestimo", @@ -95856,64 +95856,64 @@ "history_id": 1679262602609, "currency_id": "BRL" }, - "revision": "4bccd1cb58244b3091326920", + "revision": "7df86b54de0448bc9639492e", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "56c974569a154a14bf99f98d", + "revision": "78894f5c55c44e70bca80cc2", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311/1679262602609/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "dcd39068fc2a470aab4e6af8", + "revision": "2f9c236a3d03496d818b1600", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202311", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c27a38103d334ee088d6d34b", + "revision": "4d6853b1567b45a381a27f3b", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "a040a58372554b238ada46a6", + "revision": "b0a2925d04344d1caf1938fa", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679262602609, "type": "emprestimo", @@ -95928,64 +95928,64 @@ "history_id": 1679262602609, "currency_id": "BRL" }, - "revision": "8a53ad7f74e947929d9631f9", + "revision": "dc84f32052bd4b3da08dfa19", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "e6b3f4f7a78b404ba4289b74", + "revision": "4f3bb8c742184e4c99b0121c", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312/1679262602609/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "db9ec4cac79a42598f7b7fb6", + "revision": "dab91b1040474858812532c3", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202312", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "702a57234fe64c9986d0fbfe", + "revision": "e952c2b175b14dabbae9e20e", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "e05455240ea94bf98a63470e", + "revision": "c42a77fc4088408fa386e8af", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679262602609, "type": "emprestimo", @@ -96000,60 +96000,60 @@ "history_id": 1679262602609, "currency_id": "BRL" }, - "revision": "cdae4622995d4036bad1e893", + "revision": "bf06009d6e7941d182a51fdd", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "3e297451f02e40fbaf340601", + "revision": "fdfd643b3fb24357b90cdf2f", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401/1679262602609/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "e0002c367f974d9a86448500", + "revision": "a370c1b697314ca78d016e80", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices/202401", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "22c3212522f148e9a1ae46ee", + "revision": "cecaec8240e04568a6f62991", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "82f51202b6f04fae9ff40656", + "revision": "864fe37560664c099039b5a4", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 3000, "limitUsed": 2100, @@ -96066,42 +96066,42 @@ "value": 1679260956380 } }, - "revision": "3c4377648a4141219188d3a3", + "revision": "a11614311c12472f98874143", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "9285619.00000000", "symbol": "IVIP", "value": 990 }, - "revision": "dc133951f4bf4c4380076a9f", + "revision": "6cce0c74c84640b3b00e6bec", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5a88d92045a54276b39f5eda", + "revision": "2f8de7073e9e4a6691178a89", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/125797630999374460", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677377704211, "dateValidity": 1679033074324, @@ -96112,42 +96112,42 @@ "value": 1697425200000 } }, - "revision": "505e124efa4e44faa3dd308a", + "revision": "dabcea9bd11b4fd294ff2ddf", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "BRL", "available": "454.90000000", "value": 90.844 }, - "revision": "fdd2d54cac804ef4851e4229", + "revision": "f2608138a1534dd2965f5ec9", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ab3c5e74ad0f41448ab0ee5b", + "revision": "ab789c77e8e3455ab13b4346", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679266939492, @@ -96161,16 +96161,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "e0bb9eef3c554346aa11d7e7", + "revision": "54a56b20c27740e4b25c5418", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -96199,27 +96199,27 @@ "currency_id": "BRL", "history_id": 1679266939492 }, - "revision": "239a430241eb477699396e81", + "revision": "2c4a5fed588443d389e62646", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266939492/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "9d4ddee1901e40c48aea6713", + "revision": "13f94d363691414aba84db16", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266973884/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679266973884, @@ -96233,16 +96233,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "aba7a2cf16a64aa1b1e7d11b", + "revision": "ed0ea8453d404887b434bab1", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266973884", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -96271,27 +96271,27 @@ "currency_id": "BRL", "history_id": 1679266973884 }, - "revision": "e144cc3c84b648ccbbabf4aa", + "revision": "c9b4aa50b87a4b36a4f505f3", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679266973884/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "d8642c546a364b4b9e0a8a59", + "revision": "605e4c05fe2743f79dad1c9b", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679267111761/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679267111761, @@ -96305,16 +96305,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "3c82e35ed4d44933be9a0797", + "revision": "e150e3311da74ca2a77724ff", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679267111761", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -96343,27 +96343,27 @@ "currency_id": "BRL", "history_id": 1679267111761 }, - "revision": "b461c398c22f4e52b9e4faec", + "revision": "022a8110c4404955a2e3e824", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679267111761/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "d49c41793cd34741b7c86d77", + "revision": "1c3ab2a99a8c455eb231e3f4", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679872001608/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679872001608, @@ -96377,16 +96377,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "a7d57775ad0d40f284b08828", + "revision": "57a621a41ee849a29d4b6906", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679872001608", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -96415,27 +96415,27 @@ "currency_id": "BRL", "history_id": 1679872001608 }, - "revision": "d24daef5035b4ec4808ca50b", + "revision": "220f4b402b6c44d399931238", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1679872001608/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "dc9b7ccc7d3d4bc0abb5330a", + "revision": "7a483fb1404a49b6a02bf7e2", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344991, + "modified": 1701809344991 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684018958586/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684018958586, @@ -96449,16 +96449,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d582c362292b444b8e368c32", + "revision": "aa4b55b3cad743bcafe54cb2", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684018958586", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -96487,27 +96487,27 @@ "currency_id": "BRL", "history_id": 1684018958586 }, - "revision": "8b8d33bd13b74f5d8b6e81ac", + "revision": "8a97e27b66ea44e69c3bb4f1", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684018958586/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "f30c284bb60648f79058bb1e", + "revision": "5cef23322a4f4427b1096e8f", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684348450676/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684348450676, @@ -96521,16 +96521,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "79ef25a009e247df9e2b664a", + "revision": "7b1b6c812a8d44c893479fa0", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684348450676", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -96559,27 +96559,27 @@ "currency_id": "BRL", "history_id": 1684348450676 }, - "revision": "f061b52a83884c828d668a06", + "revision": "a7172b07287c41a3a2f9d0a1", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684348450676/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "ee8c2b0cdb354d2cb6ff804f", + "revision": "489a4cafb90a42ce8086ac90", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624165029/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624165029, @@ -96593,16 +96593,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "61ad8fa323ca4b61bcdd928a", + "revision": "8c9a9a957f5a4987b851fcf6", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624165029", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -96631,27 +96631,27 @@ "currency_id": "BRL", "history_id": 1684624165029 }, - "revision": "f683d78d37e24b399f6aefcb", + "revision": "566e06032ac24e1b8b243bcd", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624165029/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "77a9b604f9cb48c3ac937e42", + "revision": "19ba39912ec942bd9521ea88", "revision_nr": 1, - "created": 1701465820574, - "modified": 1701465820574 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624981228/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624981228, @@ -96665,16 +96665,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "5942cfda22c640bf97833a90", + "revision": "4bcc6f79f8d14014b6621b44", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624981228", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -96703,101 +96703,101 @@ "currency_id": "BRL", "history_id": 1684624981228 }, - "revision": "034bd9625ee54718889c1495", + "revision": "38c9b8beacc646319fc50a65", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history/1684624981228/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "612b290066f5420ab49518e0", + "revision": "110883122afa42608ba122f6", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "75590b3321f24a6f9b500074", + "revision": "d71191b0c41f443ca59afd7a", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/126091022706906300", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677885325302, "dateValidity": 1677929034802, "totalValue": 89.197, "currencyType": "USD" }, - "revision": "d3d313b883724a6baa072ed7", + "revision": "50ef1815a446451b87d4834c", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/127785137141729800/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5af36c9b34744feebe30b670", + "revision": "49f4872f48134e8f80d7a17a", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/127785137141729800/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c2b5e2f46a7c4789862c50a8", + "revision": "065227c4abdf40b8a82b3afc", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/127785137141729800/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "fb74e4a31f4d44b6a138efd3", + "revision": "cb5afd1bf0474ac29f6f4b50", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/127785137141729800/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "bab2a1566965409faacca3ae", + "revision": "0f33415ba67d48aca990d196", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/127785137141729800", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1695173270592, "dateValidity": 1695173270620, @@ -96807,93 +96807,93 @@ "value": 1695178800000 } }, - "revision": "8daf64024e1d46b7ac838ce0", + "revision": "e4feccb656ad4b12a6ebee3f", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/127995869380983060/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6c7cff6fd4fa478188bead7a", + "revision": "af0182fb9a20436aba51d2f0", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/127995869380983060/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "294024d00ad44de592955178", + "revision": "f5f3823dfa2c4512835aa753", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/127995869380983060", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678268990831, "dateValidity": 1678279790864, "totalValue": 0, "currencyType": "USD" }, - "revision": "4cf37c497e1b4851aa81c17b", + "revision": "e28a78cff9d14aae91b2775f", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "15415938.00000000", "symbol": "IVIP", "value": 3434.39 }, - "revision": "ed7cc8d89b1f4a66a8816dc6", + "revision": "1726ad7de27a4712a2ea10cf", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b09a157373e64faba79ee2af", + "revision": "f66285b253c04c66b87a2538", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "63d97ba393b14f67bfe49fb6", + "revision": "cc3b6f8f26334ecbb923623d", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -96929,40 +96929,40 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "bdf94b7b24b448e89971e0cb", + "revision": "2cb57eb8e67740c391181d1d", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1677726769800/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80", - "revision": "3525644cca554fbd8ccd1f5c", + "revision": "c43a324d34c44c22a44af5e8", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "f60a2a3e2e304ebdb2ef9e39", + "revision": "87de1c1848a04491b50bd649", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -96998,27 +96998,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "7a2fa2e7d2b84928b44a3ad9", + "revision": "324510535ee24ddd8e6e338e", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678032850996/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1287.0114.4173.8232-80", - "revision": "8e945836282f493fae011868", + "revision": "0e589430e74544d49c9aaeee", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678076967863/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678076967863, @@ -97032,16 +97032,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "3c98cd1568f046ee9187bd7c", + "revision": "ae97eadeb69b4890b0c667f9", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1678076967863", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -97071,53 +97071,53 @@ "history_id": 1678076967863, "description": "Compra de 35378057 IVIP por 5000 BRL" }, - "revision": "1a323badd50045f1b6138173", + "revision": "b833a88c52e94c849c204811", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, - "revision": "01dfff7ad4ef435288c22048", + "revision": "c618e75bb7434b029da0b421", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b40d17164a33448d8641d11e", + "revision": "e0a3759130084e849645721c", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "a76cfddac7a34d07ad87c307", + "revision": "d875f07883b549bdb9d3f86b", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -97144,27 +97144,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "6074e48aa9234014a22a16e2", + "revision": "bb40ea26857b4db58c11d6c1", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679268249425/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "9352fd5ddbff4479b3c9e69c", + "revision": "2cbc74b286ce4ab290fb9414", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344992, + "modified": 1701809344992 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679871677212/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679871677212, @@ -97178,16 +97178,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "2a236db0b82f412b937264ed", + "revision": "24c56e5c31c4428b8205d617", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679871677212", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -97217,53 +97217,53 @@ "history_id": 1679871677212, "description": "Compra de 10.651.254,00 IVIP por 2.000,00 BRL" }, - "revision": "4f8cdaa3ef95494fa3535e60", + "revision": "eb60735a8b084ccb973cf458", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, - "revision": "8062bd8156b643b3ba639143", + "revision": "e5a97373f169412bb5e06a64", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e3f18a7824f04e36b9af1172", + "revision": "05704fe6a4c443ffab6a0aa3", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "8d779cf8f24c4274abaed882", + "revision": "677675f6db26482f91661e80", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -97290,27 +97290,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "91a4186144454612add84184", + "revision": "45e869d54d7b4c178e3a8d98", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872304314/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "b853130adef74cb2b3d40219", + "revision": "3b236cf51a50478192253532", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872334513/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679872334513, @@ -97324,16 +97324,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "cef860da82754d2ca8bf5845", + "revision": "03ffe92b5688483bb07d374b", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1679872334513", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -97363,29 +97363,29 @@ "history_id": 1679872334513, "description": "Compra de 5.325.627,00 IVIP por 1.000,00 BRL" }, - "revision": "2b8aec98179345c4b4cb6791", + "revision": "1b53fd72c67b42b69205ae6c", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "b3c5aca2102a4baa85f47c8e", + "revision": "827e3c42a45948baa01fc5f9", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -97421,27 +97421,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "136eb9eaa19a461b8ef499cb", + "revision": "e937f3fe2758449ca064d68c", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619398300/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 840,00 para a carteira iVip 1287.0114.4173.8232-80", - "revision": "b29041bd75994d25a3991134", + "revision": "a2fddbbb626341ef9fd660e3", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932343/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -97457,16 +97457,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "4f6b8f0ec5e5489da31e58fe", + "revision": "3957fd5e9c7147cab0c3c59e", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932343", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -97496,27 +97496,27 @@ "currency_id": "BRL", "history_id": 1682619932343 }, - "revision": "2c3d783e89a64db08f29d649", + "revision": "a007e03676de41af955a5bff", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932343/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 4 no valor de 560,00 BRL referente ao contrato 1679268249425", - "revision": "e0b6097266164725a681b4f9", + "revision": "6bbe84aa8c4c427598090f65", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932484/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "installment_paid": 1, @@ -97532,16 +97532,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "fe5e8c0ee9574d878dbbf5a9", + "revision": "e76da16a6a6d415d84b5ecb2", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932484", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "transfer", @@ -97571,27 +97571,27 @@ "currency_id": "BRL", "history_id": 1682619932484 }, - "revision": "06bc591805fc40c8bb0053da", + "revision": "67f39ede20494b0aa91db114", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1682619932484/description", "content": { - "type": "STRING", + "type": 5, "value": "Pagamento de fatura 1 de 4 no valor de 280,00 BRL referente ao contrato 1679872304314", - "revision": "5def4621e0fa45a5953c05e6", + "revision": "e3582869e9f642928f973aaf", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1685667547180/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685667547180, @@ -97605,16 +97605,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "c5a1c7a253bb4e5ba40cdf9d", + "revision": "bb472dca6a274836b618cb02", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1685667547180", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -97643,40 +97643,40 @@ "history_id": 1685667547180, "wasDebited": true }, - "revision": "c14f08fd7274480880ddd832", + "revision": "ecba1db6c2bf46dea8afd67b", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1685667547180/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "0e376f8b9ee84ee0b798d62e", + "revision": "10407bcb79b54f6197c715c5", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "25d6f16cd29d4573b3c68a16", + "revision": "4cf269915b7b4a1291604b6a", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -97712,42 +97712,42 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "2a7ad1b468504bca9ff6e7df", + "revision": "698a1b961856428f9c164b37", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1688772261924/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 3.000.000,00 IVIP para a carteira 0xDB45185C1086eFFBAA2d0b64862c83Bd9D29DE62", - "revision": "30f32c76d5824ebe9d6aec98", + "revision": "3ff7a903204a44488e60eefb", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 748170 }, - "revision": "1df86e8f7ed141a3a4c5c748", + "revision": "29e0b27052304f4687fe5678", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1692276235458, "net_received_amount": 0, @@ -97758,38 +97758,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "414d6c7e80a64ee79e547cf6", + "revision": "35c2c4aa61c349d7b716009e", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/128701144173823280/history/1692276235458", - "revision": "e6a1fb66d8f44883853b0507", + "revision": "a05d197841af424c8899e865", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "0ec3d6e8568043ecb2753cb4", + "revision": "5eb1ad5fd23e439696321e07", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -97827,53 +97827,53 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "989f5316f8884c98bccd1b93", + "revision": "c7923b712d2449d281670651", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history/1692276235458/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 24.190.830,00 IVIP para a carteira 0xDB45185C1086eFFBAA2d0b64862c83Bd9D29DE62", - "revision": "27998bfeb77f43b0aee74933", + "revision": "27ed783c4743483897292638", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344993, + "modified": 1701809344993 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "fcfc816b9a8e4b179902eb50", + "revision": "8dfaaaae77b64da3871e31ea", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, - "revision": "81a6a936077047e2b06a4990", + "revision": "49d580b883654aa4b6064ec7", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679268249425, "type": "emprestimo", @@ -97889,53 +97889,53 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "f19311e2a786436d9144eb9c", + "revision": "14b9c268b1a94dd1bf45f368", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "63938f5cccb84247b94972dc", + "revision": "8c5278b62ac94048b9519816", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679268249425/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "ca69b6ea898d48b4b7ba7868", + "revision": "f126f30e7c744e30a6553292", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, - "revision": "95e5ad91153d461eb7020f69", + "revision": "23aa906be10b433cae6dd38f", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679872304314, "type": "emprestimo", @@ -97951,64 +97951,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "bce65f9066634f3eb87ac29b", + "revision": "0b5a9aaa8d8b4a8893c450fb", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "8a32f36abf9e42fdbb4f3e50", + "revision": "ec7a7332828b41289c1d3c5c", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304/1679872304314/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "6fbf6b498bfc44f29b0498aa", + "revision": "51382176e90d47419fc5cfc4", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202304", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "523523a661c44ec194a14747", + "revision": "0bb59ff287a5474dabb936ba", "revision_nr": 1, - "created": 1701465820576, - "modified": 1701465820576 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, - "revision": "c04dc297fb8540278e1ffa3a", + "revision": "3937b634c713489f95d6f9d6", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679268249425, "type": "emprestimo", @@ -98023,53 +98023,53 @@ "history_id": 1679268249425, "currency_id": "BRL" }, - "revision": "52fd14b0b6c8440cb3bcd110", + "revision": "b3bb26fa4b674cc9b8cad541", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "8d5cade166cc462c92588787", + "revision": "1d8c4bfb12f84d1299b390b6", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679268249425/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "36af9dd8cb7647c58b950c1f", + "revision": "fdd81a44e7a64436911b544b", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, - "revision": "89dbe2378a0e473fa04f4f02", + "revision": "3d68f9774f1a4305b97637f8", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679872304314, "type": "emprestimo", @@ -98084,64 +98084,64 @@ "history_id": 1679872304314, "currency_id": "BRL" }, - "revision": "df92b7c7a8574bf4bb121ce6", + "revision": "ecf648f186344eafbcbe3681", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "29b3ce47aea14ddf802bb0fe", + "revision": "ee030aa996324bce8633f562", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305/1679872304314/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "4af5078779c2477d90de0278", + "revision": "644a83988e0a41a4b1483708", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202305", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3c8c7a63ddec441b9038fef6", + "revision": "bf7c4af7b7bf49fa801b5af7", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, - "revision": "a770fded47104eea971d159d", + "revision": "039f1998a8064995b1d62d10", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679268249425, "type": "emprestimo", @@ -98156,53 +98156,53 @@ "history_id": 1679268249425, "currency_id": "BRL" }, - "revision": "1d02372ae1dc4d7aa236ddeb", + "revision": "432dbde8d1f54cd4a62ff65d", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "25fef8a7fdd143d08d4c6458", + "revision": "df4e42cf49384ec1abf5d472", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679268249425/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "0cb7aae903824c32b866fec4", + "revision": "84d320bc2d824f1f991d0af4", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, - "revision": "5b07dd817a534a668ad47dd9", + "revision": "1f3aa696a9ce473cbd3becc9", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679872304314, "type": "emprestimo", @@ -98217,64 +98217,64 @@ "history_id": 1679872304314, "currency_id": "BRL" }, - "revision": "1ec0a997c7ab4f5b85b7ae4d", + "revision": "38922e0344af415190af1ff1", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "727f687b4b2241209f179c5d", + "revision": "4c7b31e0f64a463ab8b2d4d3", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306/1679872304314/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "3d56dd6bbd4c47788aa021bf", + "revision": "141bc0569c8a424e9a643138", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202306", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "70207e3d60244af7847792e7", + "revision": "8cb407d5891b47dfa9880a43", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, - "revision": "022b457514f24a6abfff038e", + "revision": "41349b69fdc5429eb9e1acae", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679268249425, "type": "emprestimo", @@ -98289,53 +98289,53 @@ "history_id": 1679268249425, "currency_id": "BRL" }, - "revision": "f087032b31ad4d7ca9048885", + "revision": "a01f98477da44b7daaf9e51b", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "7c0839d2d7214168ab0e9c6e", + "revision": "7432576bca0240b2adb2e128", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679268249425/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "b06ed0337d4a4699851be746", + "revision": "57266e94adfa4b6bbb8c2a40", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, - "revision": "d541cbc9550840c9b7185c8d", + "revision": "f1f884349e914613bbabe8a9", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1679872304314, "type": "emprestimo", @@ -98350,60 +98350,60 @@ "history_id": 1679872304314, "currency_id": "BRL" }, - "revision": "e3d0ae245f1a40dba1299b2a", + "revision": "7cf796009f11408c992f6852", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "60bc381573b040678f41da92", + "revision": "888a0e58fbf945ba9ad47a9d", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307/1679872304314/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "8867276db2e24ae58c2ddbed", + "revision": "6b098a8f020a4c70a34bb322", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices/202307", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "83f58b5d360b44e080b1e6cd", + "revision": "870fce9ce5b145f4b85816a5", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "49d22af43ee740668ac4088d", + "revision": "fc7231efc5fc4de18e4eaefa", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 10000, "limitUsed": 2250, @@ -98416,16 +98416,16 @@ "value": 1679267356871 } }, - "revision": "c073ad3f3f0c403fb03c5d64", + "revision": "0ba553175ef14de2b9e19b05", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/128701144173823280", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677412042762, "dateValidity": 1678206220392, @@ -98436,40 +98436,40 @@ "value": 1695870000000 } }, - "revision": "4d0de4ed23c9450bbae80ec8", + "revision": "e854a64319284c649a33c03e", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "afb8e1d5a053472fa15c075c", + "revision": "6877da7140b44be6bc219392", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "ea23ebb5235f4305bc6d4f20", + "revision": "c865b5b68e2943ab96726a74", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -98495,133 +98495,133 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "bada1f87bd654fb1b1fb91e2", + "revision": "67b361fa3ce5400595bc00d4", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history/1684145604531/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1302.5146.4382.3786-70", - "revision": "5477937cc3184dafa617ec5d", + "revision": "3fc2f16b91b94e59b4bebf14", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "dc1e06e277214bb4b99db550", + "revision": "6b939c4345504700a9b5e1f8", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "bacf126983ff429e8debadd5", + "revision": "36dff814fcee4b1891df68e4", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "4c53a741e44a4a62b5a535f2", + "revision": "d28cb26533e64948915d4e07", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/130251464382378670", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684145436275, "dateValidity": 1684145436275, "totalValue": 0, "currencyType": "USD" }, - "revision": "2337ad1f33fe48b6a5aea5b1", + "revision": "98beacdc01c6460ba2a9d593", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "BRL", "value": 0, "available": "0.00000000" }, - "revision": "c7ca1ad3365b4fb9a44558da", + "revision": "3589901ab29b45a4a26eb8e9", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "symbol": "IVIP", "available": "1069072.00000000", "value": 37.92 }, - "revision": "912cd355581d4785a547e6cd", + "revision": "30a8c69cfaea4b0eac257408", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6c07cdc680a64191b654008d", + "revision": "e12ff7385d3945ac98e29cec", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "02264c2b819b4af8ba2420fa", + "revision": "43b4d4beddcd4645bcbbe75c", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -98652,40 +98652,40 @@ }, "money_release_status": "rejected" }, - "revision": "1396f771234140ea980c1624", + "revision": "d7d89f48fa6946928a448404", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1677984009002/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1328.9266.1243.2543-80", - "revision": "37ecddc22ceb45368e65d1e1", + "revision": "8c394b42fc2e414a9bf4aad7", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "b332c68621d14012bfa7d302", + "revision": "54376db2692047aa82caff46", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -98711,40 +98711,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "541323bc205440a5b1e471ab", + "revision": "459da69ddd404a9fae62a320", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119185082/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1328.9266.1243.2543-80", - "revision": "7dcc20eda83744a5b13071f2", + "revision": "0743bbe5ecff40d4816e8bda", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "663b675050d0423fa3be0001", + "revision": "7ff8834403814d47a35b6a9d", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -98780,27 +98780,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "32c1ab9b0b3146a4a15ef6a2", + "revision": "9d6c1db144bc4b4dbc9b6f4b", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1678119441612/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1328.9266.1243.2543-80", - "revision": "679cf6891a0544a08d4ceee9", + "revision": "337b9eed724b434bb72216cd", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344994, + "modified": 1701809344994 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1679940518294/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679940518294, @@ -98814,16 +98814,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "c087850349034306bdd24914", + "revision": "7b819f882c6c4fc29b94ea7a", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history/1679940518294", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -98853,84 +98853,84 @@ "history_id": 1679940518294, "description": "Compra de 1.069.072,00 IVIP por 200,00 BRL" }, - "revision": "adc8605d27264f53ace3971d", + "revision": "e34132a0322a4b42ad140b71", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "0a514f4347eb49c583587d91", + "revision": "e5a503471ff54748828c5f3b", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/132892661243254380", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677983983862, "dateValidity": 1678983329949, "totalValue": 37.76, "currencyType": "USD" }, - "revision": "57d07b471b7b4c8ea13c63f4", + "revision": "3a367c4ed5f1498c99fed7c7", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "30608.00000000", "symbol": "IVIP", "value": 3.42 }, - "revision": "27f38589354b403896b58a5a", + "revision": "651222ef6ee34e7c9e01578a", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances/BRL", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "0.00000000", "symbol": "BRL", "value": 0 }, - "revision": "4f6403ff934148d386e4110b", + "revision": "c7b0ca233fc44e8f8a1aedd3", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "2fe4b2fbd83848ef8d3e34a7", + "revision": "87a3924f512642da9d5f885f", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -98938,16 +98938,16 @@ "value": 1694034023188 } }, - "revision": "5faba3ecde394f53b24063fe", + "revision": "876c04de87264178ad8d3635", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691442023188, "net_received_amount": 0, @@ -98959,27 +98959,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "36c89a4a4619452bbf08cb69", + "revision": "0d859ea3ac394ebaa0576548", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691442023188", - "revision": "a8647461ad654a999f9d0415", + "revision": "134d400cbdbe4c9f8078422f", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -99003,27 +99003,27 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "bdc0378361844db9a92075b3", + "revision": "6e701395dbd24c3fa6ec3ccf", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691442023188/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 20,00 para a carteira iVip 1336.7505.4149.0212-50", - "revision": "2681676bedec473cb02b47c8", + "revision": "1ea1094f305d45e391c5a025", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -99031,16 +99031,16 @@ "value": 1694125856606 } }, - "revision": "14d946c8b35045b2bb11a0d4", + "revision": "e1662907036648dd96abf8f1", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691533856606, "net_received_amount": 0, @@ -99052,27 +99052,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f1abf928bdba4dab98440479", + "revision": "1b6df556ffc948679f3171c4", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691533856606", - "revision": "faa005616507422893c465a8", + "revision": "a5d75fcb513041ca9f87522d", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -99106,27 +99106,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b45bb823c27a431bab82c51c", + "revision": "7d61dff8bd8a4573a7245e3d", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691533856606/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 20,00 para a carteira iVip 1336.7505.4149.0212-50", - "revision": "65980c7df9f44df895ff5a83", + "revision": "dfab37ee9ba848d783d006f1", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691597759364/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691597759364, "net_received_amount": 0, @@ -99138,27 +99138,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b5390b6bee2c4daba737bff2", + "revision": "b2e7ace995b84329844393e0", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691597759364/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691597759364", - "revision": "2e1a3a0414814689837c1c86", + "revision": "328430da01ac4cfeb70006e5", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history/1691597759364", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "swap", "wallet_type": "IVIPCOIN", @@ -99187,52 +99187,52 @@ "description": "Compra de 30.608,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "8a16107f5307420ca0b62c12", + "revision": "298942995fe14ff5995c4213", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "b0b23db8d5574069b4f79b30", + "revision": "0d5f74e49149418b999635da", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9757d29882a64683b402fe49", + "revision": "71d1501f9cbc445eb21c51a0", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "180084451e5b469987987915", + "revision": "09978bfe5c0846d3b1814345", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133675054149021250", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1691441898494, "dateValidity": 1691441898538, @@ -99242,40 +99242,40 @@ "value": 1691722800000 } }, - "revision": "c1cf5b6c903940c4bda7ea15", + "revision": "b027f3cec6c94e60bec97fe5", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a7c61b1a01104502ab2f1901", + "revision": "9c2e1e1d086c4826bdd4b2df", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "2b26f9d456ed4d33add49b7b", + "revision": "81aeb625c14a4b7a820c3280", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -99301,40 +99301,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "5e712223259f430a94a29a8d", + "revision": "0fb3c002f57548c2b8357b56", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689202732019/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", - "revision": "2672328e7adf4022aa9cddf8", + "revision": "01f7e036d9b94885b152ce07", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "ba9d1c1918144694a72a4884", + "revision": "1d714dfb17ec4ef5a3737be7", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -99360,40 +99360,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "4a1d6fd07e2846c89d382f86", + "revision": "311c47f7f72546f1b3a0f8ea", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455294552/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", - "revision": "0b1c387aa00c4577b88c2453", + "revision": "fa3ddf70a38c4cbf814d32fe", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344995, + "modified": 1701809344995 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "13a266be11d24d429f3cb0a5", + "revision": "14f13e06fd3f453e8de1a6e3", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -99419,103 +99419,103 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "24d968df9f8e41e4827e7712", + "revision": "7ce2b611d931467d84052be5", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history/1689455325352/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", - "revision": "a373194a80034afeba14bf50", + "revision": "80ba58723665467380a96b5d", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6763521fe6ab4e0ea0f5f624", + "revision": "0364811396a54939bf45d1e1", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5796ad802b57465488e19bae", + "revision": "ab9e58cc0b904b79a309138a", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "19e21c2c12dc480ca0fc64dd", + "revision": "08be42c9191b4b2fa4f2d145", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/133736879099726860", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1689199381511, "dateValidity": 1689199381511, "totalValue": 0, "currencyType": "USD" }, - "revision": "d3629ddd800242848aeed195", + "revision": "3201b404b1bb4e1894b98140", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "873a1fe5ce104cda8e9fc537", + "revision": "e0580cbba675427bb42382e0", "revision_nr": 1, - "created": 1701465820577, - "modified": 1701465820577 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "750b87e72f0945f9a8f481f8", + "revision": "5f45389f22844490bd1d75e3", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -99541,141 +99541,141 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "25fc011f63a7466080cbdb6f", + "revision": "3581cf2def094fc4a920d136", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history/1684183743876/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.700,00 para a carteira iVip 1346.8212.0797.4517-90", - "revision": "f55ff62c565340eb9fbcdd4b", + "revision": "700aaaff62124e588c744bad", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "0ec41051ca214ac1ba4a69ff", + "revision": "82755e64a54e46cfb4fad861", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "c0ac249143af450ba44d41e5", + "revision": "4b2ea133ea9c4e63b6c5646c", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "7b75a5742a1f4eccafc7edd3", + "revision": "504308b513a54f57819ec64d", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/134682120797451790", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684171343507, "dateValidity": 1684171343507, "totalValue": 0, "currencyType": "USD" }, - "revision": "4ee2baecb2904861aa423189", + "revision": "9f4580dfc86c432198b076be", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/137445448878708240/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "62b7da588cb44bd7802e188f", + "revision": "3a1f39a0b0bd4661a5732dec", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/137445448878708240/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "275eebf329d74c218018d7e1", + "revision": "e213bf91dfb64f6998202014", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/137445448878708240", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678373632630, "dateValidity": 1678388032664, "totalValue": 0, "currencyType": "USD" }, - "revision": "683ecaace59f49458f2af24e", + "revision": "abb95fffce284ec9aff31c69", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "919ab10ca659428a83829bf8", + "revision": "02b0cfcc14c341d48aaa2f54", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "a799216991724302ac59c609", + "revision": "80f4442091294fe3bed80826", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -99701,118 +99701,118 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "52dc91f70e5444228b75b592", + "revision": "61242ed191c048ceb6ee61f7", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history/1689208709356/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1384.8850.0273.9255-70", - "revision": "7b6dae3154724d7289c494f9", + "revision": "46f02ec4400f40a78b7c2ccd", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5549495653f14f8ca489ff0f", + "revision": "398820581b9c43f8865f0e40", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5285eeaaa6954b37b3b6d936", + "revision": "fa1153e73b88439abf509eb9", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "a8939cbfd37e4503a3092139", + "revision": "047b2c30732e4942b9c11140", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138488500273925570", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1689183505496, "dateValidity": 1689183505496, "totalValue": 0, "currencyType": "USD" }, - "revision": "1b6e7c0c8f4a43eaaf8e4e07", + "revision": "e029db8c727943abab5b41bf", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "919038.84000000", "symbol": "IVIP", "value": 654.99 }, - "revision": "b1586d0d4c9c4b16aabee552", + "revision": "4c044a8bfe5e4d11b8a5a307", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "957d45bae73d4f85af3441cf", + "revision": "42dac9b76b824edeaa29fb83", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "79870c1edac04466a9708ae1", + "revision": "1efa3325478d418d9bb0aab2", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -99848,27 +99848,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "47733807a57b40c9bf5ba679", + "revision": "5684320c7bbc4ba6b2280073", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1677847333011/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1385.8527.3860.3328-20", - "revision": "96c8d258d452404ebc250849", + "revision": "c991b8feed1046b9ab6a7188", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678180078100/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678180078100, @@ -99882,16 +99882,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "337098a1815948d8939339b6", + "revision": "7f336df4f8b24d8fbf7e20ef", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678180078100", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -99921,16 +99921,16 @@ "history_id": 1678180078100, "description": "Compra de 7131208 IVIP por 1000 BRL" }, - "revision": "c1c42014b2dc496eb8c9bee4", + "revision": "e212388665f64684aa5c666e", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678198835623/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678198835623, @@ -99944,16 +99944,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "5db92f6414954d13938e283c", + "revision": "7d1d722e05f44c9081ea6aa6", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678198835623", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -99982,27 +99982,27 @@ "currency_id": "BRL", "history_id": 1678198835623 }, - "revision": "8f0f6f68285644159250be50", + "revision": "1dfce5ce3f1d47a188f2302c", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678198835623/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "f3f644f3076a4f25897ea49a", + "revision": "e95445bba2d0425b9b4605aa", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678228246387/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1678228246387, @@ -100016,16 +100016,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "6bfc899d99de4e458c8f49d1", + "revision": "9be5b7789f794bd1b0559931", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678228246387", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -100054,27 +100054,27 @@ "currency_id": "BRL", "history_id": 1678228246387 }, - "revision": "aaa6ec9e35f94fe6811ef095", + "revision": "8e4537c37e574ef68ca498bc", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1678228246387/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "509feb0bbb494b2f9785f312", + "revision": "66296cf6f0814ab0b168b5c3", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679266874503/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679266874503, @@ -100088,16 +100088,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "f4b7f0f8a7964574b18b9977", + "revision": "1fde7280f37945098ddbecd2", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679266874503", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -100126,27 +100126,27 @@ "currency_id": "BRL", "history_id": 1679266874503 }, - "revision": "184896890d44467b83be7cc0", + "revision": "185ef5bb3abf4bb58f6cafd1", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679266874503/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "141897301ed047db8c67da7f", + "revision": "7ba1b2101c03471b8c154fc5", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344996, + "modified": 1701809344996 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679267008673/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1679267008673, @@ -100160,16 +100160,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "fc0b03b12c8f4a699ef6e149", + "revision": "09c71c81198143acb941587f", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1679267008673", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -100199,53 +100199,53 @@ "history_id": 1679267008673, "description": "Compra de 23286153 IVIP por 4000 BRL" }, - "revision": "4783d4c7396a4dc3a7b4bc26", + "revision": "b5651a84b41f4ecab2954c0c", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "c7721eb00ea644799d989454", + "revision": "4c1dbfdb937746e084c4988a", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9fc4416688ac4955954751d0", + "revision": "c6218ea1eea541ffbb0fc965", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "abf90a05c7f7436b9b583aa2", + "revision": "3a8ed5d741e94a0aabbe5c8f", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "emprestimo", "wallet_type": "IVIPCOIN", @@ -100272,27 +100272,27 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "24190c2dd184467a8fef89f3", + "revision": "45d99df4e9f14681a965e0c4", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684019947547/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "9adec17f607a49eaa97e096c", + "revision": "e70c62cd4f344c56a0e59f01", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684348689379/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684348689379, @@ -100306,16 +100306,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "d8510f1607e3485a82c5a041", + "revision": "2da3d050631f4a338041598a", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684348689379", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -100344,27 +100344,27 @@ "currency_id": "BRL", "history_id": 1684348689379 }, - "revision": "8de7dd771cc4405f97052624", + "revision": "aa6fb904cf9645e1ae0dfb6f", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684348689379/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "8c4f484540944bb781da5d56", + "revision": "0a244ab70e16441e87ea348e", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624162871/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624162871, @@ -100378,16 +100378,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "f7715dc34291432192eec9c5", + "revision": "8f2b4b6cd04b4364ad18dcee", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624162871", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -100417,16 +100417,16 @@ "history_id": 1684624162871, "description": "Compra de 53.772.878,00 IVIP por 11.040,00 BRL" }, - "revision": "0957e2f97de041bfac40dbf4", + "revision": "14694851d4754d59b4625564", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624267520/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624267520, @@ -100440,16 +100440,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "9b6e78ff300b44729ee687d9", + "revision": "57e8297a49db4090b08fd121", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624267520", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -100478,27 +100478,27 @@ "currency_id": "BRL", "history_id": 1684624267520 }, - "revision": "0fce9383a14f47a88c0a294a", + "revision": "7a3b53535cd64051b0ef747c", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624267520/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "8dce943eb2924580b92344f3", + "revision": "70ca2fda017247248f012c73", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624311448/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624311448, @@ -100512,16 +100512,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "8e6f47deaf3c42a7869b3308", + "revision": "2b4118969d4d4b05914c4e2a", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624311448", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -100551,16 +100551,16 @@ "history_id": 1684624311448, "description": "Compra de 1.257.135,00 IVIP por 258,10 BRL" }, - "revision": "9dad4d7e60954718a6ad8ed5", + "revision": "3899482ac18545168c8b2e56", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624493050/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684624493050, @@ -100574,16 +100574,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "aa7aa53a35c5420f92c06183", + "revision": "832406aac6484dd4bcbf7bf1", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624493050", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -100612,27 +100612,27 @@ "currency_id": "BRL", "history_id": 1684624493050 }, - "revision": "2803e6920b40472183af0b3a", + "revision": "f36f4f7b003847a0a07c8437", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684624493050/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "13c572607fe34ad5a0cc080b", + "revision": "82305eac047e4466ba91a072", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684627629023/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684627629023, @@ -100646,16 +100646,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "87ebd0ea1fb1411e88c8640a", + "revision": "cf7d35d261fc487ca05abaf8", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684627629023", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -100684,27 +100684,27 @@ "currency_id": "BRL", "history_id": 1684627629023 }, - "revision": "6f270880f54440e4ab836be4", + "revision": "938eda32afb24960b84b8dad", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684627629023/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "7f026a3ecd684cccaf244af8", + "revision": "19adc1ba47bd4aec8c0148f0", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684692136128/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684692136128, @@ -100718,16 +100718,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "b5976e33685f40cb8164b96d", + "revision": "14b4b12580c4425c81a27a90", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684692136128", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "deposit", @@ -100756,27 +100756,27 @@ "currency_id": "BRL", "history_id": 1684692136128 }, - "revision": "8ee194c9231945e199ba5f73", + "revision": "869d0128b49042149371ec4a", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684692136128/description", "content": { - "type": "STRING", + "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "71028db5b1314c6f8f160d76", + "revision": "72cb2f96fbd64b95a2a7e01d", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684710449691/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1684710449691, @@ -100790,16 +100790,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "c13126b5eb854ff18f7d7276", + "revision": "8653fad620084f51844d4d09", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1684710449691", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -100829,29 +100829,29 @@ "history_id": 1684710449691, "description": "Compra de 139.785,00 IVIP por 28,80 BRL" }, - "revision": "4c426d0ca08446e8a3f986ff", + "revision": "3f1a14e4f61c47cc85c51ae7", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "ce9beb2c023047fc94ac62b9", + "revision": "bb15defca63f4997a06a89e1", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -100877,40 +100877,40 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "3073c557354e4f22b1aff8a4", + "revision": "0c3af32cf91b4926ac35aa95", "revision_nr": 1, - "created": 1701465820579, - "modified": 1701465820579 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1689025596946/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 30.550.000,00 IVIP para a carteira 0xe19A954Bb3bc15ff05fDD30BB22AE96bF4425Bf0", - "revision": "510cbf9b05f6430b9759ccad", + "revision": "aa2e6f31aa0f4ec88ce852e7", "revision_nr": 1, - "created": 1701465820578, - "modified": 1701465820578 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "f1a73d32f0bd465a8703b5e2", + "revision": "88f61c200330424283136627", "revision_nr": 1, - "created": 1701465820579, - "modified": 1701465820579 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -100946,42 +100946,42 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "b922e21a936a40e1b1c1851f", + "revision": "a345b1a2cdb9499ba81feb27", "revision_nr": 1, - "created": 1701465820579, - "modified": 1701465820579 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690515792985/description", "content": { - "type": "STRING", + "type": 5, "value": "Devolução de 48.707.317,00 IVIP da carteira 1385.8527.3860.3328-20", - "revision": "bfad67c5121f49a1922c2437", + "revision": "db598dbe0b474a618d7a685b", "revision_nr": 1, - "created": 1701465820579, - "modified": 1701465820579 + "created": 1701809344997, + "modified": 1701809344997 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 3,00%", "amount": 1047600 }, - "revision": "17f92fa67e5346fd9cefe5fe", + "revision": "dbe1ecc1eff84a11a6485655", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1690812074851, "net_received_amount": 0, @@ -100992,38 +100992,38 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "7981a35e625e434297d3a5f3", + "revision": "0a909897560442178f788be0", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1690812074851", - "revision": "4621380cda0f4499babf442d", + "revision": "03c5a791a8b64c90a78e0f4d", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "0ef232f9312141a69d7cc53e", + "revision": "168fc8e84a65461dad291a9c", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "transfer", "wallet_type": "IVIPCOIN", @@ -101061,27 +101061,27 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "ecce6c663f8c48ff8c732597", + "revision": "56e2fa88b5484c49a50a7798", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1690812074851/description", "content": { - "type": "STRING", + "type": 5, "value": "Saque de 34.920.000,00 IVIP para a carteira 0xe19A954Bb3bc15ff05fDD30BB22AE96bF4425Bf0", - "revision": "6f560fdbc259449193ca05e4", + "revision": "66ef6cb0334c433589c75e30", "revision_nr": 1, - "created": 1701465820579, - "modified": 1701465820579 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691235380464, "net_received_amount": 0, @@ -101093,27 +101093,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "406625d821a54984a1b2aa0e", + "revision": "4f591174bfb7422fab914c2c", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1691235380464", - "revision": "5dd63a18574848c7957e7a58", + "revision": "bb5df69605164ba8b54bdd2f", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -101141,27 +101141,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "54a394c50ce346a395c6fee1", + "revision": "418116f0f2744149a171640a", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1691235380464/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.959.842,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", - "revision": "7aca1380806d4df09dacc104", + "revision": "cce4c5e11008425486432580", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693914295943, "net_received_amount": 0, @@ -101173,27 +101173,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ab8222afb4ac4ddcbdc609d9", + "revision": "e226a5ad242c45caa2d30e40", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1693914295943", - "revision": "c361097ffd3240a1a69de120", + "revision": "660fec2afe664d66ae591799", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -101221,53 +101221,53 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "b7c0206191ae446c92ede709", + "revision": "ec9f4085df224ba99d9f63d6", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history/1693914295943/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 1.959.842,00 IVIP com um rendimento de +39.196,84 IVIP (2,00%) - Y12XDT27", - "revision": "d6dd58a64d6648d39ab51979", + "revision": "e9533ddf7d7a45fbb956f59e", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "9c92357da6024ed6bc6a2eb8", + "revision": "c817d392c822431c9e5ea6eb", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "57fd080d5b2548f0956edd5f", + "revision": "b4630980f8d84fc9aa6b6290", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684019947547, "type": "emprestimo", @@ -101283,64 +101283,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "35081afa80aa4601be85b72a", + "revision": "17f5ec1918684498b4582dcd", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "4109376f46334ad4a8b0f241", + "revision": "1ac68af5c0fd4b4eafe4ccba", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306/1684019947547/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "e26bb573f1624bc796be74d1", + "revision": "2ae5cf73f56f481d9d53dffc", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202306", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3621a3d699cb4fc6b241dd8f", + "revision": "beeac755116a43af9d85a9d2", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "07bd6d1bef304f23859197d2", + "revision": "454dc0d9a35d4bf0a3e9ee4e", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684019947547, "type": "emprestimo", @@ -101356,64 +101356,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "99137988a67d44fb8e66e558", + "revision": "97368f4bf0244568b118980b", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "87b138fd0ced46378e37a037", + "revision": "453cc2828ed04beeba4545af", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307/1684019947547/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "99653cb0228249c0b8fd2f9b", + "revision": "12a688636eae40a3a10e3fbe", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202307", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "38c411556f0349fd85b811ed", + "revision": "779fea6be59648a3baf3a633", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "55e6a5957fa843379a00eef1", + "revision": "ba5044f9fd0a41d195d70773", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684019947547, "type": "emprestimo", @@ -101429,64 +101429,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "6be9f91494dc4054b49f2eb2", + "revision": "730c4fb2eb1a40deb9ed1e5a", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "d559d50e28944a30b0e487f8", + "revision": "e8d6b9ce01f9433c9bb30b0f", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308/1684019947547/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "7bed6144da8e4f2ab9b5ce06", + "revision": "8bcd834878fe4866a9d8ab1b", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202308", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "0ad3c7d9aa2045aba61d6f6e", + "revision": "5ab007f487514086b976544a", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "ad3ccc4d745a42e89a0655da", + "revision": "8736316a430f49ff907b8fb5", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684019947547, "type": "emprestimo", @@ -101502,64 +101502,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "37f12278b0c14051bd4a4a17", + "revision": "f9b61c48c67c41faa8aec0ce", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "415a2839196c49658be8eed4", + "revision": "5a2cb7ccc07449c08aaa80a4", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309/1684019947547/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "ae54d0916dc54802b7638d09", + "revision": "95d458e335af42398ea40019", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202309", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4a7d62152e0a47edbe8b4706", + "revision": "e332abb913a04586bfef16af", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "a5c90034ba8f43f8a1f1eec0", + "revision": "5e090481f1124a0e98b70a81", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684019947547, "type": "emprestimo", @@ -101575,64 +101575,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "c8bb382bc29f4bc59793b36a", + "revision": "706c4080138b4ddda924fe72", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "f0d0f39216f4405eb27ee686", + "revision": "a43dfeccfe9e49a0b398e706", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310/1684019947547/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "7fa9fa1ffe234dbba8cfb3bc", + "revision": "adf933378f054373a4e68689", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202310", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6dfd657653a942329330de4b", + "revision": "d34f9862b82e4a9c88d4e5ea", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "560b38dab354456ba3634510", + "revision": "f6f271493b8a42d8bc2fac19", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684019947547, "type": "emprestimo", @@ -101648,64 +101648,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "b855cb192bc842fd86e338a0", + "revision": "a0d30e78c1c54e8096505732", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "b41e68f5d9c6464aabfb0327", + "revision": "c587b579f4c545e399482b3c", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311/1684019947547/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "7de9e48dfcb84df4893a618a", + "revision": "2a03fe4db29149368837d0fa", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202311", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "caffc1bc76c246c8949bef4b", + "revision": "0585bf8f14ea478f85be9903", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "e08785e71c5a4c10be5d3a18", + "revision": "343bfd58788f402b9d75d149", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684019947547, "type": "emprestimo", @@ -101721,64 +101721,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "7747883c72f2440c93aa4afa", + "revision": "ce60af987080438fb99e4305", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "6dd2306be6234d3b91c0ea27", + "revision": "9351fe381c72414a925995de", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312/1684019947547/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "9953f7fcd7d644eb8aa66380", + "revision": "07809726ed1d4760b01b1fd5", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202312", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "830f507c104649d5a137b539", + "revision": "63854570da164ef0bfe7350e", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "f6dc234fcd4344c8be0be80b", + "revision": "ab057430266743de98d62df6", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684019947547, "type": "emprestimo", @@ -101794,64 +101794,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "3324379114b64138a7c6ec6e", + "revision": "de288bbc89e74fdcac44e30d", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "0492a5182a3245e4a7c207ae", + "revision": "a4e242f857c14bb285a0cbe1", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401/1684019947547/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "8dbaac7d290c455f877fa869", + "revision": "2e3281ec93ee4d79b289e804", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202401", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "86d071ed7fff4e609e58fc09", + "revision": "33295d52ff434dc58eec0107", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "b2181145fa7e4d0491c9643c", + "revision": "25de6cc79b304f46a79ef0cb", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684019947547, "type": "emprestimo", @@ -101867,64 +101867,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "35ee7237ecaa4fdd89313370", + "revision": "4f59033c97ac4d1dac9551da", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "6a26bcc461954ae9966d2737", + "revision": "deaeb61f04234ca7acae44a9", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402/1684019947547/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "bfc2b40ee32246389c1b2ded", + "revision": "84eee51d8a7049b0ac3057d1", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202402", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "dab9f514c83441bf9a706e69", + "revision": "c761a0cee30e48b1bf73cd96", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "51e1de52c6a942e89702fe21", + "revision": "1edf8c650e8b4906a5d3c348", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684019947547, "type": "emprestimo", @@ -101940,64 +101940,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "00e9191fd73142db9902e9e5", + "revision": "df6557ea55e14ef896797365", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "c5a5102c2be74c23abae7ea5", + "revision": "2d218cc72cfb471d88910b75", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403/1684019947547/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "80226b84acd743e781d9f741", + "revision": "55aa96bb6fa74f9e92f4bfde", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202403", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "7e1679c1cc824ff88e10a001", + "revision": "95e0fef16f0942d78237a6cc", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "4629ac3aa43846f9bc31d3d5", + "revision": "b6a7aafea0614532989d6a48", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684019947547, "type": "emprestimo", @@ -102013,64 +102013,64 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "2592d71b7c464bf8b3949330", + "revision": "6884588eddf0462c929cc4d2", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "2b098bb4ef3b43caa2854ad2", + "revision": "a82e06f628d248e4a1613335", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404/1684019947547/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "512826e40e814b5fba236840", + "revision": "1a1aed18e4d74767b4a477b7", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202404", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "12bf76ced6d74a88b269a6a5", + "revision": "be46aa56151f4682afc72e68", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344998, + "modified": 1701809344998 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de parcelamento", "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "7d80b40d0b7946d1b6108fb8", + "revision": "e190010ded334871b694858a", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547", "content": { - "type": "OBJECT", + "type": 1, "value": { "id": 1684019947547, "type": "emprestimo", @@ -102086,60 +102086,60 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "59a0eeb31a9740b9a46ce1fc", + "revision": "7bec8690491a4cdead33c801", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "fc020f019e45492ea2028c4d", + "revision": "8b22070f3a354d3a9f2267af", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405/1684019947547/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "6fa8a8c8750f442cb99a20a7", + "revision": "2631ff1addfc4b31afbbef34", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices/202405", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a51b438dbe4e43d9a5b121d1", + "revision": "6d647a614d0449979a064495", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "8b87dc7c313c4e029f8e11f0", + "revision": "795eb894b81d43e5ac272ec8", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 10000, "limitUsed": 10000, @@ -102152,16 +102152,16 @@ "value": 1684007556024 } }, - "revision": "e3df682266d74ba08f2c2fa5", + "revision": "9b0577a346ed4621bece5111", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/138585273860332820", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677844580252, "dateValidity": 1678311387021, @@ -102172,38 +102172,38 @@ "value": 1696647600000 } }, - "revision": "9b64644e51704a96bc912b6f", + "revision": "a55d4213f83d4b8e973ee9ae", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/139283242086295280/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "494b7363b30346659a9c9675", + "revision": "d4cb389fe62b4061b2201656", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/139283242086295280/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "14569e1d6af84f7eacad9007", + "revision": "c8f3ac65b8bb4c40a62b9869", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/139283242086295280", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1696229796136, "dateValidity": 1696229796165, @@ -102213,55 +102213,55 @@ "value": 1696215600000 } }, - "revision": "a94c33afa2c44aec88fc3dfc", + "revision": "994427055de14a27a51750b8", "revision_nr": 1, - "created": 1701465820581, - "modified": 1701465820581 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "220191.58000000", "symbol": "IVIP", "value": 29.61 }, - "revision": "a1a766bfa9404a19bbb6abc7", + "revision": "ea61ea1be57b40a29e1896be", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e58a1706fb384c99b2c403ba", + "revision": "e6e89df2aead4274b1577308", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "131ec69acb91468ca7e17b44", + "revision": "9a64ee32f52f4a78a1e23fb1", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -102297,27 +102297,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "25cd3249ab40481e981a9c66", + "revision": "be0f58985be04922b94173cb", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685110971189/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 1404.9875.6876.3405-00", - "revision": "da5593c579134c39a0427d68", + "revision": "3da1dc682a6643a9afd42def", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685727229028/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1685727229028, @@ -102331,16 +102331,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "a16b416880714de288583bc6", + "revision": "841f5b85bbdc41e89ad0a72c", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1685727229028", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -102370,16 +102370,16 @@ "history_id": 1685727229028, "description": "Compra de 5.398.200,00 IVIP por 1.600,00 BRL" }, - "revision": "9c09b9d09d3743e3b8bb0e17", + "revision": "2c5a0b26383d4c749a681c14", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1687318007517/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1687318007517, @@ -102393,16 +102393,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "6a1651a4db134dedb03a2914", + "revision": "e916bc6c57704bb4a0b2622c", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1687318007517", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -102430,27 +102430,27 @@ "currency_id": "IVIP", "history_id": 1687318007517 }, - "revision": "095795a648ea41b096eb1784", + "revision": "168f08c675884b58b466aaa2", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1687318007517/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2025", - "revision": "f98255bcc37744bc8a0f8ce0", + "revision": "260771e2d0d84b5c9d8460e8", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1688408922424/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1688408922424, @@ -102464,16 +102464,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "f07674cc9a704263817b0d1f", + "revision": "fbdd594b6d5f49819e64cef9", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1688408922424", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -102501,27 +102501,27 @@ "currency_id": "IVIP", "history_id": 1688408922424 }, - "revision": "26244b4e1c934433bbd796b1", + "revision": "9a8ec1d3a09a4e7ea1465fa9", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1688408922424/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 320.960,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "1cad629d662e4294bbc7fe88", + "revision": "c9acf545512949eb984e17be", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691087650613/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1691087650613, @@ -102535,16 +102535,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "95a05943826846489536d749", + "revision": "295044ebc963421dbcd4fa9a", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691087650613", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -102573,27 +102573,27 @@ "history_id": 1691087650613, "wasDebited": true }, - "revision": "3a69d66f25144d109a8ec5b6", + "revision": "f8f06f1c973a4a56865c8821", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691087650613/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 320.960,00 IVIP com um rendimento de +6.419,2 IVIP (2,00%)", - "revision": "66d84b469fa140f8bbf46f02", + "revision": "93b65a82e9f4416393a18395", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1691114916429, "net_received_amount": 0, @@ -102605,27 +102605,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "3c54d4cc8ac9485f8485299f", + "revision": "62e10aa35b96453585e2d775", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1691114916429", - "revision": "7cb2358c747a42d1a7bb8b34", + "revision": "55731287f3b54d15b15e15d7", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -102653,27 +102653,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "f47c841c36f343848a9c9f51", + "revision": "28f10068cbdc4d97a85c031f", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1691114916429/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 366.669,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "2dab3926116d43b89b71ae0d", + "revision": "3c33c5665d12425983e9d8b2", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693793335003, "net_received_amount": 0, @@ -102685,27 +102685,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "906e7629305f4829a0d63d10", + "revision": "28a42921d7b6458c9754767a", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1693793335003", - "revision": "ac2717e31a1b4eb89baba299", + "revision": "ceb4466c43504f98a7a94e76", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -102733,27 +102733,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ce643359e63c4822a38d65d4", + "revision": "6799874494d44c2dbcdac14a", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793335003/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 366.669,00 IVIP com um rendimento de +7.333,38 IVIP (2,00%) - Y12XDT27", - "revision": "055e4d9076d04ba5a8f1b332", + "revision": "91bde5378f124a4d910a6f23", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693793542322, "net_received_amount": 0, @@ -102765,27 +102765,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "0591b8f75c844463bb724d1a", + "revision": "a38f6ea9ac874a2894a94c3a", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1693793542322", - "revision": "169eea381c9149ffae867aa9", + "revision": "d5002af228c04a20a9e17939", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -102813,27 +102813,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "5aa37156d3234152894337d1", + "revision": "e5518e7b55d84a2499d3c304", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1693793542322/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 411.950,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "c51dc3f1302b42048f141528", + "revision": "f9ebba0f9cc6493c8df57434", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696395329903, "net_received_amount": 0, @@ -102845,27 +102845,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "6242a93776ee4778a85c30f1", + "revision": "65757245c58542c1bd2480a8", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1696395329903", - "revision": "ecf255ab83084ff7a817ca9d", + "revision": "8a79fe115c2f41189e15e498", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -102894,27 +102894,27 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "64f73191b1a44194a9dbf9c7", + "revision": "e316ef8f62784a2ab85b0bea", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696395329903/description", "content": { - "type": "STRING", + "type": 5, "value": "Resgate do investimento staking de 411.950,00 IVIP com um rendimento de +8.239,00 IVIP (2,00%) - Y12XDT27", - "revision": "d51281ccba7940fda1b7c7be", + "revision": "d131a8aef4ab47e89009059f", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1696472422028, "net_received_amount": 0, @@ -102926,27 +102926,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f80e0bb3659e43429471ea67", + "revision": "9820486083cd452f8f55e896", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1696472422028", - "revision": "da40267fa67941af80ebc4bb", + "revision": "acb252a515c1496f941ac194", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -102975,63 +102975,63 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "31d529d008a14c64b7127aa6", + "revision": "b04bbe20c97e41c684bc7697", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history/1696472422028/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 200.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "46ffbe189c0e4e14b4601f81", + "revision": "6581ad7c5e7e4f4788fbaab2", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809344999, + "modified": 1701809344999 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "0dfc8e17c5384157a700e822", + "revision": "58b782d9f7244c3f8826451d", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4f234c187add4a3ab3012bf8", + "revision": "f6c1efd556294c64b932bfa3", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "97531c3ceab344b5be49996d", + "revision": "138938c78f564bb884f6aea8", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/140498756876340500", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1684358980805, "dateValidity": 1684358980805, @@ -103042,55 +103042,55 @@ "value": 1696647600000 } }, - "revision": "77cba4a3a24e47d2a86dab4a", + "revision": "65ce6b36e34f4ea3911b5692", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/balances/IVIP", "content": { - "type": "OBJECT", + "type": 1, "value": { "available": "2112486.00000000", "symbol": "IVIP", "value": 239.28 }, - "revision": "9b96031e85cb4caf9ede8969", + "revision": "6017040eb1d04e3bb43753a5", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "38f922f6928243b6aceddd2e", + "revision": "23a5aeca21fd4da3b29fe8e7", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "costs": {} }, - "revision": "e5340ad1d4b244939ff7b9da", + "revision": "a3138dbdb09f4601b17717a4", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -103126,27 +103126,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "bbf9b65364c9498d9b0df35a", + "revision": "192beff47ddf49f9b1e32405", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689206251825/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 5.000,00 para a carteira iVip 1429.7769.3689.8883-40", - "revision": "8543722b4f2b4384a7605fcd", + "revision": "a3c92d3b320243139939a460", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689208259450/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "payment_method_reference_id": 1689208259450, @@ -103160,16 +103160,16 @@ "external_resource_url": "", "costs": {} }, - "revision": "da187097b23942958a45f981", + "revision": "30fd63b6beda4e1fa2e9d741", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history/1689208259450", "content": { - "type": "OBJECT", + "type": 1, "value": { "wasDebited": true, "type": "swap", @@ -103199,52 +103199,52 @@ "history_id": 1689208259450, "description": "Compra de 2.112.486,00 IVIP por 5.000,00 BRL" }, - "revision": "3824fa073c0b45939e6427e7", + "revision": "83afda4aa10a442ba67c91dc", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "5423fc11c2b140599231bd84", + "revision": "bd43fbfa222746999f7a794d", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3fd9da69a11a40608e37b8ac", + "revision": "6f10f70aa1c445499477e390", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "ccf5e2b363414c8e876c7afe", + "revision": "842cfcb762be40738378932b", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/142977693689888340", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1689206116426, "dateValidity": 1689206116426, @@ -103255,38 +103255,38 @@ "value": 1697079600000 } }, - "revision": "e679d2a85bd14a6fa5854f8a", + "revision": "e2936dc90fd748efb479f1b6", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/145100373829536670/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "87f4f09d354d4ade8a1d07a2", + "revision": "74f64b7f398549f9afbd82de", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/145100373829536670/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "2d2d68a6806b45dd8d56bfdc", + "revision": "d456bbba33b74cf2be3e79a7", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/145100373829536670", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1679078857171, "dateValidity": 1679078857171, @@ -103297,65 +103297,65 @@ "value": 1696647600000 } }, - "revision": "61e5d536bde3418e8fedb040", + "revision": "cc0cbf3205d84d50a7d4a258", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146025594361679260/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "357074f5c9a84dfcb4117cb0", + "revision": "2e04482d3a5a4827b6dd529f", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146025594361679260/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "96dcc26569a34c2386dbf4f9", + "revision": "059cb7811855460ca6d1768f", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146025594361679260", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1679356008303, "dateValidity": 1679356008303, "totalValue": 0, "currencyType": "USD" }, - "revision": "2c71a3d49c804eb7a9fb78c8", + "revision": "46f8a3344cf34c9eaa7dbb38", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ada6f013346e4ac8941febe2", + "revision": "cb548181234945efaea6effd", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -103363,16 +103363,16 @@ "value": 1697568433538 } }, - "revision": "d9d0ec7245644e6da85a3374", + "revision": "1d2d90abec554c879c325f59", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694976433538, "net_received_amount": 0, @@ -103384,27 +103384,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7e1e2e42a66846e5935d4aa9", + "revision": "4a7c7c6d591b43858c54e799", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/146193775313990370/history/1694976433538", - "revision": "4cb751a11726440e99733a96", + "revision": "a15ba053ae2343dea12d46af", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -103428,63 +103428,63 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "b10f6b1dbd4a4a719271e014", + "revision": "e3123d3dda754243be94853c", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history/1694976433538/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 1461.9377.5313.9903-70", - "revision": "29656fafb561463fa0e3d9e0", + "revision": "8334cdf82ba0400f81d72e1d", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "45e6361d49a5411f9707ae46", + "revision": "2f2763a13ab042adac2146d1", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "23aea77da89a4f4fabc7edca", + "revision": "b030b9516822488280a4d00b", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "d26487eb831e400f8dd07afd", + "revision": "d1d38a87c6c14c4585ceb09c", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146193775313990370", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1694975442899, "dateValidity": 1694975443028, @@ -103494,178 +103494,178 @@ "value": 1696906800000 } }, - "revision": "b747d65f0001439488c9c9fe", + "revision": "12acc1f2d73143129d01e471", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146193999422064450/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "2ae198485fe943cb87a00a68", + "revision": "3ec174d97b914c519bff5367", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146193999422064450/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "d3a62631833344fda8eac61f", + "revision": "e21c29736ecd460899841e20", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146193999422064450/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ffba100eeb5d4df08cd76663", + "revision": "80ab21e8bab1470eb7e52424", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146193999422064450/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "bf240742fe7f4b9d9a362606", + "revision": "b41fc0a094524a69b36cc253", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146193999422064450", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677393088450, "dateValidity": 1677393088450, "totalValue": 0, "currencyType": "USD" }, - "revision": "e0272441dd8346b7b739aef3", + "revision": "c12a3e3783bf497889e2b25e", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146386157285818500/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "ac076eec7796493a8427ab05", + "revision": "1c0a1aad2e52439d91d3bf27", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146386157285818500/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "24fd1061dc5241aca9eb3df6", + "revision": "0fc14d3351504c9e95981f96", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/146386157285818500", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1677820583824, "dateValidity": 1677838584623, "totalValue": 0, "currencyType": "USD" }, - "revision": "ed7b6f2bdb254a4d9d4d4d06", + "revision": "2b269674a20e404283de8529", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6006c3c02d9545279a06366f", + "revision": "65d6405e8cb74ec9b7f99795", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/costs[0]", "content": { - "type": "OBJECT", + "type": 1, "value": { "title": "Taxa de serviço", "label": "Taxa de 0.99%", "amount": 0.9900000000000001 }, - "revision": "322a9120591a4172beeffdac", + "revision": "5f85af6f636d4e60ac1314b3", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info/payer", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "bea086aca1ef483ea9352699", + "revision": "d6f4729409844fac811f5a6b", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info/collector", "content": { - "type": "OBJECT", + "type": 1, "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "da300f7d37814386bd963fc5", + "revision": "5f3532f3efcf46b5b38d9429", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/bank_info", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6169a2447bf549c187b161f5", + "revision": "fd891f2bc54549abaa16cefa", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "installments": 1, "net_received_amount": 0, @@ -103673,60 +103673,60 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "b38fb0e87003499598005f62", + "revision": "bf27df8318894ccdb2b8c180", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/qr_code", "content": { - "type": "STRING", + "type": 5, "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter5566184887363046119", - "revision": "f372769132e8419b8eaf22da", + "revision": "4aef3c2bda48458aa2c73c05", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/ticket_url", "content": { - "type": "STRING", + "type": 5, "value": "https://www.mercadopago.com.br/payments/55661848873/ticket?caller_id=1310149122&hash=e13553d1-ab9f-45c3-ab92-c23df003b316", - "revision": "f6ea31d98c114608b1a18594", + "revision": "a3d2cbca4819445da8ce4158", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/qr_code_base64", "content": { - "type": "STRING", + "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIxklEQVR42u3dW27kNhAFUO5A+9+ldqAgwWDcYt2inGSAZMSjD8N2d0uH/Veo17h+o+sctLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/Xjvm6/jxv69Xp09Pb/nzdrePnT9+/PW/9KAfb6mfnRi0tLS0tLS0tLS0tLSbaI9C+fztvAO+7nT+PNBxf+zxeaDpBOW4t49lFS0tLS0tLS0tLS0t7QbazwCyGqdI8MudT3COmDyc8Om5hUFLS0tLS0tLS0tLS7ut9rrHiV/P+SyGrDm9+mr+87pHm7S0tLS0tLS0tLS0tLRzNFcVJQicqi5v13TclC2c3kxLS0tLS0tLS0tLS7u3Ngd36bFnaVeb7l5eGE+ydfEnLS0tLS0tLS0tLS3t+7VpSsl/8ONfzFShpaWlpaWlpaWlpaX9nbXrq40EP8PL8x4O1vfloSVNOWa5aGlpaWlpaWlpaWlp365NRZNnl787Fy1xKRYtB5qGTl5l/OQyu0dLS0tLS0tLS0tLS/s+bZqpX0aQXPdOtdQSd3WD+tMs/yusZhvdkH9aWlpaWlpaWlpaWtp3a9M+tTKeP0WCdTL/p+JaJAXLhMp6PlpaWlpaWlpaWlpa2n20JSZsRz5eJbtX7n6G7F5y1+8hP42WlpaWlpaWlpaWlnYD7Xqp2qRIh0xPbF9t84YJREtLS0tLS0tLS0tLu4W2tL+lBreauitpuqtPzo28JeDMtwp4WlpaWlpaWlpaWlra12tzSJfmhtQl1qnBbZHEm2o82y68g5aWlpaWlpaWlpaWdidt+i0PFLm6+SJX2KA9FWHeyjHLWJIR8LS0tLS0tLS0tLS0tFtop0RcKq6s5FIbeS22W6cCzul9Jaw9aGlpaWlpaWlpaWlpt9O226jTMJJ0vuJJceLolq+NUJ1JS0tLS0tLS0tLS0u7lTa1xKXgLg/gb5N9YzGSMoWmz7vhaGlpaWlpaWlpaWlpX6UtY0RS+m3cb3KWmsyQkusHRz5VbNLS0tLS0tLS0tLS0u6oTbm1Zgxkvh7Hl5ThlMcib0hLS0tLS0tLS0tLS7uT9pa/Sy1x7ZrqHGM2icI06ySlAsNESVpaWlpaWlpaWlpa2ndrz9yklu9UM3llT9qqwa3L343pLs8xLy0tLS0tLS0tLS0t7Xu0tzhx2oRWKjHHvYXtDJ5RutxKiFhnUE5B5UPMS0tLS0tLS0tLS0tL+yJt7k9r/ixjRL7XSdfypshyeoGWlpaWlpaWlpaWlnYL7VNe7gi3axJxeV7JVTrf2gLO6RuhpaWlpaWlpaWlpaXdQpsfNsLwxxT6pa65NhU44Ztk37IbjpaWlpaWlpaWlpaW9o3aEUbsj/znFOtN8V+JOx/zd0Vbv0NaWlpaWlpaWlpaWtottGkESUrnPc3tv40ladvk0uK29uG0tLS0tLS0tLS0tLTv1x6hfDL1sV0lEZdLL2sjXAovF+MnL1paWlpaWlpaWlpa2r20zT3TFuxSG3nmrrnS/nZ2GcTHjjtaWlpaWlpaWlpaWtq3a9NkkLJy7SypuzQpsm2Ty+1v6bnjcaYKLS0tLS0tLS0tLS3t27Sju6aKyDKC5OgmnNQzpwg0V11OBZe0tLS0tLS0tLS0tLQbaEs0dy4ptZnt6q5Uibmu4pyCT1paWlpaWlpaWlpa2p20V7nx1A2XR5Uc3XNSBDrl+VZfwUMukpaWlpaWlpaWlpaW9lXa6/6OM8wmuUJZ5AhxZ5MefKqwTL/R0tLS0tLS0tLS0tLuo20WrS0630anbZaqpVxiXpn9rapLWlpaWlpaWlpaWlral2mvboL/Y/lk6WhrtmBPKwByyecoAyZpaWlpaWlpaWlpaWm30JZd1bXwcepjSzm4Endez0vVpuBzlOJPWlpaWlpaWlpaWlranbQ16ktTStYJwLIj+wyfGN1q7ZOWlpaWlpaWlpaWlnZr7ehWrl0hxrzypJF2UXYbi6bvgZaWlpaWlpaWlpaWdjttEwSmELG0xNXutZSrS0NQ0vm6WZW0tLS0tLS0tLS0tLRv1n6+N5VKNh1tizLLUXrb8oGOru5z+gQtLS0tLS0tLS0tLe27tW3727I/beSM37FYmT1l8koAWb85WlpaWlpaWlpaWlraLbQpMGwjxkUR5hG65lI9Z1qPPb16PGT3aGlpaWlpaWlpaWlpX6VNe9LKp2rur0SHacxJwre72BZBJS0tLS0tLS0tLS0t7eu1i23UzWTHfMjmpK1sijG/OVOFlpaWlpaWlpaWlpb2Zdo2sVfzbe2Ukm/MHClB5QivHrHGk5aWlpaWlpaWlpaWdgPtFEo2JZCLR5y54HL6CtIMyvSl0dLS0tLS0tLS0tLS7qNNDWnT59NU/24Afwwln7ZlX4tcIi0tLS0tLS0tLS0t7fu1TQy3HkbS1mmWCLQa2xuUWlBaWlpaWlpaWlpaWtoNtG37W44YU21kXWxdijBTVFr75765s5uWlpaWlpaWlpaWlvaN2tHNh2xCyacwtNZVTrJ1KElLS0tLS0tLS0tLS7uPNl2L4Y9tiHiUz+aEXTME5TPtN120tLS0tLS0tLS0tLTv1o75Wg3qn4LAVHBZQslUdVnd/2CqPy0tLS0tLS0tLS0t7Vu0Rwggm/LJsii7ni8VV5bzTVHp34kiaWlpaWlpaWlpaWlpX6ld1FqO0Op2hM9WSj7p6gRp7xotLS0tLS0tLS0tLe3e2jTycQr42mUAeWdbM8a/nJSWlpaWlpaWlpaWlnZvbTti/7on4s4wXySFg7V1rg0bH3Z209LS0tLS0tLS0tLSvlK7xufosM39jfvu61VfXOmue551SUtLS0tLS0tLS0tL+z5tLXzMTWpnSAA+FmF+5u+a0LQ0xy2rLmlpaWlpaWlpaWlpad+m/f9ftLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/TPsHcCgepoe7LrMAAAAASUVORK5CYII=", - "revision": "e9a5c0eb0c8d49169fd4728d", + "revision": "1e83af58f5fe4d3a8678bceb", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/details/costs", "content": { - "type": "ARRAY", + "type": 2, "value": {}, - "revision": "6537e6dccba2481faa17cb81", + "revision": "9c25a0b707984e7296f86c81", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -103753,101 +103753,101 @@ "status_detail": "expired", "currency_id": "BRL" }, - "revision": "66d10277ccb24078af7e8f14", + "revision": "bb8f55a30b6a42b5a9138aa9", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history/1678652275580/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1470.0699.3684.7822-00", - "revision": "b1bcec4548714867bc2d0439", + "revision": "0747d9daecf146e2a4b5bc5c", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820582 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "f0e6fffe588c4b43b524a763", + "revision": "52c1a334d2be46c1b3189632", "revision_nr": 1, - "created": 1701465820582, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147006993684782200", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678651931786, "dateValidity": 1678669931823, "totalValue": 0, "currencyType": "USD" }, - "revision": "991a884c89f34d2e9fdf8206", + "revision": "a09aa6eb210d4f709b2e1a06", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147062074886654460/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "002ab226c2544f849ff25d04", + "revision": "f55f68976fa7422eaa778ce2", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147062074886654460/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "6c578c0bb106449cbaa18391", + "revision": "7a085b50816a4b599ba53fe6", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147062074886654460/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "1f9c841dcaed4216bf8de760", + "revision": "ad616ebf01b0460dbddb46e6", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147062074886654460/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "35d3472d90304050ad816553", + "revision": "7cfdf393b45740a6939873cb", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/147062074886654460", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1685823720836, "dateValidity": 1685823720836, @@ -103858,102 +103858,102 @@ "value": 1696820400000 } }, - "revision": "127fca55d77d4fc2b17596f9", + "revision": "65ae0d78b9e94687a929dbf7", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/149922673320977100/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "a3d8791cf16e443995f8225f", + "revision": "cd366c215408452bb5e7251f", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/149922673320977100/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "636c1feb76b648618adf578b", + "revision": "0adde0d247954acc812f0d14", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/149922673320977100", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1678155962477, "dateValidity": 1678510544290, "totalValue": 0, "currencyType": "USD" }, - "revision": "5b0ce8fa3e394e2f85fa6806", + "revision": "f0a7d4b5af4a458e94f33b0d", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/151721738402511580/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "4788e2a2be04425faba20eb7", + "revision": "0f84626cc4ce43139301c8b6", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/151721738402511580/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "3f266057bfa84d3db210e929", + "revision": "0456c9dd45b545fd8ef242f7", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/151721738402511580", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1696981676486, "dateValidity": 1696981676516, "currencyType": "USD" }, - "revision": "aba989502c6940c4bb7c19bb", + "revision": "3b0447b6799e4dbdb3a8b1e3", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/balances", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "402cabd2c02d4c459d5f2a0b", + "revision": "aa96c2d1f316434691b3c49b", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/date_of_expiration", "content": { - "type": "OBJECT", + "type": 1, "value": { ".type": "date", ".val": { @@ -103961,16 +103961,16 @@ "value": 1696549725001 } }, - "revision": "991bb31cdf594980a6210893", + "revision": "8fd12d2b99f84812b2995a2b", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1693957725002, "net_received_amount": 0, @@ -103982,27 +103982,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "48e049c71cd946f18b8a8567", + "revision": "47702008e95c445f87891311", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/152557644739400160/history/1693957725002", - "revision": "0f81742869374b9c979d6fa4", + "revision": "d5b15a252cfc4f4aa29bf00a", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "deposit", "wallet_type": "IVIPCOIN", @@ -104036,27 +104036,27 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c0c2f17116d240f8b2fe9e1e", + "revision": "b59a775a8dff4113a85999e0", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1693957725002/description", "content": { - "type": "STRING", + "type": 5, "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 1525.5764.4739.4001-60", - "revision": "926e1466775a474f820fca5c", + "revision": "3b931b4696c8444da97855d7", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430/details", "content": { - "type": "OBJECT", + "type": 1, "value": { "payment_method_reference_id": 1694615393430, "net_received_amount": 0, @@ -104068,27 +104068,27 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "0fd054cdc50040a19087f8bd", + "revision": "8cbc322faa674b6fade3ebad", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430/details/external_resource_url", "content": { - "type": "STRING", + "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/152557644739400160/history/1694615393430", - "revision": "e3d19c74b0c44f859d602561", + "revision": "9bf6661cb8134bc0b1ccc328", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430", "content": { - "type": "OBJECT", + "type": 1, "value": { "type": "staking", "wallet_type": "IVIPCOIN", @@ -104116,63 +104116,63 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "68a8fdf44c18437196b616f8", + "revision": "3850057fd7934ac1b7edf88a", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history/1694615393430/description", "content": { - "type": "STRING", + "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 13/09/2025 - P9A02KSL", - "revision": "615d3c62c0db4721ae971411", + "revision": "d958e6d1135a4d3b9d8b6064", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/history", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "e21ae9cd1e3b44788bde6f54", + "revision": "ed5d3c8e4482406f9628b04b", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/credit/invoices", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "2767e71e60f04254a9b322cf", + "revision": "f12537b914104fb8bc7d9277", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160/credit", "content": { - "type": "OBJECT", + "type": 1, "value": { "approvedLimit": 0, "limitUsed": 0 }, - "revision": "baee28f3245740939c308544", + "revision": "5d7f923f8e694cf19c757532", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__/152557644739400160", "content": { - "type": "OBJECT", + "type": 1, "value": { "dataModificacao": 1693436516681, "dateValidity": 1693436516720, @@ -104182,21 +104182,21 @@ "value": 1695092400000 } }, - "revision": "be2b0bd3dce04e3c8a774efa", + "revision": "4cf22066a9db4d9f9b44f787", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } }, { "path": "ivipcoin-db::__movement_wallet__", "content": { - "type": "OBJECT", + "type": 1, "value": {}, - "revision": "75f57d4027c9483d94931cc7", + "revision": "1df4f3342d87433eb9345f29", "revision_nr": 1, - "created": 1701465820583, - "modified": 1701465820583 + "created": 1701809345000, + "modified": 1701809345000 } } ] \ No newline at end of file diff --git a/test/restructureJson.ts b/test/restructureJson.ts deleted file mode 100644 index 4db4a468..00000000 --- a/test/restructureJson.ts +++ /dev/null @@ -1,111 +0,0 @@ -import { MongoClient } from "mongodb"; -import fs from "fs"; - -interface Balance { - available: string; - symbol: string; - value: number; -} - -interface BalanceInfo { - [symbol: string]: Balance; -} - -interface OriginalBalance { - path: string; - content: { - value: Balance; - }; -} - -interface RestructuredResult { - balances: BalanceInfo; -} -async function main() { - const uri = "mongodb://manager:9Hq91q5oExU9biOZ7yq98I8P1DU1ge@ivipcoin-api.com:4048/?authMechanism=DEFAULT"; - const client = new MongoClient(uri); - - try { - await client.connect(); - const collection = client.db("root").collection("teste"); - const limit = 50; - - console.log(new Date().getSeconds(), "antes da busca"); - const resultData = await collection.find().toArray(); - const afterLimit = resultData.slice(0, limit); - - console.log(new Date().getSeconds(), "depois da busca"); - - const KEY_THAT_MUST_BE_ARRAY = ["costs"]; - - function restructureJson(entries) { - const result = {}; - - entries.forEach((entry) => { - const { path, content } = entry; - const parts = path.split("/"); - let current = result; - - for (let i = 0; i < parts.length; i++) { - const part = parts[i]; - - if (i === parts.length - 1) { - let key = part.replace(/__+/g, "_").replace(/^_+|_+$/g, ""); - const { value } = content; - - if (!current[key]) { - key = key.split("[")[0]; - - if (KEY_THAT_MUST_BE_ARRAY.includes(key)) { - current[key] = []; - - if (Object.keys(value).length) { - current[key].push(value); - } - } else { - current[key] = value; - } - } - } else { - if (!current[part]) { - current[part] = {}; - } - - current = current[part]; - } - } - }); - - return result; - } - - const entries = afterLimit; - - const dataAfterToBeRestructured = restructureJson(entries); - - const dataFromMongoConvertedToJSON = JSON.stringify(dataAfterToBeRestructured, null, 2); - - function afterRestructureSaveIntoJSONFile(dataWithOutPathFromMongodb) { - console.log(dataWithOutPathFromMongodb); - - const fileAddress: any = "./test/outputRestructuredJSON.json"; - fs.writeFile(fileAddress, dataWithOutPathFromMongodb, (error) => { - if (error) { - console.error("Algum erro aconteceu", error); - } else { - console.log(fileAddress); - } - }); - - return dataWithOutPathFromMongodb; - } - - console.log(afterRestructureSaveIntoJSONFile(dataFromMongoConvertedToJSON)); - - console.log(new Date().getSeconds(), "final da busca"); - } finally { - await client.close(); - } -} - -main().catch(console.error); From d993c78e6c90a91e0acbfc44d292a7c4184f4741 Mon Sep 17 00:00:00 2001 From: iamrosada Date: Wed, 6 Dec 2023 23:14:04 +0300 Subject: [PATCH 24/36] feat: added new feature --- .../database/Node/NodeRestructureJson.ts | 59 ++++++++-- .../database/Node/NodeResultWithPath.ts | 109 ++++++++++-------- 2 files changed, 109 insertions(+), 59 deletions(-) diff --git a/src/server/services/database/Node/NodeRestructureJson.ts b/src/server/services/database/Node/NodeRestructureJson.ts index ab4d16f2..10568378 100644 --- a/src/server/services/database/Node/NodeRestructureJson.ts +++ b/src/server/services/database/Node/NodeRestructureJson.ts @@ -1,5 +1,8 @@ import { MongoClient } from "mongodb"; import fs from "fs"; +import path from "path"; + +const INPUT_FILE_NAME = "../../../../../test/myjsonfile.json"; // Class encapsulating the data restructuring functionality class NoderestructureJson { @@ -25,7 +28,7 @@ class NoderestructureJson { private restructureJson(entries) { const result = {}; const KEY_THAT_MUST_BE_ARRAY = ["costs"]; - entries.forEach((entry) => { + entries?.forEach((entry) => { const { path, content } = entry; const parts = path.split("/"); let current = result; @@ -91,21 +94,53 @@ class NoderestructureJson { return dataWithOutPathFromMongodb; } + private async readFilesUsingPath(inputFile) { + const filePath = path.join(__dirname, inputFile); - // Main method orchestrating the data restructuring process - public async main() { try { - await this.connectToDatabase(); + const data = fs.readFileSync(filePath, "utf8"); + const result = JSON.parse(data); + + return result; + } catch (err) { + console.error("Error reading or parsing the file:", err); + } + } + + public async main(choose: string) { + switch (choose) { + case "REMOTE": + try { + await this.connectToDatabase(); + + const entries = await this.fetchDataFromMongoDB(); + const dataAfterToBeRestructured = this.restructureJson(entries); + const dataFromMongoConvertedToJSON = JSON.stringify(dataAfterToBeRestructured, null, 2); - const entries = await this.fetchDataFromMongoDB(); - const dataAfterToBeRestructured = this.restructureJson(entries); - const dataFromMongoConvertedToJSON = JSON.stringify(dataAfterToBeRestructured, null, 2); + console.log(this.convertToJsonAndSaveToFile(dataFromMongoConvertedToJSON)); - console.log(this.convertToJsonAndSaveToFile(dataFromMongoConvertedToJSON)); + console.log(new Date().getSeconds(), "final da busca"); + } finally { + await this.closeDatabaseConnection(); + } + + break; + case "LOCAL": + try { + const entries = await this.readFilesUsingPath(INPUT_FILE_NAME); + + const dataAfterToBeRestructured = this.restructureJson(entries); + const dataFromMongoConvertedToJSON = JSON.stringify(dataAfterToBeRestructured, null, 2); + + console.log(this.convertToJsonAndSaveToFile(dataFromMongoConvertedToJSON)); + + console.log(new Date().getSeconds(), "final da busca"); + } finally { + console.log("LIDO COM SUCESSO"); + } + break; - console.log(new Date().getSeconds(), "final da busca"); - } finally { - await this.closeDatabaseConnection(); + default: } } } @@ -113,4 +148,4 @@ class NoderestructureJson { // Usage const uri = "mongodb://manager:9Hq91q5oExU9biOZ7yq98I8P1DU1ge@ivipcoin-api.com:4048/?authMechanism=DEFAULT"; const dataRestructure = new NoderestructureJson(uri); -dataRestructure.main().catch(console.error); +dataRestructure.main("REMOTE").catch(console.error); diff --git a/src/server/services/database/Node/NodeResultWithPath.ts b/src/server/services/database/Node/NodeResultWithPath.ts index 24796cbe..d687a038 100644 --- a/src/server/services/database/Node/NodeResultWithPath.ts +++ b/src/server/services/database/Node/NodeResultWithPath.ts @@ -1,5 +1,5 @@ -import fs from "fs"; -import path from "path"; +import * as fs from "fs"; +import * as path from "path"; import { randomUUID } from "crypto"; @@ -17,8 +17,9 @@ type Result = { }; }; -const FILE_ADDRESS = "../../../../../test/__movement_wallet__.json"; +const FILE_ADDRESS_INPUT = "../../../../../test/__movement_wallet__.json"; +const FILE_ADDRESS_OUTPUT = "./test/outputResultWithPathJSON.json"; const nodeValueTypes = { EMPTY: 0, OBJECT: 1, @@ -32,6 +33,59 @@ const nodeValueTypes = { REFERENCE: 9, } as const; +class ReadFiles { + private fileAddress: string; + private outputResultPath: string; + private fileAddressParam: string; + + constructor(fileAddress?: string, outputResultPath?: string, fileAddressParam?: string) { + this.fileAddress = fileAddress || "./test/outputResultWithPathJSON.json"; + this.outputResultPath = outputResultPath || FILE_ADDRESS_INPUT; + this.fileAddressParam = fileAddressParam || FILE_ADDRESS_INPUT; + } + + public readPath() { + const filePath = path.join(__dirname, this.fileAddressParam); + + fs.readFile(filePath, "utf8", (err, data) => { + if (err) { + console.error("Error reading the file:", err); + return; + } + + console.log(filePath); + + try { + const dataToArray = JSON.parse(data); + const nodeJsonTransformer = new NodeJsonTransformer(); + + const result = nodeJsonTransformer.transform(dataToArray); + + const dataJSONModel = JSON.stringify(result, null, 2); + + const afterRestructureSaveIntoJSONFile = (dataWithOutPathFromMongodb: any) => { + console.log(new Date().getSeconds(), "started"); + + fs.writeFile(this.fileAddress, dataWithOutPathFromMongodb, (error) => { + if (error) { + console.error("Algum erro aconteceu", error); + } else { + console.log(this.fileAddress); + } + }); + + return dataWithOutPathFromMongodb; + }; + + afterRestructureSaveIntoJSONFile(dataJSONModel); + } catch (parseError) { + console.error("Error parsing JSON:", parseError); + } + }); + console.log(new Date().getSeconds(), "end"); + } +} + class NodeJsonTransformer { private generateShortUUID(): string { const fullUUID = randomUUID(); @@ -39,7 +93,7 @@ class NodeJsonTransformer { return shortUUID; } - private getType(value: unknown): number { + public getType(value: unknown): number { if (Array.isArray(value)) { return nodeValueTypes.ARRAY; } else if (value && typeof value === "object") { @@ -59,7 +113,7 @@ class NodeJsonTransformer { } } - private transform(json: Record, prefix: string = ""): Result[] { + public transform(json: Record, prefix: string = ""): Result[] { const results: Result[] = []; const nonObjectKeys: Record = {}; const arrayResults: Result[] = []; @@ -200,50 +254,11 @@ class NodeJsonTransformer { return processObject(obj); } - - private readPath() { - const fileName = FILE_ADDRESS; - const filePath = path.join(__dirname, fileName); - - fs.readFile(filePath, "utf8", (err, data) => { - if (err) { - console.error("Error reading the file:", err); - return; - } - - try { - var dataToArray = JSON.parse(data); - - const result = this.transform(dataToArray); - - const dataJSONModel = JSON.stringify(result, null, 2); - - function afterRestructureSaveIntoJSONFile(dataWithOutPathFromMongodb) { - console.log(new Date().getSeconds(), "started"); - - const fileAddress: any = "./test/outputResultWithPathJSON.json"; - fs.writeFile(fileAddress, dataWithOutPathFromMongodb, (error) => { - if (error) { - console.error("Algum erro aconteceu", error); - } else { - console.log(fileAddress); - } - }); - - return dataWithOutPathFromMongodb; - } - - afterRestructureSaveIntoJSONFile(dataJSONModel); - } catch (parseError) { - console.error("Error parsing JSON:", parseError); - } - }); - console.log(new Date().getSeconds(), "end"); - } - // Public method to initiate the transformation public startTransformation() { - this.readPath(); + // Example usage: + const instance = new ReadFiles("./test/outputResultWithPathJSON.json", FILE_ADDRESS_OUTPUT, FILE_ADDRESS_INPUT); + instance.readPath(); } } From 10e975dee6637f8996f365deac949aedb36f439e Mon Sep 17 00:00:00 2001 From: Ismael Souza Silva Date: Thu, 7 Dec 2023 09:27:44 -0300 Subject: [PATCH 25/36] =?UTF-8?q?Documenta=C3=A7=C3=A3o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/server/services/database/Node/index.ts | 57 ++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/src/server/services/database/Node/index.ts b/src/server/services/database/Node/index.ts index ca68e584..b07e1db8 100644 --- a/src/server/services/database/Node/index.ts +++ b/src/server/services/database/Node/index.ts @@ -36,6 +36,21 @@ export const nodeValueTypes = { export type NodeValueType = (typeof nodeValueTypes)[keyof typeof nodeValueTypes]; export const VALUE_TYPES = nodeValueTypes as Record; +/** + * Retorna o nome descritivo de um tipo de valor com base no código do tipo. + * + * @param {number} valueType - O código do tipo de valor. + * @returns {string} - O nome descritivo do tipo de valor correspondente. + * @throws {Error} - Se o código do tipo de valor fornecido for desconhecido. + * + * @example + * const typeName = getValueTypeName(VALUE_TYPES.STRING); + * // Retorna: "string" + * + * @example + * const typeName = getValueTypeName(99); + * // Retorna: "dedicated_record" + */ export function getValueTypeName(valueType: number) { switch (valueType) { case VALUE_TYPES.ARRAY: @@ -63,6 +78,20 @@ export function getValueTypeName(valueType: number) { } } +/** + * Retorna um valor padrão para um tipo de valor com base no código do tipo. + * + * @param {number} valueType - O código do tipo de valor. + * @returns {any} - Um valor padrão correspondente ao tipo de valor especificado. + * + * @example + * const defaultValue = getValueTypeDefault(VALUE_TYPES.STRING); + * // Retorna: "" + * + * @example + * const defaultValue = getValueTypeDefault(VALUE_TYPES.NUMBER); + * // Retorna: 0 + */ function getValueTypeDefault(valueType: number) { switch (valueType) { case VALUE_TYPES.ARRAY: @@ -88,6 +117,20 @@ function getValueTypeDefault(valueType: number) { } } +/** + * Determina o tipo de valor de um nó com base no valor fornecido. + * + * @param {unknown} value - O valor a ser avaliado. + * @returns {number} - O código do tipo de valor correspondente. + * + * @example + * const valueType = getNodeValueType([1, 2, 3]); + * // Retorna: VALUE_TYPES.ARRAY + * + * @example + * const valueType = getNodeValueType(new PathReference()); + * // Retorna: VALUE_TYPES.REFERENCE + */ export function getNodeValueType(value: unknown) { if (value instanceof Array) { return VALUE_TYPES.ARRAY; @@ -109,6 +152,20 @@ export function getNodeValueType(value: unknown) { return VALUE_TYPES.EMPTY; } +/** + * Determina o tipo de valor de um dado com base no valor fornecido. + * + * @param {unknown} value - O valor a ser avaliado. + * @returns {number} - O código do tipo de valor correspondente. + * + * @example + * const valueType = getValueType([1, 2, 3]); + * // Retorna: VALUE_TYPES.ARRAY + * + * @example + * const valueType = getValueType(new PathReference()); + * // Retorna: VALUE_TYPES.REFERENCE + */ export function getValueType(value: unknown) { if (value instanceof Array) { return VALUE_TYPES.ARRAY; From 28858b4b05adb9c8cb82396abfd0b4da6f9d24ed Mon Sep 17 00:00:00 2001 From: iamrosada Date: Thu, 7 Dec 2023 16:34:11 +0300 Subject: [PATCH 26/36] feat: done the set method --- .../database/Node/NodeRestructureJson.ts | 130 +++++++----------- 1 file changed, 47 insertions(+), 83 deletions(-) diff --git a/src/server/services/database/Node/NodeRestructureJson.ts b/src/server/services/database/Node/NodeRestructureJson.ts index 10568378..7374bf00 100644 --- a/src/server/services/database/Node/NodeRestructureJson.ts +++ b/src/server/services/database/Node/NodeRestructureJson.ts @@ -2,26 +2,16 @@ import { MongoClient } from "mongodb"; import fs from "fs"; import path from "path"; -const INPUT_FILE_NAME = "../../../../../test/myjsonfile.json"; +import getJson from "./myjsonfile.json"; // Class encapsulating the data restructuring functionality -class NoderestructureJson { - private readonly uri: string; - private readonly client: MongoClient; +class NodeRestructureJson { + public pathToSave: string; + public jsonFile: any[]; - constructor(uri: string) { - this.uri = uri; - this.client = new MongoClient(uri); - } - - // Establish a connection to the MongoDB database - private async connectToDatabase() { - await this.client.connect(); - } - - // Close the connection to the MongoDB database - private async closeDatabaseConnection() { - await this.client.close(); + constructor(path: string, jsonFile: any[]) { + this.pathToSave = path; + this.jsonFile = jsonFile; } // Restructure JSON data based on specified logic @@ -67,24 +57,13 @@ class NoderestructureJson { return result; } - // Fetch data from MongoDB collection - private async fetchDataFromMongoDB() { - const collection = this.client.db("root").collection("teste"); - const limit = 50; - - console.log(new Date().getSeconds(), "antes da busca"); - const resultData = await collection.find().toArray(); - const afterLimit = resultData.slice(0, limit); - - return afterLimit; - } - // Convert JSON data to string and save it to a file - private convertToJsonAndSaveToFile(dataWithOutPathFromMongodb) { - console.log(dataWithOutPathFromMongodb); - - const fileAddress: any = "./test/outputRestructuredJSON.json"; - fs.writeFile(fileAddress, dataWithOutPathFromMongodb, (error) => { + private convertToJsonAndSaveToFile(dataToSave) { + const fileAddress: string = this.pathToSave; + /* fileAddress: file to save the data + dataWithOutPathFromMongodb: the data that will be save into of file + */ + fs.writeFile(fileAddress, dataToSave, (error) => { if (error) { console.error("Algum erro aconteceu", error); } else { @@ -92,60 +71,45 @@ class NoderestructureJson { } }); - return dataWithOutPathFromMongodb; + return dataToSave; } - private async readFilesUsingPath(inputFile) { - const filePath = path.join(__dirname, inputFile); + public async set() { try { - const data = fs.readFileSync(filePath, "utf8"); - const result = JSON.parse(data); - - return result; - } catch (err) { - console.error("Error reading or parsing the file:", err); - } - } - - public async main(choose: string) { - switch (choose) { - case "REMOTE": - try { - await this.connectToDatabase(); - - const entries = await this.fetchDataFromMongoDB(); - const dataAfterToBeRestructured = this.restructureJson(entries); - const dataFromMongoConvertedToJSON = JSON.stringify(dataAfterToBeRestructured, null, 2); - - console.log(this.convertToJsonAndSaveToFile(dataFromMongoConvertedToJSON)); - - console.log(new Date().getSeconds(), "final da busca"); - } finally { - await this.closeDatabaseConnection(); - } - - break; - case "LOCAL": - try { - const entries = await this.readFilesUsingPath(INPUT_FILE_NAME); - - const dataAfterToBeRestructured = this.restructureJson(entries); - const dataFromMongoConvertedToJSON = JSON.stringify(dataAfterToBeRestructured, null, 2); - - console.log(this.convertToJsonAndSaveToFile(dataFromMongoConvertedToJSON)); - - console.log(new Date().getSeconds(), "final da busca"); - } finally { - console.log("LIDO COM SUCESSO"); - } - break; - - default: + /** + * the restructureJson: This function will receive the value from user, + * his parameter is refer to the value that user will pass + */ + const dataAfterToBeRestructured = this.restructureJson(this.jsonFile); + /** + * the convertedToJson: After restructured the file from user, this variable will receive the + * value from restructureJson function, then we will pass into convertToJsonAndSaveToFile + * + * convertToJsonAndSaveToFile: That is another function will his rules, the first is get the json file + * and save to address that the user will pass + * + */ + + const convertedToJson = JSON.stringify(dataAfterToBeRestructured, null, 2); + + console.log(this.convertToJsonAndSaveToFile(convertedToJson)); + + console.log(new Date().getSeconds(), "final da busca"); + } finally { + console.log("LIDO COM SUCESSO"); } } } // Usage -const uri = "mongodb://manager:9Hq91q5oExU9biOZ7yq98I8P1DU1ge@ivipcoin-api.com:4048/?authMechanism=DEFAULT"; -const dataRestructure = new NoderestructureJson(uri); -dataRestructure.main("REMOTE").catch(console.error); +const OUTPUT_FILE_NAME = "./src/server/services/database/Node/outputRestructuredJSON.json"; + +const pathToSave = OUTPUT_FILE_NAME; +/* +here on jsonFile variable we will receive the +json object from user, that his responsibility to pass it + +*/ +const jsonFile: any[] = getJson; +const dataRestructure = new NodeRestructureJson(pathToSave, jsonFile); +dataRestructure.set(); From fb1db7d11fbd713aba64c956a08c2c18d2a1d981 Mon Sep 17 00:00:00 2001 From: Ismael Souza Silva Date: Thu, 7 Dec 2023 15:58:03 -0300 Subject: [PATCH 27/36] =?UTF-8?q?Aprimoramento=20e=20implanta=C3=A7=C3=A3o?= =?UTF-8?q?=20do=20MDE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/server/services/database/MDE/index.ts | 459 ++++++++++++++++++++++ 1 file changed, 459 insertions(+) create mode 100644 src/server/services/database/MDE/index.ts diff --git a/src/server/services/database/MDE/index.ts b/src/server/services/database/MDE/index.ts new file mode 100644 index 00000000..976ae315 --- /dev/null +++ b/src/server/services/database/MDE/index.ts @@ -0,0 +1,459 @@ +import { PathInfo, PathReference, SimpleEventEmitter } from "ivipbase-core"; +import { isDate } from "util/types"; + +export const nodeValueTypes = { + EMPTY: 0, + // Native types: + OBJECT: 1, + ARRAY: 2, + NUMBER: 3, + BOOLEAN: 4, + STRING: 5, + BIGINT: 7, + // Custom types: + DATETIME: 6, + BINARY: 8, + REFERENCE: 9, + + DEDICATED_RECORD: 99, +} as const; + +export type NodeValueType = (typeof nodeValueTypes)[keyof typeof nodeValueTypes]; +export const VALUE_TYPES = nodeValueTypes as Record; + +/** + * Retorna o nome descritivo de um tipo de valor com base no código do tipo. + * + * @param {number} valueType - O código do tipo de valor. + * @returns {string} - O nome descritivo do tipo de valor correspondente. + * @throws {Error} - Se o código do tipo de valor fornecido for desconhecido. + * + * @example + * const typeName = getValueTypeName(VALUE_TYPES.STRING); + * // Retorna: "string" + * + * @example + * const typeName = getValueTypeName(99); + * // Retorna: "dedicated_record" + */ +export function getValueTypeName(valueType: number) { + switch (valueType) { + case VALUE_TYPES.ARRAY: + return "array"; + case VALUE_TYPES.BINARY: + return "binary"; + case VALUE_TYPES.BOOLEAN: + return "boolean"; + case VALUE_TYPES.DATETIME: + return "date"; + case VALUE_TYPES.NUMBER: + return "number"; + case VALUE_TYPES.OBJECT: + return "object"; + case VALUE_TYPES.REFERENCE: + return "reference"; + case VALUE_TYPES.STRING: + return "string"; + case VALUE_TYPES.BIGINT: + return "bigint"; + case VALUE_TYPES.DEDICATED_RECORD: + return "dedicated_record"; + default: + "unknown"; + } +} + +/** + * Retorna um valor padrão para um tipo de valor com base no código do tipo. + * + * @param {number} valueType - O código do tipo de valor. + * @returns {any} - Um valor padrão correspondente ao tipo de valor especificado. + * + * @example + * const defaultValue = getValueTypeDefault(VALUE_TYPES.STRING); + * // Retorna: "" + * + * @example + * const defaultValue = getValueTypeDefault(VALUE_TYPES.NUMBER); + * // Retorna: 0 + */ +function getValueTypeDefault(valueType: number) { + switch (valueType) { + case VALUE_TYPES.ARRAY: + return []; + case VALUE_TYPES.OBJECT: + return {}; + case VALUE_TYPES.NUMBER: + return 0; + case VALUE_TYPES.BOOLEAN: + return false; + case VALUE_TYPES.STRING: + return ""; + case VALUE_TYPES.BIGINT: + return BigInt(0); + case VALUE_TYPES.DATETIME: + return new Date().toISOString(); + case VALUE_TYPES.BINARY: + return new Uint8Array(); + case VALUE_TYPES.REFERENCE: + return null; + default: + return undefined; // Or any other default value you prefer + } +} + +/** + * Determina o tipo de valor de um nó com base no valor fornecido. + * + * @param {unknown} value - O valor a ser avaliado. + * @returns {number} - O código do tipo de valor correspondente. + * + * @example + * const valueType = getNodeValueType([1, 2, 3]); + * // Retorna: VALUE_TYPES.ARRAY + * + * @example + * const valueType = getNodeValueType(new PathReference()); + * // Retorna: VALUE_TYPES.REFERENCE + */ +export function getNodeValueType(value: unknown) { + if (value instanceof Array) { + return VALUE_TYPES.ARRAY; + } else if (value instanceof PathReference) { + return VALUE_TYPES.REFERENCE; + } else if (value instanceof ArrayBuffer) { + return VALUE_TYPES.BINARY; + } else if (isDate(value)) { + return VALUE_TYPES.DATETIME; + } + // TODO else if (value instanceof DataDocument) { return VALUE_TYPES.DOCUMENT; } + else if (typeof value === "string") { + return VALUE_TYPES.STRING; + } else if (typeof value === "object") { + return VALUE_TYPES.OBJECT; + } else if (typeof value === "bigint") { + return VALUE_TYPES.BIGINT; + } + return VALUE_TYPES.EMPTY; +} + +/** + * Determina o tipo de valor de um dado com base no valor fornecido. + * + * @param {unknown} value - O valor a ser avaliado. + * @returns {number} - O código do tipo de valor correspondente. + * + * @example + * const valueType = getValueType([1, 2, 3]); + * // Retorna: VALUE_TYPES.ARRAY + * + * @example + * const valueType = getValueType(new PathReference()); + * // Retorna: VALUE_TYPES.REFERENCE + */ +export function getValueType(value: unknown) { + if (value instanceof Array) { + return VALUE_TYPES.ARRAY; + } else if (value instanceof PathReference) { + return VALUE_TYPES.REFERENCE; + } else if (value instanceof ArrayBuffer) { + return VALUE_TYPES.BINARY; + } else if (isDate(value)) { + return VALUE_TYPES.DATETIME; + } + // TODO else if (value instanceof DataDocument) { return VALUE_TYPES.DOCUMENT; } + else if (typeof value === "string") { + return VALUE_TYPES.STRING; + } else if (typeof value === "object") { + return VALUE_TYPES.OBJECT; + } else if (typeof value === "number") { + return VALUE_TYPES.NUMBER; + } else if (typeof value === "boolean") { + return VALUE_TYPES.BOOLEAN; + } else if (typeof value === "bigint") { + return VALUE_TYPES.BIGINT; + } + return VALUE_TYPES.EMPTY; +} + +class NodeAddress { + constructor(public readonly path: string) {} + + toString() { + return `"/${this.path}"`; + } + + /** + * Compares this address to another address + */ + equals(address: NodeAddress) { + return this.path === address.path; + } +} + +class NodeInfo { + path?: string; + type?: NodeValueType; + index?: number; + key?: string; + exists?: boolean; + /** TODO: Move this to BinaryNodeInfo */ + address?: NodeAddress; + value?: any; + childCount?: number; + + constructor(info: Partial) { + this.path = info.path; + this.type = info.type; + this.index = info.index; + this.key = info.key; + this.exists = info.exists; + this.address = info.address; + this.value = info.value; + this.childCount = info.childCount; + + if (typeof this.path === "string" && typeof this.key === "undefined" && typeof this.index === "undefined") { + const pathInfo = PathInfo.get(this.path); + if (typeof pathInfo.key === "number") { + this.index = pathInfo.key; + } else { + this.key = pathInfo.key as any; + } + } + if (typeof this.exists === "undefined") { + this.exists = true; + } + } + + get valueType() { + return this.type; + } + + get valueTypeName() { + return getValueTypeName(this.valueType as any); + } + + toString() { + if (!this.exists) { + return `"${this.path}" doesn't exist`; + } + if (this.address) { + return `"${this.path}" is ${this.valueTypeName} stored at ${this.address.toString()}`; + } else { + return `"${this.path}" is ${this.valueTypeName} with value ${this.value}`; + } + } +} + +class CustomStorageNodeInfo extends NodeInfo { + address?: NodeAddress; + revision: string; + revision_nr: number; + created: Date; + modified: Date; + + constructor(info: Omit) { + super(info); + this.revision = info.revision; + this.revision_nr = info.revision_nr; + this.created = info.created; + this.modified = info.modified; + } +} + +/** Interface for metadata being stored for nodes */ +class StorageNodeMetaData { + /** cuid (time sortable revision id). Nodes stored in the same operation share this id */ + revision = ""; + /** Number of revisions, starting with 1. Resets to 1 after deletion and recreation */ + revision_nr = 0; + /** Creation date/time in ms since epoch UTC */ + created = 0; + /** Last modification date/time in ms since epoch UTC */ + modified = 0; + /** Type of the node's value. 1=object, 2=array, 3=number, 4=boolean, 5=string, 6=date, 7=reserved, 8=binary, 9=reference */ + type = 0 as NodeValueType; +} + +/** Interface for metadata combined with a stored value */ +class StorageNode extends StorageNodeMetaData { + /** only Object, Array, large string and binary values. */ + value: any = null; + constructor() { + super(); + } +} + +interface StorageNodeInfo { + path: string; + content: StorageNode; +} + +/** + * Representa as configurações de um MDE. + */ +class MDESettings { + /** + * O prefixo associado ao armazenamento de dados. Por padrão, é "root". + * @type {string} + * @default "root" + */ + prefix: string = "root"; + + /** + * Tamanho máximo, em bytes, dos dados filhos a serem armazenados em um registro pai + * antes de serem movidos para um registro dedicado. O valor padrão é 50. + * @type {number} + * @default 50 + */ + maxInlineValueSize: number = 50; + + /** + * Em vez de lançar erros em propriedades não definidas, esta opção permite + * remover automaticamente as propriedades não definidas. O valor padrão é false. + * @type {boolean} + * @default false + */ + removeVoidProperties: boolean = false; + + /** + * Uma função que realiza uma pesquisa de dados na base de dados com base em uma expressão regular resultada da propriedade pathToRegex em MDE. + * + * @type {((expression: RegExp) => Promise> ) | undefined} + * @default undefined + */ + searchData: ((expression: RegExp) => Promise>) | undefined = undefined; + + /** + * Cria uma instância de MDESettings com as opções fornecidas. + * @param options - Opções para configurar o nó. + */ + constructor(options: Partial) { + if (typeof options.prefix === "string" && options.prefix.trim() !== "") { + this.prefix = options.prefix; + } + + if (typeof options.maxInlineValueSize === "number") { + this.maxInlineValueSize = options.maxInlineValueSize; + } + + if (typeof options.removeVoidProperties === "boolean") { + this.removeVoidProperties = options.removeVoidProperties; + } + + if (typeof options.removeVoidProperties === "boolean") { + this.removeVoidProperties = options.removeVoidProperties; + } + + if (typeof options.searchData === "function") { + this.searchData = options.searchData; + } + } +} + +export default class MDE extends SimpleEventEmitter { + /** + * As configurações do nó. + */ + readonly settings: MDESettings; + + /** + * Uma mapa de informações sobre nodes, mantido em cache até que as modificações sejam processadas no BD com êxito. + * + * @type {Map} + */ + private nodes = new Map(); + + constructor(options: Partial) { + super(); + this.settings = new MDESettings(options); + } + + /** + * Converte um caminho em uma expressão regular. + * + * @param {string} path - O caminho a ser convertido em expressão regular. + * @param {boolean} allHeirs - Indica se todos os descendentes devem ser incluídos. + * @returns {RegExp} - A expressão regular resultante. + */ + static pathToRegex(path: string, allHeirs: boolean = false): RegExp { + const pathsRegex: string[] = []; + + /** + * Substitui o caminho por uma expressão regular. + * @param path - O caminho a ser convertido em expressão regular. + * @returns {string} O caminho convertido em expressão regular. + */ + const replasePathToRegex = (path: string) => { + path = path.replace(/\/((\*)|(\$[^/\$]*))/g, "/([^/]*)"); + path = path.replace(/\[\*\]/g, "\\[(\\d+)\\]"); + return path; + }; + + // Adiciona a expressão regular do caminho principal ao array. + pathsRegex.push(`${replasePathToRegex(path)}(/([^/]*))${allHeirs ? "+" : ""}?`); + + // Obtém o caminho pai e adiciona a expressão regular correspondente ao array. + const parentPath = new PathInfo(path).parentPath; + pathsRegex.push(`${replasePathToRegex(parentPath)}(/([^/]*))${allHeirs ? "+" : ""}?`); + + // Cria a expressão regular completa combinando as expressões individuais no array. + const fullRegex: RegExp = new RegExp(`^(${pathsRegex.join("$)|(")}$)`); + + return fullRegex; + } + + /** + * Obtém informações personalizadas sobre um nó com base no caminho especificado. + * + * @param {string} path - O caminho do nó para o qual as informações devem ser obtidas. + * @returns {CustomStorageNodeInfo} - Informações personalizadas sobre o nó especificado. + */ + getInfoBy(path: string): CustomStorageNodeInfo { + const pathInfo = PathInfo.get(path); + + const defaultNode = new CustomStorageNodeInfo({ + path: pathInfo.path, + key: typeof pathInfo.key === "string" ? pathInfo.key : undefined, + index: typeof pathInfo.key === "number" ? pathInfo.key : undefined, + type: 0 as NodeValueType, + exists: false, + address: undefined, + created: new Date(), + modified: new Date(), + revision: "", + revision_nr: 0, + }); + + return defaultNode; + } + + /** + * Obtém os nós exportados para um nó montado. + * + * @template T - Tipo genérico para o retorno da função. + * @param {string} path - Caminho de um nó raiz. + * @param {boolean} [onlyChildren=true] - Se verdadeiro, exporta apenas os filhos do nó especificado. + * @return {T | undefined} - Retorna os nós exportados ou undefined se nenhum nó for encontrado. + */ + get(path: string, onlyChildren: boolean = true): t | undefined { + return undefined; + } + + /** + * Define um nó no armazenamento com o caminho e valor especificados. + * + * @param {string} path - O caminho do nó a ser definido. + * @param {any} value - O valor a ser armazenado no nó. + * @param {Object} [options] - Opções adicionais para controlar o comportamento da definição. + * @param {string} [options.assert_revision] - Uma string que representa a revisão associada ao nó, se necessário. + * @returns {void} + */ + set( + path: string, + value: any, + options: { + assert_revision?: string; + } = {}, + ): void {} +} From ae1f9bcc2da30371a165c48331faad3c4c899276 Mon Sep 17 00:00:00 2001 From: Ismael Souza Silva Date: Thu, 7 Dec 2023 17:26:35 -0300 Subject: [PATCH 28/36] Aprimoramento --- src/server/services/database/MDE/index.ts | 69 ++++++++++++++++------- 1 file changed, 49 insertions(+), 20 deletions(-) diff --git a/src/server/services/database/MDE/index.ts b/src/server/services/database/MDE/index.ts index 976ae315..62c114c0 100644 --- a/src/server/services/database/MDE/index.ts +++ b/src/server/services/database/MDE/index.ts @@ -103,7 +103,7 @@ function getValueTypeDefault(valueType: number) { } /** - * Determina o tipo de valor de um nó com base no valor fornecido. + * Determina o tipo de valor de um node com base no valor fornecido. * * @param {unknown} value - O valor a ser avaliado. * @returns {number} - O código do tipo de valor correspondente. @@ -319,14 +319,14 @@ class MDESettings { /** * Uma função que realiza uma pesquisa de dados na base de dados com base em uma expressão regular resultada da propriedade pathToRegex em MDE. * - * @type {((expression: RegExp) => Promise> ) | undefined} + * @type {((expression: RegExp) => Promise ) | undefined} * @default undefined */ - searchData: ((expression: RegExp) => Promise>) | undefined = undefined; + searchData: ((expression: RegExp) => Promise) | undefined = undefined; /** * Cria uma instância de MDESettings com as opções fornecidas. - * @param options - Opções para configurar o nó. + * @param options - Opções para configurar o node. */ constructor(options: Partial) { if (typeof options.prefix === "string" && options.prefix.trim() !== "") { @@ -353,16 +353,16 @@ class MDESettings { export default class MDE extends SimpleEventEmitter { /** - * As configurações do nó. + * As configurações do node. */ readonly settings: MDESettings; /** - * Uma mapa de informações sobre nodes, mantido em cache até que as modificações sejam processadas no BD com êxito. + * Uma lista de informações sobre nodes, mantido em cache até que as modificações sejam processadas no BD com êxito. * - * @type {Map} + * @type {StorageNodeInfo[]} */ - private nodes = new Map(); + private nodes: StorageNodeInfo[] = []; constructor(options: Partial) { super(); @@ -376,7 +376,7 @@ export default class MDE extends SimpleEventEmitter { * @param {boolean} allHeirs - Indica se todos os descendentes devem ser incluídos. * @returns {RegExp} - A expressão regular resultante. */ - static pathToRegex(path: string, allHeirs: boolean = false): RegExp { + private pathToRegex(path: string, allHeirs: boolean = false): RegExp { const pathsRegex: string[] = []; /** @@ -404,10 +404,39 @@ export default class MDE extends SimpleEventEmitter { } /** - * Obtém informações personalizadas sobre um nó com base no caminho especificado. + * Obtém uma lista de nodes com base em um caminho e opções adicionais. * - * @param {string} path - O caminho do nó para o qual as informações devem ser obtidas. - * @returns {CustomStorageNodeInfo} - Informações personalizadas sobre o nó especificado. + * @param {string} path - O caminho a ser usado para filtrar os nodes. + * @param {boolean} [allHeirs=false] - Indica se todos os descendentes devem ser incluídos. + * @returns {Promise} - Uma Promise que resolve para uma lista de informações sobre os nodes. + * @throws {Error} - Lança um erro se ocorrer algum problema durante a busca assíncrona. + */ + private async getNodesBy(path: string, allHeirs: boolean = false): Promise { + const reg = this.pathToRegex(path, allHeirs); + let nodeList: StorageNodeInfo[] = this.nodes.filter(({ path }) => reg.test(path)); + + if (this.settings.searchData) { + try { + const response = await this.settings.searchData(reg); + nodeList = nodeList.concat(response ?? []); + } catch {} + } + + return nodeList + .sort(({ content: { modified: aM } }, { content: { modified: bM } }) => { + return aM > bM ? -1 : aM < bM ? 1 : 0; + }) + .filter(({ path, content: { modified } }, i, l) => { + const indexRecent = l.findIndex(({ path: p, content: { modified: m } }) => p === path && m > modified); + return indexRecent < 0 || indexRecent === i; + }); + } + + /** + * Obtém informações personalizadas sobre um node com base no caminho especificado. + * + * @param {string} path - O caminho do node para o qual as informações devem ser obtidas. + * @returns {CustomStorageNodeInfo} - Informações personalizadas sobre o node especificado. */ getInfoBy(path: string): CustomStorageNodeInfo { const pathInfo = PathInfo.get(path); @@ -429,24 +458,24 @@ export default class MDE extends SimpleEventEmitter { } /** - * Obtém os nós exportados para um nó montado. + * Obtém valor referente ao path específico. * * @template T - Tipo genérico para o retorno da função. - * @param {string} path - Caminho de um nó raiz. - * @param {boolean} [onlyChildren=true] - Se verdadeiro, exporta apenas os filhos do nó especificado. - * @return {T | undefined} - Retorna os nós exportados ou undefined se nenhum nó for encontrado. + * @param {string} path - Caminho de um node raiz. + * @param {boolean} [onlyChildren=true] - Se verdadeiro, exporta apenas os filhos do node especificado. + * @return {T | undefined} - Retorna valor referente ao path ou undefined se nenhum node for encontrado. */ get(path: string, onlyChildren: boolean = true): t | undefined { return undefined; } /** - * Define um nó no armazenamento com o caminho e valor especificados. + * Define um valor no armazenamento com o caminho especificado. * - * @param {string} path - O caminho do nó a ser definido. - * @param {any} value - O valor a ser armazenado no nó. + * @param {string} path - O caminho do node a ser definido. + * @param {any} value - O valor a ser armazenado em nodes. * @param {Object} [options] - Opções adicionais para controlar o comportamento da definição. - * @param {string} [options.assert_revision] - Uma string que representa a revisão associada ao nó, se necessário. + * @param {string} [options.assert_revision] - Uma string que representa a revisão associada ao node, se necessário. * @returns {void} */ set( From 2d380075e246b7fe4acd31fd55abe9f19a514847 Mon Sep 17 00:00:00 2001 From: Ismael Souza Silva Date: Mon, 11 Dec 2023 12:50:59 -0300 Subject: [PATCH 29/36] =?UTF-8?q?Implementa=C3=A7=C3=A3o=20de=20mesclagem?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/server/services/database/MDE/index.ts | 207 +++++++++++++++++++++- 1 file changed, 199 insertions(+), 8 deletions(-) diff --git a/src/server/services/database/MDE/index.ts b/src/server/services/database/MDE/index.ts index 62c114c0..7ddf93c1 100644 --- a/src/server/services/database/MDE/index.ts +++ b/src/server/services/database/MDE/index.ts @@ -1,5 +1,6 @@ -import { PathInfo, PathReference, SimpleEventEmitter } from "ivipbase-core"; -import { isDate } from "util/types"; +import { PathInfo, PathReference, SimpleEventEmitter, Utils } from "ivipbase-core"; + +const { encodeString, isDate } = Utils; export const nodeValueTypes = { EMPTY: 0, @@ -403,6 +404,155 @@ export default class MDE extends SimpleEventEmitter { return fullRegex; } + /** + * Verifica se um caminho específico existe no nó. + * @param path - O caminho a ser verificado. + * @returns {Promise} `true` se o caminho existir no nó, `false` caso contrário. + */ + async isPathExists(path: string): Promise { + const reg = this.pathToRegex(path, false); + let nodeList: StorageNodeInfo[] = this.nodes.filter(({ path }) => reg.test(path)); + + if (this.settings.searchData) { + try { + const response = await this.settings.searchData(reg); + nodeList = nodeList.concat(response ?? []); + } catch {} + } + + nodeList = nodeList + .sort(({ content: { modified: aM } }, { content: { modified: bM } }) => { + return aM > bM ? -1 : aM < bM ? 1 : 0; + }) + .filter(({ path, content: { modified } }, i, l) => { + const indexRecent = l.findIndex(({ path: p, content: { modified: m } }) => p === path && m > modified); + return indexRecent < 0 || indexRecent === i; + }); + + return nodeList.findIndex(({ path: p }) => p === path) >= 0; + } + + /** + * Verifica se um valor pode ser armazenado em um objeto pai ou se deve ser movido + * para um registro dedicado com base nas configurações de tamanho máximo (`maxInlineValueSize`). + * @param value - O valor a ser verificado. + * @returns {boolean} `true` se o valor pode ser armazenado inline, `false` caso contrário. + * @throws {TypeError} Lança um erro se o tipo do valor não for suportado. + */ + private valueFitsInline(value: any) { + if (typeof value === "number" || typeof value === "boolean" || isDate(value)) { + return true; + } else if (typeof value === "string") { + if (value.length > this.settings.maxInlineValueSize) { + return false; + } + // Se a string contém caracteres Unicode, o tamanho em bytes será maior do que `value.length`. + const encoded = encodeString(value); + return encoded.length < this.settings.maxInlineValueSize; + } else if (value instanceof PathReference) { + if (value.path.length > this.settings.maxInlineValueSize) { + return false; + } + // Se o caminho contém caracteres Unicode, o tamanho em bytes será maior do que `value.path.length`. + const encoded = encodeString(value.path); + return encoded.length < this.settings.maxInlineValueSize; + } else if (value instanceof ArrayBuffer) { + return value.byteLength < this.settings.maxInlineValueSize; + } else if (value instanceof Array) { + return value.length === 0; + } else if (typeof value === "object") { + return Object.keys(value).length === 0; + } else { + throw new TypeError("What else is there?"); + } + } + + /** + * Responsável pela mesclagem de nodes soltos, apropriado para evitar conflitos de dados. + * @param nodes - Lista de nodes a serem processados. + * @returns {StorageNodeInfo[]} Retorna uma lista de informações sobre os nodes. + */ + private prepareMergeNodes = (nodes: StorageNodeInfo[]): StorageNodeInfo[] => { + const result: StorageNodeInfo[] = []; + const pathsRemoved: string[] = []; + + for (let node of nodes) { + const containsUsRemoved: boolean = pathsRemoved.findIndex((path) => PathInfo.get(path).isAncestorOf(node.path)) >= 0; + + if (containsUsRemoved || node.content.type === nodeValueTypes.EMPTY || node.content.value === null) { + pathsRemoved.push(node.path); + continue; + } + + const pathInfo = PathInfo.get(node.path); + const index = result.findIndex(({ path }) => pathInfo.equals(path) || pathInfo.isParentOf(path) || pathInfo.isChildOf(path)); + if (index < 0) { + result.push(node); + continue; + } + + const lastNode = result[index]; + + if (pathInfo.equals(lastNode.path)) { + switch (lastNode.content.type) { + case nodeValueTypes.OBJECT: + case nodeValueTypes.ARRAY: { + const contents = [lastNode.content, node.content]; + + const content_values: object[] = contents.map(({ value }) => value); + + const new_content_value = Object.assign.apply(null, (lastNode.content.modified > node.content.modified ? content_values.reverse() : content_values) as any); + + result[index].content = Object.assign.apply(null, [ + ...(lastNode.content.modified > node.content.modified ? contents.reverse() : contents), + { + value: new_content_value, + }, + ] as any); + + break; + } + default: { + if (lastNode.content.modified < node.content.modified) { + result[index] = node; + } + } + } + + continue; + } + + const parentNodeIsLast = pathInfo.isChildOf(lastNode.path); + const parentNode = !parentNodeIsLast ? node : lastNode; + const childNode = parentNodeIsLast ? node : lastNode; + const childKey = PathInfo.get(childNode.path).key; + + if (parentNode.content.type === nodeValueTypes.OBJECT && childKey !== null) { + let parentNodeModified: boolean = false; + + if ( + [nodeValueTypes.STRING, nodeValueTypes.BIGINT, nodeValueTypes.BOOLEAN, nodeValueTypes.DATETIME, nodeValueTypes.NUMBER].includes(childNode.content.type as any) && + this.valueFitsInline(childNode.content.value) + ) { + parentNode.content.value[childKey] = childNode.content.value; + parentNodeModified = true; + } else if (childNode.content.type === nodeValueTypes.EMPTY) { + parentNode.content.value[childKey] = null; + parentNodeModified = true; + } + + if (parentNodeModified) { + result[index] = parentNode; + continue; + } + } + + result.push(node); + } + + return result; + }; + /** * Obtém uma lista de nodes com base em um caminho e opções adicionais. * @@ -422,14 +572,55 @@ export default class MDE extends SimpleEventEmitter { } catch {} } - return nodeList - .sort(({ content: { modified: aM } }, { content: { modified: bM } }) => { + return this.prepareMergeNodes( + nodeList.sort(({ content: { modified: aM } }, { content: { modified: bM } }) => { return aM > bM ? -1 : aM < bM ? 1 : 0; + }), + ); + } + + /** + * Obtém o node pai de um caminho específico. + * @param path - O caminho para o qual o node pai deve ser obtido. + * @returns {Promise} O node pai correspondente ao caminho ou `undefined` se não for encontrado. + */ + private async getNodeParentBy(path: string): Promise { + const pathInfo = PathInfo.get(path); + + const nodes = await this.getNodesBy(path, false); + + return nodes + .filter((node) => { + const nodePath = PathInfo.get(node.path); + return nodePath.path === "" || pathInfo.path === nodePath.path || nodePath.isParentOf(pathInfo); }) - .filter(({ path, content: { modified } }, i, l) => { - const indexRecent = l.findIndex(({ path: p, content: { modified: m } }) => p === path && m > modified); - return indexRecent < 0 || indexRecent === i; - }); + .sort((a: StorageNodeInfo, b: StorageNodeInfo): number => { + const pathA = PathInfo.get(a.path); + const pathB = PathInfo.get(b.path); + return pathA.isDescendantOf(pathB.path) ? -1 : pathB.isDescendantOf(pathA.path) ? 1 : 0; + }) + .shift(); + } + + /** + * Adiciona um ou mais nodes a matriz de nodes atual e aplica evento de alteração. + * @param nodes - Um ou mais nós a serem adicionados. + * @returns {MDE} O nó atual após a adição dos nós. + */ + private pushNode(...nodes: (StorageNodeInfo[] | StorageNodeInfo)[]): MDE { + const forNodes: StorageNodeInfo[] = + Array.prototype.concat + .apply( + [], + nodes.map((node) => (Array.isArray(node) ? node : [node])), + ) + .filter((node: any = {}) => node && typeof node.path === "string" && "content" in node) ?? []; + + for (let node of forNodes) { + this.nodes.push(node); + } + + return this; } /** From a2e4302f3068aef85eddc22310905828019d3843 Mon Sep 17 00:00:00 2001 From: iamrosada Date: Tue, 12 Dec 2023 18:20:27 +0300 Subject: [PATCH 30/36] feat: testing --- package.json | 1 + test/set.ts | 248 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 249 insertions(+) create mode 100644 test/set.ts diff --git a/package.json b/package.json index e240dc5a..aaa6c807 100644 --- a/package.json +++ b/package.json @@ -17,6 +17,7 @@ "scripts": { "dev": "nodemon ./src/server/services/database/Node/NodeRestructureJson.ts", "dev2": "nodemon ./src/server/services/database/Node/NodeResultWithPath.ts", + "dev3": "nodemon ./test/set.ts", "build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:packages && echo Done!", "build:clean": "rimraf dist", "build:esm": "tsc -p tsconfig.json && npx tsc-esm-fix ---target='dist/esm'", diff --git a/test/set.ts b/test/set.ts new file mode 100644 index 00000000..c5efcd01 --- /dev/null +++ b/test/set.ts @@ -0,0 +1,248 @@ +import { MongoClient, Collection, Db } from "mongodb"; + +import fs from "fs"; +import path from "path"; +import { randomUUID } from "crypto"; + +type NodeValueType = keyof typeof nodeValueTypes; +import Node, { nodeValueTypes } from "./../src/server/services/database/Node/index"; +import { PathInfo } from "ivipbase-core"; + +(async () => { + const client: MongoClient = await MongoClient.connect("mongodb://manager:9Hq91q5oExU9biOZ7yq98I8P1DU1ge@ivipcoin-api.com:4048"); + const db: Db = client.db("root"); + const collection: Collection = db.collection("ivipcoin-db"); + + // console.log(new Date().toLocaleString("pt-BR")); + + const path: string = "ivipcoin-db::__movement_wallet__/000523147298669313/history/*"; + + const data = new Node([], { + async dataSynchronization(path, type, nodes) { + // console.log(path); + if (type === "get") { + const result = await (collection + .find({ + path: { + $regex: path, + }, + }) + .toArray() as Promise); + + return result; + } + + return []; + }, + }); + + await data.synchronize(path, true); + + type Result = { + path: string; + content: { + type: any; + value: Record | string | number; + revision: string; + revision_nr: number; + created: number; + modified: number; + }; + }; + + data.setNode("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/currency_id", "DDDDD"); + + const o_path = "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/currency_id"; + + function set(path: string, value: any, options: { assert_revision?: string } = {}): Result[] { + const results: Result[] = []; + + if (path.trim() === "") { + throw new Error(`Invalid path node`); + } + + const pathInfo = PathInfo.get(path); + const theKey: any = pathInfo.key; + + if (Array.isArray(value) && value.length > 0) { + // If 'value' is an array, process each object in the array + value.forEach((obj, i) => { + const currentPath = `${path}[${i}]`; // Include the array index in the path + + const processedValue = { + [theKey]: obj, + }; + + const arrayResult: Result = { + path: currentPath, + content: { + type: 2, // Assuming it's still type 2 for non-array items + value: processedValue, + revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + + results.push(arrayResult); + }); + const arrayResult: Result = { + path: pathInfo.path, + content: { + type: 2, // Assuming it's still type 2 for non-array items + value: {}, + revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(arrayResult); + } else { + // If 'value' is not an array, create a single object + const processedValue = { + [theKey]: value, + }; + + if (typeof value === "string") { + const processedValue = { + [theKey]: value, + }; + const nonObjectResult: Result = { + path: pathInfo.parentPath as string, + content: { + type: 2, + value: processedValue, + revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(nonObjectResult); + } + + if (typeof value === "string" && value.length >= 50) { + results.push({ + path: pathInfo.parentPath as string, + content: { + type: 2, + value: processedValue, + revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }); + // console.log(currentValue, "string"); + } + // Initialize the object if it doesn't exist + + // const resultadoFiltrado = Object.entries(value) + // .filter(([key, value]) => typeof value === "string" ||typeof value !== "number" && value.length < 50) + // .reduce((acc, [key, value]) => { + // acc[key] = value; + // return acc; + // }, {}); + + if (typeof value === "object") { + const otherObject = Object.entries(value as any) + .filter(([key, value]) => typeof value !== "string" || value.length < 49) + .reduce((acc, [key, value]) => { + acc[key] = value; + return acc; + }, {} as Record); + // Encontrar chaves com valores maiores que 50 + const valueArray = Object.entries(value); + // console.info(valueArray); + valueArray.forEach(([key, valueOfObj]) => { + // console.log(`Key: ${key}, Value: ${value}`); + const result = `${key}: ${valueOfObj}`; + + if (result.length >= 50) { + console.log(key); + + const nonObjectResult: Result = { + path: `${pathInfo.path}/${key}` as string, + content: { + type: 2, + value: valueOfObj as string, + revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(nonObjectResult); + } else { + const nonObjectResult: Result = { + path: pathInfo.path as string, + content: { + type: 2, + value: otherObject as any, + revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + + // Return the result (if necessary) + results.push(nonObjectResult); + } + }); + } + } + // console.log(results); + return results; + } + + // Example usage: + const rsul = set("/example/curenty_value_pedro_rosada_ivipi_tiago", [{ prop1: "value1" }, { prop2: "value2" }]); + const x = set("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/costs", [{ title: "Taxa de serviço", label: "Taxa de R$ 3,49", amount: 3.49 }]); + console.log("-----------------------------------------------------------------------------"); + + console.log(JSON.stringify(x, null, 2)); + console.log("-----------------------------------------------------------------------------"); + + console.log(JSON.stringify(rsul, null, 2)); + + // Exemplo de uso: + + // Exemplo de uso: + console.log("-----------------------------------------------------------------------------"); + + // Exemplo de uso: + + const xx = set("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/currency_id", "DDDDD"); + console.log(JSON.stringify(xx, null, 2)); + console.log("-----------------------------------------------------------------------------"); + + const t = set("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/currency_id", { + installments: 1, + payment_method_reference_id: "10194042832", + acquirer_reference: "Deposito de um valor R$ 60,00 para a carteira iVip 0005.2314.7298.6693-13", + verification_code: "10194042832", + net_received_amount: 0, + total_paid_amount: 606.49, + overpaid_amount: 0, + installment_amount: "Deposito de um valor R$ 60,00 para a carteira iVip 0005.2314.7298.6693-13", + financial_institution: "bradesco", + }); + console.log(JSON.stringify(t, null, 2)); + + console.log("-----------------------------------------------------------------------------"); +})(); + +type Result = { + path: string; + content: { + type: any; + value: Record | string | number; + revision: string; + revision_nr: number; + created: number; + modified: number; + }; +}; From 9baef3911e2292d49901e3a9b6b9388fbf98c169 Mon Sep 17 00:00:00 2001 From: Pedro Henrique Feitosa <50965091+pedrofeitosa97@users.noreply.github.com> Date: Thu, 14 Dec 2023 11:17:02 -0300 Subject: [PATCH 31/36] Feat: Added some funcional functions on method Get in the class MDE --- .gitignore | 3 +- package.json | 2 + src/server/services/database/MDE/index.ts | 330 +- .../database/Node/NodeRestructureJson.ts | 113 +- .../database/Node/NodeResultWithPath.ts | 1 + src/settings.example.ts | 6 + src/settings.ts | 8 + test/MDE/teste.ts | 12 + test/outputRestructuredJSON.json | 203 +- test/outputResultWithPathJSON.json | 31824 ++++++++-------- 10 files changed, 16418 insertions(+), 16084 deletions(-) create mode 100644 src/settings.example.ts create mode 100644 src/settings.ts create mode 100644 test/MDE/teste.ts diff --git a/.gitignore b/.gitignore index 8f8faa28..55c62fda 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ node_modules .vscode *.acebase package-lock.json -previous_src \ No newline at end of file +previous_src +./src/settings.ts \ No newline at end of file diff --git a/package.json b/package.json index e240dc5a..8e2c089e 100644 --- a/package.json +++ b/package.json @@ -17,6 +17,8 @@ "scripts": { "dev": "nodemon ./src/server/services/database/Node/NodeRestructureJson.ts", "dev2": "nodemon ./src/server/services/database/Node/NodeResultWithPath.ts", + "test": "nodemon ./src/server/services/database/MDE/index.ts", + "test2": "nodemon ./test/MDE/teste.ts", "build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:packages && echo Done!", "build:clean": "rimraf dist", "build:esm": "tsc -p tsconfig.json && npx tsc-esm-fix ---target='dist/esm'", diff --git a/src/server/services/database/MDE/index.ts b/src/server/services/database/MDE/index.ts index 62c114c0..c6cc0d0a 100644 --- a/src/server/services/database/MDE/index.ts +++ b/src/server/services/database/MDE/index.ts @@ -1,5 +1,8 @@ -import { PathInfo, PathReference, SimpleEventEmitter } from "ivipbase-core"; -import { isDate } from "util/types"; +import { PathInfo, PathReference, SimpleEventEmitter, Utils } from "ivipbase-core"; +import { NoderestructureJson } from "../Node/NodeRestructureJson"; +import settings from "../../../../settings"; + +const { encodeString, isDate } = Utils; export const nodeValueTypes = { EMPTY: 0, @@ -322,7 +325,9 @@ class MDESettings { * @type {((expression: RegExp) => Promise ) | undefined} * @default undefined */ - searchData: ((expression: RegExp) => Promise) | undefined = undefined; + searchData: (expression: RegExp) => Promise | StorageNodeInfo[] = () => []; + + init: ((this: MDE) => void) | undefined; /** * Cria uma instância de MDESettings com as opções fornecidas. @@ -345,8 +350,15 @@ class MDESettings { this.removeVoidProperties = options.removeVoidProperties; } - if (typeof options.searchData === "function") { - this.searchData = options.searchData; + this.searchData = async (reg) => { + if (typeof options.searchData === "function") { + return await Promise.race([options.searchData(reg)]); + } + return []; + }; + + if (typeof options.init === "function") { + this.init = options.init; } } } @@ -367,6 +379,13 @@ export default class MDE extends SimpleEventEmitter { constructor(options: Partial) { super(); this.settings = new MDESettings(options); + this.init(); + } + + private init() { + if (typeof this.settings.init === "function") { + this.settings.init.apply(this, []); + } } /** @@ -403,6 +422,207 @@ export default class MDE extends SimpleEventEmitter { return fullRegex; } + /** + * Verifica se um caminho específico existe no nó. + * @param path - O caminho a ser verificado. + * @returns {Promise} `true` se o caminho existir no nó, `false` caso contrário. + */ + async isPathExists(path: string): Promise { + const reg = this.pathToRegex(path, false); + let nodeList: StorageNodeInfo[] = this.nodes.filter(({ path }) => reg.test(path)); + + try { + const response = await this.settings.searchData(reg); + nodeList = nodeList.concat(response ?? []); + } catch {} + + nodeList = nodeList + .sort(({ content: { modified: aM } }, { content: { modified: bM } }) => { + return aM > bM ? -1 : aM < bM ? 1 : 0; + }) + .filter(({ path, content: { modified } }, i, l) => { + const indexRecent = l.findIndex(({ path: p, content: { modified: m } }) => p === path && m > modified); + return indexRecent < 0 || indexRecent === i; + }); + + return nodeList.findIndex(({ path: p }) => p === path) >= 0; + } + + /** + * Verifica se um valor pode ser armazenado em um objeto pai ou se deve ser movido + * para um registro dedicado com base nas configurações de tamanho máximo (`maxInlineValueSize`). + * @param value - O valor a ser verificado. + * @returns {boolean} `true` se o valor pode ser armazenado inline, `false` caso contrário. + * @throws {TypeError} Lança um erro se o tipo do valor não for suportado. + */ + private valueFitsInline(value: any) { + if (typeof value === "number" || typeof value === "boolean" || isDate(value)) { + return true; + } else if (typeof value === "string") { + if (value.length > this.settings.maxInlineValueSize) { + return false; + } + // Se a string contém caracteres Unicode, o tamanho em bytes será maior do que `value.length`. + const encoded = encodeString(value); + return encoded.length < this.settings.maxInlineValueSize; + } else if (value instanceof PathReference) { + if (value.path.length > this.settings.maxInlineValueSize) { + return false; + } + // Se o caminho contém caracteres Unicode, o tamanho em bytes será maior do que `value.path.length`. + const encoded = encodeString(value.path); + return encoded.length < this.settings.maxInlineValueSize; + } else if (value instanceof ArrayBuffer) { + return value.byteLength < this.settings.maxInlineValueSize; + } else if (value instanceof Array) { + return value.length === 0; + } else if (typeof value === "object") { + return Object.keys(value).length === 0; + } else { + throw new TypeError("What else is there?"); + } + } + + /** + * Responsável pela mesclagem de nodes soltos, apropriado para evitar conflitos de dados. + * + * @param {StorageNodeInfo[]} nodes - Lista de nodes a serem processados. + * + * @returns {{ + * result: StorageNodeInfo[]; + * added: StorageNodeInfo[]; + * modified: StorageNodeInfo[]; + * removed: StorageNodeInfo[]; + * }} Retorna uma lista de informações sobre os nodes de acordo com seu estado. + */ + private prepareMergeNodes = ( + nodes: StorageNodeInfo[], + ): { + result: StorageNodeInfo[]; + added: StorageNodeInfo[]; + modified: StorageNodeInfo[]; + removed: StorageNodeInfo[]; + } => { + const result: StorageNodeInfo[] = []; + + let added: StorageNodeInfo[] = []; + let modified: StorageNodeInfo[] = []; + let removed: StorageNodeInfo[] = []; + + const setNodeBy = (node: StorageNodeInfo): number => { + const index = result.findIndex(({ path }) => PathInfo.get(node.path).equals(path)); + if (index < 0) { + result.push(node); + added.push(node); + return result.length - 1; + } + + result[index] = node; + const indexModified = modified.findIndex(({ path }) => PathInfo.get(node.path).equals(path)); + + if (indexModified < 0) { + added = added.filter(({ path }) => PathInfo.get(node.path).equals(path) !== true); + modified.push(node); + } + + return index; + }; + + const pathsRemoved: string[] = nodes + .sort(({ content: { modified: aM } }, { content: { modified: bM } }) => { + return aM > bM ? -1 : aM < bM ? 1 : 0; + }) + .filter(({ path, content: { modified } }, i, l) => { + const indexRecent = l.findIndex(({ path: p, content: { modified: m } }) => p === path && m > modified); + return indexRecent < 0 || indexRecent === i; + }) + .filter(({ content }) => content.type === nodeValueTypes.EMPTY || content.value === null) + .map(({ path }) => path); + + for (let node of nodes) { + if (pathsRemoved.findIndex((path) => PathInfo.get(path).equals(node.path) || PathInfo.get(path).isAncestorOf(node.path)) >= 0) { + removed.push(node); + continue; + } + + if (node.content.type === nodeValueTypes.EMPTY || node.content.value === null) { + continue; + } + + const pathInfo = PathInfo.get(node.path); + const index = result.findIndex(({ path }) => pathInfo.equals(path) || pathInfo.isParentOf(path) || pathInfo.isChildOf(path)); + if (index < 0) { + setNodeBy(node); + continue; + } + + const lastNode = result[index]; + + if (pathInfo.equals(lastNode.path)) { + switch (lastNode.content.type) { + case nodeValueTypes.OBJECT: + case nodeValueTypes.ARRAY: { + const { created, revision_nr } = lastNode.content.modified > node.content.modified ? node.content : lastNode.content; + + const contents = lastNode.content.modified > node.content.modified ? [node.content, lastNode.content] : [lastNode.content, node.content]; + const content_values: object[] = contents.map(({ value }) => value); + + const new_content_value = Object.assign.apply(null, content_values as any); + + result[index].content = Object.assign.apply(null, [ + ...contents, + { + value: Object.fromEntries(Object.entries(new_content_value).filter(([k, v]) => v !== null)), + created, + revision_nr: revision_nr + 1, + } as StorageNode, + ] as any); + + setNodeBy(result[index]); + break; + } + default: { + if (lastNode.content.modified < node.content.modified) { + setNodeBy(node); + } + } + } + + continue; + } + + const parentNodeIsLast = pathInfo.isChildOf(lastNode.path); + const parentNode = !parentNodeIsLast ? node : lastNode; + const childNode = parentNodeIsLast ? node : lastNode; + const childKey = PathInfo.get(childNode.path).key; + + if (parentNode.content.type === nodeValueTypes.OBJECT && childKey !== null) { + let parentNodeModified: boolean = false; + + if ( + [nodeValueTypes.STRING, nodeValueTypes.BIGINT, nodeValueTypes.BOOLEAN, nodeValueTypes.DATETIME, nodeValueTypes.NUMBER].includes(childNode.content.type as any) && + this.valueFitsInline(childNode.content.value) + ) { + parentNode.content.value[childKey] = childNode.content.value; + parentNodeModified = true; + } else if (childNode.content.type === nodeValueTypes.EMPTY) { + parentNode.content.value[childKey] = null; + parentNodeModified = true; + } + + if (parentNodeModified) { + result[index] = parentNode; + setNodeBy(result[index]); + continue; + } + } + + setNodeBy(node); + } + + return { result, added, modified, removed }; + }; + /** * Obtém uma lista de nodes com base em um caminho e opções adicionais. * @@ -411,25 +631,74 @@ export default class MDE extends SimpleEventEmitter { * @returns {Promise} - Uma Promise que resolve para uma lista de informações sobre os nodes. * @throws {Error} - Lança um erro se ocorrer algum problema durante a busca assíncrona. */ - private async getNodesBy(path: string, allHeirs: boolean = false): Promise { + async getNodesBy(path: string, allHeirs: boolean = false): Promise { const reg = this.pathToRegex(path, allHeirs); let nodeList: StorageNodeInfo[] = this.nodes.filter(({ path }) => reg.test(path)); - if (this.settings.searchData) { - try { - const response = await this.settings.searchData(reg); - nodeList = nodeList.concat(response ?? []); - } catch {} - } + try { + const response = await this.settings.searchData(reg); + nodeList = nodeList.concat(response ?? []); + } catch {} - return nodeList - .sort(({ content: { modified: aM } }, { content: { modified: bM } }) => { + const result = this.prepareMergeNodes( + nodeList.sort(({ content: { modified: aM } }, { content: { modified: bM } }) => { return aM > bM ? -1 : aM < bM ? 1 : 0; + }), + ).result; + + let nodes = result.filter(({ path: p }) => PathInfo.get(path).equals(p)); + + if (nodes.length > 0 && allHeirs) { + nodes = result.filter(({ path: p }) => PathInfo.get(path).equals(p) || PathInfo.get(path).isAncestorOf(p)); + } else if (nodes.length <= 0) { + nodes = result.filter(({ path: p }) => PathInfo.get(path).isChildOf(p)); + } + + return nodes; + } + + /** + * Obtém o node pai de um caminho específico. + * @param path - O caminho para o qual o node pai deve ser obtido. + * @returns {Promise} O node pai correspondente ao caminho ou `undefined` se não for encontrado. + */ + private async getNodeParentBy(path: string): Promise { + const pathInfo = PathInfo.get(path); + + const nodes = await this.getNodesBy(path, false); + + return nodes + .filter((node) => { + const nodePath = PathInfo.get(node.path); + return nodePath.path === "" || pathInfo.path === nodePath.path || nodePath.isParentOf(pathInfo); }) - .filter(({ path, content: { modified } }, i, l) => { - const indexRecent = l.findIndex(({ path: p, content: { modified: m } }) => p === path && m > modified); - return indexRecent < 0 || indexRecent === i; - }); + .sort((a: StorageNodeInfo, b: StorageNodeInfo): number => { + const pathA = PathInfo.get(a.path); + const pathB = PathInfo.get(b.path); + return pathA.isDescendantOf(pathB.path) ? -1 : pathB.isDescendantOf(pathA.path) ? 1 : 0; + }) + .shift(); + } + + /** + * Adiciona um ou mais nodes a matriz de nodes atual e aplica evento de alteração. + * @param nodes - Um ou mais nós a serem adicionados. + * @returns {MDE} O nó atual após a adição dos nós. + */ + pushNode(...nodes: (StorageNodeInfo[] | StorageNodeInfo)[]): MDE { + const forNodes: StorageNodeInfo[] = + Array.prototype.concat + .apply( + [], + nodes.map((node) => (Array.isArray(node) ? node : [node])), + ) + .filter((node: any = {}) => node && typeof node.path === "string" && "content" in node) ?? []; + + for (let node of forNodes) { + this.nodes.push(node); + } + + return this; } /** @@ -463,9 +732,24 @@ export default class MDE extends SimpleEventEmitter { * @template T - Tipo genérico para o retorno da função. * @param {string} path - Caminho de um node raiz. * @param {boolean} [onlyChildren=true] - Se verdadeiro, exporta apenas os filhos do node especificado. - * @return {T | undefined} - Retorna valor referente ao path ou undefined se nenhum node for encontrado. + * @return {Promise} - Retorna valor referente ao path ou undefined se nenhum node for encontrado. */ - get(path: string, onlyChildren: boolean = true): t | undefined { + async get(path: string, onlyChildren: boolean = true): Promise { + const nodes = await this.getNodesBy(path, onlyChildren); + + // console.log(nodes); + + const restructurerInstance = new NoderestructureJson(settings.uri); + + const restructuredJson = restructurerInstance.restructureJson(nodes); + + // console.log(restructuredJson); + + const dataFromMongoConvertedToJSON = JSON.stringify(restructuredJson, null, 2); + // console.log(dataFromMongoConvertedToJSON); + + const saveJsonIntoFile = restructurerInstance.convertToJsonAndSaveToFile(dataFromMongoConvertedToJSON); + return undefined; } @@ -476,13 +760,13 @@ export default class MDE extends SimpleEventEmitter { * @param {any} value - O valor a ser armazenado em nodes. * @param {Object} [options] - Opções adicionais para controlar o comportamento da definição. * @param {string} [options.assert_revision] - Uma string que representa a revisão associada ao node, se necessário. - * @returns {void} + * @returns {Promise} */ - set( + async set( path: string, value: any, options: { assert_revision?: string; } = {}, - ): void {} + ): Promise {} } diff --git a/src/server/services/database/Node/NodeRestructureJson.ts b/src/server/services/database/Node/NodeRestructureJson.ts index 10568378..53bfe588 100644 --- a/src/server/services/database/Node/NodeRestructureJson.ts +++ b/src/server/services/database/Node/NodeRestructureJson.ts @@ -5,7 +5,7 @@ import path from "path"; const INPUT_FILE_NAME = "../../../../../test/myjsonfile.json"; // Class encapsulating the data restructuring functionality -class NoderestructureJson { +export class NoderestructureJson { private readonly uri: string; private readonly client: MongoClient; @@ -25,11 +25,44 @@ class NoderestructureJson { } // Restructure JSON data based on specified logic - private restructureJson(entries) { + public restructureJson(entries: any[] | Record) { + let array_entries = entries; + + if (!Array.isArray(entries)) { + array_entries = [entries]; + } + + function convertDates(obj) { + // Verifica se o argumento é um objeto + if (typeof obj === "object" && obj !== null) { + // Percorre as chaves do objeto + for (const key in obj) { + // Verifica se a chave é um objeto que atende à condição especificada + if (obj[key] && typeof obj[key] === "object" && obj[key].type === 6 && obj[key].value && typeof obj[key].value === "number") { + // Converte o valor da chave para uma string de data formatada + obj[key] = new Date(obj[key].value).toISOString(); + } else if (typeof obj[key] === "object") { + // Se a chave for um objeto, chama a função recursivamente para processar os subobjetos + convertDates(obj[key]); + } + } + } + + return obj; + } + const result = {}; const KEY_THAT_MUST_BE_ARRAY = ["costs"]; - entries?.forEach((entry) => { + + array_entries.forEach((entry) => { const { path, content } = entry; + convertDates(entry); + + if (typeof path !== "string") { + console.error("Invalid input: path should be a string"); + return; + } + const parts = path.split("/"); let current = result; @@ -43,7 +76,6 @@ class NoderestructureJson { if (!current[key]) { key = key.split("[")[0]; - // Check if the key must be an array if (KEY_THAT_MUST_BE_ARRAY.includes(key)) { current[key] = []; @@ -72,7 +104,7 @@ class NoderestructureJson { const collection = this.client.db("root").collection("teste"); const limit = 50; - console.log(new Date().getSeconds(), "antes da busca"); + // console.log(new Date().getSeconds(), "antes da busca"); const resultData = await collection.find().toArray(); const afterLimit = resultData.slice(0, limit); @@ -80,8 +112,8 @@ class NoderestructureJson { } // Convert JSON data to string and save it to a file - private convertToJsonAndSaveToFile(dataWithOutPathFromMongodb) { - console.log(dataWithOutPathFromMongodb); + public convertToJsonAndSaveToFile(dataWithOutPathFromMongodb) { + // console.log(dataWithOutPathFromMongodb); const fileAddress: any = "./test/outputRestructuredJSON.json"; fs.writeFile(fileAddress, dataWithOutPathFromMongodb, (error) => { @@ -94,6 +126,7 @@ class NoderestructureJson { return dataWithOutPathFromMongodb; } + private async readFilesUsingPath(inputFile) { const filePath = path.join(__dirname, inputFile); @@ -107,45 +140,47 @@ class NoderestructureJson { } } - public async main(choose: string) { - switch (choose) { - case "REMOTE": - try { - await this.connectToDatabase(); + // public async main(choose: string) { + // switch (choose) { + // case "REMOTE": + // try { + // await this.connectToDatabase(); - const entries = await this.fetchDataFromMongoDB(); - const dataAfterToBeRestructured = this.restructureJson(entries); - const dataFromMongoConvertedToJSON = JSON.stringify(dataAfterToBeRestructured, null, 2); + // const entries = await this.fetchDataFromMongoDB(); + // const dataAfterToBeRestructured = this.restructureJson(entries); + // const dataFromMongoConvertedToJSON = JSON.stringify(dataAfterToBeRestructured, null, 2); - console.log(this.convertToJsonAndSaveToFile(dataFromMongoConvertedToJSON)); + // // // console.log(this.convertToJsonAndSaveToFile(dataFromMongoConvertedToJSON)); + // // console.log(dataFromMongoConvertedToJSON, "to aqui"); + // this.convertToJsonAndSaveToFile(dataFromMongoConvertedToJSON); - console.log(new Date().getSeconds(), "final da busca"); - } finally { - await this.closeDatabaseConnection(); - } + // // console.log(new Date().getSeconds(), "final da busca"); + // } finally { + // await this.closeDatabaseConnection(); + // } - break; - case "LOCAL": - try { - const entries = await this.readFilesUsingPath(INPUT_FILE_NAME); + // break; + // case "LOCAL": + // try { + // const entries = await this.readFilesUsingPath(INPUT_FILE_NAME); - const dataAfterToBeRestructured = this.restructureJson(entries); - const dataFromMongoConvertedToJSON = JSON.stringify(dataAfterToBeRestructured, null, 2); + // const dataAfterToBeRestructured = this.restructureJson(entries); + // const dataFromMongoConvertedToJSON = JSON.stringify(dataAfterToBeRestructured, null, 2); - console.log(this.convertToJsonAndSaveToFile(dataFromMongoConvertedToJSON)); + // this.convertToJsonAndSaveToFile(dataFromMongoConvertedToJSON); - console.log(new Date().getSeconds(), "final da busca"); - } finally { - console.log("LIDO COM SUCESSO"); - } - break; + // // console.log(new Date().getSeconds(), "final da busca"); + // } finally { + // console.log("LIDO COM SUCESSO"); + // } + // break; - default: - } - } + // default: + // } + // } } -// Usage -const uri = "mongodb://manager:9Hq91q5oExU9biOZ7yq98I8P1DU1ge@ivipcoin-api.com:4048/?authMechanism=DEFAULT"; -const dataRestructure = new NoderestructureJson(uri); -dataRestructure.main("REMOTE").catch(console.error); +// // Usage +// const uri = "mongodb://manager:9Hq91q5oExU9biOZ7yq98I8P1DU1ge@ivipcoin-api.com:4048/?authMechanism=DEFAULT"; +// const dataRestructure = new NoderestructureJson(uri); +// dataRestructure.main("REMOTE").catch(console.error); diff --git a/src/server/services/database/Node/NodeResultWithPath.ts b/src/server/services/database/Node/NodeResultWithPath.ts index d687a038..80b281c3 100644 --- a/src/server/services/database/Node/NodeResultWithPath.ts +++ b/src/server/services/database/Node/NodeResultWithPath.ts @@ -178,6 +178,7 @@ class NodeJsonTransformer { content: { type: this.getType(nonObjectKeys), value: this.filterKeysFromObject(otherObject), + // value: otherObject, revision: this.generateShortUUID(), revision_nr: 1, created: Date.now(), diff --git a/src/settings.example.ts b/src/settings.example.ts new file mode 100644 index 00000000..90d35330 --- /dev/null +++ b/src/settings.example.ts @@ -0,0 +1,6 @@ +import { NoderestructureJson } from "./server/services/database/Node/NodeRestructureJson"; + +// SETTINGS + +const uri = ""; +const dataRestructure = new NoderestructureJson(uri); diff --git a/src/settings.ts b/src/settings.ts new file mode 100644 index 00000000..70aded11 --- /dev/null +++ b/src/settings.ts @@ -0,0 +1,8 @@ +import { NoderestructureJson } from "./server/services/database/Node/NodeRestructureJson"; + +// SETTINGS + +const uri = "mongodb://manager:9Hq91q5oExU9biOZ7yq98I8P1DU1ge@ivipcoin-api.com:4048/?authMechanism=DEFAULT"; +const dataRestructure = new NoderestructureJson(uri); + +export default { uri, dataRestructure }; diff --git a/test/MDE/teste.ts b/test/MDE/teste.ts new file mode 100644 index 00000000..ac1b0d7e --- /dev/null +++ b/test/MDE/teste.ts @@ -0,0 +1,12 @@ +import MDE from "../../src/server/services/database/MDE"; +import jsondata from "../myjsonfile.json"; + +const instance = new MDE({ + prefix: "", + searchData: async (search) => { + return jsondata.filter((node) => search.test(node.path)) as any; + }, +}); + +instance.get("ivipcoin-db::__movement_wallet__/007219693774253022", true); +// instance.get("ivipcoin-db::__movement_wallet__/000523147298669313/balances/", true).then(console.log); diff --git a/test/outputRestructuredJSON.json b/test/outputRestructuredJSON.json index 939c69d8..5771f4d9 100644 --- a/test/outputRestructuredJSON.json +++ b/test/outputRestructuredJSON.json @@ -1,122 +1,107 @@ { "ivipcoin-db::__movement_wallet__": { - "000523147298669313": { - "balances": { - "BRL": { - "available": "2528.00700001", - "symbol": "BRL", - "value": 494.23 - }, - "IVIP": { - "available": "1499269.00000000", - "symbol": "IVIP", - "value": 158.48 - } + "007219693774253022": { + "dataModificacao": 1689373828234, + "dateValidity": 1689373828234, + "totalValue": 0, + "currencyType": "USD", + "balancesModificacao": "2023-10-14T03:00:00.000Z", + "credit": { + "approvedLimit": 0, + "limitUsed": 0, + "invoices": {} }, "history": { - "1677138262468": { - "description": "Deposito de um valor R$ 603,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", + "1690216041978": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 150, + "total_amount": 150, + "id": 1690216041978, + "history_id": 1690216041978, + "date_created": "2023-07-24T16:27:21.978Z", + "date_last_updated": "2023-07-24T17:23:10.794Z", + "operation_type": "regular_payment", + "payment_type": "ticket", + "status": "approved", + "currency_id": "BRL", + "base_currency_id": "BRL", + "status_detail": "accredited", + "date_approved": "2023-07-24T17:23:10.794Z", + "money_release_date": "2023-07-24T17:23:10.794Z", + "money_release_status": "approved", + "wasDebited": true, "details": { - "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1311772470/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772470&payment_method_reference_id=10194042832&hash=af674271-1e58-4fd7-be5a-99a2285e1e5a", - "barcode": { - "content": "23796927400000606493380261019404283200633330" - }, - "costs": [ - { - "title": "Taxa de serviço", - "label": "Taxa de R$ 3,49", - "amount": 3.49 - } - ] + "payment_method_reference_id": 1690216041978, + "net_received_amount": 0, + "overpaid_amount": 0, + "total_paid_amount": 150, + "installment_amount": 150, + "installments": 1, + "reference_currency_id": "BRL", + "financial_institution": "ivipcoin", + "costs": [], + "external_resource_url": "https://ivipcoin-api.com/v1/finances/info_by/007219693774253022/history/1690216041978" + }, + "description": "Deposito de um valor R$ 150,00 para a carteira iVip 0072.1969.3774.2530-22", + "date_of_expiration": { + ".type": "date", + ".val": "2023-08-23T16:27:21.978Z" } }, - "1677138655788": { - "description": "Deposito de um valor R$ 592,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", + "1689719003118": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 130, + "total_amount": 130, + "history_id": 1689719003118, + "id": 1689719003118, + "date_created": "2023-07-18T22:23:23.118Z", + "date_last_updated": "2023-07-26T21:40:36.264Z", + "date_of_expiration": "2023-08-17T22:23:23.118Z", + "operation_type": "regular_payment", + "status": "cancelled", + "status_detail": "cancelled", + "currency_id": "BRL", + "money_release_date": "2023-07-26T21:40:36.264Z", + "money_release_status": "cancelled", + "wasDebited": true, "details": { - "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1311772488/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772488&payment_method_reference_id=10194043809&hash=73ef0e48-e863-4567-bdcb-8711a40d76b2", - "barcode": { - "content": "23799927400000595493380261019404380900633330" - }, - "costs": [ - { - "title": "Taxa de serviço", - "label": "Taxa de R$ 3,49", - "amount": 3.49 - } - ] - } + "costs": [] + }, + "description": "Deposito de um valor R$ 130,00 para a carteira iVip 0072.1969.3774.2530-22" }, - "1677139564865": { - "description": "Deposito de um valor R$ 500,00 para a carteira iVip 0005.2314.7298.6693-13", + "1689373938365": { + "type": "deposit", + "wallet_type": "IVIPCOIN", + "payment_method": "whatsapp", + "original_amount": 100, + "total_amount": 100, + "history_id": 1689373938365, + "id": 1689373938365, + "date_created": "2023-07-14T22:32:18.365Z", + "date_last_updated": "2023-07-26T21:41:01.153Z", + "date_of_expiration": "2023-08-13T22:32:18.365Z", + "operation_type": "regular_payment", + "status": "cancelled", + "status_detail": "cancelled", + "currency_id": "BRL", + "money_release_date": "2023-07-26T21:41:01.153Z", + "money_release_status": "cancelled", + "wasDebited": true, "details": { - "qr_code": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406504.955802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter1312722165630407FD", - "ticket_url": "https://www.mercadopago.com.br/sandbox/payments/1312722165/ticket?caller_id=1310149122&hash=db7e8cb4-20ed-4664-aa3c-fa50b3f2d6e8", - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dQY7kNgwFUN3A97+lb+Agi8zY4qeqkgyCjPxq0ehu29Jz7QhS5Lh+o885aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXbMn+PP/x0/Lhw/7vvrwp/P3y78XOX+2znGc8fxc9H7Ao8LE4OWlpaWlpaWlpaWlvYl2mnbn4s8ANN9d0V6q2nb826cLty/h6SipaWlpaWlpaWlpaV9gXYKIHN02ER9047liRqBtvtmBi0tLS0tLS0tLS0t7Uu1Ics25++mz6d0Xo1Kyw9aWlpaWlpaWlpaWlraEAlO/7vn6prPnXeWMHRa4FMwS0tLS0tLS0tLS0tL+wJtwi9qMq+QpjtK2WZ5qyMcwDuWxZ+0tLS0tLS0tLS0tLSv0LZdSv7bH/+2pwotLS0tLS0tLS0tLe1vqs2f81lIeZaeI/mo25UbTKbeJPcfnyy0tLS0tLS0tLS0tLR7a5tjbevDbDkCnV5oPFN8R/4y2vejpaWlpaWlpaWlpaV9hTb1F8ld+Ef5szQjaUoq7xulw3GpWPOipaWlpaWlpaWlpaV9ibYEhnWo2lQgOe29ePYM6bwrD9luT9fR0tLS0tLS0tLS0tLurk2bpXNx7adN8U15vil5OBlLAvCipaWlpaWlpaWlpaV9jbaumZJ9ZQp2msp2lsb/Ye+xrLD81FOFlpaWlpaWlpaWlpZ2P2065XaU5Fx7Gi49kfN8o0sFnuFbumhpaWlpaWlpaWlpaV+jPT6tubil7jM1N0lZu9RMsgSzBy0tLS0tLS0tLS0t7Wu0NZ3XduFPQWWeeD3Kn+U10m4jtpqkpaWlpaWlpaWlpaXdWZvSdCkwTJ3578+eZbM8FqDpNzlZaGlpaWlpaWlpaWlpX6bN09FS/u7MOb3y9ke5uf0KpndeVl3S0tLS0tLS0tLS0tJuqi1ptWaI9RQdLppEHiEgrWfq0hf0dcxLS0tLS0tLS0tLS0u7mzYHhmmlx3Ipp9fGiWWjM2T8TlpaWlpaWlpaWlpa2hdqp+aPI/+WaiMnQGo3kjpK5rEAX9aI0tLS0tLS0tLS0tLSbqQtgeGj50hJyR0hvJwyfmWzUbqepBizHbdNS0tLS0tLS0tLS0u7u/ZYpvhSV5EUcrah5JGPun0Rn9LS0tLS0tLS0tLS0r5Hm0+lHTlX1xZStqOw8xG7Ky/1OYqkpaWlpaWlpaWlpaXdSpvrL5uyyHSOLeXq8ty1qepy5MReiGNpaWlpaWlpaWlpaWm3164XTiFnexBukeKrlZiL16WlpaWlpaWlpaWlpX2fNrlbYyrHvC9Vo8gSqVZy/qpoaWlpaWlpaWlpaWl315Ym+nUK9tFVTp5d3Fl7nZSrV5iWXVOLtLS0tLS0tLS0tLS0u2vzEOsRyieP/GrpSFzp5d/MyJ4C13SVlpaWlpaWlpaWlpZ2f+0oLfsXFZFpYPUo8V9bZpneOQ3U7rJ7tLS0tLS0tLS0tLS0+2nzwOrpXNy5GHFdjE3VZTk6t4o7P+QiaWlpaWlpaWlpaWlpt9JeeUL1p6b8q+nW5Thd09ekxJPjb/RUoaWlpaWlpaWlpaWl3UWbKidHmLvW1GSmksopTkypu3U55jcxLy0tLS0tLS0tLS0t7Uba8ttVyixLsq/J33Wd+furqUXKMoqkpaWlpaWlpaWlpaXdStsOQbvHhFNHyatk8iZ3KrMsTxyh9HI8T83R0tLS0tLS0tLS0tK+QJsUOeo7+/RbvHkq6pxyeuXmdkoALS0tLS0tLS0tLS3tC7Rl4vVRXqPk4K5FW5JplfI9fNfun5aWlpaWlpaWlpaW9iXaqzu4dpVHU+VkygKW0PQMj6W+lDnnSEtLS0tLS0tLS0tLu7N2WjNHkRWQ84FpbNr5VYVlO4uNlpaWlpaWlpaWlpZ2d20bRZY2kM3s62mL+31Xzt/lqstHtElLS0tLS0tLS0tLS/sm7Zll6ZBaORw3wkG46eoR0nln19KkTm+jpaWlpaWlpaWlpaXdXVvuOEO3xyNUSY7liOv0Vov83Zji0+eL09LS0tLS0tLS0tLS7qxN7nSY7dM+TWQZeo6MnCMcoU8KLS0tLS0tLS0tLS3tC7S5IvIqW5Szclf5reQIR6nEzK/R9jChpaWlpaWlpaWlpaV9gTZPrT5LcLfoQ1ILOMu5uLOUcpZw9QwlmrS0tLS0tLS0tLS0tK/QXiH91tRftquHLebQdHq/dhZb+B8tLS0tLS0tLS0tLe322qnm8f7olRvwT6HkPQKt75fXezyRelDS0tLS0tLS0tLS0tK+QrvIra06O5aYMF04ywG3FEpOGcTPNaK0tLS0tLS0tLS0tLRbaVM4OG0xBZppslpeYHRdSo4wKLuJVGlpaWlpaWlpaWlpaV+ibeol2xHXKZ23OFiXcn9fFGHS0tLS0tLS0tLS0tK+RztCEm+UtiQ5/jvKzLaSzrsyJceOpbckLS0tLS0tLS0tLS3tztoUMaZh1xMvB5/JWDcqzUjOUqfZRZG0tLS0tLS0tLS0tLTbaseTlxqKtA39z9F8ju7mo3Sj/LLqkpaWlpaWlpaWlpaWdj9t+qTYcb1w7ihZe/6nTij5xN1FS0tLS0tLS0tLS0v7Em0O/Y6culs0k2zGXi+iyFWJ5ueYl5aWlpaWlpaWlpaWdh9tivVSQ5F6c+rCPzUomRZt8V9HkbS0tLS0tLS0tLS0tFtqPwWQj8LMdFaujUVzGNo0opwstLS0tLS0tLS0tLS0b9ee4SBc8y6pOnPqOZLx1z/I7tHS0tLS0tLS0tLS0r5AW/9Myb42z1dCydrSJM3c7r4RWlpaWlpaWlpaWlra7bUL/Hgea0s7HlmbajKnVyvNJHPISUtLS0tLS0tLS0tLu7e2Fj7mCC/Ff+f3wWeKNu//mzpU0tLS0tLS0tLS0tLSvkX7///Q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v4y7R8J/gb3YnjEPQAAAABJRU5ErkJggg==", - "bank_info": { - "collector": { - "account_holder_name": "zBCfpF dcGeyDOq lplNs" - } - }, - "costs": [ - { - "title": "Taxa de serviço", - "label": "Taxa de 0.99%", - "amount": 4.95 - } - ] - } - }, - "1677140212667": { - "description": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "details": { - "qr_code_base64": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dW27kNhAFUO5A+9+ldqAgQGZGYl1S7ckgiMmjD8NttcRD/xXqwXZ9o+tstLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLR/Xtv66/j7b8fPG8fP7/24cX/s8fHn29s/P67w5R93f328r/Zg0NLS0tLS0tLS0tLSbqI97iHb/SUPQLfYfdm0q7xsS/ju/1BUtLS0tLS0tLS0tLS0G2i7ALKL/7rny4bOZ/B5PIPKX295hJdp3cygpaWlpaWlpaWlpaXdVPsrDixB4HEHFEoXGJ7hBS3sj5aWlpaWlpaWlpaWlrYPAs9nJebjt1yx2UoNZcoHpn8GLS0tLS0tLS0tLS3t3tqELwWX6eOgTa7ri0vbTcWav1cjSktLS0tLS0tLS0tL+921wykl/+2PfztThZaWlpaWlpaWlpaW9ptq83XeH0zFlfMpk+m3bjZJmjI5stDS0tLS0tLS0tLS0q6tPUsEV3rW6o151WXe7lGWvO/qHCX7aGlpaWlpaWlpaWlp19Z2lDTjcRg25sBwWJ1Zw9A8TLK1NooiaWlpaWlpaWlpaWlp19PmlNyZZ/mXprc0UbILTRPqmJyMPZ1SQktLS0tLS0tLS0tLu542fSN9DEm3Nlx7fqVTtcsLaGlpaWlpaWlpaWlpd9S20vQ2nB45Kam88p675GFXdTmZUElLS0tLS0tLS0tLS7u2NiXnym/1nLS3pOCXmuNqtvC96pKWlpaWlpaWlpaWlnYdbRcxpla369kX192YFVcOz2dLLXHp9bS0tLS0tLS0tLS0tKtrS07v8VQJDI9yN405SXdLpHqMJlSetLS0tLS0tLS0tLS0O2k/emcNKifjImub3Hx/af4JLS0tLS0tLS0tLS3tZtpUV3nHH9NmtpoF7Io1S6BZt1vuXrS0tLS0tLS0tLS0tDtpu6s0uA2rKWeZwTzpf76rt+mRtLS0tLS0tLS0tLS0a2vToMcr83Jz3Bn6565R11ydUPm1qktaWlpaWlpaWlpaWtpVtFeZG5J627qALw+EHD6W1vhgV7S0tLS0tLS0tLS0tPtou2VTH9tVetaGtZspKk3VmTlvOK26pKWlpaWlpaWlpaWlXU1bjp9uZchIV1eZe+Vqh1yZQVkzefOKTVpaWlpaWlpaWlpa2n204Rv9kdRdg9t9Q0d4Vcudb4lX4ti3KJKWlpaWlpaWlpaWlnYpbZehK9HhIKdXUoHH6FUtjyDpUobTvCEtLS0tLS0tLS0tLe3y2hLDnaFoMgWQLYSDx+QF5fVnmFX5lRpRWlpaWlpaWlpaWlra1bSlSnIWReYmulrFOT8tO9+lpaWlpaWlpaWlpaXdR9s91VVEDgK+ble5L+4Mg0xqrWVZqISctLS0tLS0tLS0tLS0K2vzUWrtGeu1Fp9I8/2HvXLd/6YLTfPoE1paWlpaWlpaWlpa2i20Lcdw8863kufr1j7y/2EeMY6CT1paWlpaWlpaWlpa2pW1RXHkHZSQMw2OPEJM2N7GRZbFj09ykbS0tLS0tLS0tLS0tOtoaxtaTr8NjqnOUWQbnc82G4fSpRFpaWlpaWlpaWlpaWk30Q4qJ/Oh2IPjsXPlZP1KnjI5L9akpaWlpaWlpaWlpaXdQtv91m2jDoQcbu2KVz1jbb7kSxRJS0tLS0tLS0tLS0u7kLbLt5XgbliEeZZuuBxUHmXjKdBMh7nR0tLS0tLS0tLS0tJups3npF35ALVSOdnKMMlyDsAxChbPcsDbexRJS0tLS0tLS0tLS0u7inZY+JgW62K9roWtVE4OdlDWOHMoSUtLS0tLS0tLS0tLu4W2C/i6vxVZnR45aaJr4ZC2Wo7Zvfk95qWlpaWlpaWlpaWlpV1KmyonC6o9z10bJOzejseeHbed/kZLS0tLS0tLS0tLS7uJNlVJ1jxfurrosMyMHCQPJ7HjRzNVaGlpaWlpaWlpaWlpl9KmGsoUDnbZuKy4cjtdkdWQcxqf0tLS0tLS0tLS0tLSbqCtEV5O+6U8X03dDXeVizDPEne+RJG0tLS0tLS0tLS0tLQLaRMqhX4f1GSWDF06B+AMZZb17Ouv1IjS0tLS0tLS0tLS0tJ+b223dq6IPMuM/py/m62dyjG732hpaWlpaWlpaWlpaXfUlhRfC3Mk65Wm/3eyHE/Wj+XQgIOWlpaWlpaWlpaWlnYnbcnQnWEOSVdhWW/MtzachBIqLN+mlNDS0tLS0tLS0tLS0q6mHSbY8hKzrF1J3Q0mnJRA88rnuNHS0tLS0tLS0tLS0u6jLSMkj7e/TcZFDuo0U9ovhbAfV13S0tLS0tLS0tLS0tKuon2sU16XxkqeoentnI6V7FZL7kEnHS0tLS0tLS0tLS0t7era8s6zLFHe1M19rDm9e7KvfpxUXeaKTVpaWlpaWlpaWlpa2pW1d08CpPjvEQSmx8r3BlWXOXYshwHQ0tLS0tLS0tLS0tKurC2FlOeoLPLMvDTkf5j2++B8tg9jXlpaWlpaWlpaWlpa2sW0LRx41g0eSUWTVx5VkvKBJXBNj31YdUlLS0tLS0tLS0tLS7uQNl3DEDEflF03+ZYUvJ7pweGztLS0tLS0tLS0tLS0G2iHgVw6q3r49mHEmA9zS2cD1NCUlpaWlpaWlpaWlpZ2E+2RA8huQ8MQsexguJf2nFdyTXY/jiJpaWlpaWlpaWlpaWmX1KYqyRRA3uPOo8R/k8fSSMph1WWbTSmhpaWlpaWlpaWlpaXdSFujvtCpFmf0lwGT9bHSdvd5do+WlpaWlpaWlpaWlnYPbVo29cWlu3ny5FWeyC1xBy0tLS0tLS0tLS0t7XbaCb5m3roJ/rnqsg7qHxZXFt5FS0tLS0tLS0tLS0u7l7YWPqZmtnsA2XW0XWWuSZ5NMpiEUg54m1Zd0tLS0tLS0tLS0tLSrqb9/1+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+xf7jbt53CJCnQAAAABJRU5ErkJggg==", - "qr_code": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b61520400005303986540520.205802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131177255663042F4F", - "ticket_url": "https://www.mercadopago.com.br/sandbox/payments/1311772556/ticket?caller_id=1310149122&hash=317c7ec8-4131-44a3-a5d4-81d3bd707a5f", - "costs": [ - { - "title": "Taxa de serviço", - "label": "Taxa de 0.99%", - "amount": 0.198 - } - ], - "bank_info": { - "collector": { - "account_holder_name": "zBCfpF dcGeyDOq lplNs" - } - } - } - }, - "1677141074675": { - "description": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", - "details": { - "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1311772574/ticket?caller_id=1310149122&payment_method_id=pec&payment_id=1311772574&payment_method_reference_id=6003381638&hash=676a5569-4884-42d3-9e67-bfdb72450090", - "barcode": { - "content": "23791927400000051993380260600338163800633330" - }, - "costs": [ - { - "title": "Taxa de serviço", - "label": "Taxa de 3.99%", - "amount": 1.9949999999999999 - } - ] - } - }, - "1677143332353": { - "description": "Deposito de um valor R$ 72,00 para a carteira iVip 0005.2314.7298.6693-13", - "details": { - "external_resource_url": "https://www.mercadopago.com.br/sandbox/payments/1312722387/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1312722387&payment_method_reference_id=10194052159&hash=0fea3a36-6354-4019-aec5-950b140fc21c", - "barcode": { - "content": "23792927400000075493380261019405215900633330" - }, - "costs": [ - { - "title": "Taxa de serviço", - "label": "Taxa de R$ 3,49", - "amount": 3.49 - } - ] - } + "costs": [] + }, + "description": "Deposito de um valor R$ 100,00 para a carteira iVip 0072.1969.3774.2530-22" + } + }, + "balances": { + "BRL": { + "available": "150.00000000", + "symbol": "BRL", + "value": 29.27 } } } diff --git a/test/outputResultWithPathJSON.json b/test/outputResultWithPathJSON.json index 0dec5fa2..c82a7874 100644 --- a/test/outputResultWithPathJSON.json +++ b/test/outputResultWithPathJSON.json @@ -8,10 +8,10 @@ "symbol": "BRL", "value": 494.23 }, - "revision": "faf6f6c7bb49483dbd5a6e59", + "revision": "5b55efee4ad34bfea8946863", "revision_nr": 1, - "created": 1701809344813, - "modified": 1701809344813 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -23,10 +23,10 @@ "symbol": "IVIP", "value": 158.48 }, - "revision": "c307b345b97c4f87b1143c38", + "revision": "1f430c64c4e74803ba18fc83", "revision_nr": 1, - "created": 1701809344814, - "modified": 1701809344814 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -34,10 +34,10 @@ "content": { "type": 1, "value": {}, - "revision": "12196d5aab6a4f6e8dde1ed7", + "revision": "1c5b894615c94729b37df41c", "revision_nr": 1, - "created": 1701809344814, - "modified": 1701809344814 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -47,10 +47,10 @@ "value": { "content": "23796927400000606493380261019404283200633330" }, - "revision": "e4b0f8ab8d134c43a85852d0", + "revision": "fb038a1724a34034937c7331", "revision_nr": 1, - "created": 1701809344814, - "modified": 1701809344814 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -62,10 +62,10 @@ "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "150ff8a2f37f4e81a6ef724f", + "revision": "fc17e363071d4f788f692ac4", "revision_nr": 1, - "created": 1701809344814, - "modified": 1701809344814 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -83,10 +83,10 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "20e130c1eff442acac0514e3", + "revision": "6058cbda985544cd8a2ed8ea", "revision_nr": 1, - "created": 1701809344815, - "modified": 1701809344815 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -94,10 +94,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1311772470/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772470&payment_method_reference_id=10194042832&hash=af674271-1e58-4fd7-be5a-99a2285e1e5a", - "revision": "ea548de7dbe94a2ba527f739", + "revision": "0fcc2ba8ff7e43ac959e9aef", "revision_nr": 1, - "created": 1701809344814, - "modified": 1701809344814 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -105,10 +105,10 @@ "content": { "type": 2, "value": {}, - "revision": "a187163eb10140e9936d9abb", + "revision": "e2ebbbe6bbd640b3ba8bd317", "revision_nr": 1, - "created": 1701809344814, - "modified": 1701809344814 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -141,10 +141,10 @@ "currency_id": "BRL", "history_id": "1677138262468" }, - "revision": "2e71b7761df54b9bbad8a37f", + "revision": "6e3ab459b30e4d12bf3d599b", "revision_nr": 1, - "created": 1701809344815, - "modified": 1701809344815 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -152,10 +152,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 603,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", - "revision": "0ff46433dfcc426397c930ae", + "revision": "443d119259bb49d79b37a538", "revision_nr": 1, - "created": 1701809344814, - "modified": 1701809344814 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -165,10 +165,10 @@ "value": { "content": "23799927400000595493380261019404380900633330" }, - "revision": "d8bf2b93736a4572b0da024d", + "revision": "be7bb86b087943fbba5a55f1", "revision_nr": 1, - "created": 1701809344815, - "modified": 1701809344815 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -180,10 +180,10 @@ "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "cfe80f185e8b4f018ddce221", + "revision": "dfc7828e481247c88535e72d", "revision_nr": 1, - "created": 1701809344815, - "modified": 1701809344815 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -201,10 +201,10 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "5b055a9fa8d644e8b0f0f03d", + "revision": "b25b3a338c0740ffa26f0a98", "revision_nr": 1, - "created": 1701809344815, - "modified": 1701809344815 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -212,10 +212,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1311772488/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772488&payment_method_reference_id=10194043809&hash=73ef0e48-e863-4567-bdcb-8711a40d76b2", - "revision": "94bdb431d6394275830388e3", + "revision": "73ffeabcef894b8a8b5c239b", "revision_nr": 1, - "created": 1701809344815, - "modified": 1701809344815 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -223,10 +223,10 @@ "content": { "type": 2, "value": {}, - "revision": "08101bb0d2fa4064b7988ef5", + "revision": "201ba19a9a0d447c865b99fe", "revision_nr": 1, - "created": 1701809344815, - "modified": 1701809344815 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -259,10 +259,10 @@ "currency_id": "BRL", "history_id": "1677138655788" }, - "revision": "3845ce39009244e0b870d4ac", + "revision": "fa64b24a31a54cc09ccabb74", "revision_nr": 1, - "created": 1701809344815, - "modified": 1701809344815 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -270,10 +270,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 592,00 para a carteira iVip 0005.2314.7298.6693-13Tarifas: - Taxa de serviço (Taxa de R$ 3,49): + R$ 3,49", - "revision": "36d211bd1d264b5a9c69f6f9", + "revision": "f0bcdebc343546058ec94cf4", "revision_nr": 1, - "created": 1701809344815, - "modified": 1701809344815 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -281,10 +281,10 @@ "content": { "type": 1, "value": {}, - "revision": "e8650f300ef04b37b7729172", + "revision": "dbf86e1a0b444009b5c729da", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -294,10 +294,10 @@ "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "039d4f6f02f940a292ba99be", + "revision": "fb2c45a36c97484686892992", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -305,10 +305,10 @@ "content": { "type": 1, "value": {}, - "revision": "d91014327b604064a1e2abbd", + "revision": "97f1b2158bb747ceb67d2399", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -320,10 +320,10 @@ "label": "Taxa de 0.99%", "amount": 4.95 }, - "revision": "e90fd71dc8c14f04809ee551", + "revision": "a1cb91b7e35f425f92d5f5a8", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -337,10 +337,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "6e482039a93a4a3fb1555f32", + "revision": "bd87d92477374d639edd6402", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -348,10 +348,10 @@ "content": { "type": 5, "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406504.955802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter1312722165630407FD", - "revision": "329111f3791147aeba9cc2be", + "revision": "0993047c2458455d973d90fd", "revision_nr": 1, - "created": 1701809344815, - "modified": 1701809344815 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -359,10 +359,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1312722165/ticket?caller_id=1310149122&hash=db7e8cb4-20ed-4664-aa3c-fa50b3f2d6e8", - "revision": "d4c16a2382a84d85bae938b0", + "revision": "931f424975f14cfe98c62b34", "revision_nr": 1, - "created": 1701809344815, - "modified": 1701809344815 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -370,10 +370,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dQY7kNgwFUN3A97+lb+Agi8zY4qeqkgyCjPxq0ehu29Jz7QhS5Lh+o885aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXbMn+PP/x0/Lhw/7vvrwp/P3y78XOX+2znGc8fxc9H7Ao8LE4OWlpaWlpaWlpaWlvYl2mnbn4s8ANN9d0V6q2nb826cLty/h6SipaWlpaWlpaWlpaV9gXYKIHN02ER9047liRqBtvtmBi0tLS0tLS0tLS0t7Uu1Ics25++mz6d0Xo1Kyw9aWlpaWlpaWlpaWlraEAlO/7vn6prPnXeWMHRa4FMwS0tLS0tLS0tLS0tL+wJtwi9qMq+QpjtK2WZ5qyMcwDuWxZ+0tLS0tLS0tLS0tLSv0LZdSv7bH/+2pwotLS0tLS0tLS0tLe1vqs2f81lIeZaeI/mo25UbTKbeJPcfnyy0tLS0tLS0tLS0tLR7a5tjbevDbDkCnV5oPFN8R/4y2vejpaWlpaWlpaWlpaV9hTb1F8ld+Ef5szQjaUoq7xulw3GpWPOipaWlpaWlpaWlpaV9ibYEhnWo2lQgOe29ePYM6bwrD9luT9fR0tLS0tLS0tLS0tLurk2bpXNx7adN8U15vil5OBlLAvCipaWlpaWlpaWlpaV9jbaumZJ9ZQp2msp2lsb/Ye+xrLD81FOFlpaWlpaWlpaWlpZ2P2065XaU5Fx7Gi49kfN8o0sFnuFbumhpaWlpaWlpaWlpaV+jPT6tubil7jM1N0lZu9RMsgSzBy0tLS0tLS0tLS0t7Wu0NZ3XduFPQWWeeD3Kn+U10m4jtpqkpaWlpaWlpaWlpaXdWZvSdCkwTJ3578+eZbM8FqDpNzlZaGlpaWlpaWlpaWlpX6bN09FS/u7MOb3y9ke5uf0KpndeVl3S0tLS0tLS0tLS0tJuqi1ptWaI9RQdLppEHiEgrWfq0hf0dcxLS0tLS0tLS0tLS0u7mzYHhmmlx3Ipp9fGiWWjM2T8TlpaWlpaWlpaWlpa2hdqp+aPI/+WaiMnQGo3kjpK5rEAX9aI0tLS0tLS0tLS0tLSbqQtgeGj50hJyR0hvJwyfmWzUbqepBizHbdNS0tLS0tLS0tLS0u7u/ZYpvhSV5EUcrah5JGPun0Rn9LS0tLS0tLS0tLS0r5Hm0+lHTlX1xZStqOw8xG7Ky/1OYqkpaWlpaWlpaWlpaXdSpvrL5uyyHSOLeXq8ty1qepy5MReiGNpaWlpaWlpaWlpaWm3164XTiFnexBukeKrlZiL16WlpaWlpaWlpaWlpX2fNrlbYyrHvC9Vo8gSqVZy/qpoaWlpaWlpaWlpaWl315Ym+nUK9tFVTp5d3Fl7nZSrV5iWXVOLtLS0tLS0tLS0tLS0u2vzEOsRyieP/GrpSFzp5d/MyJ4C13SVlpaWlpaWlpaWlpZ2f+0oLfsXFZFpYPUo8V9bZpneOQ3U7rJ7tLS0tLS0tLS0tLS0+2nzwOrpXNy5GHFdjE3VZTk6t4o7P+QiaWlpaWlpaWlpaWlpt9JeeUL1p6b8q+nW5Thd09ekxJPjb/RUoaWlpaWlpaWlpaWl3UWbKidHmLvW1GSmksopTkypu3U55jcxLy0tLS0tLS0tLS0t7Uba8ttVyixLsq/J33Wd+furqUXKMoqkpaWlpaWlpaWlpaXdStsOQbvHhFNHyatk8iZ3KrMsTxyh9HI8T83R0tLS0tLS0tLS0tK+QJsUOeo7+/RbvHkq6pxyeuXmdkoALS0tLS0tLS0tLS3tC7Rl4vVRXqPk4K5FW5JplfI9fNfun5aWlpaWlpaWlpaW9iXaqzu4dpVHU+VkygKW0PQMj6W+lDnnSEtLS0tLS0tLS0tLu7N2WjNHkRWQ84FpbNr5VYVlO4uNlpaWlpaWlpaWlpZ2d20bRZY2kM3s62mL+31Xzt/lqstHtElLS0tLS0tLS0tLS/sm7Zll6ZBaORw3wkG46eoR0nln19KkTm+jpaWlpaWlpaWlpaXdXVvuOEO3xyNUSY7liOv0Vov83Zji0+eL09LS0tLS0tLS0tLS7qxN7nSY7dM+TWQZeo6MnCMcoU8KLS0tLS0tLS0tLS3tC7S5IvIqW5Szclf5reQIR6nEzK/R9jChpaWlpaWlpaWlpaV9gTZPrT5LcLfoQ1ILOMu5uLOUcpZw9QwlmrS0tLS0tLS0tLS0tK/QXiH91tRftquHLebQdHq/dhZb+B8tLS0tLS0tLS0tLe322qnm8f7olRvwT6HkPQKt75fXezyRelDS0tLS0tLS0tLS0tK+QrvIra06O5aYMF04ywG3FEpOGcTPNaK0tLS0tLS0tLS0tLRbaVM4OG0xBZppslpeYHRdSo4wKLuJVGlpaWlpaWlpaWlpaV+ibeol2xHXKZ23OFiXcn9fFGHS0tLS0tLS0tLS0tK+RztCEm+UtiQ5/jvKzLaSzrsyJceOpbckLS0tLS0tLS0tLS3tztoUMaZh1xMvB5/JWDcqzUjOUqfZRZG0tLS0tLS0tLS0tLTbaseTlxqKtA39z9F8ju7mo3Sj/LLqkpaWlpaWlpaWlpaWdj9t+qTYcb1w7ihZe/6nTij5xN1FS0tLS0tLS0tLS0v7Em0O/Y6culs0k2zGXi+iyFWJ5ueYl5aWlpaWlpaWlpaWdh9tivVSQ5F6c+rCPzUomRZt8V9HkbS0tLS0tLS0tLS0tFtqPwWQj8LMdFaujUVzGNo0opwstLS0tLS0tLS0tLS0b9ee4SBc8y6pOnPqOZLx1z/I7tHS0tLS0tLS0tLS0r5AW/9Myb42z1dCydrSJM3c7r4RWlpaWlpaWlpaWlra7bUL/Hgea0s7HlmbajKnVyvNJHPISUtLS0tLS0tLS0tLu7e2Fj7mCC/Ff+f3wWeKNu//mzpU0tLS0tLS0tLS0tLSvkX7///Q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v4y7R8J/gb3YnjEPQAAAABJRU5ErkJggg==", - "revision": "b25b61dd6e954d76aacc0261", + "revision": "c6ae317f0c4848b1a45a49af", "revision_nr": 1, - "created": 1701809344815, - "modified": 1701809344815 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -381,10 +381,10 @@ "content": { "type": 2, "value": {}, - "revision": "da97871ac6284ce7912a7c9e", + "revision": "793aeada10054866b714aaed", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -417,10 +417,10 @@ "currency_id": "BRL", "history_id": "1677139564865" }, - "revision": "3c1a20e367c84c31a8ab7060", + "revision": "e5cad052182844cb9ebc15f5", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -428,10 +428,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "ccd72093de66469ba93868ee", + "revision": "60f17876d3534ca8b997cfb1", "revision_nr": 1, - "created": 1701809344815, - "modified": 1701809344815 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -443,10 +443,10 @@ "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "9107eda8bdd44005a1f2b2d1", + "revision": "074be69bd7cd4c69bb16e7c7", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -454,10 +454,10 @@ "content": { "type": 1, "value": {}, - "revision": "72ee852b39fb4143947228a9", + "revision": "bba618e93c6f42379ea5cd57", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -467,10 +467,10 @@ "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "bbe5fb425baf4c9390e8e6b7", + "revision": "dfcfdcf97d2c4b8a9916ebb1", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -478,10 +478,10 @@ "content": { "type": 1, "value": {}, - "revision": "ba72d0beb8ce49c2bc08f59c", + "revision": "bbe09150e2504e4790545871", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -495,10 +495,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "a096958b00a64c119443950e", + "revision": "14fd8ae308764b82af4dc9d9", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -506,10 +506,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2klEQVR42u3dW27kNhAFUO5A+9+ldqAgQGZGYl1S7ckgiMmjD8NttcRD/xXqwXZ9o+tstLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLR/Xtv66/j7b8fPG8fP7/24cX/s8fHn29s/P67w5R93f328r/Zg0NLS0tLS0tLS0tLSbqI97iHb/SUPQLfYfdm0q7xsS/ju/1BUtLS0tLS0tLS0tLS0G2i7ALKL/7rny4bOZ/B5PIPKX295hJdp3cygpaWlpaWlpaWlpaXdVPsrDixB4HEHFEoXGJ7hBS3sj5aWlpaWlpaWlpaWlrYPAs9nJebjt1yx2UoNZcoHpn8GLS0tLS0tLS0tLS3t3tqELwWX6eOgTa7ri0vbTcWav1cjSktLS0tLS0tLS0tL+921wykl/+2PfztThZaWlpaWlpaWlpaW9ptq83XeH0zFlfMpk+m3bjZJmjI5stDS0tLS0tLS0tLS0q6tPUsEV3rW6o151WXe7lGWvO/qHCX7aGlpaWlpaWlpaWlp19Z2lDTjcRg25sBwWJ1Zw9A8TLK1NooiaWlpaWlpaWlpaWlp19PmlNyZZ/mXprc0UbILTRPqmJyMPZ1SQktLS0tLS0tLS0tLu542fSN9DEm3Nlx7fqVTtcsLaGlpaWlpaWlpaWlpd9S20vQ2nB45Kam88p675GFXdTmZUElLS0tLS0tLS0tLS7u2NiXnym/1nLS3pOCXmuNqtvC96pKWlpaWlpaWlpaWlnYdbRcxpla369kX192YFVcOz2dLLXHp9bS0tLS0tLS0tLS0tKtrS07v8VQJDI9yN405SXdLpHqMJlSetLS0tLS0tLS0tLS0O2k/emcNKifjImub3Hx/af4JLS0tLS0tLS0tLS3tZtpUV3nHH9NmtpoF7Io1S6BZt1vuXrS0tLS0tLS0tLS0tDtpu6s0uA2rKWeZwTzpf76rt+mRtLS0tLS0tLS0tLS0a2vToMcr83Jz3Bn6565R11ydUPm1qktaWlpaWlpaWlpaWtpVtFeZG5J627qALw+EHD6W1vhgV7S0tLS0tLS0tLS0tPtou2VTH9tVetaGtZspKk3VmTlvOK26pKWlpaWlpaWlpaWlXU1bjp9uZchIV1eZe+Vqh1yZQVkzefOKTVpaWlpaWlpaWlpa2n204Rv9kdRdg9t9Q0d4Vcudb4lX4ti3KJKWlpaWlpaWlpaWlnYpbZehK9HhIKdXUoHH6FUtjyDpUobTvCEtLS0tLS0tLS0tLe3y2hLDnaFoMgWQLYSDx+QF5fVnmFX5lRpRWlpaWlpaWlpaWlra1bSlSnIWReYmulrFOT8tO9+lpaWlpaWlpaWlpaXdR9s91VVEDgK+ble5L+4Mg0xqrWVZqISctLS0tLS0tLS0tLS0K2vzUWrtGeu1Fp9I8/2HvXLd/6YLTfPoE1paWlpaWlpaWlpa2i20Lcdw8863kufr1j7y/2EeMY6CT1paWlpaWlpaWlpa2pW1RXHkHZSQMw2OPEJM2N7GRZbFj09ykbS0tLS0tLS0tLS0tOtoaxtaTr8NjqnOUWQbnc82G4fSpRFpaWlpaWlpaWlpaWk30Q4qJ/Oh2IPjsXPlZP1KnjI5L9akpaWlpaWlpaWlpaXdQtv91m2jDoQcbu2KVz1jbb7kSxRJS0tLS0tLS0tLS0u7kLbLt5XgbliEeZZuuBxUHmXjKdBMh7nR0tLS0tLS0tLS0tJups3npF35ALVSOdnKMMlyDsAxChbPcsDbexRJS0tLS0tLS0tLS0u7inZY+JgW62K9roWtVE4OdlDWOHMoSUtLS0tLS0tLS0tLu4W2C/i6vxVZnR45aaJr4ZC2Wo7Zvfk95qWlpaWlpaWlpaWlpV1KmyonC6o9z10bJOzejseeHbed/kZLS0tLS0tLS0tLS7uJNlVJ1jxfurrosMyMHCQPJ7HjRzNVaGlpaWlpaWlpaWlpl9KmGsoUDnbZuKy4cjtdkdWQcxqf0tLS0tLS0tLS0tLSbqCtEV5O+6U8X03dDXeVizDPEne+RJG0tLS0tLS0tLS0tLQLaRMqhX4f1GSWDF06B+AMZZb17Ouv1IjS0tLS0tLS0tLS0tJ+b223dq6IPMuM/py/m62dyjG732hpaWlpaWlpaWlpaXfUlhRfC3Mk65Wm/3eyHE/Wj+XQgIOWlpaWlpaWlpaWlnYnbcnQnWEOSVdhWW/MtzachBIqLN+mlNDS0tLS0tLS0tLS0q6mHSbY8hKzrF1J3Q0mnJRA88rnuNHS0tLS0tLS0tLS0u6jLSMkj7e/TcZFDuo0U9ovhbAfV13S0tLS0tLS0tLS0tKuon2sU16XxkqeoentnI6V7FZL7kEnHS0tLS0tLS0tLS0t7era8s6zLFHe1M19rDm9e7KvfpxUXeaKTVpaWlpaWlpaWlpa2pW1d08CpPjvEQSmx8r3BlWXOXYshwHQ0tLS0tLS0tLS0tKurC2FlOeoLPLMvDTkf5j2++B8tg9jXlpaWlpaWlpaWlpa2sW0LRx41g0eSUWTVx5VkvKBJXBNj31YdUlLS0tLS0tLS0tLS7uQNl3DEDEflF03+ZYUvJ7pweGztLS0tLS0tLS0tLS0G2iHgVw6q3r49mHEmA9zS2cD1NCUlpaWlpaWlpaWlpZ2E+2RA8huQ8MQsexguJf2nFdyTXY/jiJpaWlpaWlpaWlpaWmX1KYqyRRA3uPOo8R/k8fSSMph1WWbTSmhpaWlpaWlpaWlpaXdSFujvtCpFmf0lwGT9bHSdvd5do+WlpaWlpaWlpaWlnYPbVo29cWlu3ny5FWeyC1xBy0tLS0tLS0tLS0t7XbaCb5m3roJ/rnqsg7qHxZXFt5FS0tLS0tLS0tLS0u7l7YWPqZmtnsA2XW0XWWuSZ5NMpiEUg54m1Zd0tLS0tLS0tLS0tLSrqb9/1+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+xf7jbt53CJCnQAAAABJRU5ErkJggg==", - "revision": "949dc62b4172421c8b31d306", + "revision": "3b542459e54143caa9f72124", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -517,10 +517,10 @@ "content": { "type": 5, "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b61520400005303986540520.205802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131177255663042F4F", - "revision": "7b7db93ff24d4d6d8cb82228", + "revision": "dea1d7afd8ab40bbb0817558", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -528,10 +528,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1311772556/ticket?caller_id=1310149122&hash=317c7ec8-4131-44a3-a5d4-81d3bd707a5f", - "revision": "fb623663851e43aaba59777b", + "revision": "a7fb6db7e5e049f5a77a7804", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -539,10 +539,10 @@ "content": { "type": 2, "value": {}, - "revision": "e94527e98ef940cdb1fcd514", + "revision": "372230f5c99749f0ac8d40ae", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -575,10 +575,10 @@ "currency_id": "BRL", "history_id": "1677140212667" }, - "revision": "e8a8becc8519416e875e674b", + "revision": "bbec7d8138714baca3ca4c80", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -586,10 +586,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "6128b9325b884747be337440", + "revision": "912bb452451347d492f9b207", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036306, + "modified": 1702563036306 } }, { @@ -599,10 +599,10 @@ "value": { "content": "23791927400000051993380260600338163800633330" }, - "revision": "c967ad397846450384154776", + "revision": "13c1e5309b914236b71f7a16", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -614,10 +614,10 @@ "label": "Taxa de 3.99%", "amount": 1.9949999999999999 }, - "revision": "e885ed00fdcb4c398422c1db", + "revision": "2ee1d2a74aa24b8bb51f05e3", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -635,10 +635,10 @@ "installment_amount": 0, "financial_institution": "10850221" }, - "revision": "72874e41d62e4d54914a97e1", + "revision": "65db861770ef4ac495fb8ef8", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -646,10 +646,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1311772574/ticket?caller_id=1310149122&payment_method_id=pec&payment_id=1311772574&payment_method_reference_id=6003381638&hash=676a5569-4884-42d3-9e67-bfdb72450090", - "revision": "34cd6df90b0f4da2979a2c15", + "revision": "12554dcac866499b940e69e1", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -657,10 +657,10 @@ "content": { "type": 2, "value": {}, - "revision": "d4e2bc68208e479480b031be", + "revision": "0ac0423203ac47119eaf1613", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -693,10 +693,10 @@ "currency_id": "BRL", "history_id": "1677141074675" }, - "revision": "eb1091cd4b874fd1be90470b", + "revision": "e67e4635efd4497f8786797a", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -704,10 +704,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "924ec797ee0346578f90a0fc", + "revision": "376520c7d7314bdd908e0167", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -717,10 +717,10 @@ "value": { "content": "23792927400000075493380261019405215900633330" }, - "revision": "a600bbc29c5349d58c4fee0b", + "revision": "1acc1612e8574ff2aabd5836", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -732,10 +732,10 @@ "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "256fe1c8fc7f47ebaada217f", + "revision": "2655b0cdf2084bccb50e05e6", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -753,10 +753,10 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "dc2bc96ed5724beaad98ea93", + "revision": "924c6b10998f4630872d143a", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -764,10 +764,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1312722387/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1312722387&payment_method_reference_id=10194052159&hash=0fea3a36-6354-4019-aec5-950b140fc21c", - "revision": "5a751d7e5c154307bdcb308c", + "revision": "43db61d8fdc74942b519da13", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -775,10 +775,10 @@ "content": { "type": 2, "value": {}, - "revision": "e3e31ea7ef34496b942f5c2b", + "revision": "0341689d75494f969a28274f", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -811,10 +811,10 @@ "original_amount": 72, "history_id": "1677143332353" }, - "revision": "38ec6c68679d4b0981faa81b", + "revision": "6ad8d369abbb4690b2cc6b68", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -822,10 +822,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 72,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "8624d2b435634b93b205c0f5", + "revision": "32ce6dcb9bd841e699b55dbd", "revision_nr": 1, - "created": 1701809344816, - "modified": 1701809344816 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -835,10 +835,10 @@ "value": { "content": "23791927400000803493380261019405351400633330" }, - "revision": "3570810ee2ee49f6ab903078", + "revision": "9d7f601842a540499a19eacb", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -850,10 +850,10 @@ "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "34a653946ef3428ebfb42476", + "revision": "3409df1c211d4cb6ae6ed959", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -871,10 +871,10 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "915bd2bcbbe446828ce20dfb", + "revision": "e3bb08270ebe4874b0c34085", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -882,10 +882,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1311772850/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311772850&payment_method_reference_id=10194053514&hash=7f37a98d-46a5-4410-9837-bd450923e2de", - "revision": "a152f170efc04138adbec14e", + "revision": "d094b0bd685840ca825dd858", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -893,10 +893,10 @@ "content": { "type": 2, "value": {}, - "revision": "4db7e21fc38a4ee7afd58bbf", + "revision": "7f83a97954cb4d6f8f3341b4", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -929,10 +929,10 @@ "currency_id": "BRL", "history_id": "1677146361537" }, - "revision": "45e3ec30cd564a89b6d3b87e", + "revision": "7764c5741cc64417b24b4f9e", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -940,10 +940,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "ad34466848a24c9e92a8e539", + "revision": "2062ee545b994ca4a1134e8a", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -951,10 +951,10 @@ "content": { "type": 1, "value": {}, - "revision": "5765f31fa7ad4df38e1fdc84", + "revision": "1e25ae9d31804bce883b5dad", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -964,10 +964,10 @@ "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "8b9498e5126c4d2c842627c5", + "revision": "6749d0e3247e4e1cb4dfb71c", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -975,10 +975,10 @@ "content": { "type": 1, "value": {}, - "revision": "600595ca8b4b4d24b5ce3134", + "revision": "91a9bed0a7494ef693ffefcc", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -990,10 +990,10 @@ "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "c708800cf1ea42f7a5f1ebff", + "revision": "a9eaf933404444efa34320b0", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -1007,10 +1007,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "ac61b1e954554cc3aa7ab0d8", + "revision": "f0d03e651b8b4a5fabe233e1", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -1018,10 +1018,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/payments/55087284163/ticket?caller_id=1310149122&hash=d505f218-1883-4e4e-8be7-431e65cdf030", - "revision": "02fb8224df984021a3d7a2bc", + "revision": "3be21841f4fa47adb251068f", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -1029,10 +1029,10 @@ "content": { "type": 5, "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter55087284163630456C0", - "revision": "450161c77282489b8a896d93", + "revision": "6e64c7e7e76f48b38b16d661", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -1040,10 +1040,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dW27kNhAFUO2A+98ld6BgkMlAzbpF2cggyEhHH4bt1uOo/wpVvDzOP+iYBy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS3t79ce6zF+/G/8+uCf335cVU9ZPh1/3/349ZxjecbP/32cfH3aB4OWlpaWlpaWlpaWlvYl2nEt2ZY/r8YKvZ4yPnkfpywvdPXM600zg5aWlpaWlpaWlpaW9gXahXK9YH6WkktNeG7IbaVaysuxYdDS0tLS0tLS0tLS0r5TO0OXrQKKp3ndpTAs7UFaWlpaWlpaWlpaWlraUM1tysGlqBybOvFu9DLdhZaWlpaWlpaWlpaW9n3ajN/NWrbV5rV2nJ9v0HxBd8OftLS0tLS0tLS0tLS0T9fuZP/hj3+bqUJLS0tLS0tLS0tLS/uHavMxSyMuhYws6SPLOGbrWW56b6GlpaWlpaWlpaWlpX22dpYKrtxp5v7dVdscJcZ/WU5X8/233T1aWlpaWlpaWlpaWtqHaq+/LSvVZhcSuVSbZ4klWd55uV877RkeSUtLS0tLS0tLS0tL+2RtucnxCTg+e3pHADTQJY2ydPxSj/AI70JLS0tLS0tLS0tLS/sCbYkROUL6yNGVg0eoLEferq3UiU22JC0tLS0tLS0tLS0t7cu0eV/qNFI58pxmqRjbVW4zr5UrXxUtLS0tLS0tLS0tLe1btIW8iyXJaf2z1H8Z0NaJZ1dj0tLS0tLS0tLS0tLSvkI7w01SEVgTJZdUkTRmmffSbr6CvFaOlpaWlpaWlpaWlpb22dpl4DJNYpbCcG7GMcsL1ePqmZvKkpaWlpaWlpaWlpaW9iXakYvAtEyuZEvW6vB67Qhfxixzmnnp3KClpaWlpaWlpaWlpX2N9sg5+0tzbgGkXJN2W4D84u3b36f609LS0tLS0tLS0tLSPkibhiH3lWAOLakpJeXa2hTcfDpoaWlpaWlpaWlpaWlfo505aSQFPS43Tp6lz5c6iPs4lO3UJS0tLS0tLS0tLS0t7WO1bZk3Sjcuhfen3t+SBdmuritF6ritImlpaWlpaWlpaWlpaR+kLVGOZ9fOG6XubBfHlfvVkvOu0DxpaWlpaWlpaWlpaWlfoz1KJZgS/EspeeQlbItsKSXLF3R0tx+0tLS0tLS0tLS0tLQv0YYPY4uvLQJzvkjaGXvXLdwGmdDS0tLS0tLS0tLS0r5AWxfClaMlN+OY+dlnecn9ECYtLS0tLS0tLS0tLe3TtUtmZLnTcs9js2F1WQ13my3Z5prQ0tLS0tLS0tLS0tK+R5sDHJt68voGcztNmWY3P85rZze3q+FoaWlpaWlpaWlpaWmfqD1LW61NJGnDSNpqs/Da2vHbe8PR0tLS0tLS0tLS0tI+Q7s8cTlyKH9tBd6NaM6u2XeG5w5aWlpaWlpaWlpaWto3ab+wIG3pt7W85eTvV4yl2UdLS0tLS0tLS0tLS/sW7UIuq9fO/L9rFZnKxmMzdZlLzu/0ImlpaWlpaWlpaWlpaZ+hTR21Am0rxjqnWYYw6zhmu/wth6DQ0tLS0tLS0tLS0tK+QFtQI3f8yrP3k5N16VyZ4pz5MlpaWlpaWlpaWlpa2vdo27nKtsbM6f/Lp81dSm5/jvGnpaWlpaWlpaWlpaV9kXbpqKW+XOrBlXbe0rqrm2LnhmLTMqSlpaWlpaWlpaWlpX2PdsntL8XdzO28zZbZM3QBF1TztK4qpaWlpaWlpaWlpaWlfbJ2mXQso5IjLHBb4vmbYc3rmGWb6r9swT3i10JLS0tLS0tLS0tLS/ts7VGqyLJr9VnuXk5O/cAj9/TS1GV+NVpaWlpaWlpaWlpa2ldpU0ZILhG/usptaQC2+2anzQBoaWlpaWlpaWlpaWlfpj1LvGOuE0dY0Za3SOtl7c7YX64iaWlpaWlpaWlpaWlpH6UdeZBynzRSZjLH198lT13WK2hpaWlpaWlpaWlpaV+hzZR5twPbUhNuFsKdYe/rWnJuvhZaWlpaWlpaWlpaWtoXaHMof02ALKvcaubIdllb7PilBXjbrEtaWlpaWlpaWlpaWtrnadto/9KSa7t2M6ypO8KfR958rR30pKWlpaWlpaWlpaWlfbo2FYupMCwF31mMeSbzCCvfmqd9OdWflpaWlpaWlpaWlpb2Udr0nKPbFPsMbzBD+shRYiCXtl+qVO+nLmlpaWlpaWlpaWlpaZ+oXarIXbRIKgJT2biZxFzOS6Xpd7p7tLS0tLS0tLS0tLS0f7y2DD6mxx6liZemKUsYySy7st1NXebKkpaWlpaWlpaWlpaW9vHa3LA7SuZIUdQaM62Gy6c0G2rfpJTQ0tLS0tLS0tLS0tI+Tbvwypjl7R5ry5hlvvPI7cH2e7iZuqSlpaWlpaWlpaWlpX2QdnlYmoNMvb99ZH/aULudukzn3fciaWlpaWlpaWlpaWlpn6JNq9dKx2+ELuDIOZKpb7gY2z23v5jqT0tLS0tLS0tLS0tL+0RtjSpJbbq2qCxl6PKms1sDt2yKPUKcJS0tLS0tLS0tLS0t7bO16UgjlblYnLkVuFyRCsjUIyx5JbS0tLS0tLS0tLS0tC/QluTHFB7S/jnK++XtrOdd+n/eMpuWlpaWlpaWlpaWlvYV2hEKyCZupHTjUkhkbdOV7dWaXbC/UkXS0tLS0tLS0tLS0tI+UltKuo96MidFtrutfVwWnl0ftL+WlpaWlpaWlpaWlpb2jdrRzVrOLkcyLadLxeIMG2ofZZ0dLS0tLS0tLS0tLS0tbb8NW0kfqfgUaVJ4MzT7zttdsGlpaWlpaWlpaWlpaR+pzfhaRS53b1+tnHfkD5YMk2VOk5aWlpaWlpaWlpaW9iXatKxtlmT+pWxMc5ppJjPtwFbuN8NiO1paWlpaWlpaWlpa2rdo//8HLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLe1v0/4FnajhovaFiOwAAAAASUVORK5CYII=", - "revision": "f5334506c7704652b85907c5", + "revision": "74d275114199440fb88d469c", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -1051,10 +1051,10 @@ "content": { "type": 2, "value": {}, - "revision": "0fcc1b00d7aa4d66901df64f", + "revision": "4d3ce1c9138d4f638d5a9a1d", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -1087,10 +1087,10 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "16372985003e41d9a219146d", + "revision": "e02ca13d6a814bd286f1d016", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -1098,10 +1098,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "70ce2931f99e4b18b6498f6a", + "revision": "79b4ef5c73aa40299e07218b", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -1109,10 +1109,10 @@ "content": { "type": 1, "value": {}, - "revision": "a8b8c7438fa645b091235e9a", + "revision": "3b602a5249044a969709bc5b", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -1122,10 +1122,10 @@ "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "f55d0f91850840fbb1c200a3", + "revision": "aa80f86e0a7d48cd8f6a1e72", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -1133,10 +1133,10 @@ "content": { "type": 1, "value": {}, - "revision": "fd33a3361b354b5ea7628880", + "revision": "d465cb6a405a4f62a497f4f5", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -1148,10 +1148,10 @@ "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "a5cceb0cabd348478dbc5ab4", + "revision": "95c163fd12d142d0ac66f5de", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -1165,10 +1165,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "9f3724d2777c4dbfabffcbd9", + "revision": "0955f57ad917407e8dcaf3d7", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1176,10 +1176,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/payments/55094059932/ticket?caller_id=1310149122&hash=bd1d3d80-d457-4eee-a797-cd6306ae8561", - "revision": "121bb4ae4a004209909eeb7b", + "revision": "b0543fdc1c734bd1abd58eed", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -1187,10 +1187,10 @@ "content": { "type": 5, "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter550940599326304816F", - "revision": "c5b86d2965824a1da84005c9", + "revision": "aceee210016c46f8b74c7138", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -1198,10 +1198,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI6UlEQVR42u3dWw7bNhAFUO5A+9+ldqAiRR8S5w7toEXRUEcfQRLL4pH/BvMa1y90nYOWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaW9t/Xjvk6fvzf8dcHf/7tx7dut/z+z78f8Menjw+mW/6+b7r5ftp4nkFLS0tLS0tLS0tLS/sK7XEP2aZ/3o3TuxzPW6Y3eNwyvdD0zuV51/x4WlpaWlpaWlpaWlra7bUT5f6F8xlKXvnmHEU2kWoJL48Fg5aWlpaWlpaWlpaW9p3aM2TZKqB4mtedAsMpFqWlpaWlpaWlpaWlpaWN0dwiHJyCymMRJ+bSy0fecB3M0tLS0tLS0tLS0tLSvkKb8bXWsnytRpv32PF8vkHzA30q/qSlpaWlpaWlpaWlpd1dOxb9bv/hH/90pgotLS0tLS0tLS0tLe0vqs3X+UzTnXnIyDR9ZCrHbD3TQz9baGlpaWlpaWlpaWlp99aeJYIrLWxnCS+nF2qvMsZ/aqer8/2X2T1aWlpaWlpaWlpaWtpNtfe/1YgxdcOtO9rK867SYtdWe5bIkpaWlpaWlpaWlpaWdm9tecgI0WFKzl05u3d/jSOPkFwv2f7cDUdLS0tLS0tLS0tLS7ufNgeLo6umTOQEHaFYc3yeLXl+07tHS0tLS0tLS0tLS0u7lTbvpU4llUeo0zzCo5okXo4nazkmLS0tLS0tLS0tLS3te7T5nGYsyWJa//SNBGjjxKuLMWlpaWlpaWlpaWlpaV+gzWMg01DHOlFymiqSyizzLu3mJ8jBJy0tLS0tLS0tLS0t7e7aMWJQWaaPHKWuMpVjlheq191zLiJLWlpaWlpaWlpaWlraV2jXI/tzeHmW/rkESOMny6fp3OPjDgJaWlpaWlpaWlpaWtrdtCWjdnVFk8dirkmp2BxdieZ0+BkKOC9aWlpaWlpaWlpaWtrXaNv6y/G5ty2Ffu26tpoUXHx60NLS0tLS0tLS0tLSvkabor5pRdoYq3zgCDP6py63K/fKTUd2gSYtLS0tLS0tLS0tLe0LtI+KyHuY12y3LpSa+8sJwKu85BSpfll1SUtLS0tLS0tLS0tLu4t2McpxSucdJe5sm+Pa3F+aUjIZww9ES0tLS0tLS0tLS0u7tzaFjXWCfwkl0xtMx46SKFz8QClSpaWlpaWlpaWlpaWlfYE2fFh71togsKYHS6Iw7dKu13KQCS0tLS0tLS0tLS0t7Qu0YzG8/1vyF4P/c3nnVHU5Psy6pKWlpaWlpaWlpaWl3Uo7zYxMLXHlmc2gx9IN93G2ZJ5rcq2qLmlpaWlpaWlpaWlpaXfT5in8Z6m/vH/QlGOmasr7zdfz/dIatjMORqGlpaWlpaWlpaWlpd1be5XyyXYiSTuMJI+GrCHiInb8yd1wtLS0tLS0tLS0tLS0u2inE6crrVxLqcByHWGrdkr2XeHcg5aWlpaWlpaWlpaW9k3aLxrSpnxby0tFmD8VMeZRJbS0tLS0tLS0tLS0tC/QTuTSvXZ13XDnMmwci6rLHHJ+n4ukpaWlpaWlpaWlpaXdRZsyagWa0n5XniNZijBrOWbb/lZSgbS0tLS0tLS0tLS0tG/RFtSRM35TweUi43eEHGGq4jzz12hpaWlpaWlpaWlpad+jbcPGNsZMa6/Tp+kpZW5/HuNPS0tLS0tLS0tLS0v7Iu0XqbuUgyslmnW4ydT+lhOKzbm0tLS0tLS0tLS0tLTv0eaR/U2cOAWLhVdzf20TXT5jxKiUlpaWlpaWlpaWlpZ2Z+1U6VhKJY/Q4DaN55+CwKMrs0xT/acV3Ef8WWhpaWlpaWlpaWlpaffWNqFfnr1/Lm+e8oEj5/QWAeT53ZQSWlpaWlpaWlpaWlraLbVpRkieXLLucqt5vkTJI00eWwJoaWlpaWlpaWlpaWnfpK3ZuE9B5Xim6a4wquQMnXarzdhfR5G0tLS0tLS0tLS0tLRbaY9cSJm61+4Pubq92R/fJVdd1m/Q0tLS0tLS0tLS0tK+QpvGO+YF2Efun8vNbKNsVkt9dvd84NFbaGlpaWlpaWlpaWlpt9eWcSMrQGl6O0JLXE7TxYxfyiAuZ13S0tLS0tLS0tLS0tLup03TR6arTJlsxpe0rW7Tj5HqPrut2rS0tLS0tLS0tLS0tDtrp0CueM4u4LsW5ZjT88pbNad9PdWflpaWlpaWlpaWlpZ2K206p5lXcs/ppZhwXaw5QqTaJAC7qktaWlpaWlpaWlpaWtr9tCXqO8Im61UQ+MWe63TfIjRd5iJpaWlpaWlpaWlpaWm31KYJItMckrQUe1FXmYLKI8Sn9fDlVH9aWlpaWlpaWlpaWtr9tNP0kfLPKfN2lVAy/a0dOlnmn4zwQp9rRGlpaWlpaWlpaWlpabfSTjm4WmaZY8xmvVr+HY6cHkxFmCXrSEtLS0tLS0tLS0tLu7f2flhTB5krIlcj+9NC7bbqMt33ORdJS0tLS0tLS0tLS0u7izaNi7xXP05puvN5xHq+SIo7m/65Nm9IS0tLS0tLS0tLS0v7Eu14RnhNmm6R7Btd2ebIe9zSfelwWlpaWlpaWlpaWlra3bXrqK/wzm6M/5HffvHONUeYvkZLS0tLS0tLS0tLS7u7dszXsTi7DTkXf6Rxke0C7PF1do+WlpaWlpaWlpaWlnYf7bEIIEv811ZiHl0V5xXWqzVbsL+JImlpaWlpaWlpaWlpabfUppCuPbvdcz3NHCnlk/W7OYQdqykltLS0tLS0tLS0tLS079COUFzZ7FhbtNOlYDEt1B6lz46WlpaWlpaWlpaWlvbt2qOMEbkfO55nT4nCM480KbwzJPuub7Zg09LS0tLS0tLS0tLS7qfN+DqbJG2yTq9WJpKM/EG5JS14o6WlpaWlpaWlpaWl3V07coNb3qxWn17mizzKJ9MGtvK8MzTb0dLS0tLS0tLS0tLSvkX7/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817W9Rdol/1PnhcgAAAABJRU5ErkJggg==", - "revision": "e0d8a5abda534dcbba3df5a1", + "revision": "8b9a9063f8474dbba28acfe6", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -1209,10 +1209,10 @@ "content": { "type": 2, "value": {}, - "revision": "66c739de3e7e4dafb9c0e9df", + "revision": "b649d61e150b435485a54415", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -1254,10 +1254,10 @@ }, "wasDebited": true }, - "revision": "87a83d924a5b47408d762bc0", + "revision": "3e9d2846d8e9436fa7a61257", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1265,10 +1265,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "2ea90959d0c84d38ab3bbed6", + "revision": "657d4638b81c450c81d93c9f", "revision_nr": 1, - "created": 1701809344817, - "modified": 1701809344817 + "created": 1702563036307, + "modified": 1702563036307 } }, { @@ -1280,10 +1280,10 @@ "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "c9f478ce679c4ea099e64187", + "revision": "833a87453ce949e1aaa7b981", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1291,10 +1291,10 @@ "content": { "type": 1, "value": {}, - "revision": "d82b7b5fe8c64de4aba3ee6a", + "revision": "d019269ba2c44ebc8b1251ea", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1304,10 +1304,10 @@ "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "81059871c7bd4623a5e23eb2", + "revision": "431dbc6a80db415cb06cdd8d", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1315,10 +1315,10 @@ "content": { "type": 1, "value": {}, - "revision": "c873edbe18b147d9bd8599c0", + "revision": "3be88426b81e4aee9ec7fba9", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1332,10 +1332,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "99659a4d2e2d4a4ca9cd726c", + "revision": "dfc38ee7bc704dcf8dd32e13", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1343,10 +1343,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/payments/55095321700/ticket?caller_id=1310149122&hash=6c50eaaf-2a5f-4be4-a6b8-fd6340b379a5", - "revision": "cd32c4a9790d4c7ab433331e", + "revision": "dbab88204fcb4be4b41e1c58", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1354,10 +1354,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dW47cNhAFUO5A+9+ldqDAiB8t1i12T2IEsXj0YXhGI+lIfxdVLI7rDzrOQUtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v7+7VjPo5vvzt+nvjxv29XzX/36wbfzx5/3338fM6YnvH9d7c/fn1avT0tLS0tLS0tLS0tLe3ztcdrZJt+TMbpXRL019+lF0rXLhi0tLS0tLS0tLS0tLQbaCfK6wXnPUpe94dNbzWlyCaplnh5LBi0tLS0tLS0tLS0tLR7as9QZauA4mledwqGr7zpH1paWlpaWlpaWlpaWtp7m2WOg1OoPBY58bXN8tfZqRPzoqWlpaWlpaWlpaWl3V2b8anXMtX+psVxRzAeIUWmy/5JjygtLS0tLS0tLS0tLe2frl3J/sN//u1MFVpaWlpaWlpaWlpa2j9Um4/zXqY7uw7LcZ8FeYWyX/W83rRWEIOFlpaWlpaWlpaWlpb22dqzJLhykzOU+G4v1B5ljP+0nK7O919W92hpaWlpaWlpaWlpaR+qnRaupZmRU4AsafMqY0mmnDh9h7bbM3wqWlpaWlpaWlpaWlraJ2vLTUZIh6k4d5V3maBT5CwVv1QjHOFdaGlpaWlpaWlpaWlpN9C+C4tX2W1tTS5VwOZ1F1+JlpaWlpaWlpaWlpZ2K23elzq1VB6hT7O2Y7a9ljlP1s9CS0tLS0tLS0tLS0u7j7aQm9bLPK2/JssFoM2JV5cxaWlpaWlpaWlpaWlpN9DmMZC1fTJNlCwbqB3dkrgrr3xLufNN1yUtLS0tLS0tLS0tLe3TtOnIK9+O0leZ2jHLC9Xj9X7nIlnS0tLS0tLS0tLS0tJuol2N7C9r5c4yUGRKh2m4SXlabdYsS+cOWlpaWlpaWlpaWlranbQlJ14xzdVxI6u2zbScLt20vP1HexDQ0tLS0tLS0tLS0tI+R9v2X6YRJNd9bVuKfu12bbUouDh70NLS0tLS0tLS0tLSbqNNqW/aIm2MVT1whBn97R5rzUbZuRRIS0tLS0tLS0tLS0u7j/bWEfka845c4itTRUap/ZXldOOObx70YdclLS0tLS0tLS0tLS3tU7RllGNtfMxnU4dlc0WKnO+C5kVLS0tLS0tLS0tLS7uNdiw2wJ7C4pQ2U8FukpVy3vSB0jK5c/42tLS0tLS0tLS0tLS0T9aGk6PU6toQeIUeyqlQmPbSrqXF5SATWlpaWlpaWlpaWlraDbRpIdw02j8lxjqqZD34P7d31iEotLS0tLS0tLS0tLS0+2hTOS9vcf31qt3b2ZLtXBNaWlpaWlpaWlpaWtp9tHmA43l/2LgHzZHbMdO7TKNKJlmp6Z2xAEhLS0tLS0tLS0tLS/tsbT3aiSR537WjGw1ZI+IiO35xbzhaWlpaWlpaWlpaWtqnaMvKt1FiY6nzjTI4shxH2FU7Ffuu8NyDlpaWlpaWlpaWlpZ2J+0HC9KmelvLm/7464kxjyqhpaWlpaWlpaWlpaXdQDuR19P605DIHBvHousyR87Pa5G0tLS0tLS0tLS0tLRP0aaKWh4SOcrqtanXsnRdXrkds13+VkqBtLS0tLS0tLS0tLS0+2jbpslUeUsDStINxqjbbZ+ldzNdRktLS0tLS0tLS0tLu4+2jY1txkzbXqez6S5lbn8e409LS0tLS0tLS0tLS7uRto1+6xpcSptT0JyWv+WCYlMypKWlpaWlpaWlpaWl3Ufb7XAWc2Ia9587LJtey/wG56KLk5aWlpaWlpaWlpaW9unaqdOxtEoeYYHbNJ4/5cm65dr0bdIwydTtSUtLS0tLS0tLS0tL+3xtXeBWdq2+yt1Tw+V0q1IeHN390rW0tLS0tLS0tLS0tLT7adOMkNxh+XaVW3p2ftAIZwctLS0tLS0tLS0tLe2G2itU49ahso4vaXsyc9dlG01PWlpaWlpaWlpaWlravbRHbqRMi+OmVXNtq+T6XXLXZb2ClpaWlpaWlpaWlpZ2C20a77gOgaUKeOY5kmkb7elNpxVynYWWlpaWlpaWlpaWlvbx2jyUP/VaplVuUwxdLGuLnyBVEN/PuqSlpaWlpaWlpaWlpX2UNk0fmY40KTJ1TrZL3aaPkfo+u121aWlpaWlpaWlpaWlpn6ydglzxnF3gayuD9f3KWzVP+3iqPy0tLS0tLS0tLS0t7aO0R3hOM6/ktaZXGylTm2U78780XF6fdF3S0tLS0tLS0tLS0tI+UTulyPW4kRoC2ymTuRNzCpBjMf+ElpaWlpaWlpaWlpZ2H22aIJJaJcsEyJFX0uVQeYR8euVZlbS0tLS0tLS0tLS0tPtoc8Eu1e8+2IZtXd1LoyZHeKHllBJaWlpaWlpaWlpaWtqHa5MsPTZXAUdIh+eiPJiaMAONlpaWlpaWlpaWlpb28dpSybvy/tU5O16vjy3GugauHTDZbQZAS0tLS0tLS0tLS0v7ZG273q0t8ZUrrhAHr/J+LX5RN6SlpaWlpaWlpaWlpd1HW0eVpDLd648TZSzbNs+8Bq4cRxhnSUtLS0tLS0tLS0tL+2ztOvUV3tnNIWn7L888oCTVCMu8ElpaWlpaWlpaWlpa2g20bZDLs/fTj80m1rlkeC03wB4fV/doaWlpaWlpaWlpaWmfoz1CgGzGjUxVuzYJlhi6Gvz/tRRJS0tLS0tLS0tLS0v7SG2JdLfhISUONvtcp8vCs0cKqYtraWlpaWlpaWlpaWlpd9Qei17LvIFaWk6XwuIZNtQeZZ0dLS0tLS0tLS0tLS0t7TWNG3l97Lg/+yr4NNKk8M5Q7Lve7IJNS0tLS0tLS0tLS0v7UG3G1xSZJo2kVyt/N/KJ9L3ep0haWlpaWlpaWlpaWtqHaUde4JZ3Vju7ASVpcsnIO7ClLs70SFpaWlpaWlpaWlpa2i20//+DlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlva3af8CP/KbUvmRbJkAAAAASUVORK5CYII=", - "revision": "80e615fa65ce4f48b8186afc", + "revision": "51b5bfee48bd4f6e84aab10f", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1365,10 +1365,10 @@ "content": { "type": 5, "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540520.205802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter550953217006304FF73", - "revision": "861fb551a4d44a4f8d9cbad3", + "revision": "fa7e046f0a8540398048f5ea", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1376,10 +1376,10 @@ "content": { "type": 2, "value": {}, - "revision": "c9f473f572c44943aadec608", + "revision": "7e65a725b8fa424eaa443096", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1421,10 +1421,10 @@ }, "wasDebited": true }, - "revision": "4685530944b6497c9b949161", + "revision": "430b14710eab4b73add9e053", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1432,10 +1432,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "d696bcd86e8149b0b21be78b", + "revision": "e4c8e4ca40af436781cf9890", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1447,10 +1447,10 @@ "label": "Taxa de 0.99%", "amount": 3.9600000000000004 }, - "revision": "d2616ceba537488c8ca8c086", + "revision": "5f82b19cfabe48e0a22f3111", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1458,10 +1458,10 @@ "content": { "type": 1, "value": {}, - "revision": "f08a81c7d8474bf183cebc87", + "revision": "85af4902eb50457884017d29", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1471,10 +1471,10 @@ "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "85285c84eeb8459386a0f6a1", + "revision": "54f58d4baa3d41fe8fd0d94c", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1482,10 +1482,10 @@ "content": { "type": 1, "value": {}, - "revision": "f5fde3f172504b758ffcc908", + "revision": "148cc9734af4441b848a4650", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1499,10 +1499,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "392c5ad3acd64ba29414b1b9", + "revision": "238cb202890f4ebdb188f2f7", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1510,10 +1510,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/payments/55103336998/ticket?caller_id=1310149122&hash=9ef20da2-8e33-4bd3-baa0-734357868736", - "revision": "cacda10f3703433ead634a64", + "revision": "ae4ad19cdff945f991700229", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1521,10 +1521,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2ElEQVR42u3dW47jNhAFUO6A+9+ldqBgkJnYZl1SBjIIMuTxR6PdtqTD/ivUq91/0OtqtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/X9vGV//xt/7PB79++3HV3z9eH7xu8PODX9e+vvf+jF8fvL78flll0NLS0tLS0tLS0tLSHqLt7yHb8DY/7H5/zvtv6ysmn74fMjFoaWlpaWlpaWlpaWkP0A4B5HDBEEpmxfUZWdZnvwLE17WLwJWWlpaWlpaWlpaWlvZs7fV5k/dLWwkbP9J+JQH4kg2nTz9oaWlpaWlpaWlpaWlpQ5llSrrl+K991lAO2hYO1N7PQktLS0tLS0tLS0tLe6x2ik8fvJ6diiZLD1zK6fWv8oG0tLS0tLS0tLS0tLSHaKdTSv7bH/92pgotLS0tLS0tLS0tLe0fqs2vOtSxjCVJH9yha27aDVeThzMLLS0tLS0tLS0tLS3t3tqrRHDlduvmuHtRdZnwOY04TfbR0tLS0tLS0tLS0tLurn09NvGGtrYrvM0tbLXWMpVeTpKMDzEvLS0tLS0tLS0tLS3tVtorzNmvwV0ZX3LPVrOltrbVM57uQktLS0tLS0tLS0tLu7v2fh8tMtwuJeLeE3YtTylJNZlpXknau/ZcI0pLS0tLS0tLS0tLS7uZ9grQaeatf6bu7hJormPM9fK14X60tLS0tLS0tLS0tLRHaHMP3HCTSa1lSQ+miPFezPdfMG5aWlpaWlpaWlpaWtpDtENtZIoEp8Mfywa2XqLDLJv02eUIlJaWlpaWlpaWlpaWdm/t8LChmjLtuU6zIN9vdX2m/eqrxJ1D8nBRdUlLS0tLS0tLS0tLS7ufNi9Lu/Pw/pLdG1ripn+rTyvxaRpuQktLS0tLS0tLS0tLe4o2vc0tcauSynLcVuLElFDMVZw3LS0tLS0tLS0tLS3tIdpSNNmWI0juvNi6TCm5QhR5LQ755RZsWlpaWlpaWlpaWlraHbXDQMi67Lpk6Ca8HCLeJZOXp/qnVCAtLS0tLS0tLS0tLe0B2pK/a8s914/1lyWdd5W0X8kW9och/7S0tLS0tLS0tLS0tDtrU0Naejtk6PJEkskVKU5cBJr9IealpaWlpaWlpaWlpaXdTJsok2H7aTRkDkj7YoHa8A9aCGhpaWlpaWlpaWlpaQ/Qln63K6yuXg96bGFmZF/sC0jZwjTIhJaWlpaWlpaWlpaW9iRtK1McB22unOwhsuzLESRXeFAagkJLS0tLS0tLS0tLS3uKdnr3EiL2vIutPHaV8UtDUPLBaWlpaWlpaWlpaWlpT9EOdZWlK22IMXvIy/Ulqi1mS+aqy05LS0tLS0tLS0tLS3uWdrhJieHiMMnhVKUws4V/QfuccHKXSf/P29ZoaWlpaWlpaWlpaWn30w7TQhZTSuoGttIIt6JMg89ydaelpaWlpaWlpaWlpT1JO5Dz2z4rmqwpuTybpIaXKWLMo0poaWlpaWlpaWlpaWmP0qaqy4JaD5gcAs3a5ZZi1rQKm5aWlpaWlpaWlpaW9ghtHhI52VC9GDWZIsGhG+4qCcDF8uyblpaWlpaWlpaWlpb2QO1jXDeUaE7PXFazTSLQp1iUlpaWlpaWlpaWlpb2AG1qXCt3mmT8Sudbmgo5rMdueeb/4kVLS0tLS0tLS0tLS7u3drGcuoXt1n3WK9cKqsw6STWerWT8HmJeWlpaWlpaWlpaWlra/bRDHeT9HifmU915gv9wvkVl55UnSqaj0dLS0tLS0tLS0tLS7q4t6bc0oGQSba4DyHS+ISAtGwFSApCWlpaWlpaWlpaWlnZ37b2cuF9vkrJ7QxA4fGWaLUwFnOGmtLS0tLS0tLS0tLS0O2un4WDebl3zcnn6f3seF1lLOWfL3GhpaWlpaWlpaWlpaXfWTm9SEnF3ifoWW9laGA35bdVlodHS0tLS0tLS0tLS0u6sLWFjzxP3Q5Nay1P479xil+aaLKo4Oy0tLS0tLS0tLS0t7SHaVPM4TeKVbFx9pfOVkHMVwj5MKaGlpaWlpaWlpaWlpd1Pe4UCySs0s/XcNVeCxfaZ3etZlr6XL6OlpaWlpaWlpaWlpT1AW1rdrtL5thj+OGy87uHZqacuhbAXLS0tLS0tLS0tLS3tmdoSJ/Ywxr9WWE6XYq+P+xSVdlpaWlpaWlpaWlpa2rO0H+T3O/VFbWTpaFtfe+cvh0mRX9SI0tLS0tLS0tLS0tLS7qi9P1vdegjzpum3aWFmSh5OvpdXZtPS0tLS0tLS0tLS0h6gnXa0DQ9bJ/FKSeU1m1KyrrrMkSUtLS0tLS0tLS0tLe3O2oQqabrJdrRy0iu0v9XzPTXMfVV1SUtLS0tLS0tLS0tLu6l2msQrPXC9RIepTjPv0r7D8uzpi5aWlpaWlpaWlpaW9gBtGe9Yo770nJLOu0v+Ln2lBK49JBQ7LS0tLS0tLS0tLS3tIdo8LrKWQA7GlJybVk6WqZCTbOE33XC0tLS0tLS0tLS0tLSbalv8Wu1Zq2fJYei0Q+7OQ1BywSUtLS0tLS0tLS0tLe0B2vQanrg4Ri2pLI1w07RfD9Fma+2bGlFaWlpaWlpaWlpaWtqNtDmQS7/12aLsO28ESEHq+5cnd/4yu0dLS0tLS0tLS0tLS7uPtra6Tfvi3mPHNBryzk8sg0yu3Pn2TRRJS0tLS0tLS0tLS0u7pTaFdDkITAP9rxKJpuEmJYPYn0JYWlpaWlpaWlpaWlra07U1bEwdcjkvV68oe7NT3PlVdo+WlpaWlpaWlpaWlvYobR3ePx01mf82OeS02W65BZuWlpaWlpaWlpaWlnZTbcH3PKg/xX8lxVfn9peJJCkWnVRx0tLS0tLS0tLS0tLS7q+thY9DAFnuNJlSkkLTcshpGHqFM9PS0tLS0tLS0tLS0h6g/f+/aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/m/Yv5+S5wPHlkOQAAAAASUVORK5CYII=", - "revision": "1f5b97f0870643cd9f454d9c", + "revision": "131d07e17ba3417db2a60687", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1532,10 +1532,10 @@ "content": { "type": 5, "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d127175204000053039865406403.965802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter551033369986304804E", - "revision": "c6a7dfcb35b644d3821901cf", + "revision": "eb8eb01094504556938486c7", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1543,10 +1543,10 @@ "content": { "type": 2, "value": {}, - "revision": "31ff1aeb626a4b82b2c1e3dc", + "revision": "e1d9df2fe70f4189a8eb48f6", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1579,10 +1579,10 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "6400fa458b4946b589de0c1a", + "revision": "f8c5e177972d452a97f739a9", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1590,10 +1590,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "d9667321404b4a72a3152adf", + "revision": "852e92166d484e67a0412ad4", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1605,10 +1605,10 @@ "label": "Taxa de 0.99%", "amount": 9.9 }, - "revision": "de15c5b6ed4145e6aa0fed83", + "revision": "60d0c19c33be410496ab4d3e", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1616,10 +1616,10 @@ "content": { "type": 1, "value": {}, - "revision": "ab0de71dc71649238d4cde5d", + "revision": "089d5c0a165c4787bd82edc3", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1629,10 +1629,10 @@ "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "b5cd56672f1a4ea087788dfd", + "revision": "49a8ce48a6de415f8fbbba0f", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1640,10 +1640,10 @@ "content": { "type": 1, "value": {}, - "revision": "ad87062c257c4083a3ffaae0", + "revision": "7b87190314eb4806a9144559", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1657,10 +1657,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "711a49f2d9b04827ab0799c9", + "revision": "ca9c67a716264c9094552f1f", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1668,10 +1668,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/payments/55096573577/ticket?caller_id=1310149122&hash=90c37e8f-66e2-44f0-8c67-647e232f6bda", - "revision": "4009edb0b9cf4f3da39b567a", + "revision": "de269504ffa549148dd4e4d1", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1679,10 +1679,10 @@ "content": { "type": 5, "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d1271752040000530398654071009.905802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter5509657357763045E7D", - "revision": "0f746a518e46460e95735338", + "revision": "f03a22aa1ade4c76a9b893a3", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1690,10 +1690,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIy0lEQVR42u3dW47jNhAFUO5A+9+ldqBgkMdYrFu0ggRBRjz+MNwtSzry30UVi+P6hV7noKWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaX997Vjfh0//nf8deDPTz/OGj8/TRf44+jxeZfpQLnU8TtlfN7txqClpaWlpaWlpaWlpd1EO93iKDFuhNcn+ZyvfrvjmZ+vaFsGLS0tLS0tLS0tLS3tBtopQE4npK/8Qb7uxp+86/PTlBM/D7TBlZaWlpaWlpaWlpaWdm/tVHS7RcTQFplKcnNlsNwyvdHS0tLS0tLS0tLS0tLGiHiFZJnyX1P7m5owP59vhKBJS0tLS0tLS0tLS0u7n3aBn5bETaedy6LgKKhy4Pje/ElLS0tLS0tLS0tLS/t2bTul5L99+6czVWhpaWlpaWlpaWlpaX9RbX6dechIeapbce6ziNcup6ur4b5baGlpaWlpaWlpaWlp3609u9GQ6cCtsLd+jHKp1cz/6St9iqSlpaWlpaWlpaWlpX2bdrpmu1wtxcv2MfIDPVtnVyah0NLS0tLS0tLS0tLSbqD9vOPIC9zKLMjbpth5oH86cHWbbN9+jO89orS0tLS0tLS0tLS0tO/RphEkqaaXPrVbZh+lfpe6LtO+a19SJC0tLS0tLS0tLS0t7cu1paaX2iKnrFf/nAp7U3mwjau5RZOWlpaWlpaWlpaWlvbd2nKlqUuylt/C5UY6d51Kv4XPi5aWlpaWlpaWlpaWdhPtVFabCmwlLI6QDpNxasycZEco56Vb0tLS0tLS0tLS0tLSbqDNFz5zw+V0NFUG21kni+GUR6gqXrS0tLS0tLS0tLS0tJto00bUZQlbbalMS+LKWMlcqxupnJcbOGlpaWlpaWlpaWlpabfQNtNHEjQHvpaXNgg4855tJYFetLS0tLS0tLS0tLS022iPsCBtGv44RtyfrcjSmrrRjew/l8W+g5aWlpaWlpaWlpaWdhtt0yo5DSNpJ/gvlrqNbhfsZq7Jk65LWlpaWlpaWlpaWlrat2nTfUrGTGNJmjmSZeVbKiMe4c+65zYtLS0tLS0tLS0tLe0m2tWMx6nsl0dIpqGT4/4YjTHvIXCsUiQtLS0tLS0tLS0tLe3btNNquPDdftRk6qFM6+emq0wFwJQ2H04poaWlpaWlpaWlpaWlfYF2mj4yVe0WK+S+7oJdfof0Y0zG712XtLS0tLS0tLS0tLS0L9WOMOOxBsM8VjKR0+5tzbjI0nU5+umRtLS0tLS0tLS0tLS079MuAuTRLWE7w9z+o8TB1FeZF9Fd3bI7WlpaWlpaWlpaWlraDbSpLjedP5Xp2iklKVmW57u6qf5T2qSlpaWlpaWlpaWlpd1He93LapPiDLHxKrzUmFmGljTJMrVyPpl1SUtLS0tLS0tLS0tL+w7tZw/luLdZtrc98qSRcoFUD7zCGP/mXFpaWlpaWlpaWlpa2i207fltWMxr2+q5i6n+TWLMo0poaWlpaWlpaWlpaWm30ibZt0VvdZDJYvTJFRJo+2PQ0tLS0tLS0tLS0tJuoF3kujpfJCS8kZLg8+3VUgKlpaWlpaWlpaWlpaXdT/stE14hVF6LzslUqys/wbjvHDA1f9LS0tLS0tLS0tLS0u6i/Uxz436lq6yVa8eXlH3XGk+e279+0dLS0tLS0tLS0tLSvl17ho7II5BH2Rk7nVGSYJ08mQej1B+IlpaWlpaWlpaWlpZ2C+1Uzitj/Nedk81ebFN3Zn6Cupd23iOblpaWlpaWlpaWlpb23dqyB/XtmikYFsqDPs2rjCBJ4yfTVWhpaWlpaWlpaWlpad+vXbQ7jgcZMzVcliR4dRW/K2+eTUtLS0tLS0tLS0tLu5N2de+2LTJFztTKWRbCnSGVHuG+tLS0tLS0tLS0tLS0u2gnSm6GrI+WNrGeLpqeOf1A6Za0tLS0tLS0tLS0tLQ7aWt8+0yMqxVy5Su1kle2UrvyJtvpDFpaWlpaWlpaWlpa2u20tThXHqNds3aVQSZ5XGRzt+VO27S0tLS0tLS0tLS0tG/WrmtwaTVcHvc/PWTahq0m1RJXc7alpaWlpaWlpaWlpaV9s7Ydtl+S4LGMg+3gkStvBjAJcsmQlpaWlpaWlpaWlpZ2A20pv4379JErZMc6LnIa2Z8y5nrIfzmXlpaWlpaWlpaWlpZ2F23Odc1ytdIleeU7truypQElbY6lpaWlpaWlpaWlpaXdRHssd7Ie93mOaYFbSqAjLHBLhcJ1xqSlpaWlpaWlpaWlpd1A2zZNpkyYym+fDzTKcJP0aE8XzNHS0tLS0tLS0tLS0m6mXUwpScNIUsHuXPRurguA7Y9BS0tLS0tLS0tLS0u7mTYly1Lxm27WNmbeKoNtn2aOkhctLS0tLS0tLS0tLe1O2hIWV/uk5S9PyfIqtb/pbQqay8V2tLS0tLS0tLS0tLS0b9YWzxnqbefzHdjaLs626zL3adLS0tLS0tLS0tLS0m6mHSUE5iVsqSh4hGQ5XfnMe6yluSZhcRwtLS0tLS0tLS0tLe2btelVxpJMc/unhWvNnymVPtif7UmPKC0tLS0tLS0tLS0t7Yu06yA3/a+81dPSWy72pdPG4+oeLS0tLS0tLS0tLS3te7THIkCWjdHOsGZtSoLtp3N5lYcpkpaWlpaWlpaWlpaW9pXaxCsZs50eeYU8OeZJIyONi8wRdqymlNDS0tLS0tLS0tLS0u6hPboxkNdiouSUGNuttVN2/DvVPVpaWlpaWlpaWlpa2q20Zxfurhwqy6iSYzHpf7rHdD1aWlpaWlpaWlpaWtp9tO29fxbn1rP3015suZJXF8fl0Se0tLS0tLS0tLS0tLT7aGvjY7lIPZBkJQmObqD/EaZHTttj09LS0tLS0tLS0tLS7qL9/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817W9ibLveeVntBwAAAABJRU5ErkJggg==", - "revision": "db95b347b60c4767804366c8", + "revision": "64c9d3380f874522ad7043e1", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1701,10 +1701,10 @@ "content": { "type": 2, "value": {}, - "revision": "9311ff9ebafb4d6f9e50118b", + "revision": "a5f344d224784103a58d621c", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1737,10 +1737,10 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "06ff49f8b58640a4985bd1fd", + "revision": "a8acf026fb68443486285c01", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1748,10 +1748,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "38e1000658dc430faad43474", + "revision": "0de546f395d644bf9766445f", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1759,10 +1759,10 @@ "content": { "type": 1, "value": {}, - "revision": "d42c395dc73c4f41b617b199", + "revision": "305b6b2fbf474eebb1f8bc9c", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1772,10 +1772,10 @@ "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "6e1eed02fc454dc2ac1bcf37", + "revision": "bd894df3b5654f318fbfd08f", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1783,10 +1783,10 @@ "content": { "type": 1, "value": {}, - "revision": "44cef2ca1b384500bda27dbf", + "revision": "0ac4a8e3d93b4bdc848373ea", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1798,10 +1798,10 @@ "label": "Taxa de 0.99%", "amount": 0.34650000000000003 }, - "revision": "2e3e000c46464fabb58cd103", + "revision": "5a2c02ff947d479e9571de1b", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1815,10 +1815,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "399eb59e53bc4277bea0d174", + "revision": "cc6f1bbed2c44e058616e547", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1826,10 +1826,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/payments/55102778083/ticket?caller_id=1310149122&hash=732fd12f-b6ab-488b-bf46-c6e842577653", - "revision": "0bda13ae636e48f6a8348c21", + "revision": "afa264fcac154ad5ac62bf5f", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1837,10 +1837,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIyElEQVR42u3dW47jNhAFUO5A+9+ldqAgyMti3aKVTBBkxKOPRnfblg79V6jXuH6i6xy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tP++dszX8ev/jj9f+OO3Xz/1cU03+P3V47e7jz+fM6Zn/P6/25s/n3Zj0NLS0tLS0tLS0tLSbqI9PkO26c/PuzdnSdC/3pcOlD67YNDS0tLS0tLS0tLS0m6gnSjTBz5DySkmvJ2qRJFNpFrCy2PBoKWlpaWlpaWlpaWl3VPbZPJKTm/ypOPeIsspxiw/aGlpaWlpaWlpaWlpae9lluk5kzYVTT4vvUx3oaWlpaWlpaWlpaWl3U+b8bVDrpzgLN1rn+9r++em0svrh2pEaWlpaWlpaWlpaWlpf3ZtO6Xkv/3xozNVaGlpaWlpaWlpaWlpf1Jtvs6SiJsSdmWsZJv2q55804WFlpaWlpaWlpaWlpb23dqzRHA5iXfcp0LeDtReZYz/1E53hhmUi+weLS0tLS0tLS0tLS3tS7Wfv02damc3JHKKNq8wVvIskyJTi91UiRkeSUtLS0tLS0tLS0tL+2ZtuUltf8vJuZZ3lbgzrWH7fNDIQ0toaWlpaWlpaWlpaWn30ZYxIhP5KtvWplhvel+qyUzHbWdL0tLS0tLS0tLS0tLSbqbN+DOUVKYCydF5UqvbmXvl0ldFS0tLS0tLS0tLS0u7hfYzCFwNIynT+o/uaC2gjROvLsakpaWlpaWlpaWlpaXdQJtniaTU3bkIEdMMk1KJOb25fgW5V46WlpaWlpaWlpaWlvbd2nTlzrdpNklTjrnIDI7Q73YuIktaWlpaWlpaWlpaWtottFPn23ST3L12lv65BPhsibvuJ62PTOsDaGlpaWlpaWlpaWlpt9C2c/ZTArDUWrZxZ7OLLYSI9fSPdhDQ0tLS0tLS0tLS0tK+R9vKUnh5lYAvT/A/QxSZhpu0rx60tLS0tLS0tLS0tLTbaFPU16xIS3HndL7pQPku02bs6VbLGlFaWlpaWlpaWlpaWtqXaq8SDrbZuMk4UVLnW5aliDF/N7S0tLS0tLS0tLS0tG/Wrkc5lldrFjA1x5X71TixjVRL8SctLS0tLS0tLS0tLe3btWn44/Vl/1kdCJmG/FdyejUPMjloaWlpaWlpaWlpaWk30YYX458PgsB0lnUsWuLOR1WXtLS0tLS0tLS0tLS0b9SOsvCsRIptM1uaD3l2z66vliLM8WXWJS0tLS0tLS0tLS0t7au0pbftLCm+9L40OLJ0w32dLVnC0PNLFElLS0tLS0tLS0tLS/s+bZ7CP3lGSPGdXa3lkePT6X2L4POgpaWlpaWlpaWlpaXdS5tKII9yllRhmTra2tmS32LHf7IbjpaWlpaWlpaWlpaW9gXa6Yl5+kgTaKZ5JW3ImZN96/JOWlpaWlpaWlpaWlraDbQPGtK+3X3k+O/vR4x5VAktLS0tLS0tLS0tLe0G2gnVdq+FishV2DgWVZc55Hyei6SlpaWlpaWlpaWlpX2LNmXUvg2JbIf8X+GFWo7Ztr+VVCAtLS0tLS0tLS0tLe0u2pK1OxY5vZwATJWT9S3rjQB5KxstLS0tLS0tLS0tLe27tVOaLp/gyJNLUhRZPNcdcI46ujJZaGlpaWlpaWlpaWlpt9KW2SRNTu9btJkWaqfp/2kwSh1JSUtLS0tLS0tLS0tLu4W2PGcK7s6c7GuXpaXwsqCmE9TfaGlpaWlpaWlpaWlp99GmJF472TGP52+KJj/LLJvT5xa7g5aWlpaWlpaWlpaWdidtieueBZDtUuwcXtasXTpzmvlPS0tLS0tLS0tLS0v7fu0oK67bzWqpa650ud1KL/OfKYBMN6WlpaWlpaWlpaWlpd1H2+TvUqBZknh5RVodDTm+3flxFElLS0tLS0tLS0tLS/sq7dGl2q77s+vVlkquz5KXbNdP0NLS0tLS0tLS0tLSbqFN4x1LSJfa1Uboi5vWY59lj1up9ryVd3YWWlpaWlpaWlpaWlra12uncSMpEkxVlylNt2xrixm/3Bx30NLS0tLS0tLS0tLS7qTNhY816is5uBr/LSZKjvtZat3nk6n+tLS0tLS0tLS0tLS0b9Oup5SkWZBTWWT5RD3fFCe2p38y1Z+WlpaWlpaWlpaWlvZ92qP0u6WBkCUfWJ+TyizTzP88avJ6UnVJS0tLS0tLS0tLS0v7Pm0pvTzCArUmCExpupwAHGU/W6rxLN8XLS0tLS0tLS0tLS3tFto6GrItlWyXWOfd12dorGurLuv2bVpaWlpaWlpaWlpa2i20+WFpQ/W5nE3yILuXRk22M1FoaWlpaWlpaWlpaWn30Y7FVMg0N+T5erWpz269ALuJaGlpaWlpaWlpaWlpad+uLVHfCLymra0d2V8Wap+LqsuyeHuZi6SlpaWlpaWlpaWlpX2bNnWvfX5qFFSKGPN8kRqGpqrLdcxKS0tLS0tLS0tLS0u7iXbc71lrKMtjp2TfWJRtprOkas/yFdDS0tLS0tLS0tLS0m6gTVdZfTbK2P1cQ1lPn/N8V+iku8oISVpaWlpaWlpaWlpa2i20Y76OLjC8FqP4203WeVxkuwB7PM7u0dLS0tLS0tLS0tLSvkd7hAAyoc571m6UzrdcxZlu2kzwfxJF0tLS0tLS0tLS0tLSvlKbQ7pjMRUyBZopIA3P7iPV6ZG0tLS0tLS0tLS0tLR7a8vwkDOvwn7QTlfqNJvY8WF2j5aWlpaWlpaWlpaWdg/tZ+pu5JH9efDIdW+TG7lhbrpfasWjpaWlpaWlpaWlpaXdR7uuuiy3G2FtWjNCMnXcrZvjfrQbjpaWlpaWlpaWlpaW9qfTplLJpvNtSsTl+SI3fNrAttjUlhe80dLS0tLS0tLS0tLSvln7/79oaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaf817S/WesxQ9BOm/QAAAABJRU5ErkJggg==", - "revision": "5d4ee38177c943e8a487352b", + "revision": "038b81078c28489ba693b3cc", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1848,10 +1848,10 @@ "content": { "type": 5, "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d12717520400005303986540535.355802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter55102778083630472DE", - "revision": "27014fe7f775413184fec768", + "revision": "dc77e304ea0e4f288c728646", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1859,10 +1859,10 @@ "content": { "type": 2, "value": {}, - "revision": "f9b9a421f74c480982d10893", + "revision": "91d5f6272ac94292b153ac1d", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1895,10 +1895,10 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "7d49aa937f9a4d83bbe9deea", + "revision": "e7439a99a9fe41f885998aaa", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1906,10 +1906,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 35,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "13c2c4ff9226404c91b686c1", + "revision": "6bb265f581524cf9bab1775d", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1919,10 +1919,10 @@ "value": { "costs": {} }, - "revision": "62065576cb68420b9b5e0742", + "revision": "7eab426630ba4b36b8a622e1", "revision_nr": 1, - "created": 1701809344819, - "modified": 1701809344819 + "created": 1702563036309, + "modified": 1702563036309 } }, { @@ -1954,10 +1954,10 @@ "currency_id": "BRL", "payment_method": "whatsapp" }, - "revision": "58f4a41485f04f52b1165544", + "revision": "90e13feefa884c50a3953503", "revision_nr": 1, - "created": 1701809344819, - "modified": 1701809344819 + "created": 1702563036309, + "modified": 1702563036309 } }, { @@ -1965,10 +1965,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 234,59 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "d8e90051485d4d63871af4ec", + "revision": "05393988e08d4dccb5a62663", "revision_nr": 1, - "created": 1701809344818, - "modified": 1701809344818 + "created": 1702563036308, + "modified": 1702563036308 } }, { @@ -1978,10 +1978,10 @@ "value": { "costs": {} }, - "revision": "3919f6972d114f7f9cb231e0", + "revision": "39db5f812a6045b7b8872dfc", "revision_nr": 1, - "created": 1701809344819, - "modified": 1701809344819 + "created": 1702563036309, + "modified": 1702563036309 } }, { @@ -2024,10 +2024,10 @@ "payment_method_id": "whatsapp", "payment_method": "whatsapp" }, - "revision": "f71b2d8c732740d2a877a948", + "revision": "4f9238a7271d478c9d379f96", "revision_nr": 1, - "created": 1701809344819, - "modified": 1701809344819 + "created": 1702563036309, + "modified": 1702563036309 } }, { @@ -2035,10 +2035,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 35,99 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "81699a2d1bde4eb18fc54f02", + "revision": "bbe106150c144c5bb0e86243", "revision_nr": 1, - "created": 1701809344819, - "modified": 1701809344819 + "created": 1702563036309, + "modified": 1702563036309 } }, { @@ -2048,10 +2048,10 @@ "value": { "costs": {} }, - "revision": "928546b8884843b8b061fc68", + "revision": "7c8b5a9085144300abf86d0e", "revision_nr": 1, - "created": 1701809344819, - "modified": 1701809344819 + "created": 1702563036309, + "modified": 1702563036309 } }, { @@ -2094,10 +2094,10 @@ "payment_method_id": "whatsapp", "payment_method": "whatsapp" }, - "revision": "f8189a66e3cc41f48342fba6", + "revision": "9b42ad46423347f68915604e", "revision_nr": 1, - "created": 1701809344819, - "modified": 1701809344819 + "created": 1702563036309, + "modified": 1702563036309 } }, { @@ -2105,10 +2105,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 450,32 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "bbc64d4c77094d58b015d77e", + "revision": "d08045806f33447b9e18de02", "revision_nr": 1, - "created": 1701809344819, - "modified": 1701809344819 + "created": 1702563036309, + "modified": 1702563036309 } }, { @@ -2118,10 +2118,10 @@ "value": { "costs": {} }, - "revision": "ad601e63e0cb4bdf95f4e150", + "revision": "43abd8c6de734360b8a8aec5", "revision_nr": 1, - "created": 1701809344819, - "modified": 1701809344819 + "created": 1702563036310, + "modified": 1702563036310 } }, { @@ -2158,10 +2158,10 @@ }, "money_release_status": "rejected" }, - "revision": "69b6edf48bc94b1db2f55d5d", + "revision": "60a41789e4b944d3a4547679", "revision_nr": 1, - "created": 1701809344819, - "modified": 1701809344819 + "created": 1702563036310, + "modified": 1702563036310 } }, { @@ -2169,10 +2169,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 600,20 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "1cf796b96a03406985991879", + "revision": "4782b92ed9b04793ac4c2e9d", "revision_nr": 1, - "created": 1701809344819, - "modified": 1701809344819 + "created": 1702563036310, + "modified": 1702563036310 } }, { @@ -2182,10 +2182,10 @@ "value": { "costs": {} }, - "revision": "f188ab6cdf0b4ad3a55ac3cb", + "revision": "f3ae6090532745639fd97bc5", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036310, + "modified": 1702563036310 } }, { @@ -2222,10 +2222,10 @@ }, "money_release_status": "in_process" }, - "revision": "00410a0a39c74172aea21082", + "revision": "5140354fd9d04c51b8a289e8", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036310, + "modified": 1702563036310 } }, { @@ -2233,10 +2233,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 602,99 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "6e5637eb14f94cbf905ddb6a", + "revision": "6122da348bf64b989e1dbbfc", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036310, + "modified": 1702563036310 } }, { @@ -2246,10 +2246,10 @@ "value": { "costs": {} }, - "revision": "a1896735b5404873af043cfe", + "revision": "9dd0aae0e4364bcebacbcf30", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036310, + "modified": 1702563036310 } }, { @@ -2286,10 +2286,10 @@ }, "money_release_status": "cancelled" }, - "revision": "8ec755ab76814acdbfb24269", + "revision": "122f0e858cbd4f628ac045b0", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2297,10 +2297,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 34,89 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "bee277e5ca0744c1a6c9f93f", + "revision": "d8e03098cf3345b4b863b116", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036310, + "modified": 1702563036310 } }, { @@ -2310,10 +2310,10 @@ "value": { "costs": {} }, - "revision": "0b8a43f2d6b0429aaf6f0a1c", + "revision": "1c427f412d854c10a06b9729", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2355,10 +2355,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "30be69f443ff479eae82d3cd", + "revision": "ef653fac6f874b3d85558f4a", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2366,10 +2366,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 43,78 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "955833f4889d415297bc4e61", + "revision": "ca6c25a359194e9682416931", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2379,10 +2379,10 @@ "value": { "costs": {} }, - "revision": "e17f5111faf3425ba0c4e32c", + "revision": "4c883e7085be43f8a5f2aeef", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2424,10 +2424,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b5161c15b69b420e91af00ae", + "revision": "ca6b067c7ae34a3b88dffa94", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2435,10 +2435,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 29,91 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "6209ea0862994dbb89053c74", + "revision": "f434720edcc546ce978b9141", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2448,10 +2448,10 @@ "value": { "costs": {} }, - "revision": "723c15847711444eab9b7e19", + "revision": "d41ffe8526e94a2cad5c3cb2", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2493,10 +2493,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "dce4b5d096704000ba5aef37", + "revision": "561f59fb6930441d9704d552", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2504,10 +2504,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "c43ec6d8471745ef8fb0c017", + "revision": "cb8436135a644289af7757f1", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2517,10 +2517,10 @@ "value": { "costs": {} }, - "revision": "a8dc0f7f739d40bb9748e785", + "revision": "192861340a054bc8a199f815", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2557,10 +2557,10 @@ }, "money_release_status": "rejected" }, - "revision": "9468c69660b846e99afacb96", + "revision": "c0e3f696dfca49cabe3ad482", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2568,10 +2568,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "fba8bf8ab77a419e9fbe605d", + "revision": "3e34fce96dca4f23b4f7a761", "revision_nr": 1, - "created": 1701809344820, - "modified": 1701809344820 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2591,10 +2591,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "b4663f5c17f9498aa481eaae", + "revision": "dd7e583c17fd4158b3013555", "revision_nr": 1, - "created": 1701809344821, - "modified": 1701809344821 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2630,10 +2630,10 @@ "history_id": 1678033196645, "description": "Compra de 141586 IVIP por 20 BRL" }, - "revision": "34e4f5e081ca4f5d9325acae", + "revision": "1f9aa77c1e27430d937ca00f", "revision_nr": 1, - "created": 1701809344821, - "modified": 1701809344821 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2653,10 +2653,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "5c4c95c9a7ef400d8f470327", + "revision": "d80c4fe6f08c4e28b78e7091", "revision_nr": 1, - "created": 1701809344821, - "modified": 1701809344821 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2692,10 +2692,10 @@ "history_id": 1678033334564, "description": "Compra de 269014 IVIP por 38 BRL" }, - "revision": "1556229774404d8ba89b7864", + "revision": "0803d5da8a364e8ba50b58cb", "revision_nr": 1, - "created": 1701809344821, - "modified": 1701809344821 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2715,10 +2715,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "4e200120c0374385a03d50c3", + "revision": "2f80ef3b067a46ac8ab09186", "revision_nr": 1, - "created": 1701809344821, - "modified": 1701809344821 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2754,10 +2754,10 @@ "history_id": 1678033849155, "description": "Compra de 297331 IVIP por 42 BRL" }, - "revision": "4188de850355433eb358e71f", + "revision": "0590afd289344fab9a6d2940", "revision_nr": 1, - "created": 1701809344821, - "modified": 1701809344821 + "created": 1702563036311, + "modified": 1702563036311 } }, { @@ -2777,10 +2777,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "442ae9695d194896850a280b", + "revision": "ac037ae9f97642d9a55b30df", "revision_nr": 1, - "created": 1701809344822, - "modified": 1701809344822 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -2816,10 +2816,10 @@ "history_id": 1678034274118, "description": "Compra de 141660 IVIP por 20 BRL" }, - "revision": "367b53f09909479293f6387e", + "revision": "51ebcf75c6a54718a324a01d", "revision_nr": 1, - "created": 1701809344822, - "modified": 1701809344822 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -2839,10 +2839,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "08ca7c8d6f6b4175a3a45e47", + "revision": "8717b44908f64cb7b323af2e", "revision_nr": 1, - "created": 1701809344822, - "modified": 1701809344822 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -2878,10 +2878,10 @@ "history_id": 1678034346295, "description": "Compra de 141586 IVIP por 20 BRL" }, - "revision": "c14bfdab69af4ded821dda05", + "revision": "c01b66b59ebc41f691cfae54", "revision_nr": 1, - "created": 1701809344822, - "modified": 1701809344822 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -2901,10 +2901,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "d76ba717a23349f7b57b911e", + "revision": "20827e9c1dad4cdb91c8ab49", "revision_nr": 1, - "created": 1701809344822, - "modified": 1701809344822 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -2940,10 +2940,10 @@ "history_id": 1678034463284, "description": "Compra de 424981 IVIP por 60 BRL" }, - "revision": "8800cd2441854a3683036ba6", + "revision": "b4638a6d7b39426ca6a0b9d4", "revision_nr": 1, - "created": 1701809344822, - "modified": 1701809344822 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -2963,10 +2963,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "80d4399fa8064f608d002287", + "revision": "a1bd451b66ad480a9b1270a1", "revision_nr": 1, - "created": 1701809344822, - "modified": 1701809344822 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3002,10 +3002,10 @@ "history_id": 1678034665927, "description": "Compra de 141586 IVIP por 20 BRL" }, - "revision": "f5c0c16bf38e4fad9072f7f4", + "revision": "44d63698fbe14be4bd425ebd", "revision_nr": 1, - "created": 1701809344822, - "modified": 1701809344822 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3025,10 +3025,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ae191e22f1584a14bdcc43cd", + "revision": "dafe3cb7320244ab9be6118d", "revision_nr": 1, - "created": 1701809344822, - "modified": 1701809344822 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3063,10 +3063,10 @@ "currency_id": "BRL", "history_id": 1678041814665 }, - "revision": "e0fa89ba3c2d49df8c524fd3", + "revision": "80404cdca9284924a3d43117", "revision_nr": 1, - "created": 1701809344822, - "modified": 1701809344822 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3074,10 +3074,10 @@ "content": { "type": 5, "value": "Ganho 10% na pré-venda ao indicar o nosso aplicativo", - "revision": "0685205b1ab54daf8c9f8f2c", + "revision": "80155e24f25a453c9f003aa6", "revision_nr": 1, - "created": 1701809344822, - "modified": 1701809344822 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3087,10 +3087,10 @@ "value": { "costs": {} }, - "revision": "ec376ea834724433b0ad7e1d", + "revision": "a48cc9b1d15c46eca511c5e6", "revision_nr": 1, - "created": 1701809344823, - "modified": 1701809344823 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3127,10 +3127,10 @@ }, "money_release_status": "rejected" }, - "revision": "cb96b23817aa4aec95c371a5", + "revision": "84e5228614904bcdadfb8cb1", "revision_nr": 1, - "created": 1701809344823, - "modified": 1701809344823 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3138,10 +3138,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 60,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "9f83b451e88c410094e6b981", + "revision": "b79b9817200f49c88c3e7008", "revision_nr": 1, - "created": 1701809344823, - "modified": 1701809344823 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3161,10 +3161,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "8ff0c3ed7a284fa19ad4f61b", + "revision": "43b06a94986a4ca181605d7f", "revision_nr": 1, - "created": 1701809344823, - "modified": 1701809344823 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3200,10 +3200,10 @@ "history_id": 1678160538199, "description": "Compra de 14306893 IVIP por 2000 BRL" }, - "revision": "dfac6ef5fda34a76bd47b53a", + "revision": "6bc693e3d57a43bf92d95018", "revision_nr": 1, - "created": 1701809344823, - "modified": 1701809344823 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3223,10 +3223,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "9d1745c93a894cb2890d80c9", + "revision": "5e2ebb671cc54b268fa9cf71", "revision_nr": 1, - "created": 1701809344823, - "modified": 1701809344823 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3262,10 +3262,10 @@ "history_id": 1678284807612, "description": "Compra de 142846 IVIP por 20 BRL" }, - "revision": "c1be6e3726814e948958b66c", + "revision": "ee7d1927683e41e984d5ab53", "revision_nr": 1, - "created": 1701809344823, - "modified": 1701809344823 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3277,10 +3277,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 32 }, - "revision": "f6bd75ed29084f22b4e12ced", + "revision": "6b84f6a8cc824880a1503a0b", "revision_nr": 1, - "created": 1701809344823, - "modified": 1701809344823 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3288,10 +3288,10 @@ "content": { "type": 1, "value": {}, - "revision": "f4e053101ae6439a98a3c32c", + "revision": "5288ccfd999245e79c2a2cd6", "revision_nr": 1, - "created": 1701809344823, - "modified": 1701809344823 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3299,10 +3299,10 @@ "content": { "type": 2, "value": {}, - "revision": "c8a06d7762d24046995d50b5", + "revision": "dc49d3ee22134e39bf16b97c", "revision_nr": 1, - "created": 1701809344823, - "modified": 1701809344823 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3335,10 +3335,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "aed8540e3d6a4ec99a7a690d", + "revision": "63d7aed3fb7848a6835662df", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3346,10 +3346,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês e liberação final", - "revision": "37eebc5809a54658ad6b74eb", + "revision": "bdd49ab46d9e4fe9b2ce34a0", "revision_nr": 1, - "created": 1701809344823, - "modified": 1701809344823 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3361,10 +3361,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 120 }, - "revision": "bbe5a08356e54242ba5f16f2", + "revision": "aab1d28f96fb4749a437c40b", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3372,10 +3372,10 @@ "content": { "type": 1, "value": {}, - "revision": "7f1bf8dbf8ab42e08c4e5909", + "revision": "578da7ddd9e6400e8d084090", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3383,10 +3383,10 @@ "content": { "type": 2, "value": {}, - "revision": "3d065132918c4f6bacdddfdd", + "revision": "21c71530f81a4b1f8d9c7daa", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3427,10 +3427,10 @@ }, "money_release_status": "approved" }, - "revision": "70c810be5ba34f6686478048", + "revision": "ca7ae9168e0f4c3ca79c170f", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3438,10 +3438,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 3.120,00", - "revision": "ef1b74575ac247beb5b342cb", + "revision": "4402dc09404742aeb7079aca", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3453,10 +3453,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 16 }, - "revision": "8d921e050577427c9851c440", + "revision": "a6e850afe4c1454ea3287384", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3464,10 +3464,10 @@ "content": { "type": 1, "value": {}, - "revision": "3104ee4f7e3647108f4bba8b", + "revision": "a166be1a28b648d4b982f031", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3475,10 +3475,10 @@ "content": { "type": 2, "value": {}, - "revision": "8a49c9b54f8a4748bd1c2e58", + "revision": "61b25765b21241c2bb3cca24", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3520,10 +3520,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e1eafe90fc8c4410a0b9399d", + "revision": "cc6949bc0bed46ab8e74f365", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3531,10 +3531,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 416,00", - "revision": "f05bb78924484d7dab6f6824", + "revision": "48884170fd184868982e47f1", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3546,10 +3546,10 @@ "label": "Em 9 parcela(s) 18.00%", "amount": 108 }, - "revision": "ece36e9dc6484475b23fb87a", + "revision": "49260c0302434eefa565eefb", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3557,10 +3557,10 @@ "content": { "type": 1, "value": {}, - "revision": "b499a9eca6f848efa946430a", + "revision": "6e2d02bf04f3494ebfd2ff98", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3568,10 +3568,10 @@ "content": { "type": 2, "value": {}, - "revision": "2c3eca32f4fe4ace99cb330a", + "revision": "67ab2f3514b34e3eaf680af1", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3608,10 +3608,10 @@ }, "money_release_status": "rejected" }, - "revision": "37e2281b05eb4443b74dba33", + "revision": "e2352950f032480d8f1b4492", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3619,10 +3619,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 600,00 para a carteira iVip 0005.2314.7298.6693-13; solicitando um empréstimo parcelado em 9 vezes, com taxa de cobrança de 2,00% ao mês e tipo LIBERAÇÃO FINAL, totalizando R$ 708,00", - "revision": "e104786eeb3f4f95b3d7661b", + "revision": "ffb08dd3ff4742d6b0a734ca", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3634,10 +3634,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 12 }, - "revision": "faeff091168649e98ff0a345", + "revision": "018b4f4ea9ac48fab6d402df", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3645,10 +3645,10 @@ "content": { "type": 1, "value": {}, - "revision": "88504d44ed7d4ff9b77d5c1c", + "revision": "bf3504da03784ef4af58e51a", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3656,10 +3656,10 @@ "content": { "type": 2, "value": {}, - "revision": "0e6e71d59c0e4af695649fe7", + "revision": "056cbfd613fb4d8a98fb55d2", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3701,10 +3701,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "117ba03a30c147bbbbeba42d", + "revision": "b6d512eaf3684cde91cb3b11", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3712,10 +3712,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 312,00", - "revision": "15707972873c4a9481b41154", + "revision": "d26f12464030452e990641ef", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3725,10 +3725,10 @@ "value": { "content": "23796929000000023493380261020453727300633330" }, - "revision": "3543938deef24e84bd591e40", + "revision": "d5b87e720238460086a8e242", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3740,10 +3740,10 @@ "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "5123d82a69834e108e6209d0", + "revision": "73eb2b4fc8a64f549775960a", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3761,10 +3761,10 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "f7b17f442c214a6aae7a6668", + "revision": "7bc8fb63672f44c6a240d6d0", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3772,10 +3772,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/payments/55645430279/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55645430279&payment_method_reference_id=10204537273&hash=557e269b-6b88-40a8-b95a-ce41d6734e10", - "revision": "858b15f0392a41b7bb83cb4d", + "revision": "f5e0d901ec87469c958ad2b2", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3783,10 +3783,10 @@ "content": { "type": 2, "value": {}, - "revision": "1b06a95ae54142e4adb0850e", + "revision": "e8e90720a599412486a946ee", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3819,10 +3819,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "ef1bd35829884606a5f6e9ae", + "revision": "1fa0bf84b02b4074977a966a", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3830,10 +3830,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "9c09bb66882a44a8afed6494", + "revision": "0f7cf7c817954110b55adda8", "revision_nr": 1, - "created": 1701809344824, - "modified": 1701809344824 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3843,10 +3843,10 @@ "value": { "content": "23791929000000023493380261020453555300633330" }, - "revision": "583740518db6484b8e25a367", + "revision": "d1425ee6cffe47cdbfc958cb", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3858,10 +3858,10 @@ "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "cb6f88d3daf349b8be4ad081", + "revision": "5b19acda7c5e4629b8d72764", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3879,10 +3879,10 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "534cc55e023944f5af535043", + "revision": "604ab878af0a4abda3c3aa95", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3890,10 +3890,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/payments/55645448309/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55645448309&payment_method_reference_id=10204535553&hash=3a19b388-0268-4177-bbf8-d1aeb0efa481", - "revision": "03ae2d8cdf8c409eba3a6e55", + "revision": "913f2c0361bd43d689bf6216", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3901,10 +3901,10 @@ "content": { "type": 2, "value": {}, - "revision": "b23ee29c754840f5963228a2", + "revision": "9aabc81dd73d45e4989ebfd0", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3937,10 +3937,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "a11805ceed0447f0ab9d32ec", + "revision": "75c599c44a2240e5a55797c5", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -3948,10 +3948,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "48bbcaf1ac3b46b09ff23ec3", + "revision": "e4bce30700fb44649717a2df", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036312, + "modified": 1702563036312 } }, { @@ -3959,10 +3959,10 @@ "content": { "type": 1, "value": {}, - "revision": "de2c3f8712074c75a884f62c", + "revision": "8d516a3297714d0bb6c90d5a", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -3972,10 +3972,10 @@ "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "75ba020f3da446388fa5af59", + "revision": "2b45b86f2ea4492898d6098d", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -3983,10 +3983,10 @@ "content": { "type": 1, "value": {}, - "revision": "96c66bdb65a84c63a18a790f", + "revision": "25a741490b074ec88f4ed7b8", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -3998,10 +3998,10 @@ "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "0c37c9ada94648b491627970", + "revision": "5b15d0ce8c244d04a6d3a9b5", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4015,10 +4015,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "090deb1d3fa647e6822bb081", + "revision": "6eeea976668b4c27a12cd7b2", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4026,10 +4026,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/payments/55645618353/ticket?caller_id=1310149122&hash=8fcfd6de-ecd4-4d03-89e3-76d87270fb3b", - "revision": "74247d709fca47188612730a", + "revision": "db5c94e365ff4e32b26d3822", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4037,10 +4037,10 @@ "content": { "type": 5, "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540520.205802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter556456183536304B75F", - "revision": "cb5e3e1a88be4af28b1566e3", + "revision": "640b20cffaff4a2d821d90ab", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4048,10 +4048,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJgElEQVR42u3dQZLiyA4G4PSKY3BUc1QfYZasyImKnoaUlC6oefEieuyPTRMNtj/XyhJ/Klv/419/NUZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGxj/beG/xdf31P+vvj369WXq//f7o12v5Onj79eb2+z/X13m3dvn6Z/jon/+pRw0nZGRkZGRkZGRkZDyLcfzwC1LfROP6usjXdx7hzrbXRS9fH63jmWeHTxmMjIyMjIyMjIyMZzDefj+tPy/769H+n+v31zP+syB4pKLh8rqzRzAOR9Vr3V8FCiMjIyMjIyMjI+PJjWPTfaBlderHP4YG/DrJwwz3cWdkZGRkZGRkZGRkzM/v3zTUn3XAyG+vwwd1LCzWcjgjIyMjIyMjIyPjyY09JlyWvRLh/srF5MPvqZ1fMzitlBr/Pt/DyMjIyMjIyMjI+F831rWkS+ms/3/e/C/rXRkZGRkZGRkZGRn/y8adV0ijx3Z+L7H0cK/PJaT30sW/9E9fjIyMjIyMjIyMjEc3PlK1cEllxHXsxz/T6I9h/mItNXoMvMcvh3tdPujZMzIyMjIyMjIyMh7UeE3/kyIzS6BtJfCe72ydzjjfCeOsjIyMjIyMjIyMjKc0rmPRkBd6tjKvZXutHM1zX/qkr1/T8ZdXqr0PK1kZGRkZGRkZGRkZz2K8p2DLNjX2WXamxUGMj9K8b+nOLq8qJNI2RkZGRkZGRkZGxnMZc4lQ5yZex3qil907W0ishy7+I015uZcvz34xYGRkZGRkZGRkZDy+cZaLGRvzvfcSkNn2cu6tjGkJsZo+US/phIyMjIyMjIyMjIwnMj7rgCEpcwklQtoFtG5MFC87iOLK0TQt5pMMOyMjIyMjIyMjI+PxjDl7filXG77TAj8/499i0VBnK47lSPtpvoeRkZGRkZGRkZHxMMYe4uRDrXDdG1J+i0GbOtF8Cd+ZlRH3kMpp79e7MjIyMjIyMjIyMh7LmNPoW8G2cVp5D+rZXkP1PHG4S5+OXXyTnWFkZGRkZGRkZGQ8oDE8ttd+fNwjKMTS393i+lEq55PsDCMjIyMjIyMjI+OBjMPz+yMkXIYQek/d99qqv47nyrQ2j+esk+QOIyMjIyMjIyMj41mMO7PJr5Pv7KwunU1b3NIol/ZNh56RkZGRkZGRkZHxbMZ7CrbkNHqA9JJY3yksemnVr9OLzv4ejIyMjIyMjIyMjMc3xtWct8nOQq1Ezp9HzbYPynNf8kfrzpDFhZGRkZGRkZGRkfFMxrH7HsIv9yRqKV+TXjUXM64lbTH5vrPMlJGRkZGRkZGRkfEcxtlGQDkOc3mjTnMTp7MV194nhUUsRxgZGRkZGRkZGRnPYswJl1AHTLfoDK36nrYPuo4LRqeJm9lHW/tsDjsjIyMjIyMjIyPjQYxxEWfAtsncxJYqg/66Wt/LztSPagbnk549IyMjIyMjIyMj44GMsTG/vVIwOdW+pRTMbawe+neRmUfYMnQ44WX+p2JkZGRkZGRkZGQ8g3GWRu8lRFN3+AyP/887260DdjYIrcUHIyMjIyMjIyMj4+GNz4ErS0q15zTN82o5X7N3VP0RYJlh1/e1AiMjIyMjIyMjI+OxjH0yAXHasw+t+ppzj2PL096hvVQY+Vpv1pIyMjIyMjIyMjIyHsuYdxbKU15mj//X3uejXHqMw+yMXQxFw8ezFRkZGRkZGRkZGRkPZawpmJbC7LMpLzuQUCuM5Ui6oRZO+Hb+IyMjIyMjIyMjI+OxjHkfoSG6HmeTt7gd6OPtsPOesjN9jN7EXww2RkZGRkZGRkZGxnMZ89ZA4fl9jK4PwxFDvqalePvuKJc85aWVDA4jIyMjIyMjIyPjWYz5iT5kz7/fq3PIue92329x3Ms4djHVHJ2RkZGRkZGRkZHxZMZeGvNDidBaHXZ+CZVBvY8QmZnt+fn4WXaGkZGRkZGRkZGR8YDG2/erQuN3bmWieZvMdKkZnBqKv5Z6gpGRkZGRkZGRkfF0xpbS6H2SNM8595ymmW1edCmXiBMZGyMjIyMjIyMjI+MpjX0aY8lDFuui0qF5fymrQuuQmEvp4scMDiMjIyMjIyMjI+NZjDXPEs/UJstMr2WAYkjTxMWpITszrR7W+udiZGRkZGRkZGRkPLYxz1YMCZc+e5MWg+ZYzWy0eVw5Wmcr9jSRkZGRkZGRkZGRkfHgxphYv8Uh5d8PMp8VBNveuMS94S7Lz3r2jIyMjIyMjIyMjIcw9kK7h7HlqQ6ou3e+/2g3O1PrEkZGRkZGRkZGRsYTGdOuQdMBim2MzLT5qtA1htkfaVjjffJrwBjPYWRkZGRkZGRkZDyLcbhsbNXXLv42GXbe0u5Dw00/gzY7uxgNtI2RkZGRkZGRkZHxXMaITZmXR+LfS2WQh52HLHwL99qSOpQI94/mzjAyMjIyMjIyMjIexDhcdtl7xm8pBRPGLrb5kMWanelpP6I22eCIkZGRkZGRkZGR8SzGlpaHtnSm2TN+VNcQTRpkvlM9XMtfiJGRkZGRkZGRkfEcxhqiiQMUW6GFO4sR+JBhb2GZaV05enstV20/yc4wMjIyMjIyMjIyHsQ4iPL+P2GA4n2/RBiwS4mu9yH53sZr9TIJhpGRkZGRkZGRkfEMxhxj2UqHPtDqKMRHmQRTh523MuUl/oUYGRkZGRkZGRkZz2kMBUF8kG/jkMU8weXe6muZn2dearSP9vxkZGRkZGRkZGRkPJZxJ0TTxmBL2pBzurHn7pSXIcxex8bE3wcYGRkZGRkZGRkZz2LMD/vX7/LpdZJi3mtotjj1Uhrz98lRCyMjIyMjIyMjI+OZjEuJsbQwiyWE2R8Fm2uF3dmKW+r9/6RWYGRkZGRkZGRkZDyg8Raf+pehMb+OQfVcB1z32/Dh8P5mKWr5WYCRkZGRkZGRkZHxfMadgHmY19JL973G25dhlEtqzD9+lrNnZGRkZGRkZGRkPL5xKY/2O8YtzWtZx1jNrFYYPxpi8ldGRkZGRkZGRkbGExr7zpnia0uP9rfxYb9OK4/Vw62c8BY7/YyMjIyMjIyMjIynMua1pE/s8CZmZ1qacR52+Mxz0LdxlepOKudtdoaRkZGRkZGRkZHxWMY/88XIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyPgHGv8Gg3eEIKcvUa8AAAAASUVORK5CYII=", - "revision": "cf9b6d32cd6845aab34ac846", + "revision": "d43a39193463462daff13534", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4059,10 +4059,10 @@ "content": { "type": 2, "value": {}, - "revision": "6909ea5e41844df6bc43e31f", + "revision": "27ffddc20a95403f96c7c10e", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4104,10 +4104,10 @@ }, "wasDebited": true }, - "revision": "6f9604e557db466aab2e5a39", + "revision": "deeb9ffecfed4a39805f2b08", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4115,10 +4115,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "bd25e58591104aada5aabd99", + "revision": "cfb9e4a1b3cc4ed28dab3e36", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4130,10 +4130,10 @@ "label": "Taxa de 0.99%", "amount": 0.20790000000000003 }, - "revision": "dbdc5894a93a42ce831d4667", + "revision": "f7a4984f4633493fa17e3d7a", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4141,10 +4141,10 @@ "content": { "type": 1, "value": {}, - "revision": "262dcf5c148b429b810777a8", + "revision": "3ae2c5b303344be48b9bccc0", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4154,10 +4154,10 @@ "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "9372f94e20c64886a165cd0b", + "revision": "d7331fb6321d41778e9f9f67", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4165,10 +4165,10 @@ "content": { "type": 1, "value": {}, - "revision": "cbac6b6978464734ada9d7d6", + "revision": "7eae3c0f6d1e473d8cc3349b", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4182,10 +4182,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "c6fad6da294d436b935dd01e", + "revision": "8bd951798899412ab3875ba1", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4193,10 +4193,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/payments/55660781347/ticket?caller_id=1310149122&hash=d81b289f-e1b7-45ae-9f11-f314a4fdb9e1", - "revision": "4ecde434b8a345e384b73ea2", + "revision": "3effe5e948b74b46ac43bb37", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4204,10 +4204,10 @@ "content": { "type": 5, "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540521.215802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter5566078134763047D77", - "revision": "e057417145684b81bc1c7fc5", + "revision": "667732cb8a6943df83882ef9", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4215,10 +4215,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJfklEQVR42u3dQXLbOhIGYGilY+io0lF5hFlyJUxeHFPobtBW5tVUJeTHlUoUiY9eEe0fjdb/+OM/jZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGR8c82ri0et49v7j9PXT5/8+PD4/PUx/Hz1PLx4fH55f3HN9ePa359mJ+KVw03ZGRkZGRkZGRkZDyLcTz5DyR/aD/u/Qz8bZB/flNP/Tp+XnV/YeeXTxmMjIyMjIyMjIyMZzA+Pt/Wt2E/7v1r/O2b9jmN+EUbJg3X15M9k7GFyUcYa31NUBgZGRkZGRkZGRlPbhyL7luJvUd1rcc/hwL8fZKHCZMGRkZGRkZGRkZGRsb0/j4tqKcK/ZadGcMvQR0nFmGGEav4jIyMjIyMjIyMjOc0huzMmgZZUnZmqMeHnHss53+ZwYmn/od8DyMjIyMjIyMjI+PfbqxrSS+lsv7/+fBv1rsyMjIyMjIyMjIy/s3G2TFG11sp5w9PVr/J04hZT5c3DkZGRkZGRkZGRsajG59ptjAM0matXPq0it+Sui5FrU+2vKYI69dzBUZGRkZGRkZGRsZDGm/pZT21VBwT6/dy78dnLH0YrfY4769nzc0aGRkZGRkZGRkZGU9mXEu7xNqSfNZkMdKWBKnNXWq3mMdrrHfyPYyMjIyMjIyMjIwHMsbragfE+TdbhX64/FmK9xG7lN2HWmuleM/IyMjIyMjIyMh4GuNQoW+ltXnvQ3PEPu/70ifrRK+ppWKu0Idmjd/n7BkZGRkZGRkZGRkPZIyR83sJyKRh48SitoTJbVpCrKZP1Jd0Q0ZGRkZGRkZGRsYTGXNTlhp+qbuAhqJ7DrwPorhy9BG7xbyXYWdkZGRkZGRkZGQ8mrGlO9XR1vli0BRvz7X/NumtOE5H2tvZGUZGRkZGRkZGRsajGXt5/Y/G2SAhRLO7j9CWfO/phrdXk8XYRp2RkZGRkZGRkZHxLMadRuYp1R53H7qVenzda2gpc4Vc+09P3xkZGRkZGRkZGRlPZryPTVli55X0HJe9tuVt/oj3neWqz6B+LzvDyMjIyMjIyMjIeBhjTws9l1RrDxX6PmmgeAn9y3u5qgbVl7St6J2RkZGRkZGRkZHxfMbvhl2m7/j5gWYdzadDTCr0jIyMjIyMjIyMjGczrinY0lOIpvZiuU+SMrvHY6dC38J9bvkyRkZGRkZGRkZGxmMbe2rBMivVx60+76+rbpPRKj8uIb3vNFm8MDIyMjIyMjIyMp7J2FOepZdgSw+dFEPgvXZJzLRZqX7dW2bKyMjIyMjIyMjIeA5j3QhoTYtBZ5HzXtq9DM1dam/FWqof4znbjxkZGRkZGRkZGRnPYtx+1UJhflbFX8ace8bGCHyfrkndPbW8UbNnZGRkZGRkZGRkPJAxNym/TdsltnSnmqbJ+wi16cZEcb3pkMF5p2bPyMjIyMjIyMjIeCBjS7mY+No+myu012ZB13CqRmZay03Tww2v5U/FyMjIyMjIyMjIeBrjLI2e3/G/eOtvpeQ/nwfUDUJzpZ+RkZGRkZGRkZHxLMZLaNxSdwRaSlB92Yuup6vqfOIyw96/nyswMjIyMjIyMjIyHsvYJx0Qp63Nh1R7G3u6XNJ8Iv8ToM5LbpOxvllLysjIyMjIyMjIyHgs41pK9dm4G35Jc4XaQHGn7WKYNLzXW5GRkZGRkZGRkZHxWMa4a9Cw0HNJ905dXqbRm/sUu/NAafLByMjIyMjIyMjIeCJj7mg+BNVr38Re9iPqISBT0+h1E9Fe+Pfva/aMjIyMjIyMjIyMhzX2odl5GHYn/NLHruf9dflOK5d8qpUMDiMjIyMjIyMjI+NZjPFlP2XPn6k7y5pq9kO+Zqf6/ojtXsa2i3XOwcjIyMjIyMjIyHgqY5gHxJ6IjxiZybt35shM6M7yTJX+dS+M822+h5GRkZGRkZGRkfGAxsd0LelOCD3NFdoQgQ/YnJ2pofjbZHRGRkZGRkZGRkbGkxljsOU2/uBZ9gUdRXvrRLcb9rJD0WX2DSMjIyMjIyMjI+PJjLde14nGJou91yblW619mURvapOYa6nixwwOIyMjIyMjIyMj41mM614dfQvR1GWmwzv+YIxV/JYaoid13qHoyww7IyMjIyMjIyMj49GMPbRXuccthvL4uTvL8ECzHo3PEKtZUpeXPpmXMDIyMjIyMjIyMp7DGLcGmizrHJ+jzWv2Iah+nZfh95q7XN6q2TMyMjIyMjIyMjIeyxhf9mvb8q2u/2izDYXeObWbnQmrSzsjIyMjIyMjIyPjeYzbXKGF3orhBrlxyzJOHGIKJofZQ7PG3C1mGTcdYmRkZGRkZGRkZDyn8RLyLMP7+5pq7fk5HrEBTA7a7OxiNIvAMzIyMjIyMjIyMp7DGLEt5lkyf51MGuJ8opX+izmVMxT4W/kzMDIyMjIyMjIyMp7DuL6K7pfwjp8hj5Jh7wXSY2/FmJ3ppQ96DtowMjIyMjIyMjIynseYl4cOt2ypt+KwcrSnHYpy28Wtrt/3EuuPcRNRRkZGRkZGRkZGxlMZ42j3SQPFocSejzpp6JMZxnXf2MPTMzIyMjIyMjIyMp7T2Mb3916mCLmlYj7Vp7TYf7FNnv635gqMjIyMjIyMjIyMf79xLW/9ueFKKOdfygrUnezMkmYY97Kt6PAXYmRkZGRkZGRkZDynsZXoeu+1J2Ir04h4hC4vMURT4zltGm9nZGRkZGRkZGRkPIOxHrlmfyu/WEocZrclTAiz59/08e/RGRkZGRkZGRkZGc9jXCex9JYq6190UmxlMWhdnHothfk17VD07nyGkZGRkZGRkZGR8TDGS4mxtNSL5Vo+tFDFD8+x21txyNf89lyBkZGRkZGRkZGR8YDGx+StP2zR2VMcZk0BmfYVNgbVU3Ymp+MZGRkZGRkZGRkZz2r8OvOyleHnl88yOM9SmH/+Xs6ekZGRkZGRkZGR8fjGS3m1z5GZWH1/xLWk2292photNXd5o6cLIyMjIyMjIyMj4wGNfXqnVEePGwrlDUJ76Va+0yt9GCtU+hkZGRkZGRkZGRlPZcxrSTfs8CH2Jl/G0Z5ph89WeqW3kLhJqZzn9O/ByMjIyMjIyMjIeGzjn3kwMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL+gcb/Am9FACpuHEp1AAAAAElFTkSuQmCC", - "revision": "ecd1153e250f4843a38ffa01", + "revision": "3ac2bcff19ce4ee8a08f6025", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4226,10 +4226,10 @@ "content": { "type": 2, "value": {}, - "revision": "50782fba00a0446cb862cfdf", + "revision": "11b29785a2e341a1a6c4271b", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4262,10 +4262,10 @@ "status_detail": "expired", "currency_id": "BRL" }, - "revision": "d0ea40cadb0641f2a5b45a48", + "revision": "c45f382ec6174a0ca7517eeb", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4273,10 +4273,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 21,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "078ef1bd924649439e0cea6e", + "revision": "4dd7b13238ea473dbcff3793", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4286,10 +4286,10 @@ "value": { "costs": {} }, - "revision": "577d82e03b3a4f3b8cf93a7d", + "revision": "4a39c2e145d2487286304f40", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4321,10 +4321,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "d34aff8070ba4a46b57573c6", + "revision": "5bf6eb3fb58f4e12a002404f", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4332,10 +4332,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 70,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "df98f2c212a54d0684cbce01", + "revision": "56ce888a9c234f51accaedbb", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4345,10 +4345,10 @@ "value": { "costs": {} }, - "revision": "8440fb4aeaeb47e29bb70148", + "revision": "fbb1d08150d64d4693dcb5ae", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4380,10 +4380,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "6c408a4e4a90408b97638d2f", + "revision": "d6e3d6a57bd94149a5ef6d31", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4391,10 +4391,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 22,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "05eb2c69b6f64124929d49e1", + "revision": "cd79d201a6bc44238f6da421", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4404,10 +4404,10 @@ "value": { "costs": {} }, - "revision": "b11f2b6cbab045bfaca8bd30", + "revision": "45ede19855af45a1996be693", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4439,10 +4439,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "5b42e3d706e14fe3b8c03524", + "revision": "305b8786b5f6430dabf897b6", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4450,10 +4450,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 34,53 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "b3bfdeb1766a4402afaa2695", + "revision": "1cc5bf007051432d8f36b5bc", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4463,10 +4463,10 @@ "value": { "content": "23797929500000053493380261020810012400633330" }, - "revision": "65b05722ba2a4e63970d986d", + "revision": "a3e9e42c62a04444b685794e", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4478,10 +4478,10 @@ "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "e7615abc355641dbaa1089c6", + "revision": "4a75e448438540318317209a", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4499,10 +4499,10 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "7e6acb4df2dc4b1282b2d6fc", + "revision": "bb37fcdf29594f70908aa024", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4510,10 +4510,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/payments/55844330172/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=55844330172&payment_method_reference_id=10208100124&hash=b65fca1f-6eb0-406a-adf2-94d1c5555b8a", - "revision": "d83a86949f2446e6ad4402c3", + "revision": "4db7d6eceb484c3188807817", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4521,10 +4521,10 @@ "content": { "type": 2, "value": {}, - "revision": "1aaac980c60d4d0cb793fef3", + "revision": "1c0db2b7fcb14d13bdbda2e4", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4557,10 +4557,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "1dbec628715c45d8918b43db", + "revision": "c20a5bfadae14d8ab14f7361", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4568,10 +4568,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "5e90f0ff17214b6c8b77f4e5", + "revision": "206d64c78ef0461eb44a2a42", "revision_nr": 1, - "created": 1701809344825, - "modified": 1701809344825 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4581,10 +4581,10 @@ "value": { "costs": {} }, - "revision": "c515b21d09b54f84a429a619", + "revision": "81813933239149f8b238e4aa", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4616,10 +4616,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "15a1ee87506c438a8e144a4b", + "revision": "5bfa003aa11441768fe2644e", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4627,10 +4627,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 23,54 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "9f17c575b8384383ab63f1cc", + "revision": "02e484dfa6f44f48812ad07a", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4642,10 +4642,10 @@ "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "df11d9917e2040229beb6091", + "revision": "9b05c721d57844b6953d8193", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4653,10 +4653,10 @@ "content": { "type": 1, "value": {}, - "revision": "73adb0f728a14be68166e417", + "revision": "f596d128378040faa7a808c0", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4664,10 +4664,10 @@ "content": { "type": 2, "value": {}, - "revision": "ed32a64c466f411a9393cc6b", + "revision": "651a45d0046d419bacd131b0", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4700,10 +4700,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "bc8438a88e484a26abfb2d9f", + "revision": "4bfa1612d57e4abb874e9a35", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4711,10 +4711,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "a61b4ed24f4b45b8bd906301", + "revision": "c52b1f4b2b014daea4dd1ae8", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4726,10 +4726,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, - "revision": "f5bb5cb3d00a402197f83cea", + "revision": "4106151039f64f36a2215668", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4737,10 +4737,10 @@ "content": { "type": 1, "value": {}, - "revision": "3c0d428ac8ec48d3a06df4c2", + "revision": "b0bfefb1e70340c58bb54665", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4748,10 +4748,10 @@ "content": { "type": 2, "value": {}, - "revision": "2abc3a9f1e8a47fca2fea1ad", + "revision": "1d31fd6c3c8e4972935974fe", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4784,10 +4784,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "37419c2915ee48978a7c4dad", + "revision": "a4c78e62b0f74a8db16fd6f0", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4795,10 +4795,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "0c79dda4ddfa42c2b86d022d", + "revision": "c32429a00ddd425da0454874", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4810,10 +4810,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 9.200000000000001 }, - "revision": "9776c779d92e4604a0bb09c4", + "revision": "8c6efe9a24bb48feb214fbbf", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4821,10 +4821,10 @@ "content": { "type": 1, "value": {}, - "revision": "9a46107d361c4f42a8958150", + "revision": "a59b5db13b8a43d7bae9a487", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4832,10 +4832,10 @@ "content": { "type": 2, "value": {}, - "revision": "26c3eaeac3624ac6a62d2c48", + "revision": "874202b61e6b4046b4b75842", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4868,10 +4868,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "8ba423e6fd7d4865b3a28c16", + "revision": "d9909fd49eb0466288378e70", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4879,10 +4879,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", - "revision": "9fac3656125e4bcda7adb866", + "revision": "800526eca0474347ba07aa14", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4894,10 +4894,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 8 }, - "revision": "a5689acc2a304db085d2b509", + "revision": "8f6d4142064340cc8a4d2a25", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4905,10 +4905,10 @@ "content": { "type": 1, "value": {}, - "revision": "990ff1f4d1064596b00bbaef", + "revision": "7ba3f0a19a8f48f49a56964b", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4916,10 +4916,10 @@ "content": { "type": 2, "value": {}, - "revision": "9039d9d6931047f786288923", + "revision": "89417ca53f394b66a11475b2", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4952,10 +4952,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "c8921dd59d664ce79699e1da", + "revision": "0c122fb7c8714bd7a5bd0d76", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4963,10 +4963,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", - "revision": "b1ea8c3cc89e498fa8c64ede", + "revision": "2a31dd4d9c124333a74e9c52", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4978,10 +4978,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 8.4 }, - "revision": "88ef00178ac44a1daac091e8", + "revision": "4190c41d75bc4f1abe08916a", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -4989,10 +4989,10 @@ "content": { "type": 1, "value": {}, - "revision": "71a861c0307f42dd9fa05314", + "revision": "180c728ed8da4acd9652d1f4", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -5000,10 +5000,10 @@ "content": { "type": 2, "value": {}, - "revision": "fce704af5ff840829e975eaf", + "revision": "2ae2ea2e1aaa40ba836c7a30", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -5036,10 +5036,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "476095aa66464dcda01b639d", + "revision": "9d8f35c957d242389d9b8aa3", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -5047,10 +5047,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", - "revision": "f2bcba1331dc443a85233453", + "revision": "d939cf09021e459f9beb6dcc", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -5070,10 +5070,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "4ad970973b0040d3abf79932", + "revision": "64be6a8262e44fcfa38cb3c4", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -5108,10 +5108,10 @@ "currency_id": "IVIPAY", "history_id": 1679780561471 }, - "revision": "d505677b8bd94b9ba55c5834", + "revision": "a497ac27246f4fd990d40d68", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -5119,10 +5119,10 @@ "content": { "type": 5, "value": "Compra de 50,00 IVIPAY por 5,00 IVIP estabilizando US$ 0,00", - "revision": "dc88871044cf475f8327aafb", + "revision": "c09ef1c67892480aa09801e3", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -5142,10 +5142,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "69c838d26d4e41c0a1c5a377", + "revision": "f90c073f9f4f479998df2f92", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -5180,10 +5180,10 @@ "currency_id": "IVIPAY", "history_id": 1679780730626 }, - "revision": "c4d009f158b049a79a3eb2df", + "revision": "e1896fcf89b84f6aa57c103e", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -5191,10 +5191,10 @@ "content": { "type": 5, "value": "Compra de 50.000,00 IVIPAY por 5.000,00 IVIP estabilizando US$ 0,18", - "revision": "3a8eb253353b49bf80d5d9b4", + "revision": "eb4edff5b0574f62983fb2ae", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -5214,10 +5214,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "235b808b6f3b4bd881103723", + "revision": "543f4973e2c043669c56326f", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -5252,10 +5252,10 @@ "currency_id": "IVIPAY", "history_id": 1679798199684 }, - "revision": "14d8495f76a44cefb6ef5b79", + "revision": "23f39163304f43ada9ddd340", "revision_nr": 1, - "created": 1701809344827, - "modified": 1701809344827 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -5263,10 +5263,10 @@ "content": { "type": 5, "value": "Compra de 100.000,00 IVIPAY por 10.000,00 IVIP estabilizando US$ 0,32", - "revision": "6d35dd7af28942d5aed2a23b", + "revision": "0d9358e110984fb28705610b", "revision_nr": 1, - "created": 1701809344826, - "modified": 1701809344826 + "created": 1702563036313, + "modified": 1702563036313 } }, { @@ -5286,10 +5286,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "34ff768b267b4d21a4d23298", + "revision": "ac7916834a7248f5beb80c51", "revision_nr": 1, - "created": 1701809344827, - "modified": 1701809344827 + "created": 1702563036314, + "modified": 1702563036314 } }, { @@ -5325,10 +5325,10 @@ "history_id": 1681764788277, "description": "Compra de 3.964.758,00 IVIP por 700,00 BRL" }, - "revision": "df28a5998a9942e1addeb1eb", + "revision": "24cb71af29844c74b6157376", "revision_nr": 1, - "created": 1701809344827, - "modified": 1701809344827 + "created": 1702563036314, + "modified": 1702563036314 } }, { @@ -5348,10 +5348,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "9d7182ab9b0b494fb1ac2394", + "revision": "ebaf52b5b6f64ed7908573d9", "revision_nr": 1, - "created": 1701809344827, - "modified": 1701809344827 + "created": 1702563036314, + "modified": 1702563036314 } }, { @@ -5386,10 +5386,10 @@ "currency_id": "BRL", "history_id": 1682323304615 }, - "revision": "9f612af129d94f02b76ff4ec", + "revision": "d6cd7379c3734544a5930291", "revision_nr": 1, - "created": 1701809344827, - "modified": 1701809344827 + "created": 1702563036314, + "modified": 1702563036314 } }, { @@ -5409,10 +5409,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "14d887a3d76a4283a31249fc", + "revision": "6fc224c3544f4c0ba3adcb18", "revision_nr": 1, - "created": 1701809344827, - "modified": 1701809344827 + "created": 1702563036314, + "modified": 1702563036314 } }, { @@ -5447,10 +5447,10 @@ "currency_id": "BRL", "history_id": 1682323486538 }, - "revision": "fc1d95452f4644d695c43976", + "revision": "6f64e03080dc41f1b45c7abd", "revision_nr": 1, - "created": 1701809344827, - "modified": 1701809344827 + "created": 1702563036314, + "modified": 1702563036314 } }, { @@ -5470,10 +5470,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "de17eeecfc7b4de9a88cee0c", + "revision": "e16719beb81b481fb37a2ca0", "revision_nr": 1, - "created": 1701809344827, - "modified": 1701809344827 + "created": 1702563036316, + "modified": 1702563036316 } }, { @@ -5508,10 +5508,10 @@ "currency_id": "BRL", "history_id": 1682324590308 }, - "revision": "dd5ca6665b684bdf84d49991", + "revision": "d94ef9fc95e84b318107ea68", "revision_nr": 1, - "created": 1701809344828, - "modified": 1701809344828 + "created": 1702563036316, + "modified": 1702563036316 } }, { @@ -5531,10 +5531,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "028c4f5d5be14de9a47ea89d", + "revision": "01e1cff7bc1747509aa9b2dd", "revision_nr": 1, - "created": 1701809344828, - "modified": 1701809344828 + "created": 1702563036316, + "modified": 1702563036316 } }, { @@ -5569,10 +5569,10 @@ "currency_id": "BRL", "history_id": 1682324593569 }, - "revision": "ba7a3db0cc0045738edc372a", + "revision": "da48db6617fd40dc9a790fa1", "revision_nr": 1, - "created": 1701809344828, - "modified": 1701809344828 + "created": 1702563036316, + "modified": 1702563036316 } }, { @@ -5592,10 +5592,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "bbcbbc8cb329438086b0cbf9", + "revision": "b8f88acbeecb46a1a046141a", "revision_nr": 1, - "created": 1701809344828, - "modified": 1701809344828 + "created": 1702563036316, + "modified": 1702563036316 } }, { @@ -5630,10 +5630,10 @@ "currency_id": "BRL", "history_id": 1682325423689 }, - "revision": "9ff2ba3d2c584b2a959df378", + "revision": "f6b2236090ad43b4ba1e00cf", "revision_nr": 1, - "created": 1701809344828, - "modified": 1701809344828 + "created": 1702563036316, + "modified": 1702563036316 } }, { @@ -5653,10 +5653,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "67f62f7c59f54d64a4b3c5ce", + "revision": "c061b5e5da274386a492070b", "revision_nr": 1, - "created": 1701809344828, - "modified": 1701809344828 + "created": 1702563036316, + "modified": 1702563036316 } }, { @@ -5691,10 +5691,10 @@ "currency_id": "BRL", "history_id": 1682325428664 }, - "revision": "de7c0e49e662499e9a54e353", + "revision": "3e561de1708f4dd6be66b8b9", "revision_nr": 1, - "created": 1701809344828, - "modified": 1701809344828 + "created": 1702563036316, + "modified": 1702563036316 } }, { @@ -5716,10 +5716,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ba061d71a5cc4588929b92f2", + "revision": "9ac2499db93b4159a604ead7", "revision_nr": 1, - "created": 1701809344828, - "modified": 1701809344828 + "created": 1702563036316, + "modified": 1702563036316 } }, { @@ -5755,10 +5755,10 @@ "currency_id": "BRL", "history_id": 1682578544384 }, - "revision": "24a4cae57b2446d3815649f4", + "revision": "5df9bf6a7a2841f0837e1631", "revision_nr": 1, - "created": 1701809344828, - "modified": 1701809344828 + "created": 1702563036316, + "modified": 1702563036316 } }, { @@ -5766,10 +5766,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "e7a0de05af324e8294fa7d6b", + "revision": "871fd62b97f1490fb486752b", "revision_nr": 1, - "created": 1701809344828, - "modified": 1701809344828 + "created": 1702563036316, + "modified": 1702563036316 } }, { @@ -5791,10 +5791,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "352c8b9b5a2a4813a720b562", + "revision": "118dc16f44a04d2b80b31080", "revision_nr": 1, - "created": 1701809344828, - "modified": 1701809344828 + "created": 1702563036316, + "modified": 1702563036316 } }, { @@ -5830,10 +5830,10 @@ "currency_id": "BRL", "history_id": 1682578544557 }, - "revision": "fb6d4ab955974831944da2fa", + "revision": "f19a980ade9847d9925af6fd", "revision_nr": 1, - "created": 1701809344828, - "modified": 1701809344828 + "created": 1702563036316, + "modified": 1702563036316 } }, { @@ -5841,10 +5841,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", - "revision": "b381b678af53424ea288f370", + "revision": "dc896dd2f75649b68b47295b", "revision_nr": 1, - "created": 1701809344828, - "modified": 1701809344828 + "created": 1702563036316, + "modified": 1702563036316 } }, { @@ -5866,10 +5866,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "b5652b84d8c64768b833c846", + "revision": "3f66db4e51f746dfbfcf9e30", "revision_nr": 1, - "created": 1701809344828, - "modified": 1701809344828 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -5905,10 +5905,10 @@ "currency_id": "BRL", "history_id": 1682578984558 }, - "revision": "9a8489a35fd34659baf0a6b6", + "revision": "f0b0191295d04f46b529f545", "revision_nr": 1, - "created": 1701809344828, - "modified": 1701809344828 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -5916,10 +5916,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 2 no valor de 119,60 BRL referente ao contrato 1679183534080", - "revision": "30ba66d3fef44496900c9a51", + "revision": "6600cc70f64c43a5bd4b37cb", "revision_nr": 1, - "created": 1701809344828, - "modified": 1701809344828 + "created": 1702563036316, + "modified": 1702563036316 } }, { @@ -5941,10 +5941,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "997b3e9796574a9bb061373a", + "revision": "10ba0feabd0940fea1b73542", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -5980,10 +5980,10 @@ "currency_id": "BRL", "history_id": 1682578984726 }, - "revision": "8f179b569ec14f09a6a52af0", + "revision": "9c8538f158a94ec093d02071", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -5991,10 +5991,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 2 no valor de 104,00 BRL referente ao contrato 1679184046128", - "revision": "dcd21abf464c4ae5a7609120", + "revision": "31724b28d12742c6867112ea", "revision_nr": 1, - "created": 1701809344828, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6016,10 +6016,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "51435939fea540d8bb4fe92a", + "revision": "28871743d07641598643ffe5", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6055,10 +6055,10 @@ "currency_id": "BRL", "history_id": 1682578984913 }, - "revision": "9da1f43e492b46dc896889ea", + "revision": "cee742301c6a44f2a32b872d", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6066,10 +6066,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 2 no valor de 109,20 BRL referente ao contrato 1679184832424", - "revision": "5ec68abe08074faf85ae26ee", + "revision": "5d460da7b04b405ca22d7c11", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6081,10 +6081,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 4 }, - "revision": "81285e92698a451e8233cd95", + "revision": "b55ae5d4cb864ac0bda710d5", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6092,10 +6092,10 @@ "content": { "type": 1, "value": {}, - "revision": "fa715efdb7d2424fb255b78d", + "revision": "075daa17fafa4b659ec62b90", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6103,10 +6103,10 @@ "content": { "type": 2, "value": {}, - "revision": "1d60bcf0b78f4058a1665d55", + "revision": "4382138cc3df47c08e6daba7", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6139,10 +6139,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "7bb89c10e2024bab944185af", + "revision": "36e880b35c314c46bc058957", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6150,10 +6150,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 204,00", - "revision": "e5dd4730cadd441fadd0b442", + "revision": "1734c0a783eb4e4895ec750d", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6165,10 +6165,10 @@ "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, - "revision": "1012e5767da44dd8ba8ec564", + "revision": "d378d6f8ae2149beb7e6decb", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6176,10 +6176,10 @@ "content": { "type": 1, "value": {}, - "revision": "161f4a570fc240b6b2c7daf1", + "revision": "e26f5c9bd01046c2a5559546", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6187,10 +6187,10 @@ "content": { "type": 2, "value": {}, - "revision": "f5e0fcf5040540ff89c4b8a7", + "revision": "f9c20fce740e4f57b12ef39b", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6223,10 +6223,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "c85d723d00534e1d960958d4", + "revision": "ee058939639247bbbae9153a", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6234,10 +6234,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", - "revision": "c7704c0de25044e395e9bcd4", + "revision": "2cd9363fbe7741e2adc00c11", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6247,10 +6247,10 @@ "value": { "costs": {} }, - "revision": "dfd435c273d742889788bcba", + "revision": "c1c74fb764f44afaa5b9b14e", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6292,10 +6292,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "88da02f9ae244d6d87fe1b07", + "revision": "df4d61837d69488d8e025358", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6303,10 +6303,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "ef790647732f47d586382445", + "revision": "2e558825d47345c9ad6d5fa2", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6326,10 +6326,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "5dc543fc9c2641f28a86d9db", + "revision": "ff983e8794b44f7d89e81089", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6364,10 +6364,10 @@ "currency_id": "BRL", "history_id": 1684348051817 }, - "revision": "cd4409bb26954a28a86ceac8", + "revision": "c367ea75e9f04f99ac5b638d", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6375,10 +6375,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "6b7c791f7da54587ad2e8bc8", + "revision": "53847c4917d84be885ad78b8", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6400,10 +6400,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a758077cf6e942d283bb95c2", + "revision": "2f7a4ed0e1004f2e82d03125", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6439,10 +6439,10 @@ "currency_id": "BRL", "history_id": 1684436739701 }, - "revision": "e2f6796946a64593b83b9c3d", + "revision": "c114132179d7412089b84218", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6450,10 +6450,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "959d339de07c4a46a58542b0", + "revision": "9d1f186f557f4c63b539f706", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036317, + "modified": 1702563036317 } }, { @@ -6475,10 +6475,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "dfedffc2087d48df94d9028a", + "revision": "b5c174d319b54d3986c003e0", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6514,10 +6514,10 @@ "currency_id": "BRL", "history_id": 1684436739822 }, - "revision": "a5d6bd36227549ee9ed00bb2", + "revision": "aa4814b9e3734adfa859e67a", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6525,10 +6525,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", - "revision": "35e04563fd4e462b95419de5", + "revision": "f6b0fa3a1cd54dfabb2db369", "revision_nr": 1, - "created": 1701809344829, - "modified": 1701809344829 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6550,10 +6550,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "e1d0f47f91c64b4f9a3f75b1", + "revision": "0324f23185ee43e9911d543f", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6589,10 +6589,10 @@ "currency_id": "BRL", "history_id": 1684436739934 }, - "revision": "1cf344a5bc55485b812a4bc8", + "revision": "70067a47d6284ad289f59c11", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6600,10 +6600,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 2 no valor de 119,60 BRL referente ao contrato 1679183534080", - "revision": "17720167316b4e2cba14d699", + "revision": "4fa7a51e8d30428d81f5b0b5", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6625,10 +6625,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "6b5cb3681e084f568145363b", + "revision": "fabf6312ec3445fd8bad6528", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6664,10 +6664,10 @@ "currency_id": "BRL", "history_id": 1684436740031 }, - "revision": "c012ae5f162749488839ccd2", + "revision": "3c9099453ded497a81e185db", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6675,10 +6675,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 2 no valor de 104,00 BRL referente ao contrato 1679184046128", - "revision": "3e2c9a8f085f46b98766f285", + "revision": "a80e8974f53a4113b88bb6f1", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6700,10 +6700,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a769ea6f51c248e685e620b5", + "revision": "b1b20830c44442018d2d58ab", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6739,10 +6739,10 @@ "currency_id": "BRL", "history_id": 1684436740155 }, - "revision": "caa60f951f804013840e8313", + "revision": "e9ff3c851c514f1285c2b698", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6750,10 +6750,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 2 no valor de 109,20 BRL referente ao contrato 1679184832424", - "revision": "bdf9922d04254912aa437bc0", + "revision": "dcf2ddd09d4f458299c88a92", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6773,10 +6773,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "756856c801e44e968e9e423d", + "revision": "288fdba337be45c18b2952b4", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6812,10 +6812,10 @@ "history_id": 1684790150988, "description": "Compra de 5.850.731,00 IVIP por 1.200,00 BRL" }, - "revision": "134d938dae354534b69ceb19", + "revision": "d99530ce63c848fd82725f8e", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6835,10 +6835,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "233784197d7f4b8bad99bd87", + "revision": "6816b962d80b4358ac7767ab", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6873,10 +6873,10 @@ "currency_id": "BRL", "history_id": 1684790990972 }, - "revision": "683f8edfcb9245e1b280cfdb", + "revision": "d5469bd1bc984b05ae65662f", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6884,10 +6884,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "3adbee9c4025458da7ca2cfb", + "revision": "e92dae2a743e4f91b8d0432c", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6897,10 +6897,10 @@ "value": { "costs": {} }, - "revision": "ed90202c8c1e41aa8137aff1", + "revision": "2ee306bd5d054eb9800e74cc", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6932,10 +6932,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "5aa163c82e0e41c693ee12d9", + "revision": "257356fb504c4d2492fb2936", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6943,10 +6943,10 @@ "content": { "type": 5, "value": "Saque de 2.337.199,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "55b4a318c48844a4863d4958", + "revision": "6d640e5031d14bb996c530e4", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6956,10 +6956,10 @@ "value": { "costs": {} }, - "revision": "7bcb2fc829e141bd83777a0d", + "revision": "4705cd5edcdf4fe88671cc79", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -6991,10 +6991,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "7cca7bdde55b471eb253ea68", + "revision": "5a2162934a4b486fa4f46243", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -7002,10 +7002,10 @@ "content": { "type": 5, "value": "Saque de 1.357.502,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "1cc54280a8e94c71ab84ffbd", + "revision": "9cf4b5fd0f324f399e0ed546", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036318, + "modified": 1702563036318 } }, { @@ -7015,10 +7015,10 @@ "value": { "costs": {} }, - "revision": "c788457f1ddf4059b27f3934", + "revision": "21292b7d7803416d93977fa1", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7060,10 +7060,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "c3479418bb6947e0be55bdea", + "revision": "d9ca2fca420843339738effc", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7071,10 +7071,10 @@ "content": { "type": 5, "value": "Saque de 754.612,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "b9b7d5397ddc489a88646633", + "revision": "4b24b7c87304448eb9100ae0", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7084,10 +7084,10 @@ "value": { "costs": {} }, - "revision": "dca47e4a24494a48ab7efdde", + "revision": "2c6e61c156dc4e8cbd011163", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7119,10 +7119,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "23a64b064f434d96af437955", + "revision": "252a0121a1e74f169dc9287b", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7130,10 +7130,10 @@ "content": { "type": 5, "value": "Saque de 1.432.864,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "b400fa4409494c578ea6bfe4", + "revision": "747ce9fd5e6948be8c07baa3", "revision_nr": 1, - "created": 1701809344830, - "modified": 1701809344830 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7143,10 +7143,10 @@ "value": { "costs": {} }, - "revision": "15f2454581174d48917310fd", + "revision": "5d99fb4740964ad7bf50d3b9", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7183,10 +7183,10 @@ }, "money_release_status": "rejected" }, - "revision": "c962400510454444a8fd4918", + "revision": "05b387aeac4749eaadc5c39f", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7194,10 +7194,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.248,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "3a82ff9363ba429b8624b016", + "revision": "dbd439af867e487f8b08da5e", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7217,10 +7217,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "4a358e76a5d143ebbde3793a", + "revision": "ba4ce0418bc844119a72fdb1", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7256,10 +7256,10 @@ "history_id": 1685391703693, "description": "Compra de 15,00 IVIP por 150,00 IVIPAY" }, - "revision": "b86aeb724f9941759a163548", + "revision": "bf8abf9486b440b881eaa583", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7279,10 +7279,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "79bd1e0edb8d4b1cadd4f661", + "revision": "c8180c43ce73444fa054a314", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7318,10 +7318,10 @@ "history_id": 1685392276817, "description": "Compra de 5.000,00 IVIP por 50.000,00 IVIPAY" }, - "revision": "6c9f51b3935d48fbab2f1470", + "revision": "bbd8fb00ceca438494913615", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7341,10 +7341,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "82d0ceb4c4aa4183ab122603", + "revision": "bf6d6e6687694affb8440f3b", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7380,10 +7380,10 @@ "history_id": 1685393515405, "description": "Compra de 500,00 IVIP por 5.000,00 IVIPAY" }, - "revision": "6f4ac8206f764e64be08088c", + "revision": "5c0af86141e04192859cfdc1", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7403,10 +7403,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "f45ecc48a4164907858884f4", + "revision": "54719f6e5ebf4d069ddec7a5", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7442,10 +7442,10 @@ "history_id": 1685393559293, "description": "Compra de 5.200,00 IVIP por 52.000,00 IVIPAY" }, - "revision": "3faa1529619a4db795dca94c", + "revision": "71c6263272da4f268fda90c3", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7465,10 +7465,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "70b8a05fc9174cc284cabe61", + "revision": "7e1832bd2e0645099b96d8a0", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7504,10 +7504,10 @@ "history_id": 1685394959774, "description": "Compra de 4.200,00 IVIP por 42.000,00 IVIPAY" }, - "revision": "c9a802454fca4312a53c943a", + "revision": "bdbaacc4bbd6466cb1069e25", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036319, + "modified": 1702563036319 } }, { @@ -7527,10 +7527,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "d48b0c9158f44a5d8b62871a", + "revision": "a7141a74e9724f94b94c5e8e", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -7566,10 +7566,10 @@ "history_id": 1685395256711, "description": "Compra de 9,00 IVIP por 95,00 IVIPAY" }, - "revision": "d9e26b620f374ee6b6e12843", + "revision": "9e1ccb72ba134cdbabc264ba", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -7589,10 +7589,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "fc581233bf584eccb65ddd47", + "revision": "9780beb011bc42e59ce969db", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -7627,10 +7627,10 @@ "currency_id": "IVIPAY", "history_id": 1685395602952 }, - "revision": "6ab08d46911b4772b15afa08", + "revision": "3542676c43284a7b945854ab", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -7638,10 +7638,10 @@ "content": { "type": 5, "value": "Compra de 10.000,00 IVIPAY por 1.000,00 IVIP estabilizando US$ 0,09", - "revision": "6b33e13d0cd14fb698cf792f", + "revision": "1645a63cc7284fc29d381f0b", "revision_nr": 1, - "created": 1701809344831, - "modified": 1701809344831 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -7661,10 +7661,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "9acc4d21a11349398e6d7b31", + "revision": "cf8a7a98744247fc9e921659", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -7700,10 +7700,10 @@ "history_id": 1685395698830, "description": "Compra de 1.000,00 IVIP por 10.000,00 IVIPAY" }, - "revision": "ea831cefc86b4d42affb4891", + "revision": "296cabc7f2a44065ad71ab3d", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -7723,10 +7723,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "9f15b96419bf4525b014d446", + "revision": "f7f350da62fd49f2ab4ae38a", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -7761,10 +7761,10 @@ "currency_id": "IVIPAY", "history_id": 1685457147497 }, - "revision": "a7c9fb56445b41f7981a1de3", + "revision": "6b233a020fe14fe68a8336f9", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -7772,10 +7772,10 @@ "content": { "type": 5, "value": "Compra de 30.000,00 IVIPAY por 3.000,00 IVIP estabilizando US$ 0,22", - "revision": "014a77265a63496fb7f9ebf0", + "revision": "71a577fd37324ec3a0a3d2bd", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -7795,10 +7795,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a2b54aa8566046999dd43d9a", + "revision": "86b2e96892cf49e7bf900680", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -7834,10 +7834,10 @@ "history_id": 1685457225462, "description": "Compra de 3.000,00 IVIP por 30.000,00 IVIPAY" }, - "revision": "23dd2b5b83a945cfa928de0c", + "revision": "30fef6336ec8430b93e63d8c", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -7857,10 +7857,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "0a19d35bf38148909984019e", + "revision": "15e9980eb53346e6a698f810", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -7895,10 +7895,10 @@ "currency_id": "IVIPAY", "history_id": 1685458042396 }, - "revision": "99eb9c873b8b4277ad769954", + "revision": "e0dcac51ab3a44ee8a266564", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -7906,10 +7906,10 @@ "content": { "type": 5, "value": "Compra de 70.000,00 IVIPAY por 7.000,00 IVIP estabilizando US$ 0,46", - "revision": "a7401b072ec4460c85259c46", + "revision": "b4757faa31a34bae80a57961", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -7929,10 +7929,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "f1735d8a6d9a4b528916dd34", + "revision": "c4af2b6914d24a1bb9650294", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -7968,10 +7968,10 @@ "history_id": 1685458118470, "description": "Compra de 7.000,00 IVIP por 70.000,00 IVIPAY" }, - "revision": "63105604df884674ab7502bf", + "revision": "df5c0aaf02394bbf8394ab56", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -7991,10 +7991,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "be6a9d5c044746e19f3091d2", + "revision": "542a72d3e3b3477ca5e7fcf0", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036320, + "modified": 1702563036320 } }, { @@ -8030,10 +8030,10 @@ "description": "", "wasDebited": true }, - "revision": "0e16f2ff77014e589abac27a", + "revision": "2d9f31b2543c4e8b9511e4f5", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8053,10 +8053,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "05bcaa99f0174fd4a6c275cc", + "revision": "ff96ae99797f42e9a8ab99da", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8092,10 +8092,10 @@ "history_id": 1685732640623, "description": "Compra de 0,00 IVIP por 75,00 BRL" }, - "revision": "af4b69b9b99045f7a9583c64", + "revision": "20c16bda0ec34ef0a8ccc272", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8105,10 +8105,10 @@ "value": { "costs": {} }, - "revision": "bb07c57de49244a784cc472f", + "revision": "5e0c07ac0e004a4185982793", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8140,10 +8140,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "8e9330be1d3d498997d17587", + "revision": "ecea389733be4850b59a586a", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8151,10 +8151,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 220,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "7d169a6de4be4adc87bfc055", + "revision": "c0ad44e7daf64fd9956f5e8d", "revision_nr": 1, - "created": 1701809344832, - "modified": 1701809344832 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8176,10 +8176,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "66d9564c0134486b94bb4ac0", + "revision": "b480c134871d4b1d8fe865ae", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8215,10 +8215,10 @@ "currency_id": "BRL", "history_id": 1687279230710 }, - "revision": "296dbd8bed3e457cbe5ac400", + "revision": "38446e472ae846ca9207975e", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8226,10 +8226,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 3 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "1b8a12c50c5f4a4fb2cb57e9", + "revision": "ee6e861c1c5e40bdbfab9000", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8239,10 +8239,10 @@ "value": { "costs": {} }, - "revision": "eb4fca604d5646508969a09f", + "revision": "18714e34eacd4c6b9a26c612", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8274,10 +8274,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "c87c6118cab6448093c6a94c", + "revision": "5d84326e27294b54981a0ab2", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8285,10 +8285,10 @@ "content": { "type": 5, "value": "Saque de 865.324,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "9b33910f8db441df938151ed", + "revision": "2ff78ea507a448d2a4414114", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8308,10 +8308,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "b35626d9cba943e7a3fb491c", + "revision": "57f64418fa8b472fae158402", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8346,10 +8346,10 @@ "history_id": 1688400997533, "wasDebited": true }, - "revision": "e84551122c8f475fa63d78da", + "revision": "fe3789c947984a418b3b6c73", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8357,10 +8357,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 100.000,00 IVIP com um rendimento de +2.000,00 IVIP (2,00%)", - "revision": "4055c79c7816490689a03d8e", + "revision": "bb3508f2a4684fd492f6f855", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8380,10 +8380,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a4794f01b7fe4569b166d2d3", + "revision": "8c93c64902f44d83a3b0e27f", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8417,10 +8417,10 @@ "currency_id": "BRL", "history_id": 1689203359364 }, - "revision": "c5a4cade1b744585b05f88f7", + "revision": "f8200469f53d423986e61dd5", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8428,10 +8428,10 @@ "content": { "type": 5, "value": "Investimento de 960,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/12/2024", - "revision": "6612eb2f02ea4d789e793887", + "revision": "2593ab5edbb0448bb8a34c88", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8445,10 +8445,10 @@ "value": 1692469402188 } }, - "revision": "8b55e42be5244e17976b2f9d", + "revision": "29becc97a3044baabc494616", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8466,10 +8466,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "830a0766c5194525b7d4cbec", + "revision": "84ccb407cc90419da7e117c8", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8477,10 +8477,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/extract/000523147298669313/order/1689877402188", - "revision": "b6bc9d323af44830bf8570e1", + "revision": "6b504c51cf254aaf8870d426", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8510,10 +8510,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "7b69af42ef2b473ead4d298e", + "revision": "3ff49ea914034dceba49c4a2", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8521,10 +8521,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 7.104,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "177ece111ec141b789b58f3f", + "revision": "47a8a1c1c0d841bab6228470", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8538,10 +8538,10 @@ "value": 1692475284161 } }, - "revision": "23af8fbcc7ee46a68dc17977", + "revision": "650c7565e4874b31ae80e0a3", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036321, + "modified": 1702563036321 } }, { @@ -8559,10 +8559,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "10134a31d09348a789c348f9", + "revision": "f30ea67999ab46d0b2357b59", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8570,10 +8570,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1689883284161", - "revision": "f7e3683f17b2495a9c814fd5", + "revision": "c54e06091c334c9e866bbdcb", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8609,10 +8609,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "c062b6b817774e0ab0d8b327", + "revision": "da69233a4ab84e35b1c0c629", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8620,10 +8620,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.391,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "b1d1ce1d206046fbb102dc29", + "revision": "68f1fd6388fd4780afd602bd", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8635,10 +8635,10 @@ "label": "Taxa de 3%", "amount": 145.5 }, - "revision": "c79d2028d5744c33a611c74f", + "revision": "b70a9edc883d4b3f9debb57b", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8655,10 +8655,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "3d2031672713419bb461b116", + "revision": "f8e30df5f009433dae043aa1", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8666,10 +8666,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566158772", - "revision": "6eb2a67a45ef412abc2a1cde", + "revision": "e2a6c5a7d95b46eda9866ca4", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8677,10 +8677,10 @@ "content": { "type": 2, "value": {}, - "revision": "92e75a64ef2c4ee880843948", + "revision": "4071acf251d343a1ba2b566b", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8720,10 +8720,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "73394c622b664294a506cd9b", + "revision": "2f178857adde4b9a91ab128a", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8731,10 +8731,10 @@ "content": { "type": 5, "value": "Saque de 50,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "c9756c9d62f04de6bcab5a4d", + "revision": "4353aee16ee2487d8dd74e9e", "revision_nr": 1, - "created": 1701809344833, - "modified": 1701809344833 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8746,10 +8746,10 @@ "label": "Taxa de 3%", "amount": 29.099999999999998 }, - "revision": "2912d682dfbd4634aa7e5c79", + "revision": "0216608e026947489e0c2876", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8766,10 +8766,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "5c44644eec754cccaaae33d2", + "revision": "aec0c5cbddad4f66ad013497", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8777,10 +8777,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566489489", - "revision": "330f19e0d30446b69c891282", + "revision": "ada76f489f9c468e8740ca99", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8788,10 +8788,10 @@ "content": { "type": 2, "value": {}, - "revision": "9af200ae9c5a46ae88a62ac1", + "revision": "95f1d5439981416bb60dc747", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8835,10 +8835,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "dc92ff56e05d4f278d546f52", + "revision": "5b6969b49a744f16aa26ac34", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8846,10 +8846,10 @@ "content": { "type": 5, "value": "Saque de 10,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "deca9050d2d44478a797c396", + "revision": "03b827dc71624f97b409b88b", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8861,10 +8861,10 @@ "label": "Taxa de 3%", "amount": 34.92 }, - "revision": "e859e7b38e6645dba8e4022f", + "revision": "677ae0a5abeb44e187d7a25d", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8881,10 +8881,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "8600e2fe62c948fab93a0204", + "revision": "889fde33127449ac9f7ee5f2", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8892,10 +8892,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690566618435", - "revision": "5d0859d97eff46c6ad4928a0", + "revision": "42877c9baf0b4d2e84d5a41b", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8903,10 +8903,10 @@ "content": { "type": 2, "value": {}, - "revision": "e6462107867247209e99d83b", + "revision": "11b1f500ffd54706a0066f35", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8946,10 +8946,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "e40e9797e3fc470b953aa7da", + "revision": "9bbaf9c8e2484d1ba01082b1", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8957,10 +8957,10 @@ "content": { "type": 5, "value": "Saque de 1164 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "4a1952d26c7f4307a065ebcd", + "revision": "4d7e3e5c26b2474ba426b97e", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8972,10 +8972,10 @@ "label": "Taxa de 3,00%", "amount": 392.84999999999997 }, - "revision": "38f8553081f64fdc98ffbce5", + "revision": "25a8e2972be54f058848820f", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -8992,10 +8992,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "63aa117b3b0841338a1562cb", + "revision": "b280a1aa8e484038ab7ab7f0", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -9003,10 +9003,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1690568586623", - "revision": "f0b9beb39858496aaddc9b03", + "revision": "402ee296ce6e49d99fc26d1c", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -9014,10 +9014,10 @@ "content": { "type": 2, "value": {}, - "revision": "c2dc75b20b6f4b0a926ed7e8", + "revision": "712c276e025d49faa27b3cb9", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -9057,10 +9057,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "a2480cc07d1e41d7aa586797", + "revision": "f076be9c5a0547a0a9d365bc", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9068,10 +9068,10 @@ "content": { "type": 5, "value": "Saque de 13.095,00 IVIP para a carteira 0x0000000000000000000000000000000000000000", - "revision": "d5f8dad892b342c28e0dde61", + "revision": "54436e7786c34de7aece5065", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036322, + "modified": 1702563036322 } }, { @@ -9089,10 +9089,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "15f83413027b4a938aad4b64", + "revision": "8970f4649de44c3b91435a48", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9100,10 +9100,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1691685725174", - "revision": "131a0e02b97543e29963e885", + "revision": "7e825141a3774d0393387e7f", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9138,10 +9138,10 @@ "description": "Compra de 155.950,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "eea10aa8384d4915a6eb781a", + "revision": "82d42deb8c044d258a86cc1b", "revision_nr": 1, - "created": 1701809344834, - "modified": 1701809344834 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9155,10 +9155,10 @@ "value": 1694889623442 } }, - "revision": "220b03df7c79438e9676476d", + "revision": "27466a476e51416a980f1737", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9176,10 +9176,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4c3e3c53d76d4591952e0155", + "revision": "1fe308d813c545bba53468a1", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9187,10 +9187,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692297623443", - "revision": "df352e1cec1d43e9848c7294", + "revision": "0747ad3c27fd4ee887f33e43", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9220,10 +9220,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "cd0f79b5769d487882220d30", + "revision": "89337539dd2f4c90b2c33fca", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9231,10 +9231,10 @@ "content": { "type": 5, "value": "Deposito de um valor 50,00 para a carteira iVip 0005.2314.7298.6693-13", - "revision": "25bc48d0ff6240ce94f3c3ec", + "revision": "f92f834b5693419182f4e525", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9248,10 +9248,10 @@ "value": 1694889768550 } }, - "revision": "eaa1dd8436fa4d6882176bad", + "revision": "1129cd79068b466d9d1d3abf", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9269,10 +9269,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1af6287c058443b49450e5b2", + "revision": "1addfd3e5d1242b4bc11ffe4", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9280,10 +9280,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692297768550", - "revision": "21e75787d7304b74907d5d03", + "revision": "839ef57c920b43f1aa387b9f", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9319,10 +9319,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "7aec519ff78b4578aba6876d", + "revision": "2b5b8f6e068c4999a152e855", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9330,10 +9330,10 @@ "content": { "type": 5, "value": "Deposito de um valor 25,00 BRL para a carteira iVip 0005.2314.7298.6693-13", - "revision": "f4253b0b68fc4f12a81f5cf0", + "revision": "c0d5bdc88c294eb78f00a348", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9347,10 +9347,10 @@ "value": 1694896646621 } }, - "revision": "3af723e747984208980a23ed", + "revision": "775d0ea0b6af491388c64f63", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9368,10 +9368,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "861cf65c84fb425089232ad0", + "revision": "9679f2a5a42c49bd9bd9e986", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9379,10 +9379,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692304646621", - "revision": "40d10b1a1a0541a6b5b1cd55", + "revision": "a6bea12d8d654bbfb6d203bd", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9418,10 +9418,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "7393331bb39c4e45b962f5f9", + "revision": "ca437a3f703e4d1ebc66f9ff", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9429,10 +9429,10 @@ "content": { "type": 5, "value": "Deposito de um valor 1.200,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", - "revision": "4532b64fb3984bc1a6306761", + "revision": "562a57be99304e3b8d4f08a9", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9446,10 +9446,10 @@ "value": 1694896893953 } }, - "revision": "8741865cd1d24635aec3d306", + "revision": "6e7069bc097242cb9843d65b", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9467,10 +9467,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8c93d8958d7446dd971d4128", + "revision": "1ec84f18081344f8bf59c32f", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9478,10 +9478,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692304893954", - "revision": "c34d2bdf98c44c09addc3340", + "revision": "eaca2eece97d46cfb18ed672", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9521,10 +9521,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9209ae18a413468da888e385", + "revision": "3e608126f4cf4e35b923dedc", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9532,10 +9532,10 @@ "content": { "type": 5, "value": "Deposito de um valor 23.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", - "revision": "a8f1d6895e364058bc13bdbb", + "revision": "1451412186b345a1bf8a5e53", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9549,10 +9549,10 @@ "value": 1694905618376 } }, - "revision": "75ab4975561247099f8b8030", + "revision": "e8eba8b670074f93a155977e", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9570,10 +9570,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "6ff2c88d870c4aba9c0dcf05", + "revision": "37ff0c866fde47a891a217b9", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9581,10 +9581,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692313618376", - "revision": "d8557d8bdb2e4d49a263b789", + "revision": "e09cad549088401cb4a680ee", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9614,10 +9614,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "5a60637c2e674da8b5dc6849", + "revision": "ad3e29cab7734053a0a4c3a0", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9625,10 +9625,10 @@ "content": { "type": 5, "value": "Deposito de um valor 10.000.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", - "revision": "2a22a39c024b4be2bcad8efd", + "revision": "23faee45548a402eaa011939", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9642,10 +9642,10 @@ "value": 1694960186664 } }, - "revision": "8401e7b48d2c4c44a381e06b", + "revision": "cc6c4df0af004aab96d8cd3c", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9663,10 +9663,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "adced130647d49f28114a0bc", + "revision": "65d7e70c8eb047db881a14d0", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9674,10 +9674,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692368186664", - "revision": "afcb7bdbb0834727a9073efc", + "revision": "7cc272a29881460a82b8f622", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9707,10 +9707,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "b0fd7fe570ad4573aca05e05", + "revision": "b70915282ed34b3aa821d55a", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9718,10 +9718,10 @@ "content": { "type": 5, "value": "Deposito de um valor 125.000.000,00 IVIP para a carteira iVip 0005.2314.7298.6693-13", - "revision": "4d788e5610f649b19d1728e6", + "revision": "d856bd95a61b49aea4614e13", "revision_nr": 1, - "created": 1701809344835, - "modified": 1701809344835 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9741,10 +9741,10 @@ "installment_paid": 3, "installments_payable": 1 }, - "revision": "7c433b257e90414fad1c70ff", + "revision": "0ddaec8e9194404686a8b714", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -9752,10 +9752,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651485901", - "revision": "6c0349ca57c44eb9b228b75d", + "revision": "8259bc3ce31146a283b20da0", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9789,10 +9789,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "e13e9fee76164cc1abd8cb9a", + "revision": "16da29ca839542e8a823af38", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -9800,10 +9800,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 3 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", - "revision": "8a3e386e8952434f9f5e38fb", + "revision": "7ac8d3de688d4b068a5cc85b", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036323, + "modified": 1702563036323 } }, { @@ -9823,10 +9823,10 @@ "installment_paid": 4, "installments_payable": 2 }, - "revision": "447e28c0bb5e4eb2bb738e8b", + "revision": "9bed4ef0bd794cd180cae03e", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -9834,10 +9834,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651487214", - "revision": "9244fe4dc8a54859a4bdf925", + "revision": "4554cceb8b2b4daf85b7a205", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -9871,10 +9871,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "802ff27fad9f423b99972475", + "revision": "dbcad9bd4f8b4503945168dc", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -9882,10 +9882,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 4 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "ec4749b29b8f4d9c8c7bf1c7", + "revision": "4f8ded954cb84fbe89c19845", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -9905,10 +9905,10 @@ "installment_paid": 5, "installments_payable": 1 }, - "revision": "64e59b4c7d05412fb85c3666", + "revision": "055cb509d7554b36bf209b24", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -9916,10 +9916,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692651816060", - "revision": "5901b179d27c4cacb097f7be", + "revision": "6320917fd6d8457eb9e02536", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -9953,10 +9953,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "7e87beefc7904bab8f2c9a68", + "revision": "d7be02a7b11f483888cf3e66", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -9964,10 +9964,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 5 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "68fe5b7994dc47f38d32954a", + "revision": "6040d1cff05746279da34d6e", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -9987,10 +9987,10 @@ "installment_paid": 4, "installments_payable": 0 }, - "revision": "5b211591424940309826ebbe", + "revision": "d7c7dfd1da8246a3824da257", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -9998,10 +9998,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692658113429", - "revision": "ce160dfc49f74cbc9b0ea6ff", + "revision": "2c15f18d92d645a58f928280", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10035,10 +10035,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "ed9b847049bb4f9ebe5f42f5", + "revision": "7398a4491c084958ba8e0b2f", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10046,10 +10046,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 4 de 4 no valor de 114,75 BRL referente ao contrato 1679181157805", - "revision": "438286b12e1747469e82af48", + "revision": "59f2e476fd264db798a1ea70", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10061,10 +10061,10 @@ "label": "Taxa de 3,00%", "amount": 660000 }, - "revision": "af04a6a50b9048d9a2f1732f", + "revision": "fb4ff4a3bc6047fb9bd86d93", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10081,10 +10081,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "67fe54f412ec4864a7015295", + "revision": "8f657129846f438d9aa2e8f4", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10092,10 +10092,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1692976623136", - "revision": "8d56949d6e6d41d098a928dd", + "revision": "ed950330236b429ea0b523d3", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10103,10 +10103,10 @@ "content": { "type": 2, "value": {}, - "revision": "f4ea2854822c41a597973db8", + "revision": "40b4a51f0a8d495fa5e7fac2", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10150,10 +10150,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "a34aa89c31c64c09972461e6", + "revision": "9ccb91d76c024b908949de32", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10161,10 +10161,10 @@ "content": { "type": 5, "value": "Saque de 21.340.000,00 IVIP para a carteira 0x15a315a0f6917CA88693fDCCD4B753E051c2d173", - "revision": "2592534b002a42d9bb8a83be", + "revision": "b862285e985043d7b1a20fb1", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10182,10 +10182,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a9f32fa23a88490f880814e7", + "revision": "9c3c58fc5d984705a8aebcdc", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10193,10 +10193,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1693346357974", - "revision": "07f4f7205201428f8a64596e", + "revision": "6cf28d7c36624392871398eb", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10230,10 +10230,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "7d80180949da43e996cc22be", + "revision": "51962b23bfbf4b0387e4a6e4", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10241,10 +10241,10 @@ "content": { "type": 5, "value": "Investimento de 2.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 29/08/2025 - P9A02KSL", - "revision": "3105ddb7fbf14d9eaf5ac2b6", + "revision": "2e4fe106258743e686a218fa", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10262,10 +10262,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ac75bd021b8f4ceb9d1917d0", + "revision": "180cb981126940b0a422a0d7", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10273,10 +10273,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1693765839188", - "revision": "c645f41e573c4fb0a7aefb93", + "revision": "4a967bf6041b4efc90164f20", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10310,10 +10310,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "5cacbc81fb5746819a6bfd21", + "revision": "ad2897620f684a44b3ee438c", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10321,10 +10321,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "f95b48f3a4484f1384b89eaa", + "revision": "be2cfac513414e49b63c4b0a", "revision_nr": 1, - "created": 1701809344836, - "modified": 1701809344836 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10344,10 +10344,10 @@ "installment_paid": 5, "installments_payable": 1 }, - "revision": "9b5678553c4142cd8c3254a0", + "revision": "a6addbb836da433a8cbc3a43", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10355,10 +10355,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554040120", - "revision": "bcf13bda25fd421cb20bbeb6", + "revision": "9b26df7aa3b24377a33afeaf", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10392,10 +10392,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "e8f58841adcf4a1a8b99cc59", + "revision": "0487e2858c694837963d6a56", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10403,10 +10403,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 5 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "f67b2e1c97f64d24adecfcf4", + "revision": "7e235a34ad904a0d8aa34469", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10426,10 +10426,10 @@ "installment_paid": 3, "installments_payable": 0 }, - "revision": "5488cd32d4754521b06f286f", + "revision": "ad934bb68493462f8021bfe6", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10437,10 +10437,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554040222", - "revision": "d7792db129204e29a27c3dd5", + "revision": "e6820f3ed7e14611ab1fce62", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10474,10 +10474,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "605d07c57a934ee4b076128c", + "revision": "5a524fc51d5049b0b8a5c979", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10485,10 +10485,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 3 de 3 no valor de 70,67 BRL referente ao contrato 1683667472591", - "revision": "862133316846495d84e554bb", + "revision": "68b4ea9f8da44fbcbe745093", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10508,10 +10508,10 @@ "installment_paid": 6, "installments_payable": 0 }, - "revision": "7e94a1b23c31433f94b4ebf5", + "revision": "900ec180a64e4b3384c783da", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10519,10 +10519,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1694554084107", - "revision": "88f7e48f59774b6c960f02ab", + "revision": "685dd521c42243aa9113c40b", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10556,10 +10556,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "fa61a53dedab4cbab840893a", + "revision": "47d695ce1987403f801d167a", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10567,10 +10567,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 6 de 6 no valor de 37,33 BRL referente ao contrato 1679181025084", - "revision": "9d89b2a471494a25ad93a7f6", + "revision": "1e89af27bf814786a40d4a3b", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10588,10 +10588,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "0063b39182e4488882b9bfaa", + "revision": "e2785fd4c6d64678bc2ca0f6", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10599,10 +10599,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696114300558", - "revision": "cd8969be820c476ea501f702", + "revision": "a4eaee02a31843b0ba6e5d85", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10638,10 +10638,10 @@ "description": "Ganho de 100.000,00 IVIP pelo VOUCHER", "status_detail": "accredited" }, - "revision": "6e90ea69fa0f4546861a9f04", + "revision": "ec9d903e755b4937849f486c", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10659,10 +10659,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1ee4a292cfbd4e7280f77347", + "revision": "71ec0277072649dab659e95f", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10670,10 +10670,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696118036096", - "revision": "a51fb348c4fb4d45ad686b4c", + "revision": "a5115c005e284e4bb9317a13", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10708,10 +10708,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "6669aa4f39804e06a058d323", + "revision": "19417638b19f462798912a28", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10719,10 +10719,10 @@ "content": { "type": 5, "value": "Ganho de 100.000,00 IVIP pelo VOUCHER com o número 1037", - "revision": "b6f1280219d64d14b9690853", + "revision": "5ac925fc0a2f4fdf952469d5", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10740,10 +10740,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "35f12135a35049bdaf45d2b1", + "revision": "65f87191dadd43dcb58a287f", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10751,10 +10751,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696118157622", - "revision": "de4de16897b1446793ae8e56", + "revision": "10843487eed14f738811e7f3", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10789,10 +10789,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "e722c4cd7ca348a9b9324519", + "revision": "b8af70bb83a94b9d9cddf70f", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10800,10 +10800,10 @@ "content": { "type": 5, "value": "Ganho de 50.000,00 IVIP pelo VOUCHER com o número 0023", - "revision": "b19f6d39c6f940ee8c4b8e05", + "revision": "49a85d8c726143fe85a6c830", "revision_nr": 1, - "created": 1701809344837, - "modified": 1701809344837 + "created": 1702563036324, + "modified": 1702563036324 } }, { @@ -10821,10 +10821,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a6eb419a30c84ce0b7098387", + "revision": "d2c323bb9c7a47fe867d7e5c", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -10832,10 +10832,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696360843684", - "revision": "66016d435b83446dbee5e0fd", + "revision": "98a3fd308bef4509bcc1c3f0", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -10870,10 +10870,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "fe7e46d24ae84839b8147a28", + "revision": "dc1bdbd0501e434fa2426607", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -10881,10 +10881,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%) - Y12XDT27", - "revision": "bff58bf8fa6f4280bc39e743", + "revision": "b625247c70bf4e2f904b9627", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -10902,10 +10902,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "77a8c374a8d9425b9d70d71a", + "revision": "b690813356f14eee9821e76c", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -10913,10 +10913,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/000523147298669313/history/1696362317186", - "revision": "57cfdb885f5e4929bfdbad7a", + "revision": "1738994322f744068e4dcddf", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -10951,10 +10951,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "a1f58323a9b84b288f213cef", + "revision": "9308f3e5c8b4448bb3639a4c", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -10962,10 +10962,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%) - Y12XDT27", - "revision": "284f1bbcb171434f86fea42f", + "revision": "2c6f77b0293446b4afaecbcb", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -10973,10 +10973,10 @@ "content": { "type": 1, "value": {}, - "revision": "97900a6706f04871ad543767", + "revision": "ddd36dba405e472da08568fb", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -10988,10 +10988,10 @@ "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "2dea06daee544e4eb143035b", + "revision": "5acecc4e77c048f2918b61fc", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11013,10 +11013,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "ec56484b498349d8bc7022d7", + "revision": "af273e92578a404697bc4440", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11024,10 +11024,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "a89031d527fd4c2a81d20d31", + "revision": "8bb841a8181e408c86a758fe", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11035,10 +11035,10 @@ "content": { "type": 2, "value": {}, - "revision": "74273c445af64c589300ab96", + "revision": "c3b174cb537347b1909b1894", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11050,10 +11050,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, - "revision": "be4ad627ab8140a4aa1d8e63", + "revision": "746a39ae44544700b4a21689", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11075,10 +11075,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "90007b5c75ba4f7784506288", + "revision": "911cf93366d84c1eacd9dd10", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11086,10 +11086,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "ae65b2b443b04ffcba420a5f", + "revision": "12cb18d314494233bb83ef72", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11097,10 +11097,10 @@ "content": { "type": 2, "value": {}, - "revision": "8669dbde111a4fba80f43350", + "revision": "0b67be802e9944da9c2d9dce", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11112,10 +11112,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 9.200000000000001 }, - "revision": "f6208c7965b0447ba6c3a39e", + "revision": "9e57692eedc04eaca08296b5", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11137,10 +11137,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "4081585797fc4bd1976157e3", + "revision": "73a4496b159d40f4b3b35a21", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11148,10 +11148,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", - "revision": "5fac143ea43140d782f1f91b", + "revision": "d928abe6bf6c428ead36bf1f", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11159,10 +11159,10 @@ "content": { "type": 2, "value": {}, - "revision": "7d9bec7c73d84bb58a42f42a", + "revision": "5af1b7e6a15143c685f7c938", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11174,10 +11174,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 8 }, - "revision": "47ea45e58af84f34810a37d9", + "revision": "5c8dd1294beb45119a051ad8", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11199,10 +11199,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "6c6671b11683483bbe9eccde", + "revision": "23fcddd83d9e41c19523d71c", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11210,10 +11210,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", - "revision": "afe484e9af18410295f0260f", + "revision": "744cca22fb3448d9bff4b19d", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11221,10 +11221,10 @@ "content": { "type": 2, "value": {}, - "revision": "d9673ee239144c11bdb4775c", + "revision": "ecfbfd80c0184aa897bb6b77", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11236,10 +11236,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 8.4 }, - "revision": "48815f16e480476f82ec39eb", + "revision": "8fb7a282ded2422ca38cedf9", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11261,10 +11261,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "9a3c790018924162ab2cb257", + "revision": "270effa7d59848d89f48302b", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11272,10 +11272,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", - "revision": "1f6b34e43d39407d9c079ddc", + "revision": "479922666a5c4a2c8128d8df", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11283,10 +11283,10 @@ "content": { "type": 2, "value": {}, - "revision": "4301c722f9a1410e9868be60", + "revision": "1319dc04acca4a93a93311c7", "revision_nr": 1, - "created": 1701809344838, - "modified": 1701809344838 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11294,10 +11294,10 @@ "content": { "type": 1, "value": {}, - "revision": "13ff00d5a95f44bb9595cd71", + "revision": "10c6434b18db4cb59a78917c", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11309,10 +11309,10 @@ "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "300078f62fc94e57a1fe0a44", + "revision": "33234588f15448cea0e6e813", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11334,10 +11334,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "2e741e1f4fa246ee914fb1da", + "revision": "ba3b6e894b244f1081b173c8", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11345,10 +11345,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "e8cb778d47414aeba0446101", + "revision": "57cd00d974a0434ea24af23d", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11356,10 +11356,10 @@ "content": { "type": 2, "value": {}, - "revision": "5b26fbc5254d47cab8813f3b", + "revision": "c40580c4a55a4c6d9c95bbab", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11371,10 +11371,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, - "revision": "8a8ff04693594e138b64ba27", + "revision": "3e0464638bd34554b11d1728", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11396,10 +11396,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "a4a55f5cfc504440a99bba3b", + "revision": "406ad54c510747919c1c9825", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11407,10 +11407,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "f979b20ac6044713930a280c", + "revision": "594d4adca8944a4489dccc47", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11418,10 +11418,10 @@ "content": { "type": 2, "value": {}, - "revision": "2c38de6b41764f15af7a8a54", + "revision": "52747ee98cc04c1c8c0d9208", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11433,10 +11433,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 9.200000000000001 }, - "revision": "e7512001a9904541874cf635", + "revision": "0ede2c9505144c8481ce7469", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11458,10 +11458,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "8d68965ba2dd46ada77a2e5d", + "revision": "841b349e48184ca39ff9cb74", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11469,10 +11469,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 230,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 239,20", - "revision": "705fc458e7ba47b98a654a05", + "revision": "847fb5dafdd943e3b3782918", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11480,10 +11480,10 @@ "content": { "type": 2, "value": {}, - "revision": "f018a087f51b4bb0b90bde45", + "revision": "e35ca29bf52848398b820682", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11495,10 +11495,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 8 }, - "revision": "57287ab3e8c44b049183c55c", + "revision": "22d882aba4554372a1e20ea1", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11520,10 +11520,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "a6c7a2dc3cea456fb131cec7", + "revision": "dd38258289d140b29ca0d36a", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11531,10 +11531,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 208,00", - "revision": "0b67f932c8804971986cdcac", + "revision": "defbdb235b0c4b6788a01659", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11542,10 +11542,10 @@ "content": { "type": 2, "value": {}, - "revision": "3d09fb42d32345059047d8d4", + "revision": "d83b7ecf6ce146ab8466561b", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11557,10 +11557,10 @@ "label": "Em 2 parcela(s) 4.00%", "amount": 8.4 }, - "revision": "8ef092a7b77641f6a1f7f405", + "revision": "951b41fce52f4d819230a2a6", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11582,10 +11582,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "a1eab54d0ce9465287f1322f", + "revision": "271e22bdb1934a07ac93d5eb", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11593,10 +11593,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 210,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 218,40", - "revision": "6b82664405754aa0ad0d0a46", + "revision": "656cc97e79c6459790282ceb", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11604,10 +11604,10 @@ "content": { "type": 2, "value": {}, - "revision": "262a8321696d4eb881ca35b6", + "revision": "6284b0be56014fdc96864ac1", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11615,10 +11615,10 @@ "content": { "type": 1, "value": {}, - "revision": "c3001599a47b494ab6a0cb85", + "revision": "65f992302c7643e9b117320e", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11630,10 +11630,10 @@ "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "fd56c8f6f2e140018db94bba", + "revision": "334522de923b4faba5605433", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11655,10 +11655,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "1aaaeef28ea04b3c89c901c3", + "revision": "8fcc38db3e10471d9f1c7574", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11666,10 +11666,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "0056659f02254a14ab87e73a", + "revision": "8a7d5116aaa4498182d188a8", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11677,10 +11677,10 @@ "content": { "type": 2, "value": {}, - "revision": "04e4c8348527460698301211", + "revision": "6bf08af00cc24e498ae72bd2", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11692,10 +11692,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, - "revision": "a67659aa81b144c8b7717485", + "revision": "cb7fd9aff83f4dde88dc7d84", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11717,10 +11717,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "ab3f7b9b3e2e49388a5461d4", + "revision": "57aaa9512d274e0e8e105284", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11728,10 +11728,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "f5e93561bfda459f9b3d754b", + "revision": "3a75ffa6b03e46c5b9f1b7f9", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11739,10 +11739,10 @@ "content": { "type": 2, "value": {}, - "revision": "c692d6d1cfb3437fab777b1d", + "revision": "0fd55e3e64e64b44995a4bb0", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11754,10 +11754,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 4 }, - "revision": "4715141246a044ff8f1385b0", + "revision": "32fea4f10f364472b58e75a7", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11779,10 +11779,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "e5ca1449bda64796b235e9d2", + "revision": "4cc8b10e8b4c4160b33c94a9", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11790,10 +11790,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 204,00", - "revision": "4ce35869ed7d46bc8cff241a", + "revision": "847c1a6b89af443a9a144f72", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11801,10 +11801,10 @@ "content": { "type": 2, "value": {}, - "revision": "3f7430f87796486bad5e8ff1", + "revision": "e3dd764566464f62827b7288", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11816,10 +11816,10 @@ "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, - "revision": "34f0713e7a9a4329a3a194e5", + "revision": "ddb2001e5fe0458e8f2c8434", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11841,10 +11841,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "13a54c862edd4e0daf65398c", + "revision": "d5313ef949954d3fae76e8bd", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11852,10 +11852,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", - "revision": "dd7b53df25d34897bde7e929", + "revision": "0cdc1c6e7f5b4757b458800a", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11863,10 +11863,10 @@ "content": { "type": 2, "value": {}, - "revision": "e625cfca543d487a827bfe1b", + "revision": "1cccb7ec765845788459c4bb", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11874,10 +11874,10 @@ "content": { "type": 1, "value": {}, - "revision": "cf99528f1ea04704bf5838c5", + "revision": "a0a9006f03ea4d72a572ff4a", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11889,10 +11889,10 @@ "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "8a896a2e0c754e04a4131826", + "revision": "646f736a21ef4931976f64d3", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11914,10 +11914,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "84e7e5df8e2b4a60ba566bdd", + "revision": "a43269f55eaa4204a76cf9f3", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11925,10 +11925,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "0d2df83b062e44b38f18c924", + "revision": "fce551a814ea4f81a9b2d4d8", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11936,10 +11936,10 @@ "content": { "type": 2, "value": {}, - "revision": "1aa82349d5d14d33a1066972", + "revision": "859a0e501b054eba8cb78aa5", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11951,10 +11951,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 51 }, - "revision": "61b213cbf4aa4aa6bb31ba85", + "revision": "6ae6708e1c594bf6829ea8b9", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11976,10 +11976,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "2ee80cbd2efa4f6e8a623718", + "revision": "c730ca37870e43cfa7096069", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11987,10 +11987,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 425,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 459,00", - "revision": "1bc82dbe155b40b0a1e071a2", + "revision": "e8cb862bd26b4eba84e30baf", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -11998,10 +11998,10 @@ "content": { "type": 2, "value": {}, - "revision": "6bdb361d3d4c4c45acb789e6", + "revision": "ff252f1e21bb42559e716f4d", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12013,10 +12013,10 @@ "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, - "revision": "d59b046944fb40739da22426", + "revision": "3ddaae750da344a99bf82aa7", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12038,10 +12038,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "d58f9b8a43dd4150bbe3edbd", + "revision": "088c4ed79a5048a8ba8de099", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12049,10 +12049,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", - "revision": "8cdb6feaa9d84bc382e6e10f", + "revision": "a6ead1a6e22c4d87aec8a69e", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12060,10 +12060,10 @@ "content": { "type": 2, "value": {}, - "revision": "7126e00b1f18426ebf6f968c", + "revision": "89f877872a584e209c828676", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12071,10 +12071,10 @@ "content": { "type": 1, "value": {}, - "revision": "b298e880f2d645e0a1098e92", + "revision": "34be3d59239e41468eed2575", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12086,10 +12086,10 @@ "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "2c28907891d34c22acfba3ea", + "revision": "e976eea7ce7c4bbb9a63f446", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12115,10 +12115,10 @@ "value": 1694554040136 } }, - "revision": "65b48bb4c3444d15b020fd8b", + "revision": "2757e197cd1d4907b1d3fc62", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12126,10 +12126,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "134c281caf604b0daee27c38", + "revision": "87a9b936a9b84274bd417c19", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12137,10 +12137,10 @@ "content": { "type": 2, "value": {}, - "revision": "e78d03f2f6d840668d8efbf8", + "revision": "166eba67a595421ea30ec410", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12152,10 +12152,10 @@ "label": "Em 3 parcela(s) 6.00%", "amount": 12 }, - "revision": "3f4d8d7a536f4fc38a8aa16e", + "revision": "b1ea4a229a894f58bb7eab82", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12181,10 +12181,10 @@ "value": 1694554040249 } }, - "revision": "28f414a1f1a34c86ab81fc11", + "revision": "0935b6cbf579488faaf036a1", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12192,10 +12192,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 3 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 212,00", - "revision": "686cbe57e02449fcb1ae05c6", + "revision": "34110ab642374feeb4263f2e", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12203,10 +12203,10 @@ "content": { "type": 2, "value": {}, - "revision": "bd044e70ad9e4dc2ab843c67", + "revision": "dd670460582b493da60232e9", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12214,10 +12214,10 @@ "content": { "type": 1, "value": {}, - "revision": "65362c98823642bc99a62f66", + "revision": "52bf18c7297a48f0b9a9ca0e", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12229,10 +12229,10 @@ "label": "Em 6 parcela(s) 12.00%", "amount": 24 }, - "revision": "36211ec609ee461eb6564407", + "revision": "8d88a613571a40439cc56898", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12258,10 +12258,10 @@ "value": 1694554084147 } }, - "revision": "c9c9c1893925419da308f887", + "revision": "64843c679cb4450695cb8e68", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12269,10 +12269,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0005.2314.7298.6693-13 de um empréstimo parcelado em 6 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 224,00", - "revision": "894320c787334756bd5ca983", + "revision": "4471e22737dc40d186545ee2", "revision_nr": 1, - "created": 1701809344839, - "modified": 1701809344839 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12280,10 +12280,10 @@ "content": { "type": 2, "value": {}, - "revision": "e44b4f2617cb4fe7a03d2559", + "revision": "48d24f62494844469c285664", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12291,10 +12291,10 @@ "content": { "type": 1, "value": {}, - "revision": "27dfd921a374405ea858494a", + "revision": "06c011134bc94b318629be77", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12302,10 +12302,10 @@ "content": { "type": 1, "value": {}, - "revision": "89b59fa54acc4a54afc63736", + "revision": "079543bd8c6c4ff4b9f71e92", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12324,10 +12324,10 @@ "value": 1679030831310 } }, - "revision": "ead3fe2128e34246bc797839", + "revision": "1567a5194a3f4f9aa29ce4b2", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12344,10 +12344,10 @@ "value": 1697166000000 } }, - "revision": "9a1a1c18c41b447a84c0ffaf", + "revision": "7b077351517747dc826cc115", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12355,10 +12355,10 @@ "content": { "type": 1, "value": {}, - "revision": "2d0cf0d0fc044ef3bc42acce", + "revision": "184965428aa64ff6baa216f9", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12366,10 +12366,10 @@ "content": { "type": 1, "value": {}, - "revision": "9c86c107045b4c01ae7fe9ee", + "revision": "2cb75c0f69d4493ca37dc675", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036325, + "modified": 1702563036325 } }, { @@ -12377,10 +12377,10 @@ "content": { "type": 1, "value": {}, - "revision": "0c1a4e24ce6043df958c8e1c", + "revision": "0c366822b94c4d7b84d50bdb", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12391,10 +12391,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "ba87e15f9f5f47769ba8c698", + "revision": "e5b27b27d509418a85634147", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12410,10 +12410,10 @@ "value": 1696993200000 } }, - "revision": "08aaba9aba6d434b8708da61", + "revision": "dd90cfbb3dd04353b1d5d359", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12425,10 +12425,10 @@ "symbol": "IVIP", "value": -452.027 }, - "revision": "10e2de28d0a44b2ea9aee1ab", + "revision": "d97f32474f5a433f96b3bdbc", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12436,10 +12436,10 @@ "content": { "type": 1, "value": {}, - "revision": "f60856e84ff34e2a8aeffff5", + "revision": "4bb11740e96f4ead9b7c88fc", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12449,10 +12449,10 @@ "value": { "costs": {} }, - "revision": "e27eeb8eb981422fabaed62e", + "revision": "a95331502aff425a9b66d71d", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12494,10 +12494,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5fb98b09fc784589a2427644", + "revision": "eb02677ed53844a7a2b0d8b0", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12505,10 +12505,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "0065e684f78f4b70bf64cc9e", + "revision": "c7e8c20487c24c76805783f4", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12520,10 +12520,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 10.02 }, - "revision": "3c0ef9f2a27948fdbc545e77", + "revision": "b8877406dacc4abab6cfe687", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12531,10 +12531,10 @@ "content": { "type": 1, "value": {}, - "revision": "9d8185c61f2e471580e9864e", + "revision": "32e97527616f436498953387", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12542,10 +12542,10 @@ "content": { "type": 2, "value": {}, - "revision": "52581448997342439a6afa52", + "revision": "ea4d4618b6c24ecaad7d395e", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12578,10 +12578,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "ce2de855901249e096b125a5", + "revision": "68eb907fc77645d0813a5736", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12589,10 +12589,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 501,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 511,02", - "revision": "5a84e526e7aa4028a551a2d4", + "revision": "47e4f0b7cf174bec9b433992", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12604,10 +12604,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 9.98 }, - "revision": "cd2f6f0fdced4d139c11423f", + "revision": "4c1636ecba8f42699dbe9515", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12615,10 +12615,10 @@ "content": { "type": 1, "value": {}, - "revision": "04faa12963a94ad0947fb93c", + "revision": "306ea4e81ecd494d97bf8a67", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12626,10 +12626,10 @@ "content": { "type": 2, "value": {}, - "revision": "5b4bf1ed49154c619a076b74", + "revision": "6e67b7a0c8804ead946ab402", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12662,10 +12662,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "a23229175fda479fa9bc8c8c", + "revision": "6b921038f9ac4f0d8ff5e562", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12673,10 +12673,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 499,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 508,98", - "revision": "85e6a2e9bc7c41a396aac56e", + "revision": "7bdcfc0113a247c5be2c0832", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12696,10 +12696,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "c23806814a994346a5370480", + "revision": "bcf75cc8eb6f49f49c4e52ce", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12735,10 +12735,10 @@ "history_id": 1684624250482, "description": "Compra de 7.306.097,00 IVIP por 1.500,00 BRL" }, - "revision": "86ea8849b28c413491253b48", + "revision": "579d03fbe8b04faca279a752", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12748,10 +12748,10 @@ "value": { "costs": {} }, - "revision": "93fc5d45e3524b0095ae4936", + "revision": "eb2dd100ee5e4be086f6247d", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12783,10 +12783,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "1044da1bacf74aa19f839a1f", + "revision": "85377693a0814a3cb73502aa", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12794,10 +12794,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "55fdb14e8a9f4afc93137bc1", + "revision": "35376ec3b6784c7aaa19a5db", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12807,10 +12807,10 @@ "value": { "costs": {} }, - "revision": "15ce516a34af4d9c98d97dfc", + "revision": "e8e878b9067b416bb86e2fe0", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12842,10 +12842,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "36de66844516492f88c11467", + "revision": "3871657bfb0d488ea48e3cb0", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12853,10 +12853,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "1879abfd53114f06ad53959f", + "revision": "12478dd1ff3b4a2b88c4b6a2", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12866,10 +12866,10 @@ "value": { "costs": {} }, - "revision": "bb801e05d4854d4c8cf063b2", + "revision": "c92c83ec188440d593a1912a", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12911,10 +12911,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "82335806c57a41d08a1e0708", + "revision": "d60c70c12406432791f2e516", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12922,10 +12922,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 562,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "064e363b89ea45e48921be16", + "revision": "2224ad111c5e426dabf9329d", "revision_nr": 1, - "created": 1701809344840, - "modified": 1701809344840 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12935,10 +12935,10 @@ "value": { "costs": {} }, - "revision": "299e6f1880714369888bcca3", + "revision": "bfad9de42df14580a4268e42", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12980,10 +12980,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9d6d05ec2641494093aec8e6", + "revision": "52f3b82287c245e7a47629f6", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -12991,10 +12991,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 517,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "b17b1e8f14244112861e3d6a", + "revision": "cf2eb898e3c84cb3997e4197", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13004,10 +13004,10 @@ "value": { "costs": {} }, - "revision": "32f6c58f4739437fac32d275", + "revision": "c313191241384c209c04fadd", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13049,10 +13049,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b1f731680b6d445caa2d9389", + "revision": "04e2dc422c924b0a897fbd11", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13060,10 +13060,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 329,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "ceea4ff5633a4f0c9543e131", + "revision": "3cab7ba8d2f241dea08a8346", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13083,10 +13083,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ff6a3c50024e4f59a37a9b5c", + "revision": "08f1cf67a4ff4d4487f5bb76", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13121,10 +13121,10 @@ "currency_id": "IVIPAY", "history_id": 1685384470907 }, - "revision": "b43593b0613d4cee928d0d25", + "revision": "6acffa45efbc42e1b8b126ff", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13132,10 +13132,10 @@ "content": { "type": 5, "value": "Compra de 45.000,00 IVIPAY por 4.500,00 IVIP estabilizando US$ 0,42", - "revision": "d56c8e24e032420398cad65e", + "revision": "5feb6c5a4c9a4fdf969c93df", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13145,10 +13145,10 @@ "value": { "costs": {} }, - "revision": "f7edda268bb046fb9c4d6da1", + "revision": "0f7fb003197a4e068efe0a2f", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13190,10 +13190,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "4b734f20c6014dc8905263dc", + "revision": "5ebc8891e9864de0b36d4233", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13201,10 +13201,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 96,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "84083b09db1641ec98054700", + "revision": "989b744c6650441b8f1e3607", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13224,10 +13224,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "1d109d3d39a2499da60fa45f", + "revision": "edcd78e2f20d4df4916a7442", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13262,10 +13262,10 @@ "currency_id": "IVIPAY", "history_id": 1685392262218 }, - "revision": "b8cd44e89e724a43924679f4", + "revision": "87d96d476f4f4f38ab77c1ec", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13273,10 +13273,10 @@ "content": { "type": 5, "value": "Compra de 3.000.000,00 IVIPAY por 300.000,00 IVIP estabilizando US$ 26,95", - "revision": "9d037a0af86c40d3a576f643", + "revision": "f6490eb17d2745699e42fe59", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13296,10 +13296,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "7a5a906eb5c34799b4c6b348", + "revision": "8498f6c4c9634822b44d5fda", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13334,10 +13334,10 @@ "currency_id": "IVIPAY", "history_id": 1685392563175 }, - "revision": "1bb8fe5993c04bb3a69edbaf", + "revision": "4ac9c145062e4236a7086259", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13345,10 +13345,10 @@ "content": { "type": 5, "value": "Compra de 30.000.000,00 IVIPAY por 3.000.000,00 IVIP estabilizando US$ 269,53", - "revision": "198abf4e2a4a43b883129da4", + "revision": "fbcfd5d6b52b4c0d8d173c22", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13368,10 +13368,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "63ba2ef297434c36a8b3c9ec", + "revision": "c5d69b203eba42b19bacad58", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13406,10 +13406,10 @@ "currency_id": "IVIP", "history_id": 1685394042885 }, - "revision": "b43eaf5d77c84750bc32978d", + "revision": "7fa2d65ce3b04570a1b408a2", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13417,10 +13417,10 @@ "content": { "type": 5, "value": "Compra de 3.300.000,00 IVIP por 33.000.000,00 IVIPAY", - "revision": "c47dd4f207354fc88192a8f7", + "revision": "04868097778a45209c9f5c74", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13440,10 +13440,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "401c832e40b44ee69316f721", + "revision": "eff6086752d34ef2bcc6f89a", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13478,10 +13478,10 @@ "currency_id": "IVIPAY", "history_id": 1685450530237 }, - "revision": "4a7380af44f942628692b9bf", + "revision": "316585d37c034c96bbb63150", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13489,10 +13489,10 @@ "content": { "type": 5, "value": "Compra de 50.000.000,00 IVIPAY por 5.000.000,00 IVIP estabilizando US$ 456,73", - "revision": "fd44ba953e674877880466a6", + "revision": "de475e5e801144acb1a2334b", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13512,10 +13512,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "6edd92e6512c44d080eda830", + "revision": "48cac1e8feb14f91a56d4be5", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13550,10 +13550,10 @@ "currency_id": "IVIP", "history_id": 1685455769977 }, - "revision": "9e221ff6404d45bc898f01b6", + "revision": "333041052c2949af8c583a6f", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13561,10 +13561,10 @@ "content": { "type": 5, "value": "Compra de 5.000.000,00 IVIP por 50.000.000,00 IVIPAY", - "revision": "21e5a6f184904d3280be2c88", + "revision": "ca1d76eb4a314894b099edca", "revision_nr": 1, - "created": 1701809344841, - "modified": 1701809344841 + "created": 1702563036326, + "modified": 1702563036326 } }, { @@ -13584,10 +13584,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "d2ffcd1506024294a9d0dc37", + "revision": "610b735eac9a42eeb71a2933", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -13623,10 +13623,10 @@ "history_id": 1685743296302, "description": "Compra de 4.940.350,00 IVIP por 1.408,00 BRL" }, - "revision": "11c0ca30eb0442d59d9b90b6", + "revision": "730329366e9543cfb458ce9e", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -13646,10 +13646,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "983aa607ace64aac9cd47d5b", + "revision": "18d433c02c6f412198cebdba", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -13684,10 +13684,10 @@ "currency_id": "BRL", "history_id": 1685744480429 }, - "revision": "125845270d4d4c35be9b9eb6", + "revision": "d2e453d752664693a087a659", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -13695,10 +13695,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "3363a57beedf447ead30553a", + "revision": "504d79db45d74eec88285e7c", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -13718,10 +13718,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "99cd7018e0e54fe5be4167dd", + "revision": "f1cad95ace064eb0aae9ec2c", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -13757,10 +13757,10 @@ "history_id": 1685745152104, "description": "Compra de 147.164,00 IVIP por 41,90 BRL" }, - "revision": "a4222ead0b394ee09918c7dd", + "revision": "d2a616f1e1214f30b57ec119", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -13770,10 +13770,10 @@ "value": { "costs": {} }, - "revision": "d845594deb624fa29b374593", + "revision": "a39303ef76364f0c9207acf2", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -13815,10 +13815,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "68668189708a40e3a8492376", + "revision": "9b0d425c9b274301bb5b91d7", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -13826,10 +13826,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.191,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "b876e18e7b214c6dbd1e8da8", + "revision": "5f584a954a47427aba7a5d0a", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -13851,10 +13851,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "163b5d1dd07d4cb2b461212f", + "revision": "9240ba398c7640b39cf5f941", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -13890,10 +13890,10 @@ "currency_id": "BRL", "history_id": 1686844436781 }, - "revision": "dbcfb5bd5153435495106bea", + "revision": "86a7027ce01843c7a6fe4733", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -13901,10 +13901,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 1 no valor de 511,02 BRL referente ao contrato 1684399661939", - "revision": "a03f4fed236f4f2893ab572f", + "revision": "a773d8eea833410ab96b4af2", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -13926,10 +13926,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "384a3d9f1e99461d8d2bcc04", + "revision": "28c7c9be15b14510b9e6f312", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -13965,10 +13965,10 @@ "currency_id": "BRL", "history_id": 1686844436954 }, - "revision": "dcf3b3124a764796a28305ec", + "revision": "810acf417744493096d1511d", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -13976,10 +13976,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 1 no valor de 508,98 BRL referente ao contrato 1684612673872", - "revision": "5e637f6a34784845b5af9075", + "revision": "2fb790e4f1d940d7ad994df2", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -13999,10 +13999,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "1000fcd80744499883394cd7", + "revision": "dc0323f9d54048b9b0fa83b5", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14037,10 +14037,10 @@ "history_id": 1687345768938, "wasDebited": true }, - "revision": "94a54731e9da48d8ada0a50b", + "revision": "8749049cfe24487e95489fd2", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14048,10 +14048,10 @@ "content": { "type": 5, "value": "Investimento de 11.152.973,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2024", - "revision": "6cbdec54debb459c9c89fc4d", + "revision": "580502fdc020452793cef32b", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14071,10 +14071,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "90e123ffa2874efcab02504b", + "revision": "a90b267a98b14bd7a8b8d9ed", "revision_nr": 1, - "created": 1701809344842, - "modified": 1701809344842 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14110,10 +14110,10 @@ "history_id": 1687393215194, "description": "Compra de 818.586,00 IVIP por 171,00 BRL" }, - "revision": "d7eaa6d6479c4d7e9d848a7d", + "revision": "8ca5dde1c0cd44c8856c167c", "revision_nr": 1, - "created": 1701809344850, - "modified": 1701809344850 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14133,10 +14133,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "19954592d6074f4085237a7c", + "revision": "c06275fd25d14ffea0843f09", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14172,10 +14172,10 @@ "history_id": 1687495116294, "description": "Compra de 496.157,00 IVIP por 96,00 BRL" }, - "revision": "27d558c574f547b8a4eaa094", + "revision": "9a9eea0d56074431b6382a7c", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14195,10 +14195,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a696616f8c89477fbac73e4a", + "revision": "176193c5b894464c9fae8de0", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14233,10 +14233,10 @@ "history_id": 1687547056698, "wasDebited": true }, - "revision": "91cb70d968f3405fb2019995", + "revision": "62c879941f5343f096a8672a", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14244,10 +14244,10 @@ "content": { "type": 5, "value": "Investimento de 12.152.954,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", - "revision": "ed2e3df35a354b459df2d6b3", + "revision": "fe3d83aa55bc45609d7d6e9d", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14257,10 +14257,10 @@ "value": { "costs": {} }, - "revision": "cad10461cb9848fa8bb90867", + "revision": "ba236e4798d04deeb18369c8", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14292,10 +14292,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "1b9ef77fb3ff4f8b8ffe1182", + "revision": "66a02295074d447880591c82", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14303,10 +14303,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 526,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "4a628e083530406ea5550718", + "revision": "f7c8c676cb394adea2bc03d7", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14316,10 +14316,10 @@ "value": { "costs": {} }, - "revision": "cc82311af8fc49269fc53578", + "revision": "f53b2ad9b45f40609e886d31", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14361,10 +14361,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e2dfa6e52ce0451dbc19ec89", + "revision": "52aa623b21014f0e9aeac6d3", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14372,10 +14372,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.224,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "d80ecb479aec4b39a0013460", + "revision": "e88690e0ff2b4be4a1e2e780", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14395,10 +14395,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "d166edf59b6846c0a3be8168", + "revision": "cf9c01306ea14181a6bdd754", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14434,10 +14434,10 @@ "history_id": 1689082225194, "description": "Compra de 180.125,00 IVIP por 224,00 BRL" }, - "revision": "71e95a9fff63408284eb685e", + "revision": "a1618d71099c4a95b9c2ab67", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14457,10 +14457,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "940f270d453c4cec95a49e99", + "revision": "ea05e023470a43a2ace558bb", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14496,10 +14496,10 @@ "history_id": 1689114929852, "description": "Compra de 305.476,00 IVIP por 500,00 BRL" }, - "revision": "275150b6278f46d89d8343f4", + "revision": "c953a563af7a48d79cd3bc06", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14509,10 +14509,10 @@ "value": { "costs": {} }, - "revision": "39b10a6417d14038bc88c4f7", + "revision": "4a8bc900a61e478685530c43", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14554,10 +14554,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "088d32a3271944e09204ef43", + "revision": "f181034994af4a53a86373af", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14565,10 +14565,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 726,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "30da760df1d54198b34a99a5", + "revision": "a3e7c7cb2a6e44f18bed1602", "revision_nr": 1, - "created": 1701809344851, - "modified": 1701809344851 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14588,10 +14588,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "032ccb02c8b44cfc8a141fb9", + "revision": "fcf0ab770e7649caba2a747b", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14627,10 +14627,10 @@ "history_id": 1689195736692, "description": "Compra de 93.754,00 IVIP por 226,00 BRL" }, - "revision": "a03c2b821a304402a046fd15", + "revision": "235643a6940b4b56aed8194a", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036327, + "modified": 1702563036327 } }, { @@ -14650,10 +14650,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a94bae694bfb46098c29f503", + "revision": "abd1f441f486480c9a8cd1dd", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -14688,10 +14688,10 @@ "history_id": 1689204261841, "wasDebited": true }, - "revision": "da112712a88542ec8a988590", + "revision": "537841c5cfb1465cac37dfd9", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -14699,10 +14699,10 @@ "content": { "type": 5, "value": "Investimento de 1.904,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/12/2024", - "revision": "10e47d86a6ef48d2a3d5e130", + "revision": "ace846150ad844dfb6c2ea16", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -14722,10 +14722,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "9763f44ea2144206888c63f3", + "revision": "7bb7c164f6954a7daac2e35f", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -14761,10 +14761,10 @@ "history_id": 1689204343069, "description": "Compra de 40.949,00 IVIP por 96,00 BRL" }, - "revision": "ed09c87f77ff4009b8b53e7a", + "revision": "0fc887245c9b41198049084a", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -14774,10 +14774,10 @@ "value": { "costs": {} }, - "revision": "90b2bff527014814b1f3f031", + "revision": "bf793c140d7e404ba9d7518d", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -14809,10 +14809,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "5094eb4adc094b36aadd00aa", + "revision": "0d0b2f4a8e5d43ceb30c9f6c", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -14820,10 +14820,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.423,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "355b7a86f9a34785aab98e12", + "revision": "779d1303e51548de963f8bb4", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -14833,10 +14833,10 @@ "value": { "costs": {} }, - "revision": "3ab8be1610dc4b5ab18ccd22", + "revision": "d77a5d7fb4cd49f6b659890a", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -14878,10 +14878,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ac57a7742d16432e84e25da1", + "revision": "6d4af2c9a0a04252be2c64f0", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -14889,10 +14889,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.379,00 para a carteira iVip 0013.4542.5233.2609-77", - "revision": "7d9fe94ba74541d38005b41f", + "revision": "a1e02f8babdc431ca02e893c", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -14912,10 +14912,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "65d0d925b3944dde9e3f4a85", + "revision": "747bf0f367a941c3a6de5827", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -14951,10 +14951,10 @@ "history_id": 1689619360780, "description": "Compra de 326.875,00 IVIP por 500,00 BRL" }, - "revision": "000387780e2a4dd1afd6ce53", + "revision": "b13159789bf0409ca576490c", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -14974,10 +14974,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "2c7a7a19567340afa9826f68", + "revision": "849fe0eded1c45f981b3b1ae", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15013,10 +15013,10 @@ "history_id": 1690237331737, "description": "Compra de 318.321,00 IVIP por 450,00 BRL" }, - "revision": "f4f99925e7464c61b1e62b06", + "revision": "f36060b4cef64c7d91d1668b", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15036,10 +15036,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "dfe131e6743048eaa2497c5c", + "revision": "1192f033607e4296b97e63fd", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15075,10 +15075,10 @@ "history_id": 1690273510959, "description": "Compra de 338.652,00 IVIP por 429,00 BRL" }, - "revision": "01d4e5c36b3c4dd3ba285ef4", + "revision": "9d723f24f1474348aef9d51f", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15092,10 +15092,10 @@ "value": 1695207854014 } }, - "revision": "d538c1a206c247a89acad3b5", + "revision": "85123829360e484497aee061", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15113,10 +15113,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1e278ac978164f029904263b", + "revision": "17c28c7ecc934dfcb27a72f2", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15124,10 +15124,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1692615854014", - "revision": "9167e376df884e2cad523426", + "revision": "f5551893c40d4b29a31a81d5", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15157,10 +15157,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "51f157fbe9934b27bed3daa6", + "revision": "b680a0fe4b844a4da9cd12cc", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15168,10 +15168,10 @@ "content": { "type": 5, "value": "Deposito de um valor 450,00 BRL para a carteira iVip 0013.4542.5233.2609-77", - "revision": "bfd280af74e44349bd97b8b8", + "revision": "734fcc5e281d4c0181e36bc5", "revision_nr": 1, - "created": 1701809344852, - "modified": 1701809344852 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15189,10 +15189,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "9be518fe986b47a892663469", + "revision": "7068b03360b24bbbb8172438", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15200,10 +15200,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1693771767267", - "revision": "b9ba5ecc223449bdb4eb8aa4", + "revision": "4f21bbcec2a548e0a4254234", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15237,10 +15237,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "fd3bb1ab005a40b286a99ccb", + "revision": "52c9cdaca0b74806bd212170", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15248,10 +15248,10 @@ "content": { "type": 5, "value": "Investimento de 3.384.929,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "7cddc74a23a444f8995a7452", + "revision": "ccb41dedbb534466a3bf442e", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15269,10 +15269,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d3498b99b2c840e7b6104cbe", + "revision": "e6d5fc0ae0604cb0b09e2e9e", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15280,10 +15280,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696371493428", - "revision": "9e86b9e01a734e0fa4be0b7a", + "revision": "ce4034d6a5704e7cb4b2d0d4", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15318,10 +15318,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "8bd282acf58343a39364eb4e", + "revision": "b72896a6bc1f4c72a95e3c8b", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15329,10 +15329,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 3.384.929,00 IVIP com um rendimento de +67.698,58 IVIP (2,00%) - Y12XDT27", - "revision": "bb1f3fecd21f489b9c5a8d45", + "revision": "e7113728303341feb77cf91c", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15350,10 +15350,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "5ab6ab49c2d3442eb1de42af", + "revision": "df6ecbd725fe413b929553fb", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15361,10 +15361,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696371493371", - "revision": "96a1a2d2d0ed45889ff2d901", + "revision": "e6cde79221334e84ab933534", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15399,10 +15399,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "6fdaa5a04de94fb298e98eaa", + "revision": "67e4f1d4fc6a432985af1053", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15410,10 +15410,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 3.384.929,00 IVIP com um rendimento de +67.698,58 IVIP (2,00%) - Y12XDT27", - "revision": "5c77afefa2324d48a9ade26a", + "revision": "67cb674cc083432cbca98056", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15431,10 +15431,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "5111a2e7ef66494a85e4b257", + "revision": "9a0ebb1a7b5244029b3bb61e", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15442,10 +15442,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696459483900", - "revision": "5cc690fb2820460aae16498d", + "revision": "2d0835b60ffb4702a47c14b7", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15480,10 +15480,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "5705d86d8bf3490392239c62", + "revision": "8fc464544a3644598c4503a0", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15491,10 +15491,10 @@ "content": { "type": 5, "value": "Investimento de 7.624.011,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "4bd231182c5442ee86acd0c7", + "revision": "847acbf91a4549e8ba68d671", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15508,10 +15508,10 @@ "value": 1699222159538 } }, - "revision": "025314930452499bbecf2de6", + "revision": "d95a49d363b44ae997eeffed", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15529,10 +15529,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "62a6725afe6b4b8b8bc3179c", + "revision": "b8c5640ee3364abea61149aa", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15540,10 +15540,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/001345425233260977/history/1696630159545", - "revision": "b5cd4da5048b4893beae7cec", + "revision": "3a203fe83415424594b06dfe", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15574,10 +15574,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "08b83eb3b8654dac8a80ae34", + "revision": "8ed0394ad626430f90038a2d", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15585,10 +15585,10 @@ "content": { "type": 5, "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0013.4542.5233.2609-77", - "revision": "9319f6bd769c442f8619ffb3", + "revision": "1c8cadcde1b940beae133eee", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15596,10 +15596,10 @@ "content": { "type": 1, "value": {}, - "revision": "998d0324d20847968039b7e2", + "revision": "d958d71dad7c4958ac033f6a", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15611,10 +15611,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 10.02 }, - "revision": "57ec5e28c08f400981dfaadd", + "revision": "594a7e443c2247eca31085e0", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15636,10 +15636,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "1a9bd7544a904bed83d54f40", + "revision": "5fb28a006a184220ab2f8772", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15647,10 +15647,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 501,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 511,02", - "revision": "8c20be3daeff4ab9915029fe", + "revision": "64aca7884d4243109b38280a", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15658,10 +15658,10 @@ "content": { "type": 2, "value": {}, - "revision": "d2e0d98317bd413ca0753dba", + "revision": "eedfa48ccda140a68a09ec09", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15673,10 +15673,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 9.98 }, - "revision": "de3a5d66e35544e889f741d4", + "revision": "e9028cbabadd42d695039a5e", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15698,10 +15698,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "c5dda60f06934a29baab56ce", + "revision": "2061ae780c354e62b0a69d22", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15709,10 +15709,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 499,00 para a carteira iVip 0013.4542.5233.2609-77 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 508,98", - "revision": "ca77fc6214964809a260ee6f", + "revision": "e244f768f15f4d26ba8a6d07", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15720,10 +15720,10 @@ "content": { "type": 2, "value": {}, - "revision": "10d300bcd30c49618f4123ed", + "revision": "fd75edb0d4c94b90ab1773eb", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15731,10 +15731,10 @@ "content": { "type": 1, "value": {}, - "revision": "82dc159f75624128a30b5b7e", + "revision": "74782642ba3748388bfbab48", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15742,10 +15742,10 @@ "content": { "type": 1, "value": {}, - "revision": "284f066aba594e9a9ec5c898", + "revision": "5376b56577234236b10f78ba", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15764,10 +15764,10 @@ "value": 1684329814101 } }, - "revision": "6162172e4d7e467c900638d8", + "revision": "a48631af9bca4b3e87d18316", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15784,10 +15784,10 @@ "value": 1696820400000 } }, - "revision": "8cd685771f9347c0bf2f2684", + "revision": "df87932135274c4ba36bb0e6", "revision_nr": 1, - "created": 1701809344853, - "modified": 1701809344853 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15799,10 +15799,10 @@ "available": "100.00000000", "value": 20.09 }, - "revision": "06dd8420c5f9453bbf8d8cb5", + "revision": "440baaf1e8f149f296a7fc09", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15810,10 +15810,10 @@ "content": { "type": 1, "value": {}, - "revision": "72daa1dbe2f943008243f5d9", + "revision": "6a50270575b74e19bfc6cbbd", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036328, + "modified": 1702563036328 } }, { @@ -15823,10 +15823,10 @@ "value": { "costs": {} }, - "revision": "0e3c7f81e7174392a3ad1fcd", + "revision": "a671d924b93f402fa1534d21", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -15868,10 +15868,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9803ed1863ea49a4aff8ea4c", + "revision": "17f7c025cbad4c0391d6bd76", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -15879,10 +15879,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0024.4576.8964.9692-86", - "revision": "8ec1281dd7ec48c7848e4452", + "revision": "3c962d2d24b34dd184009b23", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -15890,10 +15890,10 @@ "content": { "type": 1, "value": {}, - "revision": "5c1d1276e59044fe8c69721b", + "revision": "d386812d747847768fec8d6a", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -15901,10 +15901,10 @@ "content": { "type": 1, "value": {}, - "revision": "ba000fbfb5f24c82827d1fd2", + "revision": "d6b2f8ad2a714ed48cbde5a1", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -15915,10 +15915,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "231a6fc74e114fddbf4b8b2e", + "revision": "9d76893dafa64d1fae0050e7", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -15931,10 +15931,10 @@ "totalValue": 20.09, "currencyType": "USD" }, - "revision": "136809c1331b4d99999beb94", + "revision": "f5525ab92fc74790984d13c4", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -15946,10 +15946,10 @@ "symbol": "IVIP", "value": 1075.36 }, - "revision": "26c0f8ef3fc94a00bdb21e95", + "revision": "2652d11e65eb4947b0ecae8b", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -15957,10 +15957,10 @@ "content": { "type": 1, "value": {}, - "revision": "7545037fa349487d88eac716", + "revision": "ab55b5dba974477eba9bd1c9", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -15970,10 +15970,10 @@ "value": { "costs": {} }, - "revision": "89e8b0c68e9b452f8e617404", + "revision": "36d876806043440c88b8c1c9", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16010,10 +16010,10 @@ }, "money_release_status": "rejected" }, - "revision": "39d4d41b2e864b1cae081ab6", + "revision": "a320744dec914019a9f9001b", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16021,10 +16021,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0037.5729.7582.0925-33", - "revision": "3dff5ef798314a6097555e8b", + "revision": "59cee2fefdf64f4faff32370", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16034,10 +16034,10 @@ "value": { "costs": {} }, - "revision": "192cbd5e0bee4575b47e6fbb", + "revision": "52ae3d3c20f94498a1a68d78", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16074,10 +16074,10 @@ }, "money_release_status": "rejected" }, - "revision": "1e3c9fad52a447e19e68eb76", + "revision": "3bdbabafd85a4cbeaadeeb01", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16085,10 +16085,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0037.5729.7582.0925-33", - "revision": "abe4df9f90b04397a8c9db34", + "revision": "d41813b2a0bf44e191c44e2d", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16098,10 +16098,10 @@ "value": { "costs": {} }, - "revision": "53c2a10b59204bbf99962cc0", + "revision": "d01d22ef62b74e539ee1a278", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16143,10 +16143,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ca3f3470f7514f6aa81c3e7f", + "revision": "de78ffb39c6f472892df37a3", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16154,10 +16154,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0037.5729.7582.0925-33", - "revision": "5b997a1b4cf24d14bc4805e2", + "revision": "264d80952da840bdac844d09", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16177,10 +16177,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "13129779aa4b4fa481b14e5b", + "revision": "0b48b201c650422bb86b5e7c", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16216,10 +16216,10 @@ "history_id": 1679908062539, "description": "Compra de 5.325.627,00 IVIP por 1.000,00 BRL" }, - "revision": "27163ed74f8c4cdbb947c328", + "revision": "96b22f82e877431fb7edca46", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16239,10 +16239,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "931308e5d8b14df19709bee2", + "revision": "bb5005344d1343fb9e5043ad", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16276,10 +16276,10 @@ "currency_id": "IVIP", "history_id": 1687109837625 }, - "revision": "05f472f99ec049ee8800746e", + "revision": "43028ed62938456ba40b2dbb", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16287,10 +16287,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/18/2023", - "revision": "d601c0720c914144a3cc88cc", + "revision": "8056688f293045e7a836a9b8", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16298,10 +16298,10 @@ "content": { "type": 1, "value": {}, - "revision": "a234973b6d4f4c8284ebe6c8", + "revision": "5341765353074a1aa0b334dc", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16309,10 +16309,10 @@ "content": { "type": 1, "value": {}, - "revision": "bf842067ca9347a9a913ce2d", + "revision": "f2c06459ea5d41c1999f4a86", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16323,10 +16323,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "6c9254a2f0ac4845aedd8108", + "revision": "e19921b0a1ba4d4b95017a7b", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16343,10 +16343,10 @@ "value": 1696129200000 } }, - "revision": "658b4a588dd943909b185265", + "revision": "0fa7875d035e4c498498d1af", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16354,10 +16354,10 @@ "content": { "type": 1, "value": {}, - "revision": "218e43fb622d4c67ab2947fa", + "revision": "234f22766a1d474da87a3381", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16365,10 +16365,10 @@ "content": { "type": 1, "value": {}, - "revision": "cd693ffcc3674d76a726f4a2", + "revision": "ff01dddc82264ef3be3fe192", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16381,10 +16381,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "14efa284aa6d46739a65f93b", + "revision": "e8d6f1cccafd4d548d656cd6", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16396,10 +16396,10 @@ "symbol": "BRL", "value": 29.27 }, - "revision": "df2c009c9142488aac78ed0f", + "revision": "2127f1b4ba2442f8b31ecddd", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16407,10 +16407,10 @@ "content": { "type": 1, "value": {}, - "revision": "e69c0eebb9e2437ea2536162", + "revision": "69b6384977b545958637b45d", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16420,10 +16420,10 @@ "value": { "costs": {} }, - "revision": "2d0cb2d324c247ee8455cb70", + "revision": "1df01c44204a41f897796d6f", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16461,10 +16461,10 @@ "money_release_status": "cancelled", "wasDebited": true }, - "revision": "7f3e2d74d64f4f7294068ab9", + "revision": "ae1675fb52994e22a58cfc5c", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16472,10 +16472,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0072.1969.3774.2530-22", - "revision": "90a2597aab3c42bcac242a03", + "revision": "3a02135c20994a7f963c0560", "revision_nr": 1, - "created": 1701809344854, - "modified": 1701809344854 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16485,10 +16485,10 @@ "value": { "costs": {} }, - "revision": "aba899080cb54b1b8478ade7", + "revision": "a4dd587993544c35b63af2a3", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16526,10 +16526,10 @@ "money_release_status": "cancelled", "wasDebited": true }, - "revision": "2b70f827bb5f466f87c35ebb", + "revision": "2e91cf2cc2a64920ba86fc2b", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16537,10 +16537,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0072.1969.3774.2530-22", - "revision": "5a81d57a67424863bf4edc6b", + "revision": "e93034e007f2457fbc71fc95", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16554,10 +16554,10 @@ "value": 1692808041978 } }, - "revision": "e8bb6a63829042c9b03322a0", + "revision": "9e9aa5678f59410db8cc344b", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16575,10 +16575,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d1e80bc20d874829b275e26f", + "revision": "65d80a2348964d7f845b1168", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16586,10 +16586,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/007219693774253022/history/1690216041978", - "revision": "b9c913dec5eb4568a5497150", + "revision": "5a292810a63e4f4eb3154291", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16629,10 +16629,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "59147f66dd4c4fd1ada69705", + "revision": "17c64193667f4d40b7289d7f", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16640,10 +16640,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0072.1969.3774.2530-22", - "revision": "50ea256a834a48b2915172f7", + "revision": "ee309ea7b90c4718b99f7f3e", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16651,10 +16651,10 @@ "content": { "type": 1, "value": {}, - "revision": "297868d11fe14621b069d8a7", + "revision": "c41f62a8c7ad4931bdf6734e", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16662,10 +16662,10 @@ "content": { "type": 1, "value": {}, - "revision": "25795349459f4cf3b8a82b6f", + "revision": "6bad1b5465ff44359e8cc452", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16676,10 +16676,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "8065dc5f3fe64b379e38e69c", + "revision": "df10df268ae34590a3b22e0a", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16696,10 +16696,10 @@ "value": 1697252400000 } }, - "revision": "d0557cfafced47d3b2cc2c47", + "revision": "cc22c2bfc31147c5995fbbb8", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16707,10 +16707,10 @@ "content": { "type": 1, "value": {}, - "revision": "1f3d549a4fc94426a9eca220", + "revision": "bb9a633788dc4a709760c0d3", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16718,10 +16718,10 @@ "content": { "type": 1, "value": {}, - "revision": "6cc7fcbf342d49e4af38c904", + "revision": "d3fcc16b97934641b4df7d87", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16734,10 +16734,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "406721e464e348adb891f736", + "revision": "01b6443f96f945ceae6555cd", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16745,10 +16745,10 @@ "content": { "type": 1, "value": {}, - "revision": "9e0c830a705649eeba5559c2", + "revision": "145fa55d88b6482a89d23677", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16756,10 +16756,10 @@ "content": { "type": 1, "value": {}, - "revision": "eb7918e41cc340a98e2083d7", + "revision": "ade20b888b3c4f3db47e6519", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16772,10 +16772,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "44f194ecd9294b1db84b359c", + "revision": "1f693693e6bb46a08ca0af78", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16783,10 +16783,10 @@ "content": { "type": 1, "value": {}, - "revision": "0a1694825f3f4979b23fbefd", + "revision": "fb4c426d94df4a358ab1c0e8", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16796,10 +16796,10 @@ "value": { "costs": {} }, - "revision": "bbdf8230aacf4376a65f0298", + "revision": "256a4c0fd9cc488f9bff75f0", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16841,10 +16841,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "da2364d530cd4f8f95f983ed", + "revision": "79de37e7b623475aa9b7e78d", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16852,10 +16852,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 507,00 para a carteira iVip 0117.2048.7643.9274-14", - "revision": "488c11e874bb4b96a955a54e", + "revision": "58f8dc2a7c174f7aa41e9153", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16865,10 +16865,10 @@ "value": { "costs": {} }, - "revision": "d6655ca0be5e4e4187156428", + "revision": "07a6a86e97134468a8aee752", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16910,10 +16910,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "17813bebe6e449ab92a8c51b", + "revision": "0e884739134f453d9bfbc14c", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16921,10 +16921,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.093,00 para a carteira iVip 0117.2048.7643.9274-14", - "revision": "2f78f045c1fe4800b1a0b710", + "revision": "e410f9d9c03b4f2e9e1a5a08", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16944,10 +16944,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "6ce9ab405dbf4d86830ac22d", + "revision": "74b28df52756463987ce2f5f", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16983,10 +16983,10 @@ "history_id": 1684625025298, "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" }, - "revision": "6eb7a7f3255f43a7b2042fd3", + "revision": "0bffa9ebc3f74378a4be626f", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -16996,10 +16996,10 @@ "value": { "costs": {} }, - "revision": "6ffb906e8bbc43c194fa4134", + "revision": "bb45a6bbf44741a29bc35987", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -17041,10 +17041,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "7ce5b9e1ead5461cb11a761b", + "revision": "d4633e3dfdee40ad9e82d807", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -17052,10 +17052,10 @@ "content": { "type": 5, "value": "Saque de 5.588.008,00 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", - "revision": "7ad3e897827d4d12b526df3c", + "revision": "429abd93ae8a48859b156656", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -17075,10 +17075,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "fb2c58bae48247e1a5f7206f", + "revision": "c0815cc37979402dbea9db08", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -17112,10 +17112,10 @@ "currency_id": "IVIP", "history_id": 1685720288992 }, - "revision": "1377039764a5466b99f14fc5", + "revision": "a9164c8b0fb34b1eb45724df", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -17123,10 +17123,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/2/2023", - "revision": "4342710574974eed9ed62b16", + "revision": "a3d3fba1621f4ff886cdc6de", "revision_nr": 1, - "created": 1701809344855, - "modified": 1701809344855 + "created": 1702563036329, + "modified": 1702563036329 } }, { @@ -17146,10 +17146,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "2f7ca4a6cc8144b798879bbe", + "revision": "df6f762a6e5a4eed8f1be464", "revision_nr": 1, - "created": 1701809344856, - "modified": 1701809344856 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17183,10 +17183,10 @@ "currency_id": "IVIP", "history_id": 1685720363618 }, - "revision": "26448cccb26d4ef9ab2ba9a9", + "revision": "62125df27ada4d64870bff33", "revision_nr": 1, - "created": 1701809344856, - "modified": 1701809344856 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17194,10 +17194,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/2/2023", - "revision": "f279dadfdf87401b8d4b50a9", + "revision": "c8feaf1a1f3f4f4b973bb5da", "revision_nr": 1, - "created": 1701809344856, - "modified": 1701809344856 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17217,10 +17217,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "5095bf6f9e6c4271a269f3d0", + "revision": "a702f429829544a18b1fada5", "revision_nr": 1, - "created": 1701809344856, - "modified": 1701809344856 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17255,10 +17255,10 @@ "history_id": 1688400602023, "wasDebited": true }, - "revision": "6ef1297cfa5f4216a985c1c4", + "revision": "566e370b2c0243cf81233704", "revision_nr": 1, - "created": 1701809344856, - "modified": 1701809344856 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17266,10 +17266,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%)", - "revision": "0c36fcacf51f4d12aed3fadb", + "revision": "a089031f947f4ed8ba32ce5b", "revision_nr": 1, - "created": 1701809344856, - "modified": 1701809344856 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17289,10 +17289,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "16529e72aed447e2a2c38543", + "revision": "beaba4989554460fbc5427ef", "revision_nr": 1, - "created": 1701809344856, - "modified": 1701809344856 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17326,10 +17326,10 @@ "currency_id": "IVIP", "history_id": 1688595538475 }, - "revision": "cef6ee563aae4e6d88d726e7", + "revision": "d63774cdf0dd472a890c8a3e", "revision_nr": 1, - "created": 1701809344856, - "modified": 1701809344856 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17337,10 +17337,10 @@ "content": { "type": 5, "value": "Investimento de 2.154.096,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", - "revision": "288c67a4be3d4d9f9dab876c", + "revision": "3d063a66e9ab48efbb41da81", "revision_nr": 1, - "created": 1701809344856, - "modified": 1701809344856 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17358,10 +17358,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "99b240c3c5a14137a84c5c7f", + "revision": "88f9720b7e97405ba278c051", "revision_nr": 1, - "created": 1701809344856, - "modified": 1701809344856 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17369,10 +17369,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691274110792", - "revision": "4bf4f468d2dc4d76b97f357a", + "revision": "b1172ca429c943119f2d2ddd", "revision_nr": 1, - "created": 1701809344856, - "modified": 1701809344856 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17406,10 +17406,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "f2bb77f996dd43c7b202fe84", + "revision": "0edc1372ed2040c2bf8c84ff", "revision_nr": 1, - "created": 1701809344856, - "modified": 1701809344856 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17417,10 +17417,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 2.154.096,00 IVIP com um rendimento de +43.081,92 IVIP (2,00%)", - "revision": "ee3972ec97424cf097aa814d", + "revision": "c7f15c85968641f28980a6ef", "revision_nr": 1, - "created": 1701809344856, - "modified": 1701809344856 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17432,10 +17432,10 @@ "label": "Taxa de 3,00%", "amount": 36290.1735 }, - "revision": "213d20abf1684cd7ad191c04", + "revision": "5ba737df640546369d2255eb", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17452,10 +17452,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "e3b4601786cd4dc8b7b42249", + "revision": "accbd94f26314a1ea452dbbb", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17463,10 +17463,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691439593377", - "revision": "39e9f982e88a45dfa0c32ff7", + "revision": "1e4465656f234be9a598aa41", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17474,10 +17474,10 @@ "content": { "type": 2, "value": {}, - "revision": "48d52bc72ea944a3ba6033dd", + "revision": "508ec0aebafb47c68e85be78", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17517,10 +17517,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "812c1d6a98da483ea33ea93a", + "revision": "661a66c639b247579d83981f", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17528,10 +17528,10 @@ "content": { "type": 5, "value": "Saque de 1.209.672,45 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", - "revision": "0bf535fa0fda4b7893634adc", + "revision": "2fad26054f174d6a9da25565", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17543,10 +17543,10 @@ "label": "Taxa de 3,00%", "amount": 36184.977 }, - "revision": "b7b2ce4211fd48689d8aa609", + "revision": "437e0c9d66ef44ca946bb7a7", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17563,10 +17563,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "5a992f3a04074b7388aa7dd5", + "revision": "4ed847ce397a4656b2824631", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17574,10 +17574,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691439992266", - "revision": "ab16e4c10e5942b1b2d9d54f", + "revision": "c73227435d154db8807ceda7", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17585,10 +17585,10 @@ "content": { "type": 2, "value": {}, - "revision": "f794f5fbc2b04e6caeb9668d", + "revision": "938cb5eb12524f0397d228c4", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17628,10 +17628,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "6b66d39f1c794b97b1a70589", + "revision": "1cbfe40af0814847822d10e5", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17639,10 +17639,10 @@ "content": { "type": 5, "value": "Saque de 1.206.165,9 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", - "revision": "0d48eeeeee7f4b8d9078b6a9", + "revision": "50f16c6f29c24a3d8d2c2102", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17654,10 +17654,10 @@ "label": "Taxa de 3,00%", "amount": 65395.38 }, - "revision": "933bf383feb04f56818e68c3", + "revision": "24eddbf993ad46638f9af19b", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17674,10 +17674,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "598162aee5464a2c9c03264d", + "revision": "eb6ccd5cbe2c46de8bc0dc57", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17685,10 +17685,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/011720487643927414/history/1691447884361", - "revision": "01385710141c4f1bbf2f47d2", + "revision": "bf004ac017cb4a65bb8fa231", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17696,10 +17696,10 @@ "content": { "type": 2, "value": {}, - "revision": "bb61c0c21c384ee8823ad3b7", + "revision": "903ab67e2b484c589172c051", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17743,10 +17743,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "5d11def552bb4df1a667ea89", + "revision": "3fccf5f3f92e41eeb438cea6", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17754,10 +17754,10 @@ "content": { "type": 5, "value": "Saque de 2.179.846,00 IVIP para a carteira 0x74B39081E9C9278b55Fb812EdDbEa453fb0EAD98", - "revision": "de175758e73b47dfbd5bc649", + "revision": "8c998a15300e4ef6a0189aaf", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17765,10 +17765,10 @@ "content": { "type": 1, "value": {}, - "revision": "f4bc0c08a1c94e78890b1142", + "revision": "8cd85b05c7d5423ebdd1cdcf", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17776,10 +17776,10 @@ "content": { "type": 1, "value": {}, - "revision": "e90a9a7da86344d9bad3d517", + "revision": "024c5dd68633444dbaa5b297", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17790,10 +17790,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "8f58d65da38d45e9aec0a3eb", + "revision": "2207cf8dff18461784e79462", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17810,10 +17810,10 @@ "value": 1696561200000 } }, - "revision": "09eb8161d5ae4027b977c8a2", + "revision": "72ca2e55858d451d9ed5ad05", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17821,10 +17821,10 @@ "content": { "type": 1, "value": {}, - "revision": "548f3e775e6646a5b0a57f3c", + "revision": "e50d8c32651c46ac91380b8b", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17832,10 +17832,10 @@ "content": { "type": 1, "value": {}, - "revision": "0785032326354e5f9afdca20", + "revision": "71991ea7eb2b40bf8c2df6cd", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17851,10 +17851,10 @@ "value": 1696474800000 } }, - "revision": "8af635cc4cae451190420c0d", + "revision": "a8e26f4069e644aea85f7b7e", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17862,10 +17862,10 @@ "content": { "type": 1, "value": {}, - "revision": "830572685cae4121abc22b69", + "revision": "32a16c605a6a4aa5aabd6975", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17875,10 +17875,10 @@ "value": { "costs": {} }, - "revision": "d35e6600164f467ca22cbcd6", + "revision": "2789576023b14d3baac8345b", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17920,10 +17920,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "852fbbc0131c4a49b240af1e", + "revision": "e5257f6d2aaf481c94c5623c", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17931,10 +17931,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0128.8622.7244.5948-72", - "revision": "740085ab2e5048cc9fba6114", + "revision": "04b1de18598d4156b32c1818", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17954,10 +17954,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "09634fb076a24bfd934cfc0b", + "revision": "1d055fa5bef94da4995542fb", "revision_nr": 1, - "created": 1701809344857, - "modified": 1701809344857 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -17993,10 +17993,10 @@ "history_id": 1679266899414, "description": "Compra de 291076 IVIP por 50 BRL" }, - "revision": "cb3490fc6cd0406495866b51", + "revision": "655a0abd500b4d0db1c30cfb", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -18016,10 +18016,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "35e47d76b90848ae9e13a31d", + "revision": "5e52f0fb2dcb4ea1aa5cdeb3", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -18054,10 +18054,10 @@ "history_id": 1685668294321, "wasDebited": true }, - "revision": "17b307308caf4206bd0e9a22", + "revision": "d468fed6c2e14eaf82308859", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -18065,10 +18065,10 @@ "content": { "type": 5, "value": "Investimento de 291.076,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "0394a37872e347b5a8668024", + "revision": "4d8a78145e7a4bfcbbeab40f", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -18076,10 +18076,10 @@ "content": { "type": 1, "value": {}, - "revision": "18dc8f7d104b4d5182882373", + "revision": "4a845c73dafc48b1a38e93e6", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -18087,10 +18087,10 @@ "content": { "type": 1, "value": {}, - "revision": "b075fe6f310e443d8f588869", + "revision": "1caebe2fb8004f9da6a7f0f5", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -18101,10 +18101,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "0e4196ce9814472589083d03", + "revision": "6041ec6eb1cd4e81966af5fa", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -18121,10 +18121,10 @@ "value": 1696561200000 } }, - "revision": "eb2f4f63bffb477598aff86a", + "revision": "26dd48a5b3804e379ba315a2", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -18136,10 +18136,10 @@ "symbol": "IVIP", "value": 77.94 }, - "revision": "917faee34d944ccda63a2616", + "revision": "92a59b54e9234c0bba418af2", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -18147,10 +18147,10 @@ "content": { "type": 1, "value": {}, - "revision": "f1b37aa7bbff41609bd66eb4", + "revision": "2b33fdd4bdcb468f81583f86", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -18160,10 +18160,10 @@ "value": { "costs": {} }, - "revision": "d8a73f84e54841a1927fec64", + "revision": "584db939377e46768f11d320", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -18205,10 +18205,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "337a3f0b428747e4a3b9335d", + "revision": "4ff3202a456449c79aea87bf", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -18216,10 +18216,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0150.9473.3487.9762-98", - "revision": "c1bde9884234424f911281d2", + "revision": "60dacb592dc947fbbd04065c", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -18239,10 +18239,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "7a10e2310d794dd0ad5de2cd", + "revision": "b2f38dbf3ff947dcb6ad508e", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -18278,10 +18278,10 @@ "history_id": 1684624257232, "description": "Compra de 730.609,00 IVIP por 150,00 BRL" }, - "revision": "438c2039638c43fbb34d58c7", + "revision": "dcef322e2f5b47f6a2db2509", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036330, + "modified": 1702563036330 } }, { @@ -18301,10 +18301,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "50377fcbc35f47919733ceba", + "revision": "e5b59633f69744b6af3874f8", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18339,10 +18339,10 @@ "history_id": 1687113576960, "wasDebited": true }, - "revision": "7af20840ee2d489c9015bb68", + "revision": "07a1628821e849698da6542c", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18350,10 +18350,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/18/2023", - "revision": "a4bfe9dfe20e45a7b283f00b", + "revision": "3288b267f23f437aa505d25c", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18373,10 +18373,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "dffe7f16046b4522b4e34e46", + "revision": "1fb0dbba5e0c454aac2816e8", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18410,10 +18410,10 @@ "currency_id": "IVIP", "history_id": 1687113714689 }, - "revision": "463f54a9eb4941649888a70a", + "revision": "dbcb48bd348641d3b047c76d", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18421,10 +18421,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/18/2024", - "revision": "996fa5da50b14c0abfe5b183", + "revision": "1f21afad37d442bfb56b46d0", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18444,10 +18444,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "94a8578325954bf79abe2cf2", + "revision": "34a30929530a4413ba402ca5", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18481,10 +18481,10 @@ "currency_id": "IVIP", "history_id": 1687113759469 }, - "revision": "387083ad2a994f15be50c987", + "revision": "4800a77e950247a59ae202bd", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18492,10 +18492,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/18/2025", - "revision": "298ffb7395da4541bd7c4aa7", + "revision": "64a6ed5bd7004d61beb38ffd", "revision_nr": 1, - "created": 1701809344858, - "modified": 1701809344858 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18515,10 +18515,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "6c32bf8ee1994d6f822707fa", + "revision": "d4b1ae054a0e402ea64efc3d", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18552,10 +18552,10 @@ "currency_id": "IVIP", "history_id": 1687313544564 }, - "revision": "659a64daf048450a8fc9a2db", + "revision": "a4378a5703e043a98616d3fa", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18563,10 +18563,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2025", - "revision": "bc30f5367ac5421887238ce7", + "revision": "488b0e178a6c4deb827f01d3", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18586,10 +18586,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "9694c27c99b0419fa1a102cc", + "revision": "718f0e00ab684db095254d79", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18623,10 +18623,10 @@ "currency_id": "IVIP", "history_id": 1687313588225 }, - "revision": "72617e45c68e4e0abe4d2248", + "revision": "b2352c9be7d04961ae36e9cc", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18634,10 +18634,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", - "revision": "87d995a0c5084b96a42c0ae8", + "revision": "e934c88fa5bc4d03be0ff4d5", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18657,10 +18657,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ebd786a362784dc58c342474", + "revision": "b5760d56fc3d424186aca0fc", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18694,10 +18694,10 @@ "currency_id": "IVIP", "history_id": 1688595606369 }, - "revision": "a50822b1e48a47a8b94e192e", + "revision": "43019e457ad645a696fd1df9", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18705,10 +18705,10 @@ "content": { "type": 5, "value": "Investimento de 713.651,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", - "revision": "16c2c94df5c9401e9f9f869e", + "revision": "b3beb791e9284b76bdb615fd", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036331, + "modified": 1702563036331 } }, { @@ -18726,10 +18726,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a0ef46a6a3f042b1b4838fa9", + "revision": "77078906748a40c79185a2dc", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -18737,10 +18737,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/015094733487976298/history/1691274110709", - "revision": "2bb119293a3046599c98dbbf", + "revision": "af341cf565cb476085285781", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -18774,10 +18774,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "8492871430b64caeb8c82755", + "revision": "09e992a8b2db45ea8a283cf1", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -18785,10 +18785,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 713.651,00 IVIP com um rendimento de +14.273,02 IVIP (2,00%)", - "revision": "594dbf284a2747a580286a2a", + "revision": "963d45c0c1f049a8bec9271d", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -18796,10 +18796,10 @@ "content": { "type": 1, "value": {}, - "revision": "46e64b6bc5b64c0abb027caf", + "revision": "2417b4eb95a04755aa680c14", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -18807,10 +18807,10 @@ "content": { "type": 1, "value": {}, - "revision": "94bee29f787c45d9bb17c861", + "revision": "e8f58beb796e4fbab85bb231", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -18821,10 +18821,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "96919d97e327495b904eaf84", + "revision": "caceaa959eb643d98ccb4c51", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -18841,10 +18841,10 @@ "value": 1697252400000 } }, - "revision": "ba76b18123d14376a2172b60", + "revision": "f9f45f11c8c7482686e77d3a", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -18852,10 +18852,10 @@ "content": { "type": 1, "value": {}, - "revision": "6d76f027210b4223bca60b38", + "revision": "e283354fde1147bca06c2627", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -18863,10 +18863,10 @@ "content": { "type": 1, "value": {}, - "revision": "6a97d48f360844258729fa84", + "revision": "1f9d4bb9c7e24bb99db5a798", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -18874,10 +18874,10 @@ "content": { "type": 1, "value": {}, - "revision": "9cfcd775e6c846de907ff1d7", + "revision": "670ca7b15506483d8d14427f", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -18888,10 +18888,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "9f2e501a59154259ac29b71f", + "revision": "4d57bf9be4c24f699ed05259", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -18904,10 +18904,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "dfe59b97f6464df0a5d6965f", + "revision": "44ceab0b94c94e44be1daffc", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -18919,10 +18919,10 @@ "available": "0.00000000", "value": 0 }, - "revision": "5aad0209026349a18dc43793", + "revision": "f533b846224c4f348187c592", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -18934,10 +18934,10 @@ "available": "0.00000000", "value": 0 }, - "revision": "cf48f2e0b3d04734abead53e", + "revision": "a215b722518c4c4eaed8cd56", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -18945,10 +18945,10 @@ "content": { "type": 1, "value": {}, - "revision": "9081b2240cbf409fa2d40bfd", + "revision": "fe119dd74164487388a566f5", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -18958,10 +18958,10 @@ "value": { "costs": {} }, - "revision": "27c8f6f21c914d069bd52b62", + "revision": "98d95dfb3c714452a02cf4c7", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -18998,10 +18998,10 @@ }, "money_release_status": "rejected" }, - "revision": "d88615cd0ceb437b80390361", + "revision": "c90b66e992b1434eb489496d", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -19009,10 +19009,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0164.7568.6934.0474-40", - "revision": "3fc1c59a8663447b85090835", + "revision": "3be6b08c01a84499bc4d7b24", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -19022,10 +19022,10 @@ "value": { "costs": {} }, - "revision": "f177e77b7fb14dfe94d999b0", + "revision": "13aa06ade2c347fbae60b777", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -19067,10 +19067,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "6f787e5b839b45779b75dcd0", + "revision": "595571c938524590a747a6a5", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -19078,10 +19078,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0164.7568.6934.0474-40", - "revision": "ea3aec6f303c4390a67bd8a0", + "revision": "6de014bfdc2c46c297ded732", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -19091,10 +19091,10 @@ "value": { "costs": {} }, - "revision": "d72d609bb73e46fabc039b77", + "revision": "8fb0b2873922419faa5527f1", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -19136,10 +19136,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "62068bf96fc74028870a853a", + "revision": "d831757330a7412bbe2736d0", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -19147,10 +19147,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 600,00 para a carteira iVip 0164.7568.6934.0474-40", - "revision": "5ba795a244e2474392a22a25", + "revision": "42e6e5996bb640ef96f9fa02", "revision_nr": 1, - "created": 1701809344859, - "modified": 1701809344859 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -19170,10 +19170,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "1a7b5368a54c43cfac48bc38", + "revision": "d0f2433789c9469cbcafe161", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -19209,10 +19209,10 @@ "history_id": 1684626826140, "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" }, - "revision": "57c244347c574c3797ab2c0b", + "revision": "7bad830375cc42108bc286f8", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036334, + "modified": 1702563036334 } }, { @@ -19222,10 +19222,10 @@ "value": { "costs": {} }, - "revision": "7264b1cf192343129e495c8d", + "revision": "63a711bc5f09487a80f4b713", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19257,10 +19257,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "4e830f72d5c3473caffa41ec", + "revision": "ebef35b6f03b438b9764110c", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19268,10 +19268,10 @@ "content": { "type": 5, "value": "Saque de 788.564,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", - "revision": "29993f34260243cf877e9ecd", + "revision": "d65d4ce7d01344a39f0fb73e", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19281,10 +19281,10 @@ "value": { "costs": {} }, - "revision": "32537941f13f4b72bf29b239", + "revision": "b92cbbe4bd9041f2af36a153", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19321,10 +19321,10 @@ }, "money_release_status": "rejected" }, - "revision": "a879f49b00f84e05a44e1736", + "revision": "8711334797734b89a4bb35ba", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19332,10 +19332,10 @@ "content": { "type": 5, "value": "Saque de 788.564,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", - "revision": "431842a6d5524015b702cdca", + "revision": "69c0131cafb14968a9d142a3", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19345,10 +19345,10 @@ "value": { "costs": {} }, - "revision": "997062d8ea354f68b249e434", + "revision": "90456c0487394eaf97c1b318", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19390,10 +19390,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "b673236c9be5492385e49fc6", + "revision": "e0e2c7e73a3d4cc5a1f58876", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19401,10 +19401,10 @@ "content": { "type": 5, "value": "Saque de 7.793.170,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", - "revision": "a4e9c99c19e7447497c6c99a", + "revision": "419230e82d594c9595f277cb", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19414,10 +19414,10 @@ "value": { "costs": {} }, - "revision": "c396adb28f2846909514d2fa", + "revision": "0f9883193aea475dae4478af", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19454,10 +19454,10 @@ }, "money_release_status": "rejected" }, - "revision": "4bbe9cca2db44387a3dff739", + "revision": "90d86bd68fe84b988493c54f", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19465,10 +19465,10 @@ "content": { "type": 5, "value": "Saque de 7.793.170,00 IVIP para a carteira 0xcfC4430e8cffA79Bd81864f6968A04Ea5E1A6bC1", - "revision": "7cf0cc604fe0450eb44f0ac9", + "revision": "47bb9390b6384cf389201f95", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19476,10 +19476,10 @@ "content": { "type": 1, "value": {}, - "revision": "eb918293e6034593913985b1", + "revision": "4030b2cecbed4c2092c2e086", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19487,10 +19487,10 @@ "content": { "type": 1, "value": {}, - "revision": "a29ab2c62c5f4d7489330293", + "revision": "7c4bc6ce06644368a20298ea", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19501,10 +19501,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "1f954178fbc94eafb763e324", + "revision": "3861216f8cd84954840a6384", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19517,10 +19517,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "4013b301bc1b4fff90e0500a", + "revision": "0e7de1697d7047339818c355", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19528,10 +19528,10 @@ "content": { "type": 1, "value": {}, - "revision": "64edaf2bd12145e0bc77120c", + "revision": "100b3b5e80e7475abcd2905c", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19539,10 +19539,10 @@ "content": { "type": 1, "value": {}, - "revision": "a781d2cf1e614c1a86741f0a", + "revision": "ff5861bf4f08412a9cd0869a", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19550,10 +19550,10 @@ "content": { "type": 1, "value": {}, - "revision": "65473e4a80ab477cbb441c29", + "revision": "ef262b6a194641768ae15771", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19564,10 +19564,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "d4a172fd47934edfac6807fd", + "revision": "0084fa819c8f4e7fb0ce660e", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19580,10 +19580,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "f9b1dc547e5c466e9958fce5", + "revision": "f859eb185b9245a29e0adc16", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19595,10 +19595,10 @@ "symbol": "IVIP", "value": 0.000077 }, - "revision": "57885b03bee94b5cafdc9f25", + "revision": "a3f80f29c8c841ffb7deda4a", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19606,10 +19606,10 @@ "content": { "type": 1, "value": {}, - "revision": "60cf56bed48d4eb8a358c4f1", + "revision": "68f8d8ece8fe4571908b0546", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19619,10 +19619,10 @@ "value": { "costs": {} }, - "revision": "06c90ee6d98e415a805e34a3", + "revision": "c94cbeabc79d42e9ae68157a", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19664,10 +19664,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "2e1e6264f4e441fc8cea0482", + "revision": "08d2ec48c156441db384d37c", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19675,10 +19675,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "a2e19c053a37440fa938f6dc", + "revision": "f41375a61f844aab8d005ce4", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19690,10 +19690,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "b15184d5e45f4f82b23154eb", + "revision": "1691ca8a27774b00b55bb559", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19701,10 +19701,10 @@ "content": { "type": 1, "value": {}, - "revision": "c919b6425c1443258d9321d8", + "revision": "3d4772bb50b3459a9e4517da", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19712,10 +19712,10 @@ "content": { "type": 2, "value": {}, - "revision": "7d0645b876b84226a001109a", + "revision": "96b994d910d34b64a2dcb60b", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19748,10 +19748,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "8d4615e6643b482289ca73e0", + "revision": "9e78db6a080742a2930fc9e8", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19759,10 +19759,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "3eb5b98b95b4404ebf690c2f", + "revision": "6b226380512f45eda2b0d2a3", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19782,10 +19782,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "c000a89baf3d478cb1c8d733", + "revision": "c282698fc8e343aa8285f946", "revision_nr": 1, - "created": 1701809344860, - "modified": 1701809344860 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19821,10 +19821,10 @@ "history_id": 1684018960001, "description": "Compra de 8.106.588,00 IVIP por 1.500,00 BRL" }, - "revision": "f0e8014ac40f4d2f84522af7", + "revision": "43ca8d7d3d0b458cbfd009e7", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19834,10 +19834,10 @@ "value": { "costs": {} }, - "revision": "ee1f031c301d4ea4bc5b8cde", + "revision": "08a9f2d71a284d5db29c9990", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19879,10 +19879,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "0d3c8d3e1edf40ac806231e4", + "revision": "4f3aa8831ad546c1ad8412b3", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19890,10 +19890,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "42521e93f13945968a81aff0", + "revision": "501416a754764cb7a3e86f47", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19913,10 +19913,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "898750d855c74132bd4722ce", + "revision": "f566ba04edc643b9844fc650", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19952,10 +19952,10 @@ "history_id": 1684631103258, "description": "Compra de 487.804,00 IVIP por 100,00 BRL" }, - "revision": "c039388c35e94322a87e8608", + "revision": "2a89352fa6b943b886b78d63", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -19965,10 +19965,10 @@ "value": { "costs": {} }, - "revision": "31b8e2693219409eb48df72f", + "revision": "822612c165764fffaf8752bc", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -20000,10 +20000,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "0d4ada75ca1a4c25b5fb6d95", + "revision": "fc40cee3698c4ade905ebda3", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -20011,10 +20011,10 @@ "content": { "type": 5, "value": "Saque de 4.297.196,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "9a50cc7d6afb46ea989982f7", + "revision": "be313f0e50d548ab9616eabb", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036335, + "modified": 1702563036335 } }, { @@ -20024,10 +20024,10 @@ "value": { "costs": {} }, - "revision": "393e06e2a108409281fda252", + "revision": "db4998c5f63b4123857b172b", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20069,10 +20069,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "61a6b8a2d4044dbfae650451", + "revision": "7d2eedda9d144b82a8bc49b2", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20080,10 +20080,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "187765fe04994e0f903f6c70", + "revision": "7a7334e71b7b4911a3525bbc", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20105,10 +20105,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "29f046c6de0d4d9e91a13d42", + "revision": "991041263033422bbef81e58", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20144,10 +20144,10 @@ "currency_id": "BRL", "history_id": 1686591730981 }, - "revision": "45c48417ef0b4eecb97ace1b", + "revision": "a53799c452c949cd87e2d695", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20155,10 +20155,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "03b4efe4430547cf94488a09", + "revision": "cff0618ece3c479cb8e388f0", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20168,10 +20168,10 @@ "value": { "costs": {} }, - "revision": "bdac391308674799a891310c", + "revision": "24c8d031ac4b489da522d722", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20213,10 +20213,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "2f017b149c65425686a16d88", + "revision": "16e0d32add584890809d6aad", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20224,10 +20224,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "b2429f8c1b254454bc092128", + "revision": "f92b79fdedf7487f903dc684", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20249,10 +20249,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "bedef5f110004377a0cabd97", + "revision": "b6ec43c810c84c65a8160900", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20288,10 +20288,10 @@ "currency_id": "BRL", "history_id": 1688315152944 }, - "revision": "09580857b0bd4fb8a23374fc", + "revision": "2b854a67b9e647b9b70c057b", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20299,10 +20299,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "5893a8f60d1f41e1881efe7d", + "revision": "3cd462a2168a4c0d8fa02b48", "revision_nr": 1, - "created": 1701809344861, - "modified": 1701809344861 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20322,10 +20322,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "b9f9c953f927481cb0146539", + "revision": "c1032662d8a748fc9e025562", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20360,10 +20360,10 @@ "history_id": 1688426195717, "wasDebited": true }, - "revision": "f81dad4c7c254f9f9cd000d7", + "revision": "4a212394382a4581a984b8a1", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20371,10 +20371,10 @@ "content": { "type": 5, "value": "Investimento de 344.736,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "fdf2edf2dead452988ecb296", + "revision": "ce610ee5a46e48f29d838ff4", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20384,10 +20384,10 @@ "value": { "costs": {} }, - "revision": "22fed79e91394860bc2b3bfc", + "revision": "8a94eaf715d945339d4721bd", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20429,10 +20429,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "424aec3976d240f9a3250aa7", + "revision": "17dd411edf7046faa1909a62", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20440,10 +20440,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 430,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "88ca6dc394c846329fdcd851", + "revision": "4ec76f22ea8a467d8865e4be", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20463,10 +20463,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "0c99925a076e4dd683bef8ad", + "revision": "ade97a67b9164b4b94716d1a", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20502,10 +20502,10 @@ "history_id": 1689349679189, "description": "Compra de 284.782,00 IVIP por 440,00 BRL" }, - "revision": "7cdbb36b347443cfb08f2300", + "revision": "5ce67e4103d84aac8088b876", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036336, + "modified": 1702563036336 } }, { @@ -20515,10 +20515,10 @@ "value": { "costs": {} }, - "revision": "b71ae20359d3420ca27be900", + "revision": "0e2190978b864a8784b11d3d", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20560,10 +20560,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "716c320d08054cce96e6b8e8", + "revision": "3ef5c56764574f56b791c58a", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20571,10 +20571,10 @@ "content": { "type": 5, "value": "Saque de 284.782,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "8900f0cf1384404f9818bce5", + "revision": "1e8273750a414b0baab86c0f", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20594,10 +20594,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "330db81703114df2a873bd86", + "revision": "a8d2159bf81e4aeeb56da3bf", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20631,10 +20631,10 @@ "currency_id": "IVIP", "history_id": 1689794977578 }, - "revision": "331a51d46f0a4dc3ad9c34cc", + "revision": "11c749c226fc4bb596e90768", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20642,10 +20642,10 @@ "content": { "type": 5, "value": "Investimento de 500.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/19/2025", - "revision": "6411684fa6fd48faa808bc20", + "revision": "985318ba29594e1ab93abf4f", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20655,10 +20655,10 @@ "value": { "costs": {} }, - "revision": "24bae974228b4285a4e754d1", + "revision": "c7e2679d4d264843b6fad487", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20690,10 +20690,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "46d95b830bba45f982d96d04", + "revision": "e42ea3a4ee7b4c279e04cd19", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20701,10 +20701,10 @@ "content": { "type": 5, "value": "Saque de 345.419,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "99320df722774c20bafe5349", + "revision": "a7a29ca016bb4e83a42e6ac4", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20722,10 +20722,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a23621c96c7a4d20aa63bfaf", + "revision": "7530ba4475b146b99f905e6a", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20733,10 +20733,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1690130150231", - "revision": "d011fb735c71404fac5cd53b", + "revision": "d8927890bd6d4979b3e6ef7a", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20770,10 +20770,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "d8e7693a85da4e4fb4a2e3a5", + "revision": "e3552f4b1bd340fa9c52dacf", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20781,10 +20781,10 @@ "content": { "type": 5, "value": "Saque de 1.908.099,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "f517097757c14a0ba2ebcde0", + "revision": "aadc689151af4c1fbf3effb5", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20802,10 +20802,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d413f17c8c714fb9a6a9683d", + "revision": "00fde02674b648bcb4dcdaff", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20813,10 +20813,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1690225429559", - "revision": "98e820d10c7e491e80a189ef", + "revision": "cd6e7d80ca1b4372a89abd60", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20850,10 +20850,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "ab697e4213b24e73abea472f", + "revision": "0a88d7b23c774603af50aedb", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20861,10 +20861,10 @@ "content": { "type": 5, "value": "Saque de 1.829.159,00 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "3155448bc8894300b716eed9", + "revision": "155f399f50004b0e940c77d2", "revision_nr": 1, - "created": 1701809344862, - "modified": 1701809344862 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20882,10 +20882,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d37d409ff4264274927c1ad5", + "revision": "0cfa5061beb540389fad0645", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20893,10 +20893,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1691104619419", - "revision": "8b1a12897a1a4d1c92c88ae3", + "revision": "67b4b90fc6374103b3435b74", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20930,10 +20930,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "81229272ca4f4828923b9e3d", + "revision": "fd7b1c39d7ad4f20acd2a254", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20941,10 +20941,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 344.736,00 IVIP com um rendimento de +6.894,72 IVIP (2,00%)", - "revision": "e1ea1104f8004f91ba28d991", + "revision": "0838d1cb5c94491688524471", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20962,10 +20962,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "437a1aa373f546fb96d971f5", + "revision": "2520e9dc7ff24680a3f003ac", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -20973,10 +20973,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1691246155706", - "revision": "ceebfe6f4e214d8c9297ffb2", + "revision": "7018c4bd0163481f8938d5ea", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -21010,10 +21010,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "e7851fb1b8ed4c65ba0ea8e8", + "revision": "0a9ae5717d284f30bef61891", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -21021,10 +21021,10 @@ "content": { "type": 5, "value": "Investimento de 4.123.251,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", - "revision": "d412b78c547541d1a60b9895", + "revision": "7fa4290db5d54b0fb6b344f8", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -21038,10 +21038,10 @@ "value": 1694714218629 } }, - "revision": "76bd892e13294c33beae7f31", + "revision": "c0833d4404b9484fb2dd898e", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -21059,10 +21059,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f5445cd1130c40c3948f8546", + "revision": "e4ed4dc63adf4e3897eebd77", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21070,10 +21070,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1692122218629", - "revision": "791e94503d444aec996a276d", + "revision": "e7b4b7d15c134220a346e3f7", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21113,10 +21113,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "11ca028488ee4c6386be779d", + "revision": "4e4055577dba4efcb67af220", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21124,10 +21124,10 @@ "content": { "type": 5, "value": "Deposito de um valor 220,00 para a carteira iVip 0176.0919.3050.0250-62", - "revision": "c8f4f3785efd4b85a66daf30", + "revision": "04880d307c394d599e25eaed", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036337, + "modified": 1702563036337 } }, { @@ -21149,10 +21149,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "0d1b615004174326a724410d", + "revision": "53027f6c14af4f088b52198f", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21188,10 +21188,10 @@ "currency_id": "BRL", "history_id": 1692210661601 }, - "revision": "9eb0e8caef9947c680a89cad", + "revision": "aa82239472ca4b2fbde9ba47", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21199,10 +21199,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "2b09dd271ef94c389a0d77ec", + "revision": "1b547d55f46a4c658d599abd", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21220,10 +21220,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "9b158ef6cce24641827e81b5", + "revision": "c72715f2ab4e4e9fae33eb60", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21231,10 +21231,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1693924607794", - "revision": "da9cebc6aca3414c8986c4d3", + "revision": "e50c2d21912d4e3195db3f1e", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21268,10 +21268,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "9db1c7326ae04ba38641784a", + "revision": "fe17c79bdbb145a18710f987", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21279,10 +21279,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 4.123.251,00 IVIP com um rendimento de +82.465,02 IVIP (2,00%) - Y12XDT27", - "revision": "c1e1d6d4d3e94cf8a6e5f5ee", + "revision": "372633f26ab148e098b5fb4d", "revision_nr": 1, - "created": 1701809344863, - "modified": 1701809344863 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21294,10 +21294,10 @@ "label": "Taxa de 3,00%", "amount": 107596.65 }, - "revision": "23c4990cfe4c462ba65c36ff", + "revision": "a90acacb49bc4022a0e85991", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21314,10 +21314,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "f73bb20a0668406ca2344572", + "revision": "32aa99edd9cd422c8ed2b4fe", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21325,10 +21325,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694019139358", - "revision": "1a4af518bfa0430faaec48e1", + "revision": "08bbcc938ca74cbfa86b4007", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21336,10 +21336,10 @@ "content": { "type": 2, "value": {}, - "revision": "fc9779d051c943c895a3422a", + "revision": "775a8af959c649e38e3cb2fd", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21383,10 +21383,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "506ffe599b3045f9986b3549", + "revision": "1083d3505e5d4d03a524020b", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21394,10 +21394,10 @@ "content": { "type": 5, "value": "Saque de 3.478.958,35 IVIP para a carteira 0xa915Ac13EF09840E013cDe74a05f13aC05F4C2dd", - "revision": "54dffee99eff40909463d4a5", + "revision": "1bad832c01524d229b1e84b9", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21415,10 +21415,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "49f279f461e14a30af83c7ee", + "revision": "78bd0a03497448fb87116fe4", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21426,10 +21426,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694530925477", - "revision": "3ac6c4a3e1f648c18b43268b", + "revision": "eebf404fb7894a329b4ee110", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21469,10 +21469,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "928efee90bfb4a4085bfc7b0", + "revision": "6a5f6c8e745c42c5a18d2da8", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21480,10 +21480,10 @@ "content": { "type": 5, "value": "Investimento de 13.248,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 12/10/2023 - Y12XDT27", - "revision": "346aaff69e484318b1167aa2", + "revision": "dc79f24b26fb494fbbecd1f8", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21497,10 +21497,10 @@ "value": 1697151249010 } }, - "revision": "030466f361d242b8a80b92d6", + "revision": "e547defd96ee41c893931054", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21518,10 +21518,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7dd3fbdc435949ef916f263c", + "revision": "4c8cf6ddc6fe4ca8a8103413", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21529,10 +21529,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694559249011", - "revision": "b161cc53fae4414cb37ca92c", + "revision": "224392cbfeda45738b5a5017", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21572,10 +21572,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "622c4d38174b44aeaec0ad9e", + "revision": "a9ced7bf806345d8a6e0fc98", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21583,10 +21583,10 @@ "content": { "type": 5, "value": "Deposito de um valor 220,00 BRL para a carteira iVip 0176.0919.3050.0250-62", - "revision": "978ce73a8a224671b57a39b3", + "revision": "f9fa0cf759174c73a3c5faf8", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21606,10 +21606,10 @@ "installment_paid": 4, "installments_payable": 1 }, - "revision": "d38393c6547b4afba0bc5e74", + "revision": "12a5de3117014f31832e12ec", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21617,10 +21617,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1694560328887", - "revision": "884e1b02da414ee78a68ddf6", + "revision": "540498f60141483fb0adb677", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21654,10 +21654,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "4090cea6326a4785bfef6aae", + "revision": "eaccff4735d140879f9a0935", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21665,10 +21665,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "2f964d664b424c469eb47e1f", + "revision": "82493ed4ae0e484892342187", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21686,10 +21686,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7df87afd88774ff9a9d32d6f", + "revision": "97eafed0c1e34b798fc3d922", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21697,10 +21697,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1695164776163", - "revision": "261f5d513b044f8c92c8db50", + "revision": "c9993a13b48b42a1a639fdcd", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21740,10 +21740,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "3d76f354de04469ab921a392", + "revision": "8c95092c6cb0450182cd89c5", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21751,10 +21751,10 @@ "content": { "type": 5, "value": "Investimento de 4.583.948,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", - "revision": "55bc4948221944de845fa531", + "revision": "944d5f37331f49a69bb12345", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21772,10 +21772,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c7690f9e0bc848c882c83865", + "revision": "aa83d8db2b0c424c85868d3d", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21783,10 +21783,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1696551378554", - "revision": "874cb8ff329b42fea44e4182", + "revision": "a9945a684b03496abd9f5f62", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21821,10 +21821,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "da6d93cc9d804a05882a3a2c", + "revision": "24c4b2f2e9f34b48bfa3cab3", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21832,10 +21832,10 @@ "content": { "type": 5, "value": "Investimento de 4.597.196,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", - "revision": "a4d1e4de5d6647cab99213a9", + "revision": "de98274ad8f143be8e4327ac", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21849,10 +21849,10 @@ "value": 1699792000740 } }, - "revision": "a1cfc5d27b82450d8db0f397", + "revision": "a4948b5ff36940fda78b0a6f", "revision_nr": 1, - "created": 1701809344864, - "modified": 1701809344864 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21870,10 +21870,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "17e5edd4d6ac495fa696663f", + "revision": "305c9ff8abf74497b3a513c6", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21881,10 +21881,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1697200000740", - "revision": "f7e16f44746b4754985e7326", + "revision": "e8ade4cca13c4fae94233d84", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21925,10 +21925,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f4f02c8977d74c88a2bdf658", + "revision": "3a69155e9fcc49e98b5d8026", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -21936,10 +21936,10 @@ "content": { "type": 5, "value": "Deposito de um valor 220,00 BRL para a carteira iVip 0176.0919.3050.0250-62", - "revision": "e76faba473604a84b10c7219", + "revision": "fdea1b51622b42079dbc69ec", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036338, + "modified": 1702563036338 } }, { @@ -21959,10 +21959,10 @@ "installment_paid": 5, "installments_payable": 0 }, - "revision": "aee99c2fec2f4829ab96b9d7", + "revision": "643f091bc9f945d3b93da206", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -21970,10 +21970,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/017609193050025062/history/1697203305717", - "revision": "17264f8deccb4007886d775f", + "revision": "35c1168d1fec4a9781ba506d", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22008,10 +22008,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "37296cf568934be785338847", + "revision": "e304a0636dca4c2690ec79b8", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22019,10 +22019,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1684003059388", - "revision": "be0fc115fba844738d612bdb", + "revision": "efdb667f95494565a63ae083", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22030,10 +22030,10 @@ "content": { "type": 1, "value": {}, - "revision": "b050e7efc77f42c39baa2496", + "revision": "d93258efe3334da9915e8073", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22045,10 +22045,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "a4b455b115ce4d7798409623", + "revision": "ead501447ad748dba7e2e7bf", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22070,10 +22070,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "cecc886b2a91475c94154c12", + "revision": "ddbaab7767f5440fbf48dcb4", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22081,10 +22081,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "e548fd5128314987a18ae3d5", + "revision": "fbc3d1a9579e446ea48ba7fa", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22092,10 +22092,10 @@ "content": { "type": 2, "value": {}, - "revision": "5f00a53309aa49c79b21bbaa", + "revision": "396adc73ab23402798add45d", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22103,10 +22103,10 @@ "content": { "type": 1, "value": {}, - "revision": "1ac4f907c86e408ea80d7833", + "revision": "0861884a99a247489aa49d96", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22118,10 +22118,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "ce1892dbe32f468cbb13292e", + "revision": "a72c5b20779442b9962f3c3f", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22143,10 +22143,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "12b7b81f97ee4232a2075a4e", + "revision": "0ca61fa40bc4448db9f5c847", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22154,10 +22154,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "f9c72ca234734def83ccdf71", + "revision": "e31be98ed913416583066e9d", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22165,10 +22165,10 @@ "content": { "type": 2, "value": {}, - "revision": "a1697f62c60848c6b163490c", + "revision": "6fd4c59e569a4de28fde2280", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22176,10 +22176,10 @@ "content": { "type": 1, "value": {}, - "revision": "1a90e5043d304f30980cb714", + "revision": "33b410dc9df248b9a9a5be94", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22191,10 +22191,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "948c3d8224a94de1ab92db6c", + "revision": "1914c048b1344a648bb5dd87", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22216,10 +22216,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "9689b89099b4421d84699ca4", + "revision": "ea6f091cd8694e92b148102c", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22227,10 +22227,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "72e631934d6a46dd89aff39a", + "revision": "7b78fc66bc57441182914646", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22238,10 +22238,10 @@ "content": { "type": 2, "value": {}, - "revision": "96920b77f6d148568460a333", + "revision": "05423d47ae55434db3f00c8f", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22249,10 +22249,10 @@ "content": { "type": 1, "value": {}, - "revision": "7bd2002707c74bdda904188f", + "revision": "29e7a3aa3742448aaf975911", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22264,10 +22264,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "13f5298621354808a6901e44", + "revision": "db9dcd2b46e642c2b8fc8fb2", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22293,10 +22293,10 @@ "value": 1694560328902 } }, - "revision": "b7d858fb4fa649a9be63f1f5", + "revision": "a1b9ad26694c457da3c6e271", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22304,10 +22304,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "d4601584c34f45998ec9ab6a", + "revision": "a8ed714ef7324cae9e56133f", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22315,10 +22315,10 @@ "content": { "type": 2, "value": {}, - "revision": "26e943e5f78841e19f773731", + "revision": "da85af585cb5499c96bd79b9", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22326,10 +22326,10 @@ "content": { "type": 1, "value": {}, - "revision": "e13d2b3e626c4710a9f1745e", + "revision": "e290ca89582b44d7b56e12e9", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22341,10 +22341,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "17feaed88b204d889510d103", + "revision": "99b1d9122de04465a18df0b2", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22370,10 +22370,10 @@ "value": 1697203305729 } }, - "revision": "2e97452eeb2e47d68e29268b", + "revision": "09d9d0684fa64e05a9dc4de8", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22381,10 +22381,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0176.0919.3050.0250-62 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "e4d4d6b1730f431d97cfbbc0", + "revision": "70e8df28df084791bda3b69b", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22392,10 +22392,10 @@ "content": { "type": 2, "value": {}, - "revision": "c9e0a2efff334fefb3987394", + "revision": "4190b99a3f5043ecbdd1a64d", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22403,10 +22403,10 @@ "content": { "type": 1, "value": {}, - "revision": "8d91639762c4456bae47a2d9", + "revision": "7c0199b51b034beb81090ad9", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22414,10 +22414,10 @@ "content": { "type": 1, "value": {}, - "revision": "de36883e7f26450197cc97fc", + "revision": "d16051d469b34135bb876bcf", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22436,10 +22436,10 @@ "value": 1684000989928 } }, - "revision": "237bdab13b3b4e49a9b73cf1", + "revision": "87b587081864413e83dae4e1", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22456,10 +22456,10 @@ "value": 1697338800000 } }, - "revision": "8f54586d35bb4dedbf04f173", + "revision": "f1ef8db6a8a845a7bbb7d99b", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22469,10 +22469,10 @@ "value": { "costs": {} }, - "revision": "494aaea6d4934156ad8d553b", + "revision": "eba6f8fa65a74aaaa5f62d67", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22514,10 +22514,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b57f1f5ecbe5496e9401b27d", + "revision": "ac1308dec4834b84ad01ba44", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22525,10 +22525,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 15.000,00 para a carteira iVip 0176.2260.5984.9780-02", - "revision": "f82272e1eb0647589dbd401b", + "revision": "466198ff4aa44ef0a46112fb", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22548,10 +22548,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "47ed7046e42848ebac3e2db9", + "revision": "cfdfbc0774e04424b420f542", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22587,10 +22587,10 @@ "history_id": 1685471938618, "description": "Compra de 200.000.000,00 IVIP por 15.000,00 BRL" }, - "revision": "7539912e67644542a20d4c76", + "revision": "46f89ee44fcc4837a2c1b556", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22598,10 +22598,10 @@ "content": { "type": 1, "value": {}, - "revision": "ddc4e3e79ef44657b8d38c8d", + "revision": "6e51ca04f6314945822963eb", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22609,10 +22609,10 @@ "content": { "type": 1, "value": {}, - "revision": "d17660a7de834b6a8de19945", + "revision": "395c505ee70144899fd61ef8", "revision_nr": 1, - "created": 1701809344865, - "modified": 1701809344865 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22623,10 +22623,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "59f253acfd98434fa2b6b800", + "revision": "84e45da3a54c4b019d9495bd", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22638,10 +22638,10 @@ "symbol": "IVIP", "value": 20332.55 }, - "revision": "21d8d22f571642c6b96d5119", + "revision": "3d5b5d02add04fb9bba5c092", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22649,10 +22649,10 @@ "content": { "type": 1, "value": {}, - "revision": "29e7945b20394631a50802ac", + "revision": "74d235e4543444e2b506e454", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22669,10 +22669,10 @@ "value": 1697425200000 } }, - "revision": "501a9422402347c1a888d0de", + "revision": "05cb6085993a44e0a32bb6bc", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22680,10 +22680,10 @@ "content": { "type": 1, "value": {}, - "revision": "7e637240f1884806995d7ba3", + "revision": "ac7ba594f41842c6b048e53e", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22691,10 +22691,10 @@ "content": { "type": 1, "value": {}, - "revision": "375671b1521c458a8570f654", + "revision": "af31c3daea4447e7b0b93bab", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22707,10 +22707,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "70fc318eb8e74f9da8b78d93", + "revision": "c4be94af93fa48569157b83d", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22722,10 +22722,10 @@ "symbol": "IVIP", "value": 0.000081 }, - "revision": "2bd85aa53da545c98e9df634", + "revision": "3babd000a7cf406ab48a005f", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22733,10 +22733,10 @@ "content": { "type": 1, "value": {}, - "revision": "38480215840f49818a344f47", + "revision": "41befd65c911435da90ae7f6", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22746,10 +22746,10 @@ "value": { "costs": {} }, - "revision": "c0e899ab23e64c3eac46948e", + "revision": "eed5dce18f2e4474be92796e", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22786,10 +22786,10 @@ }, "money_release_status": "rejected" }, - "revision": "ee0ef957e42341c7b8128d2f", + "revision": "033ca0f66e7f48e09e2724c3", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22797,10 +22797,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0192.1172.1108.0322-64", - "revision": "ccebf6786c53499f92203379", + "revision": "2d6fd6d13a2d40c5ab676a04", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22810,10 +22810,10 @@ "value": { "costs": {} }, - "revision": "70c0e7e649314f618d5163d1", + "revision": "e8595f436abb460aaf857c90", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22855,10 +22855,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "cb3bd0fe40864b609d5e8c04", + "revision": "ef40b7576bff407a9d9c4eee", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22866,10 +22866,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0192.1172.1108.0322-64", - "revision": "1737d73a362a4a519bba2c59", + "revision": "92da909d543e4ae19168c61a", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22879,10 +22879,10 @@ "value": { "costs": {} }, - "revision": "004821c0ba1d4aba9b5837e5", + "revision": "cc0624114d1549719d274a42", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22923,10 +22923,10 @@ }, "money_release_status": "approved" }, - "revision": "d19f82cdc1e94c44a1ce181f", + "revision": "52bae549572a4ebfafe8f2a6", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22934,10 +22934,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0192.1172.1108.0322-64", - "revision": "ff23875ae8334a248ecb5b5f", + "revision": "e18ac4da28544d32bcecdf9e", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22957,10 +22957,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "d2f6f27e4c72428c85a54283", + "revision": "b598f87d9eba42b3ba80421a", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -22996,10 +22996,10 @@ "history_id": 1678162119494, "description": "Compra de 14292068 IVIP por 2000 BRL" }, - "revision": "31270a1991f349b98a9e48a6", + "revision": "685b4b6030eb4f0983968849", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -23019,10 +23019,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "119725679c2c4d30a575fac1", + "revision": "98ff3bb249e54dacba73f128", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -23058,10 +23058,10 @@ "history_id": 1678201718893, "description": "Compra de 7083024 IVIP por 1000 BRL" }, - "revision": "0f57d59ed55f4019ae77da50", + "revision": "f37a2ff9a1ea4acb94912eb9", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036339, + "modified": 1702563036339 } }, { @@ -23071,10 +23071,10 @@ "value": { "costs": {} }, - "revision": "3d56d6a494124337b3361e4c", + "revision": "efd11a372c9447d485c088ff", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23111,10 +23111,10 @@ }, "money_release_status": "rejected" }, - "revision": "6c6179fc547a4a96bfa3e449", + "revision": "e83a9ace023a417385fa7346", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23122,10 +23122,10 @@ "content": { "type": 5, "value": "Saque de 15.000.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", - "revision": "47f2bb6734ab4de7b05dc699", + "revision": "c6d9b6a4121347b79d7a63a6", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23135,10 +23135,10 @@ "value": { "costs": {} }, - "revision": "b0bc6261f6644993a59f63b7", + "revision": "ed9db06ca56e42d2a39028b8", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23180,10 +23180,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "c2eb85c3ff1f4a54b0f2a5aa", + "revision": "69e2b56026f34798a4a7cfac", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23191,10 +23191,10 @@ "content": { "type": 5, "value": "Saque de 15.000.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", - "revision": "c890d87714ec4c828c4d346b", + "revision": "4ef938d9e7a44397b180b2c2", "revision_nr": 1, - "created": 1701809344866, - "modified": 1701809344866 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23214,10 +23214,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "26c7622fa58e456697dec67e", + "revision": "cb7b6b7a7e5e411796109131", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23252,10 +23252,10 @@ "history_id": 1687525932247, "wasDebited": true }, - "revision": "6cf686f2ee594c0583d5d272", + "revision": "f9e20d710aff4321940a002b", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23263,10 +23263,10 @@ "content": { "type": 5, "value": "Investimento de 6.375.092,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", - "revision": "4e1644baa5f04ec981e5d754", + "revision": "cbdf359c525844b9ad3b2883", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23286,10 +23286,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "c1b46cf8eb414017be9359f3", + "revision": "e7302ab04cd041b58e5d6687", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23324,10 +23324,10 @@ "history_id": 1688054453004, "wasDebited": true }, - "revision": "10bca410cfd34b6887a0e1d5", + "revision": "eff00753e871453fa8ee4cae", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23335,10 +23335,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/29/2024", - "revision": "03dc8b4847a04dd8be0fc90e", + "revision": "e6767590beca45e09baf29da", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23348,10 +23348,10 @@ "value": { "costs": {} }, - "revision": "4f7ae7fcd57241469eb81da5", + "revision": "5e26212669f4409c9e21c45f", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23383,10 +23383,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "47df78c2c02140af9a57bfb3", + "revision": "62c7c1631e984cfcab9750a5", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23394,10 +23394,10 @@ "content": { "type": 5, "value": "Saque de 1.375.000,00 IVIP para a carteira 0x138C940329742ba743896bCE4A765C30b7cD1732", - "revision": "5ca28ee14b264eb6a2c63708", + "revision": "1f3251bca1bf47d2bfc10020", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23417,10 +23417,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "4d1125ce3ab0456a96fcc732", + "revision": "b23204575bdf4990a03436f5", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23454,10 +23454,10 @@ "currency_id": "IVIP", "history_id": 1688400574946 }, - "revision": "e17e158a006041ca88305cfd", + "revision": "ab890eb203fd4a2389f5414d", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23465,10 +23465,10 @@ "content": { "type": 5, "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "8c15c0460fc84894897b6c7f", + "revision": "9cc102a8f1994455ad52192d", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23488,10 +23488,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "952a51bde5ae4194a71d87ba", + "revision": "c0fa43a9284647e2aaa8a698", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23526,10 +23526,10 @@ "history_id": 1691079119787, "wasDebited": true }, - "revision": "d5bb781ffe2640f6bde9cc53", + "revision": "85dfec070527448d83df6253", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23537,10 +23537,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 5.000.000,00 IVIP com um rendimento de +100.000,00 IVIP (2,00%)", - "revision": "01bda3f96c4f4c1cac7e71ef", + "revision": "fb6086c1d0864f638bc23e6f", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23560,10 +23560,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "116796673bbd4f67b5f88cd1", + "revision": "db4be6f0cf3443a4844e37ca", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23598,10 +23598,10 @@ "history_id": 1691079120545, "wasDebited": true }, - "revision": "afe92fd412be474fbfb2fef1", + "revision": "7ba3515a040b4436b7dd6157", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23609,10 +23609,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 5.000.000,00 IVIP com um rendimento de +100.000,00 IVIP (2,00%)", - "revision": "b43c13a72d3e45d4895d3cc0", + "revision": "7774ac385b9c4f8da4e85aab", "revision_nr": 1, - "created": 1701809344867, - "modified": 1701809344867 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23630,10 +23630,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "5554285d2d324b4b8bf83982", + "revision": "29e2c17b473d4a21abb6dddd", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23641,10 +23641,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1691085199409", - "revision": "672d738c8922466096a73b40", + "revision": "c9b8da282d0642e983f9e3d5", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23678,10 +23678,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "586567bb75c14a979a5d0bf9", + "revision": "682328a3e7914d08b74ca175", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23689,10 +23689,10 @@ "content": { "type": 5, "value": "Investimento de 5.199.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "9f024b70dd714fb487eeb59f", + "revision": "3ed0513c646749789407e3cc", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23710,10 +23710,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c565637fd04a4dbc81f90006", + "revision": "94716651275d48028da9f398", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23721,10 +23721,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1693763776046", - "revision": "2e2b4008875b4ef78391b88c", + "revision": "2866483862ff46988848cca1", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23758,10 +23758,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "1b0e9e91cbb9452590d515cc", + "revision": "c25c1b4991f44568b5123b9c", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23769,10 +23769,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 5.199.000,00 IVIP com um rendimento de +103.980,00 IVIP (2,00%) - Y12XDT27", - "revision": "fd99974083e842699753c009", + "revision": "06dbb52fae374f2c97be3f5c", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036340, + "modified": 1702563036340 } }, { @@ -23790,10 +23790,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "cd2a8c3f084342ed88be4776", + "revision": "1890e9b318ed47ec836644dd", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -23801,10 +23801,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1693924633176", - "revision": "5d5dcd8a553447bebcfeccbf", + "revision": "ad1b6c4f4e27439d81360f25", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -23838,10 +23838,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "df59a3602c324257a93c5c30", + "revision": "7fd9b8f94cdc4ec0ae3cd174", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -23849,10 +23849,10 @@ "content": { "type": 5, "value": "Investimento de 5.302.980,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", - "revision": "2833dea93f19456faf3e6a3f", + "revision": "f434ec10ac744d8aa38565b5", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -23870,10 +23870,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "332f7447d9e845fa826120b2", + "revision": "8574ef2935c54b399a7bff7f", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -23881,10 +23881,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1696516664226", - "revision": "0bea00ae33424f2eb5277dc7", + "revision": "b9b068fa331c4695a513659a", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -23919,10 +23919,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "acd923e504cd48738a09af37", + "revision": "fadf6f005e2542a7bc18ccbe", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -23930,10 +23930,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 5.302.980,00 IVIP com um rendimento de +106.059,6 IVIP (2,00%) - Y12XDT27", - "revision": "df2acdd90fcb4d86877d2236", + "revision": "5d37799146014f3184a13414", "revision_nr": 1, - "created": 1701809344868, - "modified": 1701809344868 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -23951,10 +23951,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "bdcc7991e86b49f8a922e56e", + "revision": "aab1eb61c81a40baa84a9b1a", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -23962,10 +23962,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/019211721108032264/history/1696621887766", - "revision": "abd4685c17e547ac8304fb15", + "revision": "072c7db86036459cbd7f3027", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24000,10 +24000,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "8aa7e0ed3bf94ef5a65cf69d", + "revision": "93c320f65c9d4a029e1d7c05", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24011,10 +24011,10 @@ "content": { "type": 5, "value": "Investimento de 5.409.039,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", - "revision": "803cd11290324712989060b7", + "revision": "8464c1bce4da4a9fabfebb7d", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24022,10 +24022,10 @@ "content": { "type": 1, "value": {}, - "revision": "246649a653c6419899abf8a7", + "revision": "3eab8e1609b44b01b108e6cf", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24033,10 +24033,10 @@ "content": { "type": 1, "value": {}, - "revision": "fd0fddadb2b04e9ea978bcea", + "revision": "450a8f4a14f84b0783a95749", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24051,10 +24051,10 @@ "value": 1689780416218 } }, - "revision": "92cc9385f0d44d3a953e536b", + "revision": "183c369f44de4193be4712ed", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24071,10 +24071,10 @@ "value": 1696820400000 } }, - "revision": "54e67e163c80488f89643894", + "revision": "c6d6456dccce49e2bd44dce5", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24086,10 +24086,10 @@ "symbol": "BRL", "value": 16.58 }, - "revision": "ef41a9bc419d46f4adfa86e9", + "revision": "1efe1a41b64f42f8b05a9d44", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24097,10 +24097,10 @@ "content": { "type": 1, "value": {}, - "revision": "0c8844f7320a429982aafeff", + "revision": "e9fb8f95c0f042999c6ebd97", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24110,10 +24110,10 @@ "value": { "costs": {} }, - "revision": "0d36d69e61a74d42bcd26894", + "revision": "a496edfa9cde4f6bb66c4b62", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24154,10 +24154,10 @@ }, "money_release_status": "approved" }, - "revision": "8402f813f3494591a688414c", + "revision": "4a8a101cf2cf47d5a5c227e4", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24165,10 +24165,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0199.6555.6064.9756-30", - "revision": "095d30b4345b40aba11db774", + "revision": "efad7d7c25fd442491e613e7", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24186,10 +24186,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "91dbd3a26ee344a4b58d0ce8", + "revision": "e0772f7c9bc94112afe7d60e", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24197,10 +24197,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/019965556064975630/history/1689901373588", - "revision": "fde68a3276174ac8b945d64f", + "revision": "bc861e1719904810bc034bab", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24234,10 +24234,10 @@ "base_currency_id": "BRL", "status_detail": "accredited" }, - "revision": "3a0a280db83b4ed3b8f46e78", + "revision": "6f556bdacb1a48dc9f356a8a", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24245,10 +24245,10 @@ "content": { "type": 5, "value": "Investimento de 20,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/20/2024", - "revision": "c0f70369930d41f4b7e85a6a", + "revision": "e317092a9d784c4db6ed8788", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24256,10 +24256,10 @@ "content": { "type": 1, "value": {}, - "revision": "8532d26c0e7d43eba12cb7d2", + "revision": "3e16d6e9246a4f368e5c59e9", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24267,10 +24267,10 @@ "content": { "type": 1, "value": {}, - "revision": "1ddf3f9ad0104cefbf90222f", + "revision": "9d0b1cc466914137975d5c8b", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24281,10 +24281,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "24b20c657289430b9bbdc038", + "revision": "a39968de667e4d8b9cc9b2c9", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24298,10 +24298,10 @@ "currencyType": "USD", "balancesModificacao": 1689822000000 }, - "revision": "6889f8bd65cf4bd7afd4b9be", + "revision": "2a53f5f4188248839b9f306b", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24313,10 +24313,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "292ffc1d1931423e80eb6558", + "revision": "89bf1a5de6484d5b99374899", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24328,10 +24328,10 @@ "symbol": "IVIP", "value": 10477.68 }, - "revision": "d94fe20fa5cb4d3e9f3a5af8", + "revision": "e49eeb87a1c4406488b675c0", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24339,10 +24339,10 @@ "content": { "type": 1, "value": {}, - "revision": "75c8aafafafb4484b560e7dd", + "revision": "5c3c14efa0fd457caa372dc7", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24352,10 +24352,10 @@ "value": { "costs": {} }, - "revision": "5a950c4131f04d4ea98f66d4", + "revision": "702863130e614f6ca21c4abb", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24397,10 +24397,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "bf6e0bcbbe2e484b95f0db51", + "revision": "2972dc0cd92f42abb868f2f7", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24408,10 +24408,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0219.7710.1011.6756-04", - "revision": "2ba979345c7c4b6698709206", + "revision": "73b6631d95d34e29a7560f7f", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24431,10 +24431,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a962925b418c4021855cb44d", + "revision": "6ceca8979beb4912a1c17cce", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24470,10 +24470,10 @@ "history_id": 1678147737654, "description": "Compra de 71386212 IVIP por 10000 BRL" }, - "revision": "92ee4d2ba0fb461688b5995e", + "revision": "75f8bf17feb14d4a8615276a", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24493,10 +24493,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a3706174a39b429a945410a6", + "revision": "b3dc09b96a084dbea4fc44a9", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24531,10 +24531,10 @@ "currency_id": "BRL", "history_id": 1678160584706 }, - "revision": "6db1ee998bbe4f6b8d8c702b", + "revision": "ae4f0361ceff4e49aab76072", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24542,10 +24542,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "5180725e4b7145e18ca2f852", + "revision": "93f1ed106a5547d497839db0", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24565,10 +24565,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "1d3f8fe097bd490da9c7acf9", + "revision": "aef13034ba9d4e6a98152e49", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24604,10 +24604,10 @@ "history_id": 1678162248934, "description": "Compra de 7146034 IVIP por 1000 BRL" }, - "revision": "3b27ce18776b4076949f60c3", + "revision": "8c475c36725f405398512079", "revision_nr": 1, - "created": 1701809344869, - "modified": 1701809344869 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24617,10 +24617,10 @@ "value": { "content": "23797927500010103493380261019562276900633330" }, - "revision": "67989ea267704d3cba6c3bf1", + "revision": "e54ff9a5ccba4071abe0624d", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24632,10 +24632,10 @@ "label": "Taxa de R$ 3,49", "amount": 3.49 }, - "revision": "cde67ead2a144b78bc31a244", + "revision": "2a0b3bbb92584b73bccf379d", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24653,10 +24653,10 @@ "installment_amount": 0, "financial_institution": "bradesco" }, - "revision": "fdb09ee13b2a41a9b3dfe2c0", + "revision": "7720fedef2a44a388d640067", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24664,10 +24664,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1311811220/ticket?caller_id=1310149122&payment_method_id=bolbradesco&payment_id=1311811220&payment_method_reference_id=10195622769&hash=8d50adc1-12db-410d-a168-79594db6001b", - "revision": "61c2fe91837248af9ab741cb", + "revision": "0d3a1538450d482aa7e4f543", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24675,10 +24675,10 @@ "content": { "type": 2, "value": {}, - "revision": "53ee223d19424ff1ab62ccdc", + "revision": "5b386ad7c0c94fe6a66dc08d", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24711,10 +24711,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "bef18da331fd4e92bbb57a82", + "revision": "e2142e903937480fa761fb76", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24722,10 +24722,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.100,00 para a carteira iVip 0219.7710.1011.6756-04", - "revision": "bf9687c3b1a04530bff5ed5b", + "revision": "627bcd03103a48cc97657ef9", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24745,10 +24745,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ddef9c406c6c4ab6a1afe2a8", + "revision": "adeb51437f2649738c92a765", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24783,10 +24783,10 @@ "currency_id": "BRL", "history_id": 1684348383580 }, - "revision": "5f3f82c4317d418cb03fdf5c", + "revision": "8df07c83bd654138887242a2", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24794,10 +24794,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "b37dd748039c47d58281b591", + "revision": "82a37c3d77c345d0ab3f8131", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24817,10 +24817,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "c42686e05cb1405b9faf3e02", + "revision": "cd14f8083a6a40b9b468289e", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24856,10 +24856,10 @@ "history_id": 1684624810300, "description": "Compra de 1.587.858,00 IVIP por 326,00 BRL" }, - "revision": "644489ef64c74dcb8b620d77", + "revision": "f358d85b74f641d3a101eb93", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24879,10 +24879,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "8d8a4cf94d394b61973ccaf7", + "revision": "e6c38969c6aa41878f37fb08", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24916,10 +24916,10 @@ "currency_id": "IVIP", "history_id": 1685668591211 }, - "revision": "6aa9e406b4f54f48b7409b81", + "revision": "31acb5d6c39f4693977ce40d", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24927,10 +24927,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "8d1c684076424d6594184d6c", + "revision": "4f087f7ba6df485a8808a2c0", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -24940,10 +24940,10 @@ "value": { "costs": {} }, - "revision": "f2fae1ac2e444488a0836266", + "revision": "abf02120c3774fcb87c33330", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -24975,10 +24975,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "fce9f6b10df741bf984f8f99", + "revision": "34506afc484f4d0e8559ed1e", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -24986,10 +24986,10 @@ "content": { "type": 5, "value": "Saque de 72.120.104,00 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", - "revision": "572916bf437a4d27acf55354", + "revision": "75245ee526a74b539075305b", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036341, + "modified": 1702563036341 } }, { @@ -25001,10 +25001,10 @@ "label": "Taxa de 3,00%", "amount": 2098695.0264 }, - "revision": "285935a1c6a949609b92eaf1", + "revision": "010b07bcf9384e1ba2356461", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25021,10 +25021,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "9240cd9dbae2439f9924390d", + "revision": "9384609658304e55b04252e8", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25032,10 +25032,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/021977101011675604/history/1690914468659", - "revision": "320986cb70014995bbf829f3", + "revision": "eb877040998d4ccc906ebe11", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25043,10 +25043,10 @@ "content": { "type": 2, "value": {}, - "revision": "af1cc11e9ede41cf825deaa0", + "revision": "d3ebb6bbf37c415a81d546fc", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25090,10 +25090,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "a3b2170cc2fe4f5e96ce02a7", + "revision": "7d32662d738641828a32968c", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25101,10 +25101,10 @@ "content": { "type": 5, "value": "Saque de 69.956.500,88 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", - "revision": "713947031ab345d98abfbb62", + "revision": "71114b4ac3594502918faef0", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25116,10 +25116,10 @@ "label": "Taxa de 3,00%", "amount": 1026103.0443000001 }, - "revision": "8c378834f29c41e795f0e09e", + "revision": "dfe2158fea624fe596a0d386", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25136,10 +25136,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "d6487f4d031147f58d88417f", + "revision": "5727528401784c688fb94f31", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25147,10 +25147,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/021977101011675604/history/1690914748870", - "revision": "77ef4af5211040f7a2321c76", + "revision": "8fa265d11ad0431cb8bf764d", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25158,10 +25158,10 @@ "content": { "type": 2, "value": {}, - "revision": "a269c6bcba8e4df285a11632", + "revision": "65eaa3f258434d09981b16a0", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25201,10 +25201,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "762a710666604306a1e62f4b", + "revision": "2ade1b8d87934fdf8945603b", "revision_nr": 1, - "created": 1701809344871, - "modified": 1701809344871 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25212,10 +25212,10 @@ "content": { "type": 5, "value": "Saque de 34.203.434,81 IVIP para a carteira 0xb6484e70a1B0cF914cE3694ACF7A856B5b731d80", - "revision": "9e6e8dd9b47e4d15a884a178", + "revision": "7f472d9c1595449b94466915", "revision_nr": 1, - "created": 1701809344870, - "modified": 1701809344870 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25223,10 +25223,10 @@ "content": { "type": 1, "value": {}, - "revision": "59bf2bda1f1c4546a4bebb9d", + "revision": "eb95b2914c6241489bc46e0e", "revision_nr": 1, - "created": 1701809344871, - "modified": 1701809344871 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25234,10 +25234,10 @@ "content": { "type": 1, "value": {}, - "revision": "21fefcb62658441abc5af4a2", + "revision": "91b314cbaf4a4a0f90921197", "revision_nr": 1, - "created": 1701809344871, - "modified": 1701809344871 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25248,10 +25248,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "772d6a9e5a2c48068fe86ac1", + "revision": "c149783e181a48c8abcf5d96", "revision_nr": 1, - "created": 1701809344871, - "modified": 1701809344871 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25265,10 +25265,10 @@ "currencyType": "USD", "balancesModificacao": 1691419368675 }, - "revision": "87a87cf08f9e45b99747f4a3", + "revision": "f108f90372164b41af750b43", "revision_nr": 1, - "created": 1701809344871, - "modified": 1701809344871 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25280,10 +25280,10 @@ "symbol": "IVIP", "value": 6.93 }, - "revision": "d388fb97cc974de8a9d5fe04", + "revision": "f396b57d06a84da39def22d4", "revision_nr": 1, - "created": 1701809344871, - "modified": 1701809344871 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25291,10 +25291,10 @@ "content": { "type": 1, "value": {}, - "revision": "01dd062dd1fb497f8e48960e", + "revision": "96ea0e2808ae4c339ad59a28", "revision_nr": 1, - "created": 1701809344871, - "modified": 1701809344871 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25304,10 +25304,10 @@ "value": { "costs": {} }, - "revision": "bd0623e5d27f4280964a151a", + "revision": "a6b35306dac7464b85454198", "revision_nr": 1, - "created": 1701809344871, - "modified": 1701809344871 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25349,10 +25349,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "573c26200d7642bc96fd66a8", + "revision": "f200dbcb6d00473c81978512", "revision_nr": 1, - "created": 1701809344871, - "modified": 1701809344871 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25360,10 +25360,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", - "revision": "ed34a88c03274066a1d74602", + "revision": "ab3c07bbd0284e998248e2c7", "revision_nr": 1, - "created": 1701809344871, - "modified": 1701809344871 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25373,10 +25373,10 @@ "value": { "costs": {} }, - "revision": "22f4e4af79cc4f0b97e0547b", + "revision": "b3975f6b961f4bf887b60297", "revision_nr": 1, - "created": 1701809344871, - "modified": 1701809344871 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25408,10 +25408,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "ef4374343b214752a5a950b8", + "revision": "2dcba186d03848f28331439e", "revision_nr": 1, - "created": 1701809344871, - "modified": 1701809344871 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25419,10 +25419,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", - "revision": "cbe2e71b4ec941b489d2bc96", + "revision": "1cdbbe585c224e9aa6d3684e", "revision_nr": 1, - "created": 1701809344871, - "modified": 1701809344871 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25432,10 +25432,10 @@ "value": { "costs": {} }, - "revision": "bdc54cbaef034a7eb1bcf157", + "revision": "d9a3d18bff69414389c60feb", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25467,10 +25467,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "2e32d2e663bb4c948fbf5683", + "revision": "b7932c77b8d34871bfc29a52", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25478,10 +25478,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0231.2978.1601.1577-50", - "revision": "d9305350fd594ddb9fd58b4d", + "revision": "c1ce369fbdbc4ec1b44b5bb0", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25501,10 +25501,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "41267f69a4864c9283d295a7", + "revision": "8d320826abe04d87814a624c", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25540,10 +25540,10 @@ "history_id": 1689357674118, "description": "Compra de 62.553,00 IVIP por 100,00 BRL" }, - "revision": "1c00046b13af4caca0a0e212", + "revision": "b6d6761fa5cf4429a4180003", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25561,10 +25561,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "113eb874be134231a8ec15e3", + "revision": "0715f835b2d04ac08d98e972", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25572,10 +25572,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/023129781601157750/history/1690557889809", - "revision": "a23bfae2d1c04293839ef27a", + "revision": "c77ba18cfc7d4a238e717afe", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25609,10 +25609,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "c80dcf6615654d5d8c1fcbcf", + "revision": "63db14bd4e4d46f39095971d", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25620,10 +25620,10 @@ "content": { "type": 5, "value": "Saque de 62.553,00 IVIP para a carteira 0x0f58150836c0785C212ea8Eb4eC1Cce6E595CE4a", - "revision": "faf2e627dbe74bed92e76046", + "revision": "c837a52fd9744664834a48cd", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25631,10 +25631,10 @@ "content": { "type": 1, "value": {}, - "revision": "6ddefb39d3054f31a5ca9ddd", + "revision": "8ad143c681b0463ab8a047e1", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25642,10 +25642,10 @@ "content": { "type": 1, "value": {}, - "revision": "5ee1379054ec4b05bde247ee", + "revision": "78d77c6de4f240e99b37bbf8", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25656,10 +25656,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "a9c1089b8ae145a6a042ba9e", + "revision": "3a099133729149089334929c", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25676,10 +25676,10 @@ "value": 1697079600000 } }, - "revision": "54bd518eefc6454090ebef14", + "revision": "0781e8522c6746438348574c", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25689,10 +25689,10 @@ "value": { "costs": {} }, - "revision": "a2d757c0a4754f67be1bc888", + "revision": "713f1c91a5044e6996d812c8", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25734,10 +25734,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f792a2bb5df54720b46cde5d", + "revision": "d20426a0f22c4fbab26945cc", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25745,10 +25745,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 62.000,00 para a carteira iVip 0255.1405.5020.5792-40", - "revision": "14d24bbc580045f886048a01", + "revision": "427f5b7f27504baf95745cbe", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25768,10 +25768,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ffcdaa94d1b042a2a084d5e1", + "revision": "331dcec63e5b4f8585ffebc4", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25807,10 +25807,10 @@ "history_id": 1688839141121, "description": "Compra de 100.000.000,00 IVIP por 62.000,00 BRL" }, - "revision": "f926774dfc4b49afa81dcee6", + "revision": "b11887140b304539bdeb0be4", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25820,10 +25820,10 @@ "value": { "costs": {} }, - "revision": "ee393deef82143ed9b6e42ae", + "revision": "410aa77c9aee46d5909c253e", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036344, + "modified": 1702563036344 } }, { @@ -25865,10 +25865,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a7bad492ebf343a0827944a5", + "revision": "086432c2241540cba060b01e", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036344, + "modified": 1702563036344 } }, { @@ -25876,10 +25876,10 @@ "content": { "type": 5, "value": "Deposito de um valor 50.000.000,00 IVIP para a carteira iVip 0255.1405.5020.5792-40", - "revision": "272931cbdf304385a57f91bc", + "revision": "9343835839a94990ac857bac", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036342, + "modified": 1702563036342 } }, { @@ -25899,10 +25899,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "fe3c98999b004052b69b970e", + "revision": "681ee8db0397432580d88397", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -25936,10 +25936,10 @@ "currency_id": "IVIP", "history_id": 1689278842357 }, - "revision": "c33be9e5def043b99e07e452", + "revision": "c129b374ebff415aadd0adf2", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -25947,10 +25947,10 @@ "content": { "type": 5, "value": "Investimento de 149.517.672,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 1/13/2024", - "revision": "6329654f0267480f80f76965", + "revision": "d44fca13e91a4e429810759e", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036344, + "modified": 1702563036344 } }, { @@ -25970,10 +25970,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "d56531f5801449cba3229641", + "revision": "a54c5816c98a42308304e06b", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26007,10 +26007,10 @@ "currency_id": "IVIP", "history_id": 1689295244660 }, - "revision": "e5fd24d5165f498188d3c00a", + "revision": "212bd6ee96144d018c6cd26c", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26018,10 +26018,10 @@ "content": { "type": 5, "value": "Investimento de 450.820,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/13/2025", - "revision": "8bde113ab13a4b7da529ef3d", + "revision": "c8c5872a4f6c4bc18dfe4ec2", "revision_nr": 1, - "created": 1701809344872, - "modified": 1701809344872 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26031,10 +26031,10 @@ "value": { "costs": {} }, - "revision": "1df0abb7022b4995bfd1eba0", + "revision": "c9671237f45d4679ae360ebc", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26066,10 +26066,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "672e17ba199b4eb79ce9f5e0", + "revision": "200572562dd84dd08ffb27b1", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26077,10 +26077,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 9.396,00 para a carteira iVip 0255.1405.5020.5792-40", - "revision": "bfe6847f67d447378df9bd1e", + "revision": "f03247fda7c94a659d748f87", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26090,10 +26090,10 @@ "value": { "costs": {} }, - "revision": "17e053b583ff43009f986cc7", + "revision": "112cb0d67b19464c87002516", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26125,10 +26125,10 @@ "status_detail": "accredited", "currency_id": "IVIP" }, - "revision": "2bc65ed2ff6b4f7587df96b3", + "revision": "4b64ae44e7994c35aae7b2d2", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26136,10 +26136,10 @@ "content": { "type": 5, "value": "Deposito de um valor 30.010.000,00 IVIP para a carteira iVip 0255.1405.5020.5792-40", - "revision": "3a089c2e57e6478193bc768b", + "revision": "106feb4f728f4988b67ff116", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26157,10 +26157,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c683307fc17e462c80abe2a5", + "revision": "daaa1385145e448085262af5", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26168,10 +26168,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1691081114647", - "revision": "dc46cabd650b4df9816f75c0", + "revision": "3463d455a60a4b9ea1e6e4cc", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26205,10 +26205,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ba8ff96283da45feb0c387bd", + "revision": "cca5c940c99b487e97b631b7", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26216,10 +26216,10 @@ "content": { "type": 5, "value": "Investimento de 6.001.475,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "0f63acf7cb8447abb8b20962", + "revision": "7766128b01664843aebb8893", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26231,10 +26231,10 @@ "label": "Taxa de 3,00%", "amount": 721200.99 }, - "revision": "6fed540f933c434b8bfda4e5", + "revision": "0b5d7cc4b93344599033d484", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26251,10 +26251,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "34f409d4c4aa4c3699caeaf2", + "revision": "cfa5aacd0d7147eab284a016", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26262,10 +26262,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1692462419697", - "revision": "9c694b7569f94de1ac78e670", + "revision": "5e5528c6621b431284961815", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26273,10 +26273,10 @@ "content": { "type": 2, "value": {}, - "revision": "3e4ad48db6b64fa59b0bc006", + "revision": "834eae829bd24a3a86ccf07d", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26316,10 +26316,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "b863008538b54502acd67c57", + "revision": "22419619834440c1a028fd35", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26327,10 +26327,10 @@ "content": { "type": 5, "value": "Saque de 23.318.832,01 IVIP para a carteira 0x4BA972D54bb60Db93749D2cf5c4e160a3dd735c8", - "revision": "e0bb1ba9af6c490aab1e4ed5", + "revision": "25afc85d7e6243e5887743fb", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26348,10 +26348,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "5363c0a1d3cf4d0d92200d5a", + "revision": "4b041a8a77f943eba5119402", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26359,10 +26359,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1693759701053", - "revision": "8a1eb36a2fe0474da4e6920b", + "revision": "0934a3bbb1304252b909aafe", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26396,10 +26396,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "911cf4e160574926a635356e", + "revision": "6e258181041a47509a39ba0e", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26407,10 +26407,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 6.001.475,00 IVIP com um rendimento de +120.029,5 IVIP (2,00%) - Y12XDT27", - "revision": "663279dfb1df47ba843524d3", + "revision": "c0e3daef376144e3bc62f0b4", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26428,10 +26428,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c4c3067e26f74c9b94259873", + "revision": "7337129c6f4e4820b06a46e9", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26439,10 +26439,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1693861899974", - "revision": "cda3e5b3aeed4069b218450e", + "revision": "4be4cbd9a6c145099dea467e", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26482,10 +26482,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "5b84e6ad1d9247a7a53acc2c", + "revision": "b217cd4601c64c13a2abf900", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26493,10 +26493,10 @@ "content": { "type": 5, "value": "Investimento de 7.836.614,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/10/2023 - Y12XDT27", - "revision": "0582be6447f54cd38a44a7d2", + "revision": "1cd56f07fb554527abbc9e58", "revision_nr": 1, - "created": 1701809344873, - "modified": 1701809344873 + "created": 1702563036345, + "modified": 1702563036345 } }, { @@ -26510,10 +26510,10 @@ "value": 1697203059628 } }, - "revision": "28cb116c1083490681a85deb", + "revision": "a1d17fefdfdc49039c868078", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26531,10 +26531,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8653d13ebf3943958cf474a5", + "revision": "2f58b2b29a59403f97a5fe0d", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26542,10 +26542,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694611059637", - "revision": "61ed3a35858a42809d8e6c74", + "revision": "8f10b0203c004c2a8c7116ff", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26585,10 +26585,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f6f1886f880d43959c403dcd", + "revision": "98dd1d00550d4eba97b9e615", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26596,10 +26596,10 @@ "content": { "type": 5, "value": "Deposito de um valor 24.582,00 BRL para a carteira iVip 0255.1405.5020.5792-40", - "revision": "a35ccd9217574390b023e94b", + "revision": "7efa6c080d7a45d9a323fe41", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26617,10 +26617,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "3a1795b55bf44657852374a9", + "revision": "41a6584556e7444689f42cf6", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26628,10 +26628,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694612208335", - "revision": "eb1e46bc1ff04c23bfe4aca6", + "revision": "90d47f6602744346a8c69bb2", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26666,10 +26666,10 @@ "description": "Compra de 39.021.269,00 IVIP por 24.582,00 BRL", "status_detail": "accredited" }, - "revision": "8bf7ce9e454e4aa9a0857abb", + "revision": "61a1632f5c014962af8f7b6e", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26683,10 +26683,10 @@ "value": 1697212107989 } }, - "revision": "72d4ed8203734cdfbcd968a2", + "revision": "631b78f2f62045f98e479c57", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26704,10 +26704,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b201bfadde5f4e009eb30316", + "revision": "815eb5e76c37401497a84d9e", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26715,10 +26715,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694620107990", - "revision": "27f1517a8879402ebc613eeb", + "revision": "4226cb8a76cf4d7596626acf", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26758,10 +26758,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3273bc476b8d4791bb60bc96", + "revision": "75c3e53870964451a8f95752", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26769,10 +26769,10 @@ "content": { "type": 5, "value": "Deposito de um valor 168,00 BRL para a carteira iVip 0255.1405.5020.5792-40", - "revision": "be13cfb28ff540a29cc7d547", + "revision": "070fdf30f20346e3972b2884", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26790,10 +26790,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d87ddea7063c447caf9150aa", + "revision": "982b9b64412d47298a8b51b8", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26801,10 +26801,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694641684988", - "revision": "1563e51e3793403ebbebf949", + "revision": "df95b38a7aff424bac8f271e", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26839,10 +26839,10 @@ "description": "Compra de 258.446,00 IVIP por 168,00 BRL", "status_detail": "accredited" }, - "revision": "5576974d418541fa96453a03", + "revision": "dddf291fce3d4468b573fd0b", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26854,10 +26854,10 @@ "label": "Taxa de 3,00%", "amount": 750000 }, - "revision": "98b3d65adb0742eb8d84101a", + "revision": "0980db12215446afb29c70fb", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26874,10 +26874,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "d5aba13b870e4521a16efc83", + "revision": "1c51cc0e1dbc44c080757ab8", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26885,10 +26885,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1694692198880", - "revision": "b5d1b565428b4ed2bc6a05f5", + "revision": "a72316f25c034361a6826737", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26896,10 +26896,10 @@ "content": { "type": 2, "value": {}, - "revision": "2b9356d5e067471c852cf18e", + "revision": "01878bf89a7f4ec78367a2b7", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26943,10 +26943,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "7575859a7b6b4a3480132eba", + "revision": "28e53fe18670448895b97a69", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26954,10 +26954,10 @@ "content": { "type": 5, "value": "Saque de 24.250.000,00 IVIP para a carteira 0xd3CF5Ea2Dcfb3c96d31AE10BA19cc4c7218b45b1", - "revision": "1b5d4a17cf92412fbbb172c6", + "revision": "6de27ded8b40478fb1ceceaf", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036346, + "modified": 1702563036346 } }, { @@ -26975,10 +26975,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a8770e3e91b241549186d472", + "revision": "564c8f0e3a2a4385805a0d22", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -26986,10 +26986,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/025514055020579240/history/1696451540047", - "revision": "f2afa24b23f64f83bd39cc31", + "revision": "490109413d5e49deb72876be", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27024,10 +27024,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "35fbd0c98b4d4be296d59db8", + "revision": "12f29040ef0749a2b4532b4e", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27035,10 +27035,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "9c09e2f10c48434393a5226d", + "revision": "ec8d8b034f14419496a1b6f2", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27046,10 +27046,10 @@ "content": { "type": 1, "value": {}, - "revision": "0047cc26788146ed9cecb839", + "revision": "c3cab0cc555145d5bd9650d1", "revision_nr": 1, - "created": 1701809344874, - "modified": 1701809344874 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27057,10 +27057,10 @@ "content": { "type": 1, "value": {}, - "revision": "12275a3168c64543978fa34c", + "revision": "c8141b775ef14a4680098579", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27075,10 +27075,10 @@ "value": 1695054577899 } }, - "revision": "654dc902b7bf48088f3503c6", + "revision": "57f146b0022444c38126c2e2", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27090,10 +27090,10 @@ "symbol": "IVIP", "value": 4538.39 }, - "revision": "0606965c5f764bdebab21d4d", + "revision": "145a6fa61ed04eeb91b52fca", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27101,10 +27101,10 @@ "content": { "type": 1, "value": {}, - "revision": "6979cbdab08941acb711f7cc", + "revision": "c31eab6e60e749528d95f90f", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27121,10 +27121,10 @@ "value": 1696993200000 } }, - "revision": "2c9687a5e0354ab8aed972d2", + "revision": "2c79905906ea4c388809b96d", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27136,10 +27136,10 @@ "symbol": "IVIP", "value": 9273.73 }, - "revision": "22c4bcc4076745f9a0c2bbed", + "revision": "3e3c15aa03d047e2acd75263", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27147,10 +27147,10 @@ "content": { "type": 1, "value": {}, - "revision": "3eedbce6a2784f05aee21466", + "revision": "89a38644dac54421bc0e02fa", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27160,10 +27160,10 @@ "value": { "costs": {} }, - "revision": "84e75ae360fd492da4dab7dc", + "revision": "2cf5e364084b4e488fc1d216", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27205,10 +27205,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "52e6bc4dabe74409876872b7", + "revision": "587e93078547472b9a168ebc", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27216,10 +27216,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "817d3c870d8a48eb9d4a3b55", + "revision": "3e2ae9471636422988a70f45", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27229,10 +27229,10 @@ "value": { "costs": {} }, - "revision": "6cceab089f2e4669a32ac2a4", + "revision": "a054dbabf5584c008db97147", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27274,10 +27274,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ef3583d031b64ce58a7cf5f8", + "revision": "7b31d85e13104d5499635d99", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27285,10 +27285,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 350,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "6716b3be2c9142278a259458", + "revision": "dc50c29df99d47f3b65dace7", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27298,10 +27298,10 @@ "value": { "costs": {} }, - "revision": "6dd4f7d6dba1487c80b97cb1", + "revision": "27ca7d55566542a3b8bb526c", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27343,10 +27343,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "48f8e82ea62f44a68a0ff977", + "revision": "77102c3c385f43ed9cdca7a9", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27354,10 +27354,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "ab2096e742c54889b74eb2fd", + "revision": "cfc91b3d2a3d4d6eab1ead5e", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27367,10 +27367,10 @@ "value": { "costs": {} }, - "revision": "4504c1728e084d21b4a03b2d", + "revision": "9c736bc1afb049cf8649f4a9", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27402,10 +27402,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "6aa601105a2444beb3d6a225", + "revision": "a641b92cee674752b617ca51", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27413,10 +27413,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "cba145272485462d9fdf38f0", + "revision": "82d3f954c352413180b4581b", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27428,10 +27428,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 20 }, - "revision": "a448dc716b6447aca54bf80e", + "revision": "fe1abef924b54a2aafb651c2", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27439,10 +27439,10 @@ "content": { "type": 1, "value": {}, - "revision": "5304c96f3b254b858074d23c", + "revision": "0a7076b36ab24846b9036f8a", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27450,10 +27450,10 @@ "content": { "type": 2, "value": {}, - "revision": "e191beff86814b22829b7fa4", + "revision": "fd2bf555c67248c4848141be", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27486,10 +27486,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "5eea1e4c683c469d97c2c86c", + "revision": "1ab0038161dd4e1aae157cc2", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27497,10 +27497,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0266.8515.5320.8373-72 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.020,00", - "revision": "2792aa9316f8488cab27a2a0", + "revision": "fc327e58c08a4ab795ee5118", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27520,10 +27520,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "293663f51b7144b081e8e249", + "revision": "f1eadf3d506e4c57a8ab8e63", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27559,10 +27559,10 @@ "history_id": 1684018921033, "description": "Compra de 8.647.027,00 IVIP por 1.600,00 BRL" }, - "revision": "01d8f70c3fc24b1a85a44dfa", + "revision": "01454d349d294ffba01eca4b", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27572,10 +27572,10 @@ "value": { "costs": {} }, - "revision": "af4b8599b9204994ad4ca858", + "revision": "616930762e5b4957a581bb8e", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27617,10 +27617,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "cb412fdf1bf04d7ca715a9ec", + "revision": "02646205d9d34609a549e115", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27628,10 +27628,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 400,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "a63a411501644195b29dec39", + "revision": "9d5de7d582fe4f91bdbb0c80", "revision_nr": 1, - "created": 1701809344875, - "modified": 1701809344875 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27641,10 +27641,10 @@ "value": { "costs": {} }, - "revision": "a363cf8bbc4b4c0e975e020a", + "revision": "715e137a4d534eeba11f8c18", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27676,10 +27676,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "cd3a398293f4405bbe890c49", + "revision": "cf551132123745f3981f2d15", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27687,10 +27687,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 401,02 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "2ed2963dd59f49fe989f13df", + "revision": "9b5d4317104a45a89848b6c6", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27710,10 +27710,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "8149d4bc88f440c9a9e575ef", + "revision": "56000f76f987413b9e1701be", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27749,10 +27749,10 @@ "history_id": 1689275206669, "description": "Compra de 168.630,00 IVIP por 400,00 BRL" }, - "revision": "85f82f7dce3742e5a5409d5f", + "revision": "1f2cc557a52c479188567570", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036347, + "modified": 1702563036347 } }, { @@ -27766,10 +27766,10 @@ "value": 1693192070124 } }, - "revision": "e978c27e3a8845089118ef27", + "revision": "f23b0130655c4c178a3a5bdb", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -27787,10 +27787,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "5834c9182b72450e97591697", + "revision": "4eaddb5ecf7446d4a52c7e8d", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -27798,10 +27798,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690600070124", - "revision": "12cfcf4775334bb6b65819db", + "revision": "4a60a22fb6084e5b8f0564d6", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -27841,10 +27841,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9a5766b05c934f5c8284477a", + "revision": "8af10a6ee8cf45e0b892ad2d", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -27852,10 +27852,10 @@ "content": { "type": 5, "value": "Deposito de um valor 30,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "b382eb3752f74b68bccc389b", + "revision": "526d83bebac244638e6311db", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -27873,10 +27873,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d47e9935f8464102a43f4b20", + "revision": "8c500c2e3ece4d3b92468921", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -27884,10 +27884,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690822928470", - "revision": "913611a72b2c4e9cb0c223cd", + "revision": "beb2dcdc4e16403e86bc67fc", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -27922,10 +27922,10 @@ "description": "Compra de 26.363,00 IVIP por 30,00 BRL", "status_detail": "accredited" }, - "revision": "677f7d194dc045809ae028cb", + "revision": "95bb6f301a8c4ef9bf90558a", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -27939,10 +27939,10 @@ "value": 1693501456427 } }, - "revision": "f2703a5fd83742249e1b5b8f", + "revision": "52a1ccd8d69b4019b443e4f9", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -27960,10 +27960,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4bc8ef1e87284048af1a7294", + "revision": "bd5b54a5c6d64c1aa187b31f", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -27971,10 +27971,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690909456427", - "revision": "738fcac756094c4ab1ce4a7e", + "revision": "e3aa73b9d3dc4b6e8902520b", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -28014,10 +28014,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "062b68e6fe444697a5b7dfda", + "revision": "8441d0c835764cac993fe417", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -28025,10 +28025,10 @@ "content": { "type": 5, "value": "Deposito de um valor 100,00 para a carteira iVip 0266.8515.5320.8373-72", - "revision": "65a426b86e76484ea7b0e4d6", + "revision": "cbcd20f27ebe48529d6426f2", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -28046,10 +28046,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f99d655c6b514b30aaffaa61", + "revision": "0411367544984f789133b02f", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -28057,10 +28057,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/026685155320837372/history/1690977815869", - "revision": "9bdfd9cf51e944179dc2d400", + "revision": "4b984c24bd4b4ae4b23863e9", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -28095,10 +28095,10 @@ "description": "Compra de 116.013,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "463facb1279e42f4a1f31225", + "revision": "285c7b8f216f4503826a7225", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -28106,10 +28106,10 @@ "content": { "type": 1, "value": {}, - "revision": "2047bbce9d00491cb500b887", + "revision": "dbacdc88f0dc4be8af3d37dd", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -28121,10 +28121,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 20 }, - "revision": "f141b33a1aa24db89b037e79", + "revision": "d685e9517ff640a6887cb9f4", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -28145,10 +28145,10 @@ "history_id": 1682354342344, "currency_id": "BRL" }, - "revision": "86b9102eefc44b139742bcf1", + "revision": "4a4c6c7c80ef4043ba843818", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -28156,10 +28156,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0266.8515.5320.8373-72 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.020,00", - "revision": "3c843ca0a56e42c188d5e715", + "revision": "e315d057ea11472eb4f60a25", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -28167,10 +28167,10 @@ "content": { "type": 2, "value": {}, - "revision": "70f8ebd7e39546ce8c86305b", + "revision": "a5a1dfc9e6f7434897d34f15", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -28178,10 +28178,10 @@ "content": { "type": 1, "value": {}, - "revision": "440596dba5004a24820c6cd5", + "revision": "d454cb398ca64a028531a02c", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -28189,10 +28189,10 @@ "content": { "type": 1, "value": {}, - "revision": "46abcd41af004b39b14c0654", + "revision": "5c6f686ae7f448df92dc86c4", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -28211,10 +28211,10 @@ "value": 1682092464302 } }, - "revision": "4085f6d592094741bcd5e86b", + "revision": "394617dca2a442508890def1", "revision_nr": 1, - "created": 1701809344876, - "modified": 1701809344876 + "created": 1702563036348, + "modified": 1702563036348 } }, { @@ -28231,10 +28231,10 @@ "value": 1696215600000 } }, - "revision": "bc2647aca6e4410c9501df6f", + "revision": "5d6a1e0dc7154e0eac393070", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28242,10 +28242,10 @@ "content": { "type": 1, "value": {}, - "revision": "f1bd5a3818ce4643ae2cd9c8", + "revision": "e53b934c5c0e422f8955034c", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28253,10 +28253,10 @@ "content": { "type": 1, "value": {}, - "revision": "86be9bf333334f9eb0a7ad94", + "revision": "34bba3fa36c14d218562bb31", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28269,10 +28269,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "194e1d75b4964020bd6ba07d", + "revision": "50e9cc8d79cf4c219999f3e1", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28284,10 +28284,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "3755f70b25474edfa0c4398a", + "revision": "2d46ca7db91a4749b39dc66e", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28299,10 +28299,10 @@ "symbol": "IVIP", "value": 2344.22 }, - "revision": "0bd94b79d2dc435fb0b103a9", + "revision": "c08b5ea62afc498b9a9d2c6d", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28310,10 +28310,10 @@ "content": { "type": 1, "value": {}, - "revision": "135826ab7c21491cabd021bd", + "revision": "8e7f429207394d588c1aadf9", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28323,10 +28323,10 @@ "value": { "costs": {} }, - "revision": "6b3ce8cc506245a0a78a683e", + "revision": "17fc8959704847edaba2704b", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28368,10 +28368,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "960be1413e5c466dbb8e5058", + "revision": "f0e6046d0057457c88ab17a4", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28379,10 +28379,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0275.3660.7098.8736-24", - "revision": "0dea4ffea08a48a7a3b7d9c2", + "revision": "ba540f5ac1424934bcba58cd", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28392,10 +28392,10 @@ "value": { "costs": {} }, - "revision": "b0701c91cec04b56a7a451ff", + "revision": "994109180da1429ea631c105", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28437,10 +28437,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "7b2f19dec4794411b4ab45b7", + "revision": "beedb71209e041498d32d0f2", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28448,10 +28448,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0275.3660.7098.8736-24", - "revision": "c45102c4c71d4499a3014be7", + "revision": "84e884f288fb4c01a85f9520", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28471,10 +28471,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "75d2d4eacbff480f84ee7d27", + "revision": "280d8496e8504aa78f24b5e5", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28510,10 +28510,10 @@ "history_id": 1684625508072, "description": "Compra de 7.306.097,00 IVIP por 1.500,00 BRL" }, - "revision": "ce5bf36b76e0475dae11e919", + "revision": "ed61ed888ab84bceb80ae063", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28523,10 +28523,10 @@ "value": { "costs": {} }, - "revision": "6bd2f9f8b0b847678315a2a1", + "revision": "ec9ad04f0afe4e059175c990", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28558,10 +28558,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "2528a0fa697c4b8eb0e6e5e9", + "revision": "aa41a48ecef249dfbd5fd1fb", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28569,10 +28569,10 @@ "content": { "type": 5, "value": "Saque de 7.306.097,00 IVIP para a carteira 0x5127C3d0B17433E2f03F2bdC96157ca9B00eeD8e", - "revision": "b7f6a3cbdb3a4269b7df69ed", + "revision": "0b097113b9fe4d21ad869a1d", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28582,10 +28582,10 @@ "value": { "costs": {} }, - "revision": "00a2056d13b648c0b9e64335", + "revision": "19abec9627194774a8321417", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28617,10 +28617,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "351c266217dc48449ee04ab5", + "revision": "20bc7642442b414aa7487824", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28628,10 +28628,10 @@ "content": { "type": 5, "value": "Saque de 7.306.097,00 IVIP para a carteira 0x5127C3d0B17433E2f03F2bdC96157ca9B00eeD8e", - "revision": "c1517fc9b5ab4e46a4ee70b1", + "revision": "0573a349d3114f7596092d94", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28639,10 +28639,10 @@ "content": { "type": 1, "value": {}, - "revision": "78bc7c3484eb4007bfe7fcf8", + "revision": "93f52a9195944bac8e92f12c", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28650,10 +28650,10 @@ "content": { "type": 1, "value": {}, - "revision": "5cea17f719434c2eba9b88eb", + "revision": "cee789b28cf542559bd0fda4", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28664,10 +28664,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "d4845940121a4801893c9872", + "revision": "5732cdf2b6d942fa945fd31d", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28681,10 +28681,10 @@ "currencyType": "USD", "balancesModificacao": 1689822000000 }, - "revision": "a16d1f86fb3445719feef217", + "revision": "620b9ed96abe4231b1ddeeff", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28692,10 +28692,10 @@ "content": { "type": 1, "value": {}, - "revision": "0d4898696cab40c683a5de20", + "revision": "5160b994536f467e87fa9869", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28703,10 +28703,10 @@ "content": { "type": 1, "value": {}, - "revision": "335bd83cf1ee4676b31c5195", + "revision": "0ff67516545b4d7c82dc6ebf", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28719,10 +28719,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "2a1db5b9521c49ff95bcc023", + "revision": "a887eafef1154dda9a51b56e", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28730,10 +28730,10 @@ "content": { "type": 1, "value": {}, - "revision": "be6f19a08a634ecebfcbc3c3", + "revision": "1fb74c53c05f40aaa417b037", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28741,10 +28741,10 @@ "content": { "type": 1, "value": {}, - "revision": "c5035d9ea3ee476b969c237a", + "revision": "1fd04f508b234e84b61df0d3", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28757,10 +28757,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "bd44ec2374bb413196cfa456", + "revision": "7252e645817348b0b0f8dc70", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28768,10 +28768,10 @@ "content": { "type": 1, "value": {}, - "revision": "6896d93966be4f0d94ea24c5", + "revision": "75a086bc764b4fb88c3579a5", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28779,10 +28779,10 @@ "content": { "type": 1, "value": {}, - "revision": "9363ea2ddd654fbe9cf91e84", + "revision": "049c29013a9e4737b58d0c97", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28793,10 +28793,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "f1f670f360ff40ff85ac3049", + "revision": "20b268cc46c04072ad2a4033", "revision_nr": 1, - "created": 1701809344877, - "modified": 1701809344877 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28810,10 +28810,10 @@ "value": 1693005005269 } }, - "revision": "1721a0d2ca004a1bbabe7379", + "revision": "be57a230bb91487f840b2d5f", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28831,10 +28831,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "e0cdcc9e3e95440c8908aa4f", + "revision": "b0d9e1efee374d75ba782558", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28842,10 +28842,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1690413005269", - "revision": "856e1f726f28478399c70395", + "revision": "08fbf90949314edbb1390552", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28875,10 +28875,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "896e08f6739445cfa2d369ca", + "revision": "8a575e728131421998d6c1fe", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28886,10 +28886,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0292.8722.8206.6813-90", - "revision": "b85a89064a0f46dc94ee077f", + "revision": "a7200154bfe649168abc179a", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28903,10 +28903,10 @@ "value": 1693613470147 } }, - "revision": "5408369543424518b9f3d12a", + "revision": "59910408b1d84aa6898ddb9f", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28924,10 +28924,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1aa4084eb9f24b7bb0b0b1f6", + "revision": "cbe8b3db2dfe4ec59a3086ac", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28935,10 +28935,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691021470147", - "revision": "84ed47be16e041f1876ce37b", + "revision": "8240e1af774649aaad2e94fb", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28968,10 +28968,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "02a3f3fff01b4aad91e32908", + "revision": "3a26ecfff8964008bdbe9aa8", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28979,10 +28979,10 @@ "content": { "type": 5, "value": "Deposito de um valor 20,00 para a carteira iVip 0292.8722.8206.6813-90", - "revision": "0796e7dfa1b74eceb16fa906", + "revision": "589b717ab0984ea8ad584766", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -28996,10 +28996,10 @@ "value": 1694007318336 } }, - "revision": "b28d624a18914e02ae3a91a1", + "revision": "2a0eda17c4e14dd7b323008d", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29017,10 +29017,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "78230806f28d40ccbc8e13e5", + "revision": "dd6dbd2b710a4ba08354301a", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29028,10 +29028,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691415318336", - "revision": "c52542e9caa145549e0b44da", + "revision": "52fdbfcbf39f470db2d961c7", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29071,10 +29071,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e22f7c883b44413e8ad56fa7", + "revision": "07e2278aa48743cfb2dc95b4", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29082,10 +29082,10 @@ "content": { "type": 5, "value": "Deposito de um valor 30,00 para a carteira iVip 0292.8722.8206.6813-90", - "revision": "69de33b82bf74e75a4c0f16f", + "revision": "7a5a28e4253440f091bc41a7", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29103,10 +29103,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "2203e766f106439fbc5d1fcf", + "revision": "f60c7c4558ee4934ad85ecf7", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29114,10 +29114,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1691415588273", - "revision": "f7e02f73f99048019b48d728", + "revision": "9b9036dbbe8c480fa6ffc1bd", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29152,10 +29152,10 @@ "description": "Compra de 41.845,00 IVIP por 30,00 BRL", "status_detail": "accredited" }, - "revision": "441076a73e494889bcb056b9", + "revision": "96d4120d8fdb413a9e1871aa", "revision_nr": 1, - "created": 1701809344878, - "modified": 1701809344878 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29167,10 +29167,10 @@ "label": "Taxa de 3,00%", "amount": 1255.35 }, - "revision": "63fc9dfb647a4066bf58e26d", + "revision": "a5ae1b2b1a834cce8066f154", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29187,10 +29187,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "f12635597f284b34a3b24dd2", + "revision": "ddef61ac8f1c4bf88bf9fed0", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29198,10 +29198,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1696141267349", - "revision": "4e78d679200f44a69a5dde48", + "revision": "ee471eae28c94a819d44f302", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29209,10 +29209,10 @@ "content": { "type": 2, "value": {}, - "revision": "8e01bcbd910d403aaeb74e74", + "revision": "f6302acf8f244fbea3f90003", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29257,10 +29257,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "709ead5958d341eeac76a7f7", + "revision": "b7e1577b676f452da3aaf81c", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29268,10 +29268,10 @@ "content": { "type": 5, "value": "Saque de 40.589,65 IVIP para a carteira 0x8A01aF53Ea3A83B5f89C029a625Bc2B840aa0B17", - "revision": "cd729b48d1a64f25b7ba36ec", + "revision": "fc36824d024c4cc6a9f5f329", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29283,10 +29283,10 @@ "label": "Taxa de 3,00%", "amount": 1255.35 }, - "revision": "663ac7ddae63438982265939", + "revision": "9129f2bec72d400a85bdbc89", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29303,10 +29303,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "bcfd2e7690a84aaa88fec590", + "revision": "e95fd7aecfbf4a93aece023b", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29314,10 +29314,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/029287228206681390/history/1696142296852", - "revision": "09040f801c574041a163acf1", + "revision": "2fdcced0e5534d48b99bf359", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29325,10 +29325,10 @@ "content": { "type": 2, "value": {}, - "revision": "86cdf7d0cb4a4bb5927927f6", + "revision": "277e835e3ce640e3a014a811", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29369,10 +29369,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "440138299879455d97d3f130", + "revision": "355b99da46304e089d4b4d77", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29380,10 +29380,10 @@ "content": { "type": 5, "value": "Saque de 40.589,65 IVIP para a carteira 0x8A01aF53Ea3A83B5f89C029a625Bc2B840aa0B17", - "revision": "4692a2e99188457aba8749b6", + "revision": "bf32a72521ec4a15aeaebc96", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29391,10 +29391,10 @@ "content": { "type": 1, "value": {}, - "revision": "38d57527c4ff429c9912f1ac", + "revision": "c9ffe0b44a98431cb7d83782", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29408,10 +29408,10 @@ "value": 1697252400000 } }, - "revision": "d63b17ae5092498eafd44208", + "revision": "005e43e256eb4da3a1a68ee5", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036349, + "modified": 1702563036349 } }, { @@ -29419,10 +29419,10 @@ "content": { "type": 1, "value": {}, - "revision": "81ca4daea6cf4250b6de7edd", + "revision": "c03f60f9832442faa670551f", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29430,10 +29430,10 @@ "content": { "type": 1, "value": {}, - "revision": "8e9ae76ce3614657b02e4b76", + "revision": "2dd226b31096473c9a621714", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29446,10 +29446,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "e1de34583a4d41c3981d540d", + "revision": "8b5a46bf42e4481b952af63a", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29457,10 +29457,10 @@ "content": { "type": 1, "value": {}, - "revision": "365418b8408f4c57a4637de3", + "revision": "10c44e8b220247a1ad706805", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29468,10 +29468,10 @@ "content": { "type": 1, "value": {}, - "revision": "d272baeaa7b3443ebfa0bf83", + "revision": "7bda0a0b85414b3bb94320ee", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29484,10 +29484,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "59957d3ac88e4291ab78b152", + "revision": "4e70001cfc1443bca77a4d3b", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29495,10 +29495,10 @@ "content": { "type": 1, "value": {}, - "revision": "c402336a84584bdb9a47cec8", + "revision": "815aa5aadf08433a9717004e", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29506,10 +29506,10 @@ "content": { "type": 1, "value": {}, - "revision": "32ec540280024a28b23f8115", + "revision": "4964f6c09e864c38ac76386e", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29521,10 +29521,10 @@ "dateValidity": 1696478671929, "currencyType": "USD" }, - "revision": "c5ed4c81bced48c6adb52883", + "revision": "bc4dc3306c7c434bbcc92b3c", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29536,10 +29536,10 @@ "symbol": "IVIP", "value": 622.94 }, - "revision": "b9acb7c6fbf1425cb9aa10ce", + "revision": "dbdc48be0a8849f19f91d588", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29547,10 +29547,10 @@ "content": { "type": 1, "value": {}, - "revision": "29d7d76d6b0d4f849b389b9f", + "revision": "3f26e57f28694989bca54454", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29560,10 +29560,10 @@ "value": { "costs": {} }, - "revision": "a8a7fb791c3541339cd044d7", + "revision": "ddc1dd18916f4803b5b268ca", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29605,10 +29605,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "414a5cef294843468856b4cd", + "revision": "51b8c4363e4444d08e845858", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29616,10 +29616,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0329.8017.0462.5356-52", - "revision": "b70c13b076c043059767bf62", + "revision": "831e1bf45dcd4d3ab91c13ad", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29639,10 +29639,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "4d543db1328640d09c98e710", + "revision": "e73c1f3945504deb9dde3b4a", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29678,10 +29678,10 @@ "history_id": 1689002980878, "description": "Compra de 145.670,00 IVIP por 100,00 BRL" }, - "revision": "9af4c31208f04b2dac99cb78", + "revision": "1ce814533e7742aea27d88ff", "revision_nr": 1, - "created": 1701809344879, - "modified": 1701809344879 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29695,10 +29695,10 @@ "value": 1693784217742 } }, - "revision": "871798223c4f4df09eedbde1", + "revision": "835f61028ff5477ca794b960", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29716,10 +29716,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "29186e84338e47c9b7da3029", + "revision": "cffc2a41fde2486bae44310d", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29727,10 +29727,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691192217742", - "revision": "8aed9a8865954e18a7cefd7e", + "revision": "e537e3a7648840b0bf030302", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29770,10 +29770,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "58702e9748e24cecb1b252b3", + "revision": "e9160aa9f7d94410a10af213", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29781,10 +29781,10 @@ "content": { "type": 5, "value": "Deposito de um valor 356,00 para a carteira iVip 0329.8017.0462.5356-52", - "revision": "6c5ea4a34f3c4a6689fff42d", + "revision": "0e148eb7c8134f6f8c0a93b2", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29802,10 +29802,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ae243259b56d4cabb2bb989b", + "revision": "648700589a2f490498f891a0", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29813,10 +29813,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691277371847", - "revision": "79575f12e8c842a285c067e1", + "revision": "7b9abf5e4eea4d1aa144349f", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29851,10 +29851,10 @@ "description": "Compra de 505.200,00 IVIP por 356,00 BRL", "status_detail": "accredited" }, - "revision": "d5e3f82068994f4894d2134e", + "revision": "3a61fb4a957f439ebb645684", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29868,10 +29868,10 @@ "value": 1694307306900 } }, - "revision": "59c97937603c4256b9e4b904", + "revision": "e84cf3e5f1644907b40f34d7", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29889,10 +29889,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4edb84d2ff3a43188fa5a955", + "revision": "c627ae2c6e10442a857f3046", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -29900,10 +29900,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691715306900", - "revision": "6614040e226d4c75ac62cef4", + "revision": "2c7acb9e0ede42f6a62d6843", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29943,10 +29943,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e71646cb91a149dc8cc2d5ff", + "revision": "3fff0f96c4ab41b0a5d0a947", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -29954,10 +29954,10 @@ "content": { "type": 5, "value": "Deposito de um valor 1.800,00 para a carteira iVip 0329.8017.0462.5356-52", - "revision": "334e1d080fa5461aa5cacd2a", + "revision": "9da04d2b92ed417c9de030dc", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036350, + "modified": 1702563036350 } }, { @@ -29975,10 +29975,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "07f7d950b8334a3fa4d03f5a", + "revision": "d7a86d762c6c473faeb7c6c5", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -29986,10 +29986,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1691847078457", - "revision": "9d8e2c9c84514fd79a6df6c5", + "revision": "f992d79c5ef04fb783625d4b", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30024,10 +30024,10 @@ "description": "Compra de 3.402.797,00 IVIP por 1.800,00 BRL", "status_detail": "accredited" }, - "revision": "57e5fdef104f4118995c5199", + "revision": "d1dd389e5e094d8086890269", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30041,10 +30041,10 @@ "value": 1698279005865 } }, - "revision": "b7ba07b79f9245b180d5993b", + "revision": "a10c224622ba45a9b94ac987", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30062,10 +30062,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b6f9eff15a694d199aa48170", + "revision": "bb96426adc2b4f8c8bfe37b7", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30073,10 +30073,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1695687005865", - "revision": "cb61fb9ac7284eb2bdbfe7b2", + "revision": "1666423b8d8149e2b9b2003d", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30117,10 +30117,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "14009a2d81664963a9ce2c38", + "revision": "5a089a24111341ebb7fc8597", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30128,10 +30128,10 @@ "content": { "type": 5, "value": "Deposito de um valor 647.176,00 IVIP para a carteira iVip 0329.8017.0462.5356-52", - "revision": "53dfd71d931e4ef9980890b1", + "revision": "407098aabdee47c5877e97d1", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30145,10 +30145,10 @@ "value": 1698443432960 } }, - "revision": "31bc7e340e404e24a113d59e", + "revision": "6136dca75e2b4c78a3a8a12c", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30166,10 +30166,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "657544d154bd4fccbc8d1676", + "revision": "af0aa79a845140768604aeb2", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30177,10 +30177,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/032980170462535652/history/1695851432961", - "revision": "d228d987bd8649f5bb169259", + "revision": "94a87b3d692e42658a7cbb18", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30221,10 +30221,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a0e66543a2754c1a9eb4e07a", + "revision": "c98eadc66a6c4205ab98f8eb", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30232,10 +30232,10 @@ "content": { "type": 5, "value": "Deposito de um valor 300.000,00 IVIP para a carteira iVip 0329.8017.0462.5356-52", - "revision": "e77d95e8237e404896c357f2", + "revision": "083e81d0ea66496eb5d39884", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30243,10 +30243,10 @@ "content": { "type": 1, "value": {}, - "revision": "7a06727943dd416bb81aea52", + "revision": "13339935571e44ac954cd893", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30254,10 +30254,10 @@ "content": { "type": 1, "value": {}, - "revision": "61715115b0ec47938fac4bdf", + "revision": "16c10f95f48d4667bc26bb7f", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30268,10 +30268,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "6d8b0f45c0e54959b65ea0f3", + "revision": "81609babcee14113b10cd12a", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30288,10 +30288,10 @@ "value": 1696906800000 } }, - "revision": "0cfd0515885649f2a18667e0", + "revision": "1f724959c3944698aca4e737", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30303,10 +30303,10 @@ "symbol": "BRL", "value": 12.2 }, - "revision": "a8e4bc3c7c17479a833eaf3f", + "revision": "e42b5e47cee840f9abe23f47", "revision_nr": 1, - "created": 1701809344880, - "modified": 1701809344880 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30318,10 +30318,10 @@ "symbol": "IVIP", "value": 32205.5 }, - "revision": "19d0d82cda854fba982eb1d8", + "revision": "e8a9afb8a9a3464b9491a097", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30329,10 +30329,10 @@ "content": { "type": 1, "value": {}, - "revision": "856666c7f3b74cc085d0168b", + "revision": "d6718652958b439fb0cf9d41", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30342,10 +30342,10 @@ "value": { "costs": {} }, - "revision": "296b4aab40cb484e966ab5d4", + "revision": "ab86f14727e34fad920cba53", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30387,10 +30387,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "db354768690a40fa9a62a618", + "revision": "8e54641163f4433296052cc8", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30398,10 +30398,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 5.510,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "3faab98695be42df9aed6014", + "revision": "e9e9f0a82030465da6381bf6", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30411,10 +30411,10 @@ "value": { "costs": {} }, - "revision": "f6d7a29ce161408eb17a8bbc", + "revision": "8df3a6019c01410fa527aab1", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30456,10 +30456,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "837462040e7b497c8f3fa010", + "revision": "de58008997bb436d978d01c6", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30467,10 +30467,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 6.500,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "578a02696908481b9fd8e40a", + "revision": "3c2ae5d236df43f791db573c", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036351, + "modified": 1702563036351 } }, { @@ -30480,10 +30480,10 @@ "value": { "costs": {} }, - "revision": "f5e61f8ed5044c1fa3d65b26", + "revision": "5efeaa739e644237aa1de68b", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30525,10 +30525,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "eac62f6ab2854588b833adbb", + "revision": "bc6a27de841b4862a5b0a468", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30536,10 +30536,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 7.700,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "a44d03cd61784419b72875c8", + "revision": "2842a5a2cf9f49bf93610773", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30549,10 +30549,10 @@ "value": { "costs": {} }, - "revision": "a2a033ac960d4274b4cba8b5", + "revision": "495cfe1cb70d40f6b91ddd99", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30594,10 +30594,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ae94f07222ec485385a31554", + "revision": "362ef96069844ffe906a0170", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30605,10 +30605,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 9.900,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "07ab6c75690c491b91ccccc4", + "revision": "9aded380cdc540218aedff06", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30618,10 +30618,10 @@ "value": { "costs": {} }, - "revision": "45969cf7bdfa449bafb19c4e", + "revision": "f7ea758ce5b54d25b5fad629", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30663,10 +30663,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a7a6778f9e0844b591560391", + "revision": "4830458cd5614661b2174ff5", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30674,10 +30674,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "8137972334cc4721b4b6cae2", + "revision": "7b031799e6e64985b61b0f36", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30687,10 +30687,10 @@ "value": { "costs": {} }, - "revision": "8ce53c67e54143aa866e51ae", + "revision": "cab4591728da4455b03e9735", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30732,10 +30732,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "51a7e40dfd0a48b0bfebd39e", + "revision": "ef104b86f6b345cfa7ae6642", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30743,10 +30743,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 12.000,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "8e2af5c6f986467484b8e3d4", + "revision": "1f35e954ac3d4054b1a382df", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30766,10 +30766,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "f38242affae44ce287028566", + "revision": "029cba6480e24b97bf425ca9", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30805,10 +30805,10 @@ "history_id": 1678153842542, "description": "Compra de 71460340 IVIP por 10000 BRL" }, - "revision": "7b71f9a826834709977354cc", + "revision": "2b81a95c2f804f30b27b2c98", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30828,10 +30828,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a0db6c99801f492e8e937d22", + "revision": "6bd3b4e11d4841aeae020e42", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30867,10 +30867,10 @@ "history_id": 1678153902578, "description": "Compra de 71460340 IVIP por 10000 BRL" }, - "revision": "b6a5a31649194b99954a3db8", + "revision": "7eb7146e68e146a58c700f19", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30882,10 +30882,10 @@ "label": "Taxa de 0.99%", "amount": 19.8 }, - "revision": "b0ed3c5c9cba4bc1973d6ff3", + "revision": "33e3dc1f9b344deca70c7e9c", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30893,10 +30893,10 @@ "content": { "type": 1, "value": {}, - "revision": "127b10043c394edebfd4dc41", + "revision": "b85842ebac2c44aa8524d6b5", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30906,10 +30906,10 @@ "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "7cb4ec6816ed40b5800f7a96", + "revision": "d6e850b6194b429c8b1ff7c2", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30917,10 +30917,10 @@ "content": { "type": 1, "value": {}, - "revision": "5f0d45a99ca94745b70c2bdd", + "revision": "191e85e602524b1a9c1824da", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30934,10 +30934,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "b9e043f00ba045b5b41a6bdb", + "revision": "923a9000f76f49a181ac3938", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30945,10 +30945,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIz0lEQVR42u3dXYrlNhAGUO1A+9+lduAQCBlb9UnugUAS6/hhmO7rto/uW1F/7fofXaPR0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v7z2jZf/c/f9b8/6Pm+v373+PTPB98+fb6x/brlrx/73x/0zKClpaWlpaWlpaWlpT1E2++PvT/kF6o9n/6Qladfz+M+8OV7GPcvKKtoaWlpaWlpaWlpaWkP0E4BZPm0l2P8+nGKBKc/u8eYV7hlEbjS0tLS0tLS0tLS0tLSXiVNN9oiKdhLdu8eQI6S7CtGWlpaWlpaWlpaWlpa2hDNpfivZO1S0eQj5Fz+kwo4aWlpaWlpaWlpaWlpj9UmfMnk1chy2TVXGuF2mbxN8SctLS0tLS0tLS0tLe0R2lba2v6Vf9qqu46WlpaWlpaWlpaWlvbb2nxNYyDH/PeLGSa13y1Hm6MkD7cWWlpaWlpaWlpaWlrab2tTC9v0pLHtfKtVl2VySTrulNgbq2QfLS0tLS0tLS0tLS3tt7VT+9u9Z21KANa9a2lw5P2h+3rOZTw55rJNWlpaWlpaWlpaWlraL2una3pFPtD1nEOSTpWm/1/PBODIn77EvLS0tLS0tLS0tLS0tN/TjpJ+S6uwU4ZuemOBLq5pl/b+aLS0tLS0tLS0tLS0tF/XpldsSiqn371WTpaodNqbndrkxm6mCi0tLS0tLS0tLS0t7de09xCxlfkiOcas8d9UL5mb49rmHblrjpaWlpaWlpaWlpaW9gBtCd/aCrCINpdFkymyXJ6lfHOdlpaWlpaWlpaWlpb2JO2Uq/vpaMi7dpRRk6X+spcItOzIbj/JRdLS0tLS0tLS0tLS0n5W2zZJvNwNV2PC+//qCoA0LjLHmLS0tLS0tLS0tLS0tEdpy3jHviqGHOXdZb1aiglb0Kap/qOlglBaWlpaWlpaWlpaWtova6d7U05vSZkiwU0UeZUD5RGS/aXqkpaWlpaWlpaWlpaW9nva0v6WEntXHiGZai03C9RqKPm2ho2WlpaWlpaWlpaWlvYcbc/LrsuTrpziy5NGaqBZTt/L9P+XqktaWlpaWlpaWlpaWtqvaROl9MUtE3ujRKDpAUlR8GlYCi0tLS0tLS0tLS0t7QHagppCv0cRZh4IWfdXp1O93XKVp9DS0tLS0tLS0tLS0p6jDRm1lpNuNSW31KaCy1J1uSv+pKWlpaWlpaWlpaWlPUJb/qrnOftTyLlcXZ3mlZTxk/WhZZsALS0tLS0tLS0tLS3tUdo8lqTns2wqMXc9dSlIXQ75p6WlpaWlpaWlpaWlPVN7ldAvxXUTr3S0PUb2/3SZWzkGLS0tLS0tLS0tLS3tOdpR+t1K91oLG9Pa6hVVkaozU/RaZpjQ0tLS0tLS0tLS0tIeoM39blO95DT3Mc0rqTNHSjVlz5Wd6b20tLS0tLS0tLS0tLQnaWurW3ltK0FlPlp6XsrzLSLGPMOElpaWlpaWlpaWlpb229rlfJGUtSvk1Bw3GVvJB26a6HqYk0JLS0tLS0tLS0tLS/t1ba2cXObl7u6pOS5FgmlSZMtVnMuIlpaWlpaWlpaWlpaW9vvaRdZuChYnVA4ql0nB6S+ubbT5NqWElpaWlpaWlpaWlpb2e9rUx5YKJDcx4Xj+r+cg9R5A1igyrxSgpaWlpaWlpaWlpaX9traUWS6u6SGJvOyaW+YDN++jpaWlpaWlpaWlpaU9RZvLLBfvyd1wo0DTerX0jlLFOWIXHi0tLS0tLS0tLS0t7ee1U/ptOX2kLFVLEWjfxKebYZJtnQCkpaWlpaWlpaWlpaU9QFvjxFD9WB/c37J7m0g1zUT5YRRJS0tLS0tLS0tLS0v7Ne1bH1vLYyCXJ97XX07FlfngtLS0tLS0tLS0tLS052jHZgt2nvFYX5bSedNxN+f7napLWlpaWlpaWlpaWlrar2lLDq5WRG4Sdi1QFrwSWdaqy5JQpKWlpaWlpaWlpaWlPUVbCh/rWaZPl0WTG/x0Xw8ZxBEHo9DS0tLS0tLS0tLS0h6kTbFeKZqclq/1cJb2tndtuWQ7jEOhpaWlpaWlpaWlpaX9vHafb0sz+jdh6JUnkkxnfqv7pKWlpaWlpaWlpaWlPUWbSyUXxZClYa6H7F6NRcuXcYU838gtdrS0tLS0tLS0tLS0tF/X3tvfphLIGuaVAsnJvZtD8tYN18PbaGlpaWlpaWlpaWlpz9PmcZFpFfbIQyLvb6y35GTfFcLQTktLS0tLS0tLS0tLe5J2CuRSgWTuWUvNbHXcSG62u2KFZfu9GlFaWlpaWlpaWlpaWtr/vbaQW3hSihh7WAEwvbFtppQU9/jJlBJaWlpaWlpaWlpaWtrPapcj9q9V7Nie/XPXKgJdTvrvscIyNerR0tLS0tLS0tLS0tIeoJ0qLFtegJ0H/9fRIiWdVysxy1VThrS0tLS0tLS0tLS0tEdoy8vGWxHmstby3ttW037LuDMFrqsokpaWlpaWlpaWlpaW9rPaVvZX50kj16qjrb0FhjmhuBuHQktLS0tLS0tLS0tLe4Q2XVMSLy1Gm+6bQs7i6XkzdgpX36suaWlpaWlpaWlpaWlpP6XNoV/tXiuVk6lYsxftJoqsYWM5KS0tLS0tLS0tLS0t7RHangPItGMtzYxMUWRpmOur4srfjiJpaWlpaWlpaWlpaWk/qU2RYH5F3aKW4skQCbbN19Jyix0tLS0tLS0tLS0tLe3B2mWn2uO+zVl2Ryux429m92hpaWlpaWlpaWlpaU/Rpictt6ON5xrtUU41FVwuZ0a+zFShpaWlpaWlpaWlpaX9pDbhSw1lQtUGt2Vx5XL3deFdtLS0tLS0tLS0tLS0Z2lr4ePkya1u1zNX11bbsqd03iizJZfrtmlpaWlpaWlpaWlpaY/Q/vcvWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWtp/TPsHWTbkPnmLk88AAAAASUVORK5CYII=", - "revision": "d92e80020960429f86d80d00", + "revision": "2a7b822aea9a482397209ff7", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30956,10 +30956,10 @@ "content": { "type": 5, "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654072019.805802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13128133836304AC44", - "revision": "2114af5267cc4a69a2361507", + "revision": "1aba52d2d6e44ab2bfd98914", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30967,10 +30967,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1312813383/ticket?caller_id=1310149122&hash=8e6c1cd1-3025-43b0-8279-4a0f2e9a7e7b", - "revision": "42a5edaf7d0941c28f1fae52", + "revision": "170333d58d1548b88ac1abae", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -30978,10 +30978,10 @@ "content": { "type": 2, "value": {}, - "revision": "53b59398178f4f2a94c0b219", + "revision": "13b39620911b4e6593fc0bce", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -31014,10 +31014,10 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "d81492b3cad84c25bfec1caa", + "revision": "714cfa9176854d60b2ce0ea0", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -31025,10 +31025,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "a862d12f8cc346e298adf314", + "revision": "28d6bb3237be44a8867cb78b", "revision_nr": 1, - "created": 1701809344881, - "modified": 1701809344881 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -31040,10 +31040,10 @@ "label": "Taxa de 0.99%", "amount": 19.8 }, - "revision": "5314453591c5468b8429c1b2", + "revision": "231fba62a80f4e2ca7a5bc83", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -31051,10 +31051,10 @@ "content": { "type": 1, "value": {}, - "revision": "ad1f77553cb9411e82aaf1cf", + "revision": "ffe6bac8f70c48059c34b486", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -31064,10 +31064,10 @@ "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "da367f8811e3477196a96d38", + "revision": "1721ac2007364468997e7142", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -31075,10 +31075,10 @@ "content": { "type": 1, "value": {}, - "revision": "25dc6fd7f82a4f7f9db585fb", + "revision": "960838c009ef4c0e886cae84", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -31092,10 +31092,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "7e983994fd654b38983af944", + "revision": "25d5a4df4efc46ffb9619b06", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -31103,10 +31103,10 @@ "content": { "type": 5, "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654072019.805802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13128133936304E9E4", - "revision": "50e4b79b15c74c0fa22573e5", + "revision": "296b6fdb516145b89d52682c", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -31114,10 +31114,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1312813393/ticket?caller_id=1310149122&hash=ba695c70-a0ed-49a1-b87f-05224cd38f84", - "revision": "e35aa7d7cc6144f4a979bfde", + "revision": "a0d7cc6768414d8899510341", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -31125,10 +31125,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI2UlEQVR42u3dQY7kNgwFUN3A97+lb6BggmRSFj/l7mCAZOznRaHRLstPtSNIkWP+Rtc5aGlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWl/vXas1/Hjf8fPG0f+3o9F1lX+/N9ff5U3Xh47f658/nxlZdDS0tLS0tLS0tLS0r5Ee3wu+7nI36/9fH7xnGH1ed3uGCPfWLSJQUtLS0tLS0tLS0tL+xbtEkCWu0fZxj+PLZHg8thnjHmJNpffYcOgpaWlpaWlpaWlpaV9qbak6Wo6L7t3WcD0E9DS0tLS0tLS0tLS0tLGaC7FfyVrl4omLyFn+7Hk/mhpaWlpaWlpaWlpad+tTfhUUnlXQ9kEn4Uywsr/ukaUlpaWlpaWlpaWlpb2d9fW9iD/yccXu5TQ0tLS0tLS0tLS0tI+TZuv1IzkyHfbKHIJEZfeJDnkzBZaWlpaWlpaWlpaWtpna9MRtmWlM9Rk1n4liyc1Mkm7X57YZvdoaWlpaWlpaWlpaWmfp12Ov32eWZt3c9da1KYR5SjT1tJv00WRtLS0tLS0tLS0tLS0z9Mu1/KKvKF57UMyY+g3UjrvU3bmuzcxLy0tLS0tLS0tLS0t7fO0Z0m/bSZeH+Gxkf9qr+XL+63R0tLS0tLS0tLS0tI+XVumW+9LKpf/LSHnGXpLpq/UKs5lDsBNr0taWlpaWlpaWlpaWtoHaZdsXErTlRjzNv7Lh+PG5h351BwtLS0tLS0tLS0tLe0LtCV8Gzmn10abbdFk6j7S7qX8cgctLS0tLS0tLS0tLe1LtGnY9T7ZV86xLeS2/vIoEWiZkT1us3u0tLS0tLS0tLS0tLTP06a4bpbm/fk0XH32868jr/K5/AxdJgctLS0tLS0tLS0tLe27tDVDt5l/dnY7SAfcRkgZnlfjgj9HKgilpaWlpaWlpaWlpaV9tnbeDbZeCimvKbvm7pHnuKUCznLi7kvZPVpaWlpaWlpaWlpa2qdo0/G3VE051ms5x7bvzD9LZLnkCMuPRktLS0tLS0tLS0tL+zLtcY0E0yjsuqFytm12x+madF4aELCtuqSlpaWlpaWlpaWlpX2etlBmeL5N7C2DslM8uVt0KcJMj9HS0tLS0tLS0tLS0j5dW1AjlF4eoTCzxHqxF2QJNNuv1FVoaWlpaWlpaWlpaWnfo81R33Hdy7KNowxVWyip4LJUXbbFn5OWlpaWlpaWlpaWlvYl2vJUUwdZdtCMrk79Ssp8tnbRmmmkpaWlpaWlpaWlpaV9hTYda8tH4moqsDSdPMIbl/USvmluQktLS0tLS0tLS0tL+ybtLKFfiutK1eWZY8z0lUVWkn3n987u0dLS0tLS0tLS0tLSPkJbh6CV02sjTEwb3SuqIs9Yq9Fr6WFCS0tLS0tLS0tLS0v7Am0+77bUS6YizHP0V66mPLpEYX0vLS0tLS0tLS0tLS3tm7SjlFmW144SVOatpfVSk/8mYsw9TGhpaWlpaWlpaWlpaZ+tbfuLpKxdGmK9RIzFOK75wGWBEV5+fDkXSUtLS0tLS0tLS0tL+whtE9e1ebny5Sb3lztFjlzF2Ua0tLS0tLS0tLS0tLS0z9emuG6ErpBLJeaxqb/MubrUnPLcFlzS0tLS0tLS0tLS0tK+R9u0d0z9HNuOJDkpOMP+moA0jxSgpaWlpaWlpaWlpaV9trZQbhuPlDLLVFd5loC0vOPYvI2WlpaWlpaWlpaWlvY92px5a96zRJZ5bNoyB2DmU25L6WVanpaWlpaWlpaWlpaW9mXaUlw5b5qHNKWXy7Mp93cp4EzlnX3VJS0tLS0tLS0tLS0t7UO1bTx5hADycnAth5y7ULJNFH45iqSlpaWlpaWlpaWlpX2a9u4c29g0hEzXvv4ytSUpRZi0tLS0tLS0tLS0tLTv0Z6bKdipXWR6WUrnLdvd7O87VZe0tLS0tLS0tLS0tLRP05YcXK2ILMvNsKtxxyuRZa26LAlFWlpaWlpaWlpaWlrat2hL4WNbf3lu+khm6BlCztrLP2UQaWlpaWlpaWlpaWlp36hNsV4pmqzD18pext3ctXbIdmiHQktLS0tLS0tLS0tL+3htzrelyHJ289mOLrKc224mcxOa0tLS0tLS0tLS0tLSvkKbSyWbYshyYO62038us5whz3fmI3a0tLS0tLS0tLS0tLRP134ef1tKIGuYVwokZzfYuvkxNqfhjvA2WlpaWlpaWlpaWlraV2jTELQ0VO3Ig9HSAOx9h5OS7KtBZR9F0tLS0tLS0tLS0tLSPk275OU+I8ua2EtH51KaLnU4yT3/Z5i0PWlpaWlpaWlpaWlpad+lPa8tSEbu219SfOmA21KnOTZdSjaLHrS0tLS0tLS0tLS0tO/SznCibamrTLHjuJ6fm9cayhFyf6PI2n4lXdUlLS0tLS0tLS0tLS3tY7XjWmaZmow0d/fdI9Nelh1sUoa0tLS0tLS0tLS0tLQv0JaX1b4hSxJvceezbaPEiTnubALXLoqkpaWlpaWlpaWlpaV9rHaU+dW508jsTrSNu8AwJxTP7omDlpaWlpaWlpaWlpb2Jdp0LUm83Idk5mzc58aPzSm3sujsxgLQ0tLS0tLS0tLS0tI+W5tDv3TKbamcnGVDS8R4F0XWsLHslJaWlpaWlpaWlpaW9hXaIwSQ+4+lpHJXolnC0JF7Rn45iqSlpaWlpaWlpaWlpX2kdlMlWXtB5raSlzA0RIIj/yxtCHvQ0tLS0tLS0tLS0tK+XduulCh3Hzv8t7N7tLS0tLS0tLS0tLS0L9C2K51rhNcPWistKec1idf0jLzpqUJLS0tLS0tLS0tLS/tIbcKXGsqEqgfc2uLKdvZ14U1aWlpaWlpaWlpaWtp3aWsSb/Hko27zmqsb3bTsXdVlSgXeVF3S0tLS0tLS0tLS0tI+Tfv/v2hpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpf5n2D0v667pa5ajGAAAAAElFTkSuQmCC", - "revision": "cd4347a0e68c44c8a9757216", + "revision": "f9428b69566b4503879e32fa", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -31136,10 +31136,10 @@ "content": { "type": 2, "value": {}, - "revision": "8d9c833b2ef94619820d2ba2", + "revision": "b32a339796764076a0e2dc50", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -31172,10 +31172,10 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "da760a9a45a44ffea0188ade", + "revision": "208f1c1cf0e043fea3fbf954", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -31183,10 +31183,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "ce263fd861ad489e95053a79", + "revision": "c559745770a0476a8c6113fa", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036352, + "modified": 1702563036352 } }, { @@ -31206,10 +31206,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "4223922fa8844595bfb76d3f", + "revision": "74665e20f9344c83910c6d55", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31245,10 +31245,10 @@ "history_id": 1679266944717, "description": "Compra de 126385600 IVIP por 21710 BRL" }, - "revision": "cfd944a15f0943cfa3682b0f", + "revision": "b11cbf5222dd4412bc4779ca", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31260,10 +31260,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 51.1 }, - "revision": "dc1c3d41ce344336a6fcd0af", + "revision": "013443912ca34380955752dc", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31271,10 +31271,10 @@ "content": { "type": 1, "value": {}, - "revision": "ef2f1abdf6354b458412bc95", + "revision": "5a67ecefb46e41d4a00ab061", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31282,10 +31282,10 @@ "content": { "type": 2, "value": {}, - "revision": "46732b05d0f448bbbc402a4b", + "revision": "b18eea31d44446b2932fa239", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31318,10 +31318,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "5b7e4c3fd8dd475faf761639", + "revision": "505af1ba0fff4cf28f26a197", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31329,10 +31329,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.555,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.606,10", - "revision": "d963b3ee37b648cd891f05e9", + "revision": "13913bdc636a4dc1a5caf45b", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31352,10 +31352,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "2ab062d98c7044e9aa885020", + "revision": "e874b70147cd4a3c95d1911a", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31391,10 +31391,10 @@ "history_id": 1679872071598, "description": "Compra de 13.606.977,00 IVIP por 2.555,00 BRL" }, - "revision": "52dddde932a74113b3acb10f", + "revision": "04384cd653d449fda1ceaf4d", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31406,10 +31406,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 52.2 }, - "revision": "0f38abe364c54e7f9a76b277", + "revision": "b9dcc876cd684c2c8a83d7a2", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31417,10 +31417,10 @@ "content": { "type": 1, "value": {}, - "revision": "9005c1e7fdc94201ae250639", + "revision": "30d336c028754b2d9f49605c", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31428,10 +31428,10 @@ "content": { "type": 2, "value": {}, - "revision": "74a6c479c58b4c74a2e7c382", + "revision": "f88b60cfed1243c6a7ed4b10", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31464,10 +31464,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "6ef9143d886245b7aa868be4", + "revision": "5a1dcc5872064bf8abe86f6b", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31475,10 +31475,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.662,20", - "revision": "d2e82a4637754b0a84df126e", + "revision": "510a63bbe82e44b396f475c5", "revision_nr": 1, - "created": 1701809344882, - "modified": 1701809344882 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31488,10 +31488,10 @@ "value": { "costs": {} }, - "revision": "3bb8068761834016830fddd3", + "revision": "95a1ed3639564a5ba81fdaa0", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31533,10 +31533,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "20ed47f13e774033b9d0aebc", + "revision": "be0445bb194044b7acbf0ba3", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31544,10 +31544,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "4fdf66bdfc1245bdb9a789a7", + "revision": "3eaab7f764634038bce7dd88", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31569,10 +31569,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "942ba857ee0c4d3c99a84abf", + "revision": "6a55c96e3ed947a581b02866", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31608,10 +31608,10 @@ "currency_id": "BRL", "history_id": 1682965648718 }, - "revision": "ac671d5b34074a87ba5d8fd7", + "revision": "2b247274f8f349969cfd009c", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31619,10 +31619,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 1 no valor de 2.606,10 BRL referente ao contrato 1679852406395", - "revision": "072837dc5a074d2ba1567697", + "revision": "295f970416014de9be370742", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31632,10 +31632,10 @@ "value": { "costs": {} }, - "revision": "12ff11d221344ebcba3a637f", + "revision": "df48b270afac4eaeafae6252", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31677,10 +31677,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9112559e609b483ab2d758c3", + "revision": "6a2c575f82e2446f84c9cf4c", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31688,10 +31688,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "5ad706442fb345c8a55334c4", + "revision": "1c8be6c0f440405e884eee6f", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31713,10 +31713,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "e89985d250fb45229377d5f0", + "revision": "3088570eebea44b382a4d196", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31752,10 +31752,10 @@ "currency_id": "BRL", "history_id": 1683078471570 }, - "revision": "d25b2ec2c0ce4112af72f8bf", + "revision": "31f008e1902f4c139c70e697", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31763,10 +31763,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 1 no valor de 2.662,20 BRL referente ao contrato 1682964262250", - "revision": "0dacfcaa8dcd4630bda4740f", + "revision": "1ec244bd462c4275911e45a1", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31778,10 +31778,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "f532b3d59b47402dbe5585d4", + "revision": "45c5afb38eea4309832c7fdd", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31789,10 +31789,10 @@ "content": { "type": 1, "value": {}, - "revision": "3ae7045dcc5d4347beb09a8f", + "revision": "87824b9bab12446586496417", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31800,10 +31800,10 @@ "content": { "type": 2, "value": {}, - "revision": "88cda56f9aa64ff184a9fd85", + "revision": "60bdc13ec0ab4fc694ec94e8", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31836,10 +31836,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "97ff2c92e05b4d9194b2627a", + "revision": "3d93cf18bc58441dba330df5", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -31847,10 +31847,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "0bb34c08e1c5470b9675fb23", + "revision": "ed4901a1af974f14a9d14059", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036353, + "modified": 1702563036353 } }, { @@ -31870,10 +31870,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "b15062d8ede24b0ea4ccf8cf", + "revision": "8cd6af2e0670457a994bf900", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -31909,10 +31909,10 @@ "history_id": 1684018958577, "description": "Compra de 54.049.325,00 IVIP por 10.001,00 BRL" }, - "revision": "e2fabbd32e6e4068807097fe", + "revision": "578c53dda4bf4b69b3f1225b", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -31932,10 +31932,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "6a91d697fc3d44fc85efa851", + "revision": "df1e69ec946240ecb8067f60", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -31970,10 +31970,10 @@ "currency_id": "IVIPAY", "history_id": 1684158157715 }, - "revision": "e1d38319e598464dace9a23a", + "revision": "4607bcf8f1434ca1afec041d", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -31981,10 +31981,10 @@ "content": { "type": 5, "value": "Compra de 369.625.820,00 IVIPAY por 36.962.582,00 IVIP estabilizando US$ 1.380,18", - "revision": "4fcee832c2fb4cc7af7c96c7", + "revision": "3c4c7228bdcf4c36986a0af9", "revision_nr": 1, - "created": 1701809344883, - "modified": 1701809344883 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -32004,10 +32004,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "fc814240bfb94a4795985b54", + "revision": "55aea7209a514613b4e1ef5c", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -32042,10 +32042,10 @@ "currency_id": "IVIP", "history_id": 1686924794730 }, - "revision": "2256fe6413014e96b6ebb95e", + "revision": "89fa38e68b0a4fecadb5fd2e", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -32053,10 +32053,10 @@ "content": { "type": 5, "value": "Compra de 3.989.184,00 IVIP por 39.891.848,00 IVIPAY", - "revision": "a564e8dbcb654261a8042ea5", + "revision": "bc3712ff7b9c4667b04e8399", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -32076,10 +32076,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a8b7cdc1d1444c78a16bc9d4", + "revision": "4041ea381e0b4102a43ae986", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -32114,10 +32114,10 @@ "currency_id": "IVIP", "history_id": 1686924859436 }, - "revision": "469a94215a8a4a0a83eebe6a", + "revision": "75536f9db66c411fa7b34461", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -32125,10 +32125,10 @@ "content": { "type": 5, "value": "Compra de 35.902.602,00 IVIP por 359.026.026,00 IVIPAY", - "revision": "7f51a6c1c339407b8a796225", + "revision": "ccc317893170456381786f8a", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -32138,10 +32138,10 @@ "value": { "costs": {} }, - "revision": "edf855cb4f8147fe81dfeb08", + "revision": "d99626267758487a8a789191", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -32183,10 +32183,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ce73c23a95e747f0af39e62e", + "revision": "83f48d4387b64005af3589d9", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -32194,10 +32194,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.735,00 para a carteira iVip 0331.9555.3972.0461-00", - "revision": "004b198dc545484c8b3c2450", + "revision": "ff4f588246d2434f980b692a", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -32219,10 +32219,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "eed073ac893d4248878b8623", + "revision": "0e0eee1f858841bfb6e8f36e", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -32258,10 +32258,10 @@ "currency_id": "BRL", "history_id": 1689023462249 }, - "revision": "7770e686e8de47b1bb11bee2", + "revision": "2a7052ef67cc4165a3d5719c", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -32269,10 +32269,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 11 no valor de 1.209,09 BRL referente ao contrato 1683078539834", - "revision": "bbd7b58f888d4754aabe5d58", + "revision": "84f8ef66ff0343b48c9c5a16", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -32292,10 +32292,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "4b2afb416b634b1c8ff02049", + "revision": "a5d6a58455ef43dab20d4ccd", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -32331,10 +32331,10 @@ "history_id": 1689027294801, "description": "Compra de 23.038,00 IVIP por 26,00 BRL" }, - "revision": "93b1cde2193a4b1fafa07ef8", + "revision": "5b89cb3a08194d86b2692539", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -32354,10 +32354,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "f4b3787ec0bc43098f019567", + "revision": "16ec2f05c8e844708f2d3656", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -32393,10 +32393,10 @@ "history_id": 1689119838635, "description": "Compra de 10.892,00 IVIP por 20,00 BRL" }, - "revision": "57418881119b43f59095e609", + "revision": "5c9e22c9fe9646a0a67bed4f", "revision_nr": 1, - "created": 1701809344884, - "modified": 1701809344884 + "created": 1702563036354, + "modified": 1702563036354 } }, { @@ -32416,10 +32416,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "c64578f58ec34eb9800a5fd6", + "revision": "4ad0f15ecf7e4e369a3805d0", "revision_nr": 1, - "created": 1701809344885, - "modified": 1701809344885 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32455,10 +32455,10 @@ "history_id": 1689121233961, "description": "Compra de 44.060,00 IVIP por 80,00 BRL" }, - "revision": "5008830b9117429c98f85b2d", + "revision": "30a5cafa63654143994169ea", "revision_nr": 1, - "created": 1701809344885, - "modified": 1701809344885 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32478,10 +32478,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "5657c11660c74bf3b1a4ed1a", + "revision": "ddbeff9260a646e7baa462df", "revision_nr": 1, - "created": 1701809344885, - "modified": 1701809344885 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32517,10 +32517,10 @@ "history_id": 1689164526021, "description": "Compra de 9.455,00 IVIP por 20,00 BRL" }, - "revision": "b896597acab445929eaf49d5", + "revision": "56d5b60442a94dadab77fae7", "revision_nr": 1, - "created": 1701809344885, - "modified": 1701809344885 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32540,10 +32540,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "c144e66e6e004cf5b5856549", + "revision": "0f56cc279506402286614344", "revision_nr": 1, - "created": 1701809344885, - "modified": 1701809344885 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32579,10 +32579,10 @@ "history_id": 1689704009270, "description": "Compra de 12.818,00 IVIP por 20,00 BRL" }, - "revision": "19c77926b30441fdbd0e7c4d", + "revision": "9199bbcc3aa844eaa711343f", "revision_nr": 1, - "created": 1701809344885, - "modified": 1701809344885 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32602,10 +32602,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "3cde6ec689434bf8ac62becd", + "revision": "0c63ae399d064d7f823d1b77", "revision_nr": 1, - "created": 1701809344885, - "modified": 1701809344885 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32641,10 +32641,10 @@ "history_id": 1690245422296, "description": "Compra de 82.033,00 IVIP por 100,00 BRL" }, - "revision": "0af464940b08451b949ee930", + "revision": "3fdd833c2e39461d9c987997", "revision_nr": 1, - "created": 1701809344885, - "modified": 1701809344885 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32664,10 +32664,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "9d62204763c54074951e561c", + "revision": "6322faf4d6e64135bc4be354", "revision_nr": 1, - "created": 1701809344885, - "modified": 1701809344885 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32703,10 +32703,10 @@ "history_id": 1690245659912, "description": "Compra de 16.360,00 IVIP por 20,00 BRL" }, - "revision": "9cb70736d28b4d48b0061a37", + "revision": "63d43f9c4974496097dd0788", "revision_nr": 1, - "created": 1701809344885, - "modified": 1701809344885 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32724,10 +32724,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7965668d8b27421eaee53cc6", + "revision": "6b3e8f941f6a43978c72bc42", "revision_nr": 1, - "created": 1701809344885, - "modified": 1701809344885 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32735,10 +32735,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690477890638", - "revision": "04d7b7657a2a4d7f80854f63", + "revision": "b9e5488003224bd1814afeb9", "revision_nr": 1, - "created": 1701809344885, - "modified": 1701809344885 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32773,10 +32773,10 @@ "description": "Compra de 23.044,00 IVIP por 30,00 BRL", "status_detail": "accredited" }, - "revision": "4794debe31fa493fafe096db", + "revision": "9a0ebe4d1a304d80b4caafc9", "revision_nr": 1, - "created": 1701809344885, - "modified": 1701809344885 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32794,10 +32794,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "356f31d3cf15426bafeb28a3", + "revision": "781f478e0c40497d83c211eb", "revision_nr": 1, - "created": 1701809344885, - "modified": 1701809344885 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32805,10 +32805,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690581074985", - "revision": "aecea186769f4da188d9fd9d", + "revision": "040459b75d4b4c7a9a6dc509", "revision_nr": 1, - "created": 1701809344885, - "modified": 1701809344885 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32843,10 +32843,10 @@ "description": "Compra de 103.259,00 IVIP por 110,00 BRL", "status_detail": "accredited" }, - "revision": "e54eca444a754fce96b03a42", + "revision": "ca75678c4aba4dcdb257cf8c", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32864,10 +32864,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7567dc310f95457493b3b716", + "revision": "15c9f59aa3b743aeb68d2337", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32875,10 +32875,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1690912306732", - "revision": "bf02724bdb9340aab1b7a846", + "revision": "e66ef047df024d09ad22fd00", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036355, + "modified": 1702563036355 } }, { @@ -32913,10 +32913,10 @@ "description": "Compra de 55.731,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "4c194fae9ed04d98b1cd6582", + "revision": "6a732dbb090747039a28327a", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -32934,10 +32934,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "9818f9781e634a2394d051a5", + "revision": "fc7b841d9352493c8e3dcff5", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -32945,10 +32945,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1691091813497", - "revision": "1450a70b609c4c908b89f1da", + "revision": "f06ebd5ea99b4d338d55accb", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -32982,10 +32982,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "887f44585f4541cd91159d18", + "revision": "f36104a528c1425ebefece67", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -32993,10 +32993,10 @@ "content": { "type": 5, "value": "Investimento de 7.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "6a36599c65244dd2851a7685", + "revision": "385e9719c0ec498ead4fac76", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33014,10 +33014,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d38f148e16f1471ba17cf002", + "revision": "d8c151ddf4eb4f5caf29d0fe", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33025,10 +33025,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1691190824646", - "revision": "dd864ec78b2740d1a935cd4d", + "revision": "3ec2218a3a5b4ddd8b314dc4", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33063,10 +33063,10 @@ "description": "Compra de 61.311,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "df5ee706f33d479782e25170", + "revision": "0612eb2cad884317b04b6be3", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33080,10 +33080,10 @@ "value": 1695582792970 } }, - "revision": "d8dcf794e29c43ac86173bb0", + "revision": "ca9d6ea3c32b4242b2e89487", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33101,10 +33101,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "cd81e27dd73b4daf814d6581", + "revision": "eb06c98d6d764586bc3ff40e", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33112,10 +33112,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1692990792970", - "revision": "e025d1238118442f9a5f0d81", + "revision": "a3026f2464d94c9aa0a727ae", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33145,10 +33145,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "c0147e245eb943a7a28504f7", + "revision": "6a897ac768834e74aec84ebc", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33156,10 +33156,10 @@ "content": { "type": 5, "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0331.9555.3972.0461-00", - "revision": "417bd3088ff54f909f1a65d0", + "revision": "e6ea629d0de94b0ca71820b6", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33177,10 +33177,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "bcb6480d04be40c79db8f81f", + "revision": "1fb96e4bafc24e5e9b5a5578", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33188,10 +33188,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1693770411115", - "revision": "eb7a922629be489b94beffbf", + "revision": "24289a24770d49fcbff73cea", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33225,10 +33225,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "b0ce42348118409fb8e3f701", + "revision": "06e7b303c03545d9be394f82", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33236,10 +33236,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 7.000.000,00 IVIP com um rendimento de +140.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "b2a03fdf5dd2477c8bf2ae05", + "revision": "c94a22a75a3c4919991e97d9", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33253,10 +33253,10 @@ "value": 1697107013081 } }, - "revision": "4c96377a96d94242a3cd86ba", + "revision": "87d8d59472cf4f6298897baa", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33274,10 +33274,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8e513822a7704ae3950b3b6f", + "revision": "920e2cc3685e4c9e9868862b", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33285,10 +33285,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694515013082", - "revision": "67b9114f8cf6490f98feb6c6", + "revision": "a124c37834c7440e9ec68be8", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33318,10 +33318,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "33ae9ce0e9e54e4fb9c97a3a", + "revision": "9ff5f902f5d84cafa2c6ca85", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33329,10 +33329,10 @@ "content": { "type": 5, "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0331.9555.3972.0461-00", - "revision": "2a5bf7d5b03340a59c94f88d", + "revision": "c14ea54b68ba47fca0112fad", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33344,10 +33344,10 @@ "label": "Taxa de 3,00%", "amount": 30 }, - "revision": "44e12ba57f964867b70c63fc", + "revision": "aae8ae914f7b4013a52da5f0", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33364,10 +33364,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "9010f6f3c2bd4e29b75ccda9", + "revision": "72c0af30e5e34914877481ce", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33375,10 +33375,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694563336129", - "revision": "7b6efcfe5fcd41a5a9bbfd7b", + "revision": "59ee24aff8d54d7f8c5356d6", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33386,10 +33386,10 @@ "content": { "type": 2, "value": {}, - "revision": "b7b184eb9c784143ab0402f1", + "revision": "bd40a4f260ae46fa90e62f24", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33433,10 +33433,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "078004758ec24a26a3675ca5", + "revision": "d2581f70a0804b17827c3772", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33444,10 +33444,10 @@ "content": { "type": 5, "value": "Saque de 970,00 IVIP para a carteira 0x1250E6646AB77FF3f9708D761091ef1aD60bc9ec", - "revision": "84fd56e1f4de4d5d8f22fb91", + "revision": "8f72e6f84d1c47beabc94c85", "revision_nr": 1, - "created": 1701809344886, - "modified": 1701809344886 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33461,10 +33461,10 @@ "value": 1697194446900 } }, - "revision": "85c8786298424732a2881117", + "revision": "76855824a280480db343d27f", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33482,10 +33482,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "bef4dd35c35942cdafaa1241", + "revision": "4e3e411ca202409eb505feea", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33493,10 +33493,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694602446900", - "revision": "7403c9d899764efcbc67dc6b", + "revision": "5aca3aa73fae45fc926700ec", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33536,10 +33536,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "770c1161275b48f38f86f893", + "revision": "1850fe41c5d6431da649609d", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33547,10 +33547,10 @@ "content": { "type": 5, "value": "Deposito de um valor 2.500,00 BRL para a carteira iVip 0331.9555.3972.0461-00", - "revision": "162be5e2a75b497392a14dd7", + "revision": "5d2f09c61d684761ab8429a2", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036356, + "modified": 1702563036356 } }, { @@ -33570,10 +33570,10 @@ "installment_paid": 2, "installments_payable": 9 }, - "revision": "d504d2ffb2c049ba9e1abda1", + "revision": "0bfee41a7a6445adafdb38a2", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33581,10 +33581,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694614621977", - "revision": "a4bc9dc1008e41bebd706c0f", + "revision": "4eea2a94138c4bbbb6182fa4", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33618,10 +33618,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "4349999f6fc342a98362ab98", + "revision": "0017087739e74621a65ab826", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33629,10 +33629,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 11 no valor de 1.209,0909 BRL referente ao contrato 1683078539834", - "revision": "331331982e2842b6a6f70a70", + "revision": "c44b1550d0a24915995469d7", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33652,10 +33652,10 @@ "installment_paid": 3, "installments_payable": 8 }, - "revision": "18a404d9dcf44d0aac7eeae2", + "revision": "d21f3858f3d443a08b623f5e", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33663,10 +33663,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694614622168", - "revision": "10665918251946499c576d3a", + "revision": "1fca082565d847d79b9e505e", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33700,10 +33700,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "b32c7509d49247e2ac65b2ae", + "revision": "3fd4d195ff2e4efcacbd66f6", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33711,10 +33711,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 3 de 11 no valor de 1.209,0909 BRL referente ao contrato 1683078539834", - "revision": "e388da51ccab450ab309fd9d", + "revision": "7e1589b724a54407acb5c30a", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33726,10 +33726,10 @@ "label": "Taxa de 3,00%", "amount": 942112.9199999999 }, - "revision": "27837d4cbedd46a9824010fa", + "revision": "b75a4e7f446b4a84baa2873a", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33746,10 +33746,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "89e3c5227e8245b88f9a4df8", + "revision": "4a4ef7df1b8c4eeab22db432", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33757,10 +33757,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1694707376145", - "revision": "2367fc992e9749c8b86fd858", + "revision": "668b5a5fbabe4cb5bbd2a796", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33768,10 +33768,10 @@ "content": { "type": 2, "value": {}, - "revision": "430906c264ab4939a36a4826", + "revision": "989b300c899c46dd9d5327b9", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33815,10 +33815,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "b49b55eb4c2b4271bbd35ea1", + "revision": "b79822e8fee2440c89d6c47d", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33826,10 +33826,10 @@ "content": { "type": 5, "value": "Saque de 30.461.651,08 IVIP para a carteira 0x1250E6646AB77FF3f9708D761091ef1aD60bc9ec", - "revision": "c89693f6ce3c4274a1c0b9ee", + "revision": "33730af6b358407781018335", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33847,10 +33847,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f3f463a1621f43d3bb322364", + "revision": "d72e2ab1b172407d8562a018", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33858,10 +33858,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1696309633832", - "revision": "2853ffbc48b3443996e1fefd", + "revision": "7abb06a35e8b49bbb7275f02", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33896,10 +33896,10 @@ "base_currency_id": "BRL", "status_detail": "accredited" }, - "revision": "4c8ea5e2e856470e8d3d29df", + "revision": "1a50b4c14f454934a3f1652e", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33907,10 +33907,10 @@ "content": { "type": 5, "value": "Investimento de 20,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 03/08/2024 - D03OS92M", - "revision": "0f27f27183d04ff89380a712", + "revision": "727fa4774dce477199b27aaf", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33928,10 +33928,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8dc2b0290af34bdea1269b74", + "revision": "1732b9b8d7df4798bfb7023c", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33939,10 +33939,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/033195553972046100/history/1696433201105", - "revision": "0db8c3aa30484747908879ff", + "revision": "bf8980e241d64b33ae57bdb2", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33977,10 +33977,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "8d7c5bf81a1f47e991d747f7", + "revision": "58430721fea64d65b900a1e9", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33988,10 +33988,10 @@ "content": { "type": 5, "value": "Investimento de 7.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "02bef8cafd3c4cd0a2b91da0", + "revision": "0581361a56b6426a89a716b0", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -33999,10 +33999,10 @@ "content": { "type": 1, "value": {}, - "revision": "c1847ef0cf334208ae593a8f", + "revision": "a03633db128047398a094002", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34014,10 +34014,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 51.1 }, - "revision": "6e8730c8dd19402b8a4f7023", + "revision": "810d6b1a904c485d91313484", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34039,10 +34039,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "9aebd6af32d04b0aa0054384", + "revision": "3d61465de742492c8f95f651", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34050,10 +34050,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.555,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.606,10", - "revision": "a6d5346ef17b4570aaebaea6", + "revision": "815e6270c16f41ca86a4f2a1", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34061,10 +34061,10 @@ "content": { "type": 2, "value": {}, - "revision": "33cce3ee2c0c4fc98ca7ea23", + "revision": "05176557943141589e41c0ca", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34072,10 +34072,10 @@ "content": { "type": 1, "value": {}, - "revision": "25061dff2a564163ba707c14", + "revision": "be07027d33034d19a1ad9bdd", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34087,10 +34087,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 52.2 }, - "revision": "6eb78e14f0784a3ea81a2283", + "revision": "e50abd342d594b21afc63876", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34112,10 +34112,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "898a1c1f4bcb418d9477a531", + "revision": "31d02e33115d4372931f3319", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34123,10 +34123,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.610,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.662,20", - "revision": "3c5bdda11408410cbe37d9e0", + "revision": "0043129fa74b437c95e35bbc", "revision_nr": 1, - "created": 1701809344887, - "modified": 1701809344887 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34134,10 +34134,10 @@ "content": { "type": 2, "value": {}, - "revision": "bea853e389e541ebbd03c080", + "revision": "74db117df55b4e5897dbdad2", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34149,10 +34149,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "7d29e9b3add5402baf612ec5", + "revision": "033ca42689804df09506eab4", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34174,10 +34174,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "bc82e68e908d44bbbb41b8cd", + "revision": "f970bd8d7860474f8905256b", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34185,10 +34185,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "2b985d6b07484e01b122a392", + "revision": "4b987ea2c25848a78745194f", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34196,10 +34196,10 @@ "content": { "type": 2, "value": {}, - "revision": "0cef996c3c924c0484f19d9c", + "revision": "8e45c362505645899f5e11b5", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34207,10 +34207,10 @@ "content": { "type": 1, "value": {}, - "revision": "78bdf834c4ff498096b96a55", + "revision": "12ebad48757d4ffe94b39ca7", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34222,10 +34222,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "4d012d7ac96d424dad42bcf0", + "revision": "b5c237d223e94e85810ac82f", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34251,10 +34251,10 @@ "value": 1694614622016 } }, - "revision": "ea83104883454d0d9288a130", + "revision": "f3e4349281354a5e8dfd95b1", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34262,10 +34262,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "d4645c4c015949c5b8366e06", + "revision": "e32c5a5f80874e978365b699", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34273,10 +34273,10 @@ "content": { "type": 2, "value": {}, - "revision": "dae832f3e59c42c9b53875c1", + "revision": "97e67f72d3fe45a48f782f27", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34284,10 +34284,10 @@ "content": { "type": 1, "value": {}, - "revision": "c82274ee2716458bac9555f4", + "revision": "905060cff12647b48705c6e7", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34299,10 +34299,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "ab591ef24f9e47ad99ab767b", + "revision": "7c39ff76d3cd441baf784df1", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34328,10 +34328,10 @@ "value": 1694614622191 } }, - "revision": "c5ab0681f07342bc9330e2da", + "revision": "387b0fb6ee7c45049a91367e", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34339,10 +34339,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "e72f3af40504414eaad48f88", + "revision": "2b124b3d46dc454685e964c2", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34350,10 +34350,10 @@ "content": { "type": 2, "value": {}, - "revision": "d944c0c6b39d44228388cbf2", + "revision": "a2422516257e4e38a64945f9", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34361,10 +34361,10 @@ "content": { "type": 1, "value": {}, - "revision": "b0b2f5f5bdf044a6af627715", + "revision": "56cad1f54a6d45918a4aec0b", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34376,10 +34376,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "3b593913d3f64e129715d3c9", + "revision": "18e6a1b95184442b838a46e2", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34400,10 +34400,10 @@ "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "70cf07fc097e4967867e71df", + "revision": "fb4d39b1e1c2409986b1c194", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34411,10 +34411,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "dfcabfe399804488bd925441", + "revision": "ff73c0e765f1443bae2f64fb", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34422,10 +34422,10 @@ "content": { "type": 2, "value": {}, - "revision": "802e259583e74891afa7dd08", + "revision": "702c293fa37c4ad386b5b9de", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34433,10 +34433,10 @@ "content": { "type": 1, "value": {}, - "revision": "98089e0a630a47d2987268ec", + "revision": "e987e53fb694423eb6237df3", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34448,10 +34448,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "7d97e5894c644186a103260d", + "revision": "c405433bcf584a7c8dbe45e0", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34472,10 +34472,10 @@ "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "1152a7c804094edd9f26e7b5", + "revision": "2e709a856227457cb9260665", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34483,10 +34483,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "7ffba0ef7c8d4dfebf4613d3", + "revision": "f5e3912abb98495cbf031d10", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34494,10 +34494,10 @@ "content": { "type": 2, "value": {}, - "revision": "477281f44a99420a84cd24f0", + "revision": "240935b796c345c781efdcb3", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036357, + "modified": 1702563036357 } }, { @@ -34505,10 +34505,10 @@ "content": { "type": 1, "value": {}, - "revision": "236bdfcdd11545f08e4bf85a", + "revision": "04e6819a157247b7b48750d0", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34520,10 +34520,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "cba77b5f6d6e4452856d250c", + "revision": "ceb2c38f07e14e74845743e8", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34544,10 +34544,10 @@ "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "e516b030a4f0423fa292549a", + "revision": "ad87dae489d046049e4d0840", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34555,10 +34555,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "e627c415789749ee80b1d017", + "revision": "66c3c69a169d44faaa52b399", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34566,10 +34566,10 @@ "content": { "type": 2, "value": {}, - "revision": "ebba1db72dbb4008943e7d07", + "revision": "0662a8a5830a4e74a85bc2eb", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34577,10 +34577,10 @@ "content": { "type": 1, "value": {}, - "revision": "76dc110d30ef4f64898539eb", + "revision": "b89d20aceee54bee9ce072b9", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34592,10 +34592,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "3b2139e47b0c481886e76886", + "revision": "411c97f26b57418fba60834f", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34616,10 +34616,10 @@ "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "b1b7be2d9da44f7f9397cad2", + "revision": "c4453b63c9a04555af8a9b1d", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34627,10 +34627,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "8a94b41ff63748b392249989", + "revision": "f787d059568841c99831d670", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34638,10 +34638,10 @@ "content": { "type": 2, "value": {}, - "revision": "3fe22283f58e4940839a9069", + "revision": "9ca5924c134d4c73b00b6b78", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34649,10 +34649,10 @@ "content": { "type": 1, "value": {}, - "revision": "cc72fdce83df441fab1b7996", + "revision": "3fa9e3e8c77d4f9785532792", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34664,10 +34664,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "98eefd1b66a24895aafd7435", + "revision": "dda5240b396845dfa61fb48b", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34688,10 +34688,10 @@ "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "9d860c06a8b0412a995f574c", + "revision": "b664b14a759244d38669f8f9", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34699,10 +34699,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "f6b0503c8e244249a06e61c3", + "revision": "dbf3ed956b5c4f438b6abc8a", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34710,10 +34710,10 @@ "content": { "type": 2, "value": {}, - "revision": "57fa23679bff47df80a04077", + "revision": "fb47a2d98f09489998d1d82a", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34721,10 +34721,10 @@ "content": { "type": 1, "value": {}, - "revision": "b988a2ebfe3e4f4bb7aa5945", + "revision": "e740b13939e44ed0a78dff08", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34736,10 +34736,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "6247f99b54e44cbcb6b1e646", + "revision": "a603c4148a504378b2200069", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34760,10 +34760,10 @@ "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "9af353ffa99f4ba0a30d742f", + "revision": "b330b3db0d964539b07d08e0", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34771,10 +34771,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "ca0a4160afe7495fb4534f4e", + "revision": "bce3eccf5c624062881c3e71", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34782,10 +34782,10 @@ "content": { "type": 2, "value": {}, - "revision": "1de5af0e30af4da183808b68", + "revision": "06956c8931784f10bae2826e", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34793,10 +34793,10 @@ "content": { "type": 1, "value": {}, - "revision": "d65e1004ab024fb58d8027ba", + "revision": "5694930af338499e8cf80b4c", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34808,10 +34808,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "4674baace55b4684b5fb486c", + "revision": "959af4c204134fe898513d36", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34832,10 +34832,10 @@ "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "c790599f67774356aca47893", + "revision": "bec32b76744a421ba77033c4", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34843,10 +34843,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "87257a6a91984c998e15131b", + "revision": "41a227ea392b4babbef5fb3a", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34854,10 +34854,10 @@ "content": { "type": 2, "value": {}, - "revision": "790998919dff45329dcede31", + "revision": "5ceebfdc260a478fa627b4d8", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34865,10 +34865,10 @@ "content": { "type": 1, "value": {}, - "revision": "6adf812f062e435cae1a2927", + "revision": "fdfada67e0264d48922d405a", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34880,10 +34880,10 @@ "label": "Em 11 parcela(s) 33.00%", "amount": 3300 }, - "revision": "d5e05b7b09be4413bd9119ec", + "revision": "4175784e88f74262819e3dce", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34904,10 +34904,10 @@ "history_id": 1683078539834, "currency_id": "BRL" }, - "revision": "c39fc4c6c63243c59d911477", + "revision": "46b8b9a5970c494986ed45e7", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34915,10 +34915,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0331.9555.3972.0461-00 de um empréstimo parcelado em 11 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 13.300,00", - "revision": "4dfe408333b04d23b9abc9f1", + "revision": "4bdc8ecf8eef4da88ffec26f", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34926,10 +34926,10 @@ "content": { "type": 2, "value": {}, - "revision": "5980562bc42a41ad98d30231", + "revision": "c65ab165fbc14ee8b52ca687", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34937,10 +34937,10 @@ "content": { "type": 1, "value": {}, - "revision": "bdfec54f702f4d81a395617c", + "revision": "fbfc535b23ae4e689412e421", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34948,10 +34948,10 @@ "content": { "type": 1, "value": {}, - "revision": "bf531d5c05b1402497974f34", + "revision": "3197b1d515bc4797a3b1232b", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34970,10 +34970,10 @@ "value": 1679793429922 } }, - "revision": "43375e831d16447ab7dd29e0", + "revision": "ea7cd239235043309b2ae623", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -34990,10 +34990,10 @@ "value": 1697338800000 } }, - "revision": "a44fd8f71cdc42d6a0ed2a71", + "revision": "894b6fa2567f409b8084392f", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35005,10 +35005,10 @@ "symbol": "IVIP", "value": 3.88 }, - "revision": "3b6c320339e44c3bb8eacb51", + "revision": "3b1c2160ff584c5583b87394", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35016,10 +35016,10 @@ "content": { "type": 1, "value": {}, - "revision": "4c93da07aaee4cf694b2d7d3", + "revision": "adf3f753a4d5443e9652c29e", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35029,10 +35029,10 @@ "value": { "costs": {} }, - "revision": "68b2ff79d13e42118cc90506", + "revision": "e93361ecfa874fcc9c5e198f", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35074,10 +35074,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d20802972bea4681a67437e0", + "revision": "78086bbbb50e456b9bbeea26", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35085,10 +35085,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", - "revision": "aeddc802ee32487199df0088", + "revision": "365190e1e8954cd9bfb65510", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35098,10 +35098,10 @@ "value": { "costs": {} }, - "revision": "7822dc00b34c46c98a2ed291", + "revision": "9059a44fa42f4b1f8cabdbfc", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35143,10 +35143,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "7f5ca6a8f7504198a6dcad2e", + "revision": "071e2f5b311940f29cd8e094", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35154,10 +35154,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", - "revision": "fa5013a1c7f04c3689532448", + "revision": "693777427d064d9199b7a097", "revision_nr": 1, - "created": 1701809344888, - "modified": 1701809344888 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35177,10 +35177,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "cfa471a52605431b985770dd", + "revision": "125eaa5a7068439d862e418f", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35216,10 +35216,10 @@ "history_id": 1689683815156, "description": "Compra de 25.268,00 IVIP por 40,00 BRL" }, - "revision": "77410c0a000b4d05be07d921", + "revision": "f19a670f6e134272bcc7157c", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35229,10 +35229,10 @@ "value": { "costs": {} }, - "revision": "a80404a4b2c64abca6e2b58d", + "revision": "b69b9a6a7c974d868b35e74b", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35274,10 +35274,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "4d541094f9c74ab89ccb05c2", + "revision": "65262bc575ad43e49326d4a3", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35285,10 +35285,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0353.7237.9621.1269-36", - "revision": "239873c853664727877c7cae", + "revision": "e54e9e96f1a94119a064e764", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35308,10 +35308,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "b69978f40e2b4eb888abb160", + "revision": "98c6a59730c3429f9b131a1e", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35347,10 +35347,10 @@ "history_id": 1689695209900, "description": "Compra de 12.869,00 IVIP por 20,00 BRL" }, - "revision": "ad7b877a70234c83a3be4e5e", + "revision": "40ebfe0b89e7420ba151e428", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35358,10 +35358,10 @@ "content": { "type": 1, "value": {}, - "revision": "8389b56ba43e4dd3ad33b5a5", + "revision": "e6bc4a5c7a1648e1b9078942", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35369,10 +35369,10 @@ "content": { "type": 1, "value": {}, - "revision": "02e20cf1ed8d45f19d77b6eb", + "revision": "819c62ef7d814c8ab4fd096c", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35383,10 +35383,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "08678f0944c646ec8a19a54d", + "revision": "a584f767d9ca485cada1950b", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35403,10 +35403,10 @@ "value": 1697425200000 } }, - "revision": "ee8b1778fd8d4b5885c91bf1", + "revision": "8c0cedfa8e1944028cfa58cc", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35414,10 +35414,10 @@ "content": { "type": 1, "value": {}, - "revision": "4c7563ede8184022bc11a728", + "revision": "04f5599411234e77bc5eace9", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35425,10 +35425,10 @@ "content": { "type": 1, "value": {}, - "revision": "5206f83d019d4d908e0c571a", + "revision": "316d1d58643f4541ab0f4c6b", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35436,10 +35436,10 @@ "content": { "type": 1, "value": {}, - "revision": "5b0789d49f2f4457be8fd6dc", + "revision": "bfdce0b471eb413d96b60e33", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35450,10 +35450,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "73531de617aa4632a07c6087", + "revision": "ecd960b19fe647408e432bab", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35466,10 +35466,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "f51d386cefda4253a63a0d00", + "revision": "74bab24e41c345a9aefb1ad3", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35481,10 +35481,10 @@ "symbol": "IVIP", "value": 6.74 }, - "revision": "d5b62e16e9eb40bf8ae88cd4", + "revision": "0ade26e0fe2946a19d3fa59b", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35492,10 +35492,10 @@ "content": { "type": 1, "value": {}, - "revision": "753566504deb49779b3284d2", + "revision": "290f6e0153f644f6b4cad461", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35505,10 +35505,10 @@ "value": { "costs": {} }, - "revision": "16989d0ccd314215a96b0529", + "revision": "df71468d4a9b4f4e81741612", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35540,10 +35540,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "dedb7b8dc92e47f9b06757d2", + "revision": "6dd28ad6f98e44f4b824813e", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35551,10 +35551,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "0d816729be5945768df181ba", + "revision": "5219daf1473b4eccbc7f13c3", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35564,10 +35564,10 @@ "value": { "costs": {} }, - "revision": "026b0ba34c534135ac850951", + "revision": "cd809a7047a04781bd2e14b2", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35609,10 +35609,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "639d4c128fb648d3a15986b1", + "revision": "1608663b2e664efa9bfd1691", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35620,10 +35620,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "48aab6acc3e5470ba57b23bc", + "revision": "1022aa37a404487c988ee1cd", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35643,10 +35643,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "8606cd647df544578be8c9e2", + "revision": "7c5fcf4b42224540bfa82003", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35682,10 +35682,10 @@ "history_id": 1689258185846, "description": "Compra de 18.682,00 IVIP por 50,00 BRL" }, - "revision": "05faa6ec7092439ea2bba7d1", + "revision": "42d1448f3c7e476f9b91e9f1", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35695,10 +35695,10 @@ "value": { "costs": {} }, - "revision": "d9429a9a4cf94c86ada338ac", + "revision": "4761afb237de45d3abbbffbe", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35730,10 +35730,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "67beab3bdb2f4a7ca7409ea2", + "revision": "412dd37f666f442aa231c31b", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35741,10 +35741,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "435a939d64804c11ab2111f9", + "revision": "ca9578f614b245019e350563", "revision_nr": 1, - "created": 1701809344889, - "modified": 1701809344889 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35754,10 +35754,10 @@ "value": { "costs": {} }, - "revision": "a221b6f3270942f18b8fd2a4", + "revision": "10eb7e012781464c86fe2d44", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35799,10 +35799,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "65f81b5c7ffb4c618f9e9525", + "revision": "11c5b2d4102048f8b66d1ffc", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35810,10 +35810,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "b2b29a2162174e4c843b4cd6", + "revision": "33d7ef2871ed45d68734bd12", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35823,10 +35823,10 @@ "value": { "costs": {} }, - "revision": "09faf77e4dd84fd7aa788b13", + "revision": "6693ffab2d0f4767a3c630ac", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35858,10 +35858,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "48ef5b98e3f6446bbca293e4", + "revision": "25097f9a3ed2454ba7990465", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35869,10 +35869,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "20a8a93198324259924c9d3c", + "revision": "7538b437bee046f893a6633a", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35892,10 +35892,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "f084680e102746de93863cc3", + "revision": "962d653eb5f44744a0ccc732", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35931,10 +35931,10 @@ "history_id": 1689614163424, "description": "Compra de 12.478,00 IVIP por 20,00 BRL" }, - "revision": "616d39cb121644e88e9fb91e", + "revision": "bf08ca051e25428c9f552a0e", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35952,10 +35952,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b5b026f1d1bb4495bfedaf41", + "revision": "23c7f469fdae42aab6262816", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -35963,10 +35963,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1690673977679", - "revision": "4cb0d6f3b4d34a5dbabe2173", + "revision": "974a7d046232468b92a8e014", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -36000,10 +36000,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "1533288a5a9d45cfbf38ee03", + "revision": "26e951924f8d4d1ba91b8ae0", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -36011,10 +36011,10 @@ "content": { "type": 5, "value": "Investimento de 31.160,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/29/2023", - "revision": "2fb62842dc0c4caea25d34f6", + "revision": "a954880be07e4fbda7f8cdf0", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -36028,10 +36028,10 @@ "value": 1693266063331 } }, - "revision": "f8d5ee9a636f4f9ab92c7b2a", + "revision": "c0627857c6a548828ff70cf6", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -36049,10 +36049,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "13b5850b533641d7bf41eeb7", + "revision": "d9a8520970184dd78d34351e", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36060,10 +36060,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1690674063331", - "revision": "a57114fb1d284b5e829e3b72", + "revision": "877170f36a1848f4bb0cac94", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36093,10 +36093,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "a76ea73bd9a04119adb05dd0", + "revision": "a12222a32972447383eb2db0", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36104,10 +36104,10 @@ "content": { "type": 5, "value": "Deposito de um valor 50,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "065770d5998940598c1cbb35", + "revision": "ab8028ec42d3406e9930630d", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036358, + "modified": 1702563036358 } }, { @@ -36121,10 +36121,10 @@ "value": 1694472568160 } }, - "revision": "3956bc47d5e8474f86b56a15", + "revision": "5117ea24568f4c45ab557806", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36142,10 +36142,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "bfd70c6ccaa44bba9eead35d", + "revision": "8830e04cdf2d405898e58dd8", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36153,10 +36153,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1691880568161", - "revision": "21f57eb42b48446aa94aab7f", + "revision": "d9c2bae37253483585361602", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36186,10 +36186,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "76f7092510214567b0fa87a5", + "revision": "04c34e78b56f4dce925c37bb", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36197,10 +36197,10 @@ "content": { "type": 5, "value": "Deposito de um valor 20,00 para a carteira iVip 0367.8180.5197.0763-00", - "revision": "e04cb66b04de465bb06c0b8f", + "revision": "199c5ce735d24307b52798e5", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36218,10 +36218,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "e94a3f67f2d7473696caf708", + "revision": "eb94cb88b0c240d6b49c429b", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36229,10 +36229,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/036781805197076300/history/1693353168151", - "revision": "64aca72d9f974c268bce269f", + "revision": "0448f3a3317f49a79e779e9d", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36266,10 +36266,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "0d7fdd6af4044353a0226c77", + "revision": "58c290c80e814fa988830947", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36277,10 +36277,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 31.160,00 IVIP com um rendimento de +623,2 IVIP (2,00%) - Y12XDT27", - "revision": "911ea461c1294eb6af7119dd", + "revision": "47854bd7efe247a294160738", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36288,10 +36288,10 @@ "content": { "type": 1, "value": {}, - "revision": "9bb002d9e436409f94f19191", + "revision": "e88e422d21b141fa97cfb2bf", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36299,10 +36299,10 @@ "content": { "type": 1, "value": {}, - "revision": "a3701d290a484afeb01aeb4f", + "revision": "1a5d6bca88024cf3a8c787c9", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36313,10 +36313,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "a2b2960242e74e5c8a13e520", + "revision": "d0c6d54ee3e6481597c970eb", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36333,10 +36333,10 @@ "value": 1696215600000 } }, - "revision": "7fe9d0f87e98498db19e50e0", + "revision": "04185b4491e541959d7cc585", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36344,10 +36344,10 @@ "content": { "type": 1, "value": {}, - "revision": "295abbd2c0fa4d58a7cd2acd", + "revision": "4120296f178143f78e2b04e6", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36355,10 +36355,10 @@ "content": { "type": 1, "value": {}, - "revision": "81a4b92ebea5428d960201b7", + "revision": "817c7fd7013c40faa6280495", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36371,10 +36371,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "8b474b1330914bda9006e235", + "revision": "8dd1a37b39454bd399ffa4c9", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36386,10 +36386,10 @@ "symbol": "IVIP", "value": 16.044 }, - "revision": "535da9a354634344b69764e8", + "revision": "355e694b5c7a4ab8b055d324", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36397,10 +36397,10 @@ "content": { "type": 1, "value": {}, - "revision": "306ac5a1ba3d4a369c82de81", + "revision": "ceea7baf250c42078fbc9842", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36414,10 +36414,10 @@ "value": 1699111958190 } }, - "revision": "431a295262f346a2a817b128", + "revision": "35548756d86e4cf48a823745", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36435,10 +36435,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1d39af8ba8fa4df1bfde4676", + "revision": "0d43952d4ad34dfe8098beba", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36446,10 +36446,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696519958190", - "revision": "8d645006962a48c694521273", + "revision": "a788641472894e20a72a6588", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36480,10 +36480,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "aa9b09d764904393ba81f58c", + "revision": "6e0f3e4eb45343fb80e00acd", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36491,10 +36491,10 @@ "content": { "type": 5, "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0397.3472.1775.6545-10", - "revision": "cb3a678c759643f0bac73cf7", + "revision": "4aba1aa652ef4e80a4838875", "revision_nr": 1, - "created": 1701809344890, - "modified": 1701809344890 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36508,10 +36508,10 @@ "value": 1699133572533 } }, - "revision": "d0c5c02250d84356aa7d908c", + "revision": "d7010b5fb1f94e45a243d68d", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36529,10 +36529,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "63a12dc50625485e8b319250", + "revision": "12c087001c6a4977aa49fc42", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36540,10 +36540,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696541572533", - "revision": "7a71dbe587ce42819bea2af0", + "revision": "8aaca3ba194d457facc5015c", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36574,10 +36574,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "f105d9c8b58440dcb195da0b", + "revision": "ceb66f63a0854d44841414c4", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36585,10 +36585,10 @@ "content": { "type": 5, "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", - "revision": "76a099d8478549058bcfcd83", + "revision": "8d5c1cba411245e8be190133", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36602,10 +36602,10 @@ "value": 1699177584658 } }, - "revision": "0a47be595aa542efbc13b51c", + "revision": "090094cfc2db48a88bf2e8cb", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36623,10 +36623,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b14b6c1528114e2f924e7661", + "revision": "195ea434a84c40bb987acba7", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36634,10 +36634,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696585584658", - "revision": "b07a7e451ea44accba2e6f53", + "revision": "56356de0d53448b1a7ea8e54", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36678,10 +36678,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "51d88189738d44b5b36ba185", + "revision": "dc3ab792e75f41ae9ed969cd", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36689,10 +36689,10 @@ "content": { "type": 5, "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", - "revision": "1cac5dcd1bed4ed1a48fea85", + "revision": "ed3cd65bdd9a48ddb8a1d649", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36710,10 +36710,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d71807ceedda45a0b07973a5", + "revision": "c8cb26e08686481682e0de37", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36721,10 +36721,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696706580251", - "revision": "3c89f685a08248f8adf7a781", + "revision": "d788abee7faf427e9b751e9f", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36760,10 +36760,10 @@ "description": "Compra de 70.156,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "e085102f55f64aab8473789a", + "revision": "fed79eef6c8040acb92ed9c6", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36777,10 +36777,10 @@ "value": 1699487170002 } }, - "revision": "1899132ac14748c9a1a5bdf7", + "revision": "3ffeb494d80f4cfc80436c0b", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36798,10 +36798,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d010fb1c4a1045d3a64fa668", + "revision": "afd0ef8d2da644dab7f31105", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36809,10 +36809,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696895170006", - "revision": "14032880299e4585bc3c4d36", + "revision": "6fac0ec58341469aa922964f", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36853,10 +36853,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "85554af583aa40aca8d92f51", + "revision": "fe00b309937842f5a0b82039", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36864,10 +36864,10 @@ "content": { "type": 5, "value": "Deposito de um valor 50,00 BRL para a carteira iVip 0397.3472.1775.6545-10", - "revision": "5b22c0b31b5a43d3969c5a02", + "revision": "c2177782e2644af696e10da1", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36885,10 +36885,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "3acd3e9eadf84ed682c9adc5", + "revision": "64c2d939c6354685b433f1a7", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36896,10 +36896,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/039734721775654510/history/1696951453164", - "revision": "571f4dc582e24facb59e170b", + "revision": "17d18b9949e64f7c9f566165", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36935,10 +36935,10 @@ "description": "Compra de 80.325,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "60ce498e4d2e4052bb7e46b8", + "revision": "db9cc932d5a24e84b392ad04", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36946,10 +36946,10 @@ "content": { "type": 1, "value": {}, - "revision": "8c316c20872347be9f6bf4db", + "revision": "bcc596f36f324ab9b9daf7a8", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36957,10 +36957,10 @@ "content": { "type": 1, "value": {}, - "revision": "38c11a568a1a470f9ebe2a83", + "revision": "0f179122f2e34a2fa9054f0a", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36971,10 +36971,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "bf3fb6b3f36c4b45942e01d6", + "revision": "48f3a3003c984db19abac1e2", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -36990,10 +36990,10 @@ "value": 1697425200000 } }, - "revision": "157da17ad48d45b2b3c1ff28", + "revision": "72a575f7808243fa91aac673", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37001,10 +37001,10 @@ "content": { "type": 1, "value": {}, - "revision": "5820f0c08ae04ee78955629e", + "revision": "81796dc3629645108255fbd3", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37012,10 +37012,10 @@ "content": { "type": 1, "value": {}, - "revision": "23923e508185444f8399a19b", + "revision": "a846a6b416f64258b0e38b23", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37028,10 +37028,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "aaad308a1e3f48bb85e3811a", + "revision": "9fa497c46e364d26b6721aea", "revision_nr": 1, - "created": 1701809344891, - "modified": 1701809344891 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37043,10 +37043,10 @@ "label": "Taxa de 0.99%", "amount": 0.9900000000000001 }, - "revision": "f2f9123b70b642efad889caa", + "revision": "793ed789e39947bd9d20b844", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37054,10 +37054,10 @@ "content": { "type": 1, "value": {}, - "revision": "b412677bcc2541089c12fe21", + "revision": "59dd96ec3ad24d3396ff369d", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37067,10 +37067,10 @@ "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "53d406a4a5c14ee29fe0dfde", + "revision": "78f698d724b9441e8f44f209", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37078,10 +37078,10 @@ "content": { "type": 1, "value": {}, - "revision": "60fe0043e5414cb6889abea3", + "revision": "961080b8e0964fc6a07e1a75", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37095,10 +37095,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "6a1192ab980c49a48147bd39", + "revision": "faede0b9fc304fc094a737e6", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37106,10 +37106,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/payments/55838306631/ticket?caller_id=1310149122&hash=c84a0406-1525-4894-8c96-d700cf2da43d", - "revision": "74884f9bb99346e78d3d02f1", + "revision": "81a6ae038fc74c5bb6c5e7c4", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37117,10 +37117,10 @@ "content": { "type": 5, "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558383066316304189E", - "revision": "00d8e78d602f41ef9981edef", + "revision": "40710654e2534c7a93ed3a42", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37128,10 +37128,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIwElEQVR42u3dW67rNgwFUM3A85+lZ+CiRYsTi5ty+gDaWisfBzfXr+X8EaS2xvU/+pyDlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlvaf1475c/z+fz9Hp6t/O+XXm4zpX58n/xytD/rt6HReYtDS0tLS0tLS0tLS0m6iPQLlhvq5+3Sn35+zJk+8n8v+OPB5l6SipaWlpaWlpaWlpaXdQPtZQE7G815FnvdHTFVfuqKpItNzC4OWlpaWlpaWlpaWlnZb7Y9ses6Vj6a3mm6V6sTyh5aWlpaWlpaWlpaWlvZ+6SeqbcmdZWRyeqHULZxOpqWlpaWlpaWlpaWl3Vubi7vpsdNzahGYxjbTa0yy9fAnLS0tLS0tLS0tLS3t+7UppeRf+PM3MlVoaWlpaWlpaWlpaWn/z9r1pxR8q8Vx7Yjm5EnpkYsPLS0tLS0tLS0tLS3t27VpaPLs+nfNore2Fi0vdJvinMYxc7OPlpaWlpaWlpaWlpb23dqUqZ/y+NMyuUWxWN+vLLGro5w55J+WlpaWlpaWlpaWlnYDbboq5UOmwvCL0Mn8Vs2tQvIkLS0tLS0tLS0tLS3tm7Vt2fh598dAyMWzk/sM+SdX30GkpaWlpaWlpaWlpaV9s/Yz1LGG8k+5/eWyM/xpj9Y5zfJjXLS0tLS0tLS0tLS0tNtp03K1ttWW2nQF0GyAXWrRVJBmPC0tLS0tLS0tLS0t7Zu1U+2YSro8JVlHKr9q4k1r4NIqvOOb3dZoaWlpaWlpaWlpaWnfoi0tuSvsUD0Wrbt02RRkkuJLyv+NgKelpaWlpaWlpaWlpd1CO9Vwj4EiZTbyDNopanJqBU4/xs1Y3LS0tLS0tLS0tLS0tO/WlttdXb9t3MNIajduPYQ5tf1K5v8I05m0tLS0tLS0tLS0tLRbaOvCtfRJJWLpEa7TTKZHnnk685vd1mhpaWlpaWlpaWlpaV+kzVXfKFtXlzqxjl6WLdea4Mg8sXmUP7S0tLS0tLS0tLS0tDtppxJx3AHJk0Yv1/Elx1M/sOy7RktLS0tLS0tLS0tLu4W2NuJSi6+si7vCXGVqFNYi9fMNmnK1m7qkpaWlpaWlpaWlpaV9o/Ysi9RyETh92r3YVgvcuv7dfJfnmpeWlpaWlpaWlpaWlvY92rbqq1tXT0kjix0BJveRD7RF5UPNS0tLS0tLS0tLS0tL+yJtTnEcnewsGf2lzzfC6za80je8vkuPpKWlpaWlpaWlpaWlfZE2l351zVrbzitf6+Rknthsv54P3T1aWlpaWlpaWlpaWtpXaafdqNuycTq5FHxnCJNM7by08i0FTF60tLS0tLS0tLS0tLTbaJsZyvVquBT0WOrOx/5d0aafhZaWlpaWlpaWlpaWdgNtiiCZFKXMO7sXOrqAknT78+nhtLS0tLS0tLS0tLS079ceYXwyrWO75qbbyKOXdSFcKi/Tj1HKS1paWlpaWlpaWlpa2i20zT3DqrRR9sNuVs2V5W+3a6eXTEn/tLS0tLS0tLS0tLS0+2hTMkjp3zUL3HIr8DaxuVj+lp47HjNVaGlpaWlpaWlpaWlp36b9yjNCJTgFj4x7eXl1gZDncuryeNgFm5aWlpaWlpaWlpaW9n3aqelWbnc978B2hfHJo4svGWOk2c3CuGhpaWlpaWlpaWlpaXfSJuhULJaoklHySkrZ2LzaUzDKcy+SlpaWlpaWlpaWlpb2VdpKbrNJ0tK5z6/rVmA7YZn+RUtLS0tLS0tLS0tLu4+23mQagWxPWdwgdfKushAuT10ej71IWlpaWlpaWlpaWlraV2lTKTnVjkf+miMkx2cTb7pznrpMpSQtLS0tLS0tLS0tLe0u2kw5u7iRK2/DlkJGcmjJ1W0kMEajoqWlpaWlpaWlpaWl3UJ7ftmwO/LXMqy5Wv5WytVV4AktLS0tLS0tLS0tLe0W2sVwZTM+mXJGUuBJiTlp3+C6dwZpaWlpaWlpaWlpaWn30TZFYNmwum3i1fZgGq586hGefVYlLS0tLS0tLS0tLS3tm7WtJ6f1X12QSdPEm0Yv20HPchdaWlpaWlpaWlpaWtr9tOtdq9Nua9OBKdo/D2vW5JI8hHnR0tLS0tLS0tLS0tLupJ3unkYlS8jICrqY52y2x05BlLS0tLS0tLS0tLS0tJtob2XjNCWZlqt9FoarGP+Mr+/8XFTS0tLS0tLS0tLS0tK+W9vuRp3SR6be37GY08y5lFcZ4Jx+m9BLpKWlpaWlpaWlpaWlfbP2qbF3ZVl+q+seEnmWPt9TZ7BuzUZLS0tLS0tLS0tLS/t2bRmuHGUEcnq1DDhz22/6CUq5OrroE1paWlpaWlpaWlpa2n20dUFamrBchEke91e/dQtL6y7tlt0Un7S0tLS0tLS0tLS0tJto2xru7NbAjedokaucnGctp9bi9V13j5aWlpaWlpaWlpaW9kXabKz7pLWzkYshzGkRXXMgl7C0tLS0tLS0tLS0tLSbacfTFte5wrvCHmsVn2TrUpKWlpaWlpaWlpaWlnYfbfp8PuLMo5clgiRVlqlh990+bsupS1paWlpaWlpaWlpa2ldpS2jI48P+cp8vrXy7uo3bDlpaWlpaWlpaWlpa2m20617dGM3JaWe1ZrjyKUzyz1SRtLS0tLS0tLS0tLS0r9SmAjLNRuYu4Cqov23npZ8l1ae0tLS0tLS0tLS0tLR7akfIDRkhAfIKefzNnm3t1OX0us/dPVpaWlpaWlpaWlpa2g20i4j9Jpn/CB2/1M67uunMOsBJS0tLS0tLS0tLS0u7j3aN/5ymXPf+0t7Xq3Vx69V1tLS0tLS0tLS0tLS0m2jr4GNepHbOw5CjnJdW0p3h2qv8DmmJHS0tLS0tLS0tLS0t7Rba//6HlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlvYf0/4CTrnpnMA9aVMAAAAASUVORK5CYII=", - "revision": "43395546704c48eb90cfda38", + "revision": "5029077454c54c8eab5e9498", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37139,10 +37139,10 @@ "content": { "type": 2, "value": {}, - "revision": "4a78812d65294f32ac70a81b", + "revision": "8f010e8253474d5b9bcd5b56", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37175,10 +37175,10 @@ "status_detail": "expired", "currency_id": "BRL" }, - "revision": "73000bdf1eca40cf944256cd", + "revision": "9fb44ed3fa264a9da9c07f93", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37186,10 +37186,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0413.9580.8163.2810-30", - "revision": "ff4c5e3d48e1449e9794a3fa", + "revision": "9c84b7be516145d7b2d64a71", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37201,10 +37201,10 @@ "label": "Taxa de 0.99%", "amount": 0.9900000000000001 }, - "revision": "a3cf15b64b9143fda50c4d2e", + "revision": "a82707c1d1de4822ac572e81", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37212,10 +37212,10 @@ "content": { "type": 1, "value": {}, - "revision": "50844f2fd5874aa2803d17b2", + "revision": "2bd3092398cf4ae8b8ae2c2d", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37225,10 +37225,10 @@ "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "c0cb9ddae4724bbc9cc748f6", + "revision": "168750a789c349099a6f187e", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37236,10 +37236,10 @@ "content": { "type": 1, "value": {}, - "revision": "eb511834c35147f1ab002326", + "revision": "767d733f06504cf08519ecad", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37253,10 +37253,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "3cdf6184dcac463db775a853", + "revision": "989c0f90b2514f2ca9f8d9eb", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37264,10 +37264,10 @@ "content": { "type": 5, "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558382392976304091C", - "revision": "88916c3b8e894013a7f69899", + "revision": "acf1c4881d4449f7a0d334e2", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37275,10 +37275,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/payments/55838239297/ticket?caller_id=1310149122&hash=39da82e9-af89-4bbc-a0a8-066f192eab65", - "revision": "14feb8ff8afe45c3bc55e94c", + "revision": "d06ee90018d748858f656263", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37286,10 +37286,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIu0lEQVR42u3dTW7jOBAGUN5A97+lbqDZDDoW6ysqQTcG0+LzIkgcS3r0rlB/4/qLXuegpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpf3z2jG/jn/f+/rvdHV57yyXfb1XLjt//ajXTgxaWlpaWlpaWlpaWtpNtNM9j/tv5+cjPu90/jrQkclfT54+/Pm5r8saBi0tLS0tLS0tLS0t7RbazwCyGqeI8dM9wgnOEZOHEz49tzBoaWlpaWlpaWlpaWm31V73OHGUXF0JG8+c8Vsk+47wg5aWlpaWlpaWlpaWljak33IQOFVY3l7TcVO2cPowLS0tLS0tLS0tLS3t3toc3E2PbXJ6092n39IxJtm6+JOWlpaWlpaWlpaWlvb92hXgP/zxGzNVaGlpaWlpaWlpaWlp/2bt+tVGgmV8yRGa3pq7pOmRixctLS0tLS0tLS0tLe3btalo8szZuLbprY1Fy4GmoZNXGT+5zO7R0tLS0tLS0tLS0tK+T5tm6j/dPbXEXd2g/jOcOYWhoxvyT0tLS0tLS0tLS0tLu4E2XTUNKCknaPekjTLXJCf72ludqxpRWlpaWlpaWlpaWlrat2kztIZ5n+9dIQd33asujxJ3tlWXaaH2suqSlpaWlpaWlpaWlpb2VdoU9bUllSmT91Sieeb2t+m55eujpaWlpaWlpaWlpaXdTHtL3U1PLAWXTRSZrki8coJU1ElLS0tLS0tLS0tLS7uVNod0aW5Is3ft+0m8ZuhkOdpBS0tLS0tLS0tLS0u7ibY0vTV5vtQcN929nPm8D5Mc9w9P742Ap6WlpaWlpaWlpaWl3UqbB0IeIQistZFFe+T3phO0OcLnKJKWlpaWlpaWlpaWlvY92qaGcjrB501Sb9sRPOMeaNb3ptC0VGfS0tLS0tLS0tLS0tJuoE2Na/ksI8iubi3A7bLc+dYMrPzOtjVaWlpaWlpaWlpaWtoXadNYkrS6OsWJJdA87inDZnDkYujkEdZy09LS0tLS0tLS0tLSbqFNPWu3dN6iXe0qgDy+5FjmA6dkHy0tLS0tLS0tLS0t7T7amogrhY9XuXtJ0x1dojAFqVeYWtmOKqGlpaWlpaWlpaWlpX279rw3qbVB4Mh9cWVP2qrBrcvfzXd5jnlpaWlpaWlpaWlpaWnfo03kafhjTd2lwswSHabazZFnUE5f0EPMS0tLS0tLS0tLS0tL+yLtoq5yGiNylkiwzQzm406JwpHvV8i0tLS0tLS0tLS0tLTv1qa8XOpZKwP9cyIuds2tKzbLn+dDdo+WlpaWlpaWlpaWlvZV2mk8fwkbU/y3CPia2s0mimy3tz3EvLS0tLS0tLS0tLS0tK/Sptu13XBHni+S487H/F0KTafvkJaWlpaWlpaWlpaWdgttGkFS9lw3dZqLAzVtcmlxW/twWlpaWlpaWlpaWlra92vrOP22jy3XS6Zrj3uHXA0v05dRwktaWlpaWlpaWlpaWtottM09Q1faKLWWTddcaX87yx63Ms2kDVxpaWlpaWlpaWlpaWnfrU2TQUr+Lg30PxepwKlNbkrdlRMciwpQWlpaWlpaWlpaWlrat2uT57vGhecKUWSNO8tz845sWlpaWlpaWlpaWlraN2vLSuozBIaju+co66yn0stcidk8vPyXlpaWlpaWlpaWlpZ2P227vzqvx75CdeZVosN2OOVicslBS0tLS0tLS0tLS0u7jbbWX6bZJCUVOOHTArUzZAaPnFUsv9HS0tLS0tLS0tLS0u6jPe/B4hTXjfycFEW229YW38jZhZIXLS0tLS0tLS0tLS3tNtqU55tix7rn+vMEdcJJW5OZqy5TKElLS0tLS0tLS0tLS7uLdrHi+ui0o1RipiAwDy25ukUCYzQqWlpaWlpaWlpaWlraDbQp6stTSo6S3ZvqKp9ShiPO7R9pzAktLS0tLS0tLS0tLe1O2tGtXLty+WSaM5IGnpQxJ+0Jrhyf0tLS0tLS0tLS0tLSvl/bBIFPy9Ka7rV2eH/SLuJOWlpaWlpaWlpaWlraHbVXmAC5jv+mIswaVE6ll22hZ7kLLS0tLS0tLS0tLS3tLto8cf8H29bSZWkgZBo6WX7Lf9LS0tLS0tLS0tLS0r5ZWx7RLEtLRZgtdFHPmdZj10GUzzWitLS0tLS0tLS0tLS0b9F+3jgttk6JvbRZLY05Sfi2xW4RVNLS0tLS0tLS0tLS0r5ZWwokx73fbUrJXRk63a9sZWtkU4z5kykltLS0tLS0tLS0tLS079EeXQ9cihhHmFKSqjPrzJEUVGYBLS0tLS0tLS0tLS3tjtqpIrJZhZ1KKqcwdP0VlHB1dKNPaGlpaWlpaWlpaWlpd9FOZZZpSGS6XcnQXaFXLqXu0rbsJvikpaWlpaWlpaWlpaXdR5sKLtPgyDR4JGUB04dzreX0FVwP2T1aWlpaWlpaWlpaWtr3aVP3Woosn2sja9buHCN9I2mMf17wRktLS0tLS0tLS0tLu492PK247iK8+kq9clW2DiVpaWlpaWlpaWlpaWn30abXer7/lLDLOb00VvLIZZaLSf+0tLS0tLS0tLS0tLQbaNdBYHrYYuN1GjCZqi6r+yc7CGhpaWlpaWlpaWlpaV+mrag8GvLIib3pLqm4crG97cdRJC0tLS0tLS0tLS0t7Su1ZdLIyLWRadL/elB/bnBrTpBDWFpaWlpaWlpaWlpa2h21t2AxRXipy61kC49ctllSfGc4KS0tLS0tLS0tLS0tLe2yOa48Z3qv3YJ9ddWZtZ2OlpaWlpaWlpaWlpZ2H+0a/xkdpgXYU+6v1mm2fXHf3BdAS0tLS0tLS0tLS0v7bm0tfMxNaquIcdH0Vj+X+uemFjtaWlpaWlpaWlpaWtp9tP//Fy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS3tH9P+A9AQYpnhsXB9AAAAAElFTkSuQmCC", - "revision": "6034d0e914bc4811b509ee6b", + "revision": "966c551ea26244d89bcdc378", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37297,10 +37297,10 @@ "content": { "type": 2, "value": {}, - "revision": "15b602daf137425484ab0efc", + "revision": "ec9469877d864510a7815bd1", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37342,10 +37342,10 @@ }, "wasDebited": true }, - "revision": "33d76cbb83ac4b66ad670b61", + "revision": "15b05317c27849f8ba639c3f", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37353,10 +37353,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0413.9580.8163.2810-30", - "revision": "2bb46e486761440490bdfa61", + "revision": "642df6e0a48344b4a76f86eb", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37376,10 +37376,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "f9acf4a560fd4df682be4e69", + "revision": "44a8b85b5e6d432597c19a0a", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37415,10 +37415,10 @@ "history_id": 1679267870429, "description": "Compra de 581846 IVIP por 100 BRL" }, - "revision": "0d7e9969c348407f88310d15", + "revision": "c3610d71ce714dad88b7416f", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036359, + "modified": 1702563036359 } }, { @@ -37428,10 +37428,10 @@ "value": { "costs": {} }, - "revision": "ad31ccb9f20346c6b3d7527b", + "revision": "dc62c2be13f844cbbc0871ed", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37463,10 +37463,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "d3592ab5bce94b3fb3b00d20", + "revision": "425aa0dee1c04caf9cd44574", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37474,10 +37474,10 @@ "content": { "type": 5, "value": "Saque de 581.846,00 IVIP para a carteira 0x37E0fCB4d560966a0564DA6CD53002e1ec1eb98B", - "revision": "0959245e4333426c9dce7d73", + "revision": "1a40d57d007848e3ad11e6cf", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37487,10 +37487,10 @@ "value": { "costs": {} }, - "revision": "6e3d9789cb124a04a4f28b9e", + "revision": "1bdf60681a4e454490bb9bad", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37522,10 +37522,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "4133fc6f95f24301b102eef2", + "revision": "62d7214db6ff44b99e2956a3", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37533,10 +37533,10 @@ "content": { "type": 5, "value": "Saque de 581.846,00 IVIP para a carteira 0x37E0fCB4d560966a0564DA6CD53002e1ec1eb98B", - "revision": "33d6f644c522436b9f8993d8", + "revision": "8e1eedc3424b46d3a135c56f", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37554,10 +37554,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1e7cab568fea45ab8bd22212", + "revision": "c2f2c2c573bb44558ce3899f", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37565,10 +37565,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/041395808163281030/history/1690134068779", - "revision": "f22bd59cb7e84499baa496d5", + "revision": "a3040d23542145af8b88c3d7", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37602,10 +37602,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "c75b22780c214957ac4f07cc", + "revision": "4fe124c2c7dc4d9c8c73dcfb", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37613,10 +37613,10 @@ "content": { "type": 5, "value": "Saque de 400.954,00 IVIP para a carteira 0x8B2f02C31F9ab77685A7c7546e3768e290DD6394", - "revision": "debc373264e848898a58aed3", + "revision": "65d698fbdc8d480b941730d0", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37624,10 +37624,10 @@ "content": { "type": 1, "value": {}, - "revision": "c37691033db048868981aeec", + "revision": "43e55c47c46b4a5cb9dcf245", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37639,10 +37639,10 @@ "symbol": "IVIP", "value": 73.41 }, - "revision": "796c76010d3448bf8b73bdd6", + "revision": "bb781c8775c54019b2d04b5f", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37650,10 +37650,10 @@ "content": { "type": 1, "value": {}, - "revision": "5c640b14a7f743b9a38e6fe4", + "revision": "60bc65930d8c4e6c90e4dda1", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37661,10 +37661,10 @@ "content": { "type": 1, "value": {}, - "revision": "91f3ed1ae4a648518b71ec54", + "revision": "5547feea075a4b37a9489aba", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37675,10 +37675,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "e0fae44f1ec14851a2109664", + "revision": "ced40026f3984c28a750a6c0", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37695,10 +37695,10 @@ "value": 1696993200000 } }, - "revision": "6e5f990432144d22ac25021b", + "revision": "d749bccfa5994daaa1bad802", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37706,10 +37706,10 @@ "content": { "type": 1, "value": {}, - "revision": "2f783878373b46548cd21138", + "revision": "c0a18f2e6bb041c088f0db36", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37719,10 +37719,10 @@ "value": { "costs": {} }, - "revision": "b97c90f02b2f4906aac2d896", + "revision": "616d4f9046c041378bb94933", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37754,10 +37754,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "73d8fca93eb84a78b58b5fc2", + "revision": "e0fdcb36ee6947b89fff6f1c", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37765,10 +37765,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0429.6416.2467.3393-60", - "revision": "73cb061d38b94284a81b033a", + "revision": "de6100ce9e67461d90608852", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37776,10 +37776,10 @@ "content": { "type": 1, "value": {}, - "revision": "de26e8e964504a48afe975d7", + "revision": "b06330884e3f44d0826c6bc5", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37787,10 +37787,10 @@ "content": { "type": 1, "value": {}, - "revision": "cb19b597711b469b9893a32c", + "revision": "0e330d30d8a948bdbcf1cb0e", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37801,10 +37801,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "b7486dbb93fb4477b52feace", + "revision": "a49721cc6a814115927a241d", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37817,10 +37817,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "796c5d8d12684e32a5ac23dc", + "revision": "3b3374943e1a4058af77e62c", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37832,10 +37832,10 @@ "symbol": "IVIP", "value": 13.81 }, - "revision": "db8ff807d4fc491aa33abf16", + "revision": "bf701a63ebb54d1abb350fd1", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37843,10 +37843,10 @@ "content": { "type": 1, "value": {}, - "revision": "c251becd2b1f4fe7a63e0440", + "revision": "bf728fb0410d4ab4a505db8f", "revision_nr": 1, - "created": 1701809344892, - "modified": 1701809344892 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37860,10 +37860,10 @@ "value": 1698810290801 } }, - "revision": "ddd7caa1b82642c0b5a990d2", + "revision": "6a0a07b5df5444979e8fbd3d", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37881,10 +37881,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "07add11aa2b74fc2a411d923", + "revision": "ceb1715eea26477e8ca80e5b", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37892,10 +37892,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696218290801", - "revision": "432ac93cad1a496f9e999c20", + "revision": "aeda3f3c9a1042168d5ed667", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37926,10 +37926,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "673e5c1836eb41d4972db825", + "revision": "5fbb51db39174ffd9a375824", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37937,10 +37937,10 @@ "content": { "type": 5, "value": "Deposito de um valor 150,00 BRL para a carteira iVip 0441.0726.0739.8660-40", - "revision": "046cd63f93454550af3f75b6", + "revision": "8bd7f9e3aa4149a2899938d5", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37954,10 +37954,10 @@ "value": 1699104289783 } }, - "revision": "139379a521684598bde95a09", + "revision": "aa306996ef05403d82e86365", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37975,10 +37975,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "bea3b1618b6844a89044aec7", + "revision": "5f2da3230cbe44eda3854f4b", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -37986,10 +37986,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696512289784", - "revision": "0da9f68abf694aa7be7b76b7", + "revision": "ae4ff149c0ac4cc181cc37cc", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38020,10 +38020,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "0915f2ed2984408b9ae8b1e4", + "revision": "ff4b97ff55314d6581aafd44", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38031,10 +38031,10 @@ "content": { "type": 5, "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0441.0726.0739.8660-40", - "revision": "5bf8cb26b9a14156ba937ffe", + "revision": "333674f3b4db47a29863ed3e", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38048,10 +38048,10 @@ "value": 1699277069126 } }, - "revision": "5b5d67fa99d942dea347f8e1", + "revision": "dfedcf77562048b08966e4bb", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38069,10 +38069,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "dd0a41e155044d14bd5375ce", + "revision": "61cfdeff776f459492115b14", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38080,10 +38080,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696685069127", - "revision": "54c2678034944f3581d8a041", + "revision": "33af766ca9ec4c2588e27808", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38124,10 +38124,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "23ffe35c625f448d920f8946", + "revision": "8e01ebb73f2d4dc0aa8faf84", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38135,10 +38135,10 @@ "content": { "type": 5, "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0441.0726.0739.8660-40", - "revision": "86b6616ec0f046959389eb28", + "revision": "09b04352c26f450da6e73cb6", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38156,10 +38156,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "bf9854a092014ccca816563e", + "revision": "0f060f2d61ef4833a3b1a24d", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38167,10 +38167,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/044107260739866040/history/1696690479419", - "revision": "96da4e92d7834f26b02df48e", + "revision": "b3becf2d58aa4ca08d01060c", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38206,10 +38206,10 @@ "description": "Compra de 127.146,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "400dc632169a4a8296e55937", + "revision": "35e642873b4742e68780c8a5", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38217,10 +38217,10 @@ "content": { "type": 1, "value": {}, - "revision": "14bee590c0884fef9e201d77", + "revision": "d0aa1e4806e54c418bda76d1", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38228,10 +38228,10 @@ "content": { "type": 1, "value": {}, - "revision": "27964bb9253348959c43d54f", + "revision": "deb67340669445efad991627", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38242,10 +38242,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "3e9ce28321084a7bb328bd3a", + "revision": "b355095cea614428b6b25e0c", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38261,10 +38261,10 @@ "value": 1696993200000 } }, - "revision": "d0bd46e1c74b41eb9209856a", + "revision": "8dd8b52f147e4222ae81c639", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38272,10 +38272,10 @@ "content": { "type": 1, "value": {}, - "revision": "d3c7e6e53092426888fc9d72", + "revision": "f56517e7a9564c2fac9775f9", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38285,10 +38285,10 @@ "value": { "costs": {} }, - "revision": "aa6190cf84244de587ba950b", + "revision": "cff572803e4e404bb5cbcecc", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38320,10 +38320,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "064adea7533f496ea516ce48", + "revision": "a3ea0a58238942649dae5550", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38331,10 +38331,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0443.9842.9081.9756-60", - "revision": "c06d3e5662aa435bad49be17", + "revision": "4820bb77a1c54a5392f58549", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38342,10 +38342,10 @@ "content": { "type": 1, "value": {}, - "revision": "7c0b0ee053e647a3a641c13c", + "revision": "5c32323bb45e40c5af9f5ab1", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38358,10 +38358,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "2c39c5cb22c74910bdba7ebd", + "revision": "8b108db18937472faaa68b67", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38373,10 +38373,10 @@ "symbol": "IVIP", "value": 0.094 }, - "revision": "313363fcd75e439c92c5a075", + "revision": "9daea3a8bc934b0dbab7c90c", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38384,10 +38384,10 @@ "content": { "type": 1, "value": {}, - "revision": "cdfec88dfd6147e29e4a8f92", + "revision": "5d5d32bdfb6747a3b1e1887c", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38397,10 +38397,10 @@ "value": { "costs": {} }, - "revision": "d8d2cfe730124c10a1038c82", + "revision": "dc89ebe480404843869d731a", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38442,10 +38442,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "fbe26fb90ce94989a6ab3e2b", + "revision": "8a43cde1fe034fbaa3c69c36", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38453,10 +38453,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0451.2281.2371.7113-40", - "revision": "4127d4af4b4c4f26bf16d331", + "revision": "d661c9b44fde4574970f6e3a", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38466,10 +38466,10 @@ "value": { "costs": {} }, - "revision": "b1e2f44964b94929a26720b1", + "revision": "6b19eeda076243ca896c2ff1", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38511,10 +38511,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "816ddadc58d548cfb0fed139", + "revision": "af86bc35c69247259e68b6b9", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38522,10 +38522,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0451.2281.2371.7113-40", - "revision": "1ec681fd50d54720ab077412", + "revision": "91030cf4df5e49228d51bd26", "revision_nr": 1, - "created": 1701809344893, - "modified": 1701809344893 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38545,10 +38545,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "1676313523e34c66b9e1df19", + "revision": "1f158d5ceecd4d079a7c6a93", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38584,10 +38584,10 @@ "history_id": 1679266969508, "description": "Compra de 9610615 IVIP por 1650 BRL" }, - "revision": "3f69a56dffcd45a284c34e5d", + "revision": "b2dca8181c074a69b79aa552", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38607,10 +38607,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "1aa842a76f964e85a81b3dca", + "revision": "f93da48dafcc46868c225459", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38645,10 +38645,10 @@ "currency_id": "IVIPAY", "history_id": 1681517575873 }, - "revision": "7e06402c82e7487f832597a1", + "revision": "b3fd7d138be14447a808dfa6", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38656,10 +38656,10 @@ "content": { "type": 5, "value": "Compra de 1.000,00 IVIPAY por 100,00 IVIP estabilizando US$ 0,00", - "revision": "714bcebe2e1b4fb8ae032bcb", + "revision": "23a04d273fb94e0198424b9c", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38679,10 +38679,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ee60dce6b77a4fdf98d32243", + "revision": "7a520be91d7d4c4d9eceb85d", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38718,10 +38718,10 @@ "history_id": 1685393623279, "description": "Compra de 100,00 IVIP por 1.000,00 IVIPAY" }, - "revision": "d68ca05b3f544617966aadb3", + "revision": "50155b6e4291481280e6633b", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38741,10 +38741,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "95a27fcd8ebf424bb14f0179", + "revision": "abf8f9b2c65840589181cf33", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38778,10 +38778,10 @@ "currency_id": "IVIP", "history_id": 1685666780649 }, - "revision": "48225ec22a46493bb197f864", + "revision": "8a08172a685445a4ae989c81", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38789,10 +38789,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "1393385119714538bc804729", + "revision": "cbd3102ff46c45d8a014b015", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38812,10 +38812,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "52dc8fef3084409b88e81550", + "revision": "e61aa710371b42b69371fc1b", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -38850,10 +38850,10 @@ "history_id": 1688400356570, "wasDebited": true }, - "revision": "e8157b0705ce4f9088d7813b", + "revision": "8d3f965bf73241b4aeab2b3e", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -38861,10 +38861,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "41effc0c96f044a5b09d5b4c", + "revision": "7da5305808984f65af70d0df", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036360, + "modified": 1702563036360 } }, { @@ -38874,10 +38874,10 @@ "value": { "costs": {} }, - "revision": "725002c628db4b728ef7501f", + "revision": "70815b226809461cb9643fb5", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -38919,10 +38919,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "f8c41441ca764720a2f1cff2", + "revision": "0da487130dca421a9d602738", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -38930,10 +38930,10 @@ "content": { "type": 5, "value": "Saque de 9.770.000,00 IVIP para a carteira 0xB33c611edEE4ac91638b50464CB3bfd488551499", - "revision": "b49d9208519e4c4db30318e0", + "revision": "31df1671e1f74eea9bcbe3aa", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -38941,10 +38941,10 @@ "content": { "type": 1, "value": {}, - "revision": "c29017beab3246e09ee748d4", + "revision": "783cd78dffd44cf289492288", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -38952,10 +38952,10 @@ "content": { "type": 1, "value": {}, - "revision": "0f4cd350cc1b422ba6365103", + "revision": "5419408199074379b0b50e5e", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -38974,10 +38974,10 @@ "value": 1680978371033 } }, - "revision": "48e024f0b0234853a6a45c8b", + "revision": "6a3fcdf39d9444fea1e21983", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -38994,10 +38994,10 @@ "value": 1696561200000 } }, - "revision": "52e4748753af4b64a89c423f", + "revision": "d519982f40be4993946e13e3", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39009,10 +39009,10 @@ "symbol": "IVIP", "value": 4296.45 }, - "revision": "946f104484dd4d818ad1092c", + "revision": "514d1361a04f447899df4dc9", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39020,10 +39020,10 @@ "content": { "type": 1, "value": {}, - "revision": "016311ac45954e0aa0a31b4f", + "revision": "92cb9e30a4564cbea92d0f7b", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39033,10 +39033,10 @@ "value": { "costs": {} }, - "revision": "d038f09ab58d448e861145e4", + "revision": "8e8769a47ef647758e11a68d", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39078,10 +39078,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "72e25f99cdb44cdc926b6c23", + "revision": "c25ca3f7fdb644c6873be8c0", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39089,10 +39089,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", - "revision": "402d8169b2364bc884272713", + "revision": "c224b96292394125949aa134", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39112,10 +39112,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "c91d93b951784a26bd9874ac", + "revision": "4bdede7ebd6e455fb0ad54d6", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39151,10 +39151,10 @@ "history_id": 1678207899775, "description": "Compra de 28376575 IVIP por 4000 BRL" }, - "revision": "080abf252b7f42f3a9a8e2c4", + "revision": "3f4805866d144346a75c69e9", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39164,10 +39164,10 @@ "value": { "costs": {} }, - "revision": "69abb42b09d74895a3ee6740", + "revision": "1c4b8461d02043cc9ad09b92", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39209,10 +39209,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "999a94b986c94c958d15fe8a", + "revision": "99587f4ec53444aea70a7fc7", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39220,10 +39220,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", - "revision": "13563319c07740b9b944783f", + "revision": "ec85f8dcdce74d86bac9690a", "revision_nr": 1, - "created": 1701809344894, - "modified": 1701809344894 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39233,10 +39233,10 @@ "value": { "costs": {} }, - "revision": "bc59ab08282248e89bcf5bbb", + "revision": "27ee33d88c154e7b882ebe2a", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39268,10 +39268,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "32576cf6df794624a902fbfd", + "revision": "e6c1c2242411439080a6ed0f", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39279,10 +39279,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 4.000,00 para a carteira iVip 0454.0726.5934.5405-84", - "revision": "aae42cd1cc8d4784b5ef9c97", + "revision": "82592ee40cc34ab5b2dd8ab8", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39302,10 +39302,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "5a264e29a89340c9aa2c368e", + "revision": "54f7a1582fa244999f061fec", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39341,10 +39341,10 @@ "history_id": 1689025604196, "description": "Compra de 3.621.314,00 IVIP por 4.000,00 BRL" }, - "revision": "0e9c0211afac42998c4f1618", + "revision": "67c6f8b4d5dd4e2fb9acb0ea", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39354,10 +39354,10 @@ "value": { "costs": {} }, - "revision": "222be041539b48849cf05f5c", + "revision": "caeb83848bf24ccdb6640046", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39399,10 +39399,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "60759824596648e7a6aa970f", + "revision": "f0c56b9b28ad410f87c32ec3", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39410,10 +39410,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0454.0726.5934.5405-84", - "revision": "8aa4be3021e24fea809e0247", + "revision": "28212ab6fe664e84bb06cae4", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39433,10 +39433,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "2fa6f6cf61c34727b1c9ff58", + "revision": "2acc0ba2ffd540bdae6cd290", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39472,10 +39472,10 @@ "history_id": 1689258784601, "description": "Compra de 773.420,00 IVIP por 2.000,00 BRL" }, - "revision": "6f320d98f31f4b0b8b696a58", + "revision": "b336ac1390ab4b4c8da7c003", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39483,10 +39483,10 @@ "content": { "type": 1, "value": {}, - "revision": "6b279570ed7d4e2699497134", + "revision": "9fcfc0758abf4c8099326f64", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39494,10 +39494,10 @@ "content": { "type": 1, "value": {}, - "revision": "9c11d19b61b04de1b19fcc41", + "revision": "d14010754539444b91eef5e1", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39508,10 +39508,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "b937aebecf8642909f1c686d", + "revision": "6eacb127984d494fbdb9aabc", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39528,10 +39528,10 @@ "value": 1696820400000 } }, - "revision": "48045ab4821f49e980208003", + "revision": "e38d19c5d52d4b749a89fef2", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39539,10 +39539,10 @@ "content": { "type": 1, "value": {}, - "revision": "93324f7095d6406baf97230d", + "revision": "043316f4d26445088a48c05d", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39550,10 +39550,10 @@ "content": { "type": 1, "value": {}, - "revision": "01545a1cebb24d9fa14a1da4", + "revision": "3f75e66ba828465da399c1b9", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39566,10 +39566,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "6c15a0066fb9456d878c2185", + "revision": "e5623aebe3e340e3b157330b", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39577,10 +39577,10 @@ "content": { "type": 1, "value": {}, - "revision": "bb328d4952b6487f811a73f7", + "revision": "5b532ab15d114069b713270c", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39588,10 +39588,10 @@ "content": { "type": 1, "value": {}, - "revision": "995d83e778cb4bef98871f60", + "revision": "d95c218f4e934f2d9aba5575", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39599,10 +39599,10 @@ "content": { "type": 1, "value": {}, - "revision": "971851fc8b7d4788a91a8ba4", + "revision": "0b624044673f43fa9569cfb7", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39613,10 +39613,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "0d4eb7ff40cd40f083df3325", + "revision": "86e070ddfcdd488ca5115c13", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39632,10 +39632,10 @@ "value": 1697166000000 } }, - "revision": "be08950b45824548862ce6eb", + "revision": "713497af5f9247728dc0e186", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39643,10 +39643,10 @@ "content": { "type": 1, "value": {}, - "revision": "bc8fdb9703ca4dbe935fb112", + "revision": "717e08ca411a41778426eda5", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39654,10 +39654,10 @@ "content": { "type": 1, "value": {}, - "revision": "fc8912618eb543ca981427bf", + "revision": "d4ee731f39034ed59c23e1af", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39673,10 +39673,10 @@ "value": 1692500400000 } }, - "revision": "a9691a6c541546338d702c6e", + "revision": "1fd553d0452a41c89a02c96e", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39688,10 +39688,10 @@ "symbol": "IVIP", "value": 4678.3 }, - "revision": "31c1e37919624de0a0ca26d4", + "revision": "0a96406ad2244bd38489d5c1", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39699,10 +39699,10 @@ "content": { "type": 1, "value": {}, - "revision": "13e44398b2574e14ae33d2ab", + "revision": "946703435d9e4a1fb586f819", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39712,10 +39712,10 @@ "value": { "costs": {} }, - "revision": "888b9d9f87f643bda73f0122", + "revision": "d301fe26eaa3471a93ca15e1", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39757,10 +39757,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "122f31493ab74c58b9b0ad1f", + "revision": "3432f7ca7c254ff5aa27cc46", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39768,10 +39768,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 5.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "9edd654182e7418b9e3a15ad", + "revision": "e67f17ca26f7461db92538db", "revision_nr": 1, - "created": 1701809344895, - "modified": 1701809344895 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39791,10 +39791,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "e5137569f2eb463c9d3e288e", + "revision": "4b12fd11a86d4342b4fcadc9", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39830,10 +39830,10 @@ "history_id": 1684018936403, "description": "Compra de 27.021.960,00 IVIP por 5.000,00 BRL" }, - "revision": "698f243757284284a9e5391f", + "revision": "8f4cb6b7c23b4d588bf4bcf2", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39853,10 +39853,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "1f59c9f90e0245b8a7ea3e0a", + "revision": "8178256af5bd4f04951aa3f4", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39891,10 +39891,10 @@ "history_id": 1688531798249, "wasDebited": true }, - "revision": "1a851b77b9574c29b1ad69c5", + "revision": "82ef15af43734056aeecbe94", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39902,10 +39902,10 @@ "content": { "type": 5, "value": "Investimento de 7.668.365,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/5/2023", - "revision": "289fe3311ff745f7bd7ad3ea", + "revision": "991cfef2c9ac4d0cb0c286bf", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39915,10 +39915,10 @@ "value": { "costs": {} }, - "revision": "b2a6a341c37e4092864593bc", + "revision": "b0e4b31d8df84f87ab7ba2f4", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39960,10 +39960,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "7412c94616f14a44bd247461", + "revision": "74ed2a36c05848a1be98549d", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39971,10 +39971,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "29899a58af6f476bb7827e42", + "revision": "d86200c4b218463a9f08f778", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -39994,10 +39994,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "e2f602a679074e14bd4abcad", + "revision": "dc67d7cf71f542c3949a107e", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -40033,10 +40033,10 @@ "history_id": 1688771723408, "description": "Compra de 823.634,00 IVIP por 500,00 BRL" }, - "revision": "01318a2a71c6437584a5dfc7", + "revision": "4ea63c029b7846aabf5016b9", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -40046,10 +40046,10 @@ "value": { "costs": {} }, - "revision": "41be530774794bbfa0dbb497", + "revision": "8afbd73b91214fbfbcf08631", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -40091,10 +40091,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "51324b17dcfd4623af04fe32", + "revision": "26664a069e8446438a7c16a3", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -40102,10 +40102,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "7f6f037b989e4182a7491199", + "revision": "34e7a91521214eff99dd3651", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -40125,10 +40125,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "67a435fcac934cecaf70aafa", + "revision": "b98fa793838e49299da9a7ac", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -40164,10 +40164,10 @@ "history_id": 1689023394597, "description": "Compra de 914.949,00 IVIP por 1.000,00 BRL" }, - "revision": "0335c829bd2e4eafab433937", + "revision": "b7ba1bf6bb5d429384520d36", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -40177,10 +40177,10 @@ "value": { "costs": {} }, - "revision": "9528f4fb5a6a493fb1e1c666", + "revision": "7ef74d0d51ea49158bb66e48", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -40222,10 +40222,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "80242f9323fa4df6adcd6a20", + "revision": "48021f2dd26a4d1c894bca0b", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -40233,10 +40233,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "fc9b385dc75c41249ff0d4c8", + "revision": "cacd840ed27247ea9354fafe", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036361, + "modified": 1702563036361 } }, { @@ -40256,10 +40256,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "5f3e9a18208c485d9b11f7b7", + "revision": "340cf29f7b9848c696d817bf", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40295,10 +40295,10 @@ "history_id": 1689260053657, "description": "Compra de 381.522,00 IVIP por 1.000,00 BRL" }, - "revision": "32e9dfaf9bc44e1987dcc0f5", + "revision": "5f675381c4944863aec1c579", "revision_nr": 1, - "created": 1701809344899, - "modified": 1701809344899 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40318,10 +40318,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "096f38ec91ad44449d696b33", + "revision": "4d27af042304486fa9312730", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40355,10 +40355,10 @@ "currency_id": "IVIP", "history_id": 1689301547038 }, - "revision": "0e78f8cac82846e8956eb18c", + "revision": "8d3c5f8106c44cb1b264294a", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40366,10 +40366,10 @@ "content": { "type": 5, "value": "Investimento de 5.008.550,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/13/2025", - "revision": "64c62354a0b64de394c9d94e", + "revision": "0dfcc6c627c841d9a3f48b90", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40379,10 +40379,10 @@ "value": { "costs": {} }, - "revision": "de8074ec162f46df9708d013", + "revision": "85702c98055a488e9f8da0d7", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40424,10 +40424,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "50a24a447af548af944b2632", + "revision": "a9f5dfcdea3441c8bdef4913", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40435,10 +40435,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "21a5be4681714faeb393672a", + "revision": "de87df068f9e4d238a1042c5", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40458,10 +40458,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "174c1c8ca795459d9e82a912", + "revision": "4a65ba42b30246059477d8dc", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40497,10 +40497,10 @@ "history_id": 1689356922364, "description": "Compra de 1.235.586,00 IVIP por 2.000,00 BRL" }, - "revision": "f3d1d7f9cbf54a828910cef4", + "revision": "95d7e1b04aa04021996cfeca", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40514,10 +40514,10 @@ "value": 1692459787113 } }, - "revision": "ad873fd66c564fe89e4e59f1", + "revision": "ec65a9f742074eb4937f1af0", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40535,10 +40535,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "e429493e80c64dbf8cfc2fec", + "revision": "f759373ad5f24829b4aa862d", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40546,10 +40546,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/extract/047925577230662820/order/1689867787113", - "revision": "6e47668aae804c919334311f", + "revision": "fe06590e91c64d9ab859a7a6", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40579,10 +40579,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "886d8eb51cf0436a855aead4", + "revision": "71db612e4262421b83ac9e73", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40590,10 +40590,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "afe1ebaacaa94ea5856beadd", + "revision": "c6ba9b56ae94422eb1272a14", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40607,10 +40607,10 @@ "value": 1692534311952 } }, - "revision": "0d782015c31241679c3f9a48", + "revision": "e8884acc7fdb4670ac177e89", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40628,10 +40628,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "6a7d9d1964e54485a67a264c", + "revision": "f305d006b98e43b4916b0fa3", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40639,10 +40639,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1689942311952", - "revision": "4217be8dcc7d4309904c45ae", + "revision": "4901c23e9e1c495bbb913807", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40682,10 +40682,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f7c0a5f1e7724738956de245", + "revision": "00f97e32977d4bbda441be40", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40693,10 +40693,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "b9fa755fa9514771808d7e8e", + "revision": "55e7dbd4fd114725bb1f9654", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40716,10 +40716,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a4915798b74745e4b785ac96", + "revision": "9b8e72da9e66414fbf91e7cb", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40755,10 +40755,10 @@ "history_id": 1689942442311, "description": "Compra de 1.849.758,00 IVIP por 3.000,00 BRL" }, - "revision": "e182b8aa18364f7eb5273e3f", + "revision": "d895f59d5481412dac25b7a8", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40772,10 +40772,10 @@ "value": 1693792496983 } }, - "revision": "7e901c93e2b547999788925b", + "revision": "18ce4e9c6f1b4f799da708bf", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40793,10 +40793,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "2f8dcc372bd6452580adb7af", + "revision": "d24352ececb34336a9cbb056", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40804,10 +40804,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691200496984", - "revision": "1f713f472a314cd9856ea25c", + "revision": "03c74be245774124954510c7", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40837,10 +40837,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "8cb29e4d1e644490b27c5a4b", + "revision": "a437d1354f3a47918c1dc087", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40848,10 +40848,10 @@ "content": { "type": 5, "value": "Deposito de um valor 2.000,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "a700691cee5346df92281cd2", + "revision": "604eb07ea32241ff941b4fc1", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40869,10 +40869,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ee6537de2d254cdea03ca718", + "revision": "2761ed88369345a4a0fc9876", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40880,10 +40880,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691214286883", - "revision": "72ed411c616843858c67dda9", + "revision": "3b47703d0db141518ec17a97", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40917,10 +40917,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "0ec2e18cf2c442c1b0504d00", + "revision": "97fab7cb839546fe8659fbab", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40928,10 +40928,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 7.668.365,00 IVIP com um rendimento de +153.367,3 IVIP (2,00%)", - "revision": "dd2b48386d59407a88be7438", + "revision": "c7bd0facf3114e53877ad837", "revision_nr": 1, - "created": 1701809344900, - "modified": 1701809344900 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40945,10 +40945,10 @@ "value": 1693845025281 } }, - "revision": "8ebc5f4f371940198952a732", + "revision": "38495694133443e784138362", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40966,10 +40966,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "40b8631d8aa0438c803fe374", + "revision": "d6023c3cb03249c681040dd8", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -40977,10 +40977,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691253025281", - "revision": "bc181578c51a469289ac0156", + "revision": "f614524897414a6baed908aa", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41020,10 +41020,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "31273b81480f402d867746da", + "revision": "a7e47f3b2a934c83bb53d1ff", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41031,10 +41031,10 @@ "content": { "type": 5, "value": "Deposito de um valor 1.500,00 para a carteira iVip 0479.2557.7230.6628-20", - "revision": "c26f62cd0c584bf8991b3d04", + "revision": "e4727939425743ac81e20e8d", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41052,10 +41052,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "2e8732fdd48f488fbc2d23a1", + "revision": "840b0a6627454704988b76d4", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41063,10 +41063,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691280221861", - "revision": "e2b43e60856541f3a1898c1c", + "revision": "2879849db4ea46b4884f0c5f", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41101,10 +41101,10 @@ "description": "Compra de 2.127.119,00 IVIP por 1.500,00 BRL", "status_detail": "accredited" }, - "revision": "bb029dc83e4b439b813e0c93", + "revision": "7ccae109cca44057ad252b40", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41122,10 +41122,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7165ad98967a4b7187426b45", + "revision": "e98eec943a904d96a1f66d44", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41133,10 +41133,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1691283205891", - "revision": "2c27acf038284fc7ac3b07eb", + "revision": "b9851ff8376d4f20af50bf87", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41170,10 +41170,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "f974b658dece478284e526d5", + "revision": "30f7c8ab49214dcfa68bad5c", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41181,10 +41181,10 @@ "content": { "type": 5, "value": "Investimento de 7.769.562,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", - "revision": "46731fda1e094c4cbd79dff4", + "revision": "8f03ac46ad984858b108c1c7", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41202,10 +41202,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "5958a87a884144e6acf492d1", + "revision": "a4d8de39ef234f89a13c95af", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41213,10 +41213,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1693962455688", - "revision": "cdbb43b92e974676a36ff180", + "revision": "ee7a6fdaa9924218b3bb5d30", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41250,10 +41250,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "66039569d96540ceb4da7149", + "revision": "494b661e11114bba83b920cc", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41261,10 +41261,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 7.769.562,00 IVIP com um rendimento de +155.391,24 IVIP (2,00%) - Y12XDT27", - "revision": "41886a27c723498d936df197", + "revision": "87f486bb784e408fa5388880", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41282,10 +41282,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ecd1583c50a04b4fb1b966d3", + "revision": "203925dac28f46bfabe53950", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41293,10 +41293,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1693962525967", - "revision": "df3ba389d6ea4e07a73956d1", + "revision": "0b35b68c355044ddba3be37f", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41336,10 +41336,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "c6642b9cc73644a6b6ce9204", + "revision": "fafe43952bf24e80af582f3a", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41347,10 +41347,10 @@ "content": { "type": 5, "value": "Investimento de 7.931.475,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", - "revision": "13c8160ff7b047d197993cbf", + "revision": "bdc222ecd16046c59badc50c", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036362, + "modified": 1702563036362 } }, { @@ -41368,10 +41368,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "9a1b17307bc84d98b7d0aa4a", + "revision": "e7d4378aa730489185458f44", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41379,10 +41379,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1695167532103", - "revision": "c29be9ff38ec4e78ad55afd3", + "revision": "9bd475c6cd38457fb9cbd8f2", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41422,10 +41422,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "19f99d9b863a4f2b994c2b13", + "revision": "2792442f8ca241cebaf13d19", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41433,10 +41433,10 @@ "content": { "type": 5, "value": "Investimento de 19.942.224,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", - "revision": "abcae3fbf46843099aa1fdac", + "revision": "7af9523eb07e4504b89bea17", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41448,10 +41448,10 @@ "label": "Taxa de 3,00%", "amount": 30 }, - "revision": "21137fab65d848a0a79e7b68", + "revision": "7512397587f943888b50df65", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41468,10 +41468,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "e16d0e39055245adb7b024e1", + "revision": "d6f2217093ff404ea08b27bd", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41479,10 +41479,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1695956035041", - "revision": "49d3f222a7814aa4aa3f0415", + "revision": "8613a4c1b22641069afb4f79", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41490,10 +41490,10 @@ "content": { "type": 2, "value": {}, - "revision": "67e556e874764d8984da2729", + "revision": "6eb5544e5e3b42308d3d369e", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41538,10 +41538,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "27560379c565452bb4a131ff", + "revision": "95c99f628a144c249af0a9ba", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41549,10 +41549,10 @@ "content": { "type": 5, "value": "Saque de 970,00 IVIP para a carteira 0x24f07CBa773a4bF9373E50A5694BAb23E5eF5557", - "revision": "6b58c0ea82ab43d9ba077a33", + "revision": "678d2ffff31047e396ea8a6b", "revision_nr": 1, - "created": 1701809344901, - "modified": 1701809344901 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41564,10 +41564,10 @@ "label": "Taxa de 3,00%", "amount": 651697.8461999999 }, - "revision": "860c6a7092db4b31a870dffd", + "revision": "5b8916e8bf1e4f36aabec33a", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41584,10 +41584,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "52b64914324840d8a674411b", + "revision": "3d41c48c1d784a93a16a8394", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41595,10 +41595,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696003948025", - "revision": "8c25d8a69d174f0ba6e52a76", + "revision": "ab3499697bb24c65b60be449", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41606,10 +41606,10 @@ "content": { "type": 2, "value": {}, - "revision": "6f43b85f74904f7fb1c0b19f", + "revision": "01a1a8178bce405a9f233a70", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41654,10 +41654,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "c860a1eac4fa4af7b093f63d", + "revision": "b4b59e08f2d84e6f9c70cb1e", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41665,10 +41665,10 @@ "content": { "type": 5, "value": "Saque de 21.071.563,69 IVIP para a carteira 0x24f07CBa773a4bF9373E50A5694BAb23E5eF5557", - "revision": "dd923d564c8c4574a46a9073", + "revision": "4a564130802d47b487b7d142", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41680,10 +41680,10 @@ "label": "Taxa de 3,00%", "amount": 304593.12 }, - "revision": "13d012ad17e44f0c93a199de", + "revision": "bfd8c05eafa74496855aa01b", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41700,10 +41700,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "ee149aede1654eb3985891fb", + "revision": "560e549ef751441faf015740", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41711,10 +41711,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696207958470", - "revision": "b07ea29f58724d129e5c2202", + "revision": "a4845bfbfdda498ca9bc70fe", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41722,10 +41722,10 @@ "content": { "type": 2, "value": {}, - "revision": "71316840d80c4b4e95b54599", + "revision": "a3ca25a4720f4384a832364f", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41766,10 +41766,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "5581c210696345fcad3ca29a", + "revision": "53422eb83fae452da5bb8893", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41777,10 +41777,10 @@ "content": { "type": 5, "value": "Saque de 9.848.510,88 IVIP para a carteira 0x8de82EE9234B9dF85A4CBc083E49A0B8Db0D4aD1", - "revision": "98757999299d4f8eb6a95d99", + "revision": "b4a0be77176c47dcbf58cd97", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41792,10 +41792,10 @@ "label": "Taxa de 3,00%", "amount": 600892.0499999999 }, - "revision": "3b1bb1d7fb644980b15e9faa", + "revision": "03e5af5a8b7b42c8946d9d24", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41812,10 +41812,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "7d04ac68216244e0a6b8c1c6", + "revision": "28cf4c713cdd4980b579cd42", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41823,10 +41823,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471625534", - "revision": "447cdf64a93a44708309b104", + "revision": "86a7a60e04be4743a11e1d84", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41834,10 +41834,10 @@ "content": { "type": 2, "value": {}, - "revision": "f51f12378ff640af9d58f0e4", + "revision": "74e9c98cf93947b1a3fad7b7", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41882,10 +41882,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "e8cd2685aa334a93a74782ce", + "revision": "1caabfd43a2c4e989c81d7c5", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41893,10 +41893,10 @@ "content": { "type": 5, "value": "Saque de 19.428.842,95 IVIP para a carteira 0x8de82EE9234B9dF85A4CBc083E49A0B8Db0D4aD1", - "revision": "59c9a3d6aae2457db564b791", + "revision": "5235238aa1164bbd8920ff6a", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41914,10 +41914,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b8e286f36f40424c9dabe1c5", + "revision": "1ad2d7166dd94049b452825c", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41925,10 +41925,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471870838", - "revision": "792cccd0cd3a497ebd492472", + "revision": "9c54e222770e48628f55fcb9", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41963,10 +41963,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_call_for_authorize" }, - "revision": "93d6000e5a5843e2a520605e", + "revision": "bc0bf628a760404c83c314f0", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41974,10 +41974,10 @@ "content": { "type": 5, "value": "Investimento de 7.931.207,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "0fb4ad1fd9a047d9bd2c59a9", + "revision": "30440c00d7ec4f78a3017b62", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -41995,10 +41995,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "6a995bf2639f4ec3b1537b59", + "revision": "29907b9091dc4766a2d049b6", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42006,10 +42006,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/047925577230662820/history/1696471977293", - "revision": "87b5766ec9934ce6b43eb55e", + "revision": "e713b360737647568eb6011f", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42044,10 +42044,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "1dd35b2269234c0d84c510f3", + "revision": "5befc048f517442c97de8c7a", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42055,10 +42055,10 @@ "content": { "type": 5, "value": "Investimento de 1.035.046,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "c8eccf8515434dec873394da", + "revision": "3667af2734bc4ad3a6ea3bb2", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42066,10 +42066,10 @@ "content": { "type": 1, "value": {}, - "revision": "0f3563b2839c4830953b33ea", + "revision": "a43a5f65fa5c4ad79c99ac05", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42077,10 +42077,10 @@ "content": { "type": 1, "value": {}, - "revision": "5d86db1466d44cec8adba7a5", + "revision": "1c119d2d6308448b9e1941a2", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42095,10 +42095,10 @@ "value": 1695957287898 } }, - "revision": "094cfc14495445339b0aff36", + "revision": "03fd2a3d9d344e7d8e27b21e", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42115,10 +42115,10 @@ "value": 1697338800000 } }, - "revision": "1ca361e3eece40c4883f8462", + "revision": "1677087ef56142478a5b0cdb", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42126,10 +42126,10 @@ "content": { "type": 1, "value": {}, - "revision": "33f760ae4cbf4d7fb24d24ba", + "revision": "4317d1dcb15e4d7ca4653930", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42137,10 +42137,10 @@ "content": { "type": 1, "value": {}, - "revision": "922eb6fc7c724d60aabcd20e", + "revision": "bf088e9fc47445549b7ada01", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42153,10 +42153,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "f0cd6f2a53414458a799cadc", + "revision": "109a23457a194052820666f4", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42168,10 +42168,10 @@ "symbol": "IVIP", "value": 149.3 }, - "revision": "4d1397f506f44ddbab6c5f05", + "revision": "33f907ba415f4939af45d115", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42179,10 +42179,10 @@ "content": { "type": 1, "value": {}, - "revision": "5f9f95bc04684e0c9e184732", + "revision": "186c7c3c2afd43bbb4af8257", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42192,10 +42192,10 @@ "value": { "costs": {} }, - "revision": "3b97af9f0c7c4f12802a608d", + "revision": "0f332850348d4e9eacbb538a", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42237,10 +42237,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "57cbcbb978824651a559d45b", + "revision": "850ce439f07946719df6e411", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42248,10 +42248,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", - "revision": "c13569746ef9408c86161846", + "revision": "63481a6a8c214f87824adb8d", "revision_nr": 1, - "created": 1701809344902, - "modified": 1701809344902 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42261,10 +42261,10 @@ "value": { "costs": {} }, - "revision": "be53b43cce8c41b18b7818d4", + "revision": "3b5fa5222eb2420688e589f3", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42296,10 +42296,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "0558a652a6ab4bd4b474e3df", + "revision": "f9f726e462a743b7a16c57c7", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42307,10 +42307,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", - "revision": "d3bb9d61b9cc4a8a9e49f93f", + "revision": "a28c776d6df347d8a571529c", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42330,10 +42330,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "62d5568bb0a74326a00a67b5", + "revision": "920120ede3644c56b2dc5035", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42369,10 +42369,10 @@ "history_id": 1679871668854, "description": "Compra de 1.597.688,00 IVIP por 300,00 BRL" }, - "revision": "cc698284c9c547e09b5c08cf", + "revision": "a76d546dd18240e7bd260ad6", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42382,10 +42382,10 @@ "value": { "costs": {} }, - "revision": "bcb56e8a9f194233ac87917b", + "revision": "5ddec9921e97471bbb10e8c5", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42427,10 +42427,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "27b6455dc23547bd96b4a0a4", + "revision": "8301fcc2fe474156af9d52f6", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42438,10 +42438,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0501.4921.1466.8391-50", - "revision": "3c2e9c7e9b0b4add96e9145e", + "revision": "2aebc11ab6004079bc89449e", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42461,10 +42461,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "899d17833df5461c91834cf1", + "revision": "a3172a4fbb124452a5791326", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42500,10 +42500,10 @@ "history_id": 1684624205744, "description": "Compra de 1.461.219,00 IVIP por 300,00 BRL" }, - "revision": "1c42b1f54ce74c768b096cef", + "revision": "cce8b40c8d954155a09f1c6e", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42523,10 +42523,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "47933886512e43709f163ebe", + "revision": "60ecb51025f54eb695fb4074", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42561,10 +42561,10 @@ "history_id": 1686353262267, "wasDebited": true }, - "revision": "01a4abe6840b475689654a9f", + "revision": "4301d065aa3e4996ae2d1afa", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42572,10 +42572,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/9/2023", - "revision": "e9f02c8e3f8740b8913b7305", + "revision": "a0dec8d08e5e43f18883cb80", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42595,10 +42595,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "743244f497244c2eaa148d93", + "revision": "f8d3087e2edc4ff3a602206f", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42633,10 +42633,10 @@ "history_id": 1686353693526, "wasDebited": true }, - "revision": "43faf5b743af4fc186677cc4", + "revision": "5df7e12d93474cf3b8477191", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42644,10 +42644,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/9/2023", - "revision": "651a372610ac4980ae0ad20e", + "revision": "cdeaa79219a14189a342a3b5", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42667,10 +42667,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "15150cd80c6249d3801ab9fc", + "revision": "850d9d6269944781adbe333c", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42704,10 +42704,10 @@ "currency_id": "IVIP", "history_id": 1686657739276 }, - "revision": "6fd86bf4b21f473eac5016b8", + "revision": "ac1f99635f814ef6b7b5fab5", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42715,10 +42715,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/13/2024", - "revision": "e85317da6d224fb79e3ee5f2", + "revision": "91be9c9e8b464a16a9484d48", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42738,10 +42738,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "b1772fef67c548628cdf1ed7", + "revision": "409243dc9d4c407485710a09", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42775,10 +42775,10 @@ "currency_id": "IVIP", "history_id": 1687363201264 }, - "revision": "9b5b949fe06c4254b6addf4f", + "revision": "40dd392d09fd4805b74ec98e", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42786,10 +42786,10 @@ "content": { "type": 5, "value": "Investimento de 500.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2024", - "revision": "ea6ace501e11431aba297c2b", + "revision": "0e96ac32a61e4948ac41f75d", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42809,10 +42809,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "9fab696a622d4878a0f528eb", + "revision": "213dc4a5b74b4bf187ec1769", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42846,10 +42846,10 @@ "currency_id": "IVIP", "history_id": 1687363301418 }, - "revision": "73fb1a45d2dd421299bea208", + "revision": "d4dc4acd4d504caa9223a9df", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42857,10 +42857,10 @@ "content": { "type": 5, "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2025", - "revision": "34e00d78e8bc4a29a7f3a6a4", + "revision": "1d0f07cec5f940d7aa5ea3d4", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42880,10 +42880,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "47b3aea9f7804b38a098693f", + "revision": "79149595d83c487db5b6e7ba", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42918,10 +42918,10 @@ "history_id": 1689804806407, "wasDebited": true }, - "revision": "12936cef32b245099f7fbb10", + "revision": "bebc9e5986d5401b8f19f879", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42929,10 +42929,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 1.000,00 IVIP com um rendimento de +20,00 IVIP (2,00%)", - "revision": "c11d2285279f4139b7bbd3f7", + "revision": "ea4fd78c702a4da789f93532", "revision_nr": 1, - "created": 1701809344903, - "modified": 1701809344903 + "created": 1702563036363, + "modified": 1702563036363 } }, { @@ -42950,10 +42950,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "633527c3d8e84e48b5429f26", + "revision": "5676eeb03a92412cad0cca6f", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -42961,10 +42961,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1690414261722", - "revision": "09be1dbc262343ce87a22242", + "revision": "66993c9a39774bf3a5d65dc2", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -42998,10 +42998,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "e3a9550904fc4df88bac422b", + "revision": "884bad0875b84845acea72ca", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43009,10 +43009,10 @@ "content": { "type": 5, "value": "Investimento de 100.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/26/2023", - "revision": "73103c3e3c9d433893b2c3d3", + "revision": "0206a19c08ce4f1e94be99b1", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43030,10 +43030,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "742c4d152cce4285bf517176", + "revision": "14d1955005e64a5994a3710c", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43041,10 +43041,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693093011374", - "revision": "f2f62d6be0004c798b986ef3", + "revision": "899184e24aec4747a7b56e01", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43078,10 +43078,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "cb086dc1ba164ba986987ee0", + "revision": "229c41c358484bc18dac42a2", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43089,10 +43089,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 100.000,00 IVIP com um rendimento de +2.000,00 IVIP (2,00%)", - "revision": "5e94a1fa30f642b19248892d", + "revision": "23eb5e021b754247a46a07bb", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43104,10 +43104,10 @@ "label": "Taxa de 3,00%", "amount": 3000 }, - "revision": "e4455c2b46ab499c87e117e3", + "revision": "8566db0d2d9d43869cbf8c98", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43124,10 +43124,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "318ec8d85a5b4ee6961ea20e", + "revision": "a0d6c82f04e844ddb511d74b", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43135,10 +43135,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693173218030", - "revision": "1f36cb40ebce44ed8edb0306", + "revision": "42a7b5b5c3ad4ebdab7169f6", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43146,10 +43146,10 @@ "content": { "type": 2, "value": {}, - "revision": "40b50d20f8ba44bb9f0ee65a", + "revision": "a0319db4917a4168888c6277", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43193,10 +43193,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "c16b917b0df64f17bcc2908b", + "revision": "31c4bdfad4ec4c65a89e46e2", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43204,10 +43204,10 @@ "content": { "type": 5, "value": "Saque de 97.000,00 IVIP para a carteira 0x984b739d05a74462Ab9171EDF8Be5CDDa7fF8c26", - "revision": "555d5f1e9c1a48f8b8f105f9", + "revision": "056869464f4c4debbcee6976", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43225,10 +43225,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "07bf8c85939f4d428d56e1f4", + "revision": "13142370861542969a3d55f7", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43236,10 +43236,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1693228740965", - "revision": "d1d81876247248ddad899791", + "revision": "9c560c8e10d54536aa382cfd", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43273,10 +43273,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "f3897ead353f4d0c9415342b", + "revision": "27ed1b6fcfe74a2dae196bc3", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43284,10 +43284,10 @@ "content": { "type": 5, "value": "Investimento de 800.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/28/2023", - "revision": "05498aed51324d27ba4c852d", + "revision": "b78f935282b1465f97f4ea51", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43305,10 +43305,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4d598afacdf74dd682eca191", + "revision": "7d4fef059b9f4e648dbc8df2", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43316,10 +43316,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1695907162897", - "revision": "81be45a9e5f14373bfd89201", + "revision": "745cff28234749f09da267f0", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43354,10 +43354,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "de447dcf79e847db864504aa", + "revision": "3cd089950e0d4ecaa6288393", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43365,10 +43365,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 800.000,00 IVIP com um rendimento de +16.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "906f51c97cf24dc3ab0c896a", + "revision": "e982d44a9bc84032ac6d7c07", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43386,10 +43386,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a36a0180ec7f42ec8eaf7f9e", + "revision": "ac5e19d2a6294b5fae6deb30", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43397,10 +43397,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050149211466839150/history/1695925845472", - "revision": "ae721a818fae473c8926afa6", + "revision": "6a43e25fe56b4a48b92de1e3", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43435,10 +43435,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "53dae71e2aeb4e6ba79adc7b", + "revision": "82e84d41386645aa911afb50", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43446,10 +43446,10 @@ "content": { "type": 5, "value": "Investimento de 80.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 28/10/2023 - Y12XDT27", - "revision": "e5bfbd1e108a492084d075ba", + "revision": "70d6b179208b4f4d8f799615", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43457,10 +43457,10 @@ "content": { "type": 1, "value": {}, - "revision": "b006af7814fa415091fb9f1c", + "revision": "b71bb71b0b8b4bf3bd4ee41f", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43468,10 +43468,10 @@ "content": { "type": 1, "value": {}, - "revision": "4cb6ec42885a49c99979dabd", + "revision": "91112efd947744b9988226c2", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43486,10 +43486,10 @@ "value": 1695926116598 } }, - "revision": "ac589648752c4a0496d46778", + "revision": "64b4320ae4184b39ba26cb8e", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43506,10 +43506,10 @@ "value": 1697252400000 } }, - "revision": "40dce9121f1e42b4920eb98a", + "revision": "f928b4b89e694a87bdbac2da", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43521,10 +43521,10 @@ "symbol": "IVIP", "value": 7.28 }, - "revision": "cba8ee1e7aad464bb1585c69", + "revision": "97e3bd283a77436c9f39c3aa", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43532,10 +43532,10 @@ "content": { "type": 1, "value": {}, - "revision": "10f3166a505e44c891d16750", + "revision": "7f2a1a15f6b7405892761a3b", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43545,10 +43545,10 @@ "value": { "costs": {} }, - "revision": "0ba847da14524bbeacc884a2", + "revision": "ed42655389494fa380c64e11", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43590,10 +43590,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "829af264ad0b41d5abd2f427", + "revision": "d165f075490946158b6b22b7", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43601,10 +43601,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0502.9485.5698.2423-30", - "revision": "e0e4892e33994ba995fc0c16", + "revision": "4a52efce29c54d33b1f7c69d", "revision_nr": 1, - "created": 1701809344904, - "modified": 1701809344904 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43614,10 +43614,10 @@ "value": { "costs": {} }, - "revision": "04aa4162e24142eb8f87a1c2", + "revision": "12c52b1e197345ada8e009cd", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43659,10 +43659,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "dd038f67cea6437798efc377", + "revision": "d677aa33d06043608fdf1514", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43670,10 +43670,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0502.9485.5698.2423-30", - "revision": "c8d993019af04409843a7084", + "revision": "adf5f4c471354abd8de52372", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43683,10 +43683,10 @@ "value": { "costs": {} }, - "revision": "3aabff4f90d84c178fba71d4", + "revision": "d24cf73971014922b51456b6", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43728,10 +43728,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "22fe6efd306447d6aa2903fc", + "revision": "17b9380a52764878996ff78e", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43739,10 +43739,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0502.9485.5698.2423-30", - "revision": "2646350de85b4f97a04ddf50", + "revision": "3464e2ed6d02445ea6adeb76", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43762,10 +43762,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "4082ba6005c9414695d36251", + "revision": "bd45430bd75e496eadf8756c", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43801,10 +43801,10 @@ "history_id": 1678145303669, "description": "Compra de 14284655 IVIP por 2000 BRL" }, - "revision": "8a6c251320274a8891cd105d", + "revision": "21137649598f446283a1c804", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43824,10 +43824,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "e0c3be818553453b8e8ac353", + "revision": "7e685e4a9f2a49fd8b9499b0", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43863,10 +43863,10 @@ "history_id": 1678220742550, "description": "Compra de 14195700 IVIP por 2000 BRL" }, - "revision": "24dfe41fd9ad447d94bd9654", + "revision": "ca557c79f46c44b4a73fe2df", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43876,10 +43876,10 @@ "value": { "costs": {} }, - "revision": "112f7d25c28642ee903d0aa4", + "revision": "c19032c440f64d19a83b47dc", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43916,10 +43916,10 @@ }, "money_release_status": "rejected" }, - "revision": "b5db090bbd4349acb85fd6fa", + "revision": "6f83d39d38854c80881055a4", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43927,10 +43927,10 @@ "content": { "type": 5, "value": "Saque de 14.038.113,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", - "revision": "e839cfd417464ca8a76be606", + "revision": "0256cb0b707c4a2b97fb209e", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43940,10 +43940,10 @@ "value": { "costs": {} }, - "revision": "498c02ef28224a04899047ad", + "revision": "cf5a86e3da714949a1a50ac7", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43980,10 +43980,10 @@ }, "money_release_status": "rejected" }, - "revision": "f07060d2121947ab8f1e49f0", + "revision": "1154d6410e3a4493a6fe0aaf", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -43991,10 +43991,10 @@ "content": { "type": 5, "value": "Saque de 28.480.355,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", - "revision": "a75c57bb19ab40a7a0852e00", + "revision": "352f74001b4444048c519fb4", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44014,10 +44014,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "4e477cabdbf142ca9674f450", + "revision": "5aa8c4e97f574116a05f9728", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44051,10 +44051,10 @@ "currency_id": "IVIP", "history_id": 1686190557366 }, - "revision": "a996c440c26446778fca6124", + "revision": "c7c4e7567c0d41709bb2bf0b", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44062,10 +44062,10 @@ "content": { "type": 5, "value": "Investimento de 50.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/7/2025", - "revision": "b97ace19cb5e47b3944a35e1", + "revision": "5f386430ac844b2d95a9b0ad", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44085,10 +44085,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a3fee2a782c6483e93bfef32", + "revision": "31adcf9b94c849c4bc299f87", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44122,10 +44122,10 @@ "currency_id": "IVIP", "history_id": 1686190633022 }, - "revision": "5d34668406434d87a7601d16", + "revision": "b89fd570ef3e4c6cbbaef92c", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44133,10 +44133,10 @@ "content": { "type": 5, "value": "Investimento de 30.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/7/2024", - "revision": "ac7ba5d3b1c2463eaa692025", + "revision": "8805ee03518b4e32bf63947f", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44156,10 +44156,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "15934b4a68184482a6371363", + "revision": "d518174334b84994b48d36f3", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44193,10 +44193,10 @@ "currency_id": "IVIP", "history_id": 1686190671429 }, - "revision": "bc5c48febf3d456cb05746ab", + "revision": "44df4b5936f24910a3d3b575", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44204,10 +44204,10 @@ "content": { "type": 5, "value": "Investimento de 50.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/7/2023", - "revision": "4df4866fccfa4d9991655bbb", + "revision": "1ce349958dd741818e3d9072", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44227,10 +44227,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "f83ef8990cd94f68ba42f601", + "revision": "3b05a4c968bf4b7291aaf48a", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44264,10 +44264,10 @@ "currency_id": "IVIP", "history_id": 1686190710908 }, - "revision": "6ceb6d0c18274cfd99f6880f", + "revision": "24b0f38d37764be18d8b4bdb", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44275,10 +44275,10 @@ "content": { "type": 5, "value": "Investimento de 30.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/7/2023", - "revision": "25fd6be503c74c708713b210", + "revision": "efe2c8a98f374cf091a49724", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44298,10 +44298,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "34df3d197a494c1e9255270b", + "revision": "17ae866a1da447f08fe8365a", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44335,10 +44335,10 @@ "currency_id": "IVIP", "history_id": 1687472497935 }, - "revision": "b75af2577553423b9438b906", + "revision": "3ee8a9786ab84427a4c15cb6", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44346,10 +44346,10 @@ "content": { "type": 5, "value": "Investimento de 14.524.522,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/22/2025", - "revision": "db7f41666ec24e919d8103f4", + "revision": "64bd71de99034e14882328ea", "revision_nr": 1, - "created": 1701809344905, - "modified": 1701809344905 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44359,10 +44359,10 @@ "value": { "costs": {} }, - "revision": "4fa514bd5a454ea187a973bd", + "revision": "e406d5e6446c492e90146c3e", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44404,10 +44404,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "77c664c8a3a24c09aa819d8a", + "revision": "fc6630707455427ea983ca62", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44415,10 +44415,10 @@ "content": { "type": 5, "value": "Saque de 13.795.833,00 IVIP para a carteira 0x778C95eB5c117C37A2Ae19297cD69CF938f2a1cD", - "revision": "44bc5bdd815c4b83a3eacf43", + "revision": "2843b20c58c04b91b88f0cf0", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036364, + "modified": 1702563036364 } }, { @@ -44438,10 +44438,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "b761caa532674b93b304abdd", + "revision": "6296a5e68bab4012a404d41a", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44476,10 +44476,10 @@ "history_id": 1689804799815, "wasDebited": true }, - "revision": "8bb78e9e59b9408fa59e1f3a", + "revision": "c6e6e73863c74b97b0cad6a4", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44487,10 +44487,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 30.000,00 IVIP com um rendimento de +600,00 IVIP (2,00%)", - "revision": "77e6187373ac4c0cbce8dc44", + "revision": "63a17e0860ab43249e274e78", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44508,10 +44508,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "5065dfa5df2647f4be94dc66", + "revision": "1a3d8b1ddc70425697c07300", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44519,10 +44519,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1690467644472", - "revision": "4b543ed210334e8cb0a2c9bd", + "revision": "114a0f338e584588a50bd657", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44556,10 +44556,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "a21abac7e0e14f67aba4211a", + "revision": "70f034093dd14896bc203a07", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44567,10 +44567,10 @@ "content": { "type": 5, "value": "Investimento de 30.600,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/27/2023", - "revision": "a2140a3827d6486783831302", + "revision": "f9252f5820bc42d8b597549f", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44588,10 +44588,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "0a2c846a67134041ad640098", + "revision": "d3d865ea551a4d3791136f00", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44599,10 +44599,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1693147070930", - "revision": "680be5717ba94c2e9b1c1906", + "revision": "8cde928410124fafa42f53be", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44636,10 +44636,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "f5f9f7c7b48444c3b4b90fb4", + "revision": "cccf2121c43949258ce39732", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44647,10 +44647,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 30.600,00 IVIP com um rendimento de +612,00 IVIP (2,00%)", - "revision": "26671ac566e448809afe7352", + "revision": "b51c6f46c3b94ca18c0c6e60", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44668,10 +44668,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "9b361878ba03470d8d772223", + "revision": "92aa34f29332453c840c0d69", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44679,10 +44679,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1693780247117", - "revision": "7ae487aab88c43758ee272b0", + "revision": "36ab24dc8db946bea7a18da2", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44716,10 +44716,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c86738d22aed4c84ba215eff", + "revision": "d1e0b97f157b4be09c3a2c7e", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44727,10 +44727,10 @@ "content": { "type": 5, "value": "Investimento de 2.500,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "fc34a85e2fc643eea1c6991f", + "revision": "abce41b96e9d47028e67c1e0", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44748,10 +44748,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "6ae29dc0cfc14f9eab66d0f7", + "revision": "ec12bcc7d2dc477a9f13b36a", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44759,10 +44759,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696382633982", - "revision": "46568aebc7b745ed9536c4bf", + "revision": "56ae7736b8cd4c8dbee5e0c3", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44797,10 +44797,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "a3f2a3eb72504f6ab84fcc48", + "revision": "83bc01d433244bdab0c8cdd1", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44808,10 +44808,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "e31b1282ed964285b65db62b", + "revision": "a14e9e922a0049d2ad3b57bb", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44829,10 +44829,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "df99f21c209f466c88a5ab86", + "revision": "bb86daae3d014ed1af182389", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036366, + "modified": 1702563036366 } }, { @@ -44840,10 +44840,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242905", - "revision": "c6aeac155a144826a032713b", + "revision": "dfe208610ac84c4098c142ff", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036366, + "modified": 1702563036366 } }, { @@ -44878,10 +44878,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "4363b39d9e5f4470aa247ea2", + "revision": "485674017b3349aa93a20fe9", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036366, + "modified": 1702563036366 } }, { @@ -44889,10 +44889,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "99e58694ca8e43019373f185", + "revision": "fa4bf450dcc247ca9d8a3e3a", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036365, + "modified": 1702563036365 } }, { @@ -44910,10 +44910,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4ca0a53f71cf4746946f28c5", + "revision": "8efa8373bd564d8e8561c0d4", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036366, + "modified": 1702563036366 } }, { @@ -44921,10 +44921,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242925", - "revision": "b8c4056ca2ff4cea82e47964", + "revision": "4cc7c8848508471a92d37342", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036366, + "modified": 1702563036366 } }, { @@ -44959,10 +44959,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "7e92ad7347704458947cb7d9", + "revision": "010016f4762949ddb7f7ea30", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344907 + "created": 1702563036366, + "modified": 1702563036366 } }, { @@ -44970,10 +44970,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "a0525fcd454a431b8194b53b", + "revision": "0ac2bcd187a64ca2a2db0eff", "revision_nr": 1, - "created": 1701809344906, - "modified": 1701809344906 + "created": 1702563036366, + "modified": 1702563036366 } }, { @@ -44991,10 +44991,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "982b60116744454eba9de678", + "revision": "1a5731bc8e2e43e599f4e2ed", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036366, + "modified": 1702563036366 } }, { @@ -45002,10 +45002,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384242931", - "revision": "e4b0fdb9a95c441f836ed0fb", + "revision": "7543ee922b7e4423815cc1dd", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036366, + "modified": 1702563036366 } }, { @@ -45040,10 +45040,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "79f5df1786a54e2ca38355dd", + "revision": "5883364309004020be77b7c8", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036366, + "modified": 1702563036366 } }, { @@ -45051,10 +45051,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "4c0663bfdad3447a9aafce3e", + "revision": "8d6d34a4b9b6445e9e723221", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036366, + "modified": 1702563036366 } }, { @@ -45072,10 +45072,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "560ca09d1d7d4c22bd0686da", + "revision": "19137cb388e84c0280fb4f35", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036366, + "modified": 1702563036366 } }, { @@ -45083,10 +45083,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384243125", - "revision": "49b8459115544a16a4e6c90c", + "revision": "947e6ded3d554d309707a675", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036366, + "modified": 1702563036366 } }, { @@ -45121,10 +45121,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "d7bb00c890034c8b80a001e9", + "revision": "40e6ceca9a934a5a91f291f3", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036366, + "modified": 1702563036366 } }, { @@ -45132,10 +45132,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "1c9bfdb3327a41de94ceaac9", + "revision": "d9ef3057c6c84eed80885ab0", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036366, + "modified": 1702563036366 } }, { @@ -45153,10 +45153,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "69321233c642451da53503b1", + "revision": "f3aec57a693d4f1db04be1c2", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45164,10 +45164,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384243425", - "revision": "b3fa24d8271d4e3da61cc6f4", + "revision": "2d3957502e5048bbae79ab1b", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45202,10 +45202,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "aefb788d1974431598c15564", + "revision": "c334d5ba396e44bd8ce18363", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45213,10 +45213,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "04c1e1f0d2ad4e49bee13a97", + "revision": "2c12acbb68a34164b63e9c7a", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45234,10 +45234,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "28c28002d19f445c82576920", + "revision": "c872c485458e4d6480936b4e", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45245,10 +45245,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384244783", - "revision": "1bc9f21fe52349f69662a38f", + "revision": "aa4ad210424e4d9192859f63", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45283,10 +45283,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "e31afc3377824685a38ac499", + "revision": "613866a7c374459da8f05bec", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45294,10 +45294,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "ce1c65ddf72f4b409fac27fc", + "revision": "7743f3aadc854ede8174eb02", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45315,10 +45315,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "02f58d4914c74f2c9ca248eb", + "revision": "d2e3d2b057ce4616b142c842", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45326,10 +45326,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/050294855698242330/history/1696384244885", - "revision": "f18611f273244972aa6d41ee", + "revision": "f1730f3c73bc4cab93ff9846", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45364,10 +45364,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "643cbb1b54d64b76a55e24b1", + "revision": "e1bbbfa9bda240548b2e0521", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45375,10 +45375,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 2.500,00 IVIP com um rendimento de +50,00 IVIP (2,00%) - Y12XDT27", - "revision": "7e477edda7be4b0d92c5c0bc", + "revision": "8be40c4c30194b65b5b4c1bc", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45386,10 +45386,10 @@ "content": { "type": 1, "value": {}, - "revision": "4c1fcc5b23b349ab81d9af41", + "revision": "7d1cbd985a724568a6210fc1", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45397,10 +45397,10 @@ "content": { "type": 1, "value": {}, - "revision": "d1455fbb8f944d35aa254546", + "revision": "acfe9000c50341a08d8116c3", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45411,10 +45411,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "5ea4a03fba2d4115ba5f5cf6", + "revision": "4b6e3f33a1da4c2c8d0257a8", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45427,10 +45427,10 @@ "totalValue": 9.579933648427893, "currencyType": "USD" }, - "revision": "892e54f0fbcf4fe887f67565", + "revision": "0f51e9bdd4aa4fa9b26c90d0", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45438,10 +45438,10 @@ "content": { "type": 1, "value": {}, - "revision": "027600a10b134ac8a2e3dd20", + "revision": "3a95febe98d9485dbb3f049f", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45449,10 +45449,10 @@ "content": { "type": 1, "value": {}, - "revision": "718f71d0744d4062b76dd005", + "revision": "5b75fdf2ddc34118a83bde75", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45464,10 +45464,10 @@ "dateValidity": 1696468517276, "currencyType": "USD" }, - "revision": "915eba09c0c042a9b52fb6c2", + "revision": "dcf008d7a65448efbb660f92", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45479,10 +45479,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "e143f011a3124068ba06e744", + "revision": "cfbeec2fe5c74c128d7552b2", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45494,10 +45494,10 @@ "symbol": "IVIP", "value": 263.24 }, - "revision": "47dd892c442f4c2a8c9fe4fd", + "revision": "2e33c73eb09f46e4bf8b2a93", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45505,10 +45505,10 @@ "content": { "type": 1, "value": {}, - "revision": "1c651ae953994791874a68a6", + "revision": "d3d20bc8ca1f4aa2a8c7bc25", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45518,10 +45518,10 @@ "value": { "costs": {} }, - "revision": "fc8f22e44c2146f2b1d8955d", + "revision": "1ec749fe177d478bb3b9e1a7", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45563,10 +45563,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "43c3ec0740f34212859c5c76", + "revision": "cb2de927caac4e9e9191b0b3", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45574,10 +45574,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0532.9875.7978.5992-90", - "revision": "6b2526c5c9a14dddb3a3c4fc", + "revision": "11b807158399418f84bf6acf", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45587,10 +45587,10 @@ "value": { "costs": {} }, - "revision": "92cbb6af0dcd4701ab5c4eee", + "revision": "2b67a6066d4344da8ca365dc", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45632,10 +45632,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a873eeb15af04d8ebf00e136", + "revision": "193f8add5b8c47779ca633bb", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45643,10 +45643,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0532.9875.7978.5992-90", - "revision": "0759b6f3421741a1862b5166", + "revision": "f8e31d06d9d6467989a49e2e", "revision_nr": 1, - "created": 1701809344907, - "modified": 1701809344907 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45656,10 +45656,10 @@ "value": { "costs": {} }, - "revision": "25d2696bf3bc42789e857d3a", + "revision": "0d6ea47afe684fb3a4440ce9", "revision_nr": 1, - "created": 1701809344908, - "modified": 1701809344908 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45696,10 +45696,10 @@ }, "money_release_status": "rejected" }, - "revision": "e728dddf52e94ddbba2a23f3", + "revision": "92cdeef08a4d4df19eff805a", "revision_nr": 1, - "created": 1701809344908, - "modified": 1701809344908 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45707,10 +45707,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0532.9875.7978.5992-90", - "revision": "f1b4928008b4486eb4c600b7", + "revision": "292cf95b8e764105b2cd76ba", "revision_nr": 1, - "created": 1701809344908, - "modified": 1701809344908 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45730,10 +45730,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "0011e5193bdb44a29c7a0945", + "revision": "959ab2ff39cd43288980646d", "revision_nr": 1, - "created": 1701809344908, - "modified": 1701809344908 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45769,10 +45769,10 @@ "history_id": 1680059811857, "description": "Compra de 812.799,00 IVIP por 150,00 BRL" }, - "revision": "44b36b28f11a4919ac8acdef", + "revision": "6fbfd001350543e8b3a7122e", "revision_nr": 1, - "created": 1701809344908, - "modified": 1701809344908 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45782,10 +45782,10 @@ "value": { "costs": {} }, - "revision": "736b320b5d9c4a1788aba5f7", + "revision": "540010ecc51a4f27836e42c1", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45817,10 +45817,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "340f47bd0bee492a897caad0", + "revision": "aae801b100b24dd19f149cd5", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45828,10 +45828,10 @@ "content": { "type": 5, "value": "Saque de 812.799,00 IVIP para a carteira 0x76DD50e5E925D29D22251e5b2A71bBB9b5672254", - "revision": "d78e2d9444914739bf324df1", + "revision": "2ec920fd694b4766a9ef2d38", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45839,10 +45839,10 @@ "content": { "type": 1, "value": {}, - "revision": "9a3b1ccb0ed3427a8c79f4bd", + "revision": "c4c4f6292cdb4068b78bc090", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45850,10 +45850,10 @@ "content": { "type": 1, "value": {}, - "revision": "e78b9e3d524b4a50bd21f562", + "revision": "43b366be14ab441a9d2fb175", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45864,10 +45864,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "20a4ad890a2c43f0b3e1b9f5", + "revision": "d6333217e98d46dc91bf73bf", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45881,10 +45881,10 @@ "currencyType": "USD", "balancesModificacao": 1689822000000 }, - "revision": "add664831b604799892f362d", + "revision": "a97d44d1f8a64b54bfe2f378", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45896,10 +45896,10 @@ "symbol": "IVIP", "value": 6.23 }, - "revision": "857e7bdca32c481da2a7afde", + "revision": "4894493556014a0a8bd3d82e", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45907,10 +45907,10 @@ "content": { "type": 1, "value": {}, - "revision": "74afc560aea948c99d34ae7a", + "revision": "144e12ca96f74c6c99da1dcc", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45920,10 +45920,10 @@ "value": { "costs": {} }, - "revision": "c1012791f4cd4d328afc1b32", + "revision": "9be311dbb8da47ea91000f9b", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45965,10 +45965,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "174c948b12664b2d9889f1f7", + "revision": "0d7308dd97334c34a1bcbe13", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45976,10 +45976,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 120,00 para a carteira iVip 0543.4133.5642.4860-00", - "revision": "596aae35b0254cf38c994500", + "revision": "b2136e8f0b6244b1bb062d81", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -45999,10 +45999,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "3bcba53efb824e8f97dcc4e8", + "revision": "89384d3603f544dab5744a09", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46038,10 +46038,10 @@ "history_id": 1689182033050, "description": "Compra de 51.023,00 IVIP por 120,00 BRL" }, - "revision": "91bd83c38531429ba1fb75a3", + "revision": "62095c5a50f040dcb94e2c82", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46049,10 +46049,10 @@ "content": { "type": 1, "value": {}, - "revision": "467f94360c534ed9b8a2e66d", + "revision": "91514afc977147f6ab8c98e1", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46060,10 +46060,10 @@ "content": { "type": 1, "value": {}, - "revision": "e8d2d38e03314b9289ec3fb1", + "revision": "cccf80ca6be64e3d9e08b792", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46074,10 +46074,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "7b38229cfdbc4aa3beb85c2a", + "revision": "5b1b34f05ca148478b1bbd4b", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46094,10 +46094,10 @@ "value": 1696906800000 } }, - "revision": "edac48c2989448b8a4d02fe7", + "revision": "9ddce5950daa48448ac63dd2", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46105,10 +46105,10 @@ "content": { "type": 1, "value": {}, - "revision": "a19026c221ed41c9940d6ca2", + "revision": "33c0b0629f30415cafc440c1", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46122,10 +46122,10 @@ "value": 1699670706134 } }, - "revision": "9abb56d09d4d4d50a724b292", + "revision": "2f451d996b2841158ef881d5", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46143,10 +46143,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "364cd447d1124a81927fdd68", + "revision": "85085506f67e4cd3a24d50ab", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46154,10 +46154,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697078706134", - "revision": "94413af8c2b34cf28c2e8241", + "revision": "55dca4ef99324b32a5ead75f", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46198,10 +46198,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b69c2c1a6e354c2394d40eba", + "revision": "7618166ddf984bdf9e981872", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46209,10 +46209,10 @@ "content": { "type": 5, "value": "Deposito de um valor 99.635,85 IVIP para a carteira iVip 0556.4401.2114.1117-40", - "revision": "f90aa9baa3de400a8775e668", + "revision": "53e9b8fe352a4daaa3c730cb", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46226,10 +46226,10 @@ "value": 1699711608666 } }, - "revision": "b5868c6d1ec146b39fb186d0", + "revision": "43efc6df026f48aea2821185", "revision_nr": 1, - "created": 1701809344909, - "modified": 1701809344909 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46247,10 +46247,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "e27a93a2276144e39d9371fb", + "revision": "ffd3f4ed6f5e4939978c7865", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46258,10 +46258,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697119608666", - "revision": "4aa83578148d4d879049db82", + "revision": "61b98ed477f04e83aa4e9feb", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46302,10 +46302,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ea55b08da2134c8895e0d5cb", + "revision": "7c63e0435e974c11bb7cee8e", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46313,10 +46313,10 @@ "content": { "type": 5, "value": "Deposito de um valor 25,00 BRL para a carteira iVip 0556.4401.2114.1117-40", - "revision": "8a5e7e37ab4b4156a919ede4", + "revision": "3c8c12f0287148a99c58262f", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46334,10 +46334,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f7cc01e8f75646268e3561f4", + "revision": "f4846173902640798676b3ca", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46345,10 +46345,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/055644012114111740/history/1697122378430", - "revision": "cbf0116aee014656b5178de6", + "revision": "512f2c85ce15464785ee89b0", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036367, + "modified": 1702563036367 } }, { @@ -46384,10 +46384,10 @@ "description": "Compra de 46.978,00 IVIP por 25,00 BRL", "status_detail": "accredited" }, - "revision": "b7df231641ba4ce2bfa24472", + "revision": "43d8468cf8064c999153c9a5", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46395,10 +46395,10 @@ "content": { "type": 1, "value": {}, - "revision": "d5448654c3374d9eb12f1b34", + "revision": "eb1d865319d0418f8ebc23f7", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46406,10 +46406,10 @@ "content": { "type": 1, "value": {}, - "revision": "aa648719f3d247459a6b52cd", + "revision": "32ffc650e8d94aeba084c066", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46420,10 +46420,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "f67454a62b434270b0b61445", + "revision": "e008e623c53d4c558834a6ef", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46439,10 +46439,10 @@ "value": 1697079600000 } }, - "revision": "00c0a649f4e44e64930bfb02", + "revision": "8548da271b234cf0989af774", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46454,10 +46454,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "b33cfabcf45540b6ad82f166", + "revision": "19abf4b62f7e4d93a84f86b5", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46469,10 +46469,10 @@ "symbol": "IVIP", "value": 720.46 }, - "revision": "31a3fc9594d94367b3164286", + "revision": "d7be37a1494e4ead8a2efb0b", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46480,10 +46480,10 @@ "content": { "type": 1, "value": {}, - "revision": "4a7a7a19ca854b0593eb560c", + "revision": "cf072c7bc7294ed5861977d8", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46493,10 +46493,10 @@ "value": { "costs": {} }, - "revision": "fbc67d6af3d9437592594083", + "revision": "b8a4084c93ed41afa973bc7c", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46538,10 +46538,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a1a607d07b5943f28700b400", + "revision": "836a39968e324b499c080f65", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46549,10 +46549,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0565.4676.9240.3558-40", - "revision": "667dea0a4c6f44c99eb54b07", + "revision": "249365a593d64843935e7fb8", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46562,10 +46562,10 @@ "value": { "costs": {} }, - "revision": "833627d590d34359ab53b99d", + "revision": "5e169705d606412f9fa9a9f2", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46607,10 +46607,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "4893cc9083a1454a9460df12", + "revision": "c8f546b187fe473db2907d0e", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46618,10 +46618,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 299,00 para a carteira iVip 0565.4676.9240.3558-40", - "revision": "cb5467c818574495b6af1b04", + "revision": "8cbf69f954274da888569841", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46641,10 +46641,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ecc067a03c5245e791c678f7", + "revision": "6e36b0e623f744e1a28f5e00", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46680,10 +46680,10 @@ "history_id": 1684624980630, "description": "Compra de 5.352.934,00 IVIP por 1.099,00 BRL" }, - "revision": "2cfb5ca4932b4b9795168310", + "revision": "5ea2a31056bc49c58db0673c", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46693,10 +46693,10 @@ "value": { "costs": {} }, - "revision": "dd4acb323eca404683a3b37c", + "revision": "4a1cb48742174de09fac6f5c", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46728,10 +46728,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "8a22ffc7158c4d37bf2e6cff", + "revision": "682b74d4b09a459baf0400ea", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46739,10 +46739,10 @@ "content": { "type": 5, "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", - "revision": "b6ec4aa5ce8946c19fe40890", + "revision": "5012d3ad1c0e4e0cab214a80", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46752,10 +46752,10 @@ "value": { "costs": {} }, - "revision": "767fad012a4c4ab1beeff941", + "revision": "3f9268f4052049aaa64465e5", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46787,10 +46787,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "d3954d9cd794489295999b06", + "revision": "bc0017d8209a48f9b93d6fe0", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46798,10 +46798,10 @@ "content": { "type": 5, "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", - "revision": "1c74940ae4d340ec8cbda495", + "revision": "fff9ac30797a4a5699453f57", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46811,10 +46811,10 @@ "value": { "costs": {} }, - "revision": "728a578b40894a19a0c61322", + "revision": "b60b9b58a8794e35904936d3", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46846,10 +46846,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "40bda0546e4d43f7886e4e0e", + "revision": "9839ac907d054439a6533167", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46857,10 +46857,10 @@ "content": { "type": 5, "value": "Saque de 5.352.934,00 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", - "revision": "5a86af10472d4729b56b5435", + "revision": "47892231247d4b59b3dacb02", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46872,10 +46872,10 @@ "label": "Taxa de 3,00%", "amount": 160588.02 }, - "revision": "510c453f14934990a42a7ea1", + "revision": "406f24b32b2946f9b472edb1", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46892,10 +46892,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "a2b84a4b6c504ac981740249", + "revision": "9fa3df9613c548a6a0945744", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46903,10 +46903,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/056546769240355840/history/1692620472334", - "revision": "878b0a7516ee44709e38a27c", + "revision": "6e142ed6cd2b4007b4b96a87", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46914,10 +46914,10 @@ "content": { "type": 2, "value": {}, - "revision": "68c20896d2504bce9fbf48d3", + "revision": "0c1f707a076f490695749513", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46961,10 +46961,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "a78ec1ca116c46178ed8d5d5", + "revision": "ac04c325eebe4e7dbe113b85", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46972,10 +46972,10 @@ "content": { "type": 5, "value": "Saque de 5.192.345,98 IVIP para a carteira 0x89c6809A4088f196dc17371f890839a5b461A792", - "revision": "7b930604a2434d4389740bd1", + "revision": "beff9e86359e4e4c8efb1bea", "revision_nr": 1, - "created": 1701809344910, - "modified": 1701809344910 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46983,10 +46983,10 @@ "content": { "type": 1, "value": {}, - "revision": "8458c1d7b51a40c4818777ce", + "revision": "207e456daae14839aba870e1", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -46994,10 +46994,10 @@ "content": { "type": 1, "value": {}, - "revision": "a70a5774495d4b88a3476e06", + "revision": "9c3a28ac736b4d02a2a1a7eb", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47012,10 +47012,10 @@ "value": 1692384424311 } }, - "revision": "92fdfee46212492eb5bab366", + "revision": "9086f4b43a8742c89421b046", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47032,10 +47032,10 @@ "value": 1692586800000 } }, - "revision": "ca1afd2b561b47e1bf8978a1", + "revision": "4b6e09aae7bb4e578021b629", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47043,10 +47043,10 @@ "content": { "type": 1, "value": {}, - "revision": "4cf5de872cae4e7cad001b62", + "revision": "c9d31a36bcab44169f3db3c3", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47054,10 +47054,10 @@ "content": { "type": 1, "value": {}, - "revision": "45f28f09272d47ce8d97062c", + "revision": "1e4ad583093a47d7a8c23634", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47070,10 +47070,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "7c42673cae654dc7bfb5d388", + "revision": "e02ea88d65524e0783db6f81", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47085,10 +47085,10 @@ "symbol": "IVIP", "value": 59.89 }, - "revision": "2d262be07bfd4136a79efd0e", + "revision": "e6fbd7af33d848c182c8833d", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47096,10 +47096,10 @@ "content": { "type": 1, "value": {}, - "revision": "b317db54c3ba4152b904d8ff", + "revision": "df5523943ee6478aa526afcc", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47109,10 +47109,10 @@ "value": { "costs": {} }, - "revision": "64e76c94f1ed4464a8360d3a", + "revision": "cdbafd3320b948e787651802", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47154,10 +47154,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d95676b422a143d69e6834cb", + "revision": "8deee6be441945288c90b516", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47165,10 +47165,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "3d1bfdfc478d4306bc725b44", + "revision": "8c5bf3cfb46f4dfd8917e3ec", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47178,10 +47178,10 @@ "value": { "costs": {} }, - "revision": "ed683b85a21e487daf14093b", + "revision": "15e58bd09c07498aa4db5b8e", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47223,10 +47223,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "291dc43c260543df882173de", + "revision": "ea6149f7daf944d38b31e3cf", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47234,10 +47234,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "c8663d9d65a14a4ea55b8ea3", + "revision": "49412c4426b14362b2a60021", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47257,10 +47257,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ac2ae923da514e5ab4206b0b", + "revision": "81f19452c13c436a983d3a64", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47296,10 +47296,10 @@ "history_id": 1679871671858, "description": "Compra de 213.025,00 IVIP por 40,00 BRL" }, - "revision": "b7540ace88294c47825c81c8", + "revision": "5c6227f7ca2749a281669f1e", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47309,10 +47309,10 @@ "value": { "costs": {} }, - "revision": "b63fc31a26844ae783e79627", + "revision": "05ba6891ce8e4bac8f632ace", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47344,10 +47344,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "76e1d238121845a180ba2d44", + "revision": "e110e04ec2404fd9a5808283", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47355,10 +47355,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "aaaace33e68345a6977f691d", + "revision": "c7c78cb6fe4e4c5db49dcc5c", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47368,10 +47368,10 @@ "value": { "costs": {} }, - "revision": "e83136b2273247baa865628b", + "revision": "d28455a4c76a47eabbcbddf8", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47403,10 +47403,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "79ab4fd9f5ca4431956edbf4", + "revision": "4102ecd4ddac4d10853abae5", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47414,10 +47414,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "86b1c79572be403ba0058c73", + "revision": "23bdcce408c045faba637de4", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47427,10 +47427,10 @@ "value": { "costs": {} }, - "revision": "cc2747d382eb4908a2e0a43c", + "revision": "8726933aa69b49e29ff0d836", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47462,10 +47462,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "db85bbf258f245a1ae277f31", + "revision": "dd08e356ec4c41f99e7e6c4b", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47473,10 +47473,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "67772e943bd54be59fa01f16", + "revision": "0b143dda731743d4a53b8177", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47486,10 +47486,10 @@ "value": { "costs": {} }, - "revision": "bd08ec4f99b547baa6484aac", + "revision": "667f4ff50108459685242d8a", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47531,10 +47531,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9957f8eb25c54c9fa091d837", + "revision": "2f165c8fd3b3453690c9be0d", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47542,10 +47542,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "0fee2d3148114a59a51c796a", + "revision": "60a05609b64b43db87d0fb0c", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47565,10 +47565,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "b984ff0c194240a68fbf3519", + "revision": "66be0737083547d09cd6bea8", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47604,10 +47604,10 @@ "history_id": 1689623842206, "description": "Compra de 32.205,00 IVIP por 50,00 BRL" }, - "revision": "5477a90d01ec4041a3988b3c", + "revision": "927ca81a595f4abfb2e1704f", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47621,10 +47621,10 @@ "value": 1692566630901 } }, - "revision": "3d7e1a61a72f40f695141613", + "revision": "9ef532420482497eac6934fa", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47642,10 +47642,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "bd7eb0dd053946f581aac412", + "revision": "47f4deae0edd4a3991903a37", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47653,10 +47653,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1689974630901", - "revision": "64cbfd83712a4e47bdd7d1c9", + "revision": "c724627fb570452fbf18e9a1", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47686,10 +47686,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "000536456ada4b87a7bcd65c", + "revision": "223eae72c83b49b987ed6c78", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47697,10 +47697,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "d21182b9812b4ecab3b9d2fd", + "revision": "ca9d825e88c842ee8916bd1f", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47714,10 +47714,10 @@ "value": 1692837872747 } }, - "revision": "7969d68236454eee8cfe2033", + "revision": "1781694160fd4bec82130725", "revision_nr": 1, - "created": 1701809344911, - "modified": 1701809344911 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47735,10 +47735,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "9628a140480f4bc985ab3ffa", + "revision": "f7454665debe432fa431a3cb", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47746,10 +47746,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1690245872747", - "revision": "b92c61b5488642118659ee36", + "revision": "7fdd564ff9f6422c88984795", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47789,10 +47789,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "8f85a8c0be0b4d8899512528", + "revision": "3503f302dabd4bbb96616aaf", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47800,10 +47800,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0577.5100.7037.4496-20", - "revision": "23cdcf5c4b3745beb95e1a6d", + "revision": "61372ed85d6746feb6be25ff", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036368, + "modified": 1702563036368 } }, { @@ -47823,10 +47823,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "70c64d026a99417a93b8ef5e", + "revision": "b28225ddc6df49278fa44eb3", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -47862,10 +47862,10 @@ "history_id": 1690318679149, "description": "Compra de 16.406,00 IVIP por 20,00 BRL" }, - "revision": "8bceeab1982d4a91824fe1e1", + "revision": "7246e4ab7681418bb91c5aaf", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -47879,10 +47879,10 @@ "value": 1695065586359 } }, - "revision": "dfac37015132471993883a53", + "revision": "8d7827794438462b915789b1", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -47900,10 +47900,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "31268d2de92f492a80a5a6f0", + "revision": "0339da573be842cf8dbc2a78", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -47911,10 +47911,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692473586359", - "revision": "1f76bbeb0fa64ad296bd13c2", + "revision": "35964df3cd714640b9952393", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -47954,10 +47954,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "6dfacf72d49346f0bb466a77", + "revision": "a9588bbc3baf4c149a852c76", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -47965,10 +47965,10 @@ "content": { "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "7eafbefb98394c6a8e9f5549", + "revision": "278abfff887c40c3b3c49dc4", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -47986,10 +47986,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "acd0edbe68244ce18f580093", + "revision": "794ba323a9544d6ca9a8bdfd", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -47997,10 +47997,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692476742525", - "revision": "1b6069f6db014c63a866bca7", + "revision": "62d5536df0524c83843760b1", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48035,10 +48035,10 @@ "description": "Compra de 32.045,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "534fbfcc43404a63a2725ae6", + "revision": "41643175ea10488b826f1fa5", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48052,10 +48052,10 @@ "value": 1695588810545 } }, - "revision": "84ac8166ee784d9eaecb7a81", + "revision": "ffe237968a024dbf904ab1a1", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48073,10 +48073,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "2009f26999864b40a9b90912", + "revision": "e6516545d51c421dbfb4fb5f", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48084,10 +48084,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692996810545", - "revision": "7f9f89e24da648558b29fe83", + "revision": "7f06fd584be14d379ef0ee80", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48117,10 +48117,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "41e9d7e0e4ce4fb49e70d319", + "revision": "569a9eaff73f48b38babb0fc", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48128,10 +48128,10 @@ "content": { "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "126404b0aa8e499dbde96600", + "revision": "1631c162054e42d88cda0034", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48145,10 +48145,10 @@ "value": 1695588844899 } }, - "revision": "55cf3604b86a431b92a5880e", + "revision": "a6adbc84b2b245e59f636c69", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48166,10 +48166,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a660c14925ad4c5c8dda7933", + "revision": "c89c1cd295484c13a27b5ecb", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48177,10 +48177,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1692996844899", - "revision": "eb206a83019f46ba9ad9d287", + "revision": "b82efb0ad3f04bc59ade9998", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48220,10 +48220,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "272541a592664a9a872869bd", + "revision": "e164ce0bd306455ba3292ab7", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48231,10 +48231,10 @@ "content": { "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "dc95f49df7a5434c9ed8c7a1", + "revision": "4011021942444421ac96f996", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48252,10 +48252,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b9c54fd01b104520af2743de", + "revision": "bd47ede931514580bc44d472", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48263,10 +48263,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693000377717", - "revision": "1a6b9a1127ed42859d5db581", + "revision": "fec6047a5caa4b338c93dd65", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48301,10 +48301,10 @@ "description": "Compra de 40.254,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "1e00c798a58f4951980f924e", + "revision": "cb57077967f14a1e8be31fee", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48318,10 +48318,10 @@ "value": 1696197427916 } }, - "revision": "f0386ace99bc40329be707a7", + "revision": "9ed754b5b1ce48ea8d0ff01b", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48339,10 +48339,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d7ab73efab2c4045a1862359", + "revision": "84c4dba895c14eb69ede6fc0", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48350,10 +48350,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693605427916", - "revision": "582404c9297b4d2fb8b64be7", + "revision": "e69dbe02408249da9916cde5", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48383,10 +48383,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "7188386379b44f2dbb2b52e1", + "revision": "5da197db59674f28ac6815be", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48394,10 +48394,10 @@ "content": { "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "aaafa6d4cc574fcd85f6efce", + "revision": "aed328e2ad584ffe8f87ffce", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48411,10 +48411,10 @@ "value": 1696197762263 } }, - "revision": "ce80f96ea2094909b72217e7", + "revision": "b250241c71b443c9907a9474", "revision_nr": 1, - "created": 1701809344912, - "modified": 1701809344912 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48432,10 +48432,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "2e4f5c794e6f43a2930edc35", + "revision": "990de32ecae0468ebd0b2874", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48443,10 +48443,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693605762263", - "revision": "92ea877f4cf3470983bf796c", + "revision": "66d3df87cd3c485799b4bc90", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48486,10 +48486,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a507f3deee8e441d8628a028", + "revision": "dc83a7cc3fb74fb78a0acf58", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48497,10 +48497,10 @@ "content": { "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "f7b3e707a6b7445383884dc3", + "revision": "f56e4f9eda3f4d9fb6a520bf", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48518,10 +48518,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "67e06ae496f54ae0860c9b4f", + "revision": "703625eaf1c74f1fb42fbde2", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48529,10 +48529,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1693606719867", - "revision": "3d816154f204430388ff3618", + "revision": "a996e6a5a21849228cc11595", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48567,10 +48567,10 @@ "description": "Compra de 33.429,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "72e38f12227d45c2ade458cb", + "revision": "26d627ddb10d4130a9ea44fc", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48584,10 +48584,10 @@ "value": 1697246922996 } }, - "revision": "9d5c8d25fc7046ecb0b9c5a6", + "revision": "a24c7041ca8646ffbccfadc6", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48605,10 +48605,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "cde52fb898b041349f99052e", + "revision": "600b6f79dff547b38c7db974", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48616,10 +48616,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694654922996", - "revision": "83bf3ccc3691465d914c48f5", + "revision": "796b2216b5cb4130994cabb7", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48659,10 +48659,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a4736aa1cc814c36aec599b5", + "revision": "adfb268f418444f8a6f3cf7a", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48670,10 +48670,10 @@ "content": { "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "57306c1d2eba4b5b9a866ca4", + "revision": "56138145ca184832b68adbbb", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48687,10 +48687,10 @@ "value": 1697320326075 } }, - "revision": "67e194be9be24e7289c7890a", + "revision": "aa4a3891874e4921a8020ee4", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48708,10 +48708,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7cb8eb0b32e5493fb11fa7fa", + "revision": "60988ad3319a418f8b8dd609", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48719,10 +48719,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694728326075", - "revision": "97eeae8515b84b31bde366db", + "revision": "9447713de46a43fe95477296", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48762,10 +48762,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "cb005809a2fb4d32b2ec38b7", + "revision": "8c128e819fef4f6ea1b5bda1", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48773,10 +48773,10 @@ "content": { "type": 5, "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "cd835abb2ea6417ba2d1661c", + "revision": "0ae991a4e40e4b0f9370a591", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036369, + "modified": 1702563036369 } }, { @@ -48790,10 +48790,10 @@ "value": 1697320859603 } }, - "revision": "bca9175585ff48f6bd0ca17c", + "revision": "1c272c49cf3d47b995e63dcf", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -48811,10 +48811,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "aefa83dba8f347a39f9144b8", + "revision": "1c454616b57f4d85b5b0bf21", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -48822,10 +48822,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694728859604", - "revision": "0909ca4b1d594401b481fb34", + "revision": "04b110a63e4d4720879f2712", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -48855,10 +48855,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "aea46202812a43289e4593f9", + "revision": "c5214663c2cd44c6b8e1900a", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -48866,10 +48866,10 @@ "content": { "type": 5, "value": "Deposito de um valor 100,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "24acc3b339ac4d7d9d42c33b", + "revision": "76920a8b11d647cfa70cb8dd", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -48887,10 +48887,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c15940bdf3d54bf0b1e0bf83", + "revision": "5189782b28874aaaa84ffad6", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -48898,10 +48898,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694731526035", - "revision": "d2b3299fef634230a21ce9c6", + "revision": "c957cd2bd578424da4d7eed3", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -48936,10 +48936,10 @@ "description": "Compra de 121.808,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "0c44bac16a6f4116b7313424", + "revision": "3fffeff965a34249b4ec3013", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -48957,10 +48957,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a6cf4b37dae64f1e8acb138c", + "revision": "0956b84deb0b429b925755ee", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -48968,10 +48968,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694793493188", - "revision": "cc528b362f2a488eaacc922b", + "revision": "60b523422d4040a19adf7999", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49006,10 +49006,10 @@ "description": "Compra de 25.384,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "019bd23b314c4ef499a1e6f2", + "revision": "01e149898887490e8c30b4d4", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49023,10 +49023,10 @@ "value": 1697558109290 } }, - "revision": "bc6a80c1df8345b49273bdda", + "revision": "84e84731b746495fbdc4f54b", "revision_nr": 1, - "created": 1701809344913, - "modified": 1701809344913 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49044,10 +49044,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "579c41d747f64555b4b9af85", + "revision": "17b91f7f57fa4c8e958e1180", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49055,10 +49055,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694966109291", - "revision": "c10df96a45114e8c872cc6c2", + "revision": "7ee979c951de4fc99e05fe87", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49098,10 +49098,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ca42add5323c467c9c18d025", + "revision": "bec9cf20e0c848ea9f738e5c", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49109,10 +49109,10 @@ "content": { "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "f69dda00f75146dd93315371", + "revision": "fe3e00eb33304c488f7edba7", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49130,10 +49130,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "0ed0b62a856e4e25ab320937", + "revision": "f086478dde5b45a8b9ee4e9a", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49141,10 +49141,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1694988703973", - "revision": "b205d026528a4804ab7b298b", + "revision": "82d0a9aace2945c09aa1a569", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49179,10 +49179,10 @@ "description": "Compra de 25.302,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "566e0fdccca54e28a7de095a", + "revision": "9f5b921586b04ef8b4baf2de", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49196,10 +49196,10 @@ "value": 1699112028284 } }, - "revision": "f78d7cc4e62f4cf9ba6cffb2", + "revision": "003eb9d8f2ec48ef8dd348cc", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49217,10 +49217,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "bfb92b2fcafe46a9b0105dfe", + "revision": "c92a3bd3845948df86d866ec", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49228,10 +49228,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1696520028285", - "revision": "7b58a07003364c19a66de6a8", + "revision": "c66a3723bc0f4c3986eeb126", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49272,10 +49272,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c3a85b679e294c01a42257da", + "revision": "1fd087b167d54c8abace82ba", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49283,10 +49283,10 @@ "content": { "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 0577.5100.7037.4496-20", - "revision": "dfea5accf7f94e66a8a56b1f", + "revision": "8fa4557566d142178d132285", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49304,10 +49304,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "86613e3ca3d04af28f29d918", + "revision": "90b64e75adea4baea26df9fd", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49315,10 +49315,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/057751007037449620/history/1696520773436", - "revision": "e9c63cf74e0640c8a33a7aff", + "revision": "67c04506148d486ea2105958", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49354,10 +49354,10 @@ "description": "Compra de 22.059,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "2533383a48454a5a82b54d41", + "revision": "e04c978936684d86b75bcd29", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49365,10 +49365,10 @@ "content": { "type": 1, "value": {}, - "revision": "bbcd3f2980174818a5fdd99b", + "revision": "bb637d306a964ee2bb4e9971", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49376,10 +49376,10 @@ "content": { "type": 1, "value": {}, - "revision": "79053cc1c7d94b94bb9751b6", + "revision": "41e5e95041d746128f174441", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49394,10 +49394,10 @@ "value": 1696173793593 } }, - "revision": "3bf7e852c09946d8897a6856", + "revision": "422d2ca46a344f6c90f83a94", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49414,10 +49414,10 @@ "value": 1697338800000 } }, - "revision": "49b4e9885f774259b65bbb76", + "revision": "cbb3410fe65d4630aabb70a0", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49429,10 +49429,10 @@ "symbol": "IVIP", "value": -15912.37 }, - "revision": "27f0d09315e948a29a553bf6", + "revision": "af83969caa3f429389bacc52", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49440,10 +49440,10 @@ "content": { "type": 1, "value": {}, - "revision": "c5665098052445fc8b65c627", + "revision": "670a079d1c194dcc8cce5d52", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49453,10 +49453,10 @@ "value": { "costs": {} }, - "revision": "4a2b027dae594e9daf678318", + "revision": "12800c0757374cbd801c15ef", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49498,10 +49498,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "2db3a84cf3c74d2fa9e70415", + "revision": "375c95e3b01646f2a7960dc0", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49509,10 +49509,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0583.5908.1725.8996-56", - "revision": "79d517fc667a4c1a8e8f1b9d", + "revision": "f2ea3e8b1c2d435e86efa233", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036370, + "modified": 1702563036370 } }, { @@ -49532,10 +49532,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "f0388b389866492e938cf9c1", + "revision": "1c294c0dbf71444a9428458a", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49571,10 +49571,10 @@ "history_id": 1684627186163, "description": "Compra de 14.612.195,00 IVIP por 3.000,00 BRL" }, - "revision": "d11c60da780d4fd596947311", + "revision": "d9fddbd27bdf4a1baf8032cc", "revision_nr": 1, - "created": 1701809344914, - "modified": 1701809344914 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49586,10 +49586,10 @@ "label": "Taxa de 3,00%", "amount": 438365.85 }, - "revision": "c5f7d5644cc44ffa9104f679", + "revision": "9dd5883af7c14ca18e1dde39", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49606,10 +49606,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "957a33ac49224a79811b35a2", + "revision": "11410416ef374f0c867de7a2", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49617,10 +49617,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/058359081725899656/history/1692302387863", - "revision": "2ae2ecee56b0458f9b00c116", + "revision": "61d47dd35adb4f9cb842a415", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49628,10 +49628,10 @@ "content": { "type": 2, "value": {}, - "revision": "b1a0d0c562554cbaae0965bc", + "revision": "4190211384fe408d8d85f584", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49675,10 +49675,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "9d4a7e3fa2614a00a32f9e39", + "revision": "5b8013d1790b4392bfb2531e", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49686,10 +49686,10 @@ "content": { "type": 5, "value": "Saque de 14.173.829,15 IVIP para a carteira 0x5cD8D20fc31429974550e7e677C493554c46a73A", - "revision": "3b21d04572f048748b06be2f", + "revision": "d84712bd15384eec87da86c5", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49701,10 +49701,10 @@ "label": "Taxa de 3,00%", "amount": 438365.85 }, - "revision": "1e823b7571c74c9a8f378ac4", + "revision": "c146b5205d024213bce1eb73", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49721,10 +49721,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "eb96ee57d48848978006eaae", + "revision": "fde7db26775848a88d732def", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49732,10 +49732,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/058359081725899656/history/1692441112310", - "revision": "2bdb9a5ffb8b45e89fc127cb", + "revision": "9a4171996a114566a770b1ef", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49743,10 +49743,10 @@ "content": { "type": 2, "value": {}, - "revision": "fb5949cecb5647828b9b637e", + "revision": "30d162d1e8664848b170a64e", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49790,10 +49790,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "511c5be35d214e82819591b4", + "revision": "e699ca49332b4d00b501a5e2", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49801,10 +49801,10 @@ "content": { "type": 5, "value": "Saque de 14.173.829,15 IVIP para a carteira 0x5cD8D20fc31429974550e7e677C493554c46a73A", - "revision": "5d0b57aa6a2a44d98a8b3e73", + "revision": "dbaae8e5a4ab4324aacd5d31", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49812,10 +49812,10 @@ "content": { "type": 1, "value": {}, - "revision": "a6f4b729f754446d9f5f7836", + "revision": "4a320e6a52ba41019613b900", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49823,10 +49823,10 @@ "content": { "type": 1, "value": {}, - "revision": "2e4e4f23a35f442fa9bb2f70", + "revision": "766e09e920154d77a21c2b7f", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49837,10 +49837,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "0027328b58c04227a52c77d5", + "revision": "a45cfb3a0f874bd38735c67b", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49857,10 +49857,10 @@ "value": 1696129200000 } }, - "revision": "78d4ea5ff2f94995a5561401", + "revision": "98f3aa80228f4e7f83c1273d", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49868,10 +49868,10 @@ "content": { "type": 1, "value": {}, - "revision": "4654088a9b4041a7a7aaee89", + "revision": "260524d25e9c4cabb75a2dc9", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49879,10 +49879,10 @@ "content": { "type": 1, "value": {}, - "revision": "c26907f87bc34f53ac5ad219", + "revision": "553dd0095ca142db9c70013e", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49890,10 +49890,10 @@ "content": { "type": 1, "value": {}, - "revision": "2698fd7634864f65ac3e8c99", + "revision": "516c823639434847ac99b0f9", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49904,10 +49904,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "3a704b4f5acb43f1b62a19e9", + "revision": "3d18cf6b5ff54662825690c8", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49920,10 +49920,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "567ffa763dd1425a8712c1ae", + "revision": "b798d9fd7e514aa8a32d184d", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49935,10 +49935,10 @@ "available": "30.00000000", "value": 6.027 }, - "revision": "d04be98e47624ef0b03e1b4e", + "revision": "2eb3ad1a336948b081360133", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49946,10 +49946,10 @@ "content": { "type": 1, "value": {}, - "revision": "7e1cc0f2fa464c7d90ab736d", + "revision": "7a33f5bdcb3f4338b365b108", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -49959,10 +49959,10 @@ "value": { "costs": {} }, - "revision": "5bb9a90eb7fb4764aa658def", + "revision": "a71259f4808f429484aaf9fe", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -50004,10 +50004,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3b707bf0d97b42588c1cff64", + "revision": "60bed228443a4ff18f60f84f", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -50015,10 +50015,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0600.4447.6007.1925-36", - "revision": "6d2f5f2671e44c69aa28d16b", + "revision": "29b3fef4f0a54c669bc49567", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -50026,10 +50026,10 @@ "content": { "type": 1, "value": {}, - "revision": "4607d4dfc6f241a4b86c783c", + "revision": "b80b013ec6af42fcad324187", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -50037,10 +50037,10 @@ "content": { "type": 1, "value": {}, - "revision": "968fbf9c026d4c7e86051d3e", + "revision": "8fb303da72e843e68ceefa8a", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -50051,10 +50051,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "6a9e4da633224d2e84ecc6f0", + "revision": "8e459dd929d44b7a8192f10c", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -50067,10 +50067,10 @@ "totalValue": 6.03, "currencyType": "USD" }, - "revision": "031091db2d9f421c95613885", + "revision": "7cb9b28a8a134997b2a6526e", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -50082,10 +50082,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "f0c9069e10bd44539be3bdee", + "revision": "821c1972a65a42848622f39d", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -50097,10 +50097,10 @@ "symbol": "IVIP", "value": 0 }, - "revision": "0cc41993ea0e4403baf8eca9", + "revision": "eb17e7e984d44796b027950e", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -50108,10 +50108,10 @@ "content": { "type": 1, "value": {}, - "revision": "80cedc01d6ee441d9cb2120f", + "revision": "c5245a6adb72430facbe130b", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -50121,10 +50121,10 @@ "value": { "costs": {} }, - "revision": "21869dc2a54b46caa2320a13", + "revision": "536d51bd384d4c489aae9416", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -50166,10 +50166,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a28945410d2e48bb9b84a362", + "revision": "c8d68f7e2b104b0a9a6db016", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -50177,10 +50177,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0602.8179.3071.1252-50", - "revision": "f2412543c36c4a4583b44c44", + "revision": "836d88fadb3f41899912406b", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036372, + "modified": 1702563036372 } }, { @@ -50200,10 +50200,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "6e82758c0bcc4d00be3b6e0d", + "revision": "e230b7382ad24790bc8f53d3", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50239,10 +50239,10 @@ "history_id": 1684702707589, "description": "Compra de 145.829,00 IVIP por 30,00 BRL" }, - "revision": "3a3b5cea1bff4c75b156df10", + "revision": "d4019d89aedd4ab8b9b9bf1f", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50252,10 +50252,10 @@ "value": { "costs": {} }, - "revision": "5d192d3c8c154e829844a418", + "revision": "13eaf8ef189348aebe405f43", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50287,10 +50287,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "955730bfa4cc49a3917cf49f", + "revision": "809b7e235cb442fea76e8c21", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50298,10 +50298,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0602.8179.3071.1252-50", - "revision": "f638e84cdf1947ec91a78333", + "revision": "f39b9b6c5e1543dd8a69b40b", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50311,10 +50311,10 @@ "value": { "costs": {} }, - "revision": "689a7d5901c8491d9508dea6", + "revision": "a3eb79af593b4650a946ec17", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50351,10 +50351,10 @@ }, "money_release_status": "rejected" }, - "revision": "92028732b5774ad0a319ed91", + "revision": "84b80f2cdade41049ff2a675", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50362,10 +50362,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.055,00 para a carteira iVip 0602.8179.3071.1252-50", - "revision": "26603e93dc044a6d8cebfcae", + "revision": "10275302349345149e2cd656", "revision_nr": 1, - "created": 1701809344915, - "modified": 1701809344915 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50383,10 +50383,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "633531e81b754b078b2506cc", + "revision": "f6b12283c6f04e4e96de12e5", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50394,10 +50394,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/060281793071125250/history/1690250551090", - "revision": "06dcfea789f94224b2926b14", + "revision": "01524db8b93347429d512e92", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50431,10 +50431,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "0eccc0831c174ae68787513d", + "revision": "5b61b895b74e4fd4ae818072", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50442,10 +50442,10 @@ "content": { "type": 5, "value": "Saque de 145.829,00 IVIP para a carteira 0xD99D89C01D8F4F0809a32D3916CbC94331E7b87e", - "revision": "b110b930fa8b424a858c112a", + "revision": "19a1038c8cf74ca7a82383da", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50463,10 +50463,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "3a1458af9fa14f829ce1a3b2", + "revision": "435cf3414d964d3f934cdc64", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50474,10 +50474,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/060281793071125250/history/1690380108963", - "revision": "6980225a61d541cdbf7a5403", + "revision": "64ab44b5059c4810be1bd5d6", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50521,10 +50521,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "6973fc2199344a93bfe12dec", + "revision": "db03407b16e84dd8bfb79ae3", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50532,10 +50532,10 @@ "content": { "type": 5, "value": "Saque de 145.829,00 IVIP para a carteira 0xD99D89C01D8F4F0809a32D3916CbC94331E7b87e", - "revision": "85097514883a4f10bd010973", + "revision": "c026c5992ae843eb924af71a", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50543,10 +50543,10 @@ "content": { "type": 1, "value": {}, - "revision": "a4e5de244fb9455696470016", + "revision": "79d4718510de46c2b4c4da16", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50554,10 +50554,10 @@ "content": { "type": 1, "value": {}, - "revision": "02ea86582095454cac0baef9", + "revision": "f27c51a577224ec0a661538a", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50568,10 +50568,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "be58f5132c5e48d3bac724f6", + "revision": "599901cdb8d24fd7872988da", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50588,10 +50588,10 @@ "value": 1693018800000 } }, - "revision": "74ee1773a4dc4860bd2f6a90", + "revision": "70e53bf405214545a076be11", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50603,10 +50603,10 @@ "symbol": "IVIP", "value": 270.012 }, - "revision": "7abfbce7b4a54d99b70a1aed", + "revision": "110ab1a0e480492db0cc84ca", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50614,10 +50614,10 @@ "content": { "type": 1, "value": {}, - "revision": "2a9fc656c92640a6a7d55e6b", + "revision": "251ce003e09c4fc1a15b73cd", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50627,10 +50627,10 @@ "value": { "costs": {} }, - "revision": "47c2912ac15949db8b66c4fc", + "revision": "0d874e0c19964f6895fe57b4", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50672,10 +50672,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "2c914123d36f45abb1e58730", + "revision": "4dab8f21ca224db793c461af", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50683,10 +50683,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.800,00 para a carteira iVip 0606.0636.6606.7580-00", - "revision": "316bbadfa8464765bf4c51bf", + "revision": "13d902b4b34546aea4392da9", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50706,10 +50706,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "20cb367e43384a769fa74308", + "revision": "ccbe0872d10d40aeb6d19474", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50745,10 +50745,10 @@ "history_id": 1679267499015, "description": "Compra de 10484307 IVIP por 1800 BRL" }, - "revision": "43d58075b9704449a1a89de0", + "revision": "48df37574ecf402c8f5ddc28", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50768,10 +50768,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "81e9104ee64a466caba2a3b9", + "revision": "b059b2726ecc49b498322ade", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50805,10 +50805,10 @@ "currency_id": "IVIP", "history_id": 1688476464326 }, - "revision": "005c15aa89ba4122a788972e", + "revision": "4d6defd096d2433aaaef900a", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50816,10 +50816,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/4/2024", - "revision": "ad740305ed8946ed8c1a16a1", + "revision": "86328042bc3145a180b1b406", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50839,10 +50839,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a773cdc523bf47599aa1165e", + "revision": "b9a623a41dfd41859df57236", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50876,10 +50876,10 @@ "currency_id": "IVIP", "history_id": 1688476478538 }, - "revision": "de1cec2a00674e23aa05278e", + "revision": "e9e967bd2d9740a797684be6", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50887,10 +50887,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/4/2025", - "revision": "3661a98de2474b17aecc903d", + "revision": "881dfb785a804fb69d5c3e7f", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50908,10 +50908,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "3545e4c2936d434ebe9ca121", + "revision": "c021b70986904b4e9a7270a9", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50919,10 +50919,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1693784335259", - "revision": "133857dbc7bb498ea32c12e2", + "revision": "44b3e1432f3d46298b407126", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50956,10 +50956,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "e7cdbddc59c245b5899894d4", + "revision": "d664c3e01a2c486cadb03ddc", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50967,10 +50967,10 @@ "content": { "type": 5, "value": "Investimento de 5.684.843,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "a1f8c09443ae4acaa4397962", + "revision": "b95a59aaee2645b79168ab33", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50988,10 +50988,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "cbcdc19ae1f54545a652baab", + "revision": "ba51af38fd5d492fb127d0b4", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -50999,10 +50999,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384249715", - "revision": "9a85d238ee084d7eaa70a858", + "revision": "1b72516fa11f4a33bd07702a", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51037,10 +51037,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "2059a8dfb8744953a9f621e4", + "revision": "5ee3acf5c964494ebd02c6ae", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51048,10 +51048,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", - "revision": "b66cc389b6e74653b9f32283", + "revision": "62dd2399fc4d4f3eb13833b0", "revision_nr": 1, - "created": 1701809344916, - "modified": 1701809344916 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51069,10 +51069,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "44c2b051adff4314a3aa26c6", + "revision": "11eae7524137423dbfa6bcb4", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51080,10 +51080,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384254400", - "revision": "786b6be361e04af285ed396b", + "revision": "2c8042cf3fe14722b933376f", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51118,10 +51118,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "2f675eddc753485c89218359", + "revision": "7588cbaa18444dbb860ad6ef", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51129,10 +51129,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", - "revision": "36a52919f7fa47958aa2a57f", + "revision": "3480b6b92f7d4e66a5240cc9", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51150,10 +51150,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "072c02ceb1f9480fbb0cde28", + "revision": "b7eac97475a44a7faefaead8", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51161,10 +51161,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696384253628", - "revision": "fc3219aa981a48cb81309e2c", + "revision": "3785fcc0f0fd4719a74396c9", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51199,10 +51199,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "553ad82a3a994dc090050800", + "revision": "c709d940f9744d498f3b9210", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51210,10 +51210,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 5.684.843,00 IVIP com um rendimento de +113.696,86 IVIP (2,00%) - Y12XDT27", - "revision": "ef58617136044828bbae2253", + "revision": "ceec2fe82cae4ddea2edf45c", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51231,10 +51231,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "2acbb17cda8c41d28a0ccb4b", + "revision": "0eaa72a869fa4b74b899d2ca", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51242,10 +51242,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/060606366606758000/history/1696457810654", - "revision": "8f33323162d54af09bd30466", + "revision": "98ca7fc338d34531a9ec25bb", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51280,10 +51280,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "b5776e0b39fc4fa79017fc7b", + "revision": "522bf2507dfc425792156903", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51291,10 +51291,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "231f0b66a0124596a52ea34c", + "revision": "c403a1f838a8430d8526dd94", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51302,10 +51302,10 @@ "content": { "type": 1, "value": {}, - "revision": "91ce67d1d7304abd8ba49067", + "revision": "05fbf0a765bb4541a477b61f", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51313,10 +51313,10 @@ "content": { "type": 1, "value": {}, - "revision": "f15460006ca544b9a139599c", + "revision": "1639bef3527448459134d747", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51327,10 +51327,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "804b199be3234f9c91dcd433", + "revision": "83dba651b690467b8cea5ccf", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51347,10 +51347,10 @@ "value": 1697338800000 } }, - "revision": "7cb6abdecd3e4ae084a08d50", + "revision": "557a98d0790a496c8ab1f2fc", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51358,10 +51358,10 @@ "content": { "type": 1, "value": {}, - "revision": "ce9bcd7637c84b07bab4456f", + "revision": "6399c4a053bc466090bfd19a", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51373,10 +51373,10 @@ "value": 0.12708406600000002, "available": "0.00000509" }, - "revision": "38411c30316d4d1a9165d69c", + "revision": "e6e0e61c4a4c485aa96e225c", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51388,10 +51388,10 @@ "value": 0.0088529947, "available": "0.00002689" }, - "revision": "c6dde56722d248fc85b99846", + "revision": "09c2b9f34a3d4abdbb283f5f", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51403,10 +51403,10 @@ "value": 0.032112, "available": "0.03211200" }, - "revision": "fb2f09379f8c4a8daeeeb3bb", + "revision": "8a9fb61e328e45c89c3fe189", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51418,10 +51418,10 @@ "value": 1.4510568362399998, "available": "1.41843288" }, - "revision": "8edbe0997a8548fbaa3d4d18", + "revision": "107289f3d02c417580982f11", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51433,10 +51433,10 @@ "value": 0.145340815, "available": "0.76697000" }, - "revision": "807f72ecc3024143b522479e", + "revision": "f75b03cb9f3745758e625497", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51448,10 +51448,10 @@ "value": 0.0002743, "available": "0.00500000" }, - "revision": "6e245216d1514d5cb533ae00", + "revision": "d611bf9fd64943c59d597f0b", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51463,10 +51463,10 @@ "value": 0.15272504798763, "available": "372500.117043" }, - "revision": "85a22c3d1f8848e8a518b6a5", + "revision": "6037cf653b5d4c2784789ad1", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51478,10 +51478,10 @@ "value": 7.524e-8, "available": "0.00060000" }, - "revision": "598fa3990f754b2a99ad2e24", + "revision": "57876a99618145ec8a6c481d", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51493,10 +51493,10 @@ "value": 0.001235, "available": "0.10000000" }, - "revision": "8dd0f45b85b342bda596a310", + "revision": "050d94b2a4504d69bc0255ac", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51504,10 +51504,10 @@ "content": { "type": 1, "value": {}, - "revision": "bc3653fcd9c24d0faee1577f", + "revision": "1e88a559aae646fbb3657544", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51520,10 +51520,10 @@ "totalValue": 1.919, "currencyType": "USD" }, - "revision": "544bc67fa8414d50afa45bf7", + "revision": "6f3321e5a70c4737a4eb58ac", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51535,10 +51535,10 @@ "symbol": "IVIP", "value": 279.32 }, - "revision": "e19c9365d708414eb2667a3c", + "revision": "cd8062c15eaf4c5d81fb284b", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51546,10 +51546,10 @@ "content": { "type": 1, "value": {}, - "revision": "55b16c9ec30b4523b709aa22", + "revision": "7dbd64100b234ae0ada8c202", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036373, + "modified": 1702563036373 } }, { @@ -51563,10 +51563,10 @@ "value": 1693586433996 } }, - "revision": "e1de9bc0ada6468e863a87dd", + "revision": "899524ce9f2f45a4be410a7d", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51584,10 +51584,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4185a704f65945a4b0e153da", + "revision": "a66f5a97ca5b4959b7e50b94", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51595,10 +51595,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1690994433997", - "revision": "a482afcd80014224a606a99a", + "revision": "3dd8001eecb142b58acf4d4d", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51638,10 +51638,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "2156a123dee84720b510ee17", + "revision": "fac765079ea742579b3c5de5", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51649,10 +51649,10 @@ "content": { "type": 5, "value": "Deposito de um valor 1.000,00 para a carteira iVip 0625.7521.4502.4773-84", - "revision": "16c2e26b1a544d1ebe1a0546", + "revision": "f71da9cacab04a04a64bbb59", "revision_nr": 1, - "created": 1701809344917, - "modified": 1701809344917 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51670,10 +51670,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f6ed197f744442849e45cfe0", + "revision": "217b4a30caa3410aa4d1b409", "revision_nr": 1, - "created": 1701809344918, - "modified": 1701809344918 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51681,10 +51681,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691064347943", - "revision": "abb184ce6ada4af091565828", + "revision": "d543d0106ff84f1d9a86b3a4", "revision_nr": 1, - "created": 1701809344918, - "modified": 1701809344918 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51719,10 +51719,10 @@ "description": "Compra de 207.673,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "34b840dab00e46ef8d67d036", + "revision": "9c5810f11a6a4b0f97521734", "revision_nr": 1, - "created": 1701809344918, - "modified": 1701809344918 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51740,10 +51740,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "06d23458fab046a08d4dd5e1", + "revision": "defa73c4f2d54b7f95170997", "revision_nr": 1, - "created": 1701809344918, - "modified": 1701809344918 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51751,10 +51751,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691234903050", - "revision": "55f54bf13eba460a9aa54c91", + "revision": "88e20793ba2947898ac99157", "revision_nr": 1, - "created": 1701809344918, - "modified": 1701809344918 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51789,10 +51789,10 @@ "description": "Compra de 292.108,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "ad3ee5f55bc24708880451fe", + "revision": "d06bfdbf124847559bb1a422", "revision_nr": 1, - "created": 1701809344918, - "modified": 1701809344918 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51810,10 +51810,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "774c04616d1f4b33b3445eec", + "revision": "afd1e78edb1a4a4bbb8bdf85", "revision_nr": 1, - "created": 1701809344918, - "modified": 1701809344918 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51821,10 +51821,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691237670718", - "revision": "93b473a2c91741f3942163c2", + "revision": "f3b937071ff14098ab52808b", "revision_nr": 1, - "created": 1701809344918, - "modified": 1701809344918 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51859,10 +51859,10 @@ "description": "Compra de 293.284,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "3a3069b487a7472ba773c996", + "revision": "1769d28b3aed45a8b693a201", "revision_nr": 1, - "created": 1701809344918, - "modified": 1701809344918 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51880,10 +51880,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "9359a2e4c7c54c7295026511", + "revision": "d6057746f55e4c84acc25ba9", "revision_nr": 1, - "created": 1701809344918, - "modified": 1701809344918 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51891,10 +51891,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691454318499", - "revision": "f19b94a67d644d7291c1edb1", + "revision": "9672238f8b774f84bfc85d9c", "revision_nr": 1, - "created": 1701809344918, - "modified": 1701809344918 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51929,10 +51929,10 @@ "description": "Compra de 327.037,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "956d9244dc3c4c43b5403496", + "revision": "a64d5d5aac70422bbf7f0ab9", "revision_nr": 1, - "created": 1701809344918, - "modified": 1701809344918 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51946,10 +51946,10 @@ "value": 1694087110176 } }, - "revision": "c0233fb513154cd799f4478c", + "revision": "1c98bf414ed64b298da3d1c4", "revision_nr": 1, - "created": 1701809344918, - "modified": 1701809344918 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51967,10 +51967,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8e2e1e780edd459bafd25a21", + "revision": "3ae40a01f5fb4a4697c9aaf7", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -51978,10 +51978,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691495110179", - "revision": "bbb1bdf805e14bb58784efc0", + "revision": "b21a1c7b54aa4ad88bb98a21", "revision_nr": 1, - "created": 1701809344918, - "modified": 1701809344918 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52021,10 +52021,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "751167a221db4701b4a3f4a1", + "revision": "09ce1edc13c34d79aff34c17", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52032,10 +52032,10 @@ "content": { "type": 5, "value": "Deposito de um valor 1.000,00 para a carteira iVip 0625.7521.4502.4773-84", - "revision": "6f4c5b413b0140da803dcd5b", + "revision": "fd5857be88a64389a49b49ef", "revision_nr": 1, - "created": 1701809344918, - "modified": 1701809344918 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52053,10 +52053,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a8b3c3bf3aef46d98067f150", + "revision": "d6fbfa2b5eba4cb09b0bf491", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52064,10 +52064,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691500327136", - "revision": "ef652f9346464f7a80ead0fd", + "revision": "5b56a1fdf6ab498a8039fff1", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52102,10 +52102,10 @@ "description": "Compra de 332.596,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "8431927d46524318bb40be37", + "revision": "bf96c10720c54b51ac727ea3", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52123,10 +52123,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "76aafb4f17f14aa596517730", + "revision": "38d69429a9f343cfafa2e55a", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52134,10 +52134,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691711802306", - "revision": "a7a2c56559154dfca8fa987a", + "revision": "9e5e7cb9bb4b4093b9be7b62", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52172,10 +52172,10 @@ "description": "Compra de 372.254,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "57f429ad3d444fa99fe566f7", + "revision": "626c82ea70be4682af8fcf8d", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52193,10 +52193,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b820412a4d894d94ac6730ba", + "revision": "06a313f676dc47c7994ffc10", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52204,10 +52204,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1691848017758", - "revision": "cd862b372d9f4456a9b45713", + "revision": "055c4216e5424454ac93037e", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52242,10 +52242,10 @@ "description": "Compra de 378.088,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "7847bff60634436a9386ea28", + "revision": "f6aa395652184557a1e8c766", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52263,10 +52263,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a09c260ae28f4c3c9b87775e", + "revision": "89768b59324a452685d94309", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52274,10 +52274,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692027842104", - "revision": "f7263eb33d054d12ac493a43", + "revision": "8061181ed2344eb6ad48ec76", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52312,10 +52312,10 @@ "description": "Compra de 456.006,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "f962da7f7ffa492ba87fd95f", + "revision": "03c7b93e55854ff7938dcaec", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52333,10 +52333,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8251f6bdf9694af285451c14", + "revision": "1226a9de412f4150bb46e257", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52344,10 +52344,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692250715020", - "revision": "4d61afca946d44739b4c17d4", + "revision": "c316738cd69c42fc858b8ec9", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52382,10 +52382,10 @@ "description": "Compra de 475.181,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "6c6c281d7c0541d59ba6db3d", + "revision": "cef43598bffe4bafa2942f2d", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52399,10 +52399,10 @@ "value": 1695079270157 } }, - "revision": "c2636b9d79a94d9da8215867", + "revision": "cf4e485383a147c6af1ad144", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52420,10 +52420,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ea663883464a4e399c19b5cf", + "revision": "b83470567b8445e982dc67a4", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52431,10 +52431,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692487270158", - "revision": "5ef0e3c44de64c02bd180a5d", + "revision": "2667ae5f0d3145c9b599c226", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52464,10 +52464,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "b5922d4ca41d4684a7c32900", + "revision": "99687a2090aa44aab559b59a", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52475,10 +52475,10 @@ "content": { "type": 5, "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", - "revision": "6ede44be702c4fae8e04c1e5", + "revision": "334b3c5ab7844120839ae6d0", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52492,10 +52492,10 @@ "value": 1695079578184 } }, - "revision": "286e0f34b132453f9540182f", + "revision": "b6346fa07f534fc48833d1ee", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52513,10 +52513,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f1aa188a486244779f186f4c", + "revision": "73aea47ae89c4ab9a7188041", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52524,10 +52524,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692487578184", - "revision": "ea9c14cce39c44a9be076044", + "revision": "039cf797fd5348588d1db037", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52557,10 +52557,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "f362c3661d0d4280a2e9ce46", + "revision": "4d553f94316c42a4b5337f04", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52568,10 +52568,10 @@ "content": { "type": 5, "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", - "revision": "0fdfdfb2e9134d93b26d0e2e", + "revision": "0111bc679b844ff7b74a362b", "revision_nr": 1, - "created": 1701809344919, - "modified": 1701809344919 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52589,10 +52589,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7e223f0d5d9641339bb7f916", + "revision": "245b476690d74a009d18665f", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52600,10 +52600,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692488711638", - "revision": "c4efcb9c8bb845e999189174", + "revision": "72e8b13a4d494d37a5ed03e4", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52638,10 +52638,10 @@ "description": "Compra de 328.542,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "cddf593c08574f94b04f1b7c", + "revision": "80886970407f43da9cd8abed", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52655,10 +52655,10 @@ "value": 1695240164836 } }, - "revision": "970661767bc34a18ab4fe462", + "revision": "275fa02c1cf44ac19939f2b1", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52676,10 +52676,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "e8e2fb2b54d44f22a0420e93", + "revision": "f817ffdc9667411b83ccf2ce", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52687,10 +52687,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692648164836", - "revision": "88cf78d172ce412f9152ef15", + "revision": "b845aa1f24e4423ca501724a", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52730,10 +52730,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "37d7c4007399406a82990beb", + "revision": "77089b989c374cf7b611bd63", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52741,10 +52741,10 @@ "content": { "type": 5, "value": "Deposito de um valor 1.500,00 BRL para a carteira iVip 0625.7521.4502.4773-84", - "revision": "f3841b7db6044161982f440d", + "revision": "71e07b88973246be8c502c35", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52762,10 +52762,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c052c0ce9f304b2bbd8ca601", + "revision": "8a9161b79a054110a9ebdfff", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52773,10 +52773,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692666772551", - "revision": "95c8c87475264041a66fa8e5", + "revision": "59c193f22b8c4830a700b9e7", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52811,10 +52811,10 @@ "description": "Compra de 285.329,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "f3629d133f574796962f25b0", + "revision": "ad3d05e7d99f43aabd9b3305", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036374, + "modified": 1702563036374 } }, { @@ -52832,10 +52832,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b813b79177cf401c8c8269b9", + "revision": "ca3d7ae050064825ae155669", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -52843,10 +52843,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692666803752", - "revision": "5bda8048e79e47d6b741812b", + "revision": "9a3d05bf60f849d18be1c44c", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -52881,10 +52881,10 @@ "description": "Compra de 285.329,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "78ab271565b640519541a701", + "revision": "88ce5c8a8879478694960c55", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -52902,10 +52902,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "28bd8093d64d453f8d563639", + "revision": "b45c40e8a9104773a58d6f5f", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -52913,10 +52913,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692730130844", - "revision": "8bae35cf88d94d728e86770f", + "revision": "8b4cf64df6724eb7b42097a8", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -52951,10 +52951,10 @@ "description": "Compra de 282.682,00 IVIP por 200,00 BRL", "status_detail": "accredited" }, - "revision": "76e1da159cc74a388d51111f", + "revision": "0ab30132819c4c6eac80aece", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -52972,10 +52972,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "22c410f631ba4f2fb0b5a0e3", + "revision": "b1352176993b49309d49dc68", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -52983,10 +52983,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692751123570", - "revision": "4f5e1b73896e45f092787dae", + "revision": "7e2b06bcd1444d9ba7a32f7c", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53021,10 +53021,10 @@ "description": "Compra de 526.629,00 IVIP por 400,00 BRL", "status_detail": "accredited" }, - "revision": "8acb79bf955443489ecfe6c1", + "revision": "0989a82de54c4590b3384da8", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53042,10 +53042,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8e38d460bb1d449d80563f98", + "revision": "609509a7715944c6956e301d", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53053,10 +53053,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1692814492618", - "revision": "2f185ee0f8ce43f29c88ea0c", + "revision": "baf38e1205b04392b87f2b08", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53091,10 +53091,10 @@ "description": "Compra de 614.430,00 IVIP por 500,00 BRL", "status_detail": "accredited" }, - "revision": "3b74ee141b6541f88acb26dd", + "revision": "bff4158c780a4f42b01f790d", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53108,10 +53108,10 @@ "value": 1697297622264 } }, - "revision": "f707acddd7c14782b645cda5", + "revision": "83cf4a9dd3e246689eaaeb3f", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53129,10 +53129,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "75673b21bd0746ed917332ae", + "revision": "b69c5d392ff8499aaca33a02", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53140,10 +53140,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1694705622264", - "revision": "816a5f0bfde54c4da944ac72", + "revision": "f44bc9412ead49ab93fd559c", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53183,10 +53183,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "712b8dda7c024daca6ac95c2", + "revision": "eefc91ee1fbb4d2a84db667f", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53194,10 +53194,10 @@ "content": { "type": 5, "value": "Deposito de um valor 2.000,00 BRL para a carteira iVip 0625.7521.4502.4773-84", - "revision": "b6e22aa6dede48c88c10706c", + "revision": "1fcb76331ebe46e49ad69674", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344920 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53215,10 +53215,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a1508d947e474cc79592a6e5", + "revision": "cb92cf598e384356b78d83d4", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53226,10 +53226,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1694719090426", - "revision": "9c30549b51514da296a8cc04", + "revision": "f6552316b2f4443ebca5f119", "revision_nr": 1, - "created": 1701809344920, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53264,10 +53264,10 @@ "description": "Compra de 2.446.285,00 IVIP por 2.000,00 BRL", "status_detail": "accredited" }, - "revision": "405a59f0eef245b290a072c8", + "revision": "05b78dee40894b19bb38de61", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53285,10 +53285,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "2eea0baca02a4afdbe04fa35", + "revision": "f7180c89cdad410ea2490792", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53296,10 +53296,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1695328321082", - "revision": "08fbcbdf3521449baf6dce89", + "revision": "9185c5189f254492ae44f0be", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53333,10 +53333,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "fb7ba38fccb841ba859ca0c0", + "revision": "8f3a54d8733e48d083544159", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53344,10 +53344,10 @@ "content": { "type": 5, "value": "Investimento de 1.136.670,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 21/09/2025 - P9A02KSL", - "revision": "19e171fe28db4a56b73e7839", + "revision": "c50cdd81a2144f9f9d3b48bd", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53365,10 +53365,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4eeff3164bc94307995b11b5", + "revision": "2ac2b7815d7b4556a9a50a98", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53376,10 +53376,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/062575214502477384/history/1696508927650", - "revision": "f9118364810041b791f8cae3", + "revision": "5fbe969cc153403c86f409fd", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53414,10 +53414,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "99152dd6b1944c5686560798", + "revision": "350e9b8790c3422daa89de7d", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53425,10 +53425,10 @@ "content": { "type": 5, "value": "Investimento de 4.958.277,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", - "revision": "4fcf6b7d20c842b28e98da49", + "revision": "d84036aef9644b76adcc609a", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53436,10 +53436,10 @@ "content": { "type": 1, "value": {}, - "revision": "f11644483ca14eaa826e0ebe", + "revision": "c910e31a916944fbbcc26b59", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53447,10 +53447,10 @@ "content": { "type": 1, "value": {}, - "revision": "1732ef97f7524faa8e7d8d4c", + "revision": "f0069757858649f89f3c6738", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53465,10 +53465,10 @@ "value": 1691240400848 } }, - "revision": "2adcf6b9a55e4ae688217c11", + "revision": "e052955e63d747e6b6b6df70", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53484,10 +53484,10 @@ "value": 1696561200000 } }, - "revision": "bcaf5e08a76e4723bd4bf6d0", + "revision": "cfcdc4faef1d450cb4d45b82", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53499,10 +53499,10 @@ "symbol": "BRL", "value": 30.33 }, - "revision": "ac8cc298b3444d1681c317a3", + "revision": "6c085992ca854f6987b401d9", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53510,10 +53510,10 @@ "content": { "type": 1, "value": {}, - "revision": "4c35eee326d84839a0d28fae", + "revision": "9f687baf71dd4356bf4840eb", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53523,10 +53523,10 @@ "value": { "costs": {} }, - "revision": "f902329a7fd44af595e995a6", + "revision": "7f4f6a69462840d7a79b4c61", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53568,10 +53568,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "119890398023412a8f2c89e0", + "revision": "d33f358f50ba46128fd80e75", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53579,10 +53579,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0650.1373.1763.7014-00", - "revision": "7eb820c83135453a8d09f50b", + "revision": "5ee0e51b8a9a4b68af4c0e78", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53590,10 +53590,10 @@ "content": { "type": 1, "value": {}, - "revision": "946ff685c3a94aac9bb4fee6", + "revision": "1577240166bb4d6eb59fd6c6", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53601,10 +53601,10 @@ "content": { "type": 1, "value": {}, - "revision": "bf4c97eb14d94ba895064db5", + "revision": "d4bb91715be3488b8e2725e8", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53615,10 +53615,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "b6d5b711e5274309bdaf9a05", + "revision": "d1e92ef4c67043afb1b53466", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53635,10 +53635,10 @@ "value": 1691895600000 } }, - "revision": "bf5f55a130e84281aa691761", + "revision": "dcd34f79310042958337d261", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53646,10 +53646,10 @@ "content": { "type": 1, "value": {}, - "revision": "ad63fcdc7f704ff9b1619376", + "revision": "068f3d24666b499fae5c23cf", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53661,10 +53661,10 @@ "label": "Taxa de 0.99%", "amount": 0.198 }, - "revision": "3147d1c4340543588fb3139a", + "revision": "382630867a9e4ef0b7a1c158", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53672,10 +53672,10 @@ "content": { "type": 1, "value": {}, - "revision": "bbe4efe635a2467997bb82d8", + "revision": "b36688d81c3e477c921a8a57", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53685,10 +53685,10 @@ "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "b219e4ace9b640aa9c9a7176", + "revision": "ec87b1ac685c4ba4ae8b489b", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53696,10 +53696,10 @@ "content": { "type": 1, "value": {}, - "revision": "d29b717520fd4be48c5b5c26", + "revision": "b4bddbb5efcb4baca29bf751", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53713,10 +53713,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "2ae823a102b343be967fba3f", + "revision": "09bd006a9b2342f8adb354aa", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53724,10 +53724,10 @@ "content": { "type": 5, "value": "00020126360014br.gov.bcb.pix011449718656000133520400005303986540520.205802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter558382385016304DD50", - "revision": "19056ae478de41a2874af89e", + "revision": "6cff220183564962bd84c511", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53735,10 +53735,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/payments/55838238501/ticket?caller_id=1310149122&hash=983b907e-205f-4db2-9b0a-8e3b51ecea21", - "revision": "37560005f02745e79ce17ecb", + "revision": "8b8110063103436e9e661ab7", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53746,10 +53746,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABRQAAAUUAQAAAACGnaNFAAAJf0lEQVR42u3dQW7jOhIGYGrlY/io9lF9hLfUShwEebFZVVTizGCAbunzpo0okj72isX8LLb+x3/+aYyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjH+2cW3xc/38ye3r0ueXpff716XPz/Jx8+Pzy/3rh89f/rh0+fjn49Klbx+X/v1JvWt4ICMjIyMjIyMjI+NZjOPFD0j9Eo2310s+fmebjay9aH18Tr19ymBkZGRkZGRkZGQ8g/H+NVt/vvZzav/v+/trjt++XrulouHyGtkWjI9URoR3ra8ChZGRkZGRkZGRkfHkxj68NiyxR/WwVP8cUBvHET/DOFZGRkZGRkZGRkZGxjx/ny6opxX6Zage2uv2QR0Li1BhXMIqPiMjIyMjIyMjI+M5jT0mXJawQj8s3q8lcr6+vsTl/JrBqaXGf5/vYWRkZGRkZGRkZPzbjXUv6VJW1v8/X/6X/a6MjIyMjIyMjIyMf7Nx5xPS6HE5v5dYehjrcwvpWlbxL/3dDyMjIyMjIyMjI+PRjVuqFi6pjLiO6/HPNPqWOri0lIIJW1HjL4exLm+s2TMyMjIyMjIyMjIe1HhNP0mRmSXQHiXwnkd2G3ucxwxODePcGBkZGRkZGRkZGc9mXEu7xLzRs5V+LaHLS5+v4j9Sc5d7HGsfbr+/le9hZGRkZGRkZGRkPJ5x6KSYOyC29JOhlcs1reKnxfuWRhYP/xxoD0ZGRkZGRkZGRsYTGts4bb/Mw+xp1t/m5wiFkW2py8tafnn2FwNGRkZGRkZGRkbG4xtzLD2vtffeS0DmUXLu889SBl3VS3ogIyMjIyMjIyMj4xmMucf5kJS5hBJhfgpo2zuGaBDFnaOpW8x7GXZGRkZGRkZGRkbGoxlz9vxS3jb8TmygGIqGJQ2x7fVWfKR64t18DyMjIyMjIyMjI+NhjD3EyYeXXPealN/LftNvurykMqKlL7GNOiMjIyMjIyMjI+NZjDmN/ijYNnYr70ndyllD9Tk5jDNvu9gZGRkZGRkZGRkZT2YM0/a6qTSeEbRXK0yHeHsrlfNOdoaRkZGRkZGRkZHxQMZh/h4bH157beXSS/UwdGfpKbqeC4tezizqb5+HxMjIyMjIyMjIyHg0Y+1NHl87RM5ju8RbbIiei4bL/BWTFXpGRkZGRkZGRkbGsxnXFGzJLVh6qRWeU/v7RD1Lx89W6OPm1Gu+jZGRkZGRkZGRkfHYxp5asFyni+41jb57fNBaCot46bbTZHFhZGRkZGRkZGRkPJMxZ2damMgPM/rQUjGu9D9f8ii0Ni75j+XIbJspIyMjIyMjIyMj4zmMwwp9zs6sr6hLjpzvhNl773u9FdOgx3hO2LfKyMjIyMjIyMjIeAZjXJj/ZhU/5dxzu8Q4xD7dk7p76dF+0YedkZGRkZGRkZGR8e83zub4W2mX2Mpy/jig25hzXycbT7+5tL2Vs2dkZGRkZGRkZGQ8mjEuzD9eKZicas/9WmqqfS8ys83veqQ0DSMjIyMjIyMjI+OpjLM0ep7j13h7G6f/LWRw5nXAOj8gNERvGBkZGRkZGRkZGc9hfCbWl5RqzztHQ+Q892KZ3dXLHwGWGfb2c63AyMjIyMjIyMjIeCxjn3RAnK7Zf2O8xyaLeQdqrkuuk3f9sJeUkZGRkZGRkZGR8VjGIeqSZ/2tTP+rOs/6Qxxmp+1iKBre7q3IyMjIyMjIyMjIeChjTcG0FGa/TLq87EBm2J0BDQ/8sf8jIyMjIyMjIyMj47GMsVv5bYyux97kLR4HGr/s7gqth4j2wr+99XcFRkZGRkZGRkZGxgMZ89FAYf6+Jdqatn4+XptBY9+X2aBzl5c2zcIzMjIyMjIyMjIynsEYY+kpez6Ntw9r9o/XgHZW3++x3cuy15Gxf1/PMDIyMjIyMjIyMh7SeE0L82HnaG12fnkZ4xbSfAxR2znzc/tddoaRkZGRkZGRkZHxgMaQednps7JXK4wR+IDN2Zkair+WeoKRkZGRkZGRkZHxdMYYbLmOF/Ny/hpaKu7tE30+MJYjuSNjY2RkZGRkZGRkZDytsU9akscmi3kcYfH+MhlHbhJTQ/Exg8PIyMjIyMjIyMh4FmPNs8Qntck202tpoBjSNOOS/6w3TK4ebvW/i5GRkZGRkZGRkfHYxtxbMb+kfkmbQWOspqWtqC1Ctln781vPHRkZGRkZGRkZGRkZD26Ms/77mILpk6JhPDXoPs76Z9tMl1kEvnaCeWPNnpGRkZGRkZGRkfFoxiXR6slCa+l6Hjee/nBpNztT6xJGRkZGRkZGRkbGExnnpwbFBoptjMy0+a7QWwmzh2aN6+SvAWM8h5GRkZGRkZGRkfEsxjxtDwmX/Oza7LylbovPzxC02TnFaKA9GBkZGRkZGRkZGc9m7GGpPuRZWuKvpTJoqdQIWfiYymlJHUqE9Xf9HxkZGRkZGRkZGRn/bmPOzjxKw5UQOW/p9M42ae6SEzfxrr3O6IyMjIyMjIyMjIynMra0PXR4ZEu9FZ9z/KiuIZrUyHyaWA+HiDIyMjIyMjIyMjKeyhixt9JAsRVa2m/aQ9HQJxXGZd/Yw3I+IyMjIyMjIyMj46mMgyif/xMaKM7atMSXzGix/2Ib39VLJxhGRkZGRkZGRkbGMxhzjKU2XAm03ApxnXSCiVtRw4C2UGE8/xsYGRkZGRkZGRkZz2lskzxLT4/MHVyGpMzPIZoaz2mTUDwjIyMjIyMjIyPjOYw7IZr2TbAl5muWFL1pe03Ta9uYnv4+wMjIyMjIyMjIyHgWY57sXyf59BpC36kMbn22OfVSFubXyV0LIyMjIyMjIyMj45mMS4mxtNSLpZ4a1MLpQ6FWmPVWzKmcX9cKjIyMjIyMjIyMjAc03uOsfwklQh/DL7EOuO4vw4fb67tiqTHczsjIyMjIyMjIyHhW407APPRr2b09PzlkZ56Q7Xc5e0ZGRkZGRkZGRsbjG5fSSTFHZobV92d0ffzSXgv8+a8Bz0st7kllZGRkZGRkZGRkPJux7zwpfh5lHMNkv3YrX1MDmPzAtBWVkZGRkZGRkZGR8VTGvJf0iR2+bIM6vW1LJ3zOEust8Gsq58fsDCMjIyMjIyMjI+OxjH/mh5GRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGRkZGR8Q80/gd+PCOEIzZrpQAAAABJRU5ErkJggg==", - "revision": "c9a8c50e1c4247238ab723f1", + "revision": "683695bc8b1147f681012ef0", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53757,10 +53757,10 @@ "content": { "type": 2, "value": {}, - "revision": "6ec72e19cee04d8b8262dbdc", + "revision": "0a42a8f125fd4b01b190677d", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53793,10 +53793,10 @@ "status_detail": "expired", "currency_id": "BRL" }, - "revision": "20aeaf5687034efda3cb02be", + "revision": "284b8466208e432b97bcb128", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53804,10 +53804,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0667.4940.3784.9818-40", - "revision": "bb2ef2dab6144013b80cd734", + "revision": "fb9f39b93ed7489487a553f0", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53815,10 +53815,10 @@ "content": { "type": 1, "value": {}, - "revision": "81b17e6220584e73a6ae5ba5", + "revision": "4dd024f30c944dd498f2b4d1", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53826,10 +53826,10 @@ "content": { "type": 1, "value": {}, - "revision": "bf68b9f219fc4d8a85ce13e5", + "revision": "f907172a499d49829537a0f7", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53840,10 +53840,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "9d307fc843b64d77aeb34561", + "revision": "6937a57978314db498f62d36", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53856,10 +53856,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "457a8bf417874277b6229bd8", + "revision": "6bab275378df4ee9b27d59e2", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53871,10 +53871,10 @@ "symbol": "BRL", "value": 3.86 }, - "revision": "e941f601af9146fcb79b18eb", + "revision": "04f4c346f4fe4e66a9aff1f4", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53886,10 +53886,10 @@ "symbol": "IVIP", "value": 1888.088 }, - "revision": "23bcfdd944164f84b0c21dc8", + "revision": "adb15d9b7de642a2b7f17739", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53897,10 +53897,10 @@ "content": { "type": 1, "value": {}, - "revision": "10f4b8ec42624d03b109efa6", + "revision": "2b48a5c93fb2428f8d2b9b57", "revision_nr": 1, - "created": 1701809344921, - "modified": 1701809344921 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53910,10 +53910,10 @@ "value": { "costs": {} }, - "revision": "ed89a6b660cc4e2199041773", + "revision": "f8226d7d17674dfab8900913", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53955,10 +53955,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "bf85a2c0d59740739f6d51c6", + "revision": "e1e9601f8b874656b3130dee", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53966,10 +53966,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 0721.5687.2012.5989-10", - "revision": "9cd0ca1ce821436b9b5bc706", + "revision": "76bb8d7806d141e48be9adde", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53981,10 +53981,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, - "revision": "49f6710711c94d35b49e2531", + "revision": "6b86dbf378b5453b8b3a3a35", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -53992,10 +53992,10 @@ "content": { "type": 1, "value": {}, - "revision": "e76f898f573645a68bb49495", + "revision": "e1f2454856b14426bcdff9e8", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -54003,10 +54003,10 @@ "content": { "type": 2, "value": {}, - "revision": "c29257ddc43043b8abb3fb67", + "revision": "d9070adbc54d46eda2683a67", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -54039,10 +54039,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "a8c43f54ddbb481a818baa42", + "revision": "f7104bb75a244b7aba9df76f", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -54050,10 +54050,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "b43609771d064900904fb9c8", + "revision": "e345ff6edc3f4c6388de9ef3", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -54073,10 +54073,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "8f563885f7344dd4905bb4c5", + "revision": "4521de87ea684c749de83b87", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -54112,10 +54112,10 @@ "history_id": 1684624428265, "description": "Compra de 15.956.517,00 IVIP por 3.276,00 BRL" }, - "revision": "d71846c06f7a406fb855b559", + "revision": "3a1cfc6ac3a64a858f52ee39", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -54127,10 +54127,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, - "revision": "d55f1674faf14b75a0e83c17", + "revision": "014b8374e8a245bdb87bdcdb", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -54138,10 +54138,10 @@ "content": { "type": 1, "value": {}, - "revision": "d4b15b102dc94abda0121248", + "revision": "e113570dcdf84af390971100", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -54149,10 +54149,10 @@ "content": { "type": 2, "value": {}, - "revision": "4c9c38248ebd47a59b7700f3", + "revision": "adea73d4ffa34a58981c8532", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -54185,10 +54185,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "be6a7d2bd95d48ba9a2848c8", + "revision": "b1696638168b498a90d34191", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -54196,10 +54196,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "a3c8e4b0d7434870a25202a9", + "revision": "f676d6c0a83e4f7eb1e736c7", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -54219,10 +54219,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "f46950daa3ef400788822c24", + "revision": "f7f758b953e14d1ca1e836eb", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -54258,10 +54258,10 @@ "history_id": 1684624906138, "description": "Compra de 6.448.848,00 IVIP por 1.324,00 BRL" }, - "revision": "aeb30c4fc1bc45d589669030", + "revision": "9e5901efcd1d410091ebbe13", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036375, + "modified": 1702563036375 } }, { @@ -54271,10 +54271,10 @@ "value": { "costs": {} }, - "revision": "39ee532e9e324c379aa175da", + "revision": "c84d47c91ce647fbb6085f2a", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54316,10 +54316,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3ba2451fa9e04b6eb4668aec", + "revision": "19373020eb13484ba8f035f1", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54327,10 +54327,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0721.5687.2012.5989-10", - "revision": "e6346f2a5a7447eea90e9104", + "revision": "04d143a7e64841a089aa144a", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54352,10 +54352,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "8d9993cde45e4f378313e285", + "revision": "9fc746086f6e41ab8a99c804", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54391,10 +54391,10 @@ "currency_id": "BRL", "history_id": 1687294024615 }, - "revision": "f201ff2207434439a8488fac", + "revision": "6e3db8289b874967896c299f", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54402,10 +54402,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", - "revision": "4e4ca1e5d25345959891c4dd", + "revision": "e0d485c9ec1e47c58476ece3", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54427,10 +54427,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "73e9121a58d04ceb8326889e", + "revision": "f9dfa557c0ef4fb6bd9e2607", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54466,10 +54466,10 @@ "currency_id": "BRL", "history_id": 1687294024774 }, - "revision": "38be887570cb48f9b04ca27c", + "revision": "c2a4a4f5fd8340648edc0846", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54477,10 +54477,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", - "revision": "be148c7d1c1b44af922346c3", + "revision": "a43d017a522f45ab993ba7b5", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54500,10 +54500,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "d235c1e0ed4e4911ab27389f", + "revision": "35876c95825d43cfad1f9955", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54537,10 +54537,10 @@ "currency_id": "IVIP", "history_id": 1688524692305 }, - "revision": "1f0a90680c5c473888bafcc0", + "revision": "05ef9c4540fb4e92ac0dee7e", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54548,10 +54548,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/4/2023", - "revision": "c376cbc1d3db489d901e63b9", + "revision": "75a994c7118f4c5c99f111f7", "revision_nr": 1, - "created": 1701809344922, - "modified": 1701809344922 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54571,10 +54571,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "5b5b8d76db9b4d6886a8123e", + "revision": "b8e5ff26c40840caa0f5d4c2", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54610,10 +54610,10 @@ "history_id": 1688525524308, "description": "Compra de 155.466,00 IVIP por 50,00 BRL" }, - "revision": "54b17c6991e04771809a6e3f", + "revision": "fa7fd4b58b7a4936a4d1af7f", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54623,10 +54623,10 @@ "value": { "costs": {} }, - "revision": "2726bbb9323a4b118840428a", + "revision": "94130ce192d44cb8b1a6c98f", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54668,10 +54668,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "26239c19c2a241c9830e6e09", + "revision": "20009109d3dc4bf59d078338", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54679,10 +54679,10 @@ "content": { "type": 5, "value": "Saque de 2.500.000,00 IVIP para a carteira 0xA7d5Cb00F2824b3D3Bf7b0a4AFe13175618B0FdC", - "revision": "7f53446b9f2c480f98b4b738", + "revision": "42b780a8a638416596857269", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54692,10 +54692,10 @@ "value": { "costs": {} }, - "revision": "ee8ca4f855934a1388fce475", + "revision": "94f0a002a89d4203b02b4ab8", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54737,10 +54737,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d94179d9cf1b42fcb48d4093", + "revision": "84819dabb93b4a279a85c85e", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54748,10 +54748,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 800,00 para a carteira iVip 0721.5687.2012.5989-10", - "revision": "04576f5e69524ea8b0bc3936", + "revision": "3b5c09e35803483e9afb76a0", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54773,10 +54773,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "3f81c5448cd1467992be4bfa", + "revision": "de63fa7cfd2045d2a9674034", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54812,10 +54812,10 @@ "currency_id": "BRL", "history_id": 1689690928096 }, - "revision": "1c7c288f5ead45b287b58629", + "revision": "9716fc7e5ad54d91b39cc922", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54823,10 +54823,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", - "revision": "28cf9d6d786744a19594fbd3", + "revision": "ed3c30079e364d8397225d30", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54848,10 +54848,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "e2c88f14d1154628b18f46e3", + "revision": "40ab02c0aadc485bac7e4a70", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54887,10 +54887,10 @@ "currency_id": "BRL", "history_id": 1689690928337 }, - "revision": "bae67004e2bb4bcf9d7688d1", + "revision": "a84bb5899f0042088ffc0572", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54898,10 +54898,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", - "revision": "b9cc3cff7f5b433e84122ac7", + "revision": "697c2de6097440f0aaf531e1", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54919,10 +54919,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b94d90ea0f874d1eac117f7f", + "revision": "9c470014667346af85190160", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54930,10 +54930,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691203130486", - "revision": "f826c01e75f44874b6540338", + "revision": "179c87d75804437f84ad9c71", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54967,10 +54967,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "719a2d07d0e94e8089741394", + "revision": "32f69758b2b24995bc2a09ff", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54978,10 +54978,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "7dd0df51c8a4423e91c3ce97", + "revision": "9d2eebdf76d54dcead5ff2fd", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -54999,10 +54999,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "23506659daa1440cbea0476c", + "revision": "e5a380bf2437427a9bc1dbcc", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55010,10 +55010,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691556958476", - "revision": "81e3069169a141b4b32a1b61", + "revision": "ec84294a2d394ca9b9d6122e", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55047,10 +55047,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "7ee3fb4a9b904a6ab16e0425", + "revision": "1eabfbd1af1648b1bb66ff21", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55058,10 +55058,10 @@ "content": { "type": 5, "value": "Investimento de 200.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/9/2023", - "revision": "95492387caa348409dc8c955", + "revision": "777fa7632fe74ef08989d8ea", "revision_nr": 1, - "created": 1701809344923, - "modified": 1701809344923 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55079,10 +55079,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "eb2ee384a04149938d0269ab", + "revision": "580d1db2a54f4c1d8e2751d2", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55090,10 +55090,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1691557017053", - "revision": "df8ee6c0a8734ff38e821044", + "revision": "d58677c736e14ea988a67f37", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55127,10 +55127,10 @@ "base_currency_id": "BRL", "status_detail": "accredited" }, - "revision": "e8950c66a74b4bc4b0310618", + "revision": "6e0daf7b08504f4fa0b04131", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55138,10 +55138,10 @@ "content": { "type": 5, "value": "Investimento de 30,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/9/2024", - "revision": "13327e724c8b4043a2466141", + "revision": "b41e00652f6e4c558c892d4e", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55155,10 +55155,10 @@ "value": 1694808463023 } }, - "revision": "2d491dc4754743e7a5cd86a7", + "revision": "2e6a0cd4a59146b2ad111578", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55176,10 +55176,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "0a641d68795b40af999c696f", + "revision": "6e6bae722a2f412ca714f1bc", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55187,10 +55187,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1692216463023", - "revision": "1981f3a340fb406b81937c1c", + "revision": "36899e5c86c84438abb3bd8d", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55230,10 +55230,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d6e892970b9649819aa2bd7f", + "revision": "6609f931fa504314abf61b65", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55241,10 +55241,10 @@ "content": { "type": 5, "value": "Deposito de um valor 720,00 para a carteira iVip 0721.5687.2012.5989-10", - "revision": "d2e5266b7e684d29a102f7fb", + "revision": "7cd7858d4bba4549a816f031", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55266,10 +55266,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "271d6a69c5cd43e68be9fa7e", + "revision": "7c8baf9a67ad47cc86f8cb67", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55305,10 +55305,10 @@ "currency_id": "BRL", "history_id": 1692296799894 }, - "revision": "4090cd56525b47b8b05e910e", + "revision": "798bece973a14869beabf808", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55316,10 +55316,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 3 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", - "revision": "1a496f5cb025417494f7fe37", + "revision": "5ed803bb860943e19175634e", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55341,10 +55341,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "44b60f419def4eedaa4fc487", + "revision": "77f06e0354334789958b6a25", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55380,10 +55380,10 @@ "currency_id": "BRL", "history_id": 1692296800012 }, - "revision": "f41dde8086934f279cf9d060", + "revision": "b2959a698b7b49369c8cf36b", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55391,10 +55391,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 3 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", - "revision": "49917965f1bd4e58b934b7ec", + "revision": "26435ea283ef435dad4ece55", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55412,10 +55412,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "0337ae262267451891872542", + "revision": "a38a14331b48458ca66c0ace", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55423,10 +55423,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694237371329", - "revision": "6efef2d8142e43218b60b438", + "revision": "2b482c80065b489582a612f4", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55460,10 +55460,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "342c0f8001734b83998e0d7c", + "revision": "bcb29aeb321c479999748b83", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55471,10 +55471,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 200.000,00 IVIP com um rendimento de +4.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "db6753138b8a478c9f3147c2", + "revision": "244b542c2fb84d0bae32d538", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036376, + "modified": 1702563036376 } }, { @@ -55492,10 +55492,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "55c6b5d89e1f4bcea33574a1", + "revision": "66dfb3901a2645beb9ba8a0c", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036377, + "modified": 1702563036377 } }, { @@ -55503,10 +55503,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694237443497", - "revision": "5540d5bb1f894e7299890025", + "revision": "8ea47a84f92f4837b58abe7c", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036377, + "modified": 1702563036377 } }, { @@ -55546,10 +55546,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "3467833768c84a3b887fdf65", + "revision": "740b17d2bddb4df5b16024e1", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036377, + "modified": 1702563036377 } }, { @@ -55557,10 +55557,10 @@ "content": { "type": 5, "value": "Investimento de 1.030.591,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 09/10/2023 - Y12XDT27", - "revision": "c2a495b1d6494ac4a54422d6", + "revision": "75022f95dfc14b9d8e02532b", "revision_nr": 1, - "created": 1701809344924, - "modified": 1701809344924 + "created": 1702563036377, + "modified": 1702563036377 } }, { @@ -55574,10 +55574,10 @@ "value": 1697304530286 } }, - "revision": "5c0ea6fa3dd948cc845d4f7c", + "revision": "b9903095b73a4eafa6014600", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036377, + "modified": 1702563036377 } }, { @@ -55595,10 +55595,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a291867a52ed4396ab7c8b34", + "revision": "0737645a0ff14ffcb48d666c", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036377, + "modified": 1702563036377 } }, { @@ -55606,10 +55606,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694712530286", - "revision": "bedc9c6b0c9546bdba89b801", + "revision": "4acbd150c6514f25833addbe", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036377, + "modified": 1702563036377 } }, { @@ -55649,10 +55649,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d6b66d98c9844b04bae2b8a9", + "revision": "3abbf933f6c14d59a08398db", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036377, + "modified": 1702563036377 } }, { @@ -55660,10 +55660,10 @@ "content": { "type": 5, "value": "Deposito de um valor 820,00 BRL para a carteira iVip 0721.5687.2012.5989-10", - "revision": "a1360141fd2143a299a30677", + "revision": "f10d9d609c6f4ad3b402bf14", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036377, + "modified": 1702563036377 } }, { @@ -55683,10 +55683,10 @@ "installment_paid": 4, "installments_payable": 0 }, - "revision": "c73699625a2c47bab9bdd3a8", + "revision": "cace423b289346f8aa2c5325", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -55694,10 +55694,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694723447405", - "revision": "6261aa5c30c04551b71c4c77", + "revision": "06e1b8c9b2954146946c9268", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -55731,10 +55731,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "a7a419bb8c32405aacac21b4", + "revision": "21faef87bf0346b3812cbed3", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -55742,10 +55742,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 4 de 4 no valor de 452,52 BRL referente ao contrato 1684623306168", - "revision": "72488f80303c4508afa2419e", + "revision": "162aedcd60fa4559a50a9e79", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -55765,10 +55765,10 @@ "installment_paid": 4, "installments_payable": 0 }, - "revision": "caea9c4566854744b363e375", + "revision": "4cac30eff57948fcbdd8033b", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -55776,10 +55776,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1694723447463", - "revision": "a96112a404134bca98e6180b", + "revision": "4be68f3720d24479a0b0dca7", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -55813,10 +55813,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "d567d85c335d45e7ac645f7e", + "revision": "5c2f26ed5aad46b8b618383c", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -55824,10 +55824,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 4 de 4 no valor de 357,48 BRL referente ao contrato 1684624857509", - "revision": "280360d093ff4c6c8e2d583b", + "revision": "77076ea354d844d7a2ebda6f", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -55845,10 +55845,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "e8d46e11f36c4a1aa6c4c7a7", + "revision": "dcdd37903fb343dc8e81d3e6", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -55856,10 +55856,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072156872012598910/history/1696464489805", - "revision": "0eec7700800b4560bd78b988", + "revision": "c6b1f995ab244fd5b7231102", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -55894,10 +55894,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "e8a7171f2ac248c680cea0f6", + "revision": "07bad6e3e7a94c828fb6dd08", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -55905,10 +55905,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "00a67da18ad34d1fab7ed504", + "revision": "2fc28e48b4d9447c91724a9c", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -55916,10 +55916,10 @@ "content": { "type": 1, "value": {}, - "revision": "12193075d66d412fa8c18023", + "revision": "98d23e580960479885af44c7", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -55931,10 +55931,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, - "revision": "46c47e254acf4d7d9d40b305", + "revision": "7ace2e98f5fb4a26a66cbbf0", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -55956,10 +55956,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "d248be574d784baa9101049b", + "revision": "8d1f011cfcd24cba9c08fd4f", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -55967,10 +55967,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "349985dd593948ec9cebcfe5", + "revision": "f7217604abb845e5b7c71419", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -55978,10 +55978,10 @@ "content": { "type": 2, "value": {}, - "revision": "6131cc3ec5d6489d96e6ab37", + "revision": "d176fd7fe0074fd597c15198", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -55993,10 +55993,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, - "revision": "5794c29373064936b41aa2d8", + "revision": "9d642d5d1d134c81a9da416c", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56018,10 +56018,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "41e7f1252e52422a85b78d5b", + "revision": "2b813d68fe7e45108068acc6", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56029,10 +56029,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "0767b09d166e4fc59557d6af", + "revision": "2a15138fc7a84946b7165c3c", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56040,10 +56040,10 @@ "content": { "type": 2, "value": {}, - "revision": "7dc854a6086b45c1b1121684", + "revision": "9aeef3b8872c442095f3e3ed", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56051,10 +56051,10 @@ "content": { "type": 1, "value": {}, - "revision": "ddf396f9838044e6a51d9905", + "revision": "648614f14d9b47ad87366ae4", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56066,10 +56066,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, - "revision": "e473ac5e22224d618e99b59c", + "revision": "7cc3f6e13f10496fa1d18b6b", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56091,10 +56091,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "5e42e7d762fb487e811ede78", + "revision": "a2adf8c5f7b949828f736c6c", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56102,10 +56102,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "95b686b667744b63b7037429", + "revision": "08c579bfdccc47c98213307d", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56113,10 +56113,10 @@ "content": { "type": 2, "value": {}, - "revision": "9d8e6f2fe347482ebbb4c2c1", + "revision": "a545bd89c1114807a512cce3", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56128,10 +56128,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, - "revision": "444b9eb176894b1b85ac00f7", + "revision": "8487b1d1c29443ce8eab8963", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56153,10 +56153,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "c696e43e22df43cab4c11712", + "revision": "ca2da29af646492980dbf70e", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56164,10 +56164,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "29afd10fe18642e598454e85", + "revision": "a134f846abc24fc68cf33260", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56175,10 +56175,10 @@ "content": { "type": 2, "value": {}, - "revision": "047d3493a91946c9a99f3595", + "revision": "a0f9382691654da5aed08493", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56186,10 +56186,10 @@ "content": { "type": 1, "value": {}, - "revision": "add2f38513574571827b4d9b", + "revision": "9cf8d664a5df43229394e576", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56201,10 +56201,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, - "revision": "1df94515a9a945e1a767a1b6", + "revision": "4242cf96af9e4309898e4d11", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56226,10 +56226,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "e1a97535484e47a293eb0b00", + "revision": "452e33a85f624c48ad06a589", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56237,10 +56237,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "fec886708bea4324b03a1017", + "revision": "993daa59a2274f61948cc867", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56248,10 +56248,10 @@ "content": { "type": 2, "value": {}, - "revision": "d28dae51162f4bebbddc178a", + "revision": "defff3c4fa904155acdada32", "revision_nr": 1, - "created": 1701809344925, - "modified": 1701809344925 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56263,10 +56263,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, - "revision": "02e8889c41a9459685df76d4", + "revision": "f6f24573e54d45bf8d8e7b29", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56288,10 +56288,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "f7a4cf47f2fd408b9da72b06", + "revision": "db80117b43ff493ba27f32b2", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56299,10 +56299,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "3573db0f904947209681bef8", + "revision": "6390f0ceeeda493592123758", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56310,10 +56310,10 @@ "content": { "type": 2, "value": {}, - "revision": "3d732fde9e52429693889122", + "revision": "b3b55bd3ef95424db9d4ff6b", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56321,10 +56321,10 @@ "content": { "type": 1, "value": {}, - "revision": "9c51fdbb921744c9b1e3d561", + "revision": "f39e96059d1044c89f5b3cd5", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56336,10 +56336,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 134.08 }, - "revision": "819e406ded9140ec9982ade3", + "revision": "031308046fb44dc0bd8e1f3a", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56365,10 +56365,10 @@ "value": 1694723447423 } }, - "revision": "17246d058225436caefd0f7c", + "revision": "8c7206b843234e35bf50c9ab", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56376,10 +56376,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.676,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.810,08", - "revision": "3a62148f4fd44746a1edc0fb", + "revision": "aa5794f44156491796928f65", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56387,10 +56387,10 @@ "content": { "type": 2, "value": {}, - "revision": "3e4e7c56731846ff9f4b09db", + "revision": "6abd318b411546a1b6e7f01c", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56402,10 +56402,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 105.92 }, - "revision": "bd5e3657672f4ac2abf16d1d", + "revision": "4cff713add7b4e56afd2646c", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56431,10 +56431,10 @@ "value": 1694723447480 } }, - "revision": "bf8a714076544a6eb51c71fd", + "revision": "b4116c2666754edca47c7892", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56442,10 +56442,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.324,00 para a carteira iVip 0721.5687.2012.5989-10 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.429,92", - "revision": "876f6a7ef38041dc9a78f20e", + "revision": "2981a083a8124aaeb0af63a6", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56453,10 +56453,10 @@ "content": { "type": 2, "value": {}, - "revision": "b3db9cef15c74b5db3bdea24", + "revision": "4d8772c0076e4a818d376d55", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56464,10 +56464,10 @@ "content": { "type": 1, "value": {}, - "revision": "fb6ab521dd7b4f2d85eaf3f0", + "revision": "42fd09d91bf247999bc556ba", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56475,10 +56475,10 @@ "content": { "type": 1, "value": {}, - "revision": "dc9c8f1edc2f4ec5a1fcaff2", + "revision": "eb4e3e00b30b4f9daa6b9679", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56497,10 +56497,10 @@ "value": 1684186352172 } }, - "revision": "d6a3dbb90d054d31bf5114a1", + "revision": "1fa38c5c154243e0bb6b0f05", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56517,10 +56517,10 @@ "value": 1696561200000 } }, - "revision": "ea29a009fe6f4e1e9d36765d", + "revision": "ce5991b0e05c450ba60ce287", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56528,10 +56528,10 @@ "content": { "type": 1, "value": {}, - "revision": "1aeac505f77341b484e14344", + "revision": "9dbecf38298d44ada19772df", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56539,10 +56539,10 @@ "content": { "type": 1, "value": {}, - "revision": "f95efdeab97e487fa2a717c4", + "revision": "c214d6b5ce144beeb1654a2e", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56555,10 +56555,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "7c6935648ca74e75bc8bec28", + "revision": "ea2cd7cbd9e2425d88e2550f", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56570,10 +56570,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "5b731c5f5bb849f68d6531d4", + "revision": "dc77e5b535ea4729b5a8069b", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56585,10 +56585,10 @@ "symbol": "IVIP", "value": 15.26 }, - "revision": "22fc014527384077a510e09c", + "revision": "f9198aff4a7e4fe9835533dd", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56596,10 +56596,10 @@ "content": { "type": 1, "value": {}, - "revision": "73456c74c02b4434a0229c99", + "revision": "14d6020040df43d88431a039", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036378, + "modified": 1702563036378 } }, { @@ -56609,10 +56609,10 @@ "value": { "costs": {} }, - "revision": "64c1ce1cacb24546b8821583", + "revision": "0837aad366014f8a8e9e7856", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -56654,10 +56654,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3bde945f7f5e40629435872a", + "revision": "401b60e8c5e94b2e9113c7a4", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -56665,10 +56665,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0723.1653.8247.0090-10", - "revision": "7e642831e7b24e2f8ff0ed36", + "revision": "ba5085dcd5ad4a05a27015fd", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -56688,10 +56688,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "60753dde915c4953aa8491dd", + "revision": "f487ecb9b3af4e80b50c6e3d", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -56727,10 +56727,10 @@ "history_id": 1689029121257, "description": "Compra de 44.999,00 IVIP por 50,00 BRL" }, - "revision": "6ae89d83c8a246509da03d26", + "revision": "1ff1c971fdf745bf8b616385", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -56738,10 +56738,10 @@ "content": { "type": 1, "value": {}, - "revision": "a71501d8cecd4f93b11f7fb6", + "revision": "48c42f5ed6cf4d0d905c9522", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -56749,10 +56749,10 @@ "content": { "type": 1, "value": {}, - "revision": "d9fc5eed4c21400fa8266c56", + "revision": "db38648a5e85400e94686299", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -56763,10 +56763,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "837f78e9ba0a460cb6c5f233", + "revision": "1e89f72b1d9e40cbb58e5263", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -56780,10 +56780,10 @@ "currencyType": "USD", "balancesModificacao": 1689822000000 }, - "revision": "8682030f69664bc59be8552e", + "revision": "24bcd9d900b94e71b1da6497", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -56795,10 +56795,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "ea22662e36d94454a2c4cd27", + "revision": "58e4e43dbb304f1fb3f61471", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -56810,10 +56810,10 @@ "symbol": "IVIP", "value": 24.34 }, - "revision": "45b217e60c124fea92c6b014", + "revision": "f391b186a7694744ab3811db", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -56821,10 +56821,10 @@ "content": { "type": 1, "value": {}, - "revision": "3a2b8f2cb23d432c8c758ac6", + "revision": "a92f3b4092d043f8b964078b", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -56834,10 +56834,10 @@ "value": { "costs": {} }, - "revision": "e4633167df32412a87ec9dcb", + "revision": "c2d2811cd12a47c9a05bef30", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -56879,10 +56879,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c6349c29e1d74665923b67b4", + "revision": "a405cfaea8c943a7b6cd5af1", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -56890,10 +56890,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0724.0208.9290.1489-10", - "revision": "b7181ce4e3a041a084d7d8fc", + "revision": "c0dfffb9dee14d52b7d510af", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -56913,10 +56913,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "1465f349c5394f968a7abdf0", + "revision": "6bf5796894644a409f17ad61", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -56952,10 +56952,10 @@ "history_id": 1684634671417, "description": "Compra de 488.292,00 IVIP por 100,00 BRL" }, - "revision": "0605359aa4a9474da70a6c10", + "revision": "54c7213f6cdf42cabb42414f", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -56965,10 +56965,10 @@ "value": { "costs": {} }, - "revision": "597342c90c74423c9bc9a5a9", + "revision": "8924d7a216f245ee9e172d24", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -57010,10 +57010,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "885b5b5f9e994c749396d101", + "revision": "a60f9f218508469d865155f9", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -57021,10 +57021,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 120,00 para a carteira iVip 0724.0208.9290.1489-10", - "revision": "f96c78b632c04f6fac149c5d", + "revision": "933a021e1ba54f2b925c5021", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -57034,10 +57034,10 @@ "value": { "costs": {} }, - "revision": "7769a155e5c74aa1815d030d", + "revision": "3bbde30eb7cd4d15bb8bc612", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -57079,10 +57079,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ec878c6eb26643349d9c9470", + "revision": "6d6b09b4f61b4dfa8147404e", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -57090,10 +57090,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.510,00 para a carteira iVip 0724.0208.9290.1489-10", - "revision": "76b23c27846f498f83eb2b74", + "revision": "5a9fdf3245ea4b87bfd9b576", "revision_nr": 1, - "created": 1701809344926, - "modified": 1701809344926 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -57113,10 +57113,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "d6f74071a7a34406919b4b4b", + "revision": "062c9a21c98348f9b0fc9dba", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -57152,10 +57152,10 @@ "history_id": 1685744132878, "description": "Compra de 5.725.017,00 IVIP por 1.630,00 BRL" }, - "revision": "58e78cf6b4374eb9a053d608", + "revision": "49c45adc902047898f7853d5", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -57165,10 +57165,10 @@ "value": { "costs": {} }, - "revision": "e7744c86aea54e7084c4e91b", + "revision": "40cd79f4cd2646cd85d7db99", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -57210,10 +57210,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "de13ea1354a847bdaa68f1aa", + "revision": "bc3125ff3de74a4e8be65e07", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -57221,10 +57221,10 @@ "content": { "type": 5, "value": "Saque de 5.122.916,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", - "revision": "c537206dab204917be6516ab", + "revision": "c9e7eaf3d11e447ead2a1d32", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -57234,10 +57234,10 @@ "value": { "costs": {} }, - "revision": "8fdfbc51a60a4ae79b08fda6", + "revision": "842ec23e78f64b49ae1fc05b", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -57279,10 +57279,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "de896683d9d9439bae8abcf0", + "revision": "63c10b754cc245b89c7a774a", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -57290,10 +57290,10 @@ "content": { "type": 5, "value": "Saque de 1.002.074,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", - "revision": "cd1aebd17a0a4f52904f3a06", + "revision": "3b1e7159c897458c9c0df617", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036379, + "modified": 1702563036379 } }, { @@ -57311,10 +57311,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "de73d466e7104fd8ada4f0e9", + "revision": "d9deea55b37f496e8be12e5d", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57322,10 +57322,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/072402089290148910/history/1690225683361", - "revision": "fc3e8a71c76f4222b50141aa", + "revision": "b7b82258cc6a4606a2dd4692", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57369,10 +57369,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "ae2f104e8e6040b69b9781b3", + "revision": "5ddafebca87c4865bb50e2b9", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57380,10 +57380,10 @@ "content": { "type": 5, "value": "Saque de 88.319,00 IVIP para a carteira 0x91AbD851Fa7024F00cBC1aedA2c6DEDD22e70E83", - "revision": "35e921dfbf514d2d9e406425", + "revision": "815b969ddb444968b0623b48", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57391,10 +57391,10 @@ "content": { "type": 1, "value": {}, - "revision": "63a51698be18414d987ba373", + "revision": "04a97e8984a94e4c853f09be", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57402,10 +57402,10 @@ "content": { "type": 1, "value": {}, - "revision": "bd00d6e57f434da49fb7cec1", + "revision": "0e50064fef4d4abea35374f8", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57424,10 +57424,10 @@ "value": 1687975284723 } }, - "revision": "3aeb759a3bcb41bb864344b2", + "revision": "955ee88405214a038b84b84c", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57441,10 +57441,10 @@ "currencyType": "USD", "balancesModificacao": 1690398452515 }, - "revision": "241098007c374bae81c7a8e5", + "revision": "b125322d82df4bb7885d64a8", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57452,10 +57452,10 @@ "content": { "type": 1, "value": {}, - "revision": "35c70c54f4d64f23bf6abd83", + "revision": "7c1901a3ff1c442c839e44c8", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57463,10 +57463,10 @@ "content": { "type": 1, "value": {}, - "revision": "60741896a90847d4b07de7fd", + "revision": "e4f9f63aa410498b82a03b96", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57478,10 +57478,10 @@ "dateValidity": 1696199966060, "currencyType": "USD" }, - "revision": "59c9c44f481c4ab4b77adafd", + "revision": "55218e94b8cb478994655a69", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57489,10 +57489,10 @@ "content": { "type": 1, "value": {}, - "revision": "9c31ef4e3dac43f9bfe7a595", + "revision": "d92f55d2653e49b4a2304c03", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57502,10 +57502,10 @@ "value": { "costs": {} }, - "revision": "3aa4e67f2d1041aaac795a7c", + "revision": "18d3b0219ae641f095fd1d2f", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57542,10 +57542,10 @@ }, "money_release_status": "rejected" }, - "revision": "a2c4a63d847842e49857e99b", + "revision": "0d39cbf5538542a3aa1bcefc", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57553,10 +57553,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0749.8124.2324.5748-20", - "revision": "efe557e5efe44327b316a874", + "revision": "f15e68952296449fbebbb2ec", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57564,10 +57564,10 @@ "content": { "type": 1, "value": {}, - "revision": "3b8d094b4dfb4cb5a487e35d", + "revision": "221562a7b9a54754a23a7dbd", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57580,10 +57580,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "d15b781297c143088e6c8848", + "revision": "4922afd64fd342f5b69cdadf", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57595,10 +57595,10 @@ "symbol": "BRL", "value": 6.28 }, - "revision": "fb4bfdebf32749fea7e112e1", + "revision": "efca8b59b558438a9f7e592f", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57606,10 +57606,10 @@ "content": { "type": 1, "value": {}, - "revision": "82a93c411c574ceb892d683f", + "revision": "089e9d601cd3476093956a2c", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57619,10 +57619,10 @@ "value": { "costs": {} }, - "revision": "4546d79f15184f728ac07ea5", + "revision": "0fa72b79733c47ddab827903", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57664,10 +57664,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "086ae82ab7264214a7febd96", + "revision": "c1d184fc248e451e98076c72", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57675,10 +57675,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 30,00 para a carteira iVip 0752.7001.2379.5890-70", - "revision": "541ee115e0ae4b43a31c630f", + "revision": "060c4c9adaba4ab7959c372d", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57686,10 +57686,10 @@ "content": { "type": 1, "value": {}, - "revision": "cc8b1afd71c643628ebb3847", + "revision": "1261b1e1578c4252927db7ad", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57697,10 +57697,10 @@ "content": { "type": 1, "value": {}, - "revision": "a732d3c6e40a4736915b3bbd", + "revision": "bed650bfb9244abfb17a6f31", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57711,10 +57711,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "c89b435c885840dbbcb6876b", + "revision": "e4aa4afea1644d0795636ff6", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57728,10 +57728,10 @@ "currencyType": "USD", "balancesModificacao": 1690416536434 }, - "revision": "2cb96982ab2f4ce185dc8d82", + "revision": "36f04088ccbc4f7f86c58fd4", "revision_nr": 1, - "created": 1701809344927, - "modified": 1701809344927 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57743,10 +57743,10 @@ "symbol": "BRL", "value": 36.47 }, - "revision": "0b4f7bf3b0f5402584fb41ee", + "revision": "998497a48bbb410baf57c858", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57754,10 +57754,10 @@ "content": { "type": 1, "value": {}, - "revision": "b9e3641bd226414aac77eae8", + "revision": "2af968391f874d74ad9e7834", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57767,10 +57767,10 @@ "value": { "costs": {} }, - "revision": "3bf4690ea0b7469aaf19fa54", + "revision": "fe93b98247dc4466bdfd1f21", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57812,10 +57812,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "05bcc4fca50b4458a0ec92a9", + "revision": "68b0a104c281440d9394ea30", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57823,10 +57823,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 240,00 para a carteira iVip 0754.2952.0947.6616-50", - "revision": "e140115f78ac4d58beffe5be", + "revision": "f0660694e3aa4a01a4437380", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57846,10 +57846,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "06b99cc9471d4294ac68ac6a", + "revision": "c0e6a72e851c4de9b1f5a9df", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57883,10 +57883,10 @@ "currency_id": "BRL", "history_id": 1689771495719 }, - "revision": "96c291db1f334a4a96067ea6", + "revision": "e345493ea00d48c18592bb4f", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57894,10 +57894,10 @@ "content": { "type": 5, "value": "Investimento de 54,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 5/19/2024", - "revision": "410d6cd253b94f4a9f6f914b", + "revision": "813e6f30297e4acb9538ecb6", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57905,10 +57905,10 @@ "content": { "type": 1, "value": {}, - "revision": "6d111e9c6de346ed96978fe8", + "revision": "adcb38088194451aa6d29f0b", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57916,10 +57916,10 @@ "content": { "type": 1, "value": {}, - "revision": "116d28c8473e43be978a9b21", + "revision": "5e9d07858b264c07bebdad42", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57930,10 +57930,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "c47366f0ada64aa9abaa945b", + "revision": "53f3bc86be964199a8f9efb5", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57950,10 +57950,10 @@ "value": 1697425200000 } }, - "revision": "912bbdca7ef84095ab2d1a87", + "revision": "3fce3b91dfb24263854f0fa8", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57961,10 +57961,10 @@ "content": { "type": 1, "value": {}, - "revision": "2f601264abc04157932f3c13", + "revision": "e3f2202fb4cd4d26bad953e6", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57972,10 +57972,10 @@ "content": { "type": 1, "value": {}, - "revision": "f5947844b2f348718aadea6f", + "revision": "51264d944a2740a3942b624d", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57983,10 +57983,10 @@ "content": { "type": 1, "value": {}, - "revision": "ec02722840c6487e878bdea7", + "revision": "6654464f59174d799b11260f", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -57997,10 +57997,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "b6fc05c615db490e90c2dc12", + "revision": "96cfcdd507de415abeb3972b", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -58017,10 +58017,10 @@ "value": 1697079600000 } }, - "revision": "1330b1ed85ee4ae485f5cf6c", + "revision": "1f1c37465df94b668bb89bdf", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -58032,10 +58032,10 @@ "symbol": "IVIP", "value": 508.13 }, - "revision": "91ce844409bc41e39d0c6c12", + "revision": "812d3a17e65b4e33a64977e2", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -58043,10 +58043,10 @@ "content": { "type": 1, "value": {}, - "revision": "c3c25488048543d89eb63cd3", + "revision": "22a19c05280f4f4682d203b6", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -58056,10 +58056,10 @@ "value": { "costs": {} }, - "revision": "cc577fd4330844aab8be5c59", + "revision": "f4375d566ab94ba990b6aace", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -58101,10 +58101,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a6e4f5db171c4fa69ee7ae18", + "revision": "23d60f6842e94f0bb8467019", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -58112,10 +58112,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "ad4da5be90074add99e50061", + "revision": "d6454e560ff24315894569d4", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -58125,10 +58125,10 @@ "value": { "costs": {} }, - "revision": "e8b9091361fd454cb01f5f3a", + "revision": "33cad4f460c3421e80d482bc", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -58170,10 +58170,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "fa2e36a6826c432e921b742c", + "revision": "784b99afe58148c5bca7f75a", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -58181,10 +58181,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "4f89797f6bf847d9b9830cfe", + "revision": "f605910ccf4c4a4dad00f427", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -58194,10 +58194,10 @@ "value": { "costs": {} }, - "revision": "4ac5a8f2fa6f4bb381d650d2", + "revision": "24770f57f2e743709fbd9786", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58239,10 +58239,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "23d08643d9b746fda2f97293", + "revision": "060b7af00df040518b0d28ab", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58250,10 +58250,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "6bba0e2c69ef46b594581dd5", + "revision": "099d3a82d31441d1926bc3b1", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036380, + "modified": 1702563036380 } }, { @@ -58265,10 +58265,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "6fb2af4ef3924733be900bf5", + "revision": "f26d04ab42c143d98fd5d8cb", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58276,10 +58276,10 @@ "content": { "type": 1, "value": {}, - "revision": "b2f6706af6034e3e972934cd", + "revision": "0e812a8e5b1a4ca3a9a6a545", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58287,10 +58287,10 @@ "content": { "type": 2, "value": {}, - "revision": "690147948d4b467e872b697b", + "revision": "6e19e7c54f15423daf4ce76d", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58323,10 +58323,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "0e2dc1ce51f2445783f5f8f1", + "revision": "2294c95a89334e5e96e18db9", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58334,10 +58334,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "2f7e72c4b73b4464a28e1969", + "revision": "342db5b11ffb4f30a76bce05", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58357,10 +58357,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "5fd11ef777b347568f08fdc2", + "revision": "aaf2aaf09d564077bd0bd2a6", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58396,10 +58396,10 @@ "history_id": 1684627580539, "description": "Compra de 6.331.951,00 IVIP por 1.300,00 BRL" }, - "revision": "dfa1c9fff04a4f7badae36b7", + "revision": "964304a0c5374ff88f96203a", "revision_nr": 1, - "created": 1701809344928, - "modified": 1701809344928 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58419,10 +58419,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "d391a3311f734d2194a1cee0", + "revision": "ff66599675f34bfa89250e5a", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58457,10 +58457,10 @@ "currency_id": "BRL", "history_id": 1684628335504 }, - "revision": "e65bcc572a744a9f8c0b6e92", + "revision": "f54d8a83c9244bec9c194e56", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58468,10 +58468,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "44d8ff6d86a248a083184319", + "revision": "5daffbc65462444da980eca4", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58491,10 +58491,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "4ce2f2194e744c6dbdd3b861", + "revision": "0b5526330c5d48709b1c89ed", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58530,10 +58530,10 @@ "history_id": 1684633146254, "description": "Compra de 1.561.756,00 IVIP por 320,00 BRL" }, - "revision": "7f97bffc68d84309837780a7", + "revision": "3f8bd8cc4b5b4199b255f0a7", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58543,10 +58543,10 @@ "value": { "costs": {} }, - "revision": "b6382d551e75413dac1a2b13", + "revision": "11c1c4ce08204122957221a4", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58588,10 +58588,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a314a8b57722431d830c464d", + "revision": "61899dcf24a244cfa1b8ec06", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58599,10 +58599,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "e9e019d1338246ab9b6b7d9e", + "revision": "e457079ce3cf4464b19ba936", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58612,10 +58612,10 @@ "value": { "costs": {} }, - "revision": "64c0a53d9c504a20af14e314", + "revision": "9859717b698a4e72a94960c6", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58647,10 +58647,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "b9ea02c2b0c045f2a4898459", + "revision": "013b25f41f1f4bdca8a78593", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58658,10 +58658,10 @@ "content": { "type": 5, "value": "Saque de 1.000,00 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", - "revision": "52a143ffd61b4f7daa239115", + "revision": "b597d12ded11473bb764e65b", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58671,10 +58671,10 @@ "value": { "costs": {} }, - "revision": "330c482923c34ecabf2eb1e2", + "revision": "fd714d32f6e143ed91e83136", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58706,10 +58706,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "c7cce0ff48e84c3abbc8ad64", + "revision": "9a74f66be08f47619300c302", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58717,10 +58717,10 @@ "content": { "type": 5, "value": "Saque de 100.000,00 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", - "revision": "1a64486eb80041bb905e464e", + "revision": "0fd6b226491a4031a3e2f735", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58742,10 +58742,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "9638f36fd4c747c9b31253c6", + "revision": "a4e682f0b14e4d34991f029a", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58781,10 +58781,10 @@ "currency_id": "BRL", "history_id": 1689751872577 }, - "revision": "ce4042baffa841599bad21b0", + "revision": "dc0e41b00c9141679437a44a", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58792,10 +58792,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", - "revision": "582cec2ed2124246a74533b7", + "revision": "54c98e3b0c0d4b338d50fa69", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58805,10 +58805,10 @@ "value": { "costs": {} }, - "revision": "a7463cf0edc94a72a6bd6810", + "revision": "7ef2a374ab844ce1868ac7a8", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58850,10 +58850,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "3668fcd4cffe4621919b6357", + "revision": "8104878f0bbb4387a3cc9686", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58861,10 +58861,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 130,00 para a carteira iVip 0765.1978.1500.7150-40", - "revision": "a90e6381ee514526a5216061", + "revision": "70e8ef596010473d8c9cc2f3", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036381, + "modified": 1702563036381 } }, { @@ -58886,10 +58886,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "542071b27b304cbdaacf5862", + "revision": "12f1849b6d894d0a90f68bee", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -58925,10 +58925,10 @@ "currency_id": "BRL", "history_id": 1690471265404 }, - "revision": "f084ac36c0ef49929125f73b", + "revision": "ed54905624304174947380f5", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -58936,10 +58936,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", - "revision": "f132b34f5c544d498d51f88a", + "revision": "8656620dccfa455d84b088fd", "revision_nr": 1, - "created": 1701809344929, - "modified": 1701809344929 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -58953,10 +58953,10 @@ "value": 1695216566475 } }, - "revision": "033560d414574a579fd2148b", + "revision": "cc6b9010c17344399422f62d", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -58974,10 +58974,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a08ac1448e3d464d8a273356", + "revision": "03e59cccbd8545b9a557ee17", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -58985,10 +58985,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692624566475", - "revision": "3d0bfab34bf84634bcc3aee1", + "revision": "401923fe5228431baad376ee", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59028,10 +59028,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5a3dc0d6857843048c9e290f", + "revision": "0566cceac7584bbd89a52530", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59039,10 +59039,10 @@ "content": { "type": 5, "value": "Deposito de um valor 130,00 BRL para a carteira iVip 0765.1978.1500.7150-40", - "revision": "639c1bef329547eeb4285409", + "revision": "cad7470ed16a4086996071e0", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59062,10 +59062,10 @@ "installment_paid": 3, "installments_payable": 7 }, - "revision": "33d26d2564e8406abdc092ca", + "revision": "70ea2d6b9e884fa0b8553a32", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59073,10 +59073,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692660761580", - "revision": "e5d459f318e14688ba8c9adc", + "revision": "1706c550b04144c08e088c5a", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59110,10 +59110,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "4c5cf438ac75454889c71a34", + "revision": "f8fddd0b26094faf827b1deb", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59121,10 +59121,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 3 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", - "revision": "8fed5e0ae03b4552bb211d98", + "revision": "435003dd25c84b14b08c4e4d", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59136,10 +59136,10 @@ "label": "Taxa de 3,00%", "amount": 208830.06 }, - "revision": "37f7b63a63544c7f81514e6f", + "revision": "4c98cd6745984584abfbcb83", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59156,10 +59156,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "a0b94886fefe4b1081ffdc79", + "revision": "ac89693edb3e49dbb3ed7443", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59167,10 +59167,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1692785689941", - "revision": "10e4ed7b45334cd9a78f3519", + "revision": "27a3eeaf859c43108c6d4a0f", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59178,10 +59178,10 @@ "content": { "type": 2, "value": {}, - "revision": "a8561a20c9794dec8f48fff8", + "revision": "6ebd379ff781444d83d0c8ab", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59225,10 +59225,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "dcb6937a80964a10a2a04da2", + "revision": "12c67705378948efacda1deb", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59236,10 +59236,10 @@ "content": { "type": 5, "value": "Saque de 6.752.171,94 IVIP para a carteira 0x592773d79A4a31d90b5Ce695fB3D04201E8B3113", - "revision": "df5ec1a6b9724a9180016892", + "revision": "2f72dddc469e4671ae38e312", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59253,10 +59253,10 @@ "value": 1699203881018 } }, - "revision": "5b8e81d18069446e9ae2c0e4", + "revision": "f9587f83ca3a459197713948", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59274,10 +59274,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "942f6ac53d4847b8937e11e9", + "revision": "142e6f3b809a4ef397f22574", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59285,10 +59285,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1696611881018", - "revision": "0d8b8e0f6afd4e7eadaf8ae9", + "revision": "a200e42b794f4dbdbe831943", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59329,10 +59329,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c6524eeb31ba4dbf81856fb4", + "revision": "5cd8f98ebb294f96a41368d2", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59340,10 +59340,10 @@ "content": { "type": 5, "value": "Deposito de um valor 130,00 BRL para a carteira iVip 0765.1978.1500.7150-40", - "revision": "e6cbdb591b934449b8cd7edd", + "revision": "e8a0ccd4c3d84128ab66eec8", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59363,10 +59363,10 @@ "installment_paid": 4, "installments_payable": 6 }, - "revision": "0b2df1f98f4b42b886a6ea50", + "revision": "16b1fe6faa2d4101901fc8ff", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59374,10 +59374,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/076519781500715040/history/1696613460272", - "revision": "ecd6536a6454484f91b3d1d6", + "revision": "5a5dc0e31d784f7da490d893", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59412,10 +59412,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "e3cd914f7f5f4b71b06f53fa", + "revision": "e5b94b7ddcae407286decf83", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59423,10 +59423,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 4 de 10 no valor de 130,00 BRL referente ao contrato 1684353970499", - "revision": "07bba2b621b64ca0bfacd52a", + "revision": "6a3c15bdf4de4587a8b5e49e", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59434,10 +59434,10 @@ "content": { "type": 1, "value": {}, - "revision": "5915556912f048db8c4bf058", + "revision": "f88f846441c4414aaa7967af", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59449,10 +59449,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "cb61d7b59ca741d4bf5253b3", + "revision": "b362b22183ed4c61922ad1f5", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59474,10 +59474,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "d9bf2b7277ea408581654a60", + "revision": "dc571060f70c4788ab1af514", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59485,10 +59485,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "2506ee2e1c2e4757a7e00a87", + "revision": "b03c4d9dee46476880d21bc4", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59496,10 +59496,10 @@ "content": { "type": 2, "value": {}, - "revision": "d27ece412971429ea5cdd89c", + "revision": "24556146b0ef4940a43e788c", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59507,10 +59507,10 @@ "content": { "type": 1, "value": {}, - "revision": "2b8bf396e4f0469da65a15aa", + "revision": "d79cc7b279214bdfbbaeae2e", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036382, + "modified": 1702563036382 } }, { @@ -59522,10 +59522,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "731561521b36496ca6e1405e", + "revision": "80cb3e433ad7429090847fa3", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59547,10 +59547,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "583612c3795a4a32b4518f02", + "revision": "c2d4150f8bf445a8a9b3a3b5", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59558,10 +59558,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "17289a0e57214219afbc476e", + "revision": "146dcd0259d54809a793ba32", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59569,10 +59569,10 @@ "content": { "type": 2, "value": {}, - "revision": "7644664137114340ada3bed0", + "revision": "880debeeabd742e09989f6d7", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59580,10 +59580,10 @@ "content": { "type": 1, "value": {}, - "revision": "39236e68017f43ceb3d8c1cd", + "revision": "a1b550f466ef42c3817f8349", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59595,10 +59595,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "4c087789274e4def9a0db845", + "revision": "9ab8d75961564920a4282fb3", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59620,10 +59620,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "c67ee7e237cd46e184db1ff1", + "revision": "be20cd007e7143ef95d33cfa", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59631,10 +59631,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "d601f5e440d94ae6b5eac68e", + "revision": "2ef0e5897703487b8701cf6f", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59642,10 +59642,10 @@ "content": { "type": 2, "value": {}, - "revision": "3b1c158ffaeb454cbe7cc2f8", + "revision": "ee7ffdf142a04ea98119e2e2", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59653,10 +59653,10 @@ "content": { "type": 1, "value": {}, - "revision": "4f22a57757544b5eb9b445b9", + "revision": "84dd006ac3d042b39906d907", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59668,10 +59668,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "512b96996871419f9978a2fa", + "revision": "9fb5a40e390d4e8892f1b7cf", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59697,10 +59697,10 @@ "value": 1696613460287 } }, - "revision": "7a2222dd97c644f399f94bc5", + "revision": "029ceef27a9f4bff92c7f869", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59708,10 +59708,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "49a240dda02f45af97e1204c", + "revision": "95c4062ab2eb40f1898c08c1", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59719,10 +59719,10 @@ "content": { "type": 2, "value": {}, - "revision": "3de3ac5630654139847de9b7", + "revision": "90820d6adf4e4cee8d32493e", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59730,10 +59730,10 @@ "content": { "type": 1, "value": {}, - "revision": "953b04e9cbfb462c8fe98f1d", + "revision": "2f0ecbd0498c491e9ffd4e7c", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59745,10 +59745,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "537518fabac04e0da51f633c", + "revision": "8c270df8fc104572a9b785af", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59769,10 +59769,10 @@ "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "9596fea63b0147dfb2a84e08", + "revision": "9494a7ec1a344e709c3e3ef9", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59780,10 +59780,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "9986a97a1ee84fa1a8e65882", + "revision": "1ce76d4e2d354192851fa5b2", "revision_nr": 1, - "created": 1701809344930, - "modified": 1701809344930 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59791,10 +59791,10 @@ "content": { "type": 2, "value": {}, - "revision": "a85d0f57397b42eeadb07234", + "revision": "16907d82468d4839ae482d32", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59802,10 +59802,10 @@ "content": { "type": 1, "value": {}, - "revision": "160023cd6c7246da8db7f2a8", + "revision": "46e362066db64c5581c77e34", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59817,10 +59817,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "bb324b1cbe5447bd833fbf6f", + "revision": "788e374eef434f8ea405e6bc", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59841,10 +59841,10 @@ "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "d14f0b0236244faa989492f8", + "revision": "1c992cea400c44c1939dca79", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59852,10 +59852,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "e22095df4f2942d7b6faee32", + "revision": "911f2e45c0964ea1ab76878c", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59863,10 +59863,10 @@ "content": { "type": 2, "value": {}, - "revision": "e9d641e656ea48118f900c84", + "revision": "9769db2b3a434e648b745f4a", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59874,10 +59874,10 @@ "content": { "type": 1, "value": {}, - "revision": "13336d1cbe7a4ab88aae3088", + "revision": "6f43b950a9aa4de58afb7708", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59889,10 +59889,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "9d14af432f574e8aae1d0ccb", + "revision": "a32a366eca5644cb9c9e54b4", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59913,10 +59913,10 @@ "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "2c2c0ddcfcbe47ca88840ec2", + "revision": "5a9e4ffeb76e4981a1b77d80", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59924,10 +59924,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "9223ab8a1afd4d0f99c259de", + "revision": "b7aba323ece04d0a8079096f", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59935,10 +59935,10 @@ "content": { "type": 2, "value": {}, - "revision": "fd1c7b9cf03a49c799d8b20e", + "revision": "da5abaf60e834cd78000c2ec", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59946,10 +59946,10 @@ "content": { "type": 1, "value": {}, - "revision": "8c20c8ea3e0a41cfa84bc215", + "revision": "2538449de8f046688dcc0e0c", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59961,10 +59961,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "5b4aac3c15bb4cdeb3f90ac1", + "revision": "582a5655b3f04221b052da88", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59985,10 +59985,10 @@ "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "341d762967984098914bab7d", + "revision": "231fcf1e06954b7aa05b6d0d", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -59996,10 +59996,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "29b5a86157c8401ab9aa6d18", + "revision": "d0424d6e041947249305584f", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60007,10 +60007,10 @@ "content": { "type": 2, "value": {}, - "revision": "90458a5282444bccb262cf86", + "revision": "c4e79625f8054d66a45b998a", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60018,10 +60018,10 @@ "content": { "type": 1, "value": {}, - "revision": "495eef70fe71460c9867d505", + "revision": "bc5aa4f54dad4e30a82bc8e2", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60033,10 +60033,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "03fce6d3d3ac4017a64bb389", + "revision": "61ca135388f24384b9c0f414", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60057,10 +60057,10 @@ "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "156650d161644159968b66a4", + "revision": "f8fe5f60c652408cad41aadf", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60068,10 +60068,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "0e62082e4ee0464fb88f3b0a", + "revision": "ed19a536c5564627b8475e60", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60079,10 +60079,10 @@ "content": { "type": 2, "value": {}, - "revision": "923260079ba342108e40e015", + "revision": "694b78a5c72c4ee6b29ac123", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60090,10 +60090,10 @@ "content": { "type": 1, "value": {}, - "revision": "24036c2e131b485a9dd983f9", + "revision": "a637a79a9b6447549d8e5f7a", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60105,10 +60105,10 @@ "label": "Em 10 parcela(s) 30.00%", "amount": 300 }, - "revision": "8d7b1dd264f2404e9cd72c3c", + "revision": "da923b3aee3d49e68a117d72", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60129,10 +60129,10 @@ "history_id": 1684353970499, "currency_id": "BRL" }, - "revision": "9a4be2c1f7f2415a8276fb8c", + "revision": "697af154a7174933af78705a", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60140,10 +60140,10 @@ "content": { "type": 2, "value": {}, - "revision": "263457c393aa411aab8c7dcd", + "revision": "348eac1bd5754cd081b1edea", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60151,10 +60151,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0765.1978.1500.7150-40 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.300,00", - "revision": "5e85b1be06374024a8800ab5", + "revision": "c04d06deb7534b7ca88a0411", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60162,10 +60162,10 @@ "content": { "type": 1, "value": {}, - "revision": "d2e55e18ea4148538626b412", + "revision": "2d341f78c00e44b7a6e4a118", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60173,10 +60173,10 @@ "content": { "type": 1, "value": {}, - "revision": "6090f28f916c4d11ba3451f6", + "revision": "2480a9e1469248a392ca87b7", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60195,10 +60195,10 @@ "value": 1684329405576 } }, - "revision": "59f3340b571a4d43a97c35c5", + "revision": "5ab1ad152bf7423084b5ff46", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60215,10 +60215,10 @@ "value": 1697425200000 } }, - "revision": "4f783be837dd4932a75bf496", + "revision": "c29f50f18cc44f1aacf767bc", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60226,10 +60226,10 @@ "content": { "type": 1, "value": {}, - "revision": "51247a6567684a2292847dbd", + "revision": "d73e3927ac63417782424c01", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60237,10 +60237,10 @@ "content": { "type": 1, "value": {}, - "revision": "7c31b182515646ce945b370e", + "revision": "7baf568c513747d097039bb2", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60253,10 +60253,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "6a3ae2494d894b779cc0ee95", + "revision": "24e80260c7c64501bdc1c7cf", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60264,10 +60264,10 @@ "content": { "type": 1, "value": {}, - "revision": "540959344d194a7eb383c892", + "revision": "d262e9c4b5ff46b1b1f48f4c", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60277,10 +60277,10 @@ "value": { "costs": {} }, - "revision": "773557a5a3d24d5ea9c31f98", + "revision": "0c01e544c59d498bb3e64f1a", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60317,10 +60317,10 @@ }, "money_release_status": "rejected" }, - "revision": "9509152baee24416bccb41e8", + "revision": "f105d521f73648ba9a927968", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60328,10 +60328,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0782.9501.4075.3404-50", - "revision": "dc1b2f65a58347df9c7773e0", + "revision": "39c0ead724954ce6920833c8", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60339,10 +60339,10 @@ "content": { "type": 1, "value": {}, - "revision": "584f51d812c04a5aacf50da2", + "revision": "0c9945f4dcce4f94b2118392", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60355,10 +60355,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "ff5754d5adf943118b1a06c7", + "revision": "d2930e2297f04369b4dcfe93", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60370,10 +60370,10 @@ "available": "0.00000000", "value": 0 }, - "revision": "29ea6927d9a244e794a979f4", + "revision": "c930ebb5081b496cbd67c62e", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60385,10 +60385,10 @@ "available": "0.00000000", "value": 0 }, - "revision": "52cae4167edf4aa4932910cc", + "revision": "6c236aab12ac4a2a9a929fee", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60396,10 +60396,10 @@ "content": { "type": 1, "value": {}, - "revision": "c85eb6b393664d969aa619ec", + "revision": "cc841e345b5444d283fd0d9e", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60409,10 +60409,10 @@ "value": { "costs": {} }, - "revision": "7cd96d88c55f42c489cb9e56", + "revision": "2d115df9d279401cb8870121", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60454,10 +60454,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "709df0f950e7424f9eac3816", + "revision": "e4c8214c744e49aeabc824ec", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60465,10 +60465,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0783.4537.2944.2504-80", - "revision": "70606b3edf9d46209ce2ae39", + "revision": "8f7844f639074508a79c5605", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60488,10 +60488,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "7ad932eb823b411ea6f32e9a", + "revision": "b4f2b5a351e944baa017da01", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60527,10 +60527,10 @@ "history_id": 1684625628231, "description": "Compra de 487.073,00 IVIP por 100,00 BRL" }, - "revision": "851927c350c442059e61c006", + "revision": "824054fee60641c1b6672081", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60540,10 +60540,10 @@ "value": { "costs": {} }, - "revision": "790501360e2a44a8aacec62f", + "revision": "fc2e367f42c346679aee3dae", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60575,10 +60575,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "4edf106f4c7b442096246de1", + "revision": "19b2f0ed6a2e4ec1bcbd55aa", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60586,10 +60586,10 @@ "content": { "type": 5, "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", - "revision": "3345122ac891416f9ecf0f20", + "revision": "52d7aff040eb4191902f783e", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60599,10 +60599,10 @@ "value": { "costs": {} }, - "revision": "fc74a887371049f9af099f1a", + "revision": "e5f09a0a8b354afe80a9dbac", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60634,10 +60634,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "774622c9f8904a36a0e03ab7", + "revision": "525bdbe64c6a4a1f8fafbe6e", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60645,10 +60645,10 @@ "content": { "type": 5, "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", - "revision": "6ad6e307edc84a02a84374ee", + "revision": "b72c53d6c3cc4442a413258b", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036383, + "modified": 1702563036383 } }, { @@ -60658,10 +60658,10 @@ "value": { "costs": {} }, - "revision": "f22d175d90064fdeae8353ec", + "revision": "3428139af40047118ffc3c11", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60693,10 +60693,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "482c962fdc6a4924b438654d", + "revision": "3d4ef1916d894288bce29b88", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60704,10 +60704,10 @@ "content": { "type": 5, "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", - "revision": "dbd442deb1a7442fbef3a77b", + "revision": "fd88560fa3fd46e78c3530cd", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60717,10 +60717,10 @@ "value": { "costs": {} }, - "revision": "3aab81b393ee430c92d6cff8", + "revision": "f40c65c251854deca26e4b7d", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60762,10 +60762,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "596dedc316e14c95a07ed7ea", + "revision": "efa0b6cbeb8448208b41e1d0", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60773,10 +60773,10 @@ "content": { "type": 5, "value": "Saque de 487.073,00 IVIP para a carteira 0x598f595dCA770d249F83B8BDDAc3EBc55F703981", - "revision": "d02af2f1a1d74cf183c220cc", + "revision": "bc4e2382fc8d4f8cb675d6a3", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60784,10 +60784,10 @@ "content": { "type": 1, "value": {}, - "revision": "a59e48b7ff1e4ff6b99a4834", + "revision": "1a37ada90ad64b778c11b0b9", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60795,10 +60795,10 @@ "content": { "type": 1, "value": {}, - "revision": "3b0c3cbfc6a14ac785df6eed", + "revision": "26111d2d585c4b86be0f52b8", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60809,10 +60809,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "ac3f6f4d9f3e483d9fc56d89", + "revision": "590194297740481bb7fd47fb", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60825,10 +60825,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "adb63b97f70442dc82206522", + "revision": "ab1c934e971d4a0cb5e501ed", "revision_nr": 1, - "created": 1701809344931, - "modified": 1701809344931 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60840,10 +60840,10 @@ "symbol": "IVIP", "value": 199.32 }, - "revision": "29e1fefcda80470d8f714503", + "revision": "6736eb7ae8f740bdae1a8d1b", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60851,10 +60851,10 @@ "content": { "type": 1, "value": {}, - "revision": "1d70000e4cfe4e7f8d5a8b34", + "revision": "3f8b5a3f2fa04136a5f57b77", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60864,10 +60864,10 @@ "value": { "costs": {} }, - "revision": "c1218ee24236473c8a4af3f5", + "revision": "7871e023fb27497fb309ed69", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60909,10 +60909,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "201d9b5e6feb4bd2af68d056", + "revision": "68b80ce36da64b8e850240c2", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60920,10 +60920,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.020,00 para a carteira iVip 0807.3197.8336.0713-80", - "revision": "d0fd2ae7cabf47ff88e92989", + "revision": "5ed81293ff8c4fe79bdc48b2", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60943,10 +60943,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a43913b7878d49dd93553a16", + "revision": "4036d73a0c394c06bf12bed8", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -60982,10 +60982,10 @@ "history_id": 1684624287649, "description": "Compra de 9.838.878,00 IVIP por 2.020,00 BRL" }, - "revision": "5f955e9d71f349a08b1d927f", + "revision": "1489b0b3c99b4d4a9f6a8a0a", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61005,10 +61005,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "9186243ad6274faabdefe381", + "revision": "14e44bcd8af64b0e988f6dd9", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61042,10 +61042,10 @@ "currency_id": "IVIP", "history_id": 1685667269938 }, - "revision": "fa416fd3096e400faea6c1d7", + "revision": "7b6568c24a8645a5819c35fd", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61053,10 +61053,10 @@ "content": { "type": 5, "value": "Investimento de 7.975.273,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "d432d3e88ea34ae4b9f4eb82", + "revision": "eb1ac1e8ec3940839dae11fc", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61064,10 +61064,10 @@ "content": { "type": 1, "value": {}, - "revision": "ce3de01483cd46169e840e3b", + "revision": "cc0c888b5efe473c88e0bb4e", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61075,10 +61075,10 @@ "content": { "type": 1, "value": {}, - "revision": "cca8db8cfb1f46a7acafa455", + "revision": "887f7edbd1c04bf1b906a87a", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61089,10 +61089,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "4d56c62b54fb4982955881b9", + "revision": "4e28edb23aef4a32b0b55a0f", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61109,10 +61109,10 @@ "value": 1697166000000 } }, - "revision": "b3d68bcb52474b3fa69d13d2", + "revision": "e8809676e22c466ca907c415", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61124,10 +61124,10 @@ "symbol": "IVIP", "value": 355.3 }, - "revision": "58ed410c7f814a6ea4ec3bfd", + "revision": "e6a99a7e5aa14d16b7f118ff", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61135,10 +61135,10 @@ "content": { "type": 1, "value": {}, - "revision": "760f8155661845859dfe8fc8", + "revision": "8892e1b529a240c0bf8eb694", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61148,10 +61148,10 @@ "value": { "costs": {} }, - "revision": "bdd0533f2ecf41b5bd788d6b", + "revision": "a22d9ff97afa495195819082", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61193,10 +61193,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c32ac9287bc84f55a39359ab", + "revision": "0e1a4e59a4c8499c95d30298", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61204,10 +61204,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "e8db0240864147dda7febeb2", + "revision": "4ce1b327185745ad95fa3a37", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61217,10 +61217,10 @@ "value": { "costs": {} }, - "revision": "a8fb367eea5e49cd8e0b6090", + "revision": "474348f3ab424abe9869f383", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61262,10 +61262,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "57ac13067efd47209bb9a478", + "revision": "b8765e3ff75d43238fe8ccde", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61273,10 +61273,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "ad376c69ffb24ad596c837c1", + "revision": "af18f19f01a448e29d07d4e1", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61296,10 +61296,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a8b0937a7dd54b5c9c51c388", + "revision": "0fce2f49bd8b4699a8f18414", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61335,10 +61335,10 @@ "history_id": 1678059759995, "description": "Compra de 10760563 IVIP por 1520 BRL" }, - "revision": "29425836be4c45329fe03d4d", + "revision": "0c54af8e92224572b51bcbdb", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61348,10 +61348,10 @@ "value": { "costs": {} }, - "revision": "1bc8e44229714dd994756ff3", + "revision": "10d903b40b864883ad8f2065", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61393,10 +61393,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "2d9561a9a5854baaa4a20ef6", + "revision": "0bcda8aa5ca245829ef50eb9", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61404,10 +61404,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 153,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "ab61cf0c68b04a9095b88dff", + "revision": "eef75af7b40f4efda856ecfa", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61427,10 +61427,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "b225fbabe61b41798b5af4ab", + "revision": "56a976134486458eb75b9f5a", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61465,10 +61465,10 @@ "currency_id": "BRL", "history_id": 1678209797800 }, - "revision": "cec4fc2495c947d2a2c8a32f", + "revision": "a6f708d0fae44fa2b7f53bee", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61476,10 +61476,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "4b1d8567315f4185889ef3fb", + "revision": "039c8d23728c4500a0b9acad", "revision_nr": 1, - "created": 1701809344932, - "modified": 1701809344932 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61499,10 +61499,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "b6bfee95af414dae95eaeb88", + "revision": "206630e5c2bb4d25a28bafca", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61537,10 +61537,10 @@ "currency_id": "BRL", "history_id": 1678215371496 }, - "revision": "b95817f18a424a218feb36d5", + "revision": "871e294d43f840329c7d7c16", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61548,10 +61548,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "8401635ba31b4f0faa7ff1f2", + "revision": "fd695bfb0b6545da813a4292", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61571,10 +61571,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "e5f82bac748d4cb194fb36b6", + "revision": "b9737d0a79ba4796928bde4e", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61609,10 +61609,10 @@ "currency_id": "BRL", "history_id": 1679267048083 }, - "revision": "526e7c0b160d442cad618ab7", + "revision": "0a76fe0e63b3487dbbb2da4d", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61620,10 +61620,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "bd9e33bcaa894611b374a0fa", + "revision": "3fb420ac921e470d9dff542a", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036384, + "modified": 1702563036384 } }, { @@ -61643,10 +61643,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "2b0273cdf7c44930b156399c", + "revision": "792489c9a2744de3a74eb20f", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -61682,10 +61682,10 @@ "history_id": 1679268223760, "description": "Compra de 974525 IVIP por 167.4 BRL" }, - "revision": "78888bada2f54ec1961ad69c", + "revision": "3db0adf411cf4d4eb651ea86", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -61705,10 +61705,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ac57870c5f21465783eb822b", + "revision": "aa7a2b22250b4536991ea442", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -61743,10 +61743,10 @@ "currency_id": "BRL", "history_id": 1679914966258 }, - "revision": "94786a2e75fb4f8bb8b770d1", + "revision": "8ab05f980d4b46528a576561", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -61754,10 +61754,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "f4c0ae16a2604f0abe9c92ac", + "revision": "0cfd23d727784f689c013bb2", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -61777,10 +61777,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "43469a9f9b464af5b09f9d1f", + "revision": "4800c8f041b04e219cccb0c7", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -61815,10 +61815,10 @@ "currency_id": "BRL", "history_id": 1684348398411 }, - "revision": "1c7dd9db3f4a4f3686067563", + "revision": "22389a76a5764f368c2909f0", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -61826,10 +61826,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "a5eb10d93ee54c44bfcbea17", + "revision": "f39d56597df64f8e965be248", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -61849,10 +61849,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "73749b822e894622ade2aa82", + "revision": "cc8ed62598eb4304a4bbf21d", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -61887,10 +61887,10 @@ "currency_id": "BRL", "history_id": 1684624161069 }, - "revision": "5229a5209f4f46f888353d27", + "revision": "bfd9829a5cf543488f45bf9b", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -61898,10 +61898,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "fbe4ed269815400a9b0d001a", + "revision": "f38020b0e8b14563baf660e8", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -61921,10 +61921,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "81edd87f13874b0a9db97138", + "revision": "40b123dc55aa4bb8869b5860", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -61960,10 +61960,10 @@ "history_id": 1684624222413, "description": "Compra de 1.081.302,00 IVIP por 222,00 BRL" }, - "revision": "7ee6c0ef54a948b3994c6c30", + "revision": "9edea25011d245af9b9a3501", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -61983,10 +61983,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ac39d9b4f1df43f4bde5ea54", + "revision": "100a2afca4134211810ca0c5", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -62021,10 +62021,10 @@ "currency_id": "BRL", "history_id": 1684624292772 }, - "revision": "8c39c6b1aaf244358eadefbc", + "revision": "af9d353796cd4bdf980e934a", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -62032,10 +62032,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "0c9792a6425f4dea8683a1c3", + "revision": "8ee3ede9afd747d383fec32d", "revision_nr": 1, - "created": 1701809344933, - "modified": 1701809344933 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -62045,10 +62045,10 @@ "value": { "costs": {} }, - "revision": "4dc4022dcd394e318d1272bb", + "revision": "63755b8de1bf41b5bbe7af6e", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -62090,10 +62090,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "dcd4b593ad7446949ce3f772", + "revision": "8b8b86f69d824205a36666e6", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -62101,10 +62101,10 @@ "content": { "type": 5, "value": "Saque de 1.061.299,00 IVIP para a carteira 0xE15d4Dd48a54BAF74D9FA6a77FBb4B943a2A0d07", - "revision": "ca443f14b4894bdcb11e41b4", + "revision": "2742b1b224a04ae1a21e4ad8", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -62114,10 +62114,10 @@ "value": { "costs": {} }, - "revision": "a46c9fff184945308f77ba7c", + "revision": "a9859e3e7337427096acfe03", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -62159,10 +62159,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "1568bb2bbd2e45988059a952", + "revision": "3e9f79e857a648318ef1046c", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -62170,10 +62170,10 @@ "content": { "type": 5, "value": "Saque de 10.045.174,00 IVIP para a carteira 0xE15d4Dd48a54BAF74D9FA6a77FBb4B943a2A0d07", - "revision": "4feb346e7cad41208eed0287", + "revision": "c5f15973326b48bc99fd245d", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -62183,10 +62183,10 @@ "value": { "costs": {} }, - "revision": "9c1d458523ac424fad9ae573", + "revision": "684ddf16532443df93f130e6", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -62228,10 +62228,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "cde7184f268a457ab99cc16f", + "revision": "cfdc3959df2a4f8a947610de", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -62239,10 +62239,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "2e98eea1dea8436d8aa51ba0", + "revision": "72203848274f41f89233c4d7", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036385, + "modified": 1702563036385 } }, { @@ -62262,10 +62262,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "4fa5c41c0ed64c53a8e0b540", + "revision": "35371f6c66c5474489bfc33e", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62301,10 +62301,10 @@ "history_id": 1689688682027, "description": "Compra de 661.120,00 IVIP por 1.007,00 BRL" }, - "revision": "6d1d404b9f134ffc86cdaaa0", + "revision": "947c6cde27be4926aa5c0ac0", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62318,10 +62318,10 @@ "value": 1692810437203 } }, - "revision": "0b1d55a1c49e46c2ba153e88", + "revision": "dbc9b7fe829340c6970f9745", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62339,10 +62339,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "3d8be33efb104cc9b72dbaf8", + "revision": "f7425842d22d4e289373f922", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62350,10 +62350,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1690218437204", - "revision": "9e9fe7e050b8479db94c253d", + "revision": "6c293981fa524994a498678a", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62383,10 +62383,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "6e44e905abdf4cae8c6a99e5", + "revision": "dd520e3069674f6c86d0f65d", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62394,10 +62394,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0813.9836.2853.5692-80", - "revision": "1e5c30d3252d4ac690594f42", + "revision": "702b011539de4c91924552a4", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62415,10 +62415,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "26a09426470a4169b7b90be7", + "revision": "681373120d45480a82e6b376", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62426,10 +62426,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1691105324726", - "revision": "56f2d477cf4249d59227f17f", + "revision": "d23a531f1b524c32b2d35c73", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62463,10 +62463,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "9b7cc46d8fae42a38465d7ba", + "revision": "0aabcef476ce49fdaf51f97c", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62474,10 +62474,10 @@ "content": { "type": 5, "value": "Investimento de 2.362.853,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "3bbd7086367342f09e5dbeda", + "revision": "b10debbfde4843baa5143666", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62495,10 +62495,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a992ba0b3eea4487acdc5a40", + "revision": "321b176e91724cd4a84a54fc", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62506,10 +62506,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1693783873313", - "revision": "f220895b26f44cc19719b0ce", + "revision": "26cd8bc9a43147b5b57f8fcd", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62543,10 +62543,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "17ec478372a74da19b7462e0", + "revision": "a8b700b064a7469980737f55", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62554,10 +62554,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 2.362.853,00 IVIP com um rendimento de +47.257,06 IVIP (2,00%) - Y12XDT27", - "revision": "e2e9ff3e6bc345e0945f5f7e", + "revision": "bbe6826b6cf44d09ab61f3b1", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62575,10 +62575,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "40fb9757f7b04a5bab240d5a", + "revision": "50ad6676879c4abebdab69d4", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62586,10 +62586,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1693916505659", - "revision": "d0d6acdb7721420f9b9f28b0", + "revision": "41a40c7d591744ed8cc4d1c1", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62623,10 +62623,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "bcdb20180b004d609cea9f0b", + "revision": "8f5e5031e6854ffeb2f40c19", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62634,10 +62634,10 @@ "content": { "type": 5, "value": "Investimento de 2.410.324,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", - "revision": "18a3ec0c243643508ca72d79", + "revision": "f9ebe6aec7454f9a8fed152f", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62655,10 +62655,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f6945f3142c24dfa90d674dd", + "revision": "f70f2a5f1ae447b2a4937093", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62666,10 +62666,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696508517073", - "revision": "ada2981f0f98434cb30820d7", + "revision": "9bcff1158b3d44a2a0a53436", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62704,10 +62704,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "3a3bb81cb822428d8cb9a6c3", + "revision": "f28c017001a64aa686ceb882", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62715,10 +62715,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 2.410.324,00 IVIP com um rendimento de +48.206,48 IVIP (2,00%) - Y12XDT27", - "revision": "fc084c11c3ec498a8e38d1ab", + "revision": "30c523393da447e09d0e9ea0", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62736,10 +62736,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "efcb3ffa2b834d809bb81c4d", + "revision": "e7afbc1fd7cd44939effabb8", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62747,10 +62747,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696541853446", - "revision": "08875622bf2446c5b15b2453", + "revision": "b3e223244e9c4143ad32ddb4", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62785,10 +62785,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "45804716b90c4e6eac8f34e7", + "revision": "4e48b7329c544e5285758142", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62796,10 +62796,10 @@ "content": { "type": 5, "value": "Investimento de 100.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 05/10/2025 - P9A02KSL", - "revision": "7d77623708bc4a1ba9fab714", + "revision": "a85fcfad3c5b40dbbbdf4051", "revision_nr": 1, - "created": 1701809344934, - "modified": 1701809344934 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62817,10 +62817,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "95b3802fc4e045c6bd8b92e9", + "revision": "d52f6402f65849dd969829d3", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62828,10 +62828,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/081398362853569280/history/1696640077573", - "revision": "f69b89aada20472298026713", + "revision": "b324fb2a369f44b89d119731", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62866,10 +62866,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ef2bf233b68e4cd09759d600", + "revision": "3fa51dc71c704f42bcae404b", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62877,10 +62877,10 @@ "content": { "type": 5, "value": "Investimento de 2.366.500,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", - "revision": "3df95a454d1541bfb83e682d", + "revision": "e6d2029ef63a4197b2064225", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62888,10 +62888,10 @@ "content": { "type": 1, "value": {}, - "revision": "33d6abbcf8654b619585c34f", + "revision": "55dd9de4635a4bc988433d75", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62899,10 +62899,10 @@ "content": { "type": 1, "value": {}, - "revision": "83143492d9924f53a0c2593f", + "revision": "4cbdabb8cc3e400a84516e9a", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62913,10 +62913,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "432570e3f0f840789b6449b8", + "revision": "a0b75c00268e47b3956e712c", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62933,10 +62933,10 @@ "value": 1696561200000 } }, - "revision": "3ac62a28cd104df2841c4134", + "revision": "a652f57db7724713911d3545", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62948,10 +62948,10 @@ "symbol": "IVIP", "value": 151.17 }, - "revision": "ff96817fdbd542d8bf9edd26", + "revision": "bd44db83082146df95bbb223", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62959,10 +62959,10 @@ "content": { "type": 1, "value": {}, - "revision": "f25f8eb2c0b2413e9fee0c3b", + "revision": "e4a1813bb8f44382805c5907", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62976,10 +62976,10 @@ "value": 1698791726584 } }, - "revision": "67f780cac3014866ae262fc8", + "revision": "14c7e44dfdad4f3291d064c4", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036386, + "modified": 1702563036386 } }, { @@ -62997,10 +62997,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "0c03902c3db5403ea769a7f1", + "revision": "fac8243742584250b33779ef", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63008,10 +63008,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696199726584", - "revision": "a8625ad5da0345f2a1337d94", + "revision": "a1d89cfb6d844fd29a673357", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63042,10 +63042,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "807cc0f2cfe24a59be99fa9d", + "revision": "0f5802e7241944c9a8372f0f", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63053,10 +63053,10 @@ "content": { "type": 5, "value": "Deposito de um valor 10.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", - "revision": "a63dc2bf985e4c2aa0bca089", + "revision": "bcac5f81573e48b1a680a42b", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63070,10 +63070,10 @@ "value": 1698801123721 } }, - "revision": "9757fb605ec74d119d726b5e", + "revision": "194f96526b1142a7ad351caa", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63091,10 +63091,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "9ccd165b1cb640a69dbe0107", + "revision": "59a8605b316f473da02e87b6", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63102,10 +63102,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696209123721", - "revision": "7f0ba649a5cb435bb1baa899", + "revision": "f24ef6cfb09345359d9629e2", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63146,10 +63146,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a06fb981280645c987d2aabe", + "revision": "bb8d2d752d044dc385bd7fdd", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63157,10 +63157,10 @@ "content": { "type": 5, "value": "Deposito de um valor 10.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", - "revision": "9a38337c39854c4f8b16a812", + "revision": "85c4345593de43f688da7e20", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63178,10 +63178,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "068a5ca75d9746cb8cd02952", + "revision": "b8c9d890313d4466865a2d65", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63189,10 +63189,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696355307483", - "revision": "708aad9472194076931eb40e", + "revision": "78b8d0e499a94d9a929f5576", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63227,10 +63227,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "01fcea27d38d491e88baa9ed", + "revision": "b15129ee12cb45bfa5e61d99", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63238,10 +63238,10 @@ "content": { "type": 5, "value": "Investimento de 10.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/11/2023 - Y12XDT27", - "revision": "84504b00e8264e2db933aedc", + "revision": "d67200cbf4954a2dba813e8e", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63255,10 +63255,10 @@ "value": 1699201715603 } }, - "revision": "80bb773bc7b2470690bf9452", + "revision": "24203cc5ca2349ccb70b7e91", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63276,10 +63276,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7404bd75472a4b359ccf81b5", + "revision": "46f1f533d53a478aa3a553d5", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63287,10 +63287,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696609715603", - "revision": "e3876acad6d64effa8904329", + "revision": "3b4f1b6a3ab94bf4851baf70", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63331,10 +63331,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "4bd609cc08284516ad5f57ab", + "revision": "ac0c27e55b4945c2ad02a692", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63342,10 +63342,10 @@ "content": { "type": 5, "value": "Deposito de um valor 250,00 BRL para a carteira iVip 0832.4975.9247.3140-30", - "revision": "63aeedad73f0440da9317e30", + "revision": "fd3b6b1a6f3b429e96af219b", "revision_nr": 1, - "created": 1701809344935, - "modified": 1701809344935 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63359,10 +63359,10 @@ "value": 1699202450136 } }, - "revision": "7d9d9c4b12f24c0e801dc417", + "revision": "5933c2449f8e4282948f2217", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63380,10 +63380,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "fc062270a8214b11a7aad22d", + "revision": "b8a2eb42535944fc87757b5b", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63391,10 +63391,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696610450136", - "revision": "858f671e56914ba9a48d1b20", + "revision": "25e1c092f46a48c39e7e250c", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63435,10 +63435,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e258d33581524deaad1303dc", + "revision": "52329e54dfd1455e86085c97", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63446,10 +63446,10 @@ "content": { "type": 5, "value": "Deposito de um valor 868.000,00 IVIP para a carteira iVip 0832.4975.9247.3140-30", - "revision": "bde53a58107e4a53bf0f4317", + "revision": "296ba4939dab42a4a07b8e7f", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63467,10 +63467,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "3b0e6a08e5f1481881e204c8", + "revision": "6d2ba90ed6db4be4b59df962", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63478,10 +63478,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/083249759247314030/history/1696611534552", - "revision": "cbc036fcf9034e858a1d99c4", + "revision": "a9573c1bb83641c882fd7b4b", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63517,10 +63517,10 @@ "description": "Compra de 321.036,00 IVIP por 250,00 BRL", "status_detail": "accredited" }, - "revision": "99e450372e7048a28b79639e", + "revision": "38c8439283724a3f970f0423", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63528,10 +63528,10 @@ "content": { "type": 1, "value": {}, - "revision": "238e4f04e2854a38a2a956f7", + "revision": "a7857bba1b17459884b2cab0", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63539,10 +63539,10 @@ "content": { "type": 1, "value": {}, - "revision": "c64cac637118490dbcee7ddb", + "revision": "3ff18070fbd84294a9d97105", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63553,10 +63553,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "3f96b0c539374a3a8f919c7e", + "revision": "f888e317476e46adb7d65ce4", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63572,10 +63572,10 @@ "value": 1696820400000 } }, - "revision": "e488893a3b6e4b39a025fb7f", + "revision": "17e81a6e52a745f785a7ef1d", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63583,10 +63583,10 @@ "content": { "type": 1, "value": {}, - "revision": "a35036f010594a7d88ab343f", + "revision": "37b63e0d7a1f4df38c1e23ee", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63600,10 +63600,10 @@ "value": 1698340651115 } }, - "revision": "dbc09baadbef4efb907a18b8", + "revision": "e73f024a557440bfa3dbc2cf", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63621,10 +63621,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "79498c0f77c24b7cbb2f9184", + "revision": "531e6c5cf5044f37a8aa0985", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63632,10 +63632,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748651115", - "revision": "ac2eea8f610e4625b9d414fa", + "revision": "1f7c0c70e5704986b34a3aa2", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63666,10 +63666,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "07df3bc355b74a01936b4e41", + "revision": "aab29cacb1574f9d9651f7d6", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63677,10 +63677,10 @@ "content": { "type": 5, "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", - "revision": "db55d76b34e649449e658a86", + "revision": "39f4d1d465364410a0d3c2cb", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63694,10 +63694,10 @@ "value": 1698340743839 } }, - "revision": "4cbc7b7caeba47f5bd0e94ce", + "revision": "9738fefc5e2e4982a235c9ed", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63715,10 +63715,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "db24207a06c845e4bf5233e2", + "revision": "1d63c08ea3c942c6b5b6f588", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63726,10 +63726,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748743840", - "revision": "a79f6725c7854eba9a6b6236", + "revision": "36c172236ef94c05abcd9f91", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63760,10 +63760,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "589c8546f6e549749c865e50", + "revision": "6244557bd07a423caf40b15b", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63771,10 +63771,10 @@ "content": { "type": 5, "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", - "revision": "f82d060248c44aa9b6073ca9", + "revision": "ee7ef18fb2134eefa83567e7", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63788,10 +63788,10 @@ "value": 1698340845971 } }, - "revision": "fe84247aaacc48b7a6c89f65", + "revision": "b1be0462db8a44b4bb6f388b", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63809,10 +63809,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "0292d7d0467046f495ddf256", + "revision": "537997d6a0e74f29bef45050", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63820,10 +63820,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/084938385673306140/history/1695748845971", - "revision": "a1e7972a4c7c44e5a3c7c842", + "revision": "7b082793cf3241bc8ca80fbd", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63854,10 +63854,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "79fd41179a8e414f8ee84657", + "revision": "1af6f60a42964005a1ab4a44", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63865,10 +63865,10 @@ "content": { "type": 5, "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 0849.3838.5673.3061-40", - "revision": "0ec814c38783432e8172103b", + "revision": "53c2aa9d881b47429238427d", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63876,10 +63876,10 @@ "content": { "type": 1, "value": {}, - "revision": "4235b4fe0cff45abbcc36019", + "revision": "457d0d5a2cfd4683baa5a89e", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63887,10 +63887,10 @@ "content": { "type": 1, "value": {}, - "revision": "b7c797e0a6d64d35b885f03f", + "revision": "8fd866737402415f9ba23ac2", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63901,10 +63901,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "2ca4baf4711f418abfc35940", + "revision": "bc90393d1f83461ca76537b0", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63920,10 +63920,10 @@ "value": 1695870000000 } }, - "revision": "60bf9b138aeb4d8abf7143c8", + "revision": "ff3aeb232b234a9687ede01c", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63931,10 +63931,10 @@ "content": { "type": 1, "value": {}, - "revision": "7cc334c3328e4e84a6f6f8cc", + "revision": "9a97f38da198417ab4d9f7ad", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63944,10 +63944,10 @@ "value": { "costs": {} }, - "revision": "8047d4195b3e4c05b84d923a", + "revision": "19fbd2b10c574ca8af537910", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -63989,10 +63989,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "abf74178bbcb44c4923fe247", + "revision": "0bc5944362f1404fb7312e17", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -64000,10 +64000,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "0ef4a53b6e2e420cab612eb3", + "revision": "216007bb18f14fe79ed4a4f1", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036387, + "modified": 1702563036387 } }, { @@ -64023,10 +64023,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "d2240c8ab38a49e48f22a4f2", + "revision": "af2046e9658b48d99b3c2962", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64062,10 +64062,10 @@ "history_id": 1678163430853, "description": "Compra de 1426241 IVIP por 200 BRL" }, - "revision": "e6fbe31baa1e466e8c08c5aa", + "revision": "59c01b75ccb14dafad7a2ff9", "revision_nr": 1, - "created": 1701809344936, - "modified": 1701809344936 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64075,10 +64075,10 @@ "value": { "costs": {} }, - "revision": "8ff624c86a8247dea784c8d8", + "revision": "071d52eef6154dc0a713e182", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64120,10 +64120,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "bfa96d25ce5a4ede88253e5c", + "revision": "55f66ff5117c42fe98c3728a", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64131,10 +64131,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "afc11359622a4b8e9de4f1bd", + "revision": "e4db51a00f6c410797a3caeb", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64154,10 +64154,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "c798293dc47044e38c8a983f", + "revision": "35aa75b928a14ca2a02ea6fd", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64193,10 +64193,10 @@ "history_id": 1684632748749, "description": "Compra de 976.097,00 IVIP por 200,00 BRL" }, - "revision": "cf5e09e27f5e41578aba334a", + "revision": "733a0257e1aa432cbe68119f", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64206,10 +64206,10 @@ "value": { "costs": {} }, - "revision": "bfb5d3b9a448400bbe514191", + "revision": "64a532c69587496588646e6b", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64241,10 +64241,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "a5c84bdafce64d5697c8886f", + "revision": "b28c846c97ca401b8e68dc9d", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64252,10 +64252,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "7fa68187ffb74983af943439", + "revision": "e531521bc5b641d3bbd29d59", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64265,10 +64265,10 @@ "value": { "costs": {} }, - "revision": "b9391d403dbd4c59a47a1c43", + "revision": "60503752e31647c991977152", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64300,10 +64300,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "b9e8b7625a3c4c30a616bd7a", + "revision": "abd058e04f8141f38cf17cb8", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64311,10 +64311,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "c7bf870aafd242b09a4d2055", + "revision": "aa972ee76b3a40d2a58c8623", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64324,10 +64324,10 @@ "value": { "costs": {} }, - "revision": "7e74d7558f97421993c46983", + "revision": "620f212ebe1c49b5a55bed98", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64369,10 +64369,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "07ecfab5d6694b2bb659ab3e", + "revision": "2f6bec53cb1347218fd4c875", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64380,10 +64380,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.200,00 para a carteira iVip 0852.1260.9036.6842-60", - "revision": "4602b245c2cf435e85756de2", + "revision": "7b9e8849fde446acb73a021c", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64403,10 +64403,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "94e67fa67e164d2ebaec9f90", + "revision": "50b5adda8c7d49c2b8e43ae1", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64440,10 +64440,10 @@ "currency_id": "IVIP", "history_id": 1685666059762 }, - "revision": "7ad3cedd332c4d4b9aa331ed", + "revision": "2d9e355ff759477b80465737", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64451,10 +64451,10 @@ "content": { "type": 5, "value": "Investimento de 2.402.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "b2d7d1425f6045e485eddd81", + "revision": "df3902d6139b429d94e23b7f", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64474,10 +64474,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "94985f76cb6a48bb9a013bb3", + "revision": "82a7acf8943845eca3b17220", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64513,10 +64513,10 @@ "history_id": 1685744731387, "description": "Compra de 4.214.736,00 IVIP por 1.200,00 BRL" }, - "revision": "50cac4b3f13248e6a5416532", + "revision": "088150ea5c914cdab49054c1", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64536,10 +64536,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "3dc5dbc572e04b89a16056f5", + "revision": "4d2775a1781d43479d10b1b6", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64573,10 +64573,10 @@ "currency_id": "IVIP", "history_id": 1688521364022 }, - "revision": "91e608966f7b421bb9209b8b", + "revision": "92d6f6c5cd6a4e1ba62dc30f", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64584,10 +64584,10 @@ "content": { "type": 5, "value": "Investimento de 4.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/4/2023", - "revision": "6493d86a13d14a81b4b84478", + "revision": "a6b2aa7a46e94380a60284a9", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64605,10 +64605,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "cc022f44f75d4fb297b9a61f", + "revision": "56d75c12e97944519b5e64da", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64616,10 +64616,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691199857902", - "revision": "eb384764168e46fd937f2d01", + "revision": "2b2a2db5486f42e1be91a2d3", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64653,10 +64653,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ec4bd64cda984cb4b5ea3566", + "revision": "ae669d0ac6ac4ec3a65043cf", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64664,10 +64664,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 4.000.000,00 IVIP com um rendimento de +80.000,00 IVIP (2,00%)", - "revision": "d1caf690cc694cd381b7609d", + "revision": "5107c204a76d4df78b4f8f49", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64679,10 +64679,10 @@ "label": "Taxa de 3,00%", "amount": 124986.6534 }, - "revision": "abfca2aaab2945058a510924", + "revision": "42b33e1401c7421f971748e0", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64699,10 +64699,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "d79f75e6e2074febbf969157", + "revision": "94abde2165be4cf09f8da210", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64710,10 +64710,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691271945589", - "revision": "466457fc4d65478894c02461", + "revision": "95c22655e70342bf9521c41b", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64721,10 +64721,10 @@ "content": { "type": 2, "value": {}, - "revision": "d16f4321fab84f64bce1dabb", + "revision": "2b9c6a4651a048789c3da8c8", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64764,10 +64764,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "ca1abf4d303843a682bd14a4", + "revision": "8bc1710dacfa448c8d91c055", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64775,10 +64775,10 @@ "content": { "type": 5, "value": "Saque de 4.166.221,78 IVIP para a carteira 0x13d16B24c3293ABAD823e83A490982c0906508A8", - "revision": "cfd3b493dfd94cd08fccac49", + "revision": "9bfff95bc802474cbb875555", "revision_nr": 1, - "created": 1701809344937, - "modified": 1701809344937 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64790,10 +64790,10 @@ "label": "Taxa de 3,00%", "amount": 124986.6534 }, - "revision": "637539905e4d4a4fa3e28b98", + "revision": "af3fd6754795428a8c296a14", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64810,10 +64810,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "300001ff486e44d2a1880061", + "revision": "a63e1fd6d7334530aea3bd8f", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64821,10 +64821,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/085212609036684260/history/1691437746780", - "revision": "3c5ee8b21df542d69035a096", + "revision": "bf30eb95ca944c45a42a9b74", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64832,10 +64832,10 @@ "content": { "type": 2, "value": {}, - "revision": "e04605b9bff341b99e7f8cdb", + "revision": "d30521ec68174e0e8a824720", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64879,10 +64879,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "13bb7c00ed7645d6ac4e3efc", + "revision": "549b903272b04dffa9bf8d39", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64890,10 +64890,10 @@ "content": { "type": 5, "value": "Saque de 4.166.221,78 IVIP para a carteira 0x13d16B24c3293ABAD823e83A490982c0906508A8", - "revision": "59b5f962218749a58a825e84", + "revision": "2c1274aab15140a290e768ed", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64901,10 +64901,10 @@ "content": { "type": 1, "value": {}, - "revision": "4460f0517daf41019872ce47", + "revision": "32ddeed5904d434cb25bcaa8", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64912,10 +64912,10 @@ "content": { "type": 1, "value": {}, - "revision": "f11b61d6e8144bee82a6cd4d", + "revision": "5d25ddae0b96458b8454fcdb", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64934,10 +64934,10 @@ "value": 1679261140619 } }, - "revision": "f15b89f0cd714928abfab7ad", + "revision": "8d4c2a57dfdc4c9e86ef6570", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64954,10 +64954,10 @@ "value": 1696561200000 } }, - "revision": "648497c111214949aa5ffba4", + "revision": "ee790140910d45989729240e", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64965,10 +64965,10 @@ "content": { "type": 1, "value": {}, - "revision": "d206d90edbcf4678bcd14b08", + "revision": "ecbe2a22a4cb47fb999cc298", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -64978,10 +64978,10 @@ "value": { "costs": {} }, - "revision": "876fbd26142d47048738754f", + "revision": "5428fd6fcb9b419ba32e59d3", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65018,10 +65018,10 @@ }, "money_release_status": "rejected" }, - "revision": "935d73a52af34b73a1ed52f9", + "revision": "a6a1f043058f40b49677b317", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65029,10 +65029,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 300,00 para a carteira iVip 0858.6972.0472.7301-10", - "revision": "f1a75cf28f4046cdb578dde8", + "revision": "102c3b07fdaa4f4286bfb61a", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65040,10 +65040,10 @@ "content": { "type": 1, "value": {}, - "revision": "07f4da068d3145518cb996dd", + "revision": "242b5fde6a4f40c0a6c7d472", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65051,10 +65051,10 @@ "content": { "type": 1, "value": {}, - "revision": "3400f9d5e4a4445895a12826", + "revision": "3414f1ab66484bb19b3ebeb0", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65065,10 +65065,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "e51745f820204b168648a92b", + "revision": "c2af060ae35f430489e4de15", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65081,10 +65081,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "11dd0f0d142f41cc90816e30", + "revision": "ec77fda5bb18464f902e327a", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65096,10 +65096,10 @@ "symbol": "IVIP", "value": 901.85 }, - "revision": "049b0235d20144fea6a7718c", + "revision": "849392730b4848a3916af935", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65107,10 +65107,10 @@ "content": { "type": 1, "value": {}, - "revision": "b6dd593c276a4cbdb2516209", + "revision": "7accee2574714d8281e61037", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65120,10 +65120,10 @@ "value": { "costs": {} }, - "revision": "f734052e1ea4422594191036", + "revision": "4b41072a437b446e8b16e6e5", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65165,10 +65165,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "aeeb2d2ce15a4ffab52c628c", + "revision": "780278b9d69442c3b943571c", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65176,10 +65176,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 140,00 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "be72056712a04aaab9f81b99", + "revision": "a2df46a2449f45ee95f5bb86", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65191,10 +65191,10 @@ "label": "Taxa de 1.00%", "amount": 1.1111 }, - "revision": "e7aaa4e798d141fea635be0c", + "revision": "2cabdf72a4ab4e15826400a1", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65202,10 +65202,10 @@ "content": { "type": 1, "value": {}, - "revision": "cf2e6236f0834394b152d1e6", + "revision": "03f44200f07f4dcb929bdf39", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65215,10 +65215,10 @@ "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "bf0feb1205954a44a47fec00", + "revision": "e73230829c104f5280600c9c", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65226,10 +65226,10 @@ "content": { "type": 1, "value": {}, - "revision": "e46dbc076a594f3a8ad3d4be", + "revision": "075938a2ab3f457c9f917587", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65243,10 +65243,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "e637326e9b104f5093047c4b", + "revision": "7996f5491eef4be2b650c469", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65254,10 +65254,10 @@ "content": { "type": 5, "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b615204000053039865406112.225802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter13123227786304C4AC", - "revision": "0c1ff7e0c28c495d8876c633", + "revision": "f296837cbfbd45f2a9ba0548", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65265,10 +65265,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1312322778/ticket?caller_id=1310149122&hash=6c5d5276-a6c2-41fd-b3ac-10aff2badfc5", - "revision": "a4830fa656784280ba48356e", + "revision": "eb73f2f213224f738256e20c", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65276,10 +65276,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI3klEQVR42u3dSY7kNhAFUN5A97+lbiDDC7uUjB9UeoDhpl4uGo1SpfRUu48YOK5f6HMOWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWtp/Xzvmz/H7z44/Lxx//t4fF37//u3Cz13u/zvH+Hzi+Lnp/QYfFyYGLS0tLS0tLS0tLS3tS7TTY39u8vPYyitvWt/qfuHjLtOF+98hqWhpaWlpaWlpaWlpaV+gnQJk+lb6vSkT3n+WvvvjXt2vMGhpaWlpaWlpaWlpaV+qLVW2q8TL6fNUzvsoAN6NtLS0tLS0tLS0tLS0tDEdtjeeyn4juKfy4BVS5Ph8A1paWlpaWlpaWlpa2jdrEz5dnebYSuluQk0vdDw1a/69HlFaWlpaWlpaWlpaWtpfXdtuKflv//mnO1VoaWlpaWlpaWlpaWl/UW3+nJ+NlOciBLYpsp2ku++WnLZMZgstLS0tLS0tLS0tLe3e2masLe19/NHmBPrhKd2ZR6kRtkcF9CmSlpaWlpaWlpaWlpZ2N23aL5J3PI774pH70Fs7IZcOZGuH447+pDZaWlpaWlpaWlpaWtqdtSUYtudc192SaSQuhcXFnyAd4XasMi8tLS0tLS0tLS0tLe1u2lRRW5/Alrsz6xHXU51vKh6WrsvmpG1aWlpaWlpaWlpaWtrdtan1Mh1sPcXLactkul8edUtdnEdgHLS0tLS0tLS0tLS0tC/Rlum1a5EESylw5O3/7eHZ+RtniJcXLS0tLS0tLS0tLS3tS7Tf37NNmx/PycNxzYlupcfzy8xLS0tLS0tLS0tLS0u7lfb8zITNZsdyzzQcd4UdJnXDSeq1TKVFWlpaWlpaWlpaWlra92jTRNsi9dWXfGrMXD2jPG3Q0tLS0tLS0tLS0tK+S1vJpc1yMqYuyXPEVs5UMiy/cnUL/WlpaWlpaWlpaWlpad+izUmwdk6mzSVTiW+6cDemibsRDml7SpG0tLS0tLS0tLS0tLQ7a8tA2rm83ZlfqM2JJU+eo57IfdLS0tLS0tLS0tLS0r5Qe5TRtMldHnGW9yu3GmGwbnrklc/XpqWlpaWlpaWlpaWlfY82VdRKDa4uLZm6JMtLTiv76zhdyZjtcdu0tLS0tLS0tLS0tLS7a2t8W6fIdhlJ6cSsqbT8lY6/tqWElpaWlpaWlpaWlpZ2U225XUqCU6/lFU5MS+RrET5TT+ZziqSlpaWlpaWlpaWlpd1KW9xH0T61XqZz19Jp2VPX5ciFvUKmpaWlpaWlpaWlpaV9gbZU1JrP9Ox7JqzNle2R2dOB2qkJk5aWlpaWlpaWlpaW9p3aUaLfVABMwbDEwdWtUtvmoqpIS0tLS0tLS0tLS0v7Cu1ZUl9ZDXk8B8gRDsWe/pkuXOGRU58mLS0tLS0tLS0tLS3tC7R5mG2UXDddaL9WTsuuS/4nT3sDWlpaWlpaWlpaWlral2gnwNWdX308LZi8l/iaNss8bFcn6brqHi0tLS0tLS0tLS0t7X7afGD1tFpk5S7GdkvJFENXufOhFklLS0tLS0tLS0tLS7uV9lo8ewp37TRcToLtS448/lZ6N2lpaWlpaWlpaWlpaV+hTZ2TI5+C/fR7I38jle7Wh7R9k3lpaWlpaWlpaWlpaWl304b4Npf42mQ5fSPdKrdUXqU788uuS1paWlpaWlpaWlpa2l205XDqtFXkzLI8IVej6XT7p2j6vFOFlpaWlpaWlpaWlpZ2I23+pNR3fpbfRoiXzZL/e4nvCGGxHgFAS0tLS0tLS0tLS0v7Jm07kLZaXzJlwp/vtjso0ztP71cCJC0tLS0tLS0tLS0t7Qu0pX2y7hfJWa+p1eXCXoqNV64qhk5MWlpaWlpaWlpaWlra7bX35xxdia8ekZbOU0uvVjosj8VW/2V1j5aWlpaWlpaWlpaWdj9tkpUy3Xhyp57MUiOs03UlVH7ZI0pLS0tLS0tLS0tLS7uV9gyyI6TIa7mHJDVXtk2YKZ+OsvWElpaWlpaWlpaWlpb2Fdq0c2QKd4uz067uiOtzMVO3LiNOG05oaWlpaWlpaWlpaWl31yZ3+7BFc2WTLMPOkVhGvL/9V1v9aWlpaWlpaWlpaWlp99Gmk9VWvZZp1WS6UEbdVmN3U3mQlpaWlpaWlpaWlpb2PdoS6abbnTlAdgv4x7RzJN0vl/PSiB0tLS0tLS0tLS0tLe2rtO0c2zTMVtoir26Z5HqwrjmLLfyMlpaWlpaWlpaWlpZ2Z+0EKMZRCnvJXebdkqfWDct0Xa0g0tLS0tLS0tLS0tLS7q+tnY5tYa9Mr9XwuTgtu34tHQHw0CNKS0tLS0tLS0tLS0u7m7b0Rq4G3HJz5fis+J0lWebGzNFt9T9oaWlpaWlpaWlpaWnfpA2hbZRaXbPfvxQFz26wbpRmzdyEmT60tLS0tLS0tLS0tLSv0I5P4yjDbKUjsj4nJdAUL8tz616ThxRJS0tLS0tLS0tLS0u7kTYnxlqDm8bVcqhMpcD6oHRIW15QQktLS0tLS0tLS0tL+x5tsy0krYsspbta8Xuamqu7Tr7uEaWlpaWlpaWlpaWlpd1Nmz7rPSTpTLQSIM8yCJen686n8ElLS0tLS0tLS0tLS7u7to1+04RcIrdNk3kZSUqRTYvmc+alpaWlpaWlpaWlpaXdR9tkvSnclaJbzZ2p9pe6MxP+6xRJS0tLS0tLS0tLS0u7pbbEwVG6Lstc3BVWi9T2yYJqTgRYRlhaWlpaWlpaWlpaWtqXakdosxx5+0g+2PocTVxNu06+r+7R0tLS0tLS0tLS0tK+RXt0Z2TXUbdp6WR7BEC5ywhnAxy0tLS0tLS0tLS0tLSv0y7wIz92emI7EpcC5Ho47jlF0tLS0tLS0tLS0tLSbqZNlbwp4U2yUfLkInw2o3P5DeqGSlpaWlpaWlpaWlpa2t21//8PLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLe2/pv0Nc/R6xtt85A0AAAAASUVORK5CYII=", - "revision": "7858d3b3bb334d4992d3c0ab", + "revision": "ae80a3322c0c4252aa96bf44", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65287,10 +65287,10 @@ "content": { "type": 2, "value": {}, - "revision": "164a5d13cf06476fa6ab97d6", + "revision": "a5486e5572204e19af083024", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65323,10 +65323,10 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "27d74f2f40874755aa1f2e4d", + "revision": "11f4419277074d6a9f5fc092", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65334,10 +65334,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 111,11 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "8c82b2db60bf4e8f9d81213b", + "revision": "b380cf00bb2b4acba147da3f", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036388, + "modified": 1702563036388 } }, { @@ -65357,10 +65357,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "7d96d8d4132e4840acf9698a", + "revision": "a2601e369b2442e88bd154a7", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65396,10 +65396,10 @@ "history_id": 1680260155565, "description": "Compra de 500.004,00 IVIP por 91,56 BRL" }, - "revision": "e2066d3103ee4471a5be0e2b", + "revision": "79b44fed67024fa8b50c4f99", "revision_nr": 1, - "created": 1701809344938, - "modified": 1701809344938 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65419,10 +65419,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "41c4db0ba93c4025adc7a780", + "revision": "74a4f3bd76c942949bd7aca7", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65458,10 +65458,10 @@ "history_id": 1680391431083, "description": "Compra de 267.396,00 IVIP por 48,44 BRL" }, - "revision": "f6b8025fe46744dabbe88d06", + "revision": "7d6af85484ad4efba8e62665", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65471,10 +65471,10 @@ "value": { "costs": {} }, - "revision": "a75057004d024c268fd47630", + "revision": "ef894af06787495c815de0fe", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65516,10 +65516,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "eb18e30b7a824963acd1a3c5", + "revision": "df8b299bb60441d1ad6e06ec", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65527,10 +65527,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 99,99 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "8eebc409e4bf4ef9bd2cd5ea", + "revision": "56cc3e86f7bb4c23a1888e6a", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65550,10 +65550,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "b1f5c0d280114868a0f04617", + "revision": "bdb88e695d954dd0987dd515", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65589,10 +65589,10 @@ "history_id": 1684628885106, "description": "Compra de 487.512,00 IVIP por 99,99 BRL" }, - "revision": "9bbb8122a4724e678bb98a59", + "revision": "c203a3905de14817bcbd94fc", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65606,10 +65606,10 @@ "value": 1693414337210 } }, - "revision": "943c6f8e92924d22b23817d2", + "revision": "9fbd1a0f5e32419d88ad98ad", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65627,10 +65627,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d40dab3b7b5b48a281fce3fb", + "revision": "86157162a6fe47178a1f1003", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65638,10 +65638,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1690822337211", - "revision": "10be6b69403c4a9c86ef2a29", + "revision": "6b21395039f342b58778892a", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65671,10 +65671,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "44d3d32cfa0341bd93fe74dc", + "revision": "df9303719f2341fab50d04c4", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65682,10 +65682,10 @@ "content": { "type": 5, "value": "Deposito de um valor 20,00 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "063800c9200c4890bd95159d", + "revision": "50b259377f324ee79a44842e", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65699,10 +65699,10 @@ "value": 1693414439890 } }, - "revision": "51bfa286cff6433bbd5c7056", + "revision": "06e5c9f8045c4c139df6f0f1", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65720,10 +65720,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a4b93c5e6e9648ca96f5bc3c", + "revision": "560cbcc14c2344549b5f6600", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65731,10 +65731,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1690822439890", - "revision": "17a531ec45ed4b7b9db057b0", + "revision": "4c2f84dbb90a499d8fc4adc2", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65774,10 +65774,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "cf017aa728024ebeb3170723", + "revision": "ecfe8ca02d364522a6192fed", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65785,10 +65785,10 @@ "content": { "type": 5, "value": "Deposito de um valor 100,00 para a carteira iVip 0878.7790.2032.1434-10", - "revision": "8883f9c08c754db7a6fb36af", + "revision": "c2430ddb597b45af92a550cd", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65806,10 +65806,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b92f20567c744c8e9af9553e", + "revision": "6cbfc4f549f0458d890966a3", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65817,10 +65817,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/087877902032143410/history/1695782499707", - "revision": "d9e24d3214954586b7918719", + "revision": "56ba270b4eb1479faee19aa8", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65856,10 +65856,10 @@ "description": "Compra de 115.999,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "5a90c661f3ac4c25b8b11c15", + "revision": "0293e9ebc4854a17b5eddc29", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65867,10 +65867,10 @@ "content": { "type": 1, "value": {}, - "revision": "3403921c40784561a1339025", + "revision": "6e5284e77872478488820960", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65878,10 +65878,10 @@ "content": { "type": 1, "value": {}, - "revision": "2c94e50105ad4b819a67e8f0", + "revision": "5baea3ddbc8e4f98ab34392a", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65892,10 +65892,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "0ead53197bcd4b5abf11f2ed", + "revision": "8a0f47de49f44108b36654d9", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65912,10 +65912,10 @@ "value": 1696906800000 } }, - "revision": "99a9e0b639694941ba562d08", + "revision": "be621a6571d744a1b6e6b52b", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65927,10 +65927,10 @@ "symbol": "IVIP", "value": 4.22 }, - "revision": "43d8f77393c4408ca2cf0f4c", + "revision": "665407e2285c43c88357b001", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65938,10 +65938,10 @@ "content": { "type": 1, "value": {}, - "revision": "8f8c6799fed3448d90c4618c", + "revision": "c01003c5e84241e68ef35663", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65951,10 +65951,10 @@ "value": { "costs": {} }, - "revision": "83cf4c75924f4f58ac8536c1", + "revision": "806ec4f0fd5d4eddad71be62", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -65996,10 +65996,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "79559e480b754403bffeb6d9", + "revision": "52f44c94798448c4b17f2524", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -66007,10 +66007,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "efed09028cfa4b3b849f3c65", + "revision": "512527875af34b7798d7df3a", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -66020,10 +66020,10 @@ "value": { "costs": {} }, - "revision": "739de4497c0b4c2f873143f9", + "revision": "de44c1959caf49048bcd9b66", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -66055,10 +66055,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "3fab04a605634cc3890a2f52", + "revision": "d06ae1b24dc844e69201f742", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -66066,10 +66066,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.800,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "8a1b981d319d446bbd486e6a", + "revision": "1ee5fc40e1f547fe8015be82", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -66079,10 +66079,10 @@ "value": { "costs": {} }, - "revision": "c746b40079b44413911efe4e", + "revision": "c05033d7e0f146f5b73bfd14", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -66124,10 +66124,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5b9810059aa54e5e88dd1058", + "revision": "b9cba3654a67484c91449dbf", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -66135,10 +66135,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 150,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "d45d47d3e98d48fc912bfbe5", + "revision": "56623fb3fd724ef0ae3effed", "revision_nr": 1, - "created": 1701809344939, - "modified": 1701809344939 + "created": 1702563036389, + "modified": 1702563036389 } }, { @@ -66148,10 +66148,10 @@ "value": { "costs": {} }, - "revision": "a5790aba11be4d989988378a", + "revision": "fd325954825c44fda1b7bebd", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66188,10 +66188,10 @@ }, "money_release_status": "rejected" }, - "revision": "27bad8432e0c4ba18ef60f1b", + "revision": "afd01c7420c54569a70b001d", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66199,10 +66199,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "042d4850f20a484c8a6488ea", + "revision": "450dd7b15479472cb032e776", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66212,10 +66212,10 @@ "value": { "costs": {} }, - "revision": "1b520052377145a0a315e7f5", + "revision": "37c8804f83b54f07a4a57225", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66252,10 +66252,10 @@ }, "money_release_status": "rejected" }, - "revision": "7501ab9b82c94e3296bf32b7", + "revision": "144142bd3c0547ad97e980fe", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66263,10 +66263,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "f1ef0e6c791e4167947b4157", + "revision": "142123de3e8c420993cd75d6", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66276,10 +66276,10 @@ "value": { "costs": {} }, - "revision": "be2a95df26a54e7d872a8c98", + "revision": "a397b5464bd8453fbbb68b3a", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66316,10 +66316,10 @@ }, "money_release_status": "rejected" }, - "revision": "d088016ac2e94477832c28d7", + "revision": "0d745f920fb14931b9e7787d", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66327,10 +66327,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "6e3e8ee0a55f4e6fac98bdf0", + "revision": "efcd2e1e4592423bb40c237b", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66340,10 +66340,10 @@ "value": { "costs": {} }, - "revision": "f2801fe09b264e3592e83019", + "revision": "eea484395b2044dd9d35d32d", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66385,10 +66385,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "288ac6f8c5ba4bf69ab87eb9", + "revision": "1644999ed3b1404d9683b2da", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66396,10 +66396,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 950,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "f52de73aca81490f89673c61", + "revision": "35fa585291b345aaab2ea5cd", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66419,10 +66419,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "76a8d397e2164a16b0cb8fe7", + "revision": "8648b7a71c1c47279f636fe2", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66458,10 +66458,10 @@ "history_id": 1684624236329, "description": "Compra de 7.793.170,00 IVIP por 1.600,00 BRL" }, - "revision": "b60e477f952940219ff58b0e", + "revision": "61af0fba490944fdb028e7e5", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66481,10 +66481,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "f8cfb63e54a942ce96ac1bbe", + "revision": "018300ca00cf479b85d61cd7", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66519,10 +66519,10 @@ "currency_id": "BRL", "history_id": 1684624348122 }, - "revision": "5dc5ec0114b34beb9a6c2d2d", + "revision": "d79aff3fcc234ec7b2de8fa2", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66530,10 +66530,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "e80a926be06a4d72a32f512d", + "revision": "82886db215d348c1a119b97e", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66553,10 +66553,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ef66115b290d42e3b41c4f0b", + "revision": "b4e608088fd84a73b93c59e7", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66592,10 +66592,10 @@ "history_id": 1684624387279, "description": "Compra de 779.317,00 IVIP por 160,00 BRL" }, - "revision": "9b89e71b06354455b99e2c08", + "revision": "311b6b8ecf5b46438f9902a8", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66615,10 +66615,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "422c9b64d4e643c5bb1e245c", + "revision": "7f4ac82cd0b14cd093cb0bb6", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66653,10 +66653,10 @@ "currency_id": "BRL", "history_id": 1684624827425 }, - "revision": "250b319faf65450683c13c68", + "revision": "76b6183d138a4859b19af9bc", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66664,10 +66664,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "a1f4f4f6f42045cdbe331207", + "revision": "dd90830a2e0a4cf1ae9447b0", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66687,10 +66687,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "8309fb8c455f44218f95372c", + "revision": "942a623f1ced4388b710a8ee", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66726,10 +66726,10 @@ "history_id": 1684624867474, "description": "Compra de 97.414,00 IVIP por 20,00 BRL" }, - "revision": "719402e7c75142ac806e452c", + "revision": "31b699851fee4494b55ccb39", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66749,10 +66749,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "d3d36ea95f374050bae59b84", + "revision": "95e61bebdb664b1c92496d81", "revision_nr": 1, - "created": 1701809344941, - "modified": 1701809344941 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66787,10 +66787,10 @@ "currency_id": "IVIPAY", "history_id": 1685361710845 }, - "revision": "b63223a0a6b643938ff69b0a", + "revision": "3ed9a161ecb74bceab530f85", "revision_nr": 1, - "created": 1701809344941, - "modified": 1701809344941 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66798,10 +66798,10 @@ "content": { "type": 5, "value": "Compra de 40.000.000,00 IVIPAY por 4.000.000,00 IVIP estabilizando US$ 164,00", - "revision": "b4f5f277f58f44a3998422ca", + "revision": "26b24bb55e6e42958b6de4a6", "revision_nr": 1, - "created": 1701809344940, - "modified": 1701809344940 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66821,10 +66821,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "f1bc8b12c6df4921bd26187c", + "revision": "609855187f1c4977ad8480b6", "revision_nr": 1, - "created": 1701809344941, - "modified": 1701809344941 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66859,10 +66859,10 @@ "currency_id": "IVIP", "history_id": 1685391792305 }, - "revision": "3428521cef784076b5dbfef4", + "revision": "498a61b760254187bed93c1a", "revision_nr": 1, - "created": 1701809344941, - "modified": 1701809344941 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66882,10 +66882,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "180ad8590f02425d8b266a45", + "revision": "010b0553092e4c72b62fc5ff", "revision_nr": 1, - "created": 1701809344941, - "modified": 1701809344941 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66920,10 +66920,10 @@ "currency_id": "IVIP", "history_id": 1685391842660 }, - "revision": "8cd1e3d219204350a2f84f8a", + "revision": "1e79f372752b4fa6afc12728", "revision_nr": 1, - "created": 1701809344941, - "modified": 1701809344941 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66931,10 +66931,10 @@ "content": { "type": 5, "value": "Compra de 2.000.000,00 IVIP por 20.000.000,00 IVIPAY", - "revision": "f791f293c2b1478ea12105f3", + "revision": "2da6d1f14f5341f9b01fe3c6", "revision_nr": 1, - "created": 1701809344941, - "modified": 1701809344941 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66954,10 +66954,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "cb1d9a98aedc4d1ab7bb9b6b", + "revision": "efef577891c2416ea8a25af7", "revision_nr": 1, - "created": 1701809344941, - "modified": 1701809344941 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -66992,10 +66992,10 @@ "currency_id": "IVIP", "history_id": 1685391972284 }, - "revision": "4ab0c72cc1ea4f2f88b4bce4", + "revision": "c145b6f70c7a4e2e87c5229f", "revision_nr": 1, - "created": 1701809344941, - "modified": 1701809344941 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -67015,10 +67015,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "4c04b1dffefd4f61beb9cd3f", + "revision": "bf4fa406a8b34d01bf2e9548", "revision_nr": 1, - "created": 1701809344941, - "modified": 1701809344941 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -67053,10 +67053,10 @@ "currency_id": "IVIP", "history_id": 1685392038537 }, - "revision": "8667097a4a6d4712a29f5f93", + "revision": "0867e910575a4d228cd4074c", "revision_nr": 1, - "created": 1701809344941, - "modified": 1701809344941 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -67064,10 +67064,10 @@ "content": { "type": 5, "value": "Compra de 1.400.000,00 IVIP por 14.000.000,00 IVIPAY", - "revision": "a9d5b029d5ce4f5383dab8d0", + "revision": "647cd07f28914c92bc12b344", "revision_nr": 1, - "created": 1701809344941, - "modified": 1701809344941 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -67087,10 +67087,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "0ae6f7becf0d4ba18c9ab9f2", + "revision": "b33c9b88244047118297958d", "revision_nr": 1, - "created": 1701809344943, - "modified": 1701809344943 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -67126,10 +67126,10 @@ "history_id": 1685392165654, "description": "Compra de 10.000,00 IVIP por 100.000,00 IVIPAY" }, - "revision": "cceb9bc47d3a40caa9302ff9", + "revision": "37162c582c0144cd84278190", "revision_nr": 1, - "created": 1701809344943, - "modified": 1701809344943 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -67149,10 +67149,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "d253041136064416988dc23c", + "revision": "52f3d6e57ec54cea8fab9e15", "revision_nr": 1, - "created": 1701809344943, - "modified": 1701809344943 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -67188,10 +67188,10 @@ "history_id": 1685392465062, "description": "Compra de 30.000,00 IVIP por 300.000,00 IVIPAY" }, - "revision": "2e3036b1ea904635ad1d9449", + "revision": "ea02f73f3e524edd9871ab8b", "revision_nr": 1, - "created": 1701809344943, - "modified": 1701809344943 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -67201,10 +67201,10 @@ "value": { "costs": {} }, - "revision": "f9aa6df73e3c4c96bb873336", + "revision": "77994dd67b1e4e0a846af934", "revision_nr": 1, - "created": 1701809344943, - "modified": 1701809344943 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -67236,10 +67236,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "a5c8f7831f21408488c983b3", + "revision": "70ee220fad974fbc91eb00af", "revision_nr": 1, - "created": 1701809344943, - "modified": 1701809344943 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -67247,10 +67247,10 @@ "content": { "type": 5, "value": "Saque de 4.669.901,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "ee9842e2b83149b2962d1ae7", + "revision": "eebc6035ee40411bbe99e14a", "revision_nr": 1, - "created": 1701809344943, - "modified": 1701809344943 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -67270,10 +67270,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "057fa961bda9432c98b7256a", + "revision": "fb705eb303d0402e88dc9928", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -67308,10 +67308,10 @@ "currency_id": "IVIPAY", "history_id": 1685409104532 }, - "revision": "123fd3c1c4d445d29044c773", + "revision": "290cd0457a014cda99c66d54", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -67319,10 +67319,10 @@ "content": { "type": 5, "value": "Compra de 86.699.010,00 IVIPAY por 8.669.901,00 IVIP estabilizando US$ 790,81", - "revision": "e4e44b75061b4aad8ccf9114", + "revision": "1c22652cc9dc451588db9909", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -67342,10 +67342,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "8ee1a6f1adcf4f00819a95f1", + "revision": "271bd72daf664d4ba6b6aace", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -67380,10 +67380,10 @@ "currency_id": "IVIP", "history_id": 1685494858663 }, - "revision": "cdeaf795b3ce4b1db2d38590", + "revision": "71483f8ade2e411ca6d131f8", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67391,10 +67391,10 @@ "content": { "type": 5, "value": "Compra de 1.544.789,00 IVIP por 15.447.894,00 IVIPAY", - "revision": "ab5ddcdb1c704ea491cd39f1", + "revision": "ef6a365402554961be3ea850", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036390, + "modified": 1702563036390 } }, { @@ -67414,10 +67414,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "45794bd70a704fff8c128206", + "revision": "2b80626a5f2c4e58b8734912", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67452,10 +67452,10 @@ "currency_id": "IVIP", "history_id": 1685494914975 }, - "revision": "81aeb7e12a90401a957b171e", + "revision": "b35c6daaeb26484c8261ba13", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67463,10 +67463,10 @@ "content": { "type": 5, "value": "Compra de 13.900.000,00 IVIP por 139.000.000,00 IVIPAY", - "revision": "d38243abcd7540c9b2910df9", + "revision": "15858c4d51a44b8996ded361", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67486,10 +67486,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "7ded78b95bde4a2ba1e2c893", + "revision": "7382545247ed4e75a5656ae0", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67525,10 +67525,10 @@ "history_id": 1685495030715, "description": "Compra de 3.105,00 IVIP por 31.054,00 IVIPAY" }, - "revision": "ef41ee5b8a7a478b97199ba7", + "revision": "8f4b65b2143341db9f492fb8", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67538,10 +67538,10 @@ "value": { "costs": {} }, - "revision": "c67dadb4e05a4de79480bdd7", + "revision": "86b2525bf714476586190573", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67578,10 +67578,10 @@ }, "money_release_status": "rejected" }, - "revision": "4a35dcc587c14b9d8292f34e", + "revision": "59952f439c384174994336a6", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67589,10 +67589,10 @@ "content": { "type": 5, "value": "Saque de 15.447.894,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "a0ffad7441a14e0ba9a2f56e", + "revision": "1f3754a8b63f4eceb59d3a78", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67612,10 +67612,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "c9e32d675b7f4f7995d334c6", + "revision": "bb52031467784559851a063d", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67650,10 +67650,10 @@ "currency_id": "IVIPAY", "history_id": 1685496474860 }, - "revision": "3b373c36d10c4c48924ea4bd", + "revision": "62c64dbcfc2148d7af701559", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67661,10 +67661,10 @@ "content": { "type": 5, "value": "Compra de 154.478.940,00 IVIPAY por 15.447.894,00 IVIP estabilizando US$ 957,12", - "revision": "419cc3a6884d45bd8f513a66", + "revision": "994d14a6831f441b8db65990", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67684,10 +67684,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ec837bfdc33844718fdcc13f", + "revision": "0a928c4b38124d4985107d40", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67722,10 +67722,10 @@ "currency_id": "IVIP", "history_id": 1685572512459 }, - "revision": "e6c3e4c7ffe8416991fb4b8c", + "revision": "4331801e74a24be9a83fb248", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67733,10 +67733,10 @@ "content": { "type": 5, "value": "Compra de 14.660.794,00 IVIP por 146.607.949,00 IVIPAY", - "revision": "2014ff7cfc244f359be3ea98", + "revision": "fa60e22040ad45f7afdcf244", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67746,10 +67746,10 @@ "value": { "costs": {} }, - "revision": "a6a75029b51e40878fd9b994", + "revision": "51ed52ece6d14ae7ba042b7c", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67786,10 +67786,10 @@ }, "money_release_status": "rejected" }, - "revision": "d01d8f51ff8e476a8be344e8", + "revision": "5ec5d9b3fc594187883fd513", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67797,10 +67797,10 @@ "content": { "type": 5, "value": "Saque de 10.637.617,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "960ed7a65058489eb74b048e", + "revision": "751840d2363648caaa8f595a", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67810,10 +67810,10 @@ "value": { "costs": {} }, - "revision": "6e96e5517cea4b5bb027907c", + "revision": "9fa6568ba6814aac81bc1757", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67850,10 +67850,10 @@ }, "money_release_status": "rejected" }, - "revision": "1ea157caf8394764a41c2a0f", + "revision": "b1a3d2820ff445b5b726e647", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67861,10 +67861,10 @@ "content": { "type": 5, "value": "Saque de 14.660.794,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "cdabe35989f74d5eb90356c9", + "revision": "c00fd2c4d0fb4eef98328874", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67874,10 +67874,10 @@ "value": { "costs": {} }, - "revision": "4f2fae53466f488f9621bf34", + "revision": "bd2a0b3ffe7c424782d6910a", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67919,10 +67919,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "5f65bb99682047d2b6c823c8", + "revision": "37f37ccaad84462886b77fcc", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67930,10 +67930,10 @@ "content": { "type": 5, "value": "Saque de 14.660.794,00 IVIP para a carteira 0x6f7b4deec8d4683e8b51eac0dc13552247a868ea", - "revision": "702e43d51c2742a48f934bc3", + "revision": "df466e37bff04b2b8afb2de3", "revision_nr": 1, - "created": 1701809344944, - "modified": 1701809344944 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67953,10 +67953,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "4c71ed1f8eda4271bcfec7eb", + "revision": "367e344b844a4d6a9b1107cf", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -67991,10 +67991,10 @@ "currency_id": "IVIPAY", "history_id": 1685625562355 }, - "revision": "7b540bd2c8314fc6965e2dd6", + "revision": "ce23dae7a8e740aca95edfbb", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68002,10 +68002,10 @@ "content": { "type": 5, "value": "Compra de 146.607.940,00 IVIPAY por 14.660.794,00 IVIP estabilizando US$ 749,86", - "revision": "027a186754f449afa9296254", + "revision": "1a86062ccfc9469e972ee62f", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68025,10 +68025,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "04626c3009924d8ca020a5ba", + "revision": "e716c07e9edb4db292db52cc", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68064,10 +68064,10 @@ "history_id": 1685639526258, "description": "Compra de 1.490,00 IVIP por 14.900,00 IVIPAY" }, - "revision": "747e56075e5c4843ade82a01", + "revision": "7d0aea18a56246308fa7ade8", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68077,10 +68077,10 @@ "value": { "costs": {} }, - "revision": "76011af32d204d4284b83a4d", + "revision": "65e1ce147db440bbb87801e0", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68122,10 +68122,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "338e2ab56b474c9c98a3620c", + "revision": "7393caea77014f178a1527d8", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68133,10 +68133,10 @@ "content": { "type": 5, "value": "Saque de 1.490,00 IVIP para a carteira 0x46450913428e27edfc5B4055875c08eC6a22cbfF", - "revision": "f10142d04e604725aa383ecb", + "revision": "5f567d8b2faa451eada5d351", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68156,10 +68156,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "632261042e3444429d1d9139", + "revision": "aef9337ac71f4e13b4a69ce7", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68194,10 +68194,10 @@ "currency_id": "IVIP", "history_id": 1685653675417 }, - "revision": "91983ad51a5647b894bb0cf6", + "revision": "057c3c14c8e642369d0a2444", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68205,10 +68205,10 @@ "content": { "type": 5, "value": "Compra de 13.603.163,00 IVIP por 136.031.630,00 IVIPAY", - "revision": "a5ce9bf541254c1ebfa46013", + "revision": "c83039e8a1b94fc8a68cb5ad", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68218,10 +68218,10 @@ "value": { "costs": {} }, - "revision": "c5bf8f9c719f42cda4f8b8e4", + "revision": "cbe7235b609340e59daaa0f9", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68253,10 +68253,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "fa3b69b5c78f486eb28bb2d2", + "revision": "5bd71a1759b144ae810b56ad", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68264,10 +68264,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.463,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "12363ec146f8417297828110", + "revision": "8ba24b9a76b643f8bed7100e", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68277,10 +68277,10 @@ "value": { "costs": {} }, - "revision": "725822cbc62e47729edaba8a", + "revision": "cc30279a3f064270bc55f3ae", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68312,10 +68312,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "efe9964c766641a09f5fafde", + "revision": "c59002e771154e1e9b161914", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68323,10 +68323,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "8720a6c87d0f427b95bcf8c0", + "revision": "a474972115864ca0b2cb7443", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68340,10 +68340,10 @@ "value": 1692547137377 } }, - "revision": "4e3f4740ceae4d09a21a2f3f", + "revision": "6e8336a6b8984d469b8b623a", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68361,10 +68361,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "03dd877492f540d4a240aa1c", + "revision": "755e163ed43b41b8b40cf36e", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68372,10 +68372,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1689955137377", - "revision": "6826f41aaddc458285b0355b", + "revision": "40057b5531d7457b9c99a149", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68405,10 +68405,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "dcaebc4f46024e5a8ed1194d", + "revision": "84175f9f74ee4364b1ecb428", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68416,10 +68416,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.671,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "cbb156c45ed74ae497d2ba34", + "revision": "e588547ec3f941989623592c", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68433,10 +68433,10 @@ "value": 1693429523298 } }, - "revision": "7af73d8bdcbe46df812ae0e8", + "revision": "1ef51bce39734f0c868fb50c", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68454,10 +68454,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8277b4e1220745d38c0510b6", + "revision": "2aab7255df8045c592f9388f", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68465,10 +68465,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1690837523298", - "revision": "51bcea4e50b44ab4932573a4", + "revision": "6a3f1ca4bb694c5fa4cbe008", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68508,10 +68508,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "503a93233529408f8e186ae9", + "revision": "eebd5c6c105e4fb7a2d0e3dd", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68519,10 +68519,10 @@ "content": { "type": 5, "value": "Deposito de um valor 20,00 para a carteira iVip 0887.5336.8634.7750-00", - "revision": "0fcaaff357e84099bea6f693", + "revision": "09620fa8e7f54e929ffa8e46", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68540,10 +68540,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b515d48f323a47dca5c59d27", + "revision": "24b8e23234ed426890bdfe8c", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68551,10 +68551,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/088753368634775000/history/1690844181474", - "revision": "46d7ee7062454caebd7f869d", + "revision": "2ba7d45b8cef4e029892ad6c", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68589,10 +68589,10 @@ "description": "Compra de 17.960,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "d0ba8a3ff845421b98b62426", + "revision": "99e79c61fe594ae0aada4a2d", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68600,10 +68600,10 @@ "content": { "type": 1, "value": {}, - "revision": "a4289906b510494cb6d36bec", + "revision": "a699cf78cb3240908ed14bfa", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68611,10 +68611,10 @@ "content": { "type": 1, "value": {}, - "revision": "33d25de7c5d54f4cb070d85c", + "revision": "33e0413ce458400b8cfc4a31", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68629,10 +68629,10 @@ "value": 1688858744635 } }, - "revision": "1c3ddaa72a7241a0bfa2ff4d", + "revision": "b80ab2973d10475e80f79cf0", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68649,10 +68649,10 @@ "value": 1695956400000 } }, - "revision": "1b4402be38f74d4588124231", + "revision": "3b6ca5995a7746198891c808", "revision_nr": 1, - "created": 1701809344945, - "modified": 1701809344945 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68664,10 +68664,10 @@ "symbol": "IVIP", "value": 507.45 }, - "revision": "e9bb6dfd7ade495fbf4baf40", + "revision": "09a8671eaf144647b57a3d23", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68675,10 +68675,10 @@ "content": { "type": 1, "value": {}, - "revision": "23c6ae94fc954014b8fc397c", + "revision": "e8cf5325d35348e2967558f6", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68688,10 +68688,10 @@ "value": { "costs": {} }, - "revision": "8dfd67788cf54b779106ae4c", + "revision": "996c44a64cb947c1a180677b", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -68733,10 +68733,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "271dbd86d6034181b4b51ccd", + "revision": "b6d0b089f5a24f6e999f047f", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -68744,10 +68744,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 0918.7836.9033.5585-10", - "revision": "4e156ff2a39e42858f7f740d", + "revision": "006a340e98174aef87a7efc6", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036391, + "modified": 1702563036391 } }, { @@ -68767,10 +68767,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "3e1e613232684107bdca33a5", + "revision": "8e4378b8c0f6498489db1fe2", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -68806,10 +68806,10 @@ "history_id": 1689197549929, "description": "Compra de 82.125,00 IVIP por 200,00 BRL" }, - "revision": "6a1cefd5e3004c87a28a0c1e", + "revision": "12d89a2c5a3b4bfeabf8fd74", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -68823,10 +68823,10 @@ "value": 1698492550248 } }, - "revision": "5c57bb5b2a464ddfa6043068", + "revision": "cad8b2fa99154d7e90ba8105", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -68844,10 +68844,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "01601e192b374fecb2683c97", + "revision": "17b2fd8366a240f089bbe6f1", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -68855,10 +68855,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900550248", - "revision": "dee5f9c7364b498f8c14c04b", + "revision": "bfb3b0327f914ec184fce51a", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -68889,10 +68889,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "305284c71b554a468ba113af", + "revision": "747e948dbe2648cc8b40550b", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -68900,10 +68900,10 @@ "content": { "type": 5, "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", - "revision": "29dbf25831c24fdb89ff9490", + "revision": "4e0e268e74af4792ac16fd34", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -68917,10 +68917,10 @@ "value": 1698492550761 } }, - "revision": "8ad6bf470f854f34b6006319", + "revision": "ea9f8b27ce444ee1949ef141", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -68938,10 +68938,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8c80588f11f74297a89709d9", + "revision": "6b5d6bb6c872456d8daa6ebc", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -68949,10 +68949,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900550761", - "revision": "7b881aefe52644ddbc124aed", + "revision": "fdb624e7c5da473db9a3b0fe", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -68983,10 +68983,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "7b3599f9774f49a7926085a8", + "revision": "280478192b454948b11a3049", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -68994,10 +68994,10 @@ "content": { "type": 5, "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", - "revision": "50ab24cae49f462ca4769bcd", + "revision": "3675c2b792194988a00e7ff8", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69011,10 +69011,10 @@ "value": 1698492565784 } }, - "revision": "faa26543a9194d1fb0ad316f", + "revision": "cecdbb59321c493dbe10e164", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69032,10 +69032,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "3d58646f28514a3194114fd0", + "revision": "6ccc85c6d91a4ff3ae6dd754", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69043,10 +69043,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695900565784", - "revision": "95fb680823af480bb021b8d4", + "revision": "f8d7414f26fa4a11b8c3dc3a", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69087,10 +69087,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c4d554bab16e48b3a486897a", + "revision": "317a2cd23a2f4959a1b795a1", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69098,10 +69098,10 @@ "content": { "type": 5, "value": "Deposito de um valor 458,00 BRL para a carteira iVip 0918.7836.9033.5585-10", - "revision": "5d5f61bbb65b4e1d80071a7f", + "revision": "d3d39336b2b14a3da5777113", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69119,10 +69119,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1c33f5ac16524c6ab7ea7dab", + "revision": "a22474fed53347d8bcaaf60c", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69130,10 +69130,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/091878369033558510/history/1695903994262", - "revision": "14bf9b22b19f4a51b58a3fe4", + "revision": "2b5a1518f43a416cb5009df4", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69169,10 +69169,10 @@ "description": "Compra de 383.626,00 IVIP por 458,00 BRL", "status_detail": "accredited" }, - "revision": "3c886c1c68ec4161b2ea41b6", + "revision": "38b891d23e3a43b7949c9833", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69180,10 +69180,10 @@ "content": { "type": 1, "value": {}, - "revision": "b5b69d84694843ca9fb66e26", + "revision": "6808376c85d249d286eefe75", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69191,10 +69191,10 @@ "content": { "type": 1, "value": {}, - "revision": "bab7bf46f2ec4091a7846124", + "revision": "c2229f987ec741f5bffac67c", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69205,10 +69205,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "80f0a5e2c54149a3becdc523", + "revision": "027fadbf78154598b0a716a9", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69225,10 +69225,10 @@ "value": 1696129200000 } }, - "revision": "b2cc0bd614c84914a45114fe", + "revision": "66a811f90742464e8db81d87", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69236,10 +69236,10 @@ "content": { "type": 1, "value": {}, - "revision": "cef2ca26ac76464c9ae2db5e", + "revision": "7f24ede5e778472b9b697c0d", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69249,10 +69249,10 @@ "value": { "costs": {} }, - "revision": "819a570a8801482daf0f34a1", + "revision": "f5bbe58065154f088fc77b66", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69289,10 +69289,10 @@ }, "money_release_status": "rejected" }, - "revision": "9e1e338ba5e54e468d60a516", + "revision": "fe692fb9cda645eba7d22444", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69300,10 +69300,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 0923.9225.3957.1184-80", - "revision": "02c7ac6a9d6b422b9a113109", + "revision": "35ae60f0a6d24165a3da8ad4", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69311,10 +69311,10 @@ "content": { "type": 1, "value": {}, - "revision": "09f8545bd2e64079a9617f18", + "revision": "bcafc67b38bf4223bbd274a5", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69327,10 +69327,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "ab4e1484b5914fe8b81218bd", + "revision": "d634a4db5e764c13baad8766", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69338,10 +69338,10 @@ "content": { "type": 1, "value": {}, - "revision": "8d45ce64f35e464486b20fac", + "revision": "369e30c6890e4f4ebae1a22f", "revision_nr": 1, - "created": 1701809344946, - "modified": 1701809344946 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69351,10 +69351,10 @@ "value": { "costs": {} }, - "revision": "c9e08d59d1f04a9e8cc9f45f", + "revision": "c317d8bb61b54c928887c071", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69386,10 +69386,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "4e848b1a7e6e4aefae4fce57", + "revision": "18e7775030384a17a91060c4", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69397,10 +69397,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0956.3322.9427.8818-90", - "revision": "97892240426d4efaa8b11afd", + "revision": "5719503631b747a2bfb46e6c", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69410,10 +69410,10 @@ "value": { "costs": {} }, - "revision": "3a23a6f74075474881fb120e", + "revision": "c2c1e2880f2647dd9aee469b", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69445,10 +69445,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "5c947bc1f3934319a362dbf0", + "revision": "6ee1c53bff5f4ffda3391f7f", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69456,10 +69456,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0956.3322.9427.8818-90", - "revision": "1bfc8cb16cdf4f6fa455d55f", + "revision": "def2da11d651409b8a4362a7", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69467,10 +69467,10 @@ "content": { "type": 1, "value": {}, - "revision": "7902593151674bdbbbce1ac5", + "revision": "07f25e681ac143d38669bd91", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69478,10 +69478,10 @@ "content": { "type": 1, "value": {}, - "revision": "501d7872a39f4fbf9ab10e4c", + "revision": "819a7ec5d65341c68b4fd951", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69492,10 +69492,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "024c0db3134a48aca5de4b5d", + "revision": "a3c8b971cd0f4372b9fd636c", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69508,10 +69508,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "e00a881ed7744a8d9ad0ba1f", + "revision": "7a610967f16b4ceea2fc3d59", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69519,10 +69519,10 @@ "content": { "type": 1, "value": {}, - "revision": "5f104ee4b2d8411eb2f06d58", + "revision": "805053ca48424e3fbf528165", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69532,10 +69532,10 @@ "value": { "costs": {} }, - "revision": "989e0b4f350a4fa790e93739", + "revision": "9899b1cdf25b488fa1bf4c0a", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69567,10 +69567,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "39353db5ed3a4bc595a666bd", + "revision": "cf7dd5a6bef44021992f475a", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69578,10 +69578,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 0961.2401.6860.3556-50", - "revision": "d03185c8927e40219a601e25", + "revision": "ba7af3239d0b4318a298742d", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69589,10 +69589,10 @@ "content": { "type": 1, "value": {}, - "revision": "4e48b7b83e684c8dad83bffa", + "revision": "e60c736e07e44fa3a20ad2e4", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69600,10 +69600,10 @@ "content": { "type": 1, "value": {}, - "revision": "ae8b384bf3cd4258bb87a66e", + "revision": "646219df813847318eeeaf15", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69614,10 +69614,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "ef2a1766c7bd4e019298293e", + "revision": "39f6b0c9bc014a4a8a489844", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69630,10 +69630,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "ab194c82f0c2492db90f56b9", + "revision": "24269cef259d448e9b058cd0", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69641,10 +69641,10 @@ "content": { "type": 1, "value": {}, - "revision": "9044b20db79d4608a06490e1", + "revision": "6a846bd5975f47eab1945b52", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69652,10 +69652,10 @@ "content": { "type": 1, "value": {}, - "revision": "64776d73acec40eb891d5e20", + "revision": "f3f336023dfd414b83f180db", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69667,10 +69667,10 @@ "dateValidity": 1696117965942, "currencyType": "USD" }, - "revision": "78af01ab47ab46c18ba5e2f7", + "revision": "592c57e44f9c48bda4561c26", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69682,10 +69682,10 @@ "symbol": "BRL", "value": 1.92 }, - "revision": "8a622b01ba9e4bed9732e6d5", + "revision": "2057621dbde943da856e8375", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69697,10 +69697,10 @@ "symbol": "IVIP", "value": 62.92 }, - "revision": "7d92986b6d30407f924b88b3", + "revision": "971ff41a667e4c50b80064b4", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69708,10 +69708,10 @@ "content": { "type": 1, "value": {}, - "revision": "18e5151df9e041a083137f3d", + "revision": "2ed226ef751e44b8bcf0ca60", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69721,10 +69721,10 @@ "value": { "costs": {} }, - "revision": "73205112a9014525a7655e96", + "revision": "0d3a631a35eb4341804cfc5c", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69766,10 +69766,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "65042288374d43e2856bc706", + "revision": "fc6911f273bb4930af8fdc35", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69777,10 +69777,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "98c0870bf07c459faeaa6423", + "revision": "80b98ca588cb4e4791b1cb52", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69790,10 +69790,10 @@ "value": { "costs": {} }, - "revision": "6b2b4e51e4224f1393bbf12c", + "revision": "a73d2e14fe764deb89826f1d", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69835,10 +69835,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "f9b9c249cac842cebef81069", + "revision": "4e664e98a04043caaf66c638", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69846,10 +69846,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "fd8fb5aeec6b4bd2805d08fd", + "revision": "76406a5f4c5d429f93eb0d04", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69861,10 +69861,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "2240135dceae4eccb9b61f6e", + "revision": "7a14274ed09844bf97e2339b", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69872,10 +69872,10 @@ "content": { "type": 1, "value": {}, - "revision": "5db8376dddfe4108b775d1d2", + "revision": "ccc0c1d40b874a7ea655946b", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69883,10 +69883,10 @@ "content": { "type": 2, "value": {}, - "revision": "d7281e234a514be2abf79e1e", + "revision": "0ac8aed0fdc643c5adf84768", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69919,10 +69919,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "18138d3f16954f53884a3b50", + "revision": "3cf3a87cc0af45afa7f6f64e", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69930,10 +69930,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "fa9566f63b7f4a3497d0d5ac", + "revision": "e7ab23f8365a430794794c36", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69955,10 +69955,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "f1a0e52b3fe44825b2b49133", + "revision": "21104380cbcd4d548c11296d", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -69994,10 +69994,10 @@ "currency_id": "BRL", "history_id": 1683548182568 }, - "revision": "2242011dc3404ba5944fbd26", + "revision": "7935fc3ecd5540df985bd1c4", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -70005,10 +70005,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "bd713a4776e949469d5a210e", + "revision": "226c3cf1858d4aae92b6c43c", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -70030,10 +70030,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "0d188abe4c1a4f9e99d995b7", + "revision": "e7d2353378734987811c05a9", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -70069,10 +70069,10 @@ "currency_id": "BRL", "history_id": 1684367503606 }, - "revision": "4bd6c1a404fb480492662383", + "revision": "61843ee26c7f4cd2b5ca82be", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70080,10 +70080,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "d8fc2d8282714c3b88bfd142", + "revision": "26f0b64984234d8dbc063415", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036392, + "modified": 1702563036392 } }, { @@ -70095,10 +70095,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "6a3107d0f7a44c9cb4127dd8", + "revision": "b123a8413abd4ddda2e1bc63", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70106,10 +70106,10 @@ "content": { "type": 1, "value": {}, - "revision": "1fd26fcd4e364d608ce70b97", + "revision": "6292e208c17c4cfdb0d47132", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70117,10 +70117,10 @@ "content": { "type": 2, "value": {}, - "revision": "925d2be099d14ede883fcc09", + "revision": "9de10df6d4b5457680f2a823", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70153,10 +70153,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "ecd9ecd3dfa04806bd671680", + "revision": "a65efd92ed5744e3ba5fec7d", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70164,10 +70164,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "a227cd0d4f1e47a497a5224b", + "revision": "63a5d1946e8a47528cfb7697", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70189,10 +70189,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "d264cc10c1e5455c820c18a9", + "revision": "5ac7f76358d2482d81b5789d", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70228,10 +70228,10 @@ "currency_id": "BRL", "history_id": 1684415962143 }, - "revision": "41ec97e55f6f4e2ea5f30486", + "revision": "44203de98c39475fa2906e25", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70239,10 +70239,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "666a7f803bb941ffa3b8f135", + "revision": "85e8f0f5db8b4a139b2706de", "revision_nr": 1, - "created": 1701809344947, - "modified": 1701809344947 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70252,10 +70252,10 @@ "value": { "costs": {} }, - "revision": "69b66a8e977b401c8726face", + "revision": "6c624aae3d564cedaa4634a8", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70297,10 +70297,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "8097525315ad4fe0b52271ed", + "revision": "9b1c9209a75e494f98c58b03", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70308,10 +70308,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "46a1424103ec4114b3249e95", + "revision": "2b5f4832d3b844559727167c", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70331,10 +70331,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "53ebb98a3b184a45ad768729", + "revision": "90fb8b75c2984f158a9f68da", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70370,10 +70370,10 @@ "history_id": 1684624390329, "description": "Compra de 77.493.341,00 IVIP por 15.910,00 BRL" }, - "revision": "45644d70ada74262ac89e05c", + "revision": "0c25bef6e94446179c8e6755", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70385,10 +70385,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 5 }, - "revision": "ac3c550abc904ec3be8fe4e1", + "revision": "7c53ac86ef2547e189001caf", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70396,10 +70396,10 @@ "content": { "type": 1, "value": {}, - "revision": "b1c0994718684f69a36f9f71", + "revision": "1c8bd700205c4c7d86087308", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70407,10 +70407,10 @@ "content": { "type": 2, "value": {}, - "revision": "f0709db64aa845cf81e30519", + "revision": "3a822c85eaac402888968946", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70443,10 +70443,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "a1d9425aca4b46a2a5dd000c", + "revision": "f3887d28759144349d47d3a8", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70454,10 +70454,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 255,00", - "revision": "e6398a87d4a844c6a4669815", + "revision": "d8d6920881da40869fd36462", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70477,10 +70477,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "4840863d23a44275b8c7c908", + "revision": "0f03cde339d34d2d83b4f7a6", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70516,10 +70516,10 @@ "history_id": 1684661800868, "description": "Compra de 1.218.292,00 IVIP por 250,00 BRL" }, - "revision": "1d0018d23b25442f8fd7d298", + "revision": "fa18be0bc2004372ab29c3a6", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70529,10 +70529,10 @@ "value": { "costs": {} }, - "revision": "d81b5d693e024fc1ad7d8e1f", + "revision": "1f7345363528439999c4bbae", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70574,10 +70574,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "cdc95869216d4eafb8f6aa10", + "revision": "b578304e7e2e4fd9b9974975", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70585,10 +70585,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 255,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "c15876b4366448ed8e54ec6d", + "revision": "b6153975a5d946b9be9544fe", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70610,10 +70610,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "f443443c8c8948878988417e", + "revision": "31d226ce731e44c99c57e8e8", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70649,10 +70649,10 @@ "currency_id": "BRL", "history_id": 1685486477860 }, - "revision": "09a55f38ec78418288ea652e", + "revision": "eac70d43ef6449069d38800e", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70660,10 +70660,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 1 no valor de 255,00 BRL referente ao contrato 1684661775049", - "revision": "fa658f544beb4c3b87769353", + "revision": "d55baaa7b275461dad898db5", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70683,10 +70683,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "90ba8fa6a358410d8f4aa47f", + "revision": "433e39d1a9244bf582f08f4e", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70720,10 +70720,10 @@ "currency_id": "IVIP", "history_id": 1685667437011 }, - "revision": "1fb7f4f7fd524038bb589738", + "revision": "f97b45a579b044529403f7e8", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70731,10 +70731,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "5cbc264d754243cc9452b15b", + "revision": "1644c3036d3547f78bb6ca09", "revision_nr": 1, - "created": 1701809344948, - "modified": 1701809344948 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70754,10 +70754,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "3b4fbc32aeee47f9b2f0bc18", + "revision": "a0c2227414b6490aa7d35241", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70791,10 +70791,10 @@ "currency_id": "IVIP", "history_id": 1685667452001 }, - "revision": "f8d5ad93007c49eb93d364a1", + "revision": "6da1c058491642c48725b9c0", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70802,10 +70802,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "62fe6712b7484ff096c39d1b", + "revision": "381ffd01735b431aa58d81da", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70825,10 +70825,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "14d29eca56bb4e8092e5864f", + "revision": "3b23d357d3f244bd966eb779", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70862,10 +70862,10 @@ "currency_id": "IVIP", "history_id": 1685667466065 }, - "revision": "c55aaa6632d942248f904063", + "revision": "9a21616aedce4aafa40ebf32", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70873,10 +70873,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", - "revision": "717a2f045b814400b716942f", + "revision": "f2b523e21f16409a80c3a39c", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70896,10 +70896,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "2fc0f61333544ff3a052d6e1", + "revision": "f393629c263c47caa8c92a7a", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70933,10 +70933,10 @@ "currency_id": "IVIP", "history_id": 1685667479611 }, - "revision": "a40e3b05ca904f3fb874eff7", + "revision": "3108f5d57dce493da6ccc0ec", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -70944,10 +70944,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "895c855562c747b2b69a50f8", + "revision": "a447cf260a454d989f9bfdc3", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036393, + "modified": 1702563036393 } }, { @@ -70967,10 +70967,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "6c31a70a50d54ab88ce2f999", + "revision": "522c84fac36c4d2bbe1d705a", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71004,10 +71004,10 @@ "currency_id": "IVIP", "history_id": 1687307213896 }, - "revision": "72751f15f03e42ea84a4e0e6", + "revision": "66a1da489a5646f3939a1954", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71015,10 +71015,10 @@ "content": { "type": 5, "value": "Investimento de 22.711.633,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", - "revision": "f8c9430a49264386874a1628", + "revision": "3d826aecb1e441068c306e75", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71038,10 +71038,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "b7c7cf51eeb946908a3fc3ca", + "revision": "ba62986356c6444b8ef75380", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71075,10 +71075,10 @@ "currency_id": "IVIP", "history_id": 1687313762388 }, - "revision": "65aef165e07a4ef897e3ac30", + "revision": "63e3e0ce459d4ce785fb3dd3", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71086,10 +71086,10 @@ "content": { "type": 5, "value": "Investimento de 24.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2025", - "revision": "951669da32ac4cd0a4f5a252", + "revision": "7e55a462b4a444a8b2d5b79b", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71109,10 +71109,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "232c37de96914499b81b4318", + "revision": "1d0b3781e0404bd7bf85baf8", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71147,10 +71147,10 @@ "history_id": 1688400402521, "wasDebited": true }, - "revision": "c534ded07d14462583ec5cad", + "revision": "157853fa8b7b4502b23494d6", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71158,10 +71158,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "4ecb132ea2744074b431c760", + "revision": "65b9e315a22c4c2b8cb05524", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71181,10 +71181,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "20c9ad808e5c495db9ed1094", + "revision": "8b7b1e6bb78e46e9bb607b1b", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71218,10 +71218,10 @@ "currency_id": "IVIP", "history_id": 1688403044242 }, - "revision": "9521636f805042fa9a9c53bb", + "revision": "d073fbc38ae845ca90c29c74", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71229,10 +71229,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "8f8a579946734808b9fb7002", + "revision": "7df0e2b465b34dcc98b59b28", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71242,10 +71242,10 @@ "value": { "costs": {} }, - "revision": "158fd038252f47ab9da24ce9", + "revision": "c467859add334695976137b1", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71287,10 +71287,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "972f5b5038c740598e8dd212", + "revision": "72e4a945e6704ea886823b7a", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71298,10 +71298,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "02cdba69e48d43e982e69cc5", + "revision": "ef67ba3124874a479baad85e", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71323,10 +71323,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "6b2e9a7ca62e4fc1bf0cb3cf", + "revision": "a684af26e5914e7298d274d8", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71362,10 +71362,10 @@ "currency_id": "BRL", "history_id": 1689211234387 }, - "revision": "720da6a5cb2d4592a14ab444", + "revision": "c29bee27235c4149a9710dee", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71373,10 +71373,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 3 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "c35d5ceff777491294aef567", + "revision": "7465a6541f484d52ac09e97d", "revision_nr": 1, - "created": 1701809344949, - "modified": 1701809344949 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71398,10 +71398,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "1f9583aa66c14aa18c1974a3", + "revision": "b28fb42139b84a87bddb581a", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71437,10 +71437,10 @@ "currency_id": "BRL", "history_id": 1689211234773 }, - "revision": "28b7d742755848fc844a6895", + "revision": "8276f3c3572c45459d098d5f", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71448,10 +71448,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "9396f0605d0b40feaffebb3e", + "revision": "88e3f4c9b71649d698b6beff", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71471,10 +71471,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "55ab392e2e7d45c39aacad48", + "revision": "d278ba28286446e581fea9ed", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71509,10 +71509,10 @@ "history_id": 1691081485992, "wasDebited": true }, - "revision": "5f2a02f798e34a1ba5cbb5a6", + "revision": "bddfa519d21c4b6a97292b2b", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71520,10 +71520,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "aaa07512ac7e44249066f40e", + "revision": "19de94d284d14af9ac38e707", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71541,10 +71541,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "37c8e789e6cb4a8ca9123ffd", + "revision": "2254b2a749924a209e47187b", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71552,10 +71552,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1691082200859", - "revision": "e783dbce4ef54cab95b4bf92", + "revision": "5d12e21ce3cc4d518c435075", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71589,10 +71589,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "0dae9e5a0765453b9196a313", + "revision": "03c99c913dd945f6b5482911", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71600,10 +71600,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "7c7dc189ae994a14bf6aa499", + "revision": "b5431bde2c614ce7aa7824e3", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71617,10 +71617,10 @@ "value": 1694387537743 } }, - "revision": "0048ea0837a243bba192ef8a", + "revision": "9599b0cc66914b35be5bf8c9", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71638,10 +71638,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "31cb2bdf3123481cbc9dde75", + "revision": "4a0089f76c9545c083361443", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71649,10 +71649,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1691795537743", - "revision": "fb1881e4fc1a473790d9ed6e", + "revision": "bf802d7832944b858a54e4f6", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71692,10 +71692,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d65d00efcebc457a97851782", + "revision": "5991b273c13b440dbf6053bd", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71703,10 +71703,10 @@ "content": { "type": 5, "value": "Deposito de um valor 1.490,00 para a carteira iVip 0983.0244.9130.1420-80", - "revision": "6bf417da8b5e494c9f3de81b", + "revision": "68d3b45507ee43cdb074d210", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71728,10 +71728,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "1bb87e80f00e4d46a9f80a8e", + "revision": "4374b0c6632a4183a9eb98c4", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71767,10 +71767,10 @@ "currency_id": "BRL", "history_id": 1691838943906 }, - "revision": "6a83e170572e4de9a11315d0", + "revision": "fc3c8dd533474ea48b9ff343", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71778,10 +71778,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 4 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "613a92ad8e5f47ce97cc6a46", + "revision": "8325e92473b84f529408ba54", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71803,10 +71803,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "8d18dadd1d8e4875b7f50aaa", + "revision": "89634b3ffb7b438d89040108", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71842,10 +71842,10 @@ "currency_id": "BRL", "history_id": 1691838944125 }, - "revision": "02130c495fa8448482d008ad", + "revision": "b849c3ae076b431285902471", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71853,10 +71853,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 3 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "468772c0300140b69037805f", + "revision": "79f8498d54454b64824737bd", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71874,10 +71874,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "087ed29d8cf44a5584cb1999", + "revision": "3e750dcebb60490ebe545d5e", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71885,10 +71885,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1693760654707", - "revision": "d679f16813ef4a2988f996d6", + "revision": "7407ebe945ef44d1a3be7722", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71922,10 +71922,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "5cbf829402de465ca550c5ee", + "revision": "a57293a794e34e9cba599d84", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71933,10 +71933,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "1401c62a6f5642d8bb39e8ea", + "revision": "a3aaf40b2e314e189acdf1c3", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71954,10 +71954,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "80ebbfe839354b53b66cac33", + "revision": "462593a112de419694741d20", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -71965,10 +71965,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1693869394011", - "revision": "abc6e0181c194d24a55463bc", + "revision": "82de1b9b411e4c9a969f0bc5", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72008,10 +72008,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "69f822a405ab4bfe8bd76302", + "revision": "5e5f1554b71f411f818e6bd7", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72019,10 +72019,10 @@ "content": { "type": 5, "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/10/2023 - Y12XDT27", - "revision": "abc44b4ce41b4d7d80964b57", + "revision": "c856fbae53bd4fbf853e8dae", "revision_nr": 1, - "created": 1701809344950, - "modified": 1701809344950 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72036,10 +72036,10 @@ "value": 1697073911857 } }, - "revision": "d6370eebe60547a5a5389ff8", + "revision": "9bd98bd794f243afab261e3c", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72057,10 +72057,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7e6413f293124d03881ce171", + "revision": "2ba93add533549719b2f0845", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72068,10 +72068,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694481911857", - "revision": "9dfa4826fae7419d8ffbdd34", + "revision": "cf034afe07914404b3dba423", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72111,10 +72111,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "0475b4402fa345328ce7feeb", + "revision": "9aa6fa575ae244f1b15f1509", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72122,10 +72122,10 @@ "content": { "type": 5, "value": "Deposito de um valor 1.490,00 BRL para a carteira iVip 0983.0244.9130.1420-80", - "revision": "c49b91e0ad1f40c5aa4627b6", + "revision": "2b6d308e18c54d6c87b3af8f", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72145,10 +72145,10 @@ "installment_paid": 5, "installments_payable": 5 }, - "revision": "9da7924938174d46a8bc9e32", + "revision": "d9425f3279364a99a16dac56", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72156,10 +72156,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694627290479", - "revision": "ac419332a4dd4055b88c1e04", + "revision": "c9fb3640121a43dfb2adf493", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72193,10 +72193,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "b6d2bac969374c3aa69dae7f", + "revision": "5283627924ef4559bb18f62f", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72204,10 +72204,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 5 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "9cd6c2af43da4bdc9f853549", + "revision": "cb46d17a85bc4684b8f1512f", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72227,10 +72227,10 @@ "installment_paid": 4, "installments_payable": 4 }, - "revision": "ffeb03acd83e4883852d1b83", + "revision": "efc6f09616f9429b946b5760", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72238,10 +72238,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1694627290565", - "revision": "8c4075e7fe094fac805d3346", + "revision": "2db09134f4cb474fbd521425", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72275,10 +72275,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "2154fa3c000f4a14910c8a8d", + "revision": "772266eecab14992ad171e2c", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72286,10 +72286,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 4 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "4c131d90debe43e299a2c978", + "revision": "f1553d13703d47be850d162b", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72307,10 +72307,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4ff1641bed1349c29ce4dcf4", + "revision": "1f10a258c45142faa2e000c8", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72318,10 +72318,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696555808953", - "revision": "5f9123fa487446889a8fe85c", + "revision": "24867956dca840179bba570f", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72356,10 +72356,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "3ebf78b218124c90a6cebc70", + "revision": "9d638a7704e744ce946a8982", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72367,10 +72367,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/11/2023 - Y12XDT27", - "revision": "e3db6ebc36ad4910803ca40e", + "revision": "43fcad4a37c0439eabe1de9c", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72384,10 +72384,10 @@ "value": 1699411744331 } }, - "revision": "eef8569d8c3f42478dc75d1f", + "revision": "7a73fb255cb148a191dee619", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72405,10 +72405,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "5a2cdd10bd7a42db9eb097f0", + "revision": "1f95148a32dd4b178cbd271e", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72416,10 +72416,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696819744331", - "revision": "50840a7c55804bb891928d8c", + "revision": "3a9700d629574c05a83d082f", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72460,10 +72460,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "84fa3926b95c4ffea0b4cf34", + "revision": "6cd1dd19623e4342bc8e743f", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72471,10 +72471,10 @@ "content": { "type": 5, "value": "Deposito de um valor 1.490,00 BRL para a carteira iVip 0983.0244.9130.1420-80", - "revision": "d0ca753981f04af6ab11acfe", + "revision": "7def84701c6a4466ba9c9520", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036394, + "modified": 1702563036394 } }, { @@ -72494,10 +72494,10 @@ "installment_paid": 6, "installments_payable": 4 }, - "revision": "52f9d4f991ff4cb980973cb6", + "revision": "9b76568eb8c945c097a03dd9", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72505,10 +72505,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696861214347", - "revision": "1ebb58811d754e0a96d6cfaf", + "revision": "2dc67a13d4fa4976bb5a539e", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72543,10 +72543,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "2854e4bbd1434d5f8d2192e3", + "revision": "be769df4cf674556b204de14", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72554,10 +72554,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 6 de 10 no valor de 1.200,00 BRL referente ao contrato 1680571158806", - "revision": "cf1d4cf8b831497dbde6f765", + "revision": "9d0ce59059c34f43a31c987c", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72577,10 +72577,10 @@ "installment_paid": 5, "installments_payable": 3 }, - "revision": "f3a5d0309faf4aceb548d1a3", + "revision": "0c2e67f6692246e3a5b348b4", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72588,10 +72588,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/098302449130142080/history/1696861218511", - "revision": "3cf8617370624a61b173e943", + "revision": "f7a4b58022f54ab5a2dc34ba", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72626,10 +72626,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "a4c1d29f624e401ead9325d7", + "revision": "0711b07ae15c41e2a0c68153", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72637,10 +72637,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 5 de 8 no valor de 290,00 BRL referente ao contrato 1684367721554", - "revision": "9ae2abe80c70499c9e30edae", + "revision": "51abac1425c04edd941c88d6", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72648,10 +72648,10 @@ "content": { "type": 1, "value": {}, - "revision": "2adaaaabd2d5401394862c8f", + "revision": "157d9b0e193f44bd92605f50", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72663,10 +72663,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "ca7b6568971747ce8e918710", + "revision": "a9df60f1661e41f78eccf134", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72688,10 +72688,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "4ca790b606bc496083731b49", + "revision": "91e70352d8d84d96bdd32c94", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72699,10 +72699,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "d663f804c77049caadebd62a", + "revision": "c77d81819ed343848d4c8ef1", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72710,10 +72710,10 @@ "content": { "type": 2, "value": {}, - "revision": "0b0c0cdde6a84494801bb9e7", + "revision": "33b159954a3f49858bddf302", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72721,10 +72721,10 @@ "content": { "type": 1, "value": {}, - "revision": "6cde0bc0dbe04993a76fcaa7", + "revision": "745673ecfec6474092830834", "revision_nr": 1, - "created": 1701809344951, - "modified": 1701809344951 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72736,10 +72736,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "d4c20d4ba7b94e55b4c92cd3", + "revision": "49dc259c2542422ea789515e", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72761,10 +72761,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "58c60046fa0b4916a9c6e8c5", + "revision": "d641749217384350b3770a72", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72772,10 +72772,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "48dc7f2ec9534e7db874cbbc", + "revision": "2e265a4058304675bbf73728", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72783,10 +72783,10 @@ "content": { "type": 2, "value": {}, - "revision": "dd472748beb5407faec6283f", + "revision": "193c93a49ef74588bab54e08", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72798,10 +72798,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "21b997f270054a0c8c0c7526", + "revision": "bd3102c2127f4f1fb2e15d7a", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72823,10 +72823,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "d58aaba3530f4c88a290221c", + "revision": "6abe4ed5204448779cf57d41", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72834,10 +72834,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "506464c579b74bdf8703a954", + "revision": "a342aa32b975439e9dd6bd79", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72845,10 +72845,10 @@ "content": { "type": 2, "value": {}, - "revision": "79d6a054c85448e5adf624ef", + "revision": "dc3e10e9860d4a61b790af53", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036395, + "modified": 1702563036395 } }, { @@ -72860,10 +72860,10 @@ "label": "Em 1 parcela(s) 2.00%", "amount": 5 }, - "revision": "05c3a41855c94d5eb7240656", + "revision": "c983b40263eb4e70b365bcd3", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -72885,10 +72885,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "f382f175d1554afc81e78942", + "revision": "123538be74e24d51b47456b1", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -72896,10 +72896,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 250,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 1 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 255,00", - "revision": "8da102b049764623a1ed8ae4", + "revision": "bcc90e4bc7d14aad8e194d4d", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -72907,10 +72907,10 @@ "content": { "type": 2, "value": {}, - "revision": "070706e7c9c14d7196583775", + "revision": "06b7baf409844c95b5ce21cb", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -72918,10 +72918,10 @@ "content": { "type": 1, "value": {}, - "revision": "42178749099e4e499d37972d", + "revision": "baf6c2c7f7d54317b45424ff", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -72933,10 +72933,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "315c270b519b4fcf81f2dcc2", + "revision": "e6d4666300b24b618c8730e3", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -72958,10 +72958,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "5b27a5b5b2904c8f8987242f", + "revision": "72ce56e756004ff1a7dae14f", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -72969,10 +72969,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "dccee9cc8df6495f853ee5d6", + "revision": "2dd4ee79c00240d38446468a", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -72980,10 +72980,10 @@ "content": { "type": 2, "value": {}, - "revision": "fe3f25755db44d1389c294bf", + "revision": "61a2b11ad5c94e22ba817665", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -72995,10 +72995,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "cced3f25a0a9407093c49400", + "revision": "936786ac514647f59b7c33fb", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73020,10 +73020,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "c572075823f84a5689e8b187", + "revision": "721dd4248e8744338a4acf12", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73031,10 +73031,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "1ecaf574059b4fc9a31f7ca8", + "revision": "9b25ab812beb4a939592a94d", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73042,10 +73042,10 @@ "content": { "type": 2, "value": {}, - "revision": "dd4538b6d27948239407ac0f", + "revision": "ad1e5a981bfe4889bad67659", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73053,10 +73053,10 @@ "content": { "type": 1, "value": {}, - "revision": "0bc922daedc846119256059a", + "revision": "6f91bc796d55410c8354c3a3", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73068,10 +73068,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "61bb2326e6964305a61ed7f4", + "revision": "cd318f8ff88c49e689314cf7", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73093,10 +73093,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "147097f5e7a5477089e1a122", + "revision": "0b2e528f79314a8cabe196f0", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73104,10 +73104,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "5411a0baa8924589ad62b52e", + "revision": "99bc3d800ab24773908b2990", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73115,10 +73115,10 @@ "content": { "type": 2, "value": {}, - "revision": "b87b1907ee2343c196dcbe40", + "revision": "ce091d2f86f041448f2aae88", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73130,10 +73130,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "304658a957b743ec920ae692", + "revision": "c0376094f88d4b4783e52bd7", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73155,10 +73155,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "333c1fc7fb0e4fa8af0d8d29", + "revision": "3c7603ad9f15408faab66de2", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73166,10 +73166,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "2eadc355af6c4ad983dbea71", + "revision": "121d787d5d614c15a008e33b", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73177,10 +73177,10 @@ "content": { "type": 2, "value": {}, - "revision": "4f557fde27334c069599ef1f", + "revision": "d1df02e8b590485ab10d27bb", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73188,10 +73188,10 @@ "content": { "type": 1, "value": {}, - "revision": "ef6bfa2fc13246ef9b8da88d", + "revision": "f6d93874b902475d8a433994", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73203,10 +73203,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "57c3bf72579948fea20ceed2", + "revision": "11f11980eaa44b719dde87b5", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73232,10 +73232,10 @@ "value": 1694627290497 } }, - "revision": "d673025b14094e87a9ad6e53", + "revision": "eb4018175b4d4796ade75774", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73243,10 +73243,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "b000b33982f2499a8cff0966", + "revision": "b495b63fddc849d9af016f71", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73254,10 +73254,10 @@ "content": { "type": 2, "value": {}, - "revision": "d700529635ed4329b1d2a5cd", + "revision": "f6aef6c7879343299b3d5209", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73269,10 +73269,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "09362595913f4100b54fa138", + "revision": "0c1d2449124046319cfb5397", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73298,10 +73298,10 @@ "value": 1694627290583 } }, - "revision": "5f1a70a6f5df48699b32e962", + "revision": "0610095b47a34ff998604884", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73309,10 +73309,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "be0a7b406718464fa1c66501", + "revision": "8a6019384f9841f68e433d33", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73320,10 +73320,10 @@ "content": { "type": 2, "value": {}, - "revision": "730cfe0f3f6c4869aa92a331", + "revision": "6f28e1cc0d384e329bd3090d", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73331,10 +73331,10 @@ "content": { "type": 1, "value": {}, - "revision": "5b437c02d7544d5bb50271e1", + "revision": "2957dcf16f344f5a9241489f", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73346,10 +73346,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "91cb98a3ef62451b9ddf9d18", + "revision": "3c79273e806247d992fb84b2", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73375,10 +73375,10 @@ "value": 1696861218119 } }, - "revision": "3922b3eb3fb1459abff34768", + "revision": "0d6491d139be41a59c70f2ae", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73386,10 +73386,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "75bb261cf1e24549b81edb8a", + "revision": "865a860c9cb94ea190187337", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73397,10 +73397,10 @@ "content": { "type": 2, "value": {}, - "revision": "2bd46197297e43dda6cf7398", + "revision": "4606063acf23463983f0c58e", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73412,10 +73412,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "36fd31fc2a724707857a13d8", + "revision": "86ef658038a24f2e95380e97", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73441,10 +73441,10 @@ "value": 1696861218540 } }, - "revision": "bfb42f5bb6ed4dafb2f75f8a", + "revision": "60be8e6af2d14547a3f2348f", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73452,10 +73452,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "0ab88bfb324043c89a020c1c", + "revision": "b5f2f4f989444363bd035252", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73463,10 +73463,10 @@ "content": { "type": 2, "value": {}, - "revision": "88f4dcd6de494db58c27d803", + "revision": "99570a0822b14d9db17e9915", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73474,10 +73474,10 @@ "content": { "type": 1, "value": {}, - "revision": "d13073b581ed4ae0b356946f", + "revision": "27c7ae6ce4c4496abef188e8", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73489,10 +73489,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "4515eabb3c9a4202acd2f95c", + "revision": "c1cd863224254ec3a271567a", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73513,10 +73513,10 @@ "history_id": 1680571158806, "currency_id": "BRL" }, - "revision": "c0ab416bc6634232a95da001", + "revision": "5ce41c75d29a446e9bc72911", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73524,10 +73524,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "c423e97a8768464f9b680806", + "revision": "7b098f6fadbd4ee5aabcf33d", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73535,10 +73535,10 @@ "content": { "type": 2, "value": {}, - "revision": "dcae8cea1f614a82a4ea4fac", + "revision": "128ab75137c7480982d9670a", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73550,10 +73550,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "ebe6962974654558898c4e61", + "revision": "f24039f8dfe443bfb72abb08", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73574,10 +73574,10 @@ "history_id": 1684367721554, "currency_id": "BRL" }, - "revision": "ee2b0d64a9af447a8b438f46", + "revision": "75a5a18e67504a17adea1d9f", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73585,10 +73585,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "1de02b32a75a41418270c7a0", + "revision": "459f38a859bf453884376e5e", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73596,10 +73596,10 @@ "content": { "type": 2, "value": {}, - "revision": "4cfb8457621149148cf55be2", + "revision": "311d13102a8b44bfbf6e760d", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73607,10 +73607,10 @@ "content": { "type": 1, "value": {}, - "revision": "a1d4891b30fd42428c9d9ec4", + "revision": "d69da03575934fc683d518d2", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73622,10 +73622,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "0c30e533505c4049b67e975e", + "revision": "39c6f7f2323b44328fefa57a", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73646,10 +73646,10 @@ "history_id": 1680571158806, "currency_id": "BRL" }, - "revision": "7b9cd22152134908a9d7bb84", + "revision": "d998da0a5ca145f298f57b2d", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73657,10 +73657,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "1e2fdd84d5e44220b5623faf", + "revision": "bb79c6ecce6243418f234b52", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73668,10 +73668,10 @@ "content": { "type": 2, "value": {}, - "revision": "7698ca9b037745acb2c5d009", + "revision": "612bc0ba8fb7472f8ef40064", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73683,10 +73683,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "2207fdeecf38482e890e5f20", + "revision": "98693156d4914193826d71dd", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73707,10 +73707,10 @@ "history_id": 1684367721554, "currency_id": "BRL" }, - "revision": "b0b1bc24bf50467680fe0402", + "revision": "c90019dd005146e09a36a507", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73718,10 +73718,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "536d905a3fb14fbb8fa9d240", + "revision": "97ce72dc71914aa78aebe23d", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73729,10 +73729,10 @@ "content": { "type": 2, "value": {}, - "revision": "0e9244203f184dde92838886", + "revision": "8c0c0f29db3744caba2ac36a", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73740,10 +73740,10 @@ "content": { "type": 1, "value": {}, - "revision": "030d6df0d91948bb84770fd9", + "revision": "4a40d09451f64f88afcdb5a6", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73755,10 +73755,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "4589ea1f0fec45b88439b6cd", + "revision": "f3516d25d6964c49944effa2", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73779,10 +73779,10 @@ "history_id": 1680571158806, "currency_id": "BRL" }, - "revision": "c944aacb73c6455f95bc15a9", + "revision": "fb11d43878864c2ea07cdcdf", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73790,10 +73790,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "509bc3ac3e7b4c77ac137865", + "revision": "3f5481a29cea4ebb93f59a2d", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73801,10 +73801,10 @@ "content": { "type": 2, "value": {}, - "revision": "0cfada6065004fa7b1010043", + "revision": "789da947eae6493c96bae089", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73816,10 +73816,10 @@ "label": "Em 8 parcela(s) 16.00%", "amount": 320 }, - "revision": "d208e86b07eb49dd8c24ef66", + "revision": "c4dfb28230d540a983621d02", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73840,10 +73840,10 @@ "history_id": 1684367721554, "currency_id": "BRL" }, - "revision": "12a4b7b26b3746a3aa203b40", + "revision": "8f451c8f00db440386b6ab64", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73851,10 +73851,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 8 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 2.320,00", - "revision": "3a3902153950429e8f9ab922", + "revision": "40dfbcdf826e4694942fdff4", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73862,10 +73862,10 @@ "content": { "type": 2, "value": {}, - "revision": "82c32cd0027946b69ddbb640", + "revision": "56a582fef79b4219b4e7e505", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73873,10 +73873,10 @@ "content": { "type": 1, "value": {}, - "revision": "18fb29d542634c3fb9a83e87", + "revision": "20cfe5cefad04d72b57b0d6a", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73888,10 +73888,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 2000 }, - "revision": "88c6baeec83b40ad8733e6c4", + "revision": "32c3a8cf0a074cb1b5f2c196", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73912,10 +73912,10 @@ "history_id": 1680571158806, "currency_id": "BRL" }, - "revision": "6721220caa6f4aee884021d9", + "revision": "c9b0666b8e2d4515adc4ea51", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73923,10 +73923,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 0983.0244.9130.1420-80 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.000,00", - "revision": "f6f91bdaba5647ffbf7f6fea", + "revision": "408bb7efb13f446db025bcdb", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73934,10 +73934,10 @@ "content": { "type": 2, "value": {}, - "revision": "8d115032a3fb4497b06a8b35", + "revision": "fc5a88d31e174112b1878d57", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73945,10 +73945,10 @@ "content": { "type": 1, "value": {}, - "revision": "8318042b1d094d8b8a9ff16b", + "revision": "c4455171861b44498f3c34d1", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73956,10 +73956,10 @@ "content": { "type": 1, "value": {}, - "revision": "eeee9225ac634041b6156245", + "revision": "803704a0fe0b419eb5f9b6ae", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73978,10 +73978,10 @@ "value": 1680978393740 } }, - "revision": "e87552eef23c46a3840c5547", + "revision": "8076b805041e4699ac786ec5", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -73998,10 +73998,10 @@ "value": 1696820400000 } }, - "revision": "b6a7be9bdc914813af472a55", + "revision": "ae74e5f6f7804142b606545b", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -74009,10 +74009,10 @@ "content": { "type": 1, "value": {}, - "revision": "e618e72e75424e03a9203e98", + "revision": "c2f5b1fe258b4370b721bf8a", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -74020,10 +74020,10 @@ "content": { "type": 1, "value": {}, - "revision": "583787ef4e1b4a259451bf80", + "revision": "5ea8f38154e840ccbb2e15e5", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -74031,10 +74031,10 @@ "content": { "type": 1, "value": {}, - "revision": "d1b9d2dfbe1f4ebd94a8064b", + "revision": "7b4777c22b9149fc8199040d", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -74045,10 +74045,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "f52c3a7e29e3428eb53c8652", + "revision": "24d4159033b74ee68d5aef27", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -74061,10 +74061,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "ed708a37c8a049fbb047529e", + "revision": "07e540080a354021aa2016fc", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -74072,10 +74072,10 @@ "content": { "type": 1, "value": {}, - "revision": "e4d52de86e344e21ad1c7cba", + "revision": "77c994137e7c45d99a71764e", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -74083,10 +74083,10 @@ "content": { "type": 1, "value": {}, - "revision": "421e5f31096849d1ab4c23a2", + "revision": "890a12219d494967ad91304a", "revision_nr": 1, - "created": 1701809344952, - "modified": 1701809344952 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -74099,10 +74099,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "abbc72cc758b4ba5893106ac", + "revision": "825628554c5e444b84a9c012", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -74110,10 +74110,10 @@ "content": { "type": 1, "value": {}, - "revision": "a8973723ae774f7bbe2cac70", + "revision": "7d62408981994763b0cf70fb", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -74121,10 +74121,10 @@ "content": { "type": 1, "value": {}, - "revision": "d781fa2a9b1e4382af1e1e65", + "revision": "84954773488e4a69a8d5c091", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036396, + "modified": 1702563036396 } }, { @@ -74132,10 +74132,10 @@ "content": { "type": 1, "value": {}, - "revision": "43c0c8e6eb214157974ba748", + "revision": "fe92422b9561457baff517cc", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74146,10 +74146,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "f876ae423c3947c88c7f9e86", + "revision": "69744e1ca18e499b8971ecc5", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74162,10 +74162,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "cf08f45f6b214c1281e6bd41", + "revision": "2f5a76b349f341749c3c1e57", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74173,10 +74173,10 @@ "content": { "type": 1, "value": {}, - "revision": "5d676f3731354d3694a857fe", + "revision": "28306e830b0b45378735cd1d", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74186,10 +74186,10 @@ "value": { "costs": {} }, - "revision": "677cbd0b0488418e90a51999", + "revision": "24681c45165340418df287d2", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74231,10 +74231,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "6f5b6c4584394d39a9490e40", + "revision": "6a3d322a629042e0b0ba9f34", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74242,10 +74242,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.700,00 para a carteira iVip 1017.8820.3938.8364-80", - "revision": "845520a894ed4b1b91473201", + "revision": "875c010f7c4848b38510d8d6", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74255,10 +74255,10 @@ "value": { "costs": {} }, - "revision": "f29893577cc144bfa5b70e78", + "revision": "8749399937314be3aa6476ae", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74300,10 +74300,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b73a7a3fae5a441383944404", + "revision": "f6b6681f3b694df4a31a6d81", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74311,10 +74311,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1017.8820.3938.8364-80", - "revision": "c87c7bae383d452089a212ad", + "revision": "f66c4cae0fbf4cf6a935f7b5", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74334,10 +74334,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "4e6eeec3b3b943c5ab01d658", + "revision": "0e28b124ceb8437a84abccf3", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74373,10 +74373,10 @@ "history_id": 1684018976722, "description": "Compra de 14.591.858,00 IVIP por 2.700,00 BRL" }, - "revision": "946fc908944a4ef68ee1334a", + "revision": "8f7863a2f15641bba3256aba", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74386,10 +74386,10 @@ "value": { "costs": {} }, - "revision": "069880364b0e4c1cbc60d2bf", + "revision": "5c12ef0b575942789ed24b84", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74421,10 +74421,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "193f692f24334e50a037a009", + "revision": "1759eb428f33467b91ac69d9", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74432,10 +74432,10 @@ "content": { "type": 5, "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "360e089cb16e4bd5b39ad154", + "revision": "8caf1bbfed96469086485870", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74445,10 +74445,10 @@ "value": { "costs": {} }, - "revision": "ad07ef5b242f4fa69aa0146a", + "revision": "c30a7a197b7a404c8cc10efc", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74480,10 +74480,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "9381c05679c4442a9ae26eb5", + "revision": "49021a6383c043cdad3738c5", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74491,10 +74491,10 @@ "content": { "type": 5, "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "8c2a5a0d62624ba19b7ef8c6", + "revision": "a250b30621be4c169ad085f1", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74504,10 +74504,10 @@ "value": { "costs": {} }, - "revision": "f939a9d56c7f409986bed389", + "revision": "baf17a5a085e4a8fa1365182", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74539,10 +74539,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "2dd99664f2094da99a2b9e91", + "revision": "599f103afc7c4f858ae215fe", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74550,10 +74550,10 @@ "content": { "type": 5, "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "939dba89c19545b682ea36e3", + "revision": "3c86bedac83b4dc1a929e100", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74563,10 +74563,10 @@ "value": { "costs": {} }, - "revision": "77c22496b8ee4579a9d20d20", + "revision": "41dc9f3b192b4f82b2bd4954", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74608,10 +74608,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "89496252af074fc2afcfc8ba", + "revision": "c9151cc340d94a4694eeed82", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74619,10 +74619,10 @@ "content": { "type": 5, "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "663d99c5fbdc466ca1cd4c7a", + "revision": "976239e599254c6e8d7c2a1a", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74632,10 +74632,10 @@ "value": { "costs": {} }, - "revision": "e4bdf69b9e2d402cb028c779", + "revision": "fa4368891a9e4bef9fc452d1", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74667,10 +74667,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "c58e2cb794754b67b5893795", + "revision": "a0caaa611ea444be88ed1233", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74678,10 +74678,10 @@ "content": { "type": 5, "value": "Saque de 14.591.858,00 IVIP para a carteira 0x896093296569F185ba0A43C44872c1701A2B81af", - "revision": "518363cfed424dd88ebf3faa", + "revision": "c7beadb96bee41c3a2e62fb8", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74689,10 +74689,10 @@ "content": { "type": 1, "value": {}, - "revision": "f0d01e1df0054b02ad1f2b56", + "revision": "b40d0d34b1064ff4bdd3e93e", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74700,10 +74700,10 @@ "content": { "type": 1, "value": {}, - "revision": "9cb24e03a55a401189e21c10", + "revision": "7775bd15b00e4e17a2c04b86", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74718,10 +74718,10 @@ "value": 1694712457445 } }, - "revision": "439b238361f347798f98c055", + "revision": "c6c399cba32849d98e9db2a6", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74738,10 +74738,10 @@ "value": 1695610800000 } }, - "revision": "551777150f5e4252976d4f09", + "revision": "f48ef389957d4e628ae5f673", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74749,10 +74749,10 @@ "content": { "type": 1, "value": {}, - "revision": "84f6e56c9afb47dab14ae45c", + "revision": "bedf7cb1d00f43bdbe79c0a0", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74760,10 +74760,10 @@ "content": { "type": 1, "value": {}, - "revision": "566eac2174a14455a38c7799", + "revision": "534715d8db5d4fd28bfdde9b", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74776,10 +74776,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "1a812915090f4bab8e68d809", + "revision": "0b72b24ab424420fbbfa4188", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74787,10 +74787,10 @@ "content": { "type": 1, "value": {}, - "revision": "ca3463529ef44a11a72e52b0", + "revision": "e02401af84964f889c291a61", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74798,10 +74798,10 @@ "content": { "type": 1, "value": {}, - "revision": "d2b025cb6064473782a2b86b", + "revision": "cb53da6ff1524213b39dc930", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74814,10 +74814,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "4f43b45273c44e66a5eab60f", + "revision": "8e8e7618b181445fa1ca7f77", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74825,10 +74825,10 @@ "content": { "type": 1, "value": {}, - "revision": "6dfadf0eb7b54e89acd9c7ef", + "revision": "f2f936af40284e449beeb33f", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74836,10 +74836,10 @@ "content": { "type": 1, "value": {}, - "revision": "83e106df6ae249958b918a37", + "revision": "c710626b587f4051b1d24d50", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74852,10 +74852,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "24f119fb3fd945d89e974f04", + "revision": "f73643ffdede4b688ead93d2", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74863,10 +74863,10 @@ "content": { "type": 1, "value": {}, - "revision": "bb879373ec86452a945de348", + "revision": "c381e36e70c5407e953df829", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74874,10 +74874,10 @@ "content": { "type": 1, "value": {}, - "revision": "913ce64213884c68af138a5b", + "revision": "f6ed2ebde6b0410f98879b4e", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74889,10 +74889,10 @@ "dateValidity": 1696096916164, "currencyType": "USD" }, - "revision": "53ec4c9ba646468989e1aee4", + "revision": "c880f8c5c68849e0ad3e086c", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74900,10 +74900,10 @@ "content": { "type": 1, "value": {}, - "revision": "b07056b8d5ba4473b22f7006", + "revision": "d90b834bbeae45e8938fcf82", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74911,10 +74911,10 @@ "content": { "type": 1, "value": {}, - "revision": "bc0fdb1a8e9a4822a8bc32d2", + "revision": "a249f2bc23554997b229920c", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74927,10 +74927,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "2922959141344b6fa6b029f6", + "revision": "615d693f0a83469ab7af515f", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74942,10 +74942,10 @@ "available": "0.00000000", "value": 0 }, - "revision": "6ff18f60d5a145e58afd8368", + "revision": "7b11d114ad9e41a3ba0b0aba", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74957,10 +74957,10 @@ "available": "0.00000000", "value": 0 }, - "revision": "04d3138fa1a448eb972c044f", + "revision": "96e9161ea8f64ab2b1af2c66", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74968,10 +74968,10 @@ "content": { "type": 1, "value": {}, - "revision": "3d7310e4bc904c9398d0cc86", + "revision": "93540398772742f3847fb57d", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -74981,10 +74981,10 @@ "value": { "costs": {} }, - "revision": "38547e1680a24be39e51c740", + "revision": "26c93b8afe054f6d9d59e769", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75026,10 +75026,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "1577edbcddea463fb21bc15d", + "revision": "2156d6f3426c4a75ae08af91", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75037,10 +75037,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 50,00 para a carteira iVip 1069.0089.6878.2698-70", - "revision": "547265388fa6449d8b54ff31", + "revision": "26bf683e05ca4ab3a4f8368e", "revision_nr": 1, - "created": 1701809344953, - "modified": 1701809344953 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75060,10 +75060,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ad9f89a06ecb47a187bd9f4e", + "revision": "9af51bb81378402abc283f95", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75099,10 +75099,10 @@ "history_id": 1684624294208, "description": "Compra de 243.536,00 IVIP por 50,00 BRL" }, - "revision": "030d2994fce24e2781c40fa3", + "revision": "efd98e94d63c475c90dd5cd9", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75112,10 +75112,10 @@ "value": { "costs": {} }, - "revision": "eceaa163849d4a26b3a6ef87", + "revision": "000497b4e64f400cb15d2f7f", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75157,10 +75157,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "99f12fd185b24943ab198359", + "revision": "ee3c2fed3ede40519ee921a7", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75168,10 +75168,10 @@ "content": { "type": 5, "value": "Saque de 243.536,00 IVIP para a carteira 0x58120E330A738FD12B195740b06B7792A5C7DD7D", - "revision": "5b7d46e1b19b4505997fb6b9", + "revision": "a39a94959d0f4aa9bb2b3600", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75179,10 +75179,10 @@ "content": { "type": 1, "value": {}, - "revision": "a16c2a81f7024bd48ac47ee6", + "revision": "405b622b2700499f8278b5ac", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75190,10 +75190,10 @@ "content": { "type": 1, "value": {}, - "revision": "c56065d903454cea990e8f73", + "revision": "3b5f446475d44e299cb31383", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75204,10 +75204,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "ccc6eaec05ef4fe689b42ec2", + "revision": "680e4a421eec43cbb99428b9", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75220,10 +75220,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "52cf8259173a486890319c26", + "revision": "e02e4f8179044d4da094773d", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75231,10 +75231,10 @@ "content": { "type": 1, "value": {}, - "revision": "5388506801e44d3c8aee129f", + "revision": "7afb7c9eaa5c43e4833e9487", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75242,10 +75242,10 @@ "content": { "type": 1, "value": {}, - "revision": "6fb512adaa734bbd8b718a29", + "revision": "2e7352dd94b04d58b1577018", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75258,10 +75258,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "039352bc55d544eaaac1ef96", + "revision": "e50214d95e9744b49a95f0fb", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75269,10 +75269,10 @@ "content": { "type": 1, "value": {}, - "revision": "c86a3f4946e14e77b048af73", + "revision": "e37c80004e144255a1cb429f", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75280,10 +75280,10 @@ "content": { "type": 1, "value": {}, - "revision": "6dae3b0b6a794bf1b82db3bc", + "revision": "0f420b3760564bdea227ef6d", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75296,10 +75296,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "6ce60d8080c348bf939cfb16", + "revision": "67d226ab1aad4fa2a933d09c", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75309,10 +75309,10 @@ "value": { "costs": {} }, - "revision": "a88abca47d2e436a8d5a3c84", + "revision": "ec4ab89aacbb4019aee3c10d", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75354,10 +75354,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "77ea2d360c1844bbbc9cc27d", + "revision": "ce3cfc38b89544bd8eb37612", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75365,10 +75365,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1100.9860.6095.8997-30", - "revision": "d33f1d2e12964d5395837fa9", + "revision": "6c67804d2d1843758493c183", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75388,10 +75388,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "bcb2c8229a8c45918bdd76f9", + "revision": "b0e9def2eb2849caa1a54c48", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75427,10 +75427,10 @@ "history_id": 1686325443110, "description": "Compra de 1.792.114,00 IVIP por 500,00 BRL" }, - "revision": "b9097396eb5b4036ad75c426", + "revision": "188f9198ca28495992a8e608", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75448,10 +75448,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "2114beabe53b4a31a43e532f", + "revision": "318782abbe6b4d7fb7cc82eb", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75459,10 +75459,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/110098606095899730/history/1690019958173", - "revision": "aff3a453bead40918ec32bd0", + "revision": "a347c06dd4594fdb94a90a0f", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75496,10 +75496,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "d1e184c4e4e34d15a5a27151", + "revision": "1e105956eb6c4fdd90800c7a", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75507,10 +75507,10 @@ "content": { "type": 5, "value": "Saque de 1.792.114,00 IVIP para a carteira 0x007E69086fF7981e3fA99368fACD516952625148", - "revision": "4beca3e7430c444fab11fd5d", + "revision": "9e06c2c7a94a4b1a8a284678", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75522,10 +75522,10 @@ "label": "Taxa de 3,00%", "amount": 53763.42 }, - "revision": "6e838cfe7e2941b49933c720", + "revision": "177576a580d5476b9f55bace", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75542,10 +75542,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "a7809e9b947e48fe9b979224", + "revision": "256404a53c5c4fd6b8f685c8", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75553,10 +75553,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/110098606095899730/history/1694046051457", - "revision": "a5b481e8a2574cb7a0d7733e", + "revision": "bb3ab5361bb44e7db9443cae", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75564,10 +75564,10 @@ "content": { "type": 2, "value": {}, - "revision": "30202abe5fbf4696a43632c4", + "revision": "ceb96445bcc94448af1e9f98", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75611,10 +75611,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "42e3d26f414e46feb0d4866c", + "revision": "56bdb37b7f5f41c0b52ae78c", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75622,10 +75622,10 @@ "content": { "type": 5, "value": "Saque de 1.738.350,58 IVIP para a carteira 0x007E69086fF7981e3fA99368fACD516952625148", - "revision": "17da3a51f65b45bea7b1dfbd", + "revision": "8ef42c3ac86142ecbb7b800e", "revision_nr": 1, - "created": 1701809344954, - "modified": 1701809344954 + "created": 1702563036397, + "modified": 1702563036397 } }, { @@ -75633,10 +75633,10 @@ "content": { "type": 1, "value": {}, - "revision": "d556edd6247a4882a740cc32", + "revision": "770aec06dbd243f6b9743028", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75644,10 +75644,10 @@ "content": { "type": 1, "value": {}, - "revision": "84e2565d77204716b8c9bac2", + "revision": "58d67a20eeab49e2863f63a0", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75658,10 +75658,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "dddc240551da47308be00d00", + "revision": "67c1a19aa6fc4c6a93ecc3b4", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75673,10 +75673,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "6bc021841f6a4c808da3a8d8", + "revision": "20b85b96e4104023a9dfc816", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75688,10 +75688,10 @@ "symbol": "IVIP", "value": 199.51 }, - "revision": "33a9fdca55234752b33ec98b", + "revision": "58e350c3883342c9b2261c71", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75699,10 +75699,10 @@ "content": { "type": 1, "value": {}, - "revision": "39eaba8528974e8eb44bed34", + "revision": "d8b8b39d1d7a4d02a4a1c411", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75719,10 +75719,10 @@ "value": 1694401200000 } }, - "revision": "d4fee56e5c794e07bc4e8dd3", + "revision": "b742366e3dd34f3791885d34", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75730,10 +75730,10 @@ "content": { "type": 1, "value": {}, - "revision": "617ff3497d6e4c72ab2cd7fa", + "revision": "7a2e0f00cb4d405abe3625de", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75743,10 +75743,10 @@ "value": { "costs": {} }, - "revision": "93be7fc56378412bba071077", + "revision": "95baf5cc53e74e0b8a13efc5", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75778,10 +75778,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "f45aa7af00f4487588c14f81", + "revision": "9bc632fa2290425d820072a3", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75789,10 +75789,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1101.2161.6136.6665-00", - "revision": "9f0c681777f641d592229a4d", + "revision": "872b36e919b449b1a372d31e", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75800,10 +75800,10 @@ "content": { "type": 1, "value": {}, - "revision": "df29c67e2f6743f89160be6c", + "revision": "8075d5a9cd4540079b1366e6", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75811,10 +75811,10 @@ "content": { "type": 1, "value": {}, - "revision": "88d6451128724444b2cb6924", + "revision": "3949fe5f6f144168bbcbdf8b", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75825,10 +75825,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "6b44ff5f20104f6f8f754794", + "revision": "a5aa9b170e0a42ed870ae6f8", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75841,10 +75841,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "25298b32e81340d3b745c3ba", + "revision": "2e3b1512b9254d64b6c0ce82", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75852,10 +75852,10 @@ "content": { "type": 1, "value": {}, - "revision": "fb862bb421064fc488cbb3b4", + "revision": "c513800541d04a2b84353a5e", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75863,10 +75863,10 @@ "content": { "type": 1, "value": {}, - "revision": "f23677f80c4f4c46a3379255", + "revision": "5ea5d7da00ae486a955d5f2f", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75879,10 +75879,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "8b3fafaccb4c40b6bc98addf", + "revision": "63f30514010f40449130ac33", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75894,10 +75894,10 @@ "value": 0.132, "available": "0.66666666" }, - "revision": "f659cf3df7be484d9078f2dc", + "revision": "aebe122f389c4e5b99d4c674", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75909,10 +75909,10 @@ "value": 0, "available": "0.00000000" }, - "revision": "37d1b1549af54933b00a8762", + "revision": "3c68213736784c90bc3a1398", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75920,10 +75920,10 @@ "content": { "type": 1, "value": {}, - "revision": "47a2793fce8c4ae5bb47df53", + "revision": "535b5d573054414e956f3687", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75943,10 +75943,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "574d3a002b7c4ccdb2e1eb83", + "revision": "1d5d89e9b4e24ee79e296ab0", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75982,10 +75982,10 @@ "history_id": 1678154662168, "description": "Compra de 1594392 IVIP por 223 BRL" }, - "revision": "11ef74f50d6148fa9add3296", + "revision": "a6f6f9a8be1d48aa823abf3f", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -75995,10 +75995,10 @@ "value": { "costs": {} }, - "revision": "f0e33b6ed97b47a08a785f5d", + "revision": "3e145034bdb4432dba97972e", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76040,10 +76040,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "37a07c7204484688be33524f", + "revision": "5e8fb7fa57ab4bbf9dcce5b7", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76051,10 +76051,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 223,00 para a carteira iVip 1105.2091.7322.8272-00", - "revision": "d143c365ae7e4209a92ada9c", + "revision": "08305411b6fb4ff18533f609", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76074,10 +76074,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "c81f597aee6e454393ee2619", + "revision": "491212c3e8c7413f910be77c", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76113,10 +76113,10 @@ "history_id": 1680547247302, "description": "Compra de 2.760.078,00 IVIP por 500,00 BRL" }, - "revision": "271a98624d5b45908e2adb75", + "revision": "b487cb4bea8a4c31b265c4a0", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76126,10 +76126,10 @@ "value": { "costs": {} }, - "revision": "4307fc46ec9f408bbd94f814", + "revision": "2b640baf92b7413d90090d8b", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76171,10 +76171,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "892e1c91cf5f4203aaed490d", + "revision": "7df6dbcf92d84ab583f53973", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76182,10 +76182,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 52,00 para a carteira iVip 1105.2091.7322.8272-00", - "revision": "7d239bc0bc4e469bbb67c094", + "revision": "6053b2c322dc481b97d08efb", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76207,10 +76207,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "5bf92066fa4b4b90aff2a43c", + "revision": "1a4086f92f00453e938d935b", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76246,10 +76246,10 @@ "currency_id": "BRL", "history_id": 1684007784160 }, - "revision": "88b7117aa05947db89919ea4", + "revision": "c4408b865ff845808b38b025", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76257,10 +76257,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 12 no valor de 51,67 BRL referente ao contrato 1680547112243", - "revision": "c3551a9addda4c51948e64b5", + "revision": "e0a5ce3b19204915a50f6268", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76270,10 +76270,10 @@ "value": { "costs": {} }, - "revision": "38a60f62be004473a97d1510", + "revision": "3af48c826df54ebea6a04517", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76315,10 +76315,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "2aed2e59b5f04bf1b7eea847", + "revision": "fc37b5d7ae3849d7b23e4f6f", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76326,10 +76326,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 52,00 para a carteira iVip 1105.2091.7322.8272-00", - "revision": "397ea6cb1a4440e289de69f0", + "revision": "49eda0876439441fa62aeb1d", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76351,10 +76351,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "1817a4418c86456aaff3930f", + "revision": "54560212a47f4f47a0ae7cb6", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76390,10 +76390,10 @@ "currency_id": "BRL", "history_id": 1685657159164 }, - "revision": "3555a9adb2394c48890c9fc4", + "revision": "ebefce3fd2d84c2a8cd2e48a", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76401,10 +76401,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 12 no valor de 51,67 BRL referente ao contrato 1680547112243", - "revision": "05ffdee20e824567ba6b86a2", + "revision": "8928a50b48bc4119b9348311", "revision_nr": 1, - "created": 1701809344955, - "modified": 1701809344955 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76426,10 +76426,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "e7271f7b39844621b300ca2c", + "revision": "f5822b39e3404d5fb57bba45", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76465,10 +76465,10 @@ "currency_id": "IVIP", "history_id": 1686939269544 }, - "revision": "033d6557db94488081c2a75a", + "revision": "7583faff401d428289315b94", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76476,10 +76476,10 @@ "content": { "type": 5, "value": "Pagamento de faturas no valor de 2.300.063,00 IVIP referente ao contrato 1680547112243", - "revision": "059f6605d6bd4d17b02e85cc", + "revision": "8b199132780240f2940aebc8", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76491,10 +76491,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "17e222b23285440ebe277698", + "revision": "620e935f92db45a7bea74724", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76502,10 +76502,10 @@ "content": { "type": 1, "value": {}, - "revision": "af6e18553ac04983999ae0e5", + "revision": "6a57c6d441f94219882f06c2", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76513,10 +76513,10 @@ "content": { "type": 2, "value": {}, - "revision": "67012022bf93479d96626713", + "revision": "7498ae1a4f0e4c40a999e4ea", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76549,10 +76549,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "abd4b68ffdb54560bd6f0bfa", + "revision": "d3daca00c1f64dc5890ac9b9", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76560,10 +76560,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "9309375c2c01408bb05b66d3", + "revision": "1eba22e60bb14aa8a28dc9e0", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76573,10 +76573,10 @@ "value": { "costs": {} }, - "revision": "5f7b988e603e4c21887f03d1", + "revision": "a129e096eb6b4e52ba1cf3bd", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76618,10 +76618,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "2cbb733d445041568b5fc2bf", + "revision": "7d2c6c26447942eaa6460120", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76629,10 +76629,10 @@ "content": { "type": 5, "value": "Saque de 2.054.407,00 IVIP para a carteira 0x660cf406B5942C1cfAb19D31EAe648D68fAb56bF", - "revision": "3fdd4872dfff475aba5234f4", + "revision": "292df700f0304487ab7e4ffc", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76640,10 +76640,10 @@ "content": { "type": 1, "value": {}, - "revision": "6be2580c24ef4ce4b9bf15e5", + "revision": "d1abf17df38a49639e7f5bd3", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76655,10 +76655,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "472741177f4f4502bd782fc6", + "revision": "bd84a6462fab4999a93834b1", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76680,10 +76680,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "0c2382137fff4fec91deb6b7", + "revision": "853bccba1e574f7a87e6c0ed", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76691,10 +76691,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "d6822f84b1e54ab9a5592116", + "revision": "f8b8d1ac10e44480b29aa8bb", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76702,10 +76702,10 @@ "content": { "type": 2, "value": {}, - "revision": "92e9da38772a4998842b038e", + "revision": "d725cf050baf4fc9881697cb", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76713,10 +76713,10 @@ "content": { "type": 1, "value": {}, - "revision": "0fa58ab29a9d42f2afabfe7b", + "revision": "0f39f2a6369947f1a29289b8", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036398, + "modified": 1702563036398 } }, { @@ -76728,10 +76728,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "d118f872d642413f8f1be164", + "revision": "606002db71a44dd19cccfe53", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76753,10 +76753,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "eb10d6515bd041b38c9e0538", + "revision": "9362b4065955481e906aaa69", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76764,10 +76764,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "a0cb2ecc10ac4969bfb6cc6f", + "revision": "43b005880fb9483eb7414927", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76775,10 +76775,10 @@ "content": { "type": 2, "value": {}, - "revision": "571ff8c9c9cb444a867a5210", + "revision": "f0bfb0f8324544c3a139ed85", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76786,10 +76786,10 @@ "content": { "type": 1, "value": {}, - "revision": "f71930b769e6462792b745b7", + "revision": "b4b80a9669b0414e907205c4", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76801,10 +76801,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "d5f61114fdc84d2592e5ed99", + "revision": "190455259d584511b90ba6af", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76826,10 +76826,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "48b3a01ef7234ec389ae40f8", + "revision": "6f96a9d3dc3e44ee89e180ce", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76837,10 +76837,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "e9b5f2a573d940e1af625476", + "revision": "6a5d9f8cdfac45b7895a701b", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76848,10 +76848,10 @@ "content": { "type": 2, "value": {}, - "revision": "98d6cc9514684d848b8c57cb", + "revision": "5c804df0e2644569acda128a", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76859,10 +76859,10 @@ "content": { "type": 1, "value": {}, - "revision": "8912b24c520a4a1a9a7b7f23", + "revision": "1e16e2da541542c0ab64efaa", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76874,10 +76874,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "a3958c45e1d94297a160eef2", + "revision": "6d50354c0c5b408a96dbd960", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76899,10 +76899,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "41c90a018b554a6c84e3e213", + "revision": "4082016585374e459eadd776", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76910,10 +76910,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "71fc2e7312974d508b2c3796", + "revision": "33adc48ebd884a8db6bcba5e", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76921,10 +76921,10 @@ "content": { "type": 2, "value": {}, - "revision": "c2025856fc8246918cfdb329", + "revision": "aee7ebc51835423981c551c6", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76932,10 +76932,10 @@ "content": { "type": 1, "value": {}, - "revision": "50570a15f7244e26925cc04b", + "revision": "30135f4c06f344618dc7ac5e", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76947,10 +76947,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "43aced83c4ec4955afea97dc", + "revision": "36f513eeda91481a87457879", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76972,10 +76972,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "a51325decc534ac48459eaf6", + "revision": "ed7da9c4595842c1a82503c4", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76983,10 +76983,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "1f1734a3f7174340b51e2899", + "revision": "ebc3aa6ba68b4365b4e827cf", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -76994,10 +76994,10 @@ "content": { "type": 2, "value": {}, - "revision": "72787477b6a04abfa96816d6", + "revision": "00460171d1ec4462b3c69423", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77005,10 +77005,10 @@ "content": { "type": 1, "value": {}, - "revision": "2d5bba6669604aa7800d3109", + "revision": "52b334fd0cdb45949b6b2a52", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77020,10 +77020,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "14f8189c705345bda1b565a5", + "revision": "5261971b4c6643cbb2c875bb", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77045,10 +77045,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "0a0b43cbb7be4551abfd4478", + "revision": "c88b50f7bd274535afd1a452", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77056,10 +77056,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "ccdbd139dd6d4aa3b461aeba", + "revision": "c07d2fa16bd746659827c136", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77067,10 +77067,10 @@ "content": { "type": 2, "value": {}, - "revision": "c84b6aa0fd9b499b85901619", + "revision": "c71551643648405a8a971a60", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77078,10 +77078,10 @@ "content": { "type": 1, "value": {}, - "revision": "91a5fb1c177849f5b81b13b0", + "revision": "77574d09013045e992422802", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77093,10 +77093,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "35f0caa160db47b5a0f68f6d", + "revision": "0e9c859318644b64a944401f", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77118,10 +77118,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "e2ed9622a91d4de0b903ed64", + "revision": "aa6faffa142847f48f2b0c87", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77129,10 +77129,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "28d49683ced04eddbf1bd280", + "revision": "2271058f942047ff8e9bef1e", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77140,10 +77140,10 @@ "content": { "type": 2, "value": {}, - "revision": "caa4af7768464d26b22b3fa3", + "revision": "e013305cd2d9481dad261b57", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77151,10 +77151,10 @@ "content": { "type": 1, "value": {}, - "revision": "bf800f3d886d47d0955554e1", + "revision": "3d473b629dcb4334be58ffda", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77166,10 +77166,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "9ae4e115d0724fdca195372d", + "revision": "60ac613380dc4a1eae8dbeb0", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77191,10 +77191,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "fecbbb34055f427ab3a9f7ca", + "revision": "c15fe89e899c48ecbf2996e7", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77202,10 +77202,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "be678f232c27453ea198833f", + "revision": "c9f84c0d53ef4cecbe741c8c", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77213,10 +77213,10 @@ "content": { "type": 2, "value": {}, - "revision": "4caa1aabdec84c47861b862c", + "revision": "58b0fa782006413ab5a17704", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77224,10 +77224,10 @@ "content": { "type": 1, "value": {}, - "revision": "dd7cb3ebf8074f7e9bfb7d02", + "revision": "344c2415209b4663b9bf4430", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77239,10 +77239,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "f14c36ae35d140a5977cac31", + "revision": "b82f7ce38e874bddb5644c79", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77264,10 +77264,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "7d45de6d95aa463d925f2342", + "revision": "38322f290e7c4228a4f75b1e", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77275,10 +77275,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "017ff424337048d892912083", + "revision": "a95af3234aae44cd8dcf231b", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77286,10 +77286,10 @@ "content": { "type": 2, "value": {}, - "revision": "7b15c670a01b43b9a44d9d1c", + "revision": "5330005bb48949a6b87707e3", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77297,10 +77297,10 @@ "content": { "type": 1, "value": {}, - "revision": "bfc680abbe1f4a14b3881702", + "revision": "d736160c1ccc416188766c6d", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77312,10 +77312,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "96777cf53ee14485aa28676f", + "revision": "c373519a0c1345f588525ff2", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77337,10 +77337,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "f00df1f6355143ba91ebbbf4", + "revision": "4d5e0ab8126544b48a1f01be", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77348,10 +77348,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "1e8f3f309e894de4862a21ff", + "revision": "c9cec1ecea83465e9fbe93c2", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77359,10 +77359,10 @@ "content": { "type": 2, "value": {}, - "revision": "dda1df57f5414881add062ba", + "revision": "f49765dd4ad6469a90d0f119", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77370,10 +77370,10 @@ "content": { "type": 1, "value": {}, - "revision": "3cdc839a16ff42198ead54d6", + "revision": "64ad9dce9a5645ae8e1e4340", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77385,10 +77385,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "9edfd1fe1a25452c8462a9be", + "revision": "49b6a18d3c3a424c9818b7fb", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77410,10 +77410,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "bc085e0bb5314f9f9d7ac4fc", + "revision": "28b8d3897f18483c82770ac7", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77421,10 +77421,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "e422d58ad1974e069bf9b983", + "revision": "54e6fd28109c43a3b49e1834", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77432,10 +77432,10 @@ "content": { "type": 2, "value": {}, - "revision": "82f52b92fbe04bb38c549345", + "revision": "0c1f5685a3a84f4499ef6600", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77443,10 +77443,10 @@ "content": { "type": 1, "value": {}, - "revision": "1678da6f8e2942ef84b44781", + "revision": "8449b1b3aed9408899b6d8e4", "revision_nr": 1, - "created": 1701809344956, - "modified": 1701809344956 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77458,10 +77458,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 120 }, - "revision": "2feff9d54a69480f9517743a", + "revision": "867e274d3cb94873a258580b", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77483,10 +77483,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "ae7fb3ab26ad4c3ebe7aab97", + "revision": "858b4e67d4ae436584ad1fb7", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77494,10 +77494,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1105.2091.7322.8272-00 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 620,00", - "revision": "815d5f6407cb4b0095bbedda", + "revision": "0a502524f3e44cafa33d806c", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77505,10 +77505,10 @@ "content": { "type": 2, "value": {}, - "revision": "c9e4ed0a42f0428a9c88557f", + "revision": "61d756406b444e52a93233fb", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77516,10 +77516,10 @@ "content": { "type": 1, "value": {}, - "revision": "bea75aedf5794c9da117658f", + "revision": "fbf9d7cdd3f6431ab1e38def", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77527,10 +77527,10 @@ "content": { "type": 1, "value": {}, - "revision": "75659672a59d4cc392e9ac29", + "revision": "fce3154dc1014a20b8038bcb", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77549,10 +77549,10 @@ "value": 1679261067910 } }, - "revision": "b8b01174378145e8bc98626b", + "revision": "e55afbb1a70a4b1796fd256f", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77565,10 +77565,10 @@ "totalValue": 0.13, "currencyType": "USD" }, - "revision": "97ffbcc202b94977b5fb8791", + "revision": "e9832704bd154e9e8c49414d", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77580,10 +77580,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "3832eeac88404493abdb6ede", + "revision": "97ac6652101f405fa632a084", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77595,10 +77595,10 @@ "symbol": "IVIP", "value": 0 }, - "revision": "1d5e50fd2a2a49398820ce12", + "revision": "69ff169a476d4e67aaecdd50", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77606,10 +77606,10 @@ "content": { "type": 1, "value": {}, - "revision": "f154721ee0b64e0680dd0278", + "revision": "f168bcfb7ead4f34ad65f55d", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77619,10 +77619,10 @@ "value": { "costs": {} }, - "revision": "f334a24987fc411480b767c1", + "revision": "fe3cf3c22dee40068205c25e", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77654,10 +77654,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "2571b7f4d93449b08b851cf2", + "revision": "b2c0127ea534462fbb848d5b", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77665,10 +77665,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "c5a541d7eb364e75a583c606", + "revision": "ecf8693c997a4591aa5a55fe", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77678,10 +77678,10 @@ "value": { "costs": {} }, - "revision": "f436e08a98464f8580ca31fd", + "revision": "7890b67b8cd443409f084a05", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77713,10 +77713,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "3c76cc986e5941e1806f1210", + "revision": "a653072ba90b4a6eb8455215", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77724,10 +77724,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "79dcf09ab91d41648e449560", + "revision": "2eb5f981e62f4d68b634ecca", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77737,10 +77737,10 @@ "value": { "costs": {} }, - "revision": "3bc36ba10b244a1795d47b85", + "revision": "cef53a428db94100afe0b2d8", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77782,10 +77782,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d175e8e5fc1b47648e885610", + "revision": "600bb9cd63e6494a8d8fb6dd", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77793,10 +77793,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "637a7fbbd66649df8ba7a2d2", + "revision": "6f37a01184eb4c9d82a84bfa", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77816,10 +77816,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "6c433d53fb684eac866ee281", + "revision": "82217fc5a9da498b8c149428", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77855,10 +77855,10 @@ "history_id": 1684667280508, "description": "Compra de 487.073,00 IVIP por 100,00 BRL" }, - "revision": "1458748703ce4c4cae647b8d", + "revision": "a5c7bad9aae248c699ecfc1e", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77868,10 +77868,10 @@ "value": { "costs": {} }, - "revision": "4b3b57e160c6488f98eccea2", + "revision": "cf8a485522464ff4b48ad915", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77913,10 +77913,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "40efb9c2ac0e47ab84c85576", + "revision": "fb427fa5a72242288538e52a", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77924,10 +77924,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 120,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "4611adec536543edac561a24", + "revision": "51e64f18582e4c75a763c5ab", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77937,10 +77937,10 @@ "value": { "costs": {} }, - "revision": "6016f0646b784520b40b4c95", + "revision": "18bf53366f1e4071abec006f", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77982,10 +77982,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "129ac28971c247a9a5bbb85e", + "revision": "f84655eac6384b00825524f0", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -77993,10 +77993,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.410,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "48b814b2db9d45bdb6d64c19", + "revision": "22dd3e4572d44a3f8c3de3cc", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036401, + "modified": 1702563036401 } }, { @@ -78016,10 +78016,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "75c5d14b39874218a8569b21", + "revision": "c088836869c1467c9c4a5438", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78055,10 +78055,10 @@ "history_id": 1685730135668, "description": "Compra de 5.206.344,00 IVIP por 1.530,00 BRL" }, - "revision": "93975b4dceb246f48e672895", + "revision": "29d3eaf3893b487baaaaa351", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78068,10 +78068,10 @@ "value": { "costs": {} }, - "revision": "7d0984d436434cabad19d4ab", + "revision": "24a5019432cf40a9a1eeb432", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78113,10 +78113,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "fa1a8c8b9cae49e0a817083e", + "revision": "f36332dc76784b2d9e78496b", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78124,10 +78124,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1115.9744.4051.0128-00", - "revision": "a653fd72db7e4a98b00ea8c1", + "revision": "43e7f15f619a4dc6b049f4e3", "revision_nr": 1, - "created": 1701809344957, - "modified": 1701809344957 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78147,10 +78147,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ba4fa005cb944f6bb8536274", + "revision": "dd90cbabaf26461fac8b8e86", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78186,10 +78186,10 @@ "history_id": 1686792689847, "description": "Compra de 637.246,00 IVIP por 100,00 BRL" }, - "revision": "9954ace40d214660b6f0fc42", + "revision": "e128606e694341b0a4723110", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78209,10 +78209,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "f041830dfe374abf85bbae55", + "revision": "986b79fc9e7b42eea53fc97e", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78246,10 +78246,10 @@ "currency_id": "IVIP", "history_id": 1688230681708 }, - "revision": "3da888644e064bacbd293c60", + "revision": "835cefc9d496404985f9767b", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78257,10 +78257,10 @@ "content": { "type": 5, "value": "Investimento de 5.832.008,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 7/1/2025", - "revision": "b637f428e3c049f0b335b7f5", + "revision": "fe5697a022264b2dba7ecf9e", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78278,10 +78278,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "947141e6738042e0803a93b2", + "revision": "2310d58c7ecb4a35a550dd81", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78289,10 +78289,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/111597444051012800/history/1690233382656", - "revision": "48549fe74e4e49099f39e03b", + "revision": "5a499a67361a4783a99910d6", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78336,10 +78336,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "aa9ea2d3e4ac4e5496ba8010", + "revision": "204e15d4c4bb4f84970c76ee", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78347,10 +78347,10 @@ "content": { "type": 5, "value": "Saque de 498.655,00 IVIP para a carteira 0x31608012D8205A2BE2AaDBE2c528d75de71a36E8", - "revision": "6bbd54eea3b44b769ea34de6", + "revision": "64156948b0734872be81b245", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78358,10 +78358,10 @@ "content": { "type": 1, "value": {}, - "revision": "dd41e7f387fb4447bfc2586e", + "revision": "aa3a4ebe92f1487f87bd6d64", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78369,10 +78369,10 @@ "content": { "type": 1, "value": {}, - "revision": "706b59d19fa74b5b8b92beb9", + "revision": "716ed93fe1d140da8fa9f1e5", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78383,10 +78383,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "dae4b9c5a7bf43cc96e22f65", + "revision": "6d65a3cac14441cd8dd466c6", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78400,10 +78400,10 @@ "currencyType": "USD", "balancesModificacao": 1691060735628 }, - "revision": "f2a535e21cb5405cbf3b61c4", + "revision": "00eeb87fb04447c5a6f09d52", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78411,10 +78411,10 @@ "content": { "type": 1, "value": {}, - "revision": "173ef9b6f32a47e8a9aa0ec8", + "revision": "8f529e7dc0334ad2b363b9a7", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78422,10 +78422,10 @@ "content": { "type": 1, "value": {}, - "revision": "9500b343827f4937ace3ee6a", + "revision": "60552d1c13914e378b4b3c65", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78438,10 +78438,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "4331a294380e4025b30c619f", + "revision": "0456f10ed0b64f629d5c6bfd", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78449,10 +78449,10 @@ "content": { "type": 1, "value": {}, - "revision": "d8068a1077c84e4895d02337", + "revision": "a31304b989e8496083d084db", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78460,10 +78460,10 @@ "content": { "type": 1, "value": {}, - "revision": "ce1285f1b1d34116a8ca1330", + "revision": "37c67d1bd8044f2dae0aec5c", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78476,10 +78476,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "851c6d6efd694f48978496c9", + "revision": "270e3010eb5e4212b81518d2", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78491,10 +78491,10 @@ "symbol": "IVIP", "value": 612.41 }, - "revision": "be1aa99e6a2e425b9d86c405", + "revision": "189698b4ebc445d78c136713", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78502,10 +78502,10 @@ "content": { "type": 1, "value": {}, - "revision": "b9505c4f4253468997d10ef8", + "revision": "de63c2abe8774e9f9bbd3ffc", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78515,10 +78515,10 @@ "value": { "costs": {} }, - "revision": "470ec7585fad4d0d80a90249", + "revision": "1d0bcb9a9dd840a08adb85e3", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78560,10 +78560,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "46aa6c0ae5214ea29241ff81", + "revision": "3b8dcf26d22f47728b9c9fd7", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78571,10 +78571,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 1127.2038.0478.0658-70", - "revision": "bd87c03de4a145ba9f46668c", + "revision": "e8462c18bd8c4c458c979a96", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78594,10 +78594,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "0347e4b68f8a42ae8d51d888", + "revision": "199eda642c4243b88adb545f", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78633,10 +78633,10 @@ "history_id": 1678154526038, "description": "Compra de 11445515 IVIP por 1600 BRL" }, - "revision": "a1ebe43bef5947248f6ddecf", + "revision": "189f6fe5fd1342ae93caa78e", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78646,10 +78646,10 @@ "value": { "costs": {} }, - "revision": "fa273adb8a8c4c5cb7d2e279", + "revision": "42007937c3354df0bdd91aa1", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78681,10 +78681,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "a3ed93a673694029921d4adf", + "revision": "c3bb4b3744a7422abff018e8", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78692,10 +78692,10 @@ "content": { "type": 5, "value": "Saque de 1.766.725,00 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", - "revision": "b666edf931904641bcbeb690", + "revision": "33a46c85de7942ffb052afb3", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78713,10 +78713,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ae6736096b75476b81483988", + "revision": "27c87c042ffb479f9982c3a9", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78724,10 +78724,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1690310464254", - "revision": "f28a23b2cb5442ab9f3f55e6", + "revision": "5e30e4d9a2be4806bf66da44", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78771,10 +78771,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "2cc9795b7c164acd8d481772", + "revision": "cfc0f06887d04baab567a775", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78782,10 +78782,10 @@ "content": { "type": 5, "value": "Saque de 1.000,00 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", - "revision": "15735225d64e4c778b9ebbc0", + "revision": "024fe0711aab4b1aa0a39095", "revision_nr": 1, - "created": 1701809344958, - "modified": 1701809344958 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78797,10 +78797,10 @@ "label": "Taxa de 3,00%", "amount": 171682.74 }, - "revision": "181efe0f279f4820a7edb1ea", + "revision": "670208a0f70342d7911bb8b0", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78817,10 +78817,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "08f4b968f519488681b866e4", + "revision": "a7141991ef504b258b2f7670", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78828,10 +78828,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1695843073185", - "revision": "222eb59e277c4f2596c76fe0", + "revision": "3b3c8faefba94d39a3a6c9df", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78839,10 +78839,10 @@ "content": { "type": 2, "value": {}, - "revision": "aafbb0e26b4a49e1b92e07fa", + "revision": "31f6c84d215e490fa749fcae", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78883,10 +78883,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "c3373d85c4764738ab166920", + "revision": "130d7bc13721496db84bfc9a", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78894,10 +78894,10 @@ "content": { "type": 5, "value": "Saque de 5.551.075,26 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", - "revision": "6f74152da73248b58de10335", + "revision": "c97dc5e88c344b788b4d5150", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78909,10 +78909,10 @@ "label": "Taxa de 3,00%", "amount": 171682.74 }, - "revision": "535dedc457644b5aa49544af", + "revision": "ad2b753c8e934e079db48a08", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78929,10 +78929,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "a30d5c4722ce484688381df5", + "revision": "94f0216d3f50419f831497a0", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78940,10 +78940,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/112720380478065870/history/1695843125867", - "revision": "0e013900635043848a605d11", + "revision": "021fb06b87d14388aba02478", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78951,10 +78951,10 @@ "content": { "type": 2, "value": {}, - "revision": "1f467d96edfd4d8295f95ac9", + "revision": "db6b68747c024b7d9e4e2a9a", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -78999,10 +78999,10 @@ "money_release_status": "drawee", "wasDebited": true }, - "revision": "98b8ec3d7b1f4e08996be7fc", + "revision": "395f5347e78049ee9cea4808", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79010,10 +79010,10 @@ "content": { "type": 5, "value": "Saque de 5.551.075,26 IVIP para a carteira 0xc52d73B9780E3ae48eb8Bd1D4dF651F4a3f2adeb", - "revision": "2a66690dd5d143239653cb95", + "revision": "6643ba128c2341889f15bbde", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79021,10 +79021,10 @@ "content": { "type": 1, "value": {}, - "revision": "beb1e6d5582f4a62b09caa08", + "revision": "076653d0227047c7a23ddca8", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79032,10 +79032,10 @@ "content": { "type": 1, "value": {}, - "revision": "80fb7eacef0842d18baae6af", + "revision": "059291f0024d4bd3b2bae3ed", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79046,10 +79046,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "e868ad18142646dca9f61fea", + "revision": "a0a91c2f0c634a5694d8fe9e", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79066,10 +79066,10 @@ "value": 1697425200000 } }, - "revision": "4cd5806366d84c17a6a387b6", + "revision": "d2b6c347573741189abb5899", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79077,10 +79077,10 @@ "content": { "type": 1, "value": {}, - "revision": "d1c8fb326f204b43b4c28659", + "revision": "e573ec2f8d6f4b4682b11961", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79088,10 +79088,10 @@ "content": { "type": 1, "value": {}, - "revision": "4f2a8fcdc0ff4b76aee5ef73", + "revision": "2a9c3de1bf97472b9f1783e6", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79099,10 +79099,10 @@ "content": { "type": 1, "value": {}, - "revision": "5cd277ec124c4c1a9562921c", + "revision": "a5060c5d94934437a59578d2", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79113,10 +79113,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "d54ac4e2822d4f928c3dc3fc", + "revision": "122571d14fdc421f9db2aba2", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79129,10 +79129,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "e6754f452b254da88343c156", + "revision": "618c90419bb0467a81485c44", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79140,10 +79140,10 @@ "content": { "type": 1, "value": {}, - "revision": "2ced71d3787d427990563dfe", + "revision": "140767def9484f8a960486ff", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79155,10 +79155,10 @@ "value": 329390, "available": "1000.00000000" }, - "revision": "d5d5b4c94761402e8928a8e3", + "revision": "d90cfa6228484fcd93680fcc", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79170,10 +79170,10 @@ "value": 24969.54, "available": "1.00000000" }, - "revision": "253be85c862a4642b54187ac", + "revision": "737d59ffcd5f4a4981bf6a26", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79185,10 +79185,10 @@ "value": 10000, "available": "10000.00000000" }, - "revision": "6416deaeff054eb3a9c81a3b", + "revision": "904a4e5bbe924a93a2291825", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79200,10 +79200,10 @@ "value": 168116, "available": "100.00000000" }, - "revision": "f7a8ac28546b44988dc56a90", + "revision": "8373a0e6dbd348a998605ecb", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79215,10 +79215,10 @@ "value": 39525, "available": "500.00000000" }, - "revision": "7b1fec68018844d5b5e706d6", + "revision": "acc41de20e90465ca3c91667", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79230,10 +79230,10 @@ "value": 32965, "available": "500000.00000000" }, - "revision": "bd6f7a9bb7d3476092b4ab08", + "revision": "e12d201b27d84b92bca2feea", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79245,10 +79245,10 @@ "value": 10020, "available": "10000.00000000" }, - "revision": "b8a9ca2d5c3b408689fc6320", + "revision": "176fb095cafa429ea95970b4", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79260,10 +79260,10 @@ "value": 18315, "available": "50000.00000000" }, - "revision": "e12f6d84d5b94efe9a961bbd", + "revision": "a8d2eddf1bad4926bda5a5e2", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79271,10 +79271,10 @@ "content": { "type": 1, "value": {}, - "revision": "bb9beebc01714451901d97de", + "revision": "7d553098cc7447e89005c185", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79287,10 +79287,10 @@ "totalValue": 633300.54, "currencyType": "USD" }, - "revision": "282221995b8e4ccbabf0138b", + "revision": "873d5fab771640afb63d6ff1", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79298,10 +79298,10 @@ "content": { "type": 1, "value": {}, - "revision": "d39b55a62ff7432784a68eaf", + "revision": "9003ba6a4d5e47289f8600c6", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79309,10 +79309,10 @@ "content": { "type": 1, "value": {}, - "revision": "da8952190a5142858d63b589", + "revision": "e2042705464149d0906a2503", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79325,10 +79325,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "d24f3184c61f4a74b24c56c1", + "revision": "4128e75c73b84b549fcb1bea", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79336,10 +79336,10 @@ "content": { "type": 1, "value": {}, - "revision": "6144e495c20f47aba2bffbdd", + "revision": "3c9b208ddd664118956fe183", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79347,10 +79347,10 @@ "content": { "type": 1, "value": {}, - "revision": "eefb94bce8fc45288562a23d", + "revision": "20cd6a1afaff49f38ef1920d", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79363,10 +79363,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "910242f9c26640b681deb157", + "revision": "5c6ff8b214f740a4997f8f1b", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79374,10 +79374,10 @@ "content": { "type": 1, "value": {}, - "revision": "e9b64ddc1626432680a5af41", + "revision": "5a9da48c980f48de97741037", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79385,10 +79385,10 @@ "content": { "type": 1, "value": {}, - "revision": "bfb1a705b54542a7bc3028e9", + "revision": "a111e97bbef641aaa4c08b7e", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79401,10 +79401,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "fc4f1553274c4028bae2cb22", + "revision": "9f928f90673a47658b2c02a3", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79416,10 +79416,10 @@ "symbol": "IVIP", "value": 106.42 }, - "revision": "ffa7da270f394fff957dc7fe", + "revision": "35b8c5bb954242feb8e9eaf5", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79427,10 +79427,10 @@ "content": { "type": 1, "value": {}, - "revision": "6dc1febe929549778bd57d41", + "revision": "18b8b7646688404286f55830", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036402, + "modified": 1702563036402 } }, { @@ -79440,10 +79440,10 @@ "value": { "costs": {} }, - "revision": "eca79810916c46c68e4b532b", + "revision": "28497cda1e5145888c85f07c", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79485,10 +79485,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b1bc5bde8af2433d8e148166", + "revision": "28a5748c6b154bd5a800b9eb", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79496,10 +79496,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1154.3638.5305.7469-60", - "revision": "1e48ab9b2570403db1aa75d8", + "revision": "989f2271a22142549a40c5a6", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79519,10 +79519,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "d2359150d64840da9bc3f469", + "revision": "91c7f9950f3a412496e2695c", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79558,10 +79558,10 @@ "history_id": 1689260591470, "description": "Compra de 593.666,00 IVIP por 1.500,00 BRL" }, - "revision": "46da92493a2445148a8b1830", + "revision": "6dc1e2d0e37a40348ac75b81", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79575,10 +79575,10 @@ "value": 1692464251151 } }, - "revision": "bb299ffab35a4a30bd5e519f", + "revision": "f74a26cffcf5443ba34d2f7e", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79596,10 +79596,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c30f00eb096c4df58daf8e4a", + "revision": "cde90d90176e40a09e9a6435", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79607,10 +79607,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/extract/115436385305746960/order/1689872251151", - "revision": "22885ff55e8843d8ae7c8965", + "revision": "dda311f6116d4d4e96fdee3f", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79640,10 +79640,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "dae760a65ff64e01bfaeb49e", + "revision": "56396a8146ec42349b13342a", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79651,10 +79651,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 650,00 para a carteira iVip 1154.3638.5305.7469-60", - "revision": "27ba7c1df1644dff89fc9a61", + "revision": "3d82de9307e14e73b537e4c5", "revision_nr": 1, - "created": 1701809344959, - "modified": 1701809344959 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79668,10 +79668,10 @@ "value": 1692903106238 } }, - "revision": "139b5eb33ebc40d6965ae618", + "revision": "2338fd54837f4a9eaec9c792", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79689,10 +79689,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1c9da289476144ad8befa13b", + "revision": "cffe15b2f8d14ab8948a9bb5", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79700,10 +79700,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1690311106238", - "revision": "863426e36ced4d9e8f8e1d88", + "revision": "2b94bb02bdf7414a8c3756ea", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79743,10 +79743,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9190cb9e634b41c384e5cc6d", + "revision": "f3f7df03527b4531a007bb31", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79754,10 +79754,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 650,00 para a carteira iVip 1154.3638.5305.7469-60", - "revision": "578ed9474ff24349a393cbc5", + "revision": "39cf63cb0f144ec2adae3050", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79777,10 +79777,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "3921cdc5786c49e1be9ef1b8", + "revision": "8fba9022a9f2457a9486c4de", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79816,10 +79816,10 @@ "history_id": 1690311787862, "description": "Compra de 526.109,00 IVIP por 650,00 BRL" }, - "revision": "4ecdf1fdc9424eb5b6ef07a7", + "revision": "a9bcdf62253a4af0bca7baa1", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79837,10 +79837,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a40877d1f6a54c97a9540f8c", + "revision": "aa4987a05ed944958db89a91", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79848,10 +79848,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691353182696", - "revision": "5e3ac4838c8147e4acc069a3", + "revision": "2947cb7df3284f61b5c8da95", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79885,10 +79885,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "123471ffba8e4e109269ee28", + "revision": "ee4c0b72b0064505958c280f", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79896,10 +79896,10 @@ "content": { "type": 5, "value": "Investimento de 1.119.775,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/6/2023", - "revision": "4f2a93fde4134a65aaa04560", + "revision": "7c084c491ef64fe39fc94261", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79913,10 +79913,10 @@ "value": 1694348197423 } }, - "revision": "54eecb6859b0481ab72edb90", + "revision": "14e724e265854492abba100a", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79934,10 +79934,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "fe8f18a501184acb9986ed49", + "revision": "9ccd2b246edd492dbc85a9fc", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79945,10 +79945,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691756197423", - "revision": "fad807076c56458e9959a566", + "revision": "bbb1a82ed7594702a5745deb", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79988,10 +79988,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "502377fab90542a9a7f5053a", + "revision": "bb8bd44af89d414fad2aea5f", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -79999,10 +79999,10 @@ "content": { "type": 5, "value": "Deposito de um valor 500,00 para a carteira iVip 1154.3638.5305.7469-60", - "revision": "8135fd8e255c436a8c2bb441", + "revision": "c218e9124236421ca0245a89", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80020,10 +80020,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4e8958279a8c4d6fb33b2cc9", + "revision": "712860bdf23a45bbafae13ec", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80031,10 +80031,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1691761354889", - "revision": "e1a56fe1ff3c4b838ee927bd", + "revision": "3efbbecc26cc4d56a0798413", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80069,10 +80069,10 @@ "description": "Compra de 917.399,00 IVIP por 500,00 BRL", "status_detail": "accredited" }, - "revision": "ac75f846f8164b60a65831f8", + "revision": "ec11a6513cf64831bd7efb0f", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80090,10 +80090,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "13113423679a4e87b73052b5", + "revision": "ccbf710ed66e4955bb884c19", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80101,10 +80101,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1694032195852", - "revision": "30d6529bd545488193930726", + "revision": "9c013345f2374b9083cbab81", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80138,10 +80138,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ec9f5b5c2c834285849196c5", + "revision": "a4307e2f32714ab6b4729e21", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80149,10 +80149,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 1.119.775,00 IVIP com um rendimento de +22.395,5 IVIP (2,00%) - Y12XDT27", - "revision": "cfe86b5bc124418484397190", + "revision": "5b67dc5a28374ff09981eedd", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80170,10 +80170,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "08bc0f57c3c141a2918373cc", + "revision": "0ce82f143eff42b0b5df3fa1", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80181,10 +80181,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1694041733454", - "revision": "0c674ce56fee4ca0924e0a94", + "revision": "e99225ad85884e7fbd095a5d", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80218,10 +80218,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "92e2bf8e46954bdf8ba136fc", + "revision": "30c927e27acc4ddd907fac69", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80229,10 +80229,10 @@ "content": { "type": 5, "value": "Investimento de 2.059.569,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/10/2023 - Y12XDT27", - "revision": "c922d6dbccc6409bada71af0", + "revision": "0bb1d4d4fc5d4cad87757ef7", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80250,10 +80250,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "55bf3270034b47718f1f2ba6", + "revision": "0fc69a15a17c4973b82b20a5", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80261,10 +80261,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1696633733454", - "revision": "0ae302487aa5475a88bb96b8", + "revision": "83a193b3b3ff4ac9bd83912c", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80299,10 +80299,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "45c98cee3feb4cd78f9447df", + "revision": "d8b624e8f9c14a5e841805de", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80310,10 +80310,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 2.059.569,00 IVIP com um rendimento de +41.191,38 IVIP (2,00%) - Y12XDT27", - "revision": "03d1ac00173a4a1d9416fd73", + "revision": "0c84c982f59e45e18054563c", "revision_nr": 1, - "created": 1701809344960, - "modified": 1701809344960 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80331,10 +80331,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4cfa4a752de14dff93eccbe8", + "revision": "0c9b82b0458842c8a5e6ec93", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80342,10 +80342,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1696668184975", - "revision": "2ab8fc58d2f142d9b3ef05d5", + "revision": "6e095ace90fa4d4cba256d68", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80380,10 +80380,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ad71ba19554a4f5b8f64f160", + "revision": "6d5e6692297042df901c1dd3", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80391,10 +80391,10 @@ "content": { "type": 5, "value": "Investimento de 1.100.760,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 07/11/2023 - Y12XDT27", - "revision": "e8b607244e404abaaa58f147", + "revision": "0ee6c89e555f4d1f98598e83", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80408,10 +80408,10 @@ "value": 1699795525577 } }, - "revision": "f471d9655ada46609d6a2813", + "revision": "87240d32774d4fff98989e68", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80429,10 +80429,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "30f0c937a07e46ea90acff06", + "revision": "6c17fbbdbb344fa59ea0b77e", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80440,10 +80440,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1697203525578", - "revision": "7b8bba794cba497d86b0f83e", + "revision": "2bd2d2997cac4879bc98820b", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80484,10 +80484,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c254423829ed485f8544af36", + "revision": "d330636104ec4d63aa573cab", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80495,10 +80495,10 @@ "content": { "type": 5, "value": "Deposito de um valor 1.600,00 BRL para a carteira iVip 1154.3638.5305.7469-60", - "revision": "5fe840c524a24edeb2d934e4", + "revision": "b2faa285176344efaf2129b1", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80516,10 +80516,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "bbf9584a9eee4713b4ce7c40", + "revision": "0f1714e299534428a5bf425d", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80527,10 +80527,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/115436385305746960/history/1697204057820", - "revision": "2ef9b0b4906b4bfeb6fc3ccc", + "revision": "49fa07a0bdf44b75b2e07787", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80566,10 +80566,10 @@ "description": "Compra de 2.947.170,00 IVIP por 1.600,00 BRL", "status_detail": "accredited" }, - "revision": "83cddac8efc547a1b441620c", + "revision": "cd3f0d25ba114808ad6c82a4", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80577,10 +80577,10 @@ "content": { "type": 1, "value": {}, - "revision": "691038de9e1b4458b5306b09", + "revision": "42d0b89583764ba8b75d67cd", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80588,10 +80588,10 @@ "content": { "type": 1, "value": {}, - "revision": "d3a49c26780b47689a9c22f9", + "revision": "b81fb0c748d74932b6e80769", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80606,10 +80606,10 @@ "value": 1695990240020 } }, - "revision": "86920c27f1fb4edabc2bd71e", + "revision": "6aeeecde74a945469ce02956", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80626,10 +80626,10 @@ "value": 1697166000000 } }, - "revision": "bd8d1e2510bb41df86330b21", + "revision": "5f6367dc2df44ecdae132014", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80637,10 +80637,10 @@ "content": { "type": 1, "value": {}, - "revision": "05cef67f37cf47a4a033ee84", + "revision": "e1174c5ea3fd4b2ea665ab97", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80648,10 +80648,10 @@ "content": { "type": 1, "value": {}, - "revision": "86059946ae7b46baa3a78d3e", + "revision": "e3d773863fbf425db7b2e2ab", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80664,10 +80664,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "08814fb7060f43d38cc8bb49", + "revision": "00401ec7f1d24878925c359c", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80675,10 +80675,10 @@ "content": { "type": 1, "value": {}, - "revision": "2fae37a98d7b44cea856be9d", + "revision": "fb1e3fd980984afa96ace478", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80689,10 +80689,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "bddbcea5069042c4a000b5b3", + "revision": "e20932d321674d9dacd01b8a", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80704,10 +80704,10 @@ "symbol": "IVIP", "value": 7620.42 }, - "revision": "4236f0b1318049478f9badff", + "revision": "cc9a19baf0fb41dfa955309f", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80715,10 +80715,10 @@ "content": { "type": 1, "value": {}, - "revision": "a5dad1cec3464710a3d0b7ed", + "revision": "73d9a355eea14f40bda08873", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80728,10 +80728,10 @@ "value": { "costs": {} }, - "revision": "5ff1b4bef5a8435983e297c5", + "revision": "f5d7cbc19fd04b4a849a8daf", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80773,10 +80773,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "2dce7581c4534bc4aa087770", + "revision": "4f99fab5e07148adbfc09bdc", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80784,10 +80784,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1162.6149.5252.0901-80", - "revision": "28d491f4455a413da447c4fc", + "revision": "0870f309502d4c3b84d0e654", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036403, + "modified": 1702563036403 } }, { @@ -80807,10 +80807,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a35ade51e95244a5a76ffc86", + "revision": "26f1e180392c434a8347c315", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -80846,10 +80846,10 @@ "history_id": 1688996128425, "description": "Compra de 36.743.092,00 IVIP por 10.000,70 BRL" }, - "revision": "a6a79bd3cc13477a8f2d0cef", + "revision": "afec3356936740439d220caf", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -80857,10 +80857,10 @@ "content": { "type": 1, "value": {}, - "revision": "8fa89e57c2da4a14b00dac76", + "revision": "f02c4efa5e444c9a870181b5", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -80877,10 +80877,10 @@ "value": 1696215600000 } }, - "revision": "56b17e652f934b0ba62c3b60", + "revision": "0d9d1789760a4d0b9307d5c6", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -80888,10 +80888,10 @@ "content": { "type": 1, "value": {}, - "revision": "750247e3a3cc49f6b5c2b9cf", + "revision": "fb6a685535e3415daefb55f4", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -80899,10 +80899,10 @@ "content": { "type": 1, "value": {}, - "revision": "e32ef68d87de4fc9b57b3c7b", + "revision": "46e5de4eadf841508e221bf5", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -80910,10 +80910,10 @@ "content": { "type": 1, "value": {}, - "revision": "d48f1ba1df2248c182e20059", + "revision": "2b6b6dea7d75495baa594d59", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -80924,10 +80924,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "3523885067c44a439d0331dc", + "revision": "95a22deb1c924bdbb1818fab", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -80939,10 +80939,10 @@ "dateValidity": 1678768062657, "totalValue": 0 }, - "revision": "19ed1c397d6a412db0de0bf8", + "revision": "5f9c0f88148a4691bd37372f", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -80950,10 +80950,10 @@ "content": { "type": 1, "value": {}, - "revision": "09c3be65750c4689a6f49e46", + "revision": "9f3d7375d1074224a31a97c2", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -80961,10 +80961,10 @@ "content": { "type": 1, "value": {}, - "revision": "5f09801b80c5400da4e99dca", + "revision": "5e11784bd52b45ee809d24ab", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -80977,10 +80977,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "891a4b5f91eb49189e11337f", + "revision": "d3cca6a77d074bb5a99d3d31", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -80992,10 +80992,10 @@ "symbol": "IVIP", "value": 0.00037 }, - "revision": "7800f3b5cb6943aaa0bb2aaf", + "revision": "db9dd9b3dd14409baff87b05", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81003,10 +81003,10 @@ "content": { "type": 1, "value": {}, - "revision": "189710f3a3fc4320b161502e", + "revision": "22489272a8fc4563a7657f61", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81016,10 +81016,10 @@ "value": { "costs": {} }, - "revision": "7fe2e0164b4141aea15fc7f1", + "revision": "7330e26307d74aedb19c2c48", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81061,10 +81061,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e7a367d79221465fa4a35d11", + "revision": "46e37bcc48384302804041eb", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81072,10 +81072,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "a741bd4e121f47668ba19ea2", + "revision": "50bf1ee92799445abc5f9682", "revision_nr": 1, - "created": 1701809344961, - "modified": 1701809344961 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81095,10 +81095,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "d1e3fbb6bda24656b16b04ca", + "revision": "2473e42551904be49171fb2a", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81134,10 +81134,10 @@ "history_id": 1678145189537, "description": "Compra de 1428465 IVIP por 200 BRL" }, - "revision": "e087c5e3333d4a659342458c", + "revision": "48941af9ed464863aeb9bfcd", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81147,10 +81147,10 @@ "value": { "costs": {} }, - "revision": "6bde06f63e99403484b34e8e", + "revision": "87c645ef651641708a6a535e", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81182,10 +81182,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "0b5dcc7f053846f5870d34dc", + "revision": "3d59e2d5f82e4669b0f658f0", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81193,10 +81193,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "aacfc62b4e4a4df19ba61f2e", + "revision": "0d07602e033243b08fada3e1", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81206,10 +81206,10 @@ "value": { "costs": {} }, - "revision": "508e914670a946a2ae81435c", + "revision": "68f564370b924d618d7b9d02", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81251,10 +81251,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "36a48d389ff6481b9820d8e5", + "revision": "56aafffecb894603a1fdbca3", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81262,10 +81262,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 350,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "215c643bfd65450c91a8b2a6", + "revision": "6fa3308359c8482daf4d4e53", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81277,10 +81277,10 @@ "label": "Em 2 parcela(s) 6.00%", "amount": 60 }, - "revision": "a9a180459f284108bcc1ddec", + "revision": "425284ff8877469fb5024b1a", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81288,10 +81288,10 @@ "content": { "type": 1, "value": {}, - "revision": "ef11b33cf4dc4e74a1a39b47", + "revision": "a9597e72f1874e9d90e8a8dc", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81299,10 +81299,10 @@ "content": { "type": 2, "value": {}, - "revision": "787498330b4f490c835ae0af", + "revision": "ca453c97902b44a6a872dd60", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81335,10 +81335,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "09c8c64638de4dfc9f401c96", + "revision": "c753e481d81340ecad182bd4", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81346,10 +81346,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", - "revision": "84ee2e62845843a4819321bc", + "revision": "f120279c41c544a5bf849187", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81369,10 +81369,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "54b1314970c34b578822a70f", + "revision": "b9f06d2d160443e59686c6f8", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81408,10 +81408,10 @@ "history_id": 1684624218931, "description": "Compra de 6.575.487,00 IVIP por 1.350,00 BRL" }, - "revision": "e5ac4a491fb94754831a6124", + "revision": "8d511b88dc544980b299fd5f", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81421,10 +81421,10 @@ "value": { "costs": {} }, - "revision": "426c63f9a6924a4690fea10b", + "revision": "289222e3d5e849d8bbbd571e", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81456,10 +81456,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "67b1a4568c80453fa0357b83", + "revision": "ead941e3fdb24a008265796a", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81467,10 +81467,10 @@ "content": { "type": 5, "value": "Saque de 2.982.650,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "562ad9f214234ebba266a1c2", + "revision": "e033c02c156347a2af143ffa", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81480,10 +81480,10 @@ "value": { "costs": {} }, - "revision": "e50a4aecabca4e03ae0f5983", + "revision": "ce1660f6b8ad4c619e631fed", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81515,10 +81515,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "af9c547373d14a71a9d45c9f", + "revision": "db6aaca9068e484bbb8de7cc", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81526,10 +81526,10 @@ "content": { "type": 5, "value": "Saque de 8.003.952,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "ff51c732fd904d7b8745f7e7", + "revision": "6b9b8f3599334287bac90beb", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81549,10 +81549,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "b0d1b3ab054542728562d672", + "revision": "875459c70b284caea592801c", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81587,10 +81587,10 @@ "history_id": 1685665639073, "wasDebited": true }, - "revision": "549a57a1c93c45a7af3bc916", + "revision": "517ad097019a43b798967428", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81598,10 +81598,10 @@ "content": { "type": 5, "value": "Investimento de 3.568.754,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "6757f76e9a4c45d4a6629bd7", + "revision": "e7995c787aae48c0a3361f87", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81621,10 +81621,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ca78cb448dbf4610af72dd42", + "revision": "8094e58eb77549d487e90890", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81658,10 +81658,10 @@ "currency_id": "IVIP", "history_id": 1685668997292 }, - "revision": "e0c205e520e649bd9f33e85b", + "revision": "6b1e7fdf3eef4b3f9bbef59f", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81669,10 +81669,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", - "revision": "60ed6d6ea234452a8d40ad52", + "revision": "580f3677a6e04e8ab946eacc", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81692,10 +81692,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "07b9f4763fed4a20a3b76638", + "revision": "3ac5f34dced8434fa6d0e33c", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81729,10 +81729,10 @@ "currency_id": "IVIP", "history_id": 1685669010794 }, - "revision": "6d6aaa6e86244c9e8f3eff24", + "revision": "e013253d6c15468eb12f583d", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81740,10 +81740,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "11ef901f57ac48d9913599c1", + "revision": "0a89efb8a43e4a48aa67a413", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81763,10 +81763,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "88487b4558ce4071a4b3a211", + "revision": "9ae899b8d1174fedb0f27ef9", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81800,10 +81800,10 @@ "currency_id": "IVIP", "history_id": 1685669017906 }, - "revision": "2172c344259249b18129c14f", + "revision": "c71fcaa53d4f4410beca5c28", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81811,10 +81811,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "323efbf6e047497cab2f010b", + "revision": "c1408b81ac8044c382f31635", "revision_nr": 1, - "created": 1701809344962, - "modified": 1701809344962 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81824,10 +81824,10 @@ "value": { "costs": {} }, - "revision": "6e0825331671489a839f5b42", + "revision": "78bee3a9d1a84148a904bc16", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81859,10 +81859,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "9b43c0b61c2e436988e760e9", + "revision": "a0a6a52291d4455bbd6a7d99", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81870,10 +81870,10 @@ "content": { "type": 5, "value": "Saque de 470.112,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "7a51c80842c7446a98ac95c0", + "revision": "9c0f1d1184d04912b9773d7a", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81883,10 +81883,10 @@ "value": { "costs": {} }, - "revision": "87e622c0ca8d4e0085d123bd", + "revision": "2f0a941b934c452d874e575a", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81918,10 +81918,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "3a2733fe15fb42ccb9188999", + "revision": "5c0f3d08e3f041a6a32040f5", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81929,10 +81929,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "6f9846af6fa748ec8d690e28", + "revision": "dd2923d06d6d4f828567aa41", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81942,10 +81942,10 @@ "value": { "costs": {} }, - "revision": "7e68f35ef6f4495cb93dbea7", + "revision": "3c0614d68f834301bfad4abb", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81987,10 +81987,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d5d784d20f7b4012b5b431db", + "revision": "1ba5f2b1babe494aa1c225e8", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -81998,10 +81998,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "9642541c4ce94ad79a86aaa0", + "revision": "ed4b4c63a70949b08bd4782f", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -82023,10 +82023,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "901c36678cd5405ea42a6bc6", + "revision": "8038b4971c084996a43cacf5", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -82062,10 +82062,10 @@ "currency_id": "BRL", "history_id": 1686838699070 }, - "revision": "bfac150c23464dc0aec21566", + "revision": "fad7b3a550334bbd89c34a21", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -82073,10 +82073,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 2 no valor de 530,00 BRL referente ao contrato 1684182120706", - "revision": "aa093053c4b745e0a4198bab", + "revision": "f085f6b55f0340fcbcb70a79", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -82086,10 +82086,10 @@ "value": { "costs": {} }, - "revision": "c1668c0e8c4942f987d41a5e", + "revision": "c511c4a196fc45fdb6899651", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -82121,10 +82121,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "0cdd8a9fa5304068ba51ebc5", + "revision": "f7411ef4a6b2413099a228db", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -82132,10 +82132,10 @@ "content": { "type": 5, "value": "Saque de 3.897.629,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "b964155edfe84be9985a5984", + "revision": "310a795654bc489f9ba8f242", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -82155,10 +82155,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "7e19e8926bd14dc5a76c5034", + "revision": "6cf2fcb629bc4b219b93dbe3", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82193,10 +82193,10 @@ "history_id": 1688400243137, "wasDebited": true }, - "revision": "b5159e1244a2447f9ebfa4e6", + "revision": "7dbd1975cc3443d9879c5b20", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82204,10 +82204,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 3.568.754,00 IVIP com um rendimento de +71.375,08 IVIP (2,00%)", - "revision": "860f604fc821407ca3370627", + "revision": "650671b92ca943f3a94e7050", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036404, + "modified": 1702563036404 } }, { @@ -82217,10 +82217,10 @@ "value": { "costs": {} }, - "revision": "eb895f0cb37d440585fe56dd", + "revision": "cb60d5c71adf40d8b725912b", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82252,10 +82252,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "6586f2cb5e3b4d9b9bc0db48", + "revision": "2097ad7593d543c1958520b5", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82263,10 +82263,10 @@ "content": { "type": 5, "value": "Saque de 4.926.607,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "9ed3c9798f2a44f49c001a8a", + "revision": "89a55dcdece74f49b933f921", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82276,10 +82276,10 @@ "value": { "costs": {} }, - "revision": "a43e7a48c2eb4c2da17efc9f", + "revision": "a54f99d557844f019f94cbbe", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82321,10 +82321,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "b3f7d47265ec47ec84581e95", + "revision": "5a8d789581dd494ca60713c4", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82332,10 +82332,10 @@ "content": { "type": 5, "value": "Saque de 1.082.278,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "cb367a7310f1410596fd2bbc", + "revision": "03b6d6acaafc43cb92c9cb59", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82345,10 +82345,10 @@ "value": { "costs": {} }, - "revision": "ef401da7f67940b99c55ddce", + "revision": "77c4698be777408a9236be56", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82380,10 +82380,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "9dfd01f70b404277ba3b45c4", + "revision": "5e98c318a047475ba07f8ced", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82391,10 +82391,10 @@ "content": { "type": 5, "value": "Saque de 5.031.032,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", - "revision": "58f7c250cf1345119024f4cf", + "revision": "f074edac0cdd412fa5cfa9c8", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82404,10 +82404,10 @@ "value": { "costs": {} }, - "revision": "a48b3125392f4cb2afa7f7af", + "revision": "640836ee6cf94ed2b93a437e", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82439,10 +82439,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "0a5e4cd3d4584c8e8e2ba740", + "revision": "d00e37869ab8450699a3282e", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82450,10 +82450,10 @@ "content": { "type": 5, "value": "Saque de 5.995.148,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "d2ffd09af83b4295be7a8753", + "revision": "bb3f33b5880745188c30862a", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82463,10 +82463,10 @@ "value": { "costs": {} }, - "revision": "f4068e9dcff24f9d93e8340f", + "revision": "7a2001d7f8884faba2811d2d", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82498,10 +82498,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "c3a2c60fa3484adf959a277d", + "revision": "3e36399183904eb5bcf28c22", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82509,10 +82509,10 @@ "content": { "type": 5, "value": "Saque de 1.000.000,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "52c49ce2ce334c3280dcabdf", + "revision": "68a6e0a70e5f4582b2dc0dd2", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82522,10 +82522,10 @@ "value": { "costs": {} }, - "revision": "1fe6ab43769c493895eb5c98", + "revision": "68cadc4599ea4998af934d99", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82557,10 +82557,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "3d37c667255b44c2b0c11feb", + "revision": "277bacc7281342b3aa906b91", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82568,10 +82568,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "b72ab4c37cd14b41be8410bf", + "revision": "a1d3e8d6043442ebb1697240", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82581,10 +82581,10 @@ "value": { "costs": {} }, - "revision": "f5aec607f8704af18537cbef", + "revision": "6fae0d8c5b2b4c4fa7ecf15c", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82616,10 +82616,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "e959315b8cd94e1882f9d1db", + "revision": "6a141c6db9b44e66b71f8b34", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82627,10 +82627,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "c7203bd63652441ab0e3b0a3", + "revision": "0f54c846d0ec434284cbb71a", "revision_nr": 1, - "created": 1701809344963, - "modified": 1701809344963 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82640,10 +82640,10 @@ "value": { "costs": {} }, - "revision": "95dbef3633784da99c2e8aff", + "revision": "3d3e4f2671774f23b9634f1c", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82685,10 +82685,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "037908402db64b3cb2ac610a", + "revision": "cf8c72c9965041ed886b9e32", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82696,10 +82696,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 530,00 para a carteira iVip 1177.1880.3693.7100-20", - "revision": "19a54e6eabfa412d95f0d5ca", + "revision": "424454bb5f3a4fbca11f934f", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82709,10 +82709,10 @@ "value": { "costs": {} }, - "revision": "99e5bc84945d4548a196d924", + "revision": "01a0051ba1f54d1fa8187943", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82744,10 +82744,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "e614d07b2ca246b4876248fd", + "revision": "05d5e2908a7047c286d8e161", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82755,10 +82755,10 @@ "content": { "type": 5, "value": "Saque de 2.000.000,00 IVIP para a carteira 0x841215383Dd838589617C92C48542Cb871271FdC", - "revision": "1d854abcfd7441b8be69627b", + "revision": "6e60317526304cbea6415037", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82780,10 +82780,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "5a6ce87636f245db88adc9bd", + "revision": "78e564b49e3a4324a903ccd1", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82819,10 +82819,10 @@ "currency_id": "BRL", "history_id": 1690326796884 }, - "revision": "591cfce95d2c41d8b8ad2b94", + "revision": "fb373f35f6a54a5abb3d984e", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82830,10 +82830,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 2 no valor de 530,00 BRL referente ao contrato 1684182120706", - "revision": "71ddc1ff11f349b2afffba92", + "revision": "33f124bda90a4864a4c526c3", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82851,10 +82851,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "317dcf29caeb4407902d5820", + "revision": "a1554708dba64a36be8669e4", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82862,10 +82862,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1690327152842", - "revision": "a001167eba434f46859209fc", + "revision": "d387818f33664b88ba1e77c3", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82905,10 +82905,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "722f268f81f5498993067872", + "revision": "d52843b0c65e474eadafde00", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82916,10 +82916,10 @@ "content": { "type": 5, "value": "Saque de 6.990.049,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", - "revision": "6731580ab840484d80b45275", + "revision": "c144dbf9d2114c3d8cbadbb4", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82937,10 +82937,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "f8dfc6f302db4415b069b2bf", + "revision": "fe9033d3341d4aafbd3113bc", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82948,10 +82948,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1690371637044", - "revision": "e1c095e1c97a4cbd9adf9d46", + "revision": "fdd7b1f31e3340879f04f716", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -82995,10 +82995,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "0639aa1ec9ef44b58325a472", + "revision": "a242ff3d1e0c43d1b8057f38", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -83006,10 +83006,10 @@ "content": { "type": 5, "value": "Saque de 3.280.090,00 IVIP para a carteira 0x1298e4B8752F64f3E62523Fc995Dc23D7e2cF9Ce", - "revision": "305ef8b297134ae18fd58962", + "revision": "1d784427f5344fae884f870c", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036405, + "modified": 1702563036405 } }, { @@ -83027,10 +83027,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "2bc57569248748eeaabb462d", + "revision": "c47359f486ae459287e98f09", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83038,10 +83038,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1694007742356", - "revision": "9968f61015ae4c4787742d29", + "revision": "e615a47b78e74aed860230f3", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83075,10 +83075,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "70e892bdf873446ab847c426", + "revision": "98f88525ac94450cb7889f49", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83086,10 +83086,10 @@ "content": { "type": 5, "value": "Investimento de 3.678.031,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/10/2023 - Y12XDT27", - "revision": "449b5d706a0545e69436396b", + "revision": "fed543e8303a4fcbb73a006d", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83107,10 +83107,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "679311345b3f48f68b9cd40e", + "revision": "32623aaa71d645a689e909e9", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83118,10 +83118,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1696599770690", - "revision": "47e351f90aac4f0b87c7598a", + "revision": "c15954dd0a2b4bf8a9827ce5", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83156,10 +83156,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "8b292ed6cec649948541b9b8", + "revision": "1e546ceb26384a2e9e65bb68", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83167,10 +83167,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 3.678.031,00 IVIP com um rendimento de +73.560,62 IVIP (2,00%) - Y12XDT27", - "revision": "fe87679d3e744c1f93603020", + "revision": "35a6cf04a41541d3a33aafb8", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83188,10 +83188,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b544c5a21e834fc6a0e58817", + "revision": "33ed7e0453ef46e7ae93819e", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83199,10 +83199,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/117718803693710020/history/1696599812843", - "revision": "b34e41326f434df1840ec6d7", + "revision": "572d1299d28f454abee1acca", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83237,10 +83237,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "c873988c4cf44d569da61ddf", + "revision": "21a375f74ed44f59b84d07d8", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83248,10 +83248,10 @@ "content": { "type": 5, "value": "Investimento de 3.783.519,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", - "revision": "20f1e30800ba491ea5f6ff69", + "revision": "000d2ec075dd4e0f89fcf65f", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83259,10 +83259,10 @@ "content": { "type": 1, "value": {}, - "revision": "c0a3cf8768dc472684f830b2", + "revision": "80ad9986fe91458790a9390f", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83274,10 +83274,10 @@ "label": "Em 2 parcela(s) 6.00%", "amount": 60 }, - "revision": "64f3c290ac6d4369b4a68860", + "revision": "f777a73d93bf4c03a71f2ccd", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83299,10 +83299,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "8dc4c6ea0c2d4e80a711dc0a", + "revision": "60c59bcc221e408886591d19", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83310,10 +83310,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", - "revision": "cfc91f21c9cd4c44acbc49f8", + "revision": "0ce490e52c7a4a00b287fdb8", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83321,10 +83321,10 @@ "content": { "type": 2, "value": {}, - "revision": "bd518974483044a79f6e48f2", + "revision": "56514120160142e29563f84a", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83332,10 +83332,10 @@ "content": { "type": 1, "value": {}, - "revision": "57961ae2f63e49b582c3655a", + "revision": "0c3cbf7f3a9b478580589ff6", "revision_nr": 1, - "created": 1701809344964, - "modified": 1701809344964 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83347,10 +83347,10 @@ "label": "Em 2 parcela(s) 6.00%", "amount": 60 }, - "revision": "8fd1fd59f06549c2b2ef6057", + "revision": "45ea6ef0b1f24597898e2a8e", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83372,10 +83372,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "5eadd79f96e240439831a581", + "revision": "d67bcac41fdd44de991a0474", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83383,10 +83383,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1177.1880.3693.7100-20 de um empréstimo parcelado em 2 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.060,00", - "revision": "bd065079d3f644f59f2eb0ce", + "revision": "1613a5ebbf5a4dbe8f63d3a3", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83394,10 +83394,10 @@ "content": { "type": 2, "value": {}, - "revision": "8d032ca9df0540b4ae7895f0", + "revision": "8716f88fb3ff4fff824e08fe", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83405,10 +83405,10 @@ "content": { "type": 1, "value": {}, - "revision": "071121fb9db640fdb0bbe2ff", + "revision": "6aada2ac7ead4780b5278571", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83416,10 +83416,10 @@ "content": { "type": 1, "value": {}, - "revision": "970c3e3bb45d42b48a702f42", + "revision": "aeeb5700b77f4674ab4bf1e7", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83438,10 +83438,10 @@ "value": 1683344393183 } }, - "revision": "d75cb143ea8c40bcb71be832", + "revision": "774a450a5047470a9d51fbfa", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83458,10 +83458,10 @@ "value": 1697338800000 } }, - "revision": "6d975725979844d49194c4e9", + "revision": "962a6cef57e746ad8d6ca251", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83473,10 +83473,10 @@ "symbol": "BRL", "value": 0.98 }, - "revision": "9302d2198f52474c89e2a421", + "revision": "045c09f99e3649c489db45f5", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83488,10 +83488,10 @@ "symbol": "IVIP", "value": 0.000021 }, - "revision": "166a0c7270734fa8bc770544", + "revision": "fe5bc964a5614dddad6b104a", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83499,10 +83499,10 @@ "content": { "type": 1, "value": {}, - "revision": "208cd035665a4b98ade6f67d", + "revision": "60e916c17610400bb729271c", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83512,10 +83512,10 @@ "value": { "costs": {} }, - "revision": "3647b146e5e44fff9919127a", + "revision": "fd6b010880da4019bbfbb06e", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83557,10 +83557,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "256f8393130a412f89a94351", + "revision": "c207f701d46f40018c4f0520", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83568,10 +83568,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "ee3eae8beb344fb3a5ea83dc", + "revision": "9f006eb5c7004daf818f1243", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83591,10 +83591,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "337e09988eeb4f078f0b7718", + "revision": "67e6770db17348f3abc33b2a", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83630,10 +83630,10 @@ "history_id": 1684624220546, "description": "Compra de 974.146,00 IVIP por 200,00 BRL" }, - "revision": "a36b0dbd82904afda23492f6", + "revision": "135b92d275654dc69a296ddb", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83645,10 +83645,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "8a140c9fffb24c0eb483980e", + "revision": "f823a00bb0cb4997b5081d91", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83656,10 +83656,10 @@ "content": { "type": 1, "value": {}, - "revision": "359fc55943ae44ccb6433007", + "revision": "eccdd0bd7c764107a7af08eb", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83667,10 +83667,10 @@ "content": { "type": 2, "value": {}, - "revision": "6bcf1806ebfb4c3a870bebf6", + "revision": "63764f65db3c40d9ad9c7f0b", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83703,10 +83703,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "a406c6c35c3645068264b1ec", + "revision": "a8c88b224f5a410eabe11f03", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83714,10 +83714,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "5d670fa529fe43bc8841f480", + "revision": "86775a7367af4ff3af7017d4", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83737,10 +83737,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "59cec570044d4dc8b0677f3c", + "revision": "9213073d01134a75aa863aa0", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83776,10 +83776,10 @@ "history_id": 1684625351966, "description": "Compra de 4.870.731,00 IVIP por 1.000,00 BRL" }, - "revision": "1276210703c04330b4e06135", + "revision": "5a9a11fd02bc495b9f154c53", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83789,10 +83789,10 @@ "value": { "costs": {} }, - "revision": "90baf7ea4caf46ce907bd64c", + "revision": "66ee0dfa331a46519903a485", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83834,10 +83834,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "88fa9fd0444b48e8a13b5a7b", + "revision": "1d798352f8584f78b5d07d67", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83845,10 +83845,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 400,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "35af4b31d7ba4d178d33ba06", + "revision": "8dd5b16168c547e6b1d962cd", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83868,10 +83868,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "2831187034314bfcb9f31afb", + "revision": "184df918b2884f69ac15fb07", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83906,10 +83906,10 @@ "currency_id": "IVIPAY", "history_id": 1685234226998 }, - "revision": "5f5a9a79032342eabdb2190a", + "revision": "7be15ad1786c45da98c24ea0", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83917,10 +83917,10 @@ "content": { "type": 5, "value": "Compra de 10.000.000,00 IVIPAY por 1.000.000,00 IVIP estabilizando US$ 41,00", - "revision": "bc44de475a874d64ba458d4a", + "revision": "fb7159c66dcf427d8c395853", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83940,10 +83940,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "3b48d2b6ddc2433e87722bcc", + "revision": "f28966db8b374723b35e3b34", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83978,10 +83978,10 @@ "currency_id": "IVIP", "history_id": 1685456788341 }, - "revision": "20a9a097afeb4162bad5c09d", + "revision": "4449a41412ca43389351190b", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -83989,10 +83989,10 @@ "content": { "type": 5, "value": "Compra de 1.000.000,00 IVIP por 10.000.000,00 IVIPAY", - "revision": "6d6ebc443f9d40f4980799f0", + "revision": "86105eab79c24ce08d112dc6", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -84012,10 +84012,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "e653502fb2f54fd2bd4becfd", + "revision": "00da2fe82d7d40e9a11c58fc", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -84049,10 +84049,10 @@ "currency_id": "IVIP", "history_id": 1685665895143 }, - "revision": "c45b2203c5384a1ab0a05285", + "revision": "0aa6bd528148400290d58282", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -84060,10 +84060,10 @@ "content": { "type": 5, "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "c5d7cbb671a94268a1df253f", + "revision": "a4eecb1fdef649088ed73a4b", "revision_nr": 1, - "created": 1701809344965, - "modified": 1701809344965 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -84083,10 +84083,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "f280fb54a41448e6b6c6b12f", + "revision": "1f36d71c841b41d4a26d8005", "revision_nr": 1, - "created": 1701809344966, - "modified": 1701809344966 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84120,10 +84120,10 @@ "currency_id": "IVIP", "history_id": 1685665913616 }, - "revision": "e9fc23f54db840bc878f39bb", + "revision": "99ee3561a06a444f8ba51815", "revision_nr": 1, - "created": 1701809344966, - "modified": 1701809344966 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84131,10 +84131,10 @@ "content": { "type": 5, "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "243cdd26f63149ddb07a537f", + "revision": "b72049b2da234f4b9cf03a97", "revision_nr": 1, - "created": 1701809344966, - "modified": 1701809344966 + "created": 1702563036406, + "modified": 1702563036406 } }, { @@ -84154,10 +84154,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "b9668958080a48ba8a2aa029", + "revision": "d8551ba21ba84ec7a69485e3", "revision_nr": 1, - "created": 1701809344966, - "modified": 1701809344966 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84192,10 +84192,10 @@ "history_id": 1685665938582, "wasDebited": true }, - "revision": "af59785864ee40bcbadef3b7", + "revision": "69414ebccd124ec6baa588f1", "revision_nr": 1, - "created": 1701809344966, - "modified": 1701809344966 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84203,10 +84203,10 @@ "content": { "type": 5, "value": "Investimento de 1.844.877,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", - "revision": "cb4a39428aca4599acb2b385", + "revision": "cae5136f84094e068cc626f9", "revision_nr": 1, - "created": 1701809344966, - "modified": 1701809344966 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84226,10 +84226,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "63d1f200a68e423bb97f499e", + "revision": "f572516e2f514b79957fdd5f", "revision_nr": 1, - "created": 1701809344966, - "modified": 1701809344966 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84263,10 +84263,10 @@ "currency_id": "IVIP", "history_id": 1685665980650 }, - "revision": "9cdb3f0932cb4b8fb8e53e39", + "revision": "7958ecfe72cb4428bdde6cf7", "revision_nr": 1, - "created": 1701809344966, - "modified": 1701809344966 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84274,10 +84274,10 @@ "content": { "type": 5, "value": "Investimento de 1.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "8c3c871fa38a43609c8ac619", + "revision": "d6a17b40636d4eef83bf97ba", "revision_nr": 1, - "created": 1701809344966, - "modified": 1701809344966 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84297,10 +84297,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "9a064eed2e4147e59e048ca4", + "revision": "5dd293e31c574f0b879078cc", "revision_nr": 1, - "created": 1701809344966, - "modified": 1701809344966 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84336,10 +84336,10 @@ "history_id": 1685743358755, "description": "Compra de 1.403.508,00 IVIP por 400,00 BRL" }, - "revision": "f22eef00df74498ab76fb22e", + "revision": "8e35e9d0150348189b0b65f6", "revision_nr": 1, - "created": 1701809344966, - "modified": 1701809344966 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84349,10 +84349,10 @@ "value": { "costs": {} }, - "revision": "6c0a0953c6ab4d44895f0d7e", + "revision": "99583ca38b7d4a70af3436d6", "revision_nr": 1, - "created": 1701809344966, - "modified": 1701809344966 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84394,10 +84394,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "4b178222895e4eca83c87c87", + "revision": "1dfa6614ff284f35bfe32f81", "revision_nr": 1, - "created": 1701809344966, - "modified": 1701809344966 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84405,10 +84405,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 250,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "d5e2d92aec884cf2ae7eaf42", + "revision": "b2fdb618f71f48259eaf3265", "revision_nr": 1, - "created": 1701809344966, - "modified": 1701809344966 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84430,10 +84430,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "15c6e2c33a2d4bcd9603dae9", + "revision": "37572a5daf4a4f7b9f3425b3", "revision_nr": 1, - "created": 1701809344966, - "modified": 1701809344966 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84469,10 +84469,10 @@ "currency_id": "BRL", "history_id": 1686597954870 }, - "revision": "79ac210c73c443dfba40f8ad", + "revision": "8300b5a2eede4936a6685503", "revision_nr": 1, - "created": 1701809344966, - "modified": 1701809344966 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84480,10 +84480,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "ef5ef89a7c06499ab025a870", + "revision": "3966dbaf86e14a35a8175288", "revision_nr": 1, - "created": 1701809344966, - "modified": 1701809344966 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84503,10 +84503,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "825b414c44204052840e7b3c", + "revision": "1d49403774a14d49a552ece6", "revision_nr": 1, - "created": 1701809344967, - "modified": 1701809344967 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84540,10 +84540,10 @@ "currency_id": "IVIP", "history_id": 1687313544975 }, - "revision": "e02e6a8cc8f644c090ba6b1a", + "revision": "ac40cacc730144c199069956", "revision_nr": 1, - "created": 1701809344967, - "modified": 1701809344967 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84551,10 +84551,10 @@ "content": { "type": 5, "value": "Investimento de 2.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/20/2024", - "revision": "c635e9206bdc4a4ca2e53837", + "revision": "93b2bcfb1aa14a618e74f660", "revision_nr": 1, - "created": 1701809344967, - "modified": 1701809344967 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84574,10 +84574,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "cbe79489b3794a1ebcfadb99", + "revision": "481f211a1d654a2781033a04", "revision_nr": 1, - "created": 1701809344967, - "modified": 1701809344967 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84612,10 +84612,10 @@ "history_id": 1688400283150, "wasDebited": true }, - "revision": "581587d4bfaf442d99a789eb", + "revision": "cdcb6f460248427cbd0bbd72", "revision_nr": 1, - "created": 1701809344967, - "modified": 1701809344967 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84623,10 +84623,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 1.000.000,00 IVIP com um rendimento de +20.000,00 IVIP (2,00%)", - "revision": "f48720c0751f4b2a867c1210", + "revision": "5f336bdad07c47d7bbfab851", "revision_nr": 1, - "created": 1701809344967, - "modified": 1701809344967 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84646,10 +84646,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "6d75408f42964fc680e317c5", + "revision": "8cb88f6078144b08a04948b7", "revision_nr": 1, - "created": 1701809344967, - "modified": 1701809344967 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84683,10 +84683,10 @@ "currency_id": "IVIP", "history_id": 1688400827775 }, - "revision": "45173686f6dd4f4ebf53a5ea", + "revision": "68f052123bd94886bfb1b1d1", "revision_nr": 1, - "created": 1701809344967, - "modified": 1701809344967 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84694,10 +84694,10 @@ "content": { "type": 5, "value": "Investimento de 3.268.385,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "d6710afbeb01401397d5f70f", + "revision": "6df0e1456aef4464809ba8ad", "revision_nr": 1, - "created": 1701809344967, - "modified": 1701809344967 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84707,10 +84707,10 @@ "value": { "costs": {} }, - "revision": "5831dd454f9b4874899823f2", + "revision": "5ba08b980d484076ad5d9825", "revision_nr": 1, - "created": 1701809344967, - "modified": 1701809344967 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84752,10 +84752,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "1dc5cfe0d5484db4a2d175cb", + "revision": "2a3c25ac8ed14d70958390cd", "revision_nr": 1, - "created": 1701809344967, - "modified": 1701809344967 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84763,10 +84763,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "4bab9d2255214feaa78ef86d", + "revision": "ae30f3e0bf9f4603b335d8f3", "revision_nr": 1, - "created": 1701809344967, - "modified": 1701809344967 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84788,10 +84788,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "39ae7cc9107541cda1eae574", + "revision": "48e4c5d7c2fd436ca3521539", "revision_nr": 1, - "created": 1701809344967, - "modified": 1701809344967 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84827,10 +84827,10 @@ "currency_id": "BRL", "history_id": 1689168458989 }, - "revision": "691e4f7859954358a4ff0c1f", + "revision": "578d2a2088a24eb9ab3e138c", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84838,10 +84838,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "8e90e0a3f9094eb589b3daa3", + "revision": "ec05b7145e104067a1c22b69", "revision_nr": 1, - "created": 1701809344967, - "modified": 1701809344967 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84861,10 +84861,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "69a626475bad4a7dbd179981", + "revision": "439d3bf87da34f91a78cb91b", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84899,10 +84899,10 @@ "history_id": 1691079300942, "wasDebited": true }, - "revision": "a2c2f1642edd4eb89591aa47", + "revision": "81a0763972ae48a898fb0639", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84910,10 +84910,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 3.268.385,00 IVIP com um rendimento de +65.367,7 IVIP (2,00%)", - "revision": "52314c2d245e4f9d904c226f", + "revision": "9ab9e811ac3d41cea9800641", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84931,10 +84931,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ba0839bfef7c4199afe5ee49", + "revision": "38661afbf31f4f33889309cd", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84942,10 +84942,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1691084485881", - "revision": "91acf4204d004d16b1b1c5bc", + "revision": "a1c6562f94a94c0ab5838e27", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84979,10 +84979,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "474f8dc236cc47048c183427", + "revision": "dd97b178751a4102a34a9d7d", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -84990,10 +84990,10 @@ "content": { "type": 5, "value": "Investimento de 1.488.875,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "1169fe73bdb44abf8424b6d0", + "revision": "6203f3f336234900ab538f07", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036407, + "modified": 1702563036407 } }, { @@ -85007,10 +85007,10 @@ "value": 1694610080318 } }, - "revision": "520367583146457f9ea905a2", + "revision": "19187c99f92b435281646b40", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85028,10 +85028,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "959426e86178447d894f1ef3", + "revision": "c8d66403b7f54dea8d577e2a", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85039,10 +85039,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1692018080319", - "revision": "f0f1e8003c3142428d5d4f64", + "revision": "f33430d5436f44cd9fd17e7c", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85082,10 +85082,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "88e3a8854f4c4aa8a6d83afc", + "revision": "b1ab4f4ee8784657a7b58188", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85093,10 +85093,10 @@ "content": { "type": 5, "value": "Deposito de um valor 250,00 para a carteira iVip 1181.6054.9969.9842-60", - "revision": "fef972e9e168432eaeb56cbb", + "revision": "e4c41338e7e54e5caa64789a", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85118,10 +85118,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "fb8e19ca73574785b723dcaa", + "revision": "ff3fe24c408f4ec8ace05642", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85157,10 +85157,10 @@ "currency_id": "BRL", "history_id": 1692288719964 }, - "revision": "2a66252ce6ac4faf82d5e9ef", + "revision": "ad4ad0e8f1214acea8f676cc", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85168,10 +85168,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "c406c58b32f74da29d56a78c", + "revision": "fdce815f5a8e479eafadd5ad", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85189,10 +85189,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "97814dbd85784445ad85a22c", + "revision": "c7a65cd2728b40489207154e", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85200,10 +85200,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1693763097865", - "revision": "c780422cb65b4ec19a5a7632", + "revision": "d256b0ca7ac941a492c6864f", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85237,10 +85237,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "860b551a2a784776a481516d", + "revision": "65e7311141334437a5900f15", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85248,10 +85248,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 1.488.875,00 IVIP com um rendimento de +29.777,5 IVIP (2,00%) - Y12XDT27", - "revision": "9334ef74f4b64f7cbc432e69", + "revision": "5165e1d4e23d4345aa0a90ef", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85269,10 +85269,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c785364efaaf43bc98db3c90", + "revision": "29784d1dcfcb4877b24677b8", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85280,10 +85280,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1693915531936", - "revision": "832c36362f2f4d359f5a9b63", + "revision": "11995eefa2704ef6b1843f62", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85323,10 +85323,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "82bc5c132e5a4e76bb5efa98", + "revision": "b525ba4c61574fe48a12f720", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85334,10 +85334,10 @@ "content": { "type": 5, "value": "Investimento de 1.487.490,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 05/10/2023 - Y12XDT27", - "revision": "e9db0f44457f4357b6bcd641", + "revision": "7214f83b7ba1441db3b2ec81", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85351,10 +85351,10 @@ "value": 1696598496774 } }, - "revision": "e8de32e9c62d41a584c6c509", + "revision": "db5d3dffc78d439d914ba110", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85372,10 +85372,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "246b06424a574d43938e5117", + "revision": "5da84bd1d1954a27a147e142", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85383,10 +85383,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1694006496775", - "revision": "d10c7c4b009d41dba9b171cb", + "revision": "9d47bb432e414cd68879d126", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85426,10 +85426,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "734042419ff0443ba0057ad8", + "revision": "1831f5f00e3b45da8d64b915", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85437,10 +85437,10 @@ "content": { "type": 5, "value": "Deposito de um valor 220,00 BRL para a carteira iVip 1181.6054.9969.9842-60", - "revision": "9d512d88cd2f4498af9e8a9f", + "revision": "4a6135b5f6824a3297fba941", "revision_nr": 1, - "created": 1701809344968, - "modified": 1701809344968 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85460,10 +85460,10 @@ "installment_paid": 4, "installments_payable": 1 }, - "revision": "08b0d6bedbcb460cb15fe33e", + "revision": "112b0661c06541a9b28c3a9c", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85471,10 +85471,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1694572285717", - "revision": "1e3da73003d34c83a109d721", + "revision": "4c618c09c5c842cd87bc836c", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85508,10 +85508,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "f1a9b85e404a4f209f1f5811", + "revision": "a8a16d2b0ec1448783530509", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85519,10 +85519,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "59300f41d55840f58ff4a726", + "revision": "f093ac52d12a497c90b221df", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85540,10 +85540,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "bc1e3b47ecd34e6aa528693f", + "revision": "3d02052043914c83b0dbc3f8", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85551,10 +85551,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696081581090", - "revision": "43d9024ec3ef46dca72ba404", + "revision": "91222afa5af44b0a96dbe3ab", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85589,10 +85589,10 @@ "base_currency_id": "BRL", "status_detail": "accredited" }, - "revision": "8d0db4aa56d340f590815eb8", + "revision": "8e736766a32647c0809fb162", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85600,10 +85600,10 @@ "content": { "type": 5, "value": "Investimento de 40,00 BRL em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 30/07/2024 - D03OS92M", - "revision": "309d02fac44541ea824e218b", + "revision": "833822d296d74d7fa3d61ff9", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85617,10 +85617,10 @@ "value": 1698673702609 } }, - "revision": "bdb286941f1a4066bc5a1e86", + "revision": "a9f62233d890488d83cd298e", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85638,10 +85638,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a096507a07214b7f9a8289ab", + "revision": "af1b4a4461b047bbb9058f13", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85649,10 +85649,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696081702609", - "revision": "3e8555a60aaa47a086f2fe9e", + "revision": "2f6e51ce4af14b2fb66a0424", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85693,10 +85693,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "89bc727c1c5d4e31a1c6fd5c", + "revision": "45dd0675d4f34689817136e2", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85704,10 +85704,10 @@ "content": { "type": 5, "value": "Deposito de um valor 225,00 BRL para a carteira iVip 1181.6054.9969.9842-60", - "revision": "386830b437da440bbf1d3a21", + "revision": "356bdc82a6e84576a7b1185d", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85727,10 +85727,10 @@ "installment_paid": 5, "installments_payable": 0 }, - "revision": "5b447cb0fdb545de9c8768aa", + "revision": "752e5f863ee843b1b240df68", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85738,10 +85738,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696085699487", - "revision": "552d954c3df44164a360ef88", + "revision": "3a21c79692f444adb3faac59", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85776,10 +85776,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "491ed018a8fa4671842b99bf", + "revision": "b5e493cdb0224a36b231f580", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85787,10 +85787,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1684625319623", - "revision": "e275915da55048ba8ed0edeb", + "revision": "74e4777a849845dc8fad13e9", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85808,10 +85808,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "436c2f8142af4615949da873", + "revision": "2f89e17526cb434f952cac94", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85819,10 +85819,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696349167615", - "revision": "4b545147ed274c7e9753bb07", + "revision": "199963f4ef2a4030bc076e06", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85857,10 +85857,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "94f80d8350ed4f19af7c1caf", + "revision": "2d786996b81a416ba3e0b814", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85868,10 +85868,10 @@ "content": { "type": 5, "value": "Investimento de 31.163,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 03/10/2025 - P9A02KSL", - "revision": "98748f427b56487b8284b50f", + "revision": "c9c88bbaaefa4636a680a791", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85889,10 +85889,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ca74b17eb9ce477da220eb88", + "revision": "ba66527e42e7486ab9919855", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85900,10 +85900,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/118160549969984260/history/1696462181596", - "revision": "3a66ce974a284026b6617ccb", + "revision": "abddb055bf544c23a8362c68", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85938,10 +85938,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "2be028cb3f3b4fed9b077d1c", + "revision": "0a125049e95942f3b79b0a2b", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85949,10 +85949,10 @@ "content": { "type": 5, "value": "Investimento de 1.487.490,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "ee120ca42f1f418dbb15f103", + "revision": "31aa06a7071f47e8a75405a0", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85960,10 +85960,10 @@ "content": { "type": 1, "value": {}, - "revision": "1317bfbc87ec44b0818cea23", + "revision": "daa76cf6fe0b4b64a95a474c", "revision_nr": 1, - "created": 1701809344969, - "modified": 1701809344969 + "created": 1702563036408, + "modified": 1702563036408 } }, { @@ -85975,10 +85975,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "8151ad8254d444ae9ecc7256", + "revision": "2df09c6fd2fc465db52cafbf", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86000,10 +86000,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "2f648c0321d9417685d4b27c", + "revision": "71703115e71748559e67268b", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86011,10 +86011,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "9ff50b51b7674a3aacb15242", + "revision": "a16ab3af3bab4082ab6b6524", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86022,10 +86022,10 @@ "content": { "type": 2, "value": {}, - "revision": "baf3061dc14a4c339856af73", + "revision": "5673581d3b6b4b3aa6fa48e2", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86033,10 +86033,10 @@ "content": { "type": 1, "value": {}, - "revision": "b1c78ad078f443528acc98d4", + "revision": "4807a93b430047158390032b", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86048,10 +86048,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "0c2da021aa4b41ea86b23ba3", + "revision": "ec81ada32b934988838a78dc", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86073,10 +86073,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "e001d0858a4245499051c8e1", + "revision": "743be4ad10c24364b56c41fd", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86084,10 +86084,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "b788e3aae11342968b0c3a12", + "revision": "5f6d1250fdb349d0b285eeac", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86095,10 +86095,10 @@ "content": { "type": 2, "value": {}, - "revision": "7ad5bbe36dc64b06ac335394", + "revision": "db722f4a3d7149a6bbef07dd", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86106,10 +86106,10 @@ "content": { "type": 1, "value": {}, - "revision": "4574515500534d9f88920e4b", + "revision": "51ceb02ad0624e10bedcfd77", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86121,10 +86121,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "17941a275aea40448b8333f7", + "revision": "f8025eee32374d758394d84f", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86146,10 +86146,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "ba53150cc2bf405b9a7f8472", + "revision": "1b600cc9c06e43d1bf95152e", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86157,10 +86157,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "0cf96adeb0fe42a29c19b2d5", + "revision": "a2c335949e744ef6a9093c3e", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86168,10 +86168,10 @@ "content": { "type": 2, "value": {}, - "revision": "37e92768adda4f3e92095726", + "revision": "20b1c2e08a2f45ae8a99dec9", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86179,10 +86179,10 @@ "content": { "type": 1, "value": {}, - "revision": "83c9509fe86d4034a0b26ba2", + "revision": "6f2f8eb6982f43a0af0473a2", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86194,10 +86194,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "9d3c242b28ec4e4f99e74f4c", + "revision": "f159b31fc55c4fbb8bdc7f66", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86223,10 +86223,10 @@ "value": 1694572285736 } }, - "revision": "2456d630b6024463b7ebe340", + "revision": "b1f98bc248a242e691953a03", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86234,10 +86234,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "17cc7d7389874d74b8f70e63", + "revision": "81831a8bace446aebf68e814", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86245,10 +86245,10 @@ "content": { "type": 2, "value": {}, - "revision": "f9196fd1401b472f893ae612", + "revision": "3063c27ee10d4d98b38cb892", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86256,10 +86256,10 @@ "content": { "type": 1, "value": {}, - "revision": "02ca07cea57d4b25b075d646", + "revision": "238bacd848704c42ba860308", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86271,10 +86271,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "3566c1cc837d49a5a55816c2", + "revision": "dde70b49af2641bab1c7736b", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86300,10 +86300,10 @@ "value": 1696085699499 } }, - "revision": "0a5a798ff84d4928818152dc", + "revision": "58c7ce06f6a0481b85a39670", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86311,10 +86311,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1181.6054.9969.9842-60 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "d899cf471f28473381973988", + "revision": "5e93c37b338f492591026819", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86322,10 +86322,10 @@ "content": { "type": 2, "value": {}, - "revision": "4155a12578a442a1b30dbabb", + "revision": "9b4829079ff74e0d90d6c5f1", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86333,10 +86333,10 @@ "content": { "type": 1, "value": {}, - "revision": "ae3b4d0bc46446bc93c14f7e", + "revision": "53473650933e45a6bcda0110", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86344,10 +86344,10 @@ "content": { "type": 1, "value": {}, - "revision": "3b6d6e76bf58453b849f261f", + "revision": "45c586ade1a9424badb8dbf2", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86366,10 +86366,10 @@ "value": 1684618429410 } }, - "revision": "1b1b18a51b944e7598b24a8f", + "revision": "79f44c193939494f8a18a3d0", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86386,10 +86386,10 @@ "value": 1697338800000 } }, - "revision": "3721cc4684fe44a0a6ecece9", + "revision": "1951e2ef966343fdb8e3e391", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86397,10 +86397,10 @@ "content": { "type": 1, "value": {}, - "revision": "8875275110844969845e4547", + "revision": "98c744d3e5e2462ba727136a", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86408,10 +86408,10 @@ "content": { "type": 1, "value": {}, - "revision": "f7410dbb0c734a7bb0791754", + "revision": "cc027b20cc79456dab55c482", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86424,10 +86424,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "c665c6f6f8414448a693b1b4", + "revision": "191ac6c2ec2a458996cb41b1", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86439,10 +86439,10 @@ "symbol": "BRL", "value": 1.74 }, - "revision": "82072500a35f4baa8902e0e6", + "revision": "9d94d00aaf5449b0931f23d8", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86454,10 +86454,10 @@ "symbol": "IVIP", "value": 70.34 }, - "revision": "cbaa575673f340929b4a9116", + "revision": "49d3e0e8faac4fa48ea895e8", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86465,10 +86465,10 @@ "content": { "type": 1, "value": {}, - "revision": "94c16ff84e9949dfa08dc11e", + "revision": "b38fd67ebac74eaf9c3c7481", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86478,10 +86478,10 @@ "value": { "costs": {} }, - "revision": "b9713baefe494042971d3320", + "revision": "d8edff55282b4b6c92a26c8a", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86523,10 +86523,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e16e7a0f78674ff5a9866ab0", + "revision": "13a829d0940d4f1eb5218a11", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86534,10 +86534,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1218.4763.4268.5788-20", - "revision": "7686476cdabe402caad4c575", + "revision": "97958fabbf1a48b49bbafcdb", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86557,10 +86557,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "457a50fd104a4e9e8ae0569c", + "revision": "ac1b7e71a5e948cd8f984aff", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86596,10 +86596,10 @@ "history_id": 1684624212629, "description": "Compra de 97.852,00 IVIP por 20,09 BRL" }, - "revision": "15af7d6f71304fcd9c1e4ee6", + "revision": "ec35f9dab60c41ac9a7eb79b", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86619,10 +86619,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "91b2d5a793b04dd59efa0784", + "revision": "e7a8d17dbd404ddbb1bb1406", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86658,10 +86658,10 @@ "history_id": 1684624265601, "description": "Compra de 345.383,00 IVIP por 70,91 BRL" }, - "revision": "40e85beea7a649e68ce176ee", + "revision": "9a22e67451524c30bb69f387", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86679,10 +86679,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "020c09d879c94dddadcbf99a", + "revision": "21282c5cb9f64364980b5573", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86690,10 +86690,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/121847634268578820/history/1696563980031", - "revision": "1a2296fb910c4004a87d61e2", + "revision": "60eb625b08fb4f4f90120eb6", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86728,10 +86728,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "f7d9981d8c4849a2b1a91980", + "revision": "4b525baa87b84d39a63494b7", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86739,10 +86739,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 06/11/2023 - Y12XDT27", - "revision": "50ebdae6dd7c403e8a3147e6", + "revision": "9c7ad489b46b488fb8af6e7d", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86750,10 +86750,10 @@ "content": { "type": 1, "value": {}, - "revision": "96157be767244695a28ec946", + "revision": "cac2457202744c259e40fa39", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86761,10 +86761,10 @@ "content": { "type": 1, "value": {}, - "revision": "4b563222fe4a4f25a516acab", + "revision": "1d55477933fd452ca95c8b85", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86775,10 +86775,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "d3b147522cc04b8aa3fa1225", + "revision": "dc530e65d199494da14f8090", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86795,10 +86795,10 @@ "value": 1696561200000 } }, - "revision": "4429bd42cf09404393e92add", + "revision": "5803372df8ec4a1f938af8b9", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86806,10 +86806,10 @@ "content": { "type": 1, "value": {}, - "revision": "7b576a572d754ab893d3067e", + "revision": "4d306969795548c3843d5046", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86823,10 +86823,10 @@ "value": 1693581922792 } }, - "revision": "1abe074db5e442d29f8b2720", + "revision": "a55f0758570044ad966c3b94", "revision_nr": 1, - "created": 1701809344970, - "modified": 1701809344970 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86844,10 +86844,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "3416c74eaf1e483a83856066", + "revision": "e605759a0e4b46f9a290aeff", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86855,10 +86855,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1690989922793", - "revision": "33cadf61692c4e88978c28a2", + "revision": "587d26092a96466faaeb28f4", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86898,10 +86898,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "217773d027b2438d9e9a6eea", + "revision": "02410dae46c04cd6af288da6", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86909,10 +86909,10 @@ "content": { "type": 5, "value": "Deposito de um valor 100,00 para a carteira iVip 1227.6483.0599.8103-50", - "revision": "f79d3f5971b049639aa0d241", + "revision": "7b8a56b3a3434a61b4f80929", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86930,10 +86930,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "5c0875c9833f4c708edb5c30", + "revision": "9fd27754902e455e9feab018", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86941,10 +86941,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691006310448", - "revision": "28cda71bfabe47b78dbbde65", + "revision": "e733164aff8945fa87f681b7", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -86979,10 +86979,10 @@ "description": "Compra de 108.815,00 IVIP por 100,00 BRL", "status_detail": "accredited" }, - "revision": "f38c0c5cff5d4d8195f61cf1", + "revision": "cea8a88e9d45480fa5dbe563", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -87000,10 +87000,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "fce4384d9e5b4d8299afbae4", + "revision": "7ad964ab16264c328bf3f46d", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -87011,10 +87011,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691006485984", - "revision": "d85d67268f304548a45e5c83", + "revision": "45896f57946b4e3d956ee056", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -87048,10 +87048,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "e33ae0d151c145d497c43489", + "revision": "467f4f0a00d74e269343c0e5", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -87059,10 +87059,10 @@ "content": { "type": 5, "value": "Investimento de 108.815,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 8/2/2025", - "revision": "37be1acb347f4b388cd3f9da", + "revision": "ae634e2e5a5e4166971fa359", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -87076,10 +87076,10 @@ "value": 1694177260996 } }, - "revision": "186522c7089e4762ad73bd44", + "revision": "b0d29ef5ec0544e1a3071e36", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -87097,10 +87097,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "dc11a9f008954b0ab013292e", + "revision": "174c13edc85f4f6588eae84b", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -87108,10 +87108,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691585260996", - "revision": "9ecd5c993c0d4165b3db8c9a", + "revision": "08b6a887e8ae4bf09453773f", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -87151,10 +87151,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "cc3b1eb065484003ad4612a7", + "revision": "bea5f1770a8e419fae7f8cb3", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -87162,10 +87162,10 @@ "content": { "type": 5, "value": "Deposito de um valor 50,00 para a carteira iVip 1227.6483.0599.8103-50", - "revision": "3da7576aae0e4d8f977fbe8b", + "revision": "959270058f564e5aa5734a2f", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -87183,10 +87183,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "9b829a962143426b9610eed1", + "revision": "b2d6b1c3c63549b0874ab4f5", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -87194,10 +87194,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691589566120", - "revision": "66d59d99f94c46fb970bef99", + "revision": "6f17ebf394ce483899701055", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036409, + "modified": 1702563036409 } }, { @@ -87232,10 +87232,10 @@ "description": "Compra de 76.363,00 IVIP por 50,00 BRL", "status_detail": "accredited" }, - "revision": "fa72bd121327476e89cdfb38", + "revision": "fb85c62224f44dcebf2cd27e", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87253,10 +87253,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "add8adf1da624a8482e4ef5c", + "revision": "c85480e6e2454bb4ae778dd7", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87264,10 +87264,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1691589908652", - "revision": "a6c1d0207adb4e47a9df5993", + "revision": "9ecac1971e6444108630f6e0", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87301,10 +87301,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "b83bdc8763b34224b08ee0c4", + "revision": "2013d1cb20d54c24bd1357fd", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87312,10 +87312,10 @@ "content": { "type": 5, "value": "Investimento de 20.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/9/2023", - "revision": "f34c09e4cf8945368a09a7bb", + "revision": "62b32a07bce8476199fd8c0e", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87333,10 +87333,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "ad4fc2162d5846b38b7e94ed", + "revision": "a479d4b4bb394060bc4bf693", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87344,10 +87344,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694268632615", - "revision": "0dde874aedc74508a3cfb074", + "revision": "45edcfe28615400cb2ecb390", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87381,10 +87381,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "031f3297f49c422a882cae30", + "revision": "a4849728611341ea8e8c0b1f", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87392,10 +87392,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 20.000,00 IVIP com um rendimento de +400,00 IVIP (2,00%) - Y12XDT27", - "revision": "665cff73da214b63bd05a8c0", + "revision": "7aaa99ad16994cbc8e31ac58", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87413,10 +87413,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d5ac775c30c847a0ae3647bc", + "revision": "4ff2b21867074d39a3643aa2", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87424,10 +87424,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694304834658", - "revision": "9d63c54cd9524d61b6905fd4", + "revision": "5946a6e296024f2ba4582258", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87467,10 +87467,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "433e2f354d9e4eff9c82ce21", + "revision": "68642b9074584b7db325dcb8", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87478,10 +87478,10 @@ "content": { "type": 5, "value": "Investimento de 63.131,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 09/10/2023 - Y12XDT27", - "revision": "2164588200034acb869d4eb1", + "revision": "a1bcb02755ed4b90a57fc8c5", "revision_nr": 1, - "created": 1701809344971, - "modified": 1701809344971 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87495,10 +87495,10 @@ "value": 1697308841417 } }, - "revision": "26a5fbac0a634edebadafc83", + "revision": "f30c7f90012a4ceba559008e", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87516,10 +87516,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4a9e035c82be4fa9bd0dfb41", + "revision": "7c2ed88e1bb341dda0948999", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87527,10 +87527,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694716841418", - "revision": "02dd0d569e3d438782fd32de", + "revision": "5c603b2176584d3b8eff75c5", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87570,10 +87570,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "dc55a79312ac4318b91a74c3", + "revision": "58a649b616d44f1888eec2e9", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87581,10 +87581,10 @@ "content": { "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 1227.6483.0599.8103-50", - "revision": "8ffb9b68c4324891962ad4eb", + "revision": "bf28e462550b4eaabd02545c", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87602,10 +87602,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "eaaa627b8eef4023bc0c2844", + "revision": "61be461e3fc2410a8fd66a51", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87613,10 +87613,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694723873975", - "revision": "ca8293f0c18b4bfb9b59fb3f", + "revision": "eec7b6caa4e14a92a1f24093", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87651,10 +87651,10 @@ "description": "Compra de 22.823,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "1075a5bb4be642e78b8c0bcb", + "revision": "aa7fa31874e340c785c10570", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87668,10 +87668,10 @@ "value": 1697477737888 } }, - "revision": "675f522c204648ef906bbcd7", + "revision": "ce810cddbb5242d39d682b90", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87689,10 +87689,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "88598bb69e274e3b99f8c128", + "revision": "9bde735309bb43969f7a6f75", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87700,10 +87700,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1694885737888", - "revision": "c03a1293e9314600a49ab601", + "revision": "9d2b670f1c7a401983123f6a", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87733,10 +87733,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "1caa1076050a4c9094b78666", + "revision": "c1bb0c71968d4a14a1789ccd", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87744,10 +87744,10 @@ "content": { "type": 5, "value": "Deposito de um valor 28,17 BRL para a carteira iVip 1227.6483.0599.8103-50", - "revision": "7a75ca4a3e8c453888f5fc8b", + "revision": "7539f1cfa6334ce480189b92", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87761,10 +87761,10 @@ "value": 1697743250157 } }, - "revision": "de30922f74364dd3beff840e", + "revision": "1cca575fd02a470cace13c6f", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87782,10 +87782,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c38d1c458694430cafdb81ab", + "revision": "5643841b397d4d9bb5bbb07a", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87793,10 +87793,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695151250157", - "revision": "3614ffd1bee74e6c8e936def", + "revision": "9516ca66432047d6aab9abb7", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87836,10 +87836,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9df378c28c4b41f5916a5224", + "revision": "ab5b08c45896436bb8182ff9", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87847,10 +87847,10 @@ "content": { "type": 5, "value": "Deposito de um valor 29.370,00 IVIP para a carteira iVip 1227.6483.0599.8103-50", - "revision": "f0ebc33cd18c443a856dbee7", + "revision": "909bd7f92e714dc499bfca40", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87868,10 +87868,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "bb7ad5f8196b4e11a36716c8", + "revision": "05ab55a6cfe043c982447ca5", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87879,10 +87879,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695152833307", - "revision": "dd69d38edb9a409989bc5d19", + "revision": "4a64702d4fc841c7b9915d01", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87922,10 +87922,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "caf2ebce64c841aa845d8d81", + "revision": "3870696c271a48bf93db8b64", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87933,10 +87933,10 @@ "content": { "type": 5, "value": "Investimento de 36.455,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 19/03/2024 - TJE1IB7H", - "revision": "c8ba24b66698408bab43919c", + "revision": "dfd73a9e848b49598638eed1", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87954,10 +87954,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "9fc71e018b85467fb212ebd5", + "revision": "08ccd393f23f4e9cb5f04adc", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -87965,10 +87965,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1695158486667", - "revision": "8e609daaefdc49c0990ab30c", + "revision": "e3e2d0f7213440118af4f767", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88008,10 +88008,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "3c9b6b65b0744ccfa53f4c53", + "revision": "76d4f972264441808c26b81f", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88019,10 +88019,10 @@ "content": { "type": 5, "value": "Investimento de 29.370,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 19/09/2024 - CLSMJY90", - "revision": "446b0c07fd5745529a617ce2", + "revision": "1000d26e47f04ac898dba923", "revision_nr": 1, - "created": 1701809344972, - "modified": 1701809344972 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88040,10 +88040,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a31f2c324aed473c8692adc4", + "revision": "83850ffe1baf418d9be2b969", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88051,10 +88051,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/122764830599810350/history/1696466013923", - "revision": "c548317c955544b3bf879303", + "revision": "b9e641f2da97449d83783b91", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88089,10 +88089,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "d0c1441eb6c94a1d8d0e7538", + "revision": "d9b69bd0d06a4f0a811045e1", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88100,10 +88100,10 @@ "content": { "type": 5, "value": "Investimento de 128.956,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "3591f22956f541a899b14e93", + "revision": "5439c413bb0149b1ac886503", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88111,10 +88111,10 @@ "content": { "type": 1, "value": {}, - "revision": "563c0834f77b4596b80d4c40", + "revision": "0791c94997b2453aa12a40cf", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88122,10 +88122,10 @@ "content": { "type": 1, "value": {}, - "revision": "b8f388f5d0504edda2c107fa", + "revision": "7bc9e9a6f8a74e50a3d88c0d", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88136,10 +88136,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "6d11263731784e1cb2a7e30a", + "revision": "b13051660b9f45ba8052759a", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88155,10 +88155,10 @@ "value": 1697338800000 } }, - "revision": "bd9694e9cf984df1876f3bf2", + "revision": "fbfaa0b7fa32400c909ffb14", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88170,10 +88170,10 @@ "symbol": "IVIP", "value": 789.35 }, - "revision": "b9375ab77d3141709a6f2ee8", + "revision": "4fa8ce41bdb14dd7bc5c71af", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88181,10 +88181,10 @@ "content": { "type": 1, "value": {}, - "revision": "65c124c5ab9043b1a21c23ef", + "revision": "d14be903dd8447c6b4521c86", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88196,10 +88196,10 @@ "label": "Taxa de 1.00%", "amount": 5 }, - "revision": "d4f8b47833db43fa9a56ee13", + "revision": "6a64b2d3e2774e04a5270fec", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88207,10 +88207,10 @@ "content": { "type": 1, "value": {}, - "revision": "cdae9d070754417fbfecaf60", + "revision": "6e1cd33f46f941d296c924ee", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88220,10 +88220,10 @@ "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "e8eab1498443438abb49641f", + "revision": "16470419e82643caaa96715b", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88231,10 +88231,10 @@ "content": { "type": 1, "value": {}, - "revision": "e4fc6ec189d94000a89dc4a4", + "revision": "5d9c07adca8e4e2b84ea9d24", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88248,10 +88248,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "fa5cf62aebc648b8aea416aa", + "revision": "0586a2fbc2b94f18ae46298c", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88259,10 +88259,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/payments/55900907390/ticket?caller_id=1310149122&hash=b46698ba-1661-4287-87f2-802c80f36c71", - "revision": "23303c20085949bca259d5f9", + "revision": "90058643a815406ea77942db", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88270,10 +88270,10 @@ "content": { "type": 5, "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406505.005802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter559009073906304E54F", - "revision": "e53c2f8e88e9428b935f8c74", + "revision": "dc1de5780f744075a6fd8430", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88281,10 +88281,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI3UlEQVR42u3dUY7jNgwGYN3A97+lbqAC7WITi7+UdFsUXevLw2BmYkuf/UaQItv4jT690dLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tL++9o2f64f//vx7fXzkuvnHddfi7Tpt9dt79fdNvrz4h8/Rrl3YtDS0tLS0tLS0tLS0h6indasqNfq7yv19wcq5P6+83Tx68f7bQsGLS0tLS0tLS0tLS3tEdr3AHIyTtAX5bXZ9AS9xeRhWmDatzBoaWlpaWlpaWlpaWmP1Y57nPjaZ5RYb4oTp6xd/rPGk7S0tLS0tLS0tLS0tLQt3TqRX3FiobR7Ou/2uClbOF1MS0tLS0tLS0tLS0t7tjbj07ZVNq0+/ZYeY3PE7ldqRGlpaWlpaWlpaWlpaX937WLv//rHP+ipQktLS0tLS0tLS0tL+ztr958SVKbiyikcrCWam1UWR+fue9DS0tLS0tLS0tLS0j5buyia3FRi3u7dx6KlTnNqOjnClIBNdo+WlpaWlpaWlpaWlvZ52tRTfwr9Xp6prWQpuGzhi15qLV8vaDocl5v809LS0tLS0tLS0tLSPltbAC142uc/P0aW03uYNk8T2GhpaWlpaWlpaWlpaU/Ublo+jk0OrlRdXuF/y6rLOlB7W3VJS0tLS0tLS0tLS0v7KG1qzz+Fg+WLser5P8JEgF54OW9Yw1BaWlpaWlpaWlpaWtpDtK0cV0tJvLRw7k2yGIBd3kMPT5/xtLS0tLS0tLS0tLS0z9ZO46db6eeYz7ZNHUna/XGXSby+maX99dk9WlpaWlpaWlpaWlraB2lzhq7duz32kMnrIca8cjOS8kau/JZSsxRaWlpaWlpaWlpaWtpztMviyuIepelkplylHHOaIVDqPkdw09LS0tLS0tLS0tLSPl07Nq39U8f9svdVEoCpCDMXZvYw263teqrQ0tLS0tLS0tLS0tI+Tbtppz9ycFd4U9FkyyMApi2X1Zlfz4ajpaWlpaWlpaWlpaV9hnbZRuRThu4q3frTPOw8EWB6tBGSgrS0tLS0tLS0tLS0tIdpdyfVcjFkjQlLFLk4XZfzgVOyj5aWlpaWlpaWlpaW9hzt2IZ+S9kojf/zoy3yfOlIXH4jtLS0tLS0tLS0tLS0T9f27cG1EXpBVsr7dWMzKmBZsbkJV2lpaWlpaWlpaWlpaZ+uHe/JuU3BZSvdR0oEOkozkoJvYQxbDSo/xLy0tLS0tLS0tLS0tLQP0qaWj2ls2nTHMnX3aYE0261mBmlpaWlpaWlpaWlpac/RptBvGQQuY8cpFi0D1K5Qsbn8s3/I7tHS0tLS0tLS0tLS0j5KW8odF1HfVBGZYseUBdyEoa30JslzBWhpaWlpaWlpaWlpaZ+u3e94rQouez4rV+LOXf6uaOs7pKWlpaWlpaWlpaWlPUJbPtPqqaFI7eBfnm95nO5aVXvWzWlpaWlpaWlpaWlpaZ+vTZPVFmWW0+o5REy5v/0ct2V4SUtLS0tLS0tLS0tLe4r203Dq21G3gr9Kt/5y/K1vJmOnTv+0tLS0tLS0tLS0tLTHasv/Uv6urYav1YLLzfG32pFkuo2WlpaWlpaWlpaWlvYI7bL+chlFTtm9VFKZjrqlcHVfsUlLS0tLS0tLS0tLS3uEtsh6PJC2WLOFrv4jVFN+cUdqHElLS0tLS0tLS0tLS3uANt1QTsP1+z4pErzCxLRbQLoMV3PnkouWlpaWlpaWlpaWlvYY7VhVRNZL9vhkLLddIXpNv9HS0tLS0tLS0tLS0p6j7ZvyyXLy7Sr9RVL3kem3slvtXFIWHbS0tLS0tLS0tLS0tMdoxyZ2zOWT1yp2vFbavnqCvgolaWlpaWlpaWlpaWlpT9FOQdvUWiRfUhN2UxD41VC1VOOZtqSlpaWlpaWlpaWlpT1AWzqI1ALJokh1mv0eNvb7ZLXF4bgUwtLS0tLS0tLS0tLS0p6ozaOwF4WUm0Nvo+T+Unya8O/L09LS0tLS0tLS0tLSnqNt4XzaFZbrOZRMJZpf4ds27qSlpaWlpaWlpaWlpT1F+37tKAFkif96blqSk3g1UVj26KtVaGlpaWlpaWlpaWlpz9H2MgV7SrVN5MmzHHa9LNacXlAuwhy0tLS0tLS0tLS0tLSHaL844FbajaTayFE8qZ4zj8eevr2+PrtHS0tLS0tLS0tLS0v7HG25oqXQrwSGtV3k+wIJX5/5c1BJS0tLS0tLS0tLS0v7ZO0X06hTni/9SKfmVgPU5iNxpfTyoqWlpaWlpaWlpaWlPUY77ifQFq0cywC1NCyth/TgyFWXuVizjmajpaWlpaWlpaWlpaU9QpsrLFOGboon02fxaCXtt2jyv626pKWlpaWlpaWlpaWlfZ62RG59M0/tfbm88HxHSd2ladkjdKgctLS0tLS0tLS0tLS0h2iXMdw+EZdiwvLFwrh8Bekd0tLS0tLS0tLS0tLSPl1bwsGe56Sl2sgSbY77+bmeU4GpjX8JYWlpaWlpaWlpaWlpaQ/TtlV/yNZqyHndizX39Zcty/ahJC0tLS0tLS0tLS0t7Tna9Nk0f+z3SLCHBGAqx0xFnVeIVOu7oaWlpaWlpaWlpaWlfbp22WRkGfotuz2WYs22fbSem1N+GfPS0tLS0tLS0tLS0tI+R3uFAHLqNJI+PWfjUnHlp2aSfyeKpKWlpaWlpaWlpaWlfaQ21VqmwdbpgFupnGylGUl5oKtMYFvGp7S0tLS0tLS0tLS0tGdqF/m2NPa6hINpZtu1qbrMY91oaWlpaWlpaWlpaWmP15Z9anYvdfXP4eAUfH5XwElLS0tLS0tLS0tLS3uONq/USkXkVBZZqjPT7Otrcy4unbP7tdNwtLS0tLS0tLS0tLS0v7G2Fj7mQ2qLwdZ5IFvlLedcv7+CXt4SLS0tLS0tLS0tLS3t07X//w8tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t7b+m/QNO7FsdSE0lWQAAAABJRU5ErkJggg==", - "revision": "cf09da1aebce4b68926df25e", + "revision": "9258f20d2e9f4551a2211cb1", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88292,10 +88292,10 @@ "content": { "type": 2, "value": {}, - "revision": "5f05acb0fcb44267a712763a", + "revision": "b75586fce1114ed3a9bff1d4", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88337,10 +88337,10 @@ }, "wasDebited": true }, - "revision": "afccb24802b846cd8b4429ab", + "revision": "b9ddd92fe7d540aca9792555", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88348,10 +88348,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "15658dc3797345c5ac98e896", + "revision": "7a0935a9eedc40d2bd2a2c90", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88361,10 +88361,10 @@ "value": { "costs": {} }, - "revision": "1e011d9b446f42509e7e90b5", + "revision": "2cb75093db7748a794a4187e", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88396,10 +88396,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "a90a928e582a432587f78364", + "revision": "6c5a0d78094f4945a6a3f3f6", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88407,10 +88407,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 505,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "600a409ba0d640d9b407552c", + "revision": "4f5e7d9049e4437381efd595", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88420,10 +88420,10 @@ "value": { "costs": {} }, - "revision": "bef292770812424e9cbd6464", + "revision": "b498f236294e4432aaa2bae0", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88455,10 +88455,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "836074900c364811ab68fea9", + "revision": "6559ec2b6c2646f783a27e3d", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88466,10 +88466,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 505,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "caf67c83453a467ead5e4d24", + "revision": "6b3edafef05b484cbeeabb21", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88481,10 +88481,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "3da651dbd3f84c5ea9076466", + "revision": "864a029bba9644f6823a475a", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88492,10 +88492,10 @@ "content": { "type": 1, "value": {}, - "revision": "8e45a5b5f1c44e1fbf0d2039", + "revision": "88bc99d47582427eb19f10e6", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88503,10 +88503,10 @@ "content": { "type": 2, "value": {}, - "revision": "7dd68bd41a6b4c5f96ae6103", + "revision": "326ebf2619d949d9852dc1b2", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88539,10 +88539,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "ef750c0f187844668c74e259", + "revision": "c8d3a588a99240c3bbf1d15d", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88550,10 +88550,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "9b2e22797aa34d63bfa77f51", + "revision": "d130ac792e844189a1b03921", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88573,10 +88573,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "8a2bb910f6e34ce5af5ddd04", + "revision": "df6cb2b10845447a80aa2c66", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88612,10 +88612,10 @@ "history_id": 1679266956838, "description": "Compra de 11643076 IVIP por 2000 BRL" }, - "revision": "aa62206f2a9944f09800f42d", + "revision": "46678c0423d2491597a6058e", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88627,10 +88627,10 @@ "label": "Taxa de 1.00%", "amount": 15 }, - "revision": "592c931f75d3426894134c1a", + "revision": "5df9ab6a693e4dcc9960cb71", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88638,10 +88638,10 @@ "content": { "type": 1, "value": {}, - "revision": "a4f6b73c7fd9400097a0798b", + "revision": "34d846f31bec40ffa72cc1de", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88651,10 +88651,10 @@ "value": { "account_holder_name": "zBCfpF dcGeyDOq lplNs" }, - "revision": "daff287f23a4494f8e58cb38", + "revision": "12c120bd5c4c4bebbc9e9d09", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88662,10 +88662,10 @@ "content": { "type": 1, "value": {}, - "revision": "91e9f4de645b453a800064a8", + "revision": "27e3fe82d3a94cd08ccff0d2", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88679,10 +88679,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "700b8c982c9940d891d291f2", + "revision": "d00112cabf874379b97f2b2c", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88690,10 +88690,10 @@ "content": { "type": 5, "value": "00020126580014br.gov.bcb.pix0136b76aa9c2-2ec4-4110-954e-ebfe34f05b6152040000530398654071515.005802BR59115774IUCkUzT6014PiVm MZqBPUzMI62230519mpqrinter131358707763045A2A", - "revision": "0fadd967bfb84005a283c3de", + "revision": "3b19098032a14452ac2834e6", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88701,10 +88701,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/sandbox/payments/1313587077/ticket?caller_id=1310149122&hash=b6d8c471-76bc-44da-bf9f-76b5ae753314", - "revision": "87df646cb9f847c5a9b4bc2b", + "revision": "ec701ccf4a26472582c060da", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88712,10 +88712,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIxUlEQVR42u3dS24sKRAFUHbA/neZO6DVE7uSuJC29NTql5wcWLarCg41C8WHNv6i52q0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9e2+an//u//vVCD+/7/t/t1X8Xbt+/3Xe8vXB9rXJ9bVkZtLS0tLS0tLS0tLS0h2j757Kfi7SvHa+y2Oe20+rjftzWWn5h0iYGLS0tLS0tLS0tLS3tKdopgCwxZi/H+P7YFAl+LjrFmCO8ZRG40tLS0tLS0tLS0tLS0s4LT3m5DF1Gm2PzFdDS0tLS0tLS0tLS0tLGaC7FfyX3l4omezlf+jHl/mhpaWlpaWlpaWlpac/WJnwqqSyUkbvmSiPcRNk11v26RpSWlpaWlpaWlpaWlvZv105PSrr9Fz8qg5aWlpaWlpaWlpaW9ghtftKUkp6njyyjyBJ83tKD3ys/W2hpaWlpaWlpaWlpad+tTS1sYzPjMeX+Svy36JqbTj812+VkHy0tLS0tLS0tLS0t7bu1U/vbZ8/a2M54bE+DI5/qOWvtZo4saWlpaWlpaWlpaWlp362dXky3rZUDlTCv5VvUUjpvbMjP3XC0tLS0tLS0tLS0tLSv1V5hGEldczKmUSXt+ZnGT+6PRktLS0tLS0tLS0tL+35tLb0s+DTIpLW4Sknn9fCW1F3X8zdHS0tLS0tLS0tLS0v7dm2J60a4O60VfIkdpwrL1BzXSspw+qoKlJaWlpaWlpaWlpaW9gBtqrWcMm/Lt5S9p+gwJQUXZykRbaelpaWlpaWlpaWlpT1Le9t7H1TmVGCtoSxHu5VyljxfW4WStLS0tLS0tLS0tLS0b9dO4/l7TvtNKb7SCFc3S1cApHGROcakpaWlpaWlpaWlpaU9Rbu562y6CntqZltUSeaYsAVtmur/XCNKS0tLS0tLS0tLS0v7Nm1pa2sh3zZRegg+02/1Hre0wNNXQEtLS0tLS0tLS0tL+25tKrgsP1Lp5dj2saUL1GoomUovaWlpaWlpaWlpaWlpz9T2kpfLJ6jFmvtXS3Hl4n62H1dd0tLS0tLS0tLS0tLSvk37WfOYoshbTi+dJX227DjC3QATvgcoLS0tLS0tLS0tLS3tAdrp858fWGbe2r3gcrltC4FmHReZj9tpaWlpaWlpaWlpaWlP0uY03dVidWa5T20U7eazLaQCR+69o6WlpaWlpaWlpaWlPUKbP5Xm+48QY44QXvYckOaPjXLwQqalpaWlpaWlpaWlpT1AmxQ/OEsJJcc9IJ0+ews5U1Iwb05LS0tLS0tLS0tLS3uOtowHaSmKLP1uV7n7Or9lcl8h2feb29ZoaWlpaWlpaWlpaWnfor3KtqV7rd1jvZFvUfv8s+UxJ+mqgNQDt54eSUtLS0tLS0tLS0tL+zbtBCjx5OJy6rZ9cjVlz8m+tC8tLS0tLS0tLS0tLe1J2kWIuOyBKym+Vo6Rkng/iBhzxSYtLS0tLS0tLS0tLe27tVO9ZJngvwwl64656jJNPembaZTbKJKWlpaWlpaWlpaWlvaN2rHZO//Zwsj+dLv1op1uWbGZ0oi0tLS0tLS0tLS0tLTv116ryslpUH/LCy8jxpKru0qHXP5so6WlpaWlpaWlpaWlPU5bqh/rVMhcp1mPtprM3z5PsIhek4WWlpaWlpaWlpaWlvb92nGXLeLJMpl/QZ7+l05QIsbabEdLS0tLS0tLS0tLS3uiNk8pSWHefox/OlrfjPZPCUBaWlpaWlpaWlpaWtpztBMqdb6V6SP9noibetvafap/zf0l9xRZ3r9IWlpaWlpaWlpaWlra12tzTDhWN6ZNb9ll91IomWo8N4WetLS0tLS0tLS0tLS079amqsuS9mu5YW5qk5uWSqWcm5EmKVKlpaWlpaWlpaWlpaU9QnuVhrT0v1/dojYVUqagspzvhzWitLS0tLS0tLS0tLS0b9OWHFwrfXHLGLMMI9nxylI9R68lNKWlpaWlpaWlpaWlpT1AWwofa4RXeuAWRZMb/CZ/V8ec0NLS0tLS0tLS0tLSnqKddpy63KZgMe/Tw1lavqktJwp7+dK2NaK0tLS0tLS0tLS0tLSv0paF04513Eiqklz2yk03qz1FqoOWlpaWlpaWlpaWlvZUbdtUP24630YIKlsYVdJztrA8nZaWlpaWlpaWlpaW9kBtSr+lt0zXprUyy3/Ep9ZVbsf4P90NR0tLS0tLS0tLS0tL+15tuk+tFGb2VQRar00royFTsm/ky7hpaWlpaWlpaWlpaWmP0Oaax5pqKz1rt7ekS9UKL838H+F8g5aWlpaWlpaWlpaW9izteOp8K1tcgdxCsNg2U0o2i3ZaWlpaWlpaWlpaWtqztI8j9qcOuRafdHfalfvsUnPc5qGlpaWlpaWlpaWlpX27dpnOSzumESRTmm7kWwLK0JLFbJISfNLS0tLS0tLS0tLS0r5bu+xjKyP26wT/ZYqvRJZjlQpMgesmiqSlpaWlpaWlpaWlpX2ttpVpISmxl96SKDkgnQLXNNX/R7dg09LS0tLS0tLS0tLSvkqbnkyukWWpuhyfsk9Pz9e1lUXbQxRJS0tLS0tLS0tLS0v7Pm0O/RY7bmLHGjE+RZEtJwqnmJWWlpaWlpaWlpaWlvb92l6SbulHiR1/VqI5nbQUV/46iqSlpaWlpaWlpaWlpX2lNod0uy1SnLitnGz5a1mEsNsokpaWlpaWlpaWlpaW9hTtbqXcHPcZ+rXtxdZtP2qSlpaWlpaWlpaWlpaWNib7SlLwyiP7px64Mv2/hVvZan6RlpaWlpaWlpaWlpb2HG3Cfy88FUPmLRZzTaZ84PKStvxl0NLS0tLS0tLS0tLSHqGtSbwy0L/lELHk6q486yTNoJwWSNdt09LS0tLS0tLS0tLSHqH9/z+0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tH9M+w8PIVl9AL56yAAAAABJRU5ErkJggg==", - "revision": "61f7c7c7d8a04cf591d8855a", + "revision": "d0e896b320c0429d9916c260", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88723,10 +88723,10 @@ "content": { "type": 2, "value": {}, - "revision": "6672682ab4b443f8bac6eb37", + "revision": "be396fe0d94745fc97c63862", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88759,10 +88759,10 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "66db88dc959f4c279a4fdf7f", + "revision": "eb933a40f4074936a2e5c6ce", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88770,10 +88770,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "70f06c6541fc4ef9b79e4b75", + "revision": "1436b8f4f73643d6a095ea6d", "revision_nr": 1, - "created": 1701809344973, - "modified": 1701809344973 + "created": 1702563036410, + "modified": 1702563036410 } }, { @@ -88783,10 +88783,10 @@ "value": { "costs": {} }, - "revision": "92157324cde84c4182544966", + "revision": "6a4d646fff21443a8d3b7260", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88828,10 +88828,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "ea4cd8d9faba4f56beca3222", + "revision": "cef3539f45c145ac9e3d81c3", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88839,10 +88839,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "f357577b664e47c9b31fffd4", + "revision": "41d8e7e119b742b78f5f0032", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88852,10 +88852,10 @@ "value": { "costs": {} }, - "revision": "5803c4bb52b24936b9226cf1", + "revision": "5efa51a592da49d98a745278", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88897,10 +88897,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "277e5ec8e20f419298762f02", + "revision": "9a66051554cf45c382052a80", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88908,10 +88908,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "58e9eb40185e45d7a68583e7", + "revision": "4742caa0434a4de698a0aa3e", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88931,10 +88931,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "6911b018bd7b4225ba24cc4e", + "revision": "3c423f5e6dab4f4e862f4786", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88970,10 +88970,10 @@ "history_id": 1679872088470, "description": "Compra de 10.651.254,00 IVIP por 2.000,00 BRL" }, - "revision": "bca08e21770d40b2936d5094", + "revision": "9b702fe53be64c65aec1c357", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -88983,10 +88983,10 @@ "value": { "costs": {} }, - "revision": "98cf453adbec4c45934bad99", + "revision": "b254f648035d4274bac25e6a", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89028,10 +89028,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c38692b461e941679e78837b", + "revision": "e55b37f44b834f818d035635", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89039,10 +89039,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "3ce682f85d0a400fb7dc474a", + "revision": "77fe9001349943f6a2adeb5a", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89064,10 +89064,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "49b1e8511f6a4d8baaaad6b7", + "revision": "88a09a707ca04350b8afebb9", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89103,10 +89103,10 @@ "currency_id": "BRL", "history_id": 1682640956216 }, - "revision": "e1b361f9a3ac4705aec46d1d", + "revision": "fbbe21e3c9eb40b08940cb22", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89114,10 +89114,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "067fdaa03aa24621a21010ce", + "revision": "c6c995eb7f4746c590ac838c", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89139,10 +89139,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "721285b78f1240ebaa4fe207", + "revision": "d16119bd2e3a47b2a0bc6d88", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89178,10 +89178,10 @@ "currency_id": "BRL", "history_id": 1683194553322 }, - "revision": "0fcca629957045e78007b1a5", + "revision": "1fda55ef8d334ef2b2be0e04", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89189,10 +89189,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 3 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "7ed0e0df4a964e6c90bdcf15", + "revision": "99dd248789f544a9a7ca8a4b", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89212,10 +89212,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "22296c88d6484f97b12a595d", + "revision": "3a82a5e29c0b42feb53e1203", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89250,10 +89250,10 @@ "currency_id": "BRL", "history_id": 1684019013862 }, - "revision": "768988d03a3d435d95ea86f0", + "revision": "06ef040a2dfb480a97015d2e", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89261,10 +89261,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "d8ebcc198db94a4aba073a36", + "revision": "00b85ef625fc493ab7a2cab3", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89286,10 +89286,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "d985de6cd40f4264bd1fda1f", + "revision": "ed5311f1a1274586aed15db0", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89325,10 +89325,10 @@ "currency_id": "BRL", "history_id": 1684155209634 }, - "revision": "ee69609a0bcf481f8a9e5678", + "revision": "f96455e3acd64f1a98b3f112", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89336,10 +89336,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "c5224958c1ee4ce79432db4f", + "revision": "c0abdca606354c5eb3fec3d7", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89351,10 +89351,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, - "revision": "be6ff5ea49de4dbfb6ae7846", + "revision": "745f522d5dda4741a45fbc3d", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89362,10 +89362,10 @@ "content": { "type": 1, "value": {}, - "revision": "bb2f909ec92b49739594ceb7", + "revision": "1156a047ff5247e7b8f6002e", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89373,10 +89373,10 @@ "content": { "type": 2, "value": {}, - "revision": "15725386bf154ceab3ee92b2", + "revision": "94d63312b65a4b6a8ebe2781", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89409,10 +89409,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "d5d06bc14b6940af9fb2d9a2", + "revision": "f113831313a54a788f44f207", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89420,10 +89420,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "00c3c5262ca5484d8f133c51", + "revision": "a2395192ebf24238b10bfec6", "revision_nr": 1, - "created": 1701809344974, - "modified": 1701809344974 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89443,10 +89443,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "c772145255df46958420af9c", + "revision": "c9fb9c13e0e14e479e93fb89", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89481,10 +89481,10 @@ "currency_id": "BRL", "history_id": 1684348943785 }, - "revision": "60096ef859254994bcf40fd3", + "revision": "b88d2a43ae8a452796baa94c", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89492,10 +89492,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "abe1b522a6fe438ba7a3a0b4", + "revision": "b0559adfd14643fab60616e1", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89515,10 +89515,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "c5db156841ad4393b1cf02e2", + "revision": "58dc5c77d15c44a981259ca1", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89553,10 +89553,10 @@ "currency_id": "BRL", "history_id": 1684624245338 }, - "revision": "84399282bf7348f7b5690f32", + "revision": "cc48b763c2134f86a941a0d6", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89564,10 +89564,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "83595ab806374d5ca75c8027", + "revision": "ed96b159aa9b4281b697faf9", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89587,10 +89587,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "0f47757f4be44a64924c30ae", + "revision": "523c3190a84546cea8694af6", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89626,10 +89626,10 @@ "history_id": 1684624330381, "description": "Compra de 11.552.888,00 IVIP por 2.371,90 BRL" }, - "revision": "fa3cd4d83b9f44359ffe7add", + "revision": "1a1c9adef6e94e809d01139c", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89639,10 +89639,10 @@ "value": { "costs": {} }, - "revision": "c1af9e18379b43ea84ec825a", + "revision": "c9434a623c8a4744b597a801", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89674,10 +89674,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "0eb8b7b151694c9eb273a7d5", + "revision": "70161278c8fd48c482b15bc3", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89685,10 +89685,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "9427fab8975447acb550226b", + "revision": "c94f980984e04020bb406011", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89698,10 +89698,10 @@ "value": { "costs": {} }, - "revision": "4928910c582f43168c76cd86", + "revision": "877559feba9a4b0c9ff1eb83", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89743,10 +89743,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "71b28c9517a44fa69fbb8f4c", + "revision": "f2c060392cba4df0ac2f964f", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89754,10 +89754,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 162,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "0c3eaaa2876a4b958b0f96b2", + "revision": "52bbb1040f6340bba40308ff", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89779,10 +89779,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a4192e134de14aad98fe1e82", + "revision": "ed1a336bfb11450cb2b936db", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89818,10 +89818,10 @@ "currency_id": "BRL", "history_id": 1686839367288 }, - "revision": "04f9a74486f14b92aa370889", + "revision": "fb58ba678ae544438c8569e8", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89829,10 +89829,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", - "revision": "802a54611d5f47b5b6592bdb", + "revision": "e8c6e051174a4edbabca5898", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036411, + "modified": 1702563036411 } }, { @@ -89852,10 +89852,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "08ef180c3dab42aaa535089f", + "revision": "5cadd39bebd34b9ba805316a", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -89890,10 +89890,10 @@ "history_id": 1687526304583, "wasDebited": true }, - "revision": "b010d37ad16f420c9ded0d3c", + "revision": "8307bb6b8fbf4c17bec2f64c", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -89901,10 +89901,10 @@ "content": { "type": 5, "value": "Investimento de 5.132.122,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/23/2025", - "revision": "2192c33fef5c4c75a2153d7f", + "revision": "72ce1f518e694bdf83c3657d", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -89918,10 +89918,10 @@ "value": 1693646965462 } }, - "revision": "c8a98ed075594b12948efd71", + "revision": "878082b1d79a4a8aae6a1cda", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -89939,10 +89939,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1a7772cccfbe401d80baae50", + "revision": "0fc229ff75b2421ca6acffcd", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -89950,10 +89950,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1691054965462", - "revision": "892c03e4363d47119afbbf27", + "revision": "ec2fbc8a52e34d2aa9ee2e9a", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -89993,10 +89993,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "c402e051ad5847d392d25e6c", + "revision": "c6ab8d0173c140deabbb0c40", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90004,10 +90004,10 @@ "content": { "type": 5, "value": "Deposito de um valor 510,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "18187ebf0cdf47408fa5c131", + "revision": "8dd8e1e05bb34ea9b19f68af", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90021,10 +90021,10 @@ "value": 1694044211694 } }, - "revision": "4cf0ec2688774e53bc5ed7bd", + "revision": "171f408041f04feda61e9355", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90042,10 +90042,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7014e6ad07794f2384f9cb75", + "revision": "180718cb8f8d4b49ad51d01c", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90053,10 +90053,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1691452211694", - "revision": "e7e64968692d498191589fb9", + "revision": "521f4d8225034691a51dbc33", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90096,10 +90096,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e1b58e79c13f4433a1ff79dd", + "revision": "b260e8179a25451da10748b8", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90107,10 +90107,10 @@ "content": { "type": 5, "value": "Deposito de um valor 300,00 para a carteira iVip 1251.9390.3817.0948-30", - "revision": "9389c63debb24355955be2ab", + "revision": "aa3d3a2aa87c4b8fb1fd9def", "revision_nr": 1, - "created": 1701809344975, - "modified": 1701809344975 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90122,10 +90122,10 @@ "label": "Taxa de 3,00%", "amount": 750698.52 }, - "revision": "80f08138ee2642ea80865920", + "revision": "e6b2743f705249e7b3a8df0c", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90142,10 +90142,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "95d5a311249446de84d46861", + "revision": "16792487a8e64bf1ab668d3f", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90153,10 +90153,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1692030522501", - "revision": "4eaf5154d5c047838a6caf60", + "revision": "ddba9537bee54aaa845674ab", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90164,10 +90164,10 @@ "content": { "type": 2, "value": {}, - "revision": "ce27789073354fe5aac0f4f0", + "revision": "b5ccccce6bbe4ca6ad6fe8db", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90211,10 +90211,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "b4ef47c709f74e97b1db26e1", + "revision": "91a55b4c88e24f5faef35fd4", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90222,10 +90222,10 @@ "content": { "type": 5, "value": "Saque de 24.272.585,48 IVIP para a carteira 0xC241a13f35a534f3ef174c5cF50Ea8653FfE62F1", - "revision": "a353ac8533ca4e97b38adde2", + "revision": "16f65db6346d4959850d0de9", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90239,10 +90239,10 @@ "value": 1697750847215 } }, - "revision": "6b014ce0b4c941788861f7f8", + "revision": "be008311866748fa86a71005", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90260,10 +90260,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d0b783f467384ad084492ca5", + "revision": "5830925074da4f0b98773667", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90271,10 +90271,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695158847215", - "revision": "21a395d862874c60bf2b3829", + "revision": "35cbb9ba186448afbf3fae65", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90314,10 +90314,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b0ac87b1eb2a47249da0d197", + "revision": "b60f6380dea040608d0fcfb6", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90325,10 +90325,10 @@ "content": { "type": 5, "value": "Deposito de um valor 150,00 BRL para a carteira iVip 1251.9390.3817.0948-30", - "revision": "4c003fe7ee7d4950be62e46a", + "revision": "356d7c71297d482580f0efe3", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90348,10 +90348,10 @@ "installment_paid": 4, "installments_payable": 1 }, - "revision": "4c04621d28d242d49ae8d314", + "revision": "2549ca1e45474491b73aee84", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90359,10 +90359,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884735", - "revision": "667d86e05e50418aaaa83c7c", + "revision": "66d69d0d05584f798e134fd9", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90396,10 +90396,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "a2f3e3d3370e48beb9dcbd57", + "revision": "5e2cea8633b34a4bbdd63c54", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90407,10 +90407,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 4 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "b0d1802df7f04efe8305678f", + "revision": "d8297700f8784250b91d882a", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90430,10 +90430,10 @@ "installment_paid": 2, "installments_payable": 2 }, - "revision": "744d4c0bb1aa4c26829f773b", + "revision": "8e5d68878bc24ce7a5ee3b9e", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90441,10 +90441,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884797", - "revision": "5d5875243fa74a799dc746d3", + "revision": "6d51a0da1c5442f7b0c9adaf", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90478,10 +90478,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "46ccf3fe6bfe41a1aac63328", + "revision": "9c3760cd885042ceb7285ca3", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90489,10 +90489,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", - "revision": "5fcce70a0aa344d7bf013f19", + "revision": "6bda856bbcca415d9e14885a", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90512,10 +90512,10 @@ "installment_paid": 5, "installments_payable": 0 }, - "revision": "d2b8ea0de1d3459aa3e7de59", + "revision": "9f44734902be43a78b8d9f9e", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90523,10 +90523,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884893", - "revision": "ea37df2e96694523a44bad27", + "revision": "d6d27c2d7494465388b6402e", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90560,10 +90560,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "4b8d7110100141b19fddff42", + "revision": "a103093a2d2746a5b744e962", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90571,10 +90571,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 5 de 5 no valor de 220,00 BRL referente ao contrato 1679263150490", - "revision": "618a1e47aecd467db381bd2b", + "revision": "6664c2dd06ff400582066de1", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90594,10 +90594,10 @@ "installment_paid": 3, "installments_payable": 1 }, - "revision": "390570a5580b49259181b407", + "revision": "60a0d3e0878a4c978e74443a", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90605,10 +90605,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159884951", - "revision": "9e4efe0ce34d4fab8d143879", + "revision": "6983bca8c5834f48b5f08992", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90642,10 +90642,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "743507fb04804ae59d28e386", + "revision": "071645d6169a447b865e7cf4", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90653,10 +90653,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 3 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", - "revision": "bed4fc0b5e2c4a18805881c2", + "revision": "b5a4c7fc67e34fca9897d3ad", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036412, + "modified": 1702563036412 } }, { @@ -90676,10 +90676,10 @@ "installment_paid": 4, "installments_payable": 0 }, - "revision": "95098b72520545099eb0e5b0", + "revision": "5af242acb0b2404a82c8cd0e", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -90687,10 +90687,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1695159885077", - "revision": "757aa8dca1664f9eb3c1e3f4", + "revision": "1b1bb84ffe3e49e7aa1349c8", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -90724,10 +90724,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "f85bfe42125d4fa1ba5f801a", + "revision": "293a243abe2b48308a315544", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -90735,10 +90735,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 4 de 4 no valor de 162,00 BRL referente ao contrato 1684158510574", - "revision": "c4adafd222dc43e392b98bae", + "revision": "a4a87890988946b19445715e", "revision_nr": 1, - "created": 1701809344976, - "modified": 1701809344976 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -90752,10 +90752,10 @@ "value": 1698764022012 } }, - "revision": "cfc71a9cdcab443a94dc4740", + "revision": "2c91fcc80a30428088ba5183", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -90773,10 +90773,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "33b8aba054db40d1929c4f18", + "revision": "1393f05bece9423bafdaedbe", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -90784,10 +90784,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1696172022012", - "revision": "31f23b4f8d074fdfb33a584e", + "revision": "6a660b9c92a04aed98e2d70c", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -90818,10 +90818,10 @@ "base_currency_id": "IVIP", "status_detail": "pending_waiting_payment" }, - "revision": "30e7be7a500d40cc9fe04ebf", + "revision": "58d0768c764648eebfa1171a", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -90829,10 +90829,10 @@ "content": { "type": 5, "value": "Deposito de um valor 100.000,00 IVIP para a carteira iVip 1251.9390.3817.0948-30", - "revision": "13517d8f9bc3420eb00c72c5", + "revision": "14d1d69d0af943d890d2f6ed", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -90846,10 +90846,10 @@ "value": 1699705029373 } }, - "revision": "a6390529b69347c8ae1b828b", + "revision": "9f4426f7397b4f1294dbeb3a", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -90867,10 +90867,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "425fad9a76604f069375d1f5", + "revision": "0620ea9e64bb4a269f3b8a40", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -90878,10 +90878,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1697113029373", - "revision": "565185e4f27848308be0863c", + "revision": "0e4afe8251314fd3b339e030", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -90922,10 +90922,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "8be68c517feb44a9894768f1", + "revision": "f329fc6589974249aa83a344", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -90933,10 +90933,10 @@ "content": { "type": 5, "value": "Deposito de um valor 2.500,00 BRL para a carteira iVip 1251.9390.3817.0948-30", - "revision": "77bc52b53a3e4ae79b5e19bc", + "revision": "64fcb827e5c9434ebba01b97", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -90954,10 +90954,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "7b6411c730a243b688f15d04", + "revision": "9fa565637d644841821ab435", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -90965,10 +90965,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125193903817094830/history/1697159292046", - "revision": "4fe79c00a1ee4186bc751d6a", + "revision": "c759894ba1bf491db07b6e43", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91004,10 +91004,10 @@ "description": "Compra de 3.812.023,00 IVIP por 2.034,00 BRL", "status_detail": "accredited" }, - "revision": "4c6478ef0e7e454a9105de05", + "revision": "fc98aaa74bf84608a76a1948", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91015,10 +91015,10 @@ "content": { "type": 1, "value": {}, - "revision": "cd9e2312c91c41c280997539", + "revision": "1c52449ffc304d9681cf8ee8", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91030,10 +91030,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "5b0cde8142e74944bf5ce0b4", + "revision": "c00ce5f5ea7847ddb3e7f81b", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91055,10 +91055,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "0f60ce99ecbd40f8b619fdc7", + "revision": "30c73250f6614f05a3207ef9", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91066,10 +91066,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "09ed11ae3ad74fbaaecf2f65", + "revision": "fff7e01dd7e44c5f9c28c186", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91077,10 +91077,10 @@ "content": { "type": 2, "value": {}, - "revision": "7043ff455c1f4fda873b2512", + "revision": "140345ebe4c24059a8bdce25", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91088,10 +91088,10 @@ "content": { "type": 1, "value": {}, - "revision": "d5a4c3dc32244a21a2a72ed9", + "revision": "5dee087fd5b54a0caa6f873e", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91103,10 +91103,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "5a1801896d664f0fbc3b4ee6", + "revision": "105052c84c8c45d08b9a7b18", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91128,10 +91128,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "ad97b5cc83c24ba2be87cd83", + "revision": "d170d6948a76406eb4698aa4", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91139,10 +91139,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "f48e57c905fc4ef58422a542", + "revision": "74773babb9654cbc99540378", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91150,10 +91150,10 @@ "content": { "type": 2, "value": {}, - "revision": "28caaf1400544979a1ec8136", + "revision": "fc971e4ca05548719a7557e8", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91161,10 +91161,10 @@ "content": { "type": 1, "value": {}, - "revision": "67f6c727369d43bbb88f6793", + "revision": "6e9b5fc0df1b421f9e9e496a", "revision_nr": 1, - "created": 1701809344977, - "modified": 1701809344977 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91176,10 +91176,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "0edbbe2e3503490cac030159", + "revision": "e3ebf1bd1fc54e3b93ec9235", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91201,10 +91201,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "f8a5e8ad53d840e2a9a3f8a8", + "revision": "0a8b342ceb834839ad42e432", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91212,10 +91212,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "e2b9466a733745c09962fa6c", + "revision": "a7e9132a243b4a8194a7c3af", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91223,10 +91223,10 @@ "content": { "type": 2, "value": {}, - "revision": "a041e6b1cae1428183de5d15", + "revision": "5be74b0da3504b6491fe606f", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91238,10 +91238,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, - "revision": "1c01474df8b54d64b5106eec", + "revision": "3e35e5a7691a48a29593adc6", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91263,10 +91263,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "5c216dbdf9f842a6ab245f70", + "revision": "ae6b0ac5623b4398ae7a9fae", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91274,10 +91274,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "dd24f84c6d27470f98cfa9da", + "revision": "8f6f1c5a4e07471e9003ca84", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91285,10 +91285,10 @@ "content": { "type": 2, "value": {}, - "revision": "a4d4745dd03745648ec34b22", + "revision": "0f1fef03e9f3450fba6a4e61", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91296,10 +91296,10 @@ "content": { "type": 1, "value": {}, - "revision": "0052e2f6ed9f499bb710d33d", + "revision": "2108f508a4e647c38e4cacc6", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91311,10 +91311,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "1175ae1ef6644471baccd62d", + "revision": "fcaa6d9804a9424b930efe13", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91340,10 +91340,10 @@ "value": 1695159884751 } }, - "revision": "3033bc2666c84955810f27f8", + "revision": "a4eff8f2afdb4c62b3722253", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91351,10 +91351,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "c14d0273594245f3a3ca6bc1", + "revision": "98936751acf54498af49f373", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91362,10 +91362,10 @@ "content": { "type": 2, "value": {}, - "revision": "fad1a383014b4628a8d1918f", + "revision": "c00f2de28632423388f6ad46", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91377,10 +91377,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, - "revision": "48eaf7a0839a434e8a7d5737", + "revision": "6441026b16e849a3af30eb3e", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91406,10 +91406,10 @@ "value": 1695159884809 } }, - "revision": "950d60396bfd49199e718f4c", + "revision": "540bcc8d254a4d34b972e01e", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91417,10 +91417,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "e64d668d08074266990581d6", + "revision": "7078a288df2045788f736f58", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91428,10 +91428,10 @@ "content": { "type": 2, "value": {}, - "revision": "f162409280bb43f880c5a160", + "revision": "e8b551a95b9d4f52a56317c6", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91439,10 +91439,10 @@ "content": { "type": 1, "value": {}, - "revision": "ce3c6bd9ed5845ab8ad692bf", + "revision": "524261fafa81435dbb21e24b", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91454,10 +91454,10 @@ "label": "Em 5 parcela(s) 10.00%", "amount": 100 }, - "revision": "5c8a4f76a135488f8bf6f99d", + "revision": "87c7fe6d6c3a48aca4e45dfe", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91483,10 +91483,10 @@ "value": 1695159884904 } }, - "revision": "e3342cfa88b8450882fe06bc", + "revision": "2aa23b6f154b49e889d4f2c8", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91494,10 +91494,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 5 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 1.100,00", - "revision": "231d967cb67746338b2e91a1", + "revision": "92076cbf96e94b6cbbdb753c", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91505,10 +91505,10 @@ "content": { "type": 2, "value": {}, - "revision": "3ecdbcf199874bb79ae1df5a", + "revision": "ff65721af44249e794dbb41b", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91520,10 +91520,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, - "revision": "5855ea2cc75644aeb6c40d7b", + "revision": "6705340d30c4423bbe84f59f", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91549,10 +91549,10 @@ "value": 1695159884962 } }, - "revision": "368721684dc74755b9213740", + "revision": "b05bcdecc7104a9ca8bb93ad", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91560,10 +91560,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "91ef2eed20994242bdf2e3f4", + "revision": "709f76582eab470699f44e02", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91571,10 +91571,10 @@ "content": { "type": 2, "value": {}, - "revision": "6e6dfb539524451a8ca30ee5", + "revision": "c9c7a0014078495e837eedea", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91582,10 +91582,10 @@ "content": { "type": 1, "value": {}, - "revision": "f27d1b33c9f94560b3b49791", + "revision": "b447afba23ca443191f73c95", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91597,10 +91597,10 @@ "label": "Em 4 parcela(s) 8.00%", "amount": 48 }, - "revision": "839369bd608944439f295cc2", + "revision": "a5b7307602024a6790177070", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91626,10 +91626,10 @@ "value": 1695159885096 } }, - "revision": "6c314d903ede440a9e955260", + "revision": "420a4e2b0e3b4d9ba46e412d", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91637,10 +91637,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 600,00 para a carteira iVip 1251.9390.3817.0948-30 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 648,00", - "revision": "f897c11f92e94d0ba74e56b4", + "revision": "bc0a899119c34c6c88edfc75", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91648,10 +91648,10 @@ "content": { "type": 2, "value": {}, - "revision": "6dc53d200eca4e369faa30ab", + "revision": "b7424f0fd5a0401d921f0aed", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91659,10 +91659,10 @@ "content": { "type": 1, "value": {}, - "revision": "b54d0ee540ee47a28658488a", + "revision": "fe2971cb0e9a4fcfbf89b1d3", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91670,10 +91670,10 @@ "content": { "type": 1, "value": {}, - "revision": "4468a7199bab4546a641001d", + "revision": "55ab2b2240c94661891116c5", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91692,10 +91692,10 @@ "value": 1679261263210 } }, - "revision": "4396520d2f4b4881bf4b988d", + "revision": "18c1b28f6e3646719a949e98", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91712,10 +91712,10 @@ "value": 1697252400000 } }, - "revision": "32536245ba9a4d7a902c64fe", + "revision": "d8050cf97ae74cbfb520cc27", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91725,10 +91725,10 @@ "value": { "costs": {} }, - "revision": "4227fcd2b6444d118adca907", + "revision": "2c8c9b8bb458463c85a2122d", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91770,10 +91770,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "aeaaa6993f924b1da0c29197", + "revision": "6e2681e32acf46a186b1cafa", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91781,10 +91781,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.500,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "553286d6ca044ef2baca8d4e", + "revision": "3362059cd974480cbe98cca9", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91794,10 +91794,10 @@ "value": { "costs": {} }, - "revision": "4da3ea6b90da4389a3483345", + "revision": "1ffd1b4590df44a6a587a450", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91839,10 +91839,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "0a03b661983e46279e004bda", + "revision": "4a894970548f4a4f9dcb1b41", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91850,10 +91850,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "fa55763aee804527a0238b49", + "revision": "a4abad4f63ca44a194b9e8b1", "revision_nr": 1, - "created": 1701809344978, - "modified": 1701809344978 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91863,10 +91863,10 @@ "value": { "costs": {} }, - "revision": "ecbdf23d114645de91d466bb", + "revision": "772bb029ff45414c9dea8d94", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91903,10 +91903,10 @@ }, "money_release_status": "rejected" }, - "revision": "20f004efff10450285571407", + "revision": "f441352aa6fe465ebf570a52", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91914,10 +91914,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "14ce1a79927d4b19b699e58d", + "revision": "e43bb45f079847119497d70a", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91937,10 +91937,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "0447cfc38f6b473c8938fc2f", + "revision": "7b7170d0839f495cacab8b7a", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91976,10 +91976,10 @@ "history_id": 1678155991324, "description": "Compra de 11439584 IVIP por 1600 BRL" }, - "revision": "f4d25513873d4c2f9b70ed8b", + "revision": "4c96af39fb5645a48af03a04", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -91991,10 +91991,10 @@ "label": "Taxa de 0.99%", "amount": 1.9800000000000002 }, - "revision": "e5d24945c9ec4d03920b142d", + "revision": "a9bc80ca42b24939a1ab7ef8", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -92002,10 +92002,10 @@ "content": { "type": 1, "value": {}, - "revision": "9cd11a093d3241f7a685c879", + "revision": "4fcbaa785f554034ad851887", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -92015,10 +92015,10 @@ "value": { "account_holder_name": "Paulo Fagner de Oliveira" }, - "revision": "0dac3410a2c6421999b62ac8", + "revision": "370b59b5dcb045a69754f316", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -92026,10 +92026,10 @@ "content": { "type": 1, "value": {}, - "revision": "1f6726079c5b4298a69d5a40", + "revision": "375d183b59594d1e8e80a0ec", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -92043,10 +92043,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "533c5b4d44d644baa1fbdb13", + "revision": "40b97cfa262e4cf7a7d97202", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -92054,10 +92054,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/payments/55108764779/ticket?caller_id=1310149122&hash=bd26ec14-a4ce-4255-b152-2a7df041f5dd", - "revision": "e71ab4c1dde642109be5d7fc", + "revision": "938867d906ce4034a0733a41", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -92065,10 +92065,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAI5ElEQVR42u3dUa7jNgwFUO3A+9+ld+Bi0E6TkFdyBh0UrXz8Eby8xPZx/ghSV+P6Hx3noKWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaX9/dpRj+PH/46/P/j514+z/nx5Ha8L/PXBz3Nf33u/x88PXl9+P60zaGlpaWlpaWlpaWlpH6I93ku28jZd/fVBuWP7CcoZk0/fHzIxaGlpaWlpaWlpaWlpH6AtBWR+jPHpbj24sTj3o058PcGicKWlpaWlpaWlpaWlpX229vxs7K1kpe333gD8qCLLs+QXWlpaWlpaWlpaWlpa2jBm2UrJaf03Pmcoi7ZUkWUwk5aWlpaWlpaWlpaW9snaKb5971yugUsPNO3pjbt+IC0tLS0tLS0tLS0t7UO005SSf/fln2aq0NLS0tLS0tLS0tLS/k+1+eihji2WJH0wWTW3Xg13b6GlpaWlpaWlpaWlpd1be7YKbrrALXTeYsOu/JUDJkvy5DTmhJaWlpaWlpaWlpaWdnft67bnJ/S42yetJJKUL+eK8QzPXIrPUlnS0tLS0tLS0tLS0tLurj1zzn6jHOGO7cKrRXTTkrPvErCseWlpaWlpaWlpaWlpaTfT9tvmdXHTht1kHDNtEFAeN/9KdzOitLS0tLS0tLS0tLS0m2knFV7DT8rLEiH5Pp2ZAKvN13ItSktLS0tLS0tLS0tLu7f2XZa2V+t1YioMS2VZoHmxXa9j86e0tLS0tLS0tLS0tLR7a1sYSdpUbXW5El+SjGmkMq2zy2vlaGlpaWlpaWlpaWlp99Y2RW/dhfPjOrY0UpmOFodSmoeLqUtaWlpaWlpaWlpaWtr9tIuhyTQWOYn7b8vkyv+mdzvydOZNzUtLS0tLS0tLS0tLS7ubNhWBrWwcbdbyvQydrIZrW2b3ec6W5X/epvrT0tLS0tLS0tLS0tJupG0XGe3Utrbtbtfqui6ujXdOb3S3CzYtLS0tLS0tLS0tLe2O2mN2pf5BOS1tpdZKxKt18qbL39KNaGlpaWlpaWlpaWlpd9e2AjLtp3aFEnG0vlxu5022zG6jl4uQf1paWlpaWlpaWlpa2p21eUHaZIVcgeZEknTGdLFdKjSPm5qXlpaWlpaWlpaWlpZ2M+2Y3TG17qbRkJP9sAsq/UDrGU9aWlpaWlpaWlpaWtrdtS2j/2zL1RZBjyt8qhjzXOW12JqNlpaWlpaWlpaWlpb2IdqRUxxTQEl6m7IgcwTJGYY1++bZtLS0tLS0tLS0tLS0z9GmoP7yQcmCLLx222mdWLRpk+3zm0wVWlpaWlpaWlpaWlrarbQ5xTF5JvOXbf/qEarSSbbkdOkcLS0tLS0tLS0tLS3tk7TlIq2GG61rd+Twx1aQ9sj+Uq5Osyq/ybqkpaWlpaWlpaWlpaXdQ1tWr7VokduAkrYQbkKZ/jbt7IOWlpaWlpaWlpaWlvZJ2kLOb/v+1WkLgNe50ybeumLMUSW0tLS0tLS0tLS0tLSP0t4Fj0wmLKfDmnep/unc6+sqkpaWlpaWlpaWlpaWdgNt6+ldOd+/NPZSQEmrBPtKulYnTirQWRVJS0tLS0tLS0tLS0u7qfauJrwWS90W535UkdOfYH1fWlpaWlpaWlpaWlra3bWLOnHS9ksDkq2xV9JHxuf/fumgpaWlpaWlpaWlpaXdXTtt2PUeXKsOr7td2VrWyTULRhl5U2xaWlpaWlpaWlpaWtqHaNsOZxE6DepfPOn1i7mULWqSlpaWlpaWlpaWlpZ2b22p+krt2Da7Lgn+k7iRcka7wHF3PVpaWlpaWlpaWlpa2udo095p00ZcypEs+f65NP2oMVMBWW5+34ukpaWlpaWlpaWlpaXdRdvKweOrirGhWkuuL4SbXnT1Y9DS0tLS0tLS0tLS0u6uTVXfohF3hIc8QgE5QjTkt1OXjUZLS0tLS0tLS0tLS7uztlyklHStL9efr6WKXKHavPIGAbna/KrmpaWlpaWlpaWlpaWl3UX7PvPYm3NtMLN04/qRBjjTWrlcwt5nqtDS0tLS0tLS0tLS0u6nLYXcyCvapnGRrVgcn929Y1Z89u/l02hpaWlpaWlpaWlpaR+gLa221NjLk5ilDJ10/MrgZUpCKVOXtLS0tLS0tLS0tLS0T9SmjP53d1L0gJLWpuup/ouq9Ph6z25aWlpaWlpaWlpaWtp9tFeoCY9FX679NUIX8MjjmCllsm0LcD8jSktLS0tLS0tLS0tLu5G2VG7tZeSgx/x8Yza7OVo9macz73dbo6WlpaWlpaWlpaWl3U87WdGWvrJo7KWkkZRSsp66zJUlLS0tLS0tLS0tLS3tztppSknbGXuyZq005/Ls5pWX073fbbSESlpaWlpaWlpaWlpa2odoSw9u1cRr/cCyiK7PaS5yTfpKunzQ0tLS0tLS0tLS0tI+QJvmJct6t6YdIXTyav279JXyA6Ui9X4XbFpaWlpaWlpaWlpa2l20raO2umbbgW18oiaTky0V8sxL7L5eDUdLS0tLS0tLS0tLS7ufdizaebk6LKkipQw929s8rHl+nphTK2lpaWlpaWlpaWlpaXfWLmSr+cvppthpIdz6cVNVSktLS0tLS0tLS0tL+xztqMcRMvqPuzVw6SUZ36vIyZW/7O7R0tLS0tLS0tLS0tLuo51um5ZGJfskZq4iy/9KkMmZV759U0XS0tLS0tLS0tLS0tJuqV2Ug2OWUrKanGxJI6mDeMxK2LFKKaGlpaWlpaWlpaWlpX2GdrQYkfdVbqliHIt1cWXM8ousE1paWlpaWlpaWlpa2qdry4ULZRI1mbdmS1OXI1y5R03S0tLS0tLS0tLS0tI+R5tbdyPn+5fblnun3P7W8Ssx/mfLNaGlpaWlpaWlpaWlpX2SduShybToLZeSV1gSd7QNsHPe5Lm4JS0tLS0tLS0tLS0t7SO0//2DlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlpaWlva3af8AAVry9+WFQ1kAAAAASUVORK5CYII=", - "revision": "1acc8b9c91df4f208334300d", + "revision": "ea6c696d2a7a46eaa55fe86f", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -92076,10 +92076,10 @@ "content": { "type": 5, "value": "00020126580014br.gov.bcb.pix0136abbd93e3-8b97-45ca-9a7d-6d7d50d127175204000053039865406201.985802BR5922COINIVIP202302231717396009Sao Paulo62240520mpqrinter551087647796304A631", - "revision": "1582417ac7bf4d4f9a32bda8", + "revision": "a9c35bdd22a6400c9c3ac092", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -92087,10 +92087,10 @@ "content": { "type": 2, "value": {}, - "revision": "f7dcfc20b4674cf7b6b6851b", + "revision": "2f9e1d058fb94cf59811d17c", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -92123,10 +92123,10 @@ "status_detail": "pending_waiting_transfer", "currency_id": "BRL" }, - "revision": "518e4c332efa4169ae5913e7", + "revision": "53cae418cfed4a0780c4a2bf", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -92134,10 +92134,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "3894bf800598419198124735", + "revision": "f1b227dfcbb347c2913d7c7f", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036413, + "modified": 1702563036413 } }, { @@ -92149,10 +92149,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "42a6e7d3aaba4198bb81382a", + "revision": "c481a4ee92b540b7876871fb", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92160,10 +92160,10 @@ "content": { "type": 1, "value": {}, - "revision": "2ecc538efebe47dbac58a323", + "revision": "833d18133b1c48a88df4db6f", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92171,10 +92171,10 @@ "content": { "type": 2, "value": {}, - "revision": "f589b47b3c6e42f3a0723875", + "revision": "3c746f703d85460aaaa061e6", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92207,10 +92207,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "089be2de978c434ead4ac23d", + "revision": "f133a878348c49259baaa1ee", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92218,10 +92218,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "2921b56019814ad9af863e09", + "revision": "f747e93c86e3483991d2c39e", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92241,10 +92241,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "28da23676cc645f3b897e0df", + "revision": "65780fce38a344549e1eb82c", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92280,10 +92280,10 @@ "history_id": 1679266870095, "description": "Compra de 17473846 IVIP por 3000 BRL" }, - "revision": "76b50092b0314b62aabcfe7b", + "revision": "a9a7bd6136ec445ebc592577", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92295,10 +92295,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "a4f8d69d70984e968f5008e9", + "revision": "f3a6c349a63a47fca7a1d65f", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92306,10 +92306,10 @@ "content": { "type": 1, "value": {}, - "revision": "4113e71cefa548dd9321b608", + "revision": "a4008559489447c7b9710e05", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92317,10 +92317,10 @@ "content": { "type": 2, "value": {}, - "revision": "2b02df9e6caa4ee2b908a907", + "revision": "4e414bc034574c979732444b", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92362,10 +92362,10 @@ "money_release_status": "rejected", "wasDebited": true }, - "revision": "dd0669063a8d4374b319137d", + "revision": "92ebfdcce83449d9a6d12c99", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92373,10 +92373,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "380a21e659f7439291bcdf28", + "revision": "bb4b62ff8e4d473ea8d55b0f", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92386,10 +92386,10 @@ "value": { "costs": {} }, - "revision": "fd00d9f2010840179e038bb0", + "revision": "40835799787c4191b5c45688", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92421,10 +92421,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "e1edeac2a05b4cebb551cb5b", + "revision": "0b8bf0175da7440ba5cac098", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92432,10 +92432,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "f08b0e3591354c85ae876e9a", + "revision": "58c951028a25492cb4ac1164", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92445,10 +92445,10 @@ "value": { "costs": {} }, - "revision": "8f61acd4119d478e81ac06a5", + "revision": "753897ccbb0449cdb1158798", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92490,10 +92490,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e7999b7f004c48e3ab1cee49", + "revision": "3e286869b1af4554ac49fd5c", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92501,10 +92501,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 360,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "eb654e16068f4c7fa0ab30e6", + "revision": "afc5398f1938426891fd6d72", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92526,10 +92526,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "a43e109272c84268a836fa9f", + "revision": "74d47b1967bc4972b871cabb", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92565,10 +92565,10 @@ "currency_id": "BRL", "history_id": 1682620551210 }, - "revision": "9bf9a06d6fd64bd0bfdcb250", + "revision": "b0f5fa6dd3a44e66b944974a", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92576,10 +92576,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "38fb3ff0e8004de8bcfda59b", + "revision": "ce2baa67d897498da28e239e", "revision_nr": 1, - "created": 1701809344979, - "modified": 1701809344979 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92589,10 +92589,10 @@ "value": { "costs": {} }, - "revision": "63494b03e1a8405eb0e7e1a2", + "revision": "4fd1e3e70e4a45d6ae593b57", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92634,10 +92634,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "29fe7ab8786a4ab08d5f4f49", + "revision": "cf9279f26a184847a5a0fee0", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92645,10 +92645,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "29134986f3554f51ab132e2c", + "revision": "1233ce1b92584bd0bc7e4d5e", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92658,10 +92658,10 @@ "value": { "costs": {} }, - "revision": "d6e741909f244cfbb685ade5", + "revision": "76e30f304f9b4d5dadc03cd0", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92703,10 +92703,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "77804e9ecda34783849e146d", + "revision": "65872106e4b64637b3a84860", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92714,10 +92714,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "d84f9675e2864f8eab2f3f64", + "revision": "df3ba554f0d74070bbf45fa4", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92739,10 +92739,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "1b0d51b849164227bf22a4c5", + "revision": "73b3b5791e874069acc984cd", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92778,10 +92778,10 @@ "currency_id": "BRL", "history_id": 1683947563493 }, - "revision": "e87ebb729db14b9b98521fb8", + "revision": "323123926f8f4a069231b138", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92789,10 +92789,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 3 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "09156d45d7094fcfb7b3631d", + "revision": "c8f9a05f963f46d7ad7eb56a", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92802,10 +92802,10 @@ "value": { "costs": {} }, - "revision": "792039d782ed4df5b738e961", + "revision": "03ff9649f68b47a8ab9f2c76", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92847,10 +92847,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "25b7740839c346b9b6454ec0", + "revision": "c80477b5c03c4c49b3f486e3", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92858,10 +92858,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 66,32 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "c82d8934079d412a9840ae0b", + "revision": "9328112890974ec08bbfa604", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92881,10 +92881,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "55c172af269940e3bbbb6e4c", + "revision": "6a517f0d892c465ca73a1142", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92920,10 +92920,10 @@ "history_id": 1684018958560, "description": "Compra de 574.594,00 IVIP por 106,32 BRL" }, - "revision": "ec2b2d9b055f4b0e91e37ee5", + "revision": "c795988a34d44e4c91cb0a20", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92933,10 +92933,10 @@ "value": { "costs": {} }, - "revision": "93eb0ea3f75846e99bfae65b", + "revision": "a15d32a0eb0d44bbb3b040d6", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92978,10 +92978,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "bc29b6538f5a42c28c8f41a8", + "revision": "365a457a33164f6ab7520c44", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -92989,10 +92989,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 130,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "69da17adbd4f4640960a22ef", + "revision": "1f85c3626a214020b348bee6", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93002,10 +93002,10 @@ "value": { "costs": {} }, - "revision": "d28191d571c040089379484d", + "revision": "3028c20b60c14968860a5ee2", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93047,10 +93047,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "a887ab35797840d89e3dc3e4", + "revision": "b82243839a2b436a94757086", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93058,10 +93058,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 55,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "7252ef67638b44eaaf88ae4f", + "revision": "78320ddb3a554998b323781f", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93081,10 +93081,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "efc20b11b4914875be4ae4bd", + "revision": "49000464eb6d4c92a9c560cc", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93120,10 +93120,10 @@ "history_id": 1684624396163, "description": "Compra de 901.085,00 IVIP por 185,00 BRL" }, - "revision": "ca5d1f681c5f462287527f55", + "revision": "0e6a28b7efe144c6ae78e256", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93143,10 +93143,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "6a2f1d23f2c0496b81ba336f", + "revision": "9e01aeb967244b4dbd0e4529", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93181,10 +93181,10 @@ "history_id": 1685667418933, "wasDebited": true }, - "revision": "dd05d81157154ac4ba423897", + "revision": "0ddc688c688747b2b8096204", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93192,10 +93192,10 @@ "content": { "type": 5, "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "ef0030590a5749bba8b02f01", + "revision": "40005a535e3548f6af7a609b", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93215,10 +93215,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "812fb0077661480d8370a78e", + "revision": "87e3a7e27cc24f1083e0caba", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93252,10 +93252,10 @@ "currency_id": "IVIP", "history_id": 1685668065254 }, - "revision": "9fb870804ba7495faf1f1e46", + "revision": "c7e99fccc44a41fcb2319802", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93263,10 +93263,10 @@ "content": { "type": 5, "value": "Investimento de 4.000.000,00 IVIP em um staking com rendimento de 36,00% ao ano, com previsão de resgate em 6/1/2024", - "revision": "f708437ce2784480b3f1dc89", + "revision": "4eefffe17e1449cd85ac77d2", "revision_nr": 1, - "created": 1701809344980, - "modified": 1701809344980 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93286,10 +93286,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "9d767ec592ce4ed095a0240b", + "revision": "7fb29e0efe0a46a39ffeb66c", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93323,10 +93323,10 @@ "currency_id": "IVIP", "history_id": 1685668086801 }, - "revision": "7a8a5b5ad9184eb58685f174", + "revision": "d7856440446640e5a046962e", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93334,10 +93334,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 7/1/2023", - "revision": "2dc58ef6a811461ab3c1ce41", + "revision": "59597759b2d346d0aabc5ef0", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93357,10 +93357,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "fafd1055cf68453e8a91e7e5", + "revision": "38e9660feaeb4ba3a7755ead", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93394,10 +93394,10 @@ "currency_id": "IVIP", "history_id": 1685668239552 }, - "revision": "e2f2e6f91b8649c7bc78299a", + "revision": "b3bf4fb6ceda4172b2c4bece", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93405,10 +93405,10 @@ "content": { "type": 5, "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 30,00% ao ano, com previsão de resgate em 12/1/2023", - "revision": "b1a172dc91294e21abcb7ac0", + "revision": "b53aea12629a439f88256fc3", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93418,10 +93418,10 @@ "value": { "costs": {} }, - "revision": "73dbec400c4b45c0a33cf766", + "revision": "170838a818de44aeb41cd964", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93463,10 +93463,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "d244d57cbbea4d729495f2d0", + "revision": "714593c6ebb14347aa080400", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93474,10 +93474,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 400,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "de9d41665d4e42579715d04f", + "revision": "8dcc072cdd9b4643b2d521d0", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036414, + "modified": 1702563036414 } }, { @@ -93499,10 +93499,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "dea41a104e6f460289e17742", + "revision": "d8e5d2e66c1b454ba4dfbcf0", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93538,10 +93538,10 @@ "currency_id": "BRL", "history_id": 1686859298764 }, - "revision": "e1172f91694847b1b61f63df", + "revision": "9a4320dda77e474baaca7f03", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93549,10 +93549,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 2 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "bb0ba0c6ec374ac1b20dd530", + "revision": "c56be23a606141b185659094", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93572,10 +93572,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "03e0d987c88c421fb5843bae", + "revision": "e3f0fab0559a4ef68f96ce72", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93611,10 +93611,10 @@ "history_id": 1686859421606, "description": "Compra de 256.510,00 IVIP por 40,00 BRL" }, - "revision": "f93a13a8098e480485b9e1d0", + "revision": "6539d86dac8f4388ac00b66c", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93634,10 +93634,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ea50b72dd3a64130b760e85f", + "revision": "8695ad97188b48809a989bc3", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93672,10 +93672,10 @@ "history_id": 1688400452024, "wasDebited": true }, - "revision": "30417863b76343a78240159c", + "revision": "f64195fdaee043b082706086", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93683,10 +93683,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "7d5b70ff45f64d96a79503b1", + "revision": "32242075aa494309bcdd4766", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93706,10 +93706,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ea46feb4d99b4c92877b13f7", + "revision": "0c472b1d64864e21aeccfb5b", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93743,10 +93743,10 @@ "currency_id": "IVIP", "history_id": 1688403103597 }, - "revision": "07146b2557cf4cf784de30fc", + "revision": "924f5d5dabd54c70a8787497", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93754,10 +93754,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "d643f40a13fc4f4e9f80b6c0", + "revision": "d2e260111167446a9fa079c3", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93767,10 +93767,10 @@ "value": { "costs": {} }, - "revision": "c6c8c2963a784e62a8a5f077", + "revision": "4f8c7c434d9f4a19af87f4d7", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93802,10 +93802,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "4516ac723e5b41fe8a572147", + "revision": "9302d4743bf842358ec27cbc", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93813,10 +93813,10 @@ "content": { "type": 5, "value": "Saque de 8.000.000,00 IVIP para a carteira 0x3e35E81481645fafD6C410b1833719A8E633ae35", - "revision": "e57ae91b1c8d4a1392baf894", + "revision": "15857454b1604e76b3cb01ba", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93826,10 +93826,10 @@ "value": { "costs": {} }, - "revision": "bbcabb8b74a445b89742a657", + "revision": "3a19869396724261a87ee309", "revision_nr": 1, - "created": 1701809344982, - "modified": 1701809344982 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93861,10 +93861,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "a407da4472b1476d82a88b01", + "revision": "f2823738a25d4753a221bf6d", "revision_nr": 1, - "created": 1701809344982, - "modified": 1701809344982 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93872,10 +93872,10 @@ "content": { "type": 5, "value": "Saque de 11.000.000,00 IVIP para a carteira 0x3e35E81481645fafD6C410b1833719A8E633ae35", - "revision": "f7fd6ea55b084235a8114b84", + "revision": "8da8308ab7fb43f4aa0fba86", "revision_nr": 1, - "created": 1701809344981, - "modified": 1701809344981 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93895,10 +93895,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "1ff809050aa942d396ce4b00", + "revision": "efc6a1c8eca143b0b682ce96", "revision_nr": 1, - "created": 1701809344982, - "modified": 1701809344982 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93933,10 +93933,10 @@ "history_id": 1691081627683, "wasDebited": true }, - "revision": "cbf113fde3de4b0383afd18e", + "revision": "7989e561b9ca4385b5211243", "revision_nr": 1, - "created": 1701809344982, - "modified": 1701809344982 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93944,10 +93944,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%)", - "revision": "d6b2cb8e84714e20b0650d63", + "revision": "ea11b050c3eb4511b5803905", "revision_nr": 1, - "created": 1701809344982, - "modified": 1701809344982 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93965,10 +93965,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "0926ae6a757c44cdad29205c", + "revision": "a49a92820cba452ca1ddf73b", "revision_nr": 1, - "created": 1701809344982, - "modified": 1701809344982 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -93976,10 +93976,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1691082859805", - "revision": "37c9be7469504dee87c6b2c0", + "revision": "f2c3e5bcc4cc4f328cc6ba42", "revision_nr": 1, - "created": 1701809344982, - "modified": 1701809344982 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94013,10 +94013,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "b8e67af3ba3d42b9bc206537", + "revision": "60daf9d542fa49bebbb74bf7", "revision_nr": 1, - "created": 1701809344982, - "modified": 1701809344982 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94024,10 +94024,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "877ff669f48042ca9ed07034", + "revision": "e8c139174996455ebaae4932", "revision_nr": 1, - "created": 1701809344982, - "modified": 1701809344982 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94041,10 +94041,10 @@ "value": 1694126049576 } }, - "revision": "ff94e566593040909b606e11", + "revision": "17dad6b0205a41428a205ee0", "revision_nr": 1, - "created": 1701809344982, - "modified": 1701809344982 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94062,10 +94062,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "3f540e6afb9e4b9293754f6f", + "revision": "0a02ee8d14484dcb8e0c2343", "revision_nr": 1, - "created": 1701809344983, - "modified": 1701809344983 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94073,10 +94073,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1691534049577", - "revision": "b60e4d9fdd61496fbceb52a9", + "revision": "95d9be518b494a018a6fc4d6", "revision_nr": 1, - "created": 1701809344983, - "modified": 1701809344983 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94116,10 +94116,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "84459735075a4693afd47073", + "revision": "a8c314434764403183204d29", "revision_nr": 1, - "created": 1701809344983, - "modified": 1701809344983 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94127,10 +94127,10 @@ "content": { "type": 5, "value": "Deposito de um valor 360,00 para a carteira iVip 1257.9763.0999.3744-60", - "revision": "010ab9324d504b76b0067dda", + "revision": "88ba3cca81cd4d1a842d4749", "revision_nr": 1, - "created": 1701809344982, - "modified": 1701809344982 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94148,10 +94148,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "969d8e3995b142c091b82d98", + "revision": "5fd49abfa55545aca5b5968a", "revision_nr": 1, - "created": 1701809344983, - "modified": 1701809344983 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94159,10 +94159,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1693761380582", - "revision": "ba1b59a641ec4ebfb79d0d32", + "revision": "ff8f87db783c427fad773458", "revision_nr": 1, - "created": 1701809344983, - "modified": 1701809344983 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94196,10 +94196,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "1bd4055c373149d8bb409e0c", + "revision": "e0842a3db9434389973eae1e", "revision_nr": 1, - "created": 1701809344983, - "modified": 1701809344983 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94207,10 +94207,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "cb32529f56dc47af99e0e4cf", + "revision": "639f7bcef30f49e3a981fe6c", "revision_nr": 1, - "created": 1701809344983, - "modified": 1701809344983 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94228,10 +94228,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "50adeebade9241cfa7038b0c", + "revision": "086a1477b93f4b3aa830da65", "revision_nr": 1, - "created": 1701809344983, - "modified": 1701809344983 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94239,10 +94239,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1693780032051", - "revision": "deecdeaaef724d07a1d7a08c", + "revision": "b2c4af2f0f854adca832aa37", "revision_nr": 1, - "created": 1701809344983, - "modified": 1701809344983 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94276,10 +94276,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "bb828127ddf4421c9fba4f28", + "revision": "75901f0ac8984b8b9a98c7d6", "revision_nr": 1, - "created": 1701809344983, - "modified": 1701809344983 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94287,10 +94287,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "8d723cdb057a42d58e54d55a", + "revision": "d04380e117e64b7d9340104d", "revision_nr": 1, - "created": 1701809344983, - "modified": 1701809344983 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94304,10 +94304,10 @@ "value": 1697914050195 } }, - "revision": "20db09bd11744828ad1b836f", + "revision": "b54a13152129454a9f08ace3", "revision_nr": 1, - "created": 1701809344983, - "modified": 1701809344983 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94325,10 +94325,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "53cf1c238cae44d5a924af75", + "revision": "ec29f208f4bf4075b6fb9f19", "revision_nr": 1, - "created": 1701809344983, - "modified": 1701809344983 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94336,10 +94336,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695322050196", - "revision": "745fca4b2ffd411d918fdc9f", + "revision": "4d9d76f643d54b2f87b2c831", "revision_nr": 1, - "created": 1701809344983, - "modified": 1701809344983 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94379,10 +94379,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b16618716f034525b9b1c8b4", + "revision": "fbe909fae97b4164b1af5a87", "revision_nr": 1, - "created": 1701809344983, - "modified": 1701809344983 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94390,10 +94390,10 @@ "content": { "type": 5, "value": "Deposito de um valor 720,00 BRL para a carteira iVip 1257.9763.0999.3744-60", - "revision": "fd9b975e35904205baf93aa7", + "revision": "87181a0393ec455486fe21b2", "revision_nr": 1, - "created": 1701809344983, - "modified": 1701809344983 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94413,10 +94413,10 @@ "installment_paid": 4, "installments_payable": 6 }, - "revision": "abcbc3c424ff4e519932dd09", + "revision": "87fdd40407f8477e88f45850", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94424,10 +94424,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451385", - "revision": "76f385b947854f978fb0694a", + "revision": "37a50a33bccd4bc9980c6122", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94461,10 +94461,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "559d209927c14495a3d5cf40", + "revision": "9d1e1bacc71544d992f98800", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94472,10 +94472,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 4 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "676645eda7bd454bb4d9cf49", + "revision": "7333d9e16ae84309abf737a4", "revision_nr": 1, - "created": 1701809344983, - "modified": 1701809344983 + "created": 1702563036415, + "modified": 1702563036415 } }, { @@ -94495,10 +94495,10 @@ "installment_paid": 5, "installments_payable": 5 }, - "revision": "4452cd1fcbe642509f605f35", + "revision": "7979128d929e4814aa54914f", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94506,10 +94506,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451505", - "revision": "afeb6be48b3c4b7b94d9cb17", + "revision": "845a0c255afc4f2cbc95f105", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94543,10 +94543,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "3097512c525d4d2a92195724", + "revision": "d60e690ba69640498f16cea9", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94554,10 +94554,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 5 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "8b5661ee7d8344dd842ac166", + "revision": "2f50a218b0d54296bfd119b6", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94577,10 +94577,10 @@ "installment_paid": 6, "installments_payable": 4 }, - "revision": "d1cce972bf6d496888c0574c", + "revision": "653102b8d65d49818d9e9c21", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94588,10 +94588,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1695423451671", - "revision": "2ee0f2219bfd44d8a1d6a167", + "revision": "0a4e98022ef247f58bf6b983", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94625,10 +94625,10 @@ "currency_id": "BRL", "base_currency_id": "BRL" }, - "revision": "47d0a19e18e3481f869de2ce", + "revision": "d573e50111d146919230ac96", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94636,10 +94636,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 6 de 10 no valor de 360,00 BRL referente ao contrato 1679262602609", - "revision": "08f1803544194e8ebd5a0fd0", + "revision": "b5f3239beb8d4e3d950ab908", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94657,10 +94657,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "58b0e87865cd44818fddf81a", + "revision": "3e49bdc5c3374774badd3106", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94668,10 +94668,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380984974", - "revision": "959ca656a77f4204835f2459", + "revision": "1e6d16d494f6469985327b63", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94706,10 +94706,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "066c228508ad4a96b36c8fa0", + "revision": "dd30bdf5c5b24e5eb0cb94bf", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94717,10 +94717,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "ef68e0e1850148fb8b337def", + "revision": "b073baa88b5b425f97b27cbd", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94738,10 +94738,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c4685a53197b471bb44d52f9", + "revision": "1cb1c1149ef547dc85dc31e9", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94749,10 +94749,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380984991", - "revision": "366cd221f11340a193310ffe", + "revision": "a418f043f2d444e1b86af329", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94787,10 +94787,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "50b5b584ac004baca3acb4ba", + "revision": "26c843dfff6240468f30a6bb", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94798,10 +94798,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "711ce465b85d48c1adcf7004", + "revision": "584b70543be74180afd39179", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94819,10 +94819,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1a1b60828ed54c2e96aaa2c9", + "revision": "c1b74fafb7e84788b10bc17e", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94830,10 +94830,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380985024", - "revision": "43b0d4ac9b754606ac3a0ac9", + "revision": "83faa40067c040a887856a4c", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94868,10 +94868,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "37095b76d1d446eabc57e11a", + "revision": "c45b1a0081324c87b5de64d5", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94879,10 +94879,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "1fe1070a97164eadaf976938", + "revision": "7456db2653e940dca599d609", "revision_nr": 1, - "created": 1701809344984, - "modified": 1701809344984 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94900,10 +94900,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "c2aae996ab95421192eaef83", + "revision": "3643e47e3bd1412a9691d5cf", "revision_nr": 1, - "created": 1701809344985, - "modified": 1701809344985 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94911,10 +94911,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696380985244", - "revision": "56f2bb3d59c34c53b0afd964", + "revision": "1bd5adc8fd4e4ce8955ab073", "revision_nr": 1, - "created": 1701809344985, - "modified": 1701809344985 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94949,10 +94949,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "a11e763ed1674c0cbf8eefcd", + "revision": "72a421c0a574470c9a82fe97", "revision_nr": 1, - "created": 1701809344985, - "modified": 1701809344985 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94960,10 +94960,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "068779adec4f479a9686e1b9", + "revision": "2709eaa6748e4a8c841440ff", "revision_nr": 1, - "created": 1701809344985, - "modified": 1701809344985 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94981,10 +94981,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "d4187ef679d343a3be207bbf", + "revision": "475dfefd46924921a0926ff5", "revision_nr": 1, - "created": 1701809344985, - "modified": 1701809344985 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -94992,10 +94992,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384232144", - "revision": "a51037f1d75744c09357d8e0", + "revision": "a73a2c0b8c5049018aa99433", "revision_nr": 1, - "created": 1701809344985, - "modified": 1701809344985 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95030,10 +95030,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "a0ef8059b1284e2bad9e9a8e", + "revision": "7fbba0e12b17412bb2c3cd1c", "revision_nr": 1, - "created": 1701809344985, - "modified": 1701809344985 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95041,10 +95041,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "1e3f21ce59d042b8bc95c683", + "revision": "87da30a345fc41d1b068a409", "revision_nr": 1, - "created": 1701809344985, - "modified": 1701809344985 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95062,10 +95062,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4c19b0343abd42fead2818a3", + "revision": "a9f04c4bdcfe45e590f5d37c", "revision_nr": 1, - "created": 1701809344985, - "modified": 1701809344985 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95073,10 +95073,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384243583", - "revision": "1e543d9f636544f394ce73f7", + "revision": "227768d353c244568847a42b", "revision_nr": 1, - "created": 1701809344985, - "modified": 1701809344985 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95111,10 +95111,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "ac254b343f7342a0981e7466", + "revision": "2a3714c061eb49739046facc", "revision_nr": 1, - "created": 1701809344985, - "modified": 1701809344985 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95122,10 +95122,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "a4fadae1b8b64a76ac2fb93c", + "revision": "d833f5bac67b4d4aa44095bf", "revision_nr": 1, - "created": 1701809344985, - "modified": 1701809344985 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95143,10 +95143,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "cb1188d8ce6b48a7897d118d", + "revision": "d07209b5f4e24e41922e643d", "revision_nr": 1, - "created": 1701809344985, - "modified": 1701809344985 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95154,10 +95154,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696384243588", - "revision": "c8e1bbe233cd437b8a10474a", + "revision": "6c8001af7e704f1d9838904a", "revision_nr": 1, - "created": 1701809344985, - "modified": 1701809344985 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95192,10 +95192,10 @@ "base_currency_id": "IVIP", "status_detail": "cc_rejected_duplicated_payment" }, - "revision": "a8c2b419a453474fbcbc333f", + "revision": "f8359b4674e940458aab5860", "revision_nr": 1, - "created": 1701809344985, - "modified": 1701809344985 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95203,10 +95203,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 8.000.000,00 IVIP com um rendimento de +160.000,00 IVIP (2,00%) - Y12XDT27", - "revision": "347a861755ea4bcbb823d515", + "revision": "38066da31bf34c42b130b7c7", "revision_nr": 1, - "created": 1701809344985, - "modified": 1701809344985 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95224,10 +95224,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "2b77d926917849538e05cd5a", + "revision": "e3198aa085b94421bad74b53", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95235,10 +95235,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/125797630999374460/history/1696406601868", - "revision": "ebbe992d642e41789703f045", + "revision": "90473ef9083041099fda41ea", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95273,10 +95273,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "0a16fe08fd0a4784893d1fb0", + "revision": "00c249c6562c47e0a4520268", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95284,10 +95284,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "692d131eafb64141ab8cc893", + "revision": "ab1db25679444b339ee93ad3", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95295,10 +95295,10 @@ "content": { "type": 1, "value": {}, - "revision": "45d63302ed634ea88a2be049", + "revision": "6c77943bb3f14ebeba6e7bdc", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95310,10 +95310,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "0f727c1f0f5944dfa8da2fb9", + "revision": "721e0925b3c249f99bb0663d", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95335,10 +95335,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "cc29af8c6e2b4c35b5eb3cb2", + "revision": "f2235f989dc349feb4cb249e", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95346,10 +95346,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "d642a9c029374014b44fdfc0", + "revision": "5615a670e5e64929adb082f4", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95357,10 +95357,10 @@ "content": { "type": 2, "value": {}, - "revision": "6c65eccb003b478a9fbf68a9", + "revision": "9a28fdac10f54a468d3d21dc", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95368,10 +95368,10 @@ "content": { "type": 1, "value": {}, - "revision": "f239a9a3dbef4b589f29ef56", + "revision": "505c3add1d8940b7bae49ee7", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95383,10 +95383,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "01bbbcfa1d3a407b9d89e20c", + "revision": "9e1a1ee0cd1c49429812fc21", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95408,10 +95408,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "345a334ed1a14c6ea357cea1", + "revision": "6382f6147c824051b8377183", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95419,10 +95419,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "7b0297085437426daaee3841", + "revision": "73b7f651261642a7b7915a1a", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95430,10 +95430,10 @@ "content": { "type": 2, "value": {}, - "revision": "f1f22f9d6dc741b19672e33f", + "revision": "50c1e505a6854d8584b9a332", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95441,10 +95441,10 @@ "content": { "type": 1, "value": {}, - "revision": "0ae3374311cd46f6a22c0ae5", + "revision": "53ddc5731a864ee18b47162c", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95456,10 +95456,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "0cc7bf11a63c4731ad513cff", + "revision": "bfc4a5e7ee944598a9361112", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95481,10 +95481,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "b45dfd1f7461446d922f98d2", + "revision": "4fbff4c9d1bb457eb04fd3d3", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95492,10 +95492,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "75514a7143864f51b49531fc", + "revision": "10485c98f38447c78012dfc2", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95503,10 +95503,10 @@ "content": { "type": 2, "value": {}, - "revision": "98d1b9b2640c480094dd7a5f", + "revision": "7099c93ac8f94ec78ce66a51", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95514,10 +95514,10 @@ "content": { "type": 1, "value": {}, - "revision": "2ecfc2f36daf43b5be2e9a5c", + "revision": "95953ab23cc54a8480579828", "revision_nr": 1, - "created": 1701809344990, - "modified": 1701809344990 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95529,10 +95529,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "82a7769286fd4fc2b5450ec1", + "revision": "68c1de2302da48f59ecf1a31", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95558,10 +95558,10 @@ "value": 1695423451406 } }, - "revision": "835126add6ca4509a79dd189", + "revision": "297e7fd1b3764550a04dd18a", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95569,10 +95569,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "05d8ce51ecbb413797f3c92c", + "revision": "f356e0eae3274a72910a6f31", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95580,10 +95580,10 @@ "content": { "type": 2, "value": {}, - "revision": "0a42a54158484d5b979016b9", + "revision": "d713b13fdd164aa89fe6e3a4", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95591,10 +95591,10 @@ "content": { "type": 1, "value": {}, - "revision": "18f8530e3a97452c806446bb", + "revision": "a8be98429d924990951d7d6c", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95606,10 +95606,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "634e096746b146d6b22aaa8c", + "revision": "5cdd2f75075f42d8a74b4324", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95635,10 +95635,10 @@ "value": 1695423451526 } }, - "revision": "b3f25a800c874f299dc113b6", + "revision": "1bf8c68f1aa64b7fa8906270", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95646,10 +95646,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "5d90ffea5fdb4271a87a628f", + "revision": "655d28bcc8ba4e108b9a092d", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95657,10 +95657,10 @@ "content": { "type": 2, "value": {}, - "revision": "78a13b16a72641429d3c109e", + "revision": "7cdb53a2b5d04203903a1211", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95668,10 +95668,10 @@ "content": { "type": 1, "value": {}, - "revision": "a3b5280272d24c5495a52ed0", + "revision": "5dd2a4d436a04dbd87d5fd8e", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95683,10 +95683,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "42f74156f0ce40c7b01e2fe8", + "revision": "088f77897fda4370b2ee8c84", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95712,10 +95712,10 @@ "value": 1695423451684 } }, - "revision": "95b3d6300dc44b0a8643d4ae", + "revision": "4059c1e6d31f4da98097a068", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95723,10 +95723,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "7a4cc0145d2d4ed79c519679", + "revision": "a161f421d8814954aa5c918e", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95734,10 +95734,10 @@ "content": { "type": 2, "value": {}, - "revision": "625fe18d476f4b60abc9c2a1", + "revision": "35277fc9613a4d3f8522417b", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95745,10 +95745,10 @@ "content": { "type": 1, "value": {}, - "revision": "eaad2e2715ed40cf9c26a12d", + "revision": "b4e98842ab70496c80fa2e4e", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95760,10 +95760,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "cbeaa1d38c9042eab2343ae8", + "revision": "a2c648dedd424cef8e225b3c", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95784,10 +95784,10 @@ "history_id": 1679262602609, "currency_id": "BRL" }, - "revision": "cd90bf48345c476480852ca6", + "revision": "9caa0299778e43eda18afe69", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95795,10 +95795,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "85495d3ee9b645139e93aea4", + "revision": "0b76817a47214fd98ffc987c", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95806,10 +95806,10 @@ "content": { "type": 2, "value": {}, - "revision": "50a8f39624774f97b0015f8b", + "revision": "4da76a375e94406aa73c5d43", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95817,10 +95817,10 @@ "content": { "type": 1, "value": {}, - "revision": "cc7286823c2147bd8efb71de", + "revision": "763c3524ace048e89d89ad67", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95832,10 +95832,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "627266b4eb284fe2b47408fc", + "revision": "4d202d7c139a4e75b12965d9", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95856,10 +95856,10 @@ "history_id": 1679262602609, "currency_id": "BRL" }, - "revision": "7df86b54de0448bc9639492e", + "revision": "e47308cdf67a4cd581136606", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -95867,10 +95867,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "78894f5c55c44e70bca80cc2", + "revision": "ecd15630aed94c7caa38544f", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95878,10 +95878,10 @@ "content": { "type": 2, "value": {}, - "revision": "2f9c236a3d03496d818b1600", + "revision": "daa7d8367eef49a199af7a82", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036416, + "modified": 1702563036416 } }, { @@ -95889,10 +95889,10 @@ "content": { "type": 1, "value": {}, - "revision": "4d6853b1567b45a381a27f3b", + "revision": "0d73ea1d717b4acba0c114c6", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -95904,10 +95904,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "b0a2925d04344d1caf1938fa", + "revision": "7054101ed78345d197704a74", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -95928,10 +95928,10 @@ "history_id": 1679262602609, "currency_id": "BRL" }, - "revision": "dc84f32052bd4b3da08dfa19", + "revision": "1d56d6b79c1f4cf2be16926a", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -95939,10 +95939,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "4f3bb8c742184e4c99b0121c", + "revision": "f042baf57fe84d1fba353723", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -95950,10 +95950,10 @@ "content": { "type": 2, "value": {}, - "revision": "dab91b1040474858812532c3", + "revision": "cc0ba71b6f6446f9a30680c3", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -95961,10 +95961,10 @@ "content": { "type": 1, "value": {}, - "revision": "e952c2b175b14dabbae9e20e", + "revision": "18202f60e5e2467e9fedb87f", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -95976,10 +95976,10 @@ "label": "Em 10 parcela(s) 20.00%", "amount": 600 }, - "revision": "c42a77fc4088408fa386e8af", + "revision": "9011729967434c3c8f761e9e", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96000,10 +96000,10 @@ "history_id": 1679262602609, "currency_id": "BRL" }, - "revision": "bf06009d6e7941d182a51fdd", + "revision": "0af70443438e41df848b5a22", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96011,10 +96011,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1257.9763.0999.3744-60 de um empréstimo parcelado em 10 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 3.600,00", - "revision": "fdfd643b3fb24357b90cdf2f", + "revision": "e6c94059826747c8ba12e13e", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96022,10 +96022,10 @@ "content": { "type": 2, "value": {}, - "revision": "a370c1b697314ca78d016e80", + "revision": "e8043cbc98654b788bb08f98", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96033,10 +96033,10 @@ "content": { "type": 1, "value": {}, - "revision": "cecaec8240e04568a6f62991", + "revision": "dec89ce603de46b3b807927a", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96044,10 +96044,10 @@ "content": { "type": 1, "value": {}, - "revision": "864fe37560664c099039b5a4", + "revision": "ef23b293751f4511bd3de0a5", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96066,10 +96066,10 @@ "value": 1679260956380 } }, - "revision": "a11614311c12472f98874143", + "revision": "9481286dd45d436584d772ee", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96081,10 +96081,10 @@ "symbol": "IVIP", "value": 990 }, - "revision": "6cce0c74c84640b3b00e6bec", + "revision": "bcc332dd2db0419bb2c916f3", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96092,10 +96092,10 @@ "content": { "type": 1, "value": {}, - "revision": "2f8de7073e9e4a6691178a89", + "revision": "859094f1172c43a7af479abf", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96112,10 +96112,10 @@ "value": 1697425200000 } }, - "revision": "dabcea9bd11b4fd294ff2ddf", + "revision": "6936459fd6c94e3e84d607b5", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96127,10 +96127,10 @@ "available": "454.90000000", "value": 90.844 }, - "revision": "f2608138a1534dd2965f5ec9", + "revision": "9b659003b2854502a2dcface", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96138,10 +96138,10 @@ "content": { "type": 1, "value": {}, - "revision": "ab789c77e8e3455ab13b4346", + "revision": "f15bcf3448ee4014a80f87e7", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96161,10 +96161,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "54a56b20c27740e4b25c5418", + "revision": "88b69e82cebd4da890f7916d", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96199,10 +96199,10 @@ "currency_id": "BRL", "history_id": 1679266939492 }, - "revision": "2c4a5fed588443d389e62646", + "revision": "86f1a1e8cf6547e39b3a8db8", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96210,10 +96210,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "13f94d363691414aba84db16", + "revision": "e24ca885ccff47f2ae0ff3cc", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96233,10 +96233,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ed0ea8453d404887b434bab1", + "revision": "c5ad251c6169454faf4bb50c", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96271,10 +96271,10 @@ "currency_id": "BRL", "history_id": 1679266973884 }, - "revision": "c9b4aa50b87a4b36a4f505f3", + "revision": "488b0d58e71048c4915d147a", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96282,10 +96282,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "605e4c05fe2743f79dad1c9b", + "revision": "a5fe60de67fe4a82b6a76e24", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96305,10 +96305,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "e150e3311da74ca2a77724ff", + "revision": "a064a1cfc9364e2399954cee", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96343,10 +96343,10 @@ "currency_id": "BRL", "history_id": 1679267111761 }, - "revision": "022a8110c4404955a2e3e824", + "revision": "322bc4dc5183468aab9b38a8", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96354,10 +96354,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "1c3ab2a99a8c455eb231e3f4", + "revision": "acf03f589ec54961bbe0f0d0", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96377,10 +96377,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "57a621a41ee849a29d4b6906", + "revision": "32c31ed8bc1f4a86b4baf7f5", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96415,10 +96415,10 @@ "currency_id": "BRL", "history_id": 1679872001608 }, - "revision": "220f4b402b6c44d399931238", + "revision": "bbb48f5ae57b48aeb0360b12", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96426,10 +96426,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "7a483fb1404a49b6a02bf7e2", + "revision": "3eadd684039640cf9bfaa0ce", "revision_nr": 1, - "created": 1701809344991, - "modified": 1701809344991 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96449,10 +96449,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "aa4b55b3cad743bcafe54cb2", + "revision": "0490e1e79962410f91ec8a6f", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96487,10 +96487,10 @@ "currency_id": "BRL", "history_id": 1684018958586 }, - "revision": "8a97e27b66ea44e69c3bb4f1", + "revision": "90c5a79989af4153b50f0e6c", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96498,10 +96498,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "5cef23322a4f4427b1096e8f", + "revision": "c4317f7596e84221b4523825", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96521,10 +96521,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "7b1b6c812a8d44c893479fa0", + "revision": "a1b4243a81bf457fb7b200a5", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96559,10 +96559,10 @@ "currency_id": "BRL", "history_id": 1684348450676 }, - "revision": "a7172b07287c41a3a2f9d0a1", + "revision": "e98e43e26ffd469691cf20a8", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96570,10 +96570,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "489a4cafb90a42ce8086ac90", + "revision": "170b037170a64ec3a56015b5", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96593,10 +96593,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "8c9a9a957f5a4987b851fcf6", + "revision": "c7b8beeac7ff45bab8f49918", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96631,10 +96631,10 @@ "currency_id": "BRL", "history_id": 1684624165029 }, - "revision": "566e06032ac24e1b8b243bcd", + "revision": "d30b7c31db7648588c2ca36c", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96642,10 +96642,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "19ba39912ec942bd9521ea88", + "revision": "7130e8046408460eaaa10a9f", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96665,10 +96665,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "4bcc6f79f8d14014b6621b44", + "revision": "9e87b2ed47194dbd9413a343", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96703,10 +96703,10 @@ "currency_id": "BRL", "history_id": 1684624981228 }, - "revision": "38c9b8beacc646319fc50a65", + "revision": "171c4a0c3c0747ddb65a57f5", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96714,10 +96714,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "110883122afa42608ba122f6", + "revision": "42cb756c10d04d45be2ad8db", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96725,10 +96725,10 @@ "content": { "type": 1, "value": {}, - "revision": "d71191b0c41f443ca59afd7a", + "revision": "7c917676e587446a9336bf92", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96741,10 +96741,10 @@ "totalValue": 89.197, "currencyType": "USD" }, - "revision": "50ef1815a446451b87d4834c", + "revision": "a01c9f16635242ea9e27931e", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96752,10 +96752,10 @@ "content": { "type": 1, "value": {}, - "revision": "49f4872f48134e8f80d7a17a", + "revision": "2bd67aafce4f49da9325ec5c", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96763,10 +96763,10 @@ "content": { "type": 1, "value": {}, - "revision": "065227c4abdf40b8a82b3afc", + "revision": "76a111d5ca0a42709e675291", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96774,10 +96774,10 @@ "content": { "type": 1, "value": {}, - "revision": "cb5afd1bf0474ac29f6f4b50", + "revision": "718023cc073145d69c5c8a3f", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96788,10 +96788,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "0f33415ba67d48aca990d196", + "revision": "efafb8b81c7c46d79eb46e11", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96807,10 +96807,10 @@ "value": 1695178800000 } }, - "revision": "e4feccb656ad4b12a6ebee3f", + "revision": "94fe7a3ec440485d8b41f116", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96818,10 +96818,10 @@ "content": { "type": 1, "value": {}, - "revision": "af0182fb9a20436aba51d2f0", + "revision": "19da70a526bc475092611edd", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96829,10 +96829,10 @@ "content": { "type": 1, "value": {}, - "revision": "f5f3823dfa2c4512835aa753", + "revision": "e09e91abadc34cf4bb2905b9", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96845,10 +96845,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "e28a78cff9d14aae91b2775f", + "revision": "6c55c0391ebe4d4aa0464340", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96860,10 +96860,10 @@ "symbol": "IVIP", "value": 3434.39 }, - "revision": "1726ad7de27a4712a2ea10cf", + "revision": "eaac300af3814e7ca154b2ba", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96871,10 +96871,10 @@ "content": { "type": 1, "value": {}, - "revision": "f66285b253c04c66b87a2538", + "revision": "16de89cbdeab4a0ab42f8a41", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96884,10 +96884,10 @@ "value": { "costs": {} }, - "revision": "cc3b6f8f26334ecbb923623d", + "revision": "d252162ce4194d6caa1c2f92", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96929,10 +96929,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "2cb57eb8e67740c391181d1d", + "revision": "64a43d52af1c40f59c960a18", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96940,10 +96940,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80", - "revision": "c43a324d34c44c22a44af5e8", + "revision": "98afadf409ed4d57a9bb2704", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96953,10 +96953,10 @@ "value": { "costs": {} }, - "revision": "87de1c1848a04491b50bd649", + "revision": "56cc18edd9bc424b9f3222f4", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -96998,10 +96998,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "324510535ee24ddd8e6e338e", + "revision": "2f71439162014357b923c95f", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -97009,10 +97009,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 3.000,00 para a carteira iVip 1287.0114.4173.8232-80", - "revision": "0e589430e74544d49c9aaeee", + "revision": "3c51518ce8bd49d9b24b9ee7", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -97032,10 +97032,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "ae97eadeb69b4890b0c667f9", + "revision": "292e9bddafc144368466dbb8", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -97071,10 +97071,10 @@ "history_id": 1678076967863, "description": "Compra de 35378057 IVIP por 5000 BRL" }, - "revision": "b833a88c52e94c849c204811", + "revision": "582110a18298409a825480e7", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -97086,10 +97086,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, - "revision": "c618e75bb7434b029da0b421", + "revision": "eb82e50bb58f452a896b29e1", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -97097,10 +97097,10 @@ "content": { "type": 1, "value": {}, - "revision": "e0a3759130084e849645721c", + "revision": "81f6aba536c04e12badf06f6", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -97108,10 +97108,10 @@ "content": { "type": 2, "value": {}, - "revision": "d875f07883b549bdb9d3f86b", + "revision": "cb50d440344944ecacce36f3", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -97144,10 +97144,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "bb40ea26857b4db58c11d6c1", + "revision": "1a6eeb15a013486480e70b3a", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -97155,10 +97155,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "2cbc74b286ce4ab290fb9414", + "revision": "4ebbf8f579b243fc903dcb57", "revision_nr": 1, - "created": 1701809344992, - "modified": 1701809344992 + "created": 1702563036417, + "modified": 1702563036417 } }, { @@ -97178,10 +97178,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "24c56e5c31c4428b8205d617", + "revision": "7db2076b86ac4d2fa5c5e5d3", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97217,10 +97217,10 @@ "history_id": 1679871677212, "description": "Compra de 10.651.254,00 IVIP por 2.000,00 BRL" }, - "revision": "eb60735a8b084ccb973cf458", + "revision": "97d385605fc5483890e65459", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97232,10 +97232,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, - "revision": "e5a97373f169412bb5e06a64", + "revision": "efc34999a8954213a68a1501", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97243,10 +97243,10 @@ "content": { "type": 1, "value": {}, - "revision": "05704fe6a4c443ffab6a0aa3", + "revision": "e02f57bc22304fe89298e6de", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97254,10 +97254,10 @@ "content": { "type": 2, "value": {}, - "revision": "677675f6db26482f91661e80", + "revision": "b6c7671eed7f4b12807dfb29", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97290,10 +97290,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "45e869d54d7b4c178e3a8d98", + "revision": "2480ffd7446c4ce5bd5f85ba", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97301,10 +97301,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "3b236cf51a50478192253532", + "revision": "b529de995c0e43c5bf3d17cc", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97324,10 +97324,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "03ffe92b5688483bb07d374b", + "revision": "66c38fc2b524499cadf939cc", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97363,10 +97363,10 @@ "history_id": 1679872334513, "description": "Compra de 5.325.627,00 IVIP por 1.000,00 BRL" }, - "revision": "1b53fd72c67b42b69205ae6c", + "revision": "8c8f28b599644f3999aa504d", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97376,10 +97376,10 @@ "value": { "costs": {} }, - "revision": "827e3c42a45948baa01fc5f9", + "revision": "50c3e37a08534752a0894729", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97421,10 +97421,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "e937f3fe2758449ca064d68c", + "revision": "bce107e2a91545dfb950b315", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97432,10 +97432,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 840,00 para a carteira iVip 1287.0114.4173.8232-80", - "revision": "a2fddbbb626341ef9fd660e3", + "revision": "263e27aee329432b8c1bd330", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97457,10 +97457,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "3957fd5e9c7147cab0c3c59e", + "revision": "fb9b815d43024dffb028107b", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97496,10 +97496,10 @@ "currency_id": "BRL", "history_id": 1682619932343 }, - "revision": "a007e03676de41af955a5bff", + "revision": "d757d5d2679e4b9e883951e0", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97507,10 +97507,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 4 no valor de 560,00 BRL referente ao contrato 1679268249425", - "revision": "6bbe84aa8c4c427598090f65", + "revision": "70ea4d82cb2041cbaf044296", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97532,10 +97532,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "e76da16a6a6d415d84b5ecb2", + "revision": "d30fd3fcba9f42cb880a6726", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97571,10 +97571,10 @@ "currency_id": "BRL", "history_id": 1682619932484 }, - "revision": "67f39ede20494b0aa91db114", + "revision": "8335b03ade6144fca04d202c", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97582,10 +97582,10 @@ "content": { "type": 5, "value": "Pagamento de fatura 1 de 4 no valor de 280,00 BRL referente ao contrato 1679872304314", - "revision": "e3582869e9f642928f973aaf", + "revision": "231e336ea10d4429a8633b71", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97605,10 +97605,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "bb472dca6a274836b618cb02", + "revision": "8b36f6ab011c4c51aca46747", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97643,10 +97643,10 @@ "history_id": 1685667547180, "wasDebited": true }, - "revision": "ecba1db6c2bf46dea8afd67b", + "revision": "ab4d6c6452044f10912a70e9", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97654,10 +97654,10 @@ "content": { "type": 5, "value": "Investimento de 8.000.000,00 IVIP em um staking com rendimento de 48,00% ao ano, com previsão de resgate em 6/1/2025", - "revision": "10407bcb79b54f6197c715c5", + "revision": "bb826d5d71484b60bc6dd8cd", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97667,10 +97667,10 @@ "value": { "costs": {} }, - "revision": "4cf269915b7b4a1291604b6a", + "revision": "35c7eead630145feaea781cc", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97712,10 +97712,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "698a1b961856428f9c164b37", + "revision": "2b11e0ec4dc84c69a0640f2f", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97723,10 +97723,10 @@ "content": { "type": 5, "value": "Saque de 3.000.000,00 IVIP para a carteira 0xDB45185C1086eFFBAA2d0b64862c83Bd9D29DE62", - "revision": "3ff7a903204a44488e60eefb", + "revision": "2394d6d36bb0484482d82b87", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97738,10 +97738,10 @@ "label": "Taxa de 3,00%", "amount": 748170 }, - "revision": "29e0b27052304f4687fe5678", + "revision": "3f38809eadc047709aa9edc2", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97758,10 +97758,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "35c2c4aa61c349d7b716009e", + "revision": "f547d65013e7476a81a20972", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97769,10 +97769,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/128701144173823280/history/1692276235458", - "revision": "a05d197841af424c8899e865", + "revision": "09f97003b1b74fa3823fee5b", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97780,10 +97780,10 @@ "content": { "type": 2, "value": {}, - "revision": "5eb1ad5fd23e439696321e07", + "revision": "a143ee42ef604e708ac0c980", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97827,10 +97827,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "c7923b712d2449d281670651", + "revision": "af2b51088ee94496afc28cce", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97838,10 +97838,10 @@ "content": { "type": 5, "value": "Saque de 24.190.830,00 IVIP para a carteira 0xDB45185C1086eFFBAA2d0b64862c83Bd9D29DE62", - "revision": "27ed783c4743483897292638", + "revision": "20e7ebc6d97b4619a68fd11b", "revision_nr": 1, - "created": 1701809344993, - "modified": 1701809344993 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97849,10 +97849,10 @@ "content": { "type": 1, "value": {}, - "revision": "8dfaaaae77b64da3871e31ea", + "revision": "5be6409fd7e1480c894a6635", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97864,10 +97864,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, - "revision": "49d580b883654aa4b6064ec7", + "revision": "98d9a9c772ff451a90973cc6", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97889,10 +97889,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "14b9c268b1a94dd1bf45f368", + "revision": "c3140ffbb86c4eb09f7b4b6a", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97900,10 +97900,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "8c5278b62ac94048b9519816", + "revision": "3a8f29dc09a84cb998df70cb", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97911,10 +97911,10 @@ "content": { "type": 2, "value": {}, - "revision": "f126f30e7c744e30a6553292", + "revision": "5e70dff10e1b4405aea0502f", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97926,10 +97926,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, - "revision": "23aa906be10b433cae6dd38f", + "revision": "9ce95c453baf4a6195dbbf8c", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97951,10 +97951,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "0b5a9aaa8d8b4a8893c450fb", + "revision": "e24b85d1a41547ccace21a51", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97962,10 +97962,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "ec7a7332828b41289c1d3c5c", + "revision": "e3782d8d7aea4993bcfb155e", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97973,10 +97973,10 @@ "content": { "type": 2, "value": {}, - "revision": "51382176e90d47419fc5cfc4", + "revision": "ae215e2096b940cca541ce47", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97984,10 +97984,10 @@ "content": { "type": 1, "value": {}, - "revision": "0bb59ff287a5474dabb936ba", + "revision": "b313333ab20a421496d49288", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -97999,10 +97999,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, - "revision": "3937b634c713489f95d6f9d6", + "revision": "586b669b060f4619904a76b8", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98023,10 +98023,10 @@ "history_id": 1679268249425, "currency_id": "BRL" }, - "revision": "b3bb26fa4b674cc9b8cad541", + "revision": "5d45dfdfb55744b6bbed0d56", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98034,10 +98034,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "1d8c4bfb12f84d1299b390b6", + "revision": "35dc0c4c546f42dab8c7b65e", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98045,10 +98045,10 @@ "content": { "type": 2, "value": {}, - "revision": "fdd81a44e7a64436911b544b", + "revision": "ce4f72e1ec3a4e2996d758d0", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98060,10 +98060,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, - "revision": "3d68f9774f1a4305b97637f8", + "revision": "8df594f84b4e4777893ce300", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98084,10 +98084,10 @@ "history_id": 1679872304314, "currency_id": "BRL" }, - "revision": "ecf648f186344eafbcbe3681", + "revision": "ae83115dbd18440cb2ec4637", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98095,10 +98095,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "ee030aa996324bce8633f562", + "revision": "79c9077842784e65964498df", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98106,10 +98106,10 @@ "content": { "type": 2, "value": {}, - "revision": "644a83988e0a41a4b1483708", + "revision": "1ad3791204174f3895978355", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98117,10 +98117,10 @@ "content": { "type": 1, "value": {}, - "revision": "bf7c4af7b7bf49fa801b5af7", + "revision": "3f3bc77db7394463abc604e6", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98132,10 +98132,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, - "revision": "039f1998a8064995b1d62d10", + "revision": "666912f947634dfe887d4863", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98156,10 +98156,10 @@ "history_id": 1679268249425, "currency_id": "BRL" }, - "revision": "432dbde8d1f54cd4a62ff65d", + "revision": "d29404bbf584441b980da670", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98167,10 +98167,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "df4e42cf49384ec1abf5d472", + "revision": "ad28367d7e444bbfa1f056c2", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98178,10 +98178,10 @@ "content": { "type": 2, "value": {}, - "revision": "84d320bc2d824f1f991d0af4", + "revision": "34a8fced4aad436d8c943721", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98193,10 +98193,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, - "revision": "1f3aa696a9ce473cbd3becc9", + "revision": "2abeb93d4db24dce8feb58b9", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98217,10 +98217,10 @@ "history_id": 1679872304314, "currency_id": "BRL" }, - "revision": "38922e0344af415190af1ff1", + "revision": "dc0be81af634461f8d8c4687", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98228,10 +98228,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "4c7b31e0f64a463ab8b2d4d3", + "revision": "0f101086264d406bb2d8b530", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98239,10 +98239,10 @@ "content": { "type": 2, "value": {}, - "revision": "141bc0569c8a424e9a643138", + "revision": "4cdb77745d2b41b8869d6764", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98250,10 +98250,10 @@ "content": { "type": 1, "value": {}, - "revision": "8cb407d5891b47dfa9880a43", + "revision": "78b4c2b50acc4d2f9abf4fd4", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98265,10 +98265,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 240 }, - "revision": "41349b69fdc5429eb9e1acae", + "revision": "78477964bb9a42348a9cd8f5", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98289,10 +98289,10 @@ "history_id": 1679268249425, "currency_id": "BRL" }, - "revision": "a01f98477da44b7daaf9e51b", + "revision": "9d65e392e6804873b7497741", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98300,10 +98300,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 2.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 2.240,00", - "revision": "7432576bca0240b2adb2e128", + "revision": "cd57464d147b429397556a03", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98311,10 +98311,10 @@ "content": { "type": 2, "value": {}, - "revision": "57266e94adfa4b6bbb8c2a40", + "revision": "0acd1d158cf541c08a4950a5", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98326,10 +98326,10 @@ "label": "Em 4 parcela(s) 12.00%", "amount": 120 }, - "revision": "f1f884349e914613bbabe8a9", + "revision": "92c7a456cd05438cba361262", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98350,10 +98350,10 @@ "history_id": 1679872304314, "currency_id": "BRL" }, - "revision": "7cf796009f11408c992f6852", + "revision": "f7b5c2b0e52d4535920104c1", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98361,10 +98361,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1287.0114.4173.8232-80 de um empréstimo parcelado em 4 vezes, com taxa de cobrança de 3,00% ao mês no tipo de empréstimo LIBERAÇÃO MENSAL e totalizando no valor de R$ 1.120,00", - "revision": "888a0e58fbf945ba9ad47a9d", + "revision": "5145ac268f65441596aa0df2", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98372,10 +98372,10 @@ "content": { "type": 2, "value": {}, - "revision": "6b098a8f020a4c70a34bb322", + "revision": "42870689417044c4a2c2759a", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98383,10 +98383,10 @@ "content": { "type": 1, "value": {}, - "revision": "870fce9ce5b145f4b85816a5", + "revision": "22eaea9523f64592887b7dad", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98394,10 +98394,10 @@ "content": { "type": 1, "value": {}, - "revision": "fc7231efc5fc4de18e4eaefa", + "revision": "e4ba22d7dc4841668706a7f8", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98416,10 +98416,10 @@ "value": 1679267356871 } }, - "revision": "0ba553175ef14de2b9e19b05", + "revision": "4db8543e5e414b9c8013d311", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98436,10 +98436,10 @@ "value": 1695870000000 } }, - "revision": "e854a64319284c649a33c03e", + "revision": "4bbf3859b1cd4b819b59e4e6", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98447,10 +98447,10 @@ "content": { "type": 1, "value": {}, - "revision": "6877da7140b44be6bc219392", + "revision": "0fb71f6961ef4272b651b314", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98460,10 +98460,10 @@ "value": { "costs": {} }, - "revision": "c865b5b68e2943ab96726a74", + "revision": "73a83fa8d9e347059e4fd255", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98495,10 +98495,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "67b361fa3ce5400595bc00d4", + "revision": "7eecabc143ac432a8f8140da", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98506,10 +98506,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 500,00 para a carteira iVip 1302.5146.4382.3786-70", - "revision": "3fc2f16b91b94e59b4bebf14", + "revision": "7d03a06fe64e4bda86589856", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98517,10 +98517,10 @@ "content": { "type": 1, "value": {}, - "revision": "6b939c4345504700a9b5e1f8", + "revision": "41461fe94ebe41e6ad4159e4", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98528,10 +98528,10 @@ "content": { "type": 1, "value": {}, - "revision": "36dff814fcee4b1891df68e4", + "revision": "2c14e36204034341849c6b98", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98542,10 +98542,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "d28cb26533e64948915d4e07", + "revision": "660c2ad64e1c40cda5650e9f", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98558,10 +98558,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "98beacdc01c6460ba2a9d593", + "revision": "4d18969c729b4542b684e64a", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98573,10 +98573,10 @@ "value": 0, "available": "0.00000000" }, - "revision": "3589901ab29b45a4a26eb8e9", + "revision": "9cc9a515ad45408f9b741eb8", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98588,10 +98588,10 @@ "available": "1069072.00000000", "value": 37.92 }, - "revision": "30a8c69cfaea4b0eac257408", + "revision": "661728455b8349b68545beda", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98599,10 +98599,10 @@ "content": { "type": 1, "value": {}, - "revision": "e12ff7385d3945ac98e29cec", + "revision": "b60f27f1f9d24160972fc6ef", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036418, + "modified": 1702563036418 } }, { @@ -98612,10 +98612,10 @@ "value": { "costs": {} }, - "revision": "43b4d4beddcd4645bcbbe75c", + "revision": "b0e7010c9ebf4d47b2a7e0b2", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98652,10 +98652,10 @@ }, "money_release_status": "rejected" }, - "revision": "d7d89f48fa6946928a448404", + "revision": "798b252f1c534917a6862ae6", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98663,10 +98663,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1328.9266.1243.2543-80", - "revision": "8c394b42fc2e414a9bf4aad7", + "revision": "8d765b5276354fe3883c7db5", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98676,10 +98676,10 @@ "value": { "costs": {} }, - "revision": "54376db2692047aa82caff46", + "revision": "1b2b7738b39847e9895a88a5", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98711,10 +98711,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "459da69ddd404a9fae62a320", + "revision": "ff986993bbcc43deb8d398df", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98722,10 +98722,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1328.9266.1243.2543-80", - "revision": "0743bbe5ecff40d4816e8bda", + "revision": "58db6b0effca47bf934dfbea", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98735,10 +98735,10 @@ "value": { "costs": {} }, - "revision": "7ff8834403814d47a35b6a9d", + "revision": "6cddbfe6cc9f4a6bac4ac112", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98780,10 +98780,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "9d6c1db144bc4b4dbc9b6f4b", + "revision": "dd400dd335c049cc963881ac", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98791,10 +98791,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 200,00 para a carteira iVip 1328.9266.1243.2543-80", - "revision": "337b9eed724b434bb72216cd", + "revision": "9f4a778a47224c03ab4cbad6", "revision_nr": 1, - "created": 1701809344994, - "modified": 1701809344994 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98814,10 +98814,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "7b819f882c6c4fc29b94ea7a", + "revision": "b07f8e4533564e49a7cb9970", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98853,10 +98853,10 @@ "history_id": 1679940518294, "description": "Compra de 1.069.072,00 IVIP por 200,00 BRL" }, - "revision": "e34132a0322a4b42ad140b71", + "revision": "e13b8e07323345de9573a843", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98864,10 +98864,10 @@ "content": { "type": 1, "value": {}, - "revision": "e5a503471ff54748828c5f3b", + "revision": "2cf3fc153c5546a581f4e561", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98880,10 +98880,10 @@ "totalValue": 37.76, "currencyType": "USD" }, - "revision": "3a367c4ed5f1498c99fed7c7", + "revision": "f7e3c65f496d4cafb1858657", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98895,10 +98895,10 @@ "symbol": "IVIP", "value": 3.42 }, - "revision": "651222ef6ee34e7c9e01578a", + "revision": "ddda0f1b3d234e6c88e1677f", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98910,10 +98910,10 @@ "symbol": "BRL", "value": 0 }, - "revision": "c7b0ca233fc44e8f8a1aedd3", + "revision": "f8cc1597d9a7411a9226998c", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98921,10 +98921,10 @@ "content": { "type": 1, "value": {}, - "revision": "87a3924f512642da9d5f885f", + "revision": "88f7146619fa42168b7f461f", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98938,10 +98938,10 @@ "value": 1694034023188 } }, - "revision": "876c04de87264178ad8d3635", + "revision": "3e103b1d52af44009e8c2b86", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98959,10 +98959,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "0d859ea3ac394ebaa0576548", + "revision": "a5386744c5394f4f93af6549", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -98970,10 +98970,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691442023188", - "revision": "134d400cbdbe4c9f8078422f", + "revision": "73ef2d013dd240768ab4e6bb", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99003,10 +99003,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "6e701395dbd24c3fa6ec3ccf", + "revision": "f41e3ee716d64881b111ceda", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99014,10 +99014,10 @@ "content": { "type": 5, "value": "Deposito de um valor 20,00 para a carteira iVip 1336.7505.4149.0212-50", - "revision": "1ea1094f305d45e391c5a025", + "revision": "7055bd4485f34045938949b6", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99031,10 +99031,10 @@ "value": 1694125856606 } }, - "revision": "e1662907036648dd96abf8f1", + "revision": "6318bed7b15748f396caaadf", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99052,10 +99052,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "1b6df556ffc948679f3171c4", + "revision": "c83e6d3480da4133beabdd46", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99063,10 +99063,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691533856606", - "revision": "a5d75fcb513041ca9f87522d", + "revision": "d73af35e96ab48918bba7c9d", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99106,10 +99106,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "7d61dff8bd8a4573a7245e3d", + "revision": "e25cf873b59b42279063126a", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99117,10 +99117,10 @@ "content": { "type": 5, "value": "Deposito de um valor 20,00 para a carteira iVip 1336.7505.4149.0212-50", - "revision": "dfab37ee9ba848d783d006f1", + "revision": "daf1ad098eb8444ebbb7e0dd", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99138,10 +99138,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "b2e7ace995b84329844393e0", + "revision": "e1ce67a119e14eb582a1b3b2", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99149,10 +99149,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/133675054149021250/history/1691597759364", - "revision": "328430da01ac4cfeb70006e5", + "revision": "4b368a82645f48edaac0aae3", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99187,10 +99187,10 @@ "description": "Compra de 30.608,00 IVIP por 20,00 BRL", "status_detail": "accredited" }, - "revision": "298942995fe14ff5995c4213", + "revision": "53e40cf827894c2697df75b4", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99198,10 +99198,10 @@ "content": { "type": 1, "value": {}, - "revision": "0d5f74e49149418b999635da", + "revision": "d1d60c9621f34a3c8f9897cc", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99209,10 +99209,10 @@ "content": { "type": 1, "value": {}, - "revision": "71d1501f9cbc445eb21c51a0", + "revision": "2852a9ed0cfd466f83739479", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99223,10 +99223,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "09978bfe5c0846d3b1814345", + "revision": "f52378884f414baa8b0337c1", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99242,10 +99242,10 @@ "value": 1691722800000 } }, - "revision": "b027f3cec6c94e60bec97fe5", + "revision": "814dfd9777494f9e9a27a70a", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99253,10 +99253,10 @@ "content": { "type": 1, "value": {}, - "revision": "9c2e1e1d086c4826bdd4b2df", + "revision": "0eb154555fb14959b4022894", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99266,10 +99266,10 @@ "value": { "costs": {} }, - "revision": "81aeb625c14a4b7a820c3280", + "revision": "d426fc2575c244878017bff3", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99301,10 +99301,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "0fb3c002f57548c2b8357b56", + "revision": "65e55fdd87064733b5050d63", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99312,10 +99312,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", - "revision": "01f7e036d9b94885b152ce07", + "revision": "9e0f740941d14ae7b9a26bb5", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99325,10 +99325,10 @@ "value": { "costs": {} }, - "revision": "1d714dfb17ec4ef5a3737be7", + "revision": "41f7beeb2a8a4afba875adf4", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99360,10 +99360,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "311c47f7f72546f1b3a0f8ea", + "revision": "85ef7283144a4fb28da20d1a", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99371,10 +99371,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", - "revision": "fa3ddf70a38c4cbf814d32fe", + "revision": "8171c6a860a44d3a88dde988", "revision_nr": 1, - "created": 1701809344995, - "modified": 1701809344995 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99384,10 +99384,10 @@ "value": { "costs": {} }, - "revision": "14f13e06fd3f453e8de1a6e3", + "revision": "cd236bb64bac43798f622557", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99419,10 +99419,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "7ce2b611d931467d84052be5", + "revision": "4831ce2a2dfa45268a54dac2", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99430,10 +99430,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1337.3687.9099.7268-60", - "revision": "80ba58723665467380a96b5d", + "revision": "968788c4a2724c77b445a807", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99441,10 +99441,10 @@ "content": { "type": 1, "value": {}, - "revision": "0364811396a54939bf45d1e1", + "revision": "013db3287947447c983904aa", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99452,10 +99452,10 @@ "content": { "type": 1, "value": {}, - "revision": "ab9e58cc0b904b79a309138a", + "revision": "d7b4023871d443a1b5588669", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99466,10 +99466,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "08be42c9191b4b2fa4f2d145", + "revision": "67e79ea9332c47b8853c7aab", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99482,10 +99482,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "3201b404b1bb4e1894b98140", + "revision": "dd6dea229b974e96b59876ad", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99493,10 +99493,10 @@ "content": { "type": 1, "value": {}, - "revision": "e0580cbba675427bb42382e0", + "revision": "3d90d89de48346a7bcbcc5ff", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99506,10 +99506,10 @@ "value": { "costs": {} }, - "revision": "5f45389f22844490bd1d75e3", + "revision": "bfaa106c1ccd4d35b4ba1982", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99541,10 +99541,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "3581cf2def094fc4a920d136", + "revision": "5f35bce0fa224769810ba994", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99552,10 +99552,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.700,00 para a carteira iVip 1346.8212.0797.4517-90", - "revision": "700aaaff62124e588c744bad", + "revision": "1ceca7dbe4ad4ff8bd32733c", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99563,10 +99563,10 @@ "content": { "type": 1, "value": {}, - "revision": "82755e64a54e46cfb4fad861", + "revision": "acbdadd3447f4aabb890367b", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99574,10 +99574,10 @@ "content": { "type": 1, "value": {}, - "revision": "4b2ea133ea9c4e63b6c5646c", + "revision": "37f3566d03454abfa2a8718e", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99588,10 +99588,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "504308b513a54f57819ec64d", + "revision": "0e3cb69df97a4bc8bd095484", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99604,10 +99604,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "9f4580dfc86c432198b076be", + "revision": "09baea76d8c44483b9fc5937", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99615,10 +99615,10 @@ "content": { "type": 1, "value": {}, - "revision": "3a1f39a0b0bd4661a5732dec", + "revision": "3a4a18b628164268b1b9efed", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99626,10 +99626,10 @@ "content": { "type": 1, "value": {}, - "revision": "e213bf91dfb64f6998202014", + "revision": "64e7bd6fa70947c5994b2767", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99642,10 +99642,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "abb95fffce284ec9aff31c69", + "revision": "75761e5c76644a7e95343594", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99653,10 +99653,10 @@ "content": { "type": 1, "value": {}, - "revision": "02b0cfcc14c341d48aaa2f54", + "revision": "57025e14b12b426ea1a389e2", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036419, + "modified": 1702563036419 } }, { @@ -99666,10 +99666,10 @@ "value": { "costs": {} }, - "revision": "80f4442091294fe3bed80826", + "revision": "2cd4c06aecb64c00ae29bd4e", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -99701,10 +99701,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "BRL" }, - "revision": "61242ed191c048ceb6ee61f7", + "revision": "64e70bba4c1a490cb8720465", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -99712,10 +99712,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 20,00 para a carteira iVip 1384.8850.0273.9255-70", - "revision": "46f02ec4400f40a78b7c2ccd", + "revision": "d4018e23fbc04d85afb54f65", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -99723,10 +99723,10 @@ "content": { "type": 1, "value": {}, - "revision": "398820581b9c43f8865f0e40", + "revision": "867fc2da32aa4a19ab1df27f", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -99734,10 +99734,10 @@ "content": { "type": 1, "value": {}, - "revision": "fa1153e73b88439abf509eb9", + "revision": "798b572883e74bfdb098558f", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -99748,10 +99748,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "047b2c30732e4942b9c11140", + "revision": "c989bcc471e74304a3409e7a", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -99764,10 +99764,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "e029db8c727943abab5b41bf", + "revision": "ff8ba9d8d76241818d69da83", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -99779,10 +99779,10 @@ "symbol": "IVIP", "value": 654.99 }, - "revision": "4c044a8bfe5e4d11b8a5a307", + "revision": "f650840d3c1b4fef87823c9b", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -99790,10 +99790,10 @@ "content": { "type": 1, "value": {}, - "revision": "42dac9b76b824edeaa29fb83", + "revision": "c10dbfa344844b58a10303c9", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -99803,10 +99803,10 @@ "value": { "costs": {} }, - "revision": "1efa3325478d418d9bb0aab2", + "revision": "0f63dba7fd8a4b8a8fb3079d", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -99848,10 +99848,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "5684320c7bbc4ba6b2280073", + "revision": "16b3865e7d9b45e79d586d33", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -99859,10 +99859,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.000,00 para a carteira iVip 1385.8527.3860.3328-20", - "revision": "c991b8feed1046b9ab6a7188", + "revision": "a19401aafa3c4af59d974d1d", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -99882,10 +99882,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "7f336df4f8b24d8fbf7e20ef", + "revision": "a2aa727198db496e827f2162", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -99921,10 +99921,10 @@ "history_id": 1678180078100, "description": "Compra de 7131208 IVIP por 1000 BRL" }, - "revision": "e212388665f64684aa5c666e", + "revision": "618252e9d6e546628887ec96", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -99944,10 +99944,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "7d1d722e05f44c9081ea6aa6", + "revision": "e81eda7d5eda435e8e87fdb0", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -99982,10 +99982,10 @@ "currency_id": "BRL", "history_id": 1678198835623 }, - "revision": "1dfce5ce3f1d47a188f2302c", + "revision": "8fc44500e026417ca1f1736a", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -99993,10 +99993,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "e95445bba2d0425b9b4605aa", + "revision": "a260624e472f4c38b481dd1a", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -100016,10 +100016,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "9be5b7789f794bd1b0559931", + "revision": "1c71af4cef4b4939b474ea89", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -100054,10 +100054,10 @@ "currency_id": "BRL", "history_id": 1678228246387 }, - "revision": "8e4537c37e574ef68ca498bc", + "revision": "c3ab6e3632d74741a4e681f4", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -100065,10 +100065,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "66296cf6f0814ab0b168b5c3", + "revision": "594fa33cd87d40bb8da80f0f", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -100088,10 +100088,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "1fde7280f37945098ddbecd2", + "revision": "3a54282600cb4199a3264dce", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -100126,10 +100126,10 @@ "currency_id": "BRL", "history_id": 1679266874503 }, - "revision": "185ef5bb3abf4bb58f6cafd1", + "revision": "dd5ba87f77184b58af5b779c", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -100137,10 +100137,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "7ba1b2101c03471b8c154fc5", + "revision": "130908151b1c49918b98ca5c", "revision_nr": 1, - "created": 1701809344996, - "modified": 1701809344996 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -100160,10 +100160,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "09c71c81198143acb941587f", + "revision": "dfbf3b4bb472489ba6b19e75", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -100199,10 +100199,10 @@ "history_id": 1679267008673, "description": "Compra de 23286153 IVIP por 4000 BRL" }, - "revision": "b5651a84b41f4ecab2954c0c", + "revision": "9efdfa9aae0648ce897b863a", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -100214,10 +100214,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "4c1dbfdb937746e084c4988a", + "revision": "328e2cd5f0104e9bb3f14d58", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -100225,10 +100225,10 @@ "content": { "type": 1, "value": {}, - "revision": "c6218ea1eea541ffbb0fc965", + "revision": "cfeccdbdeea54447a3921f3f", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -100236,10 +100236,10 @@ "content": { "type": 2, "value": {}, - "revision": "3a8ed5d741e94a0aabbe5c8f", + "revision": "9957c9eea2b44c4a864fd566", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -100272,10 +100272,10 @@ "currency_id": "BRL", "wasDebited": true }, - "revision": "45d99df4e9f14681a965e0c4", + "revision": "c21106345c5e46d1808b4b4c", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -100283,10 +100283,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "e70c62cd4f344c56a0e59f01", + "revision": "95bf00f1dac34c84b02f0e62", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -100306,10 +100306,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "2da3d050631f4a338041598a", + "revision": "31e2046802dc41ec9c8c4bb5", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -100344,10 +100344,10 @@ "currency_id": "BRL", "history_id": 1684348689379 }, - "revision": "aa6fb904cf9645e1ae0dfb6f", + "revision": "f19db2b6049945549bb327bc", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -100355,10 +100355,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "0a244ab70e16441e87ea348e", + "revision": "c8b8d47282044f73bf8cdf12", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036420, + "modified": 1702563036420 } }, { @@ -100378,10 +100378,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "8f2b4b6cd04b4364ad18dcee", + "revision": "41f075cf05f4427eb82a3cf3", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100417,10 +100417,10 @@ "history_id": 1684624162871, "description": "Compra de 53.772.878,00 IVIP por 11.040,00 BRL" }, - "revision": "14694851d4754d59b4625564", + "revision": "aa0bc1422eed410a8d6037bc", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100440,10 +100440,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "57e8297a49db4090b08fd121", + "revision": "6b7569c0bae045829ef84c41", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100478,10 +100478,10 @@ "currency_id": "BRL", "history_id": 1684624267520 }, - "revision": "7a3b53535cd64051b0ef747c", + "revision": "4c706b4543dd42c2b65141cd", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100489,10 +100489,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "70ca2fda017247248f012c73", + "revision": "7d918de1be4d4bd5b706b440", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100512,10 +100512,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "2b4118969d4d4b05914c4e2a", + "revision": "c745f662466149578afd8300", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100551,10 +100551,10 @@ "history_id": 1684624311448, "description": "Compra de 1.257.135,00 IVIP por 258,10 BRL" }, - "revision": "3899482ac18545168c8b2e56", + "revision": "265fa641ab0d4b0192458ecd", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100574,10 +100574,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "832406aac6484dd4bcbf7bf1", + "revision": "10cfd9c3350f4c898c67a3ef", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100612,10 +100612,10 @@ "currency_id": "BRL", "history_id": 1684624493050 }, - "revision": "f36f4f7b003847a0a07c8437", + "revision": "0b6efc1729b34d7ca9850bd1", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100623,10 +100623,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "82305eac047e4466ba91a072", + "revision": "53f5efeb3a8d4bf1a946c4f6", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100646,10 +100646,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "cf7d35d261fc487ca05abaf8", + "revision": "7e3dcd63a2a84b2a9de9e62a", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100684,10 +100684,10 @@ "currency_id": "BRL", "history_id": 1684627629023 }, - "revision": "938eda32afb24960b84b8dad", + "revision": "41f353fcf0774507ac915c03", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100695,10 +100695,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "19adc1ba47bd4aec8c0148f0", + "revision": "ef84b4cd4241463cbc0de2b3", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100718,10 +100718,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "14b4b12580c4425c81a27a90", + "revision": "ea956b4853074cf096d61abd", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100756,10 +100756,10 @@ "currency_id": "BRL", "history_id": 1684692136128 }, - "revision": "869d0128b49042149371ec4a", + "revision": "b27f8c4bce2544e185f52dd0", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100767,10 +100767,10 @@ "content": { "type": 5, "value": "Ganho de 10% na pré-venda ao indicar o nosso aplicativo por através do seu link de referência", - "revision": "72cb2f96fbd64b95a2a7e01d", + "revision": "262adc6ef7714253955a5f7a", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100790,10 +100790,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "8653fad620084f51844d4d09", + "revision": "293960aa0e6b43f09aabad10", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100829,10 +100829,10 @@ "history_id": 1684710449691, "description": "Compra de 139.785,00 IVIP por 28,80 BRL" }, - "revision": "3f1a14e4f61c47cc85c51ae7", + "revision": "7e2f2e631aeb48d09e5d04ce", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100842,10 +100842,10 @@ "value": { "costs": {} }, - "revision": "bb15defca63f4997a06a89e1", + "revision": "16a8ac21c0384d529fe15e06", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100877,10 +100877,10 @@ "status_detail": "pending_waiting_payment", "currency_id": "IVIP" }, - "revision": "0c3af32cf91b4926ac35aa95", + "revision": "53dc6698fdaf43c49cac0112", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100888,10 +100888,10 @@ "content": { "type": 5, "value": "Saque de 30.550.000,00 IVIP para a carteira 0xe19A954Bb3bc15ff05fDD30BB22AE96bF4425Bf0", - "revision": "aa2e6f31aa0f4ec88ce852e7", + "revision": "b9f32e9b246e43d788f5483b", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100901,10 +100901,10 @@ "value": { "costs": {} }, - "revision": "88f61c200330424283136627", + "revision": "599598541b844d04b29f9f55", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100946,10 +100946,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "a345b1a2cdb9499ba81feb27", + "revision": "866e3490a0524012b1c77656", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100957,10 +100957,10 @@ "content": { "type": 5, "value": "Devolução de 48.707.317,00 IVIP da carteira 1385.8527.3860.3328-20", - "revision": "db598dbe0b474a618d7a685b", + "revision": "9778e1d9f39f4ed4800b747e", "revision_nr": 1, - "created": 1701809344997, - "modified": 1701809344997 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100972,10 +100972,10 @@ "label": "Taxa de 3,00%", "amount": 1047600 }, - "revision": "dbe1ecc1eff84a11a6485655", + "revision": "659dd7a4091040d89b598513", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -100992,10 +100992,10 @@ "reference_currency_id": "IVIP", "financial_institution": "ivipcoin" }, - "revision": "0a909897560442178f788be0", + "revision": "6cf6255f29f840ab8e57f180", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101003,10 +101003,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1690812074851", - "revision": "03c5a791a8b64c90a78e0f4d", + "revision": "911a6e33576542e5b5cb5ac3", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101014,10 +101014,10 @@ "content": { "type": 2, "value": {}, - "revision": "168fc8e84a65461dad291a9c", + "revision": "4ec86a6ea9bc429091eb7414", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101061,10 +101061,10 @@ "money_release_status": "discounted", "wasDebited": true }, - "revision": "56e2fa88b5484c49a50a7798", + "revision": "cf3f14eb13764a07be4bae08", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101072,10 +101072,10 @@ "content": { "type": 5, "value": "Saque de 34.920.000,00 IVIP para a carteira 0xe19A954Bb3bc15ff05fDD30BB22AE96bF4425Bf0", - "revision": "66ef6cb0334c433589c75e30", + "revision": "d794b777d0854144ba1b75ba", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101093,10 +101093,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4f591174bfb7422fab914c2c", + "revision": "286afec6979b4cc5b326c1f6", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101104,10 +101104,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1691235380464", - "revision": "bb5df69605164ba8b54bdd2f", + "revision": "2f109b49c78b4cc687c81e04", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101141,10 +101141,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "418116f0f2744149a171640a", + "revision": "406cf71a62d040948cde20b7", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101152,10 +101152,10 @@ "content": { "type": 5, "value": "Investimento de 1.959.842,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/5/2023", - "revision": "cce4c5e11008425486432580", + "revision": "70f44dd802cd405199c2332a", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101173,10 +101173,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "e226a5ad242c45caa2d30e40", + "revision": "feb7e515c6504ae495203c7a", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101184,10 +101184,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/138585273860332820/history/1693914295943", - "revision": "660fec2afe664d66ae591799", + "revision": "acd51a90efb74f7c954b44a9", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101221,10 +101221,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "ec9f4085df224ba99d9f63d6", + "revision": "60e2543b307e4150a4905f47", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101232,10 +101232,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 1.959.842,00 IVIP com um rendimento de +39.196,84 IVIP (2,00%) - Y12XDT27", - "revision": "e9533ddf7d7a45fbb956f59e", + "revision": "a1c38a87092a4ad99fac67f0", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101243,10 +101243,10 @@ "content": { "type": 1, "value": {}, - "revision": "c817d392c822431c9e5ea6eb", + "revision": "7163639d1d3e46b1a67f76b0", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101258,10 +101258,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "b4630980f8d84fc9aa6b6290", + "revision": "163cfb0d7bc14eec90460807", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101283,10 +101283,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "17f5ec1918684498b4582dcd", + "revision": "915db595b88b4733acb25e6c", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101294,10 +101294,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "1ac68af5c0fd4b4eafe4ccba", + "revision": "ad9b137f08ee4e838ab51712", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101305,10 +101305,10 @@ "content": { "type": 2, "value": {}, - "revision": "2ae5cf73f56f481d9d53dffc", + "revision": "b743e49a0c104ac3adf83f2b", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101316,10 +101316,10 @@ "content": { "type": 1, "value": {}, - "revision": "beeac755116a43af9d85a9d2", + "revision": "afe49a24de00444f8125e00e", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101331,10 +101331,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "454dc0d9a35d4bf0a3e9ee4e", + "revision": "6a9a6a2261c942329d04df7a", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101356,10 +101356,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "97368f4bf0244568b118980b", + "revision": "cedbe9d9691a4fe9ae7eddf6", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101367,10 +101367,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "453cc2828ed04beeba4545af", + "revision": "0cff4d83e80141e4ab0e475d", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101378,10 +101378,10 @@ "content": { "type": 2, "value": {}, - "revision": "12a688636eae40a3a10e3fbe", + "revision": "4b5b70124aa049549b2eabb0", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101389,10 +101389,10 @@ "content": { "type": 1, "value": {}, - "revision": "779fea6be59648a3baf3a633", + "revision": "61c5cb5ed15240eab968fd66", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101404,10 +101404,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "ba5044f9fd0a41d195d70773", + "revision": "993c9252f96f48219ca2d820", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101429,10 +101429,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "730c4fb2eb1a40deb9ed1e5a", + "revision": "7c187c4a27b84211ad241f47", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101440,10 +101440,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "e8d6b9ce01f9433c9bb30b0f", + "revision": "dc5b938bae2b421892ca1a97", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101451,10 +101451,10 @@ "content": { "type": 2, "value": {}, - "revision": "8bcd834878fe4866a9d8ab1b", + "revision": "4634e734d7514bf488cd8ee7", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101462,10 +101462,10 @@ "content": { "type": 1, "value": {}, - "revision": "5ab007f487514086b976544a", + "revision": "890a6382332a43c2bcbe6387", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101477,10 +101477,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "8736316a430f49ff907b8fb5", + "revision": "ad185549a6ee448eb55c034b", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101502,10 +101502,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "f9b61c48c67c41faa8aec0ce", + "revision": "e9afd3b8f620494088dac8ce", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101513,10 +101513,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "5a2cb7ccc07449c08aaa80a4", + "revision": "114eec932d6f44c29aaecd03", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101524,10 +101524,10 @@ "content": { "type": 2, "value": {}, - "revision": "95d458e335af42398ea40019", + "revision": "863508c61dc04dd3ad4b69a4", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101535,10 +101535,10 @@ "content": { "type": 1, "value": {}, - "revision": "e332abb913a04586bfef16af", + "revision": "1f54982d732545e8b71e9baa", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036421, + "modified": 1702563036421 } }, { @@ -101550,10 +101550,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "5e090481f1124a0e98b70a81", + "revision": "e5d1537e7ed64de7b7367707", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101575,10 +101575,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "706c4080138b4ddda924fe72", + "revision": "5e27cd603edd4f3a8c3a87b4", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101586,10 +101586,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "a43dfeccfe9e49a0b398e706", + "revision": "3a3b43fca6734fbc896702e6", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101597,10 +101597,10 @@ "content": { "type": 2, "value": {}, - "revision": "adf933378f054373a4e68689", + "revision": "5cacd58ece15403fb0ab86cc", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101608,10 +101608,10 @@ "content": { "type": 1, "value": {}, - "revision": "d34f9862b82e4a9c88d4e5ea", + "revision": "9299708372d94f8cb2621fb6", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101623,10 +101623,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "f6f271493b8a42d8bc2fac19", + "revision": "a1985aa590814877814e62b7", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101648,10 +101648,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "a0d30e78c1c54e8096505732", + "revision": "a4aca7b474534041ae821ea3", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101659,10 +101659,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "c587b579f4c545e399482b3c", + "revision": "44cf341e527b4c61a3261d17", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101670,10 +101670,10 @@ "content": { "type": 2, "value": {}, - "revision": "2a03fe4db29149368837d0fa", + "revision": "27fdf40f326345ffb097d45e", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101681,10 +101681,10 @@ "content": { "type": 1, "value": {}, - "revision": "0585bf8f14ea478f85be9903", + "revision": "8a24fcca6e7a4d65891940ed", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101696,10 +101696,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "343bfd58788f402b9d75d149", + "revision": "f1d2b36b6dea46708fb2dfd3", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101721,10 +101721,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "ce60af987080438fb99e4305", + "revision": "37115a0d6a1444c5a708175f", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101732,10 +101732,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "9351fe381c72414a925995de", + "revision": "50d4afe6c0b645d59f0a18f1", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101743,10 +101743,10 @@ "content": { "type": 2, "value": {}, - "revision": "07809726ed1d4760b01b1fd5", + "revision": "3ed97f1a1b354fbca7d7bce9", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101754,10 +101754,10 @@ "content": { "type": 1, "value": {}, - "revision": "63854570da164ef0bfe7350e", + "revision": "74b58f2b404d4ad19441290d", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101769,10 +101769,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "ab057430266743de98d62df6", + "revision": "72e51ea7d9dd4de69bbf15a9", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101794,10 +101794,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "de288bbc89e74fdcac44e30d", + "revision": "a9f415e625dc4b66a96e85ee", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101805,10 +101805,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "a4e242f857c14bb285a0cbe1", + "revision": "e3e6f7ca18e247a5bba13ac1", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101816,10 +101816,10 @@ "content": { "type": 2, "value": {}, - "revision": "2e3281ec93ee4d79b289e804", + "revision": "7f57b8d1db3c4981a0debfc9", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101827,10 +101827,10 @@ "content": { "type": 1, "value": {}, - "revision": "33295d52ff434dc58eec0107", + "revision": "48b4902d540b4d2da5112ced", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101842,10 +101842,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "25de6cc79b304f46a79ef0cb", + "revision": "65ae0c3314904fbb820d4209", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101867,10 +101867,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "4f59033c97ac4d1dac9551da", + "revision": "abc18300cdca4f09b4d3880e", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101878,10 +101878,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "deaeb61f04234ca7acae44a9", + "revision": "41c24dee1f2b4e28ab25cd18", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101889,10 +101889,10 @@ "content": { "type": 2, "value": {}, - "revision": "84eee51d8a7049b0ac3057d1", + "revision": "1700529b1f0243a183943fdd", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101900,10 +101900,10 @@ "content": { "type": 1, "value": {}, - "revision": "c761a0cee30e48b1bf73cd96", + "revision": "0ec5e2a2e3044a4f82773388", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101915,10 +101915,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "1edf8c650e8b4906a5d3c348", + "revision": "be6bf543a5964c3a9abf9c0c", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101940,10 +101940,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "df6557ea55e14ef896797365", + "revision": "648479bc31154a75bc71697c", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101951,10 +101951,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "2d218cc72cfb471d88910b75", + "revision": "a5e810286ef34bd7b5cb24bf", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101962,10 +101962,10 @@ "content": { "type": 2, "value": {}, - "revision": "55aa96bb6fa74f9e92f4bfde", + "revision": "775ea46d8f5647d0899b4dbf", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101973,10 +101973,10 @@ "content": { "type": 1, "value": {}, - "revision": "95e0fef16f0942d78237a6cc", + "revision": "8d05dd3b82014833b895f527", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -101988,10 +101988,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "b6a7aafea0614532989d6a48", + "revision": "4e37c0a4b54f4cfda2d56725", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102013,10 +102013,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "6884588eddf0462c929cc4d2", + "revision": "70645e728e6e4737b6d04ff0", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102024,10 +102024,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "a82e06f628d248e4a1613335", + "revision": "0e2facb53bc54ec5b4fc6923", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102035,10 +102035,10 @@ "content": { "type": 2, "value": {}, - "revision": "1a1aed18e4d74767b4a477b7", + "revision": "e6723cf95e044b459c5d55ff", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102046,10 +102046,10 @@ "content": { "type": 1, "value": {}, - "revision": "be46aa56151f4682afc72e68", + "revision": "85fa3015e13f4398bfe95dea", "revision_nr": 1, - "created": 1701809344998, - "modified": 1701809344998 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102061,10 +102061,10 @@ "label": "Em 12 parcela(s) 24.00%", "amount": 2400 }, - "revision": "e190010ded334871b694858a", + "revision": "314c8b707de3454c8f490722", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102086,10 +102086,10 @@ "currency_id": "BRL", "status": "paid" }, - "revision": "7bec8690491a4cdead33c801", + "revision": "bb36e50facca4a818ea8fd43", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102097,10 +102097,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 10.000,00 para a carteira iVip 1385.8527.3860.3328-20 de um empréstimo parcelado em 12 vezes, com taxa de cobrança de 2,00% ao mês no tipo de empréstimo LIBERAÇÃO FINAL e totalizando no valor de R$ 12.400,00", - "revision": "8b22070f3a354d3a9f2267af", + "revision": "0de31d1396f74d47a3b8771f", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102108,10 +102108,10 @@ "content": { "type": 2, "value": {}, - "revision": "2631ff1addfc4b31afbbef34", + "revision": "8cf287a9419f4c688b846dbb", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102119,10 +102119,10 @@ "content": { "type": 1, "value": {}, - "revision": "6d647a614d0449979a064495", + "revision": "1783a0cc506a4deb880f3d2a", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102130,10 +102130,10 @@ "content": { "type": 1, "value": {}, - "revision": "795eb894b81d43e5ac272ec8", + "revision": "e4306f96a03c4078872c1fdc", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102152,10 +102152,10 @@ "value": 1684007556024 } }, - "revision": "9b0577a346ed4621bece5111", + "revision": "81e9ea58ebbd4a9bb44d2588", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102172,10 +102172,10 @@ "value": 1696647600000 } }, - "revision": "a55d4213f83d4b8e973ee9ae", + "revision": "3b1a64d985e740e3aff8a1a6", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102183,10 +102183,10 @@ "content": { "type": 1, "value": {}, - "revision": "d4cb389fe62b4061b2201656", + "revision": "c3c99c56d4a1455e811d98a6", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102194,10 +102194,10 @@ "content": { "type": 1, "value": {}, - "revision": "c8f3ac65b8bb4c40a62b9869", + "revision": "b0e5973ec3f44b52b428a6d4", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102213,10 +102213,10 @@ "value": 1696215600000 } }, - "revision": "994427055de14a27a51750b8", + "revision": "01140ff4e71644fb986e56df", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102228,10 +102228,10 @@ "symbol": "IVIP", "value": 29.61 }, - "revision": "ea61ea1be57b40a29e1896be", + "revision": "8411fa65190843b6b86f0b7f", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102239,10 +102239,10 @@ "content": { "type": 1, "value": {}, - "revision": "e6e89df2aead4274b1577308", + "revision": "580a6b380f8e487daa8408b3", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102252,10 +102252,10 @@ "value": { "costs": {} }, - "revision": "9a64ee32f52f4a78a1e23fb1", + "revision": "42678a7a1dff459ea37412cc", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102297,10 +102297,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "be0f58985be04922b94173cb", + "revision": "60f5770c822349c89f2b157a", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102308,10 +102308,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 1.600,00 para a carteira iVip 1404.9875.6876.3405-00", - "revision": "3da1dc682a6643a9afd42def", + "revision": "55e5d12912b344c29ec55146", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036422, + "modified": 1702563036422 } }, { @@ -102331,10 +102331,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "841f5b85bbdc41e89ad0a72c", + "revision": "fd6b934db004405cae6008e1", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036423, + "modified": 1702563036423 } }, { @@ -102370,10 +102370,10 @@ "history_id": 1685727229028, "description": "Compra de 5.398.200,00 IVIP por 1.600,00 BRL" }, - "revision": "2c5a0b26383d4c749a681c14", + "revision": "c204efb3fe7c4366979b8a29", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036423, + "modified": 1702563036423 } }, { @@ -102393,10 +102393,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "e916bc6c57704bb4a0b2622c", + "revision": "5658c387004d495d932a019b", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036423, + "modified": 1702563036423 } }, { @@ -102430,10 +102430,10 @@ "currency_id": "IVIP", "history_id": 1687318007517 }, - "revision": "168f08c675884b58b466aaa2", + "revision": "050adcd982c944559d3e2333", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036423, + "modified": 1702563036423 } }, { @@ -102441,10 +102441,10 @@ "content": { "type": 5, "value": "Investimento de 5.000.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 6/21/2025", - "revision": "260771e2d0d84b5c9d8460e8", + "revision": "b1f3942c7b5044bca5139774", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036423, + "modified": 1702563036423 } }, { @@ -102464,10 +102464,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "fbdd594b6d5f49819e64cef9", + "revision": "41e2d14cfd854dc3b71e72a9", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036423, + "modified": 1702563036423 } }, { @@ -102501,10 +102501,10 @@ "currency_id": "IVIP", "history_id": 1688408922424 }, - "revision": "9a8ec1d3a09a4e7ea1465fa9", + "revision": "b6766d65654444248dfe5c98", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036423, + "modified": 1702563036423 } }, { @@ -102512,10 +102512,10 @@ "content": { "type": 5, "value": "Investimento de 320.960,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 8/3/2023", - "revision": "c9acf545512949eb984e17be", + "revision": "efe163ab50264fb98feaed42", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036423, + "modified": 1702563036423 } }, { @@ -102535,10 +102535,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "295044ebc963421dbcd4fa9a", + "revision": "08b58bba5f264dd6ba79644a", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036423, + "modified": 1702563036423 } }, { @@ -102573,10 +102573,10 @@ "history_id": 1691087650613, "wasDebited": true }, - "revision": "f8f06f1c973a4a56865c8821", + "revision": "14c6f4c5e5c64bf5ad85daba", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036423, + "modified": 1702563036423 } }, { @@ -102584,10 +102584,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 320.960,00 IVIP com um rendimento de +6.419,2 IVIP (2,00%)", - "revision": "93b65a82e9f4416393a18395", + "revision": "0933ed42e79c4c18abae12ed", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036423, + "modified": 1702563036423 } }, { @@ -102605,10 +102605,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "62e10aa35b96453585e2d775", + "revision": "bd52af726752448081dcc87a", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102616,10 +102616,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1691114916429", - "revision": "55731287f3b54d15b15e15d7", + "revision": "dae2fc0b42d64adabbe35d68", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102653,10 +102653,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "28f10068cbdc4d97a85c031f", + "revision": "6459761c299d49adb359db55", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102664,10 +102664,10 @@ "content": { "type": 5, "value": "Investimento de 366.669,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 9/3/2023", - "revision": "3c33c5665d12425983e9d8b2", + "revision": "3a264a0fb1314d0fa860fe9e", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102685,10 +102685,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "28a42921d7b6458c9754767a", + "revision": "0aff568002f240caa6010dd9", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102696,10 +102696,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1693793335003", - "revision": "ceb4466c43504f98a7a94e76", + "revision": "8d8458cd7097408bb394f598", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102733,10 +102733,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "6799874494d44c2dbcdac14a", + "revision": "8f90c0b55f98432da9fc4127", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102744,10 +102744,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 366.669,00 IVIP com um rendimento de +7.333,38 IVIP (2,00%) - Y12XDT27", - "revision": "91bde5378f124a4d910a6f23", + "revision": "9db1ddfb05f44fde84b71ed4", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102765,10 +102765,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "a38f6ea9ac874a2894a94c3a", + "revision": "537751fb24bf4b2ba82e8625", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102776,10 +102776,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1693793542322", - "revision": "d5002af228c04a20a9e17939", + "revision": "46604861e75d48b28c7b7523", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102813,10 +102813,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "e5518e7b55d84a2499d3c304", + "revision": "bc3f8cde78c04748b2115de1", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102824,10 +102824,10 @@ "content": { "type": 5, "value": "Investimento de 411.950,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 03/10/2023 - Y12XDT27", - "revision": "f9ebba0f9cc6493c8df57434", + "revision": "e1fd855b7fa4466aae4acd1e", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102845,10 +102845,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "65757245c58542c1bd2480a8", + "revision": "bc1aa4deed4b482fb040956f", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102856,10 +102856,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1696395329903", - "revision": "8a79fe115c2f41189e15e498", + "revision": "c78f916547164517999ff234", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102894,10 +102894,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "e316ef8f62784a2ab85b0bea", + "revision": "b67ae1d9ae854c9d87858600", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102905,10 +102905,10 @@ "content": { "type": 5, "value": "Resgate do investimento staking de 411.950,00 IVIP com um rendimento de +8.239,00 IVIP (2,00%) - Y12XDT27", - "revision": "d131a8aef4ab47e89009059f", + "revision": "07b67b23c447440280bc9a79", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102926,10 +102926,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "9820486083cd452f8f55e896", + "revision": "d988d71b16c84a069a1d1d42", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102937,10 +102937,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/140498756876340500/history/1696472422028", - "revision": "acb252a515c1496f941ac194", + "revision": "6f06278fb4be447db36afbdf", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102975,10 +102975,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "b04bbe20c97e41c684bc7697", + "revision": "63dae3c8ae4d44db859d65e2", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102986,10 +102986,10 @@ "content": { "type": 5, "value": "Investimento de 200.000,00 IVIP em um staking com rendimento de 24,00% ao ano, com previsão de resgate em 04/11/2023 - Y12XDT27", - "revision": "6581ad7c5e7e4f4788fbaab2", + "revision": "645acb41999d4cbb9cdc5447", "revision_nr": 1, - "created": 1701809344999, - "modified": 1701809344999 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -102997,10 +102997,10 @@ "content": { "type": 1, "value": {}, - "revision": "58b782d9f7244c3f8826451d", + "revision": "d20d8946fe1b49cbb380760a", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103008,10 +103008,10 @@ "content": { "type": 1, "value": {}, - "revision": "f6c1efd556294c64b932bfa3", + "revision": "ad80f563c24743228e71b9f5", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103022,10 +103022,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "138938c78f564bb884f6aea8", + "revision": "a97589e230274319bf3708d3", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103042,10 +103042,10 @@ "value": 1696647600000 } }, - "revision": "65ce6b36e34f4ea3911b5692", + "revision": "9bfbac497f4f4d1d9bf82ebc", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103057,10 +103057,10 @@ "symbol": "IVIP", "value": 239.28 }, - "revision": "6017040eb1d04e3bb43753a5", + "revision": "32eca7fb03c044948e3c7c4d", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103068,10 +103068,10 @@ "content": { "type": 1, "value": {}, - "revision": "23a5aeca21fd4da3b29fe8e7", + "revision": "536bd2af2fb748c1a063b2b5", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103081,10 +103081,10 @@ "value": { "costs": {} }, - "revision": "a3138dbdb09f4601b17717a4", + "revision": "2809453bac0c411baf1bc3ea", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103126,10 +103126,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "192beff47ddf49f9b1e32405", + "revision": "2a8c0f57e5c7499893c6a92d", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103137,10 +103137,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 5.000,00 para a carteira iVip 1429.7769.3689.8883-40", - "revision": "a3c92d3b320243139939a460", + "revision": "e8b2e7ef2b9147509f18cd47", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103160,10 +103160,10 @@ "external_resource_url": "", "costs": {} }, - "revision": "30fd63b6beda4e1fa2e9d741", + "revision": "5eaa28f4c0af4e279306881a", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103199,10 +103199,10 @@ "history_id": 1689208259450, "description": "Compra de 2.112.486,00 IVIP por 5.000,00 BRL" }, - "revision": "83afda4aa10a442ba67c91dc", + "revision": "85f83d02ff6a487e98b0a8e9", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103210,10 +103210,10 @@ "content": { "type": 1, "value": {}, - "revision": "bd43fbfa222746999f7a794d", + "revision": "e9c147931b7242a5b9b50293", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103221,10 +103221,10 @@ "content": { "type": 1, "value": {}, - "revision": "6f10f70aa1c445499477e390", + "revision": "6543e8ba5c3b49e1bcbecd4d", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103235,10 +103235,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "842cfcb762be40738378932b", + "revision": "2ab2a7aef1c047b58b70e55d", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103255,10 +103255,10 @@ "value": 1697079600000 } }, - "revision": "e2936dc90fd748efb479f1b6", + "revision": "ce4f27563ca840d7a4a04b5e", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103266,10 +103266,10 @@ "content": { "type": 1, "value": {}, - "revision": "74f64b7f398549f9afbd82de", + "revision": "a6108b426f7b4a65b574bcbe", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103277,10 +103277,10 @@ "content": { "type": 1, "value": {}, - "revision": "d456bbba33b74cf2be3e79a7", + "revision": "f8e10b9b30b14256a230508a", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103297,10 +103297,10 @@ "value": 1696647600000 } }, - "revision": "cc0cbf3205d84d50a7d4a258", + "revision": "25a801c0dea34d0ab8e72c5c", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103308,10 +103308,10 @@ "content": { "type": 1, "value": {}, - "revision": "2e04482d3a5a4827b6dd529f", + "revision": "1ebaf082cd574390880c6504", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103319,10 +103319,10 @@ "content": { "type": 1, "value": {}, - "revision": "059cb7811855460ca6d1768f", + "revision": "188d8373556e4651b19481a6", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103335,10 +103335,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "46f8a3344cf34c9eaa7dbb38", + "revision": "d97d2b35aa7c44888d7de95a", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103346,10 +103346,10 @@ "content": { "type": 1, "value": {}, - "revision": "cb548181234945efaea6effd", + "revision": "54fd4ca3eb7f4bb4a8049fb9", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103363,10 +103363,10 @@ "value": 1697568433538 } }, - "revision": "1d2d90abec554c879c325f59", + "revision": "b4648dcf48e44a87b033a562", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103384,10 +103384,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "4a7c7c6d591b43858c54e799", + "revision": "3b9f1eeb499f4953bcf60d04", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103395,10 +103395,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/146193775313990370/history/1694976433538", - "revision": "a15ba053ae2343dea12d46af", + "revision": "6623b4129fd5432e9f8f951b", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103428,10 +103428,10 @@ "base_currency_id": "BRL", "status_detail": "pending_waiting_payment" }, - "revision": "e3123d3dda754243be94853c", + "revision": "34c01c10eeb843c2a7e69128", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103439,10 +103439,10 @@ "content": { "type": 5, "value": "Deposito de um valor 20,00 BRL para a carteira iVip 1461.9377.5313.9903-70", - "revision": "8334cdf82ba0400f81d72e1d", + "revision": "a3b99b37e44948fda913e9fc", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103450,10 +103450,10 @@ "content": { "type": 1, "value": {}, - "revision": "2f2763a13ab042adac2146d1", + "revision": "be6501fafaa94c9e841cad76", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103461,10 +103461,10 @@ "content": { "type": 1, "value": {}, - "revision": "b030b9516822488280a4d00b", + "revision": "18d2268e62d246afa1854d5b", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103475,10 +103475,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "d1d38a87c6c14c4585ceb09c", + "revision": "4ded939dce1940fe8a49b9db", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103494,10 +103494,10 @@ "value": 1696906800000 } }, - "revision": "12acc1f2d73143129d01e471", + "revision": "6cdbcb89dbd144d4839b9f10", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103505,10 +103505,10 @@ "content": { "type": 1, "value": {}, - "revision": "3ec174d97b914c519bff5367", + "revision": "c221c32483f946b5bd040a51", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103516,10 +103516,10 @@ "content": { "type": 1, "value": {}, - "revision": "e21c29736ecd460899841e20", + "revision": "85d596e7592e4ee08e4c18d8", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103527,10 +103527,10 @@ "content": { "type": 1, "value": {}, - "revision": "80ab21e8bab1470eb7e52424", + "revision": "4a99a25c62c4470abe935c47", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103541,10 +103541,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "b41fc0a094524a69b36cc253", + "revision": "a25e72c57e284c1bafa3d4e2", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103557,10 +103557,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "c12a3e3783bf497889e2b25e", + "revision": "e419d392a47b4f4fb1b47492", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103568,10 +103568,10 @@ "content": { "type": 1, "value": {}, - "revision": "1c0a1aad2e52439d91d3bf27", + "revision": "5b543638bcd04368b3a56326", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103579,10 +103579,10 @@ "content": { "type": 1, "value": {}, - "revision": "0fc14d3351504c9e95981f96", + "revision": "2196c6fd9980490a957712ba", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103595,10 +103595,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "2b269674a20e404283de8529", + "revision": "e80b6c447afd424caae3435a", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103606,10 +103606,10 @@ "content": { "type": 1, "value": {}, - "revision": "65d6405e8cb74ec9b7f99795", + "revision": "e3738c81df6a48e3983e8c9e", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103621,10 +103621,10 @@ "label": "Taxa de 0.99%", "amount": 0.9900000000000001 }, - "revision": "5f85af6f636d4e60ac1314b3", + "revision": "e4c5dc2368a54cd4953b7376", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103632,10 +103632,10 @@ "content": { "type": 1, "value": {}, - "revision": "d6f4729409844fac811f5a6b", + "revision": "6106f32f5c9e435c96447b02", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103645,10 +103645,10 @@ "value": { "account_holder_name": "IVIPCOIN LTDA" }, - "revision": "5f3532f3efcf46b5b38d9429", + "revision": "9906e4821cc74a3c95a19d1b", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103656,10 +103656,10 @@ "content": { "type": 1, "value": {}, - "revision": "fd891f2bc54549abaa16cefa", + "revision": "1ce7c3e3ad0a426986111548", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103673,10 +103673,10 @@ "overpaid_amount": 0, "installment_amount": 0 }, - "revision": "bf27df8318894ccdb2b8c180", + "revision": "9f489705ba2b4722a71bd750", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103684,10 +103684,10 @@ "content": { "type": 5, "value": "00020126360014br.gov.bcb.pix0114497186560001335204000053039865406100.995802BR5925IVIPCOINIVIPCOIN2023031016009Sao Paulo62240520mpqrinter5566184887363046119", - "revision": "4aef3c2bda48458aa2c73c05", + "revision": "aed3c8ad1ef943a1998133bb", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103695,10 +103695,10 @@ "content": { "type": 5, "value": "https://www.mercadopago.com.br/payments/55661848873/ticket?caller_id=1310149122&hash=e13553d1-ab9f-45c3-ab92-c23df003b316", - "revision": "a3d2cbca4819445da8ce4158", + "revision": "092176cdc1a84bd89cffa2ae", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103706,10 +103706,10 @@ "content": { "type": 5, "value": "iVBORw0KGgoAAAANSUhEUgAABWQAAAVkAQAAAAB79iscAAAIxklEQVR42u3dW27kNhAFUO5A+9+ldqAgwWDcYt2inGSAZMSjD8N2d0uH/Veo17h+o+sctLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/Xjvm6/jxv69Xp09Pb/nzdrePnT9+/PW/9KAfb6mfnRi0tLS0tLS0tLS0tLSbaI9C+fztvAO+7nT+PNBxf+zxeaDpBOW4t49lFS0tLS0tLS0tLS0t7QbazwCyGqdI8MudT3COmDyc8Om5hUFLS0tLS0tLS0tLS7ut9rrHiV/P+SyGrDm9+mr+87pHm7S0tLS0tLS0tLS0tLRzNFcVJQicqi5v13TclC2c3kxLS0tLS0tLS0tLS7u3Ngd36bFnaVeb7l5eGE+ydfEnLS0tLS0tLS0tLS3t+7VpSsl/8ONfzFShpaWlpaWlpaWlpaX9nbXrq40EP8PL8x4O1vfloSVNOWa5aGlpaWlpaWlpaWlp365NRZNnl787Fy1xKRYtB5qGTl5l/OQyu0dLS0tLS0tLS0tLS/s+bZqpX0aQXPdOtdQSd3WD+tMs/yusZhvdkH9aWlpaWlpaWlpaWtp3a9M+tTKeP0WCdTL/p+JaJAXLhMp6PlpaWlpaWlpaWlpa2n20JSZsRz5eJbtX7n6G7F5y1+8hP42WlpaWlpaWlpaWlnYD7Xqp2qRIh0xPbF9t84YJREtLS0tLS0tLS0tLu4W2tL+lBreauitpuqtPzo28JeDMtwp4WlpaWlpaWlpaWlra12tzSJfmhtQl1qnBbZHEm2o82y68g5aWlpaWlpaWlpaWdidt+i0PFLm6+SJX2KA9FWHeyjHLWJIR8LS0tLS0tLS0tLS0tFtop0RcKq6s5FIbeS22W6cCzul9Jaw9aGlpaWlpaWlpaWlpt9O226jTMJJ0vuJJceLolq+NUJ1JS0tLS0tLS0tLS0u7lTa1xKXgLg/gb5N9YzGSMoWmz7vhaGlpaWlpaWlpaWlpX6UtY0RS+m3cb3KWmsyQkusHRz5VbNLS0tLS0tLS0tLS0u6oTbm1Zgxkvh7Hl5ThlMcib0hLS0tLS0tLS0tLS7uT9pa/Sy1x7ZrqHGM2icI06ySlAsNESVpaWlpaWlpaWlpa2ndrz9yklu9UM3llT9qqwa3L343pLs8xLy0tLS0tLS0tLS0t7Xu0tzhx2oRWKjHHvYXtDJ5RutxKiFhnUE5B5UPMS0tLS0tLS0tLS0tL+yJt7k9r/ixjRL7XSdfypshyeoGWlpaWlpaWlpaWlnYL7VNe7gi3axJxeV7JVTrf2gLO6RuhpaWlpaWlpaWlpaXdQpsfNsLwxxT6pa65NhU44Ztk37IbjpaWlpaWlpaWlpaW9o3aEUbsj/znFOtN8V+JOx/zd0Vbv0NaWlpaWlpaWlpaWtottGkESUrnPc3tv40ladvk0uK29uG0tLS0tLS0tLS0tLTv1x6hfDL1sV0lEZdLL2sjXAovF+MnL1paWlpaWlpaWlpa2r20zT3TFuxSG3nmrrnS/nZ2GcTHjjtaWlpaWlpaWlpaWtq3a9NkkLJy7SypuzQpsm2Ty+1v6bnjcaYKLS0tLS0tLS0tLS3t27Sju6aKyDKC5OgmnNQzpwg0V11OBZe0tLS0tLS0tLS0tLQbaEs0dy4ptZnt6q5Uibmu4pyCT1paWlpaWlpaWlpa2p20V7nx1A2XR5Uc3XNSBDrl+VZfwUMukpaWlpaWlpaWlpaW9lXa6/6OM8wmuUJZ5AhxZ5MefKqwTL/R0tLS0tLS0tLS0tLuo20WrS0630anbZaqpVxiXpn9rapLWlpaWlpaWlpaWlral2mvboL/Y/lk6WhrtmBPKwByyecoAyZpaWlpaWlpaWlpaWm30JZd1bXwcepjSzm4Endez0vVpuBzlOJPWlpaWlpaWlpaWlranbQ16ktTStYJwLIj+wyfGN1q7ZOWlpaWlpaWlpaWlnZr7ehWrl0hxrzypJF2UXYbi6bvgZaWlpaWlpaWlpaWdjttEwSmELG0xNXutZSrS0NQ0vm6WZW0tLS0tLS0tLS0tLRv1n6+N5VKNh1tizLLUXrb8oGOru5z+gQtLS0tLS0tLS0tLe27tW3727I/beSM37FYmT1l8koAWb85WlpaWlpaWlpaWlraLbQpMGwjxkUR5hG65lI9Z1qPPb16PGT3aGlpaWlpaWlpaWlpX6VNe9LKp2rur0SHacxJwre72BZBJS0tLS0tLS0tLS0t7eu1i23UzWTHfMjmpK1sijG/OVOFlpaWlpaWlpaWlpb2Zdo2sVfzbe2Ukm/MHClB5QivHrHGk5aWlpaWlpaWlpaWdgPtFEo2JZCLR5y54HL6CtIMyvSl0dLS0tLS0tLS0tLS7qNNDWnT59NU/24Afwwln7ZlX4tcIi0tLS0tLS0tLS0t7fu1TQy3HkbS1mmWCLQa2xuUWlBaWlpaWlpaWlpaWtoNtG37W44YU21kXWxdijBTVFr75765s5uWlpaWlpaWlpaWlvaN2tHNh2xCyacwtNZVTrJ1KElLS0tLS0tLS0tLS7uPNl2L4Y9tiHiUz+aEXTME5TPtN120tLS0tLS0tLS0tLTv1o75Wg3qn4LAVHBZQslUdVnd/2CqPy0tLS0tLS0tLS0t7Vu0Rwggm/LJsii7ni8VV5bzTVHp34kiaWlpaWlpaWlpaWlpX6ld1FqO0Op2hM9WSj7p6gRp7xotLS0tLS0tLS0tLe3e2jTycQr42mUAeWdbM8a/nJSWlpaWlpaWlpaWlnZvbTti/7on4s4wXySFg7V1rg0bH3Z209LS0tLS0tLS0tLSvlK7xufosM39jfvu61VfXOmue551SUtLS0tLS0tLS0tL+z5tLXzMTWpnSAA+FmF+5u+a0LQ0xy2rLmlpaWlpaWlpaWlpad+m/f9ftLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS/TPsHcCgepoe7LrMAAAAASUVORK5CYII=", - "revision": "1e83af58f5fe4d3a8678bceb", + "revision": "b819bd4d9b2a45ff82344b44", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103717,10 +103717,10 @@ "content": { "type": 2, "value": {}, - "revision": "9c25a0b707984e7296f86c81", + "revision": "8107a8e926834facb61e6dc7", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103753,10 +103753,10 @@ "status_detail": "expired", "currency_id": "BRL" }, - "revision": "bb8f55a30b6a42b5a9138aa9", + "revision": "c3a6942436c045b096866b40", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103764,10 +103764,10 @@ "content": { "type": 5, "value": "Deposito de um valor R$ 100,00 para a carteira iVip 1470.0699.3684.7822-00", - "revision": "0747d9daecf146e2a4b5bc5c", + "revision": "b7d5ccf9cb7c46868699aa8a", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103775,10 +103775,10 @@ "content": { "type": 1, "value": {}, - "revision": "52c1a334d2be46c1b3189632", + "revision": "e65d09443e66485ba787d365", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103791,10 +103791,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "a09aa6eb210d4f709b2e1a06", + "revision": "48972a80d8c847ba8a4066d3", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103802,10 +103802,10 @@ "content": { "type": 1, "value": {}, - "revision": "f55f68976fa7422eaa778ce2", + "revision": "3c01dfb2c87c49b592e123e5", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103813,10 +103813,10 @@ "content": { "type": 1, "value": {}, - "revision": "7a085b50816a4b599ba53fe6", + "revision": "8805806a09a5418bb4aee94a", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103824,10 +103824,10 @@ "content": { "type": 1, "value": {}, - "revision": "ad616ebf01b0460dbddb46e6", + "revision": "d1ff59f8f4114ce88e04d04b", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103838,10 +103838,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "7cfdf393b45740a6939873cb", + "revision": "7f00e6098dec439aba6f94b5", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103858,10 +103858,10 @@ "value": 1696820400000 } }, - "revision": "65ae0d78b9e94687a929dbf7", + "revision": "cd2197242dfd490cb58d6f2a", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103869,10 +103869,10 @@ "content": { "type": 1, "value": {}, - "revision": "cd366c215408452bb5e7251f", + "revision": "bcc42bb376db47d28d1e99e4", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103880,10 +103880,10 @@ "content": { "type": 1, "value": {}, - "revision": "0adde0d247954acc812f0d14", + "revision": "d9d5af4ecd58406680c834fa", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103896,10 +103896,10 @@ "totalValue": 0, "currencyType": "USD" }, - "revision": "f0a7d4b5af4a458e94f33b0d", + "revision": "5e3bdcc8113f47d0be14d0e2", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103907,10 +103907,10 @@ "content": { "type": 1, "value": {}, - "revision": "0f84626cc4ce43139301c8b6", + "revision": "70291993ca2c489b9f9d7b86", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103918,10 +103918,10 @@ "content": { "type": 1, "value": {}, - "revision": "0456c9dd45b545fd8ef242f7", + "revision": "0b81c62aa6bb4d6f8a59a9fc", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103933,10 +103933,10 @@ "dateValidity": 1696981676516, "currencyType": "USD" }, - "revision": "3b0447b6799e4dbdb3a8b1e3", + "revision": "822bbe84526b4ac68ad71a56", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103944,10 +103944,10 @@ "content": { "type": 1, "value": {}, - "revision": "aa96c2d1f316434691b3c49b", + "revision": "88802b99e421422c846150be", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103961,10 +103961,10 @@ "value": 1696549725001 } }, - "revision": "8fd12d2b99f84812b2995a2b", + "revision": "85b80b3eba0f4ed88ed64b2b", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103982,10 +103982,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "47702008e95c445f87891311", + "revision": "87eb7aa32d2248a89c7c03d6", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -103993,10 +103993,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/152557644739400160/history/1693957725002", - "revision": "d5b15a252cfc4f4aa29bf00a", + "revision": "e6aaa5360c724cd9b0a043a4", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -104036,10 +104036,10 @@ "money_release_status": "approved", "wasDebited": true }, - "revision": "b59a775a8dff4113a85999e0", + "revision": "13a4b100c1c649c1a270b3d8", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -104047,10 +104047,10 @@ "content": { "type": 5, "value": "Deposito de um valor 1.000,00 IVIP para a carteira iVip 1525.5764.4739.4001-60", - "revision": "3b931b4696c8444da97855d7", + "revision": "39429538b6654eccbf71a83e", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -104068,10 +104068,10 @@ "financial_institution": "ivipcoin", "costs": {} }, - "revision": "8cbc322faa674b6fade3ebad", + "revision": "e9b91a702f364f9fa843de22", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -104079,10 +104079,10 @@ "content": { "type": 5, "value": "https://ivipcoin-api.com/v1/finances/info_by/152557644739400160/history/1694615393430", - "revision": "9bf6661cb8134bc0b1ccc328", + "revision": "7a5abdeb803b482aabe31c72", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -104116,10 +104116,10 @@ "base_currency_id": "IVIP", "status_detail": "accredited" }, - "revision": "3850057fd7934ac1b7edf88a", + "revision": "150172e327b84359b8cc886a", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -104127,10 +104127,10 @@ "content": { "type": 5, "value": "Investimento de 1.000,00 IVIP em um staking com rendimento de 20,00% ao ano, com previsão de resgate em 13/09/2025 - P9A02KSL", - "revision": "d958e6d1135a4d3b9d8b6064", + "revision": "06af2d95ee7440b0a6328385", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -104138,10 +104138,10 @@ "content": { "type": 1, "value": {}, - "revision": "ed5d3c8e4482406f9628b04b", + "revision": "03f77ddca7b243ae8c82e50c", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -104149,10 +104149,10 @@ "content": { "type": 1, "value": {}, - "revision": "f12537b914104fb8bc7d9277", + "revision": "ad36ca312b7c4e4bbee6e78e", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -104163,10 +104163,10 @@ "approvedLimit": 0, "limitUsed": 0 }, - "revision": "5d7f923f8e694cf19c757532", + "revision": "9be684002ba44f908c5c7c17", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -104182,10 +104182,10 @@ "value": 1695092400000 } }, - "revision": "4cf22066a9db4d9f9b44f787", + "revision": "3110101f3b14478285e4b8f3", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } }, { @@ -104193,10 +104193,10 @@ "content": { "type": 1, "value": {}, - "revision": "1df4f3342d87433eb9345f29", + "revision": "351542a6a2484242a827e8e0", "revision_nr": 1, - "created": 1701809345000, - "modified": 1701809345000 + "created": 1702563036424, + "modified": 1702563036424 } } ] \ No newline at end of file From f5888b7557faf2ee2ebb4517a9ec7e0fd075e0a4 Mon Sep 17 00:00:00 2001 From: iamrosada Date: Thu, 14 Dec 2023 17:18:32 +0300 Subject: [PATCH 32/36] feat: created the function to set, only needs to convert to class --- test/set.ts | 719 ++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 588 insertions(+), 131 deletions(-) diff --git a/test/set.ts b/test/set.ts index c5efcd01..73ae99e7 100644 --- a/test/set.ts +++ b/test/set.ts @@ -1,11 +1,16 @@ import { MongoClient, Collection, Db } from "mongodb"; import fs from "fs"; -import path from "path"; +// import path from "path"; import { randomUUID } from "crypto"; -type NodeValueType = keyof typeof nodeValueTypes; -import Node, { nodeValueTypes } from "./../src/server/services/database/Node/index"; +function generateShortUUID(): string { + const fullUUID = randomUUID(); + const shortUUID = fullUUID.replace(/-/g, "").slice(0, 24); + return shortUUID; +} +// type NodeValueType = keyof typeof nodeValueTypes; +// import Node, { nodeValueTypes } from "./../src/server/services/database/Node/index"; import { PathInfo } from "ivipbase-core"; (async () => { @@ -13,31 +18,6 @@ import { PathInfo } from "ivipbase-core"; const db: Db = client.db("root"); const collection: Collection = db.collection("ivipcoin-db"); - // console.log(new Date().toLocaleString("pt-BR")); - - const path: string = "ivipcoin-db::__movement_wallet__/000523147298669313/history/*"; - - const data = new Node([], { - async dataSynchronization(path, type, nodes) { - // console.log(path); - if (type === "get") { - const result = await (collection - .find({ - path: { - $regex: path, - }, - }) - .toArray() as Promise); - - return result; - } - - return []; - }, - }); - - await data.synchronize(path, true); - type Result = { path: string; content: { @@ -50,13 +30,31 @@ import { PathInfo } from "ivipbase-core"; }; }; - data.setNode("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/currency_id", "DDDDD"); - - const o_path = "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/currency_id"; - function set(path: string, value: any, options: { assert_revision?: string } = {}): Result[] { const results: Result[] = []; + // const pathParts = path.split("/"); + // let currentPath = ""; + + // PathInfo.get(path).keys.forEach((part, i) => { + // currentPath += (i > 0 ? "/" : "") + part; + + // const arrayResult = { + // path: currentPath.substring(1), + // content: { + // type: 2, + // value: {}, + // revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", + // revision_nr: 1, + // created: Date.now(), + // modified: Date.now(), + // }, + // }; + // if (arrayResult.path) { + // results.push(arrayResult); + // } + // }); + if (path.trim() === "") { throw new Error(`Invalid path node`); } @@ -122,123 +120,326 @@ import { PathInfo } from "ivipbase-core"; }; results.push(nonObjectResult); } + } + if (typeof value === "object" && !Array.isArray(value)) { + // Encontrar chaves com valores maiores que 50 + const valueArray = Object.entries(value); + valueArray.forEach(([key, valueOfObj]) => { + const result = `${key}: ${valueOfObj}`; + + if (result.length >= 50) { + const nonObjectResult: Result = { + path: `${pathInfo.path}/${key}` as string, + content: { + type: 2, + value: valueOfObj as string, + revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(nonObjectResult); + } + }); - if (typeof value === "string" && value.length >= 50) { - results.push({ - path: pathInfo.parentPath as string, - content: { - type: 2, - value: processedValue, - revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", - revision_nr: 1, - created: Date.now(), - modified: Date.now(), - }, - }); - // console.log(currentValue, "string"); - } - // Initialize the object if it doesn't exist - - // const resultadoFiltrado = Object.entries(value) - // .filter(([key, value]) => typeof value === "string" ||typeof value !== "number" && value.length < 50) - // .reduce((acc, [key, value]) => { - // acc[key] = value; - // return acc; - // }, {}); - - if (typeof value === "object") { - const otherObject = Object.entries(value as any) - .filter(([key, value]) => typeof value !== "string" || value.length < 49) - .reduce((acc, [key, value]) => { - acc[key] = value; - return acc; - }, {} as Record); - // Encontrar chaves com valores maiores que 50 - const valueArray = Object.entries(value); - // console.info(valueArray); - valueArray.forEach(([key, valueOfObj]) => { - // console.log(`Key: ${key}, Value: ${value}`); - const result = `${key}: ${valueOfObj}`; - - if (result.length >= 50) { - console.log(key); - - const nonObjectResult: Result = { - path: `${pathInfo.path}/${key}` as string, - content: { - type: 2, - value: valueOfObj as string, - revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", - revision_nr: 1, - created: Date.now(), - modified: Date.now(), - }, - }; - results.push(nonObjectResult); - } else { - const nonObjectResult: Result = { - path: pathInfo.path as string, - content: { - type: 2, - value: otherObject as any, - revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", - revision_nr: 1, - created: Date.now(), - modified: Date.now(), - }, - }; - - // Return the result (if necessary) - results.push(nonObjectResult); - } - }); - } + const otherObject = Object.entries(value as any) + .filter(([key, value]) => typeof value !== "string" || value.length < 49) + .reduce((acc, [key, value]) => { + acc[key] = value; + return acc; + }, {} as Record); + const nonObjectResult: Result = { + path: (pathInfo.path + "DEUS") as string, + content: { + type: 2, + value: otherObject as any, + revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + + // Return the result (if necessary) + results.push(nonObjectResult); } - // console.log(results); return results; } - // Example usage: - const rsul = set("/example/curenty_value_pedro_rosada_ivipi_tiago", [{ prop1: "value1" }, { prop2: "value2" }]); - const x = set("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/costs", [{ title: "Taxa de serviço", label: "Taxa de R$ 3,49", amount: 3.49 }]); - console.log("-----------------------------------------------------------------------------"); + //Example usage: + // const rsul = set("/example/curenty_value_pedro_rosada_ivipi_tiago", [{ prop1: "value1" }, { prop2: "value2" }]); + // const x = set("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/costs", [{ title: "Taxa de serviço", label: "Taxa de R$ 3,49", amount: 3.49 }]); + // console.log("-----------------------------------------------------------------------------"); - console.log(JSON.stringify(x, null, 2)); - console.log("-----------------------------------------------------------------------------"); + // console.log(JSON.stringify(x, null, 2)); + // console.log("-----------------------------------------------------------------------------"); - console.log(JSON.stringify(rsul, null, 2)); + // console.log(JSON.stringify(rsul, null, 2)); - // Exemplo de uso: + // //Exemplo de uso: - // Exemplo de uso: - console.log("-----------------------------------------------------------------------------"); + // //Exemplo de uso: + // console.log("-----------------------------------------------------------------------------"); - // Exemplo de uso: + //Exemplo de uso: - const xx = set("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/currency_id", "DDDDD"); - console.log(JSON.stringify(xx, null, 2)); - console.log("-----------------------------------------------------------------------------"); + // const xx = set("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/currency_id", "DDDDD"); + // console.log(JSON.stringify(xx, null, 2)); + // console.log("-----------------------------------------------------------------------------"); - const t = set("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/currency_id", { - installments: 1, - payment_method_reference_id: "10194042832", - acquirer_reference: "Deposito de um valor R$ 60,00 para a carteira iVip 0005.2314.7298.6693-13", - verification_code: "10194042832", - net_received_amount: 0, - total_paid_amount: 606.49, - overpaid_amount: 0, - installment_amount: "Deposito de um valor R$ 60,00 para a carteira iVip 0005.2314.7298.6693-13", - financial_institution: "bradesco", - }); - console.log(JSON.stringify(t, null, 2)); + // const t = set("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/currency_id", { + // installments: 1, + // payment_method_reference_id: "10194042832", + // acquirer_reference: "Deposito de um valor R$ 60,00 para a carteira iVip 0005.2314.7298.6693-13", + // verification_code: "10194042832", + // net_received_amount: 0, + // total_paid_amount: 606.49, + // overpaid_amount: 0, + // installment_amount: "Deposito de um valor R$ 60,00 para a carteira iVip 0005.2314.7298.6693-13", + // financial_institution: "bradesco", + // }); + // console.log(JSON.stringify(t, null, 2)); - console.log("-----------------------------------------------------------------------------"); + // console.log("-----------------------------------------------------------------------------"); })(); +// OLH, EU TENHO ESSE PATH +// "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/currency_id" + +// "ivipcoin-db::__movement_wallet__" + +// "ivipcoin-db::__movement_wallet__/000523147298669313" + +// "ivipcoin-db::__movement_wallet__/000523147298669313/history" +// "ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788" + +// type Result = { +// path: string; +// content: { +// type: any; +// value: Record | string | number; +// revision: string; +// revision_nr: number; +// created: number; +// modified: number; +// }; +// }; + +// function processObject(obj, pathInfo, results, options) { +// const currentPath = pathInfo.path; +// const { assert_revision = "lnt02q7v0007oohx37705737" } = options; +// const MAX_KEY_LENGTH = 50; + +// if (typeof obj !== "object" || Array.isArray(obj)) { +// // Caso seja um array, você pode adicionar lógica específica aqui, se necessário. +// return; +// } + +// const nonObjectKeys = {}; +// let otherObject; +// let maior; + +// for (const [key, value] of Object.entries(obj)) { +// const childPath = `${currentPath}/${key}`; + +// if (Array.isArray(value)) { +// // Se o valor for um array, processe cada elemento do array +// value.forEach((element, index) => { +// const arrayElementPath = `${childPath}[${index}]`; +// processObject(element, { path: arrayElementPath }, results, options); +// }); +// const resultContent = { +// path: childPath, // Use o caminho específico para valores longos +// content: { +// type: 2, +// value: {}, +// revision: assert_revision, +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; +// results.push(resultContent); +// } else if (typeof value === "object") { +// // Se o valor é um objeto, chame a função novamente recursivamente +// processObject(value, { path: childPath }, results, options); +// } else { +// if (String(value).length >= MAX_KEY_LENGTH) { +// // Se o valor (considerando como string) tem mais de 50 caracteres, adicione um resultado para ele +// const resultContent = { +// path: childPath, // Use o caminho específico para valores longos +// content: { +// type: 2, +// value: value, +// revision: assert_revision, +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; +// results.push(resultContent); +// } else { +// nonObjectKeys[key] = value; +// if (String(value).length >= MAX_KEY_LENGTH) { +// maior = Object.entries(nonObjectKeys) +// .filter(([k, v]) => typeof v !== "string" || String(v).length >= MAX_KEY_LENGTH) +// .reduce((acc, [k, v]) => { +// acc[k] = v; +// return acc; +// }, {}); +// } +// } +// } +// } + +// if (Object.keys(nonObjectKeys).length > 0) { +// const resultContent = { +// path: currentPath, +// content: { +// type: 1, +// value: otherObject || nonObjectKeys, +// revision: assert_revision, +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; +// results.push(resultContent); +// } + +// if (maior) { +// const resultContent = { +// path: `${currentPath}/maior`, // Caminho específico para os objetos maiores +// content: { +// type: 1, +// value: maior, +// revision: assert_revision, +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; +// results.push(resultContent); +// } +// } + +// function set(path: string, value: any, options: { assert_revision?: string } = {}): Result[] { +// const results: Result[] = []; + +// if (path.trim() === "") { +// throw new Error(`Invalid path node`); +// } + +// const pathInfo = PathInfo.get(path); + +// if (typeof value === "object" && !Array.isArray(value)) { +// processObject(value, { path: pathInfo.path }, results, options); +// } +// let currentPath = ""; + +// PathInfo.get(path).keys.forEach((part, i) => { +// currentPath += (i > 0 ? "/" : "") + part; + +// if (!Array.isArray(value)) { +// const arrayResult = { +// path: currentPath.substring(1), +// content: { +// type: 2, +// value: {}, +// revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; +// if (arrayResult.path) { +// results.push(arrayResult); +// } +// } +// }); + +// const theKey: any = pathInfo.key; + +// if (Array.isArray(value) && value.length > 0) { +// // If 'value' is an array, process each object in the array +// value.forEach((obj, i) => { +// const currentPath = `${path}[${i}]`; // Include the array index in the path + +// const processedValue = { +// [theKey]: obj, +// }; + +// const arrayResult: Result = { +// path: currentPath, +// content: { +// type: 2, // Assuming it's still type 2 for non-array items +// value: processedValue, +// revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; + +// results.push(arrayResult); +// }); +// const arrayResult: Result = { +// path: pathInfo.path, +// content: { +// type: 2, // Assuming it's still type 2 for non-array items +// value: {}, +// revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; +// results.push(arrayResult); +// } else { +// // If 'value' is not an array, create a single object +// const processedValue = { +// [theKey]: value, +// }; + +// if (typeof value === "string") { +// const processedValue = { +// [theKey]: value, +// }; +// const nonObjectResult: Result = { +// path: pathInfo.parentPath as string, +// content: { +// type: 2, +// value: processedValue, +// revision: options.assert_revision || "lnt02q7x000eoohx91rb246i", +// revision_nr: 1, +// created: Date.now(), +// modified: Date.now(), +// }, +// }; +// results.push(nonObjectResult); +// } +// } +// return results; +// } + +const nodeValueTypes = { + EMPTY: 0, + OBJECT: 1, + ARRAY: 2, + NUMBER: 3, + BOOLEAN: 4, + STRING: 5, + DATETIME: 6, + BIGINT: 7, + BINARY: 8, + REFERENCE: 9, +} as const; + type Result = { path: string; content: { - type: any; + type: (typeof nodeValueTypes)[keyof typeof nodeValueTypes]; value: Record | string | number; revision: string; revision_nr: number; @@ -246,3 +447,259 @@ type Result = { modified: number; }; }; + +function getType(value: unknown): number { + if (Array.isArray(value)) { + return nodeValueTypes.ARRAY; + } else if (value && typeof value === "object") { + return nodeValueTypes.OBJECT; + } else if (typeof value === "number") { + return nodeValueTypes.NUMBER; + } else if (typeof value === "boolean") { + return nodeValueTypes.BOOLEAN; + } else if (typeof value === "string") { + return nodeValueTypes.STRING; + } else if (typeof value === "bigint") { + return nodeValueTypes.BIGINT; + } else if (typeof value === "object" && (value as any).type === 6) { + return nodeValueTypes.DATETIME; + } else { + return nodeValueTypes.EMPTY; + } +} + +function processObject(obj, pathInfo, results, options) { + const currentPath = pathInfo.path; + const { assert_revision = "lnt02q7v0007oohx37705737" } = options; + const MAX_KEY_LENGTH = 50; + + if (typeof obj !== "object" || Array.isArray(obj)) { + return; + } + + const nonObjectKeys = {}; + let otherObject; + let maior; + + for (const [key, value] of Object.entries(obj)) { + const childPath = `${currentPath}/${key}`; + + if (Array.isArray(value)) { + value.forEach((element, index) => { + const arrayElementPath = `${childPath}[${index}]`; + processObject(element, { path: arrayElementPath }, results, options); + }); + const resultContent = { + path: childPath, + content: { + type: nodeValueTypes.ARRAY, + value: {}, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(resultContent); + } else if (typeof value === "object") { + processObject(value, { path: childPath }, results, options); + } else { + const valueType = getType(value); + if (String(value).length >= MAX_KEY_LENGTH) { + const resultContent = { + path: childPath, + content: { + type: valueType, + value: value, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(resultContent); + } else { + nonObjectKeys[key] = value; + if (String(value).length >= MAX_KEY_LENGTH) { + maior = Object.entries(nonObjectKeys) + .filter(([k, v]) => typeof v !== "string" || String(v).length >= MAX_KEY_LENGTH) + .reduce((acc, [k, v]) => { + acc[k] = v; + return acc; + }, {}); + } + } + } + } + + if (Object.keys(nonObjectKeys).length > 0) { + const resultContent = { + path: currentPath, + content: { + type: nodeValueTypes.OBJECT, + value: otherObject || nonObjectKeys, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(resultContent); + } + + if (maior) { + const resultContent = { + path: `${currentPath}/maior`, + content: { + type: nodeValueTypes.OBJECT, + value: maior, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(resultContent); + } +} + +function set(path: string, value: any, options: { assert_revision?: string } = {}): Result[] { + const results: Result[] = []; + + if (path.trim() === "") { + throw new Error(`Invalid path node`); + } + + const pathInfo = PathInfo.get(path); + + if (typeof value === "object" && !Array.isArray(value)) { + processObject(value, { path: pathInfo.path }, results, options); + } + let currentPath = ""; + + PathInfo.get(path).keys.forEach((part, i) => { + currentPath += (i > 0 ? "/" : "") + part; + + if (!Array.isArray(value)) { + const arrayResult = { + path: currentPath.substring(1), + content: { + // type: nodeValueTypes.ARRAY, + type: getType(value), + value: {}, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + if (arrayResult.path) { + results.push(arrayResult as any); + } + } + }); + + const theKey: any = pathInfo.key; + + if (Array.isArray(value) && value.length > 0) { + value.forEach((obj, i) => { + const currentPath = `${path}[${i}]`; + const processedValue = { + [theKey]: obj, + }; + const arrayResult: Result = { + path: currentPath, + content: { + type: nodeValueTypes.ARRAY, + value: processedValue, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(arrayResult); + }); + const arrayResult: Result = { + path: pathInfo.path, + content: { + type: nodeValueTypes.ARRAY, + value: {}, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(arrayResult); + } else { + const valueType = getType(value); + const processedValue = { + [theKey]: value, + }; + + if (typeof value === "string") { + const processedValue = { + [theKey]: value, + }; + const nonObjectResult: Result = { + path: pathInfo.parentPath as string, + content: { + type: valueType as any, + value: processedValue, + revision: generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(nonObjectResult); + } + } + return results; +} + +const options = { assert_revision: "algum_valor" }; + +// Exemplo de uso +const path = "ivipcoin-db::movement_wallet/000523147298669313/history/1677138262468"; +const value = { + type: "deposit", + wallet_type: + "Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres.Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres.....", + payment_method: "bolbradesco", + original_amount: 603, + total_amount: [{ title: "Taxa de serviço", label: "Taxa de R$ 3,49", amount: 3.49 }], + id: 1311772470, + operation_type: "regular_payment", + payment_type: "ticket", + status: { + payment_method: + "Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres.Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres.....", + original_amount: 603, + total_amount: 606.49, + id: [{ title: "Taxa de serviço", label: "Taxa de R$ 3,49", amount: 3.49 }], + operation_type: "regular_payment", + payment_type: "ticket", + currency_id: "BRL", + history_id: "1677138262468", + striue50: + "Valor da string maior Valor Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres... da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres...", + }, + status_detail: "pending_waiting_payment", + currency_id: "BRL", + history_id: "1677138262468", +}; + +// const rsul = set("/example/curenty_value_pedro_rosada_ivipi_tiago", [{ prop1: "value1" }, { prop2: "value2" }], options); +// const x = set("ivipcoin-db::__movement_wallet__/000523147298669313/history/1677138655788/costs", [{ title: "Taxa de serviço", label: "Taxa de R$ 3,49", amount: 3.49 }], options); +// console.log(JSON.stringify(rsul, null, 2)); + +// console.log("-----------------------------------------------------------------------------"); + +// console.log(JSON.stringify(x, null, 2)); +// console.log("-----------------------------------------------------------------------------"); + +const results = set(path, value, options); + +console.log(JSON.stringify(results, null, 2)); From d427b3f0a22165f7fb6482a83c5597300c978b94 Mon Sep 17 00:00:00 2001 From: tiagoabranges Date: Thu, 14 Dec 2023 11:53:40 -0300 Subject: [PATCH 33/36] feat: implement set class --- package.json | 1 + src/server/services/database/MDE/index.ts | 238 +++++++++++++++++++++- test/mde.ts | 46 +++++ 3 files changed, 278 insertions(+), 7 deletions(-) create mode 100644 test/mde.ts diff --git a/package.json b/package.json index aaa6c807..0d5fb2cf 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,7 @@ "dev": "nodemon ./src/server/services/database/Node/NodeRestructureJson.ts", "dev2": "nodemon ./src/server/services/database/Node/NodeResultWithPath.ts", "dev3": "nodemon ./test/set.ts", + "dev4": "nodemon ./test/mde.ts", "build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:packages && echo Done!", "build:clean": "rimraf dist", "build:esm": "tsc -p tsconfig.json && npx tsc-esm-fix ---target='dist/esm'", diff --git a/src/server/services/database/MDE/index.ts b/src/server/services/database/MDE/index.ts index 7ddf93c1..8afa64b9 100644 --- a/src/server/services/database/MDE/index.ts +++ b/src/server/services/database/MDE/index.ts @@ -1,3 +1,4 @@ +import { randomUUID } from "crypto"; import { PathInfo, PathReference, SimpleEventEmitter, Utils } from "ivipbase-core"; const { encodeString, isDate } = Utils; @@ -669,11 +670,234 @@ export default class MDE extends SimpleEventEmitter { * @param {string} [options.assert_revision] - Uma string que representa a revisão associada ao node, se necessário. * @returns {void} */ - set( - path: string, - value: any, - options: { - assert_revision?: string; - } = {}, - ): void {} + set(path: string, value: any, options: { assert_revision?: string } = {}): Result[] { + const results: Result[] = []; + + if (path.trim() === "") { + throw new Error(`Invalid path node`); + } + + const pathInfo = PathInfo.get(path); + + if (typeof value === "object" && !Array.isArray(value)) { + this.processObject(value, { path: pathInfo.path }, results, options); + } + let currentPath = ""; + + PathInfo.get(path).keys.forEach((part, i) => { + currentPath += (i > 0 ? "/" : "") + part; + + if (!Array.isArray(value)) { + const arrayResult = { + path: currentPath.substring(1), + content: { + // type: nodeValueTypes.ARRAY, + type: this.getType(value), + value: {}, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + if (arrayResult.path) { + results.push(arrayResult as any); + } + } + }); + + const theKey: any = pathInfo.key; + + if (Array.isArray(value) && value.length > 0) { + value.forEach((obj, i) => { + const currentPath = `${path}[${i}]`; + const processedValue = { + [theKey]: obj, + }; + const arrayResult: Result = { + path: currentPath, + content: { + type: nodeValueTypes.ARRAY, + value: processedValue, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(arrayResult); + }); + const arrayResult: Result = { + path: pathInfo.path, + content: { + type: nodeValueTypes.ARRAY, + value: {}, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(arrayResult); + } else { + const valueType = this.getType(value); + const processedValue = { + [theKey]: value, + }; + + if (typeof value === "string") { + const processedValue = { + [theKey]: value, + }; + const nonObjectResult: Result = { + path: pathInfo.parentPath as string, + content: { + type: valueType as any, + value: processedValue, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(nonObjectResult); + } + } + return results; + } + + + public getType(value: unknown): number { + if (Array.isArray(value)) { + return nodeValueTypes.ARRAY; + } else if (value && typeof value === "object") { + return nodeValueTypes.OBJECT; + } else if (typeof value === "number") { + return nodeValueTypes.NUMBER; + } else if (typeof value === "boolean") { + return nodeValueTypes.BOOLEAN; + } else if (typeof value === "string") { + return nodeValueTypes.STRING; + } else if (typeof value === "bigint") { + return nodeValueTypes.BIGINT; + } else if (typeof value === "object" && (value as any).type === 6) { + return nodeValueTypes.DATETIME; + } else { + return nodeValueTypes.EMPTY; + } + } + + public generateShortUUID(): string { + const fullUUID = randomUUID(); + const shortUUID = fullUUID.replace(/-/g, "").slice(0, 24); + return shortUUID; + } + + public processObject(obj, pathInfo, results, options) { + const currentPath = pathInfo.path; + const { assert_revision = "lnt02q7v0007oohx37705737" } = options; + const MAX_KEY_LENGTH = 50; + + if (typeof obj !== "object" || Array.isArray(obj)) { + return; + } + + const nonObjectKeys = {}; + let otherObject; + let maior; + + for (const [key, value] of Object.entries(obj)) { + const childPath = `${currentPath}/${key}`; + + if (Array.isArray(value)) { + value.forEach((element, index) => { + const arrayElementPath = `${childPath}[${index}]`; + this.processObject(element, { path: arrayElementPath }, results, options); + }); + const resultContent = { + path: childPath, + content: { + type: nodeValueTypes.ARRAY, + value: {}, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(resultContent); + } else if (typeof value === "object") { + this.processObject(value, { path: childPath }, results, options); + } else { + const valueType = this.getType(value); + if (String(value).length >= MAX_KEY_LENGTH) { + const resultContent = { + path: childPath, + content: { + type: valueType, + value: value, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(resultContent); + } else { + nonObjectKeys[key] = value; + if (String(value).length >= MAX_KEY_LENGTH) { + maior = Object.entries(nonObjectKeys) + .filter(([k, v]) => typeof v !== "string" || String(v).length >= MAX_KEY_LENGTH) + .reduce((acc, [k, v]) => { + acc[k] = v; + return acc; + }, {}); + } + } + } + } + + if (Object.keys(nonObjectKeys).length > 0) { + const resultContent = { + path: currentPath, + content: { + type: nodeValueTypes.OBJECT, + value: otherObject || nonObjectKeys, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(resultContent); + } + + if (maior) { + const resultContent = { + path: `${currentPath}/maior`, + content: { + type: nodeValueTypes.OBJECT, + value: maior, + revision: this.generateShortUUID(), + revision_nr: 1, + created: Date.now(), + modified: Date.now(), + }, + }; + results.push(resultContent); + } + } } + + +type Result = { + path: string; + content: { + type: (typeof nodeValueTypes)[keyof typeof nodeValueTypes]; + value: Record | string | number; + revision: string; + revision_nr: number; + created: number; + modified: number; + }; +}; \ No newline at end of file diff --git a/test/mde.ts b/test/mde.ts new file mode 100644 index 00000000..3d6a66b6 --- /dev/null +++ b/test/mde.ts @@ -0,0 +1,46 @@ +import MDE from "../src/server/services/database/MDE"; +import myJsonfile from "../test/myjsonfile.json"; + +const instance = new MDE({ + prefix: "", + searchData: async (search) => { + return myJsonfile.filter((node) => + search.test(node.path) + ) + } +}) + + +const path = "ivipcoin-db::movement_wallet/000523147298669313/history/1677138262468"; +const value = { + type: "deposit", + wallet_type: + "Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres.Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres.....", + payment_method: "bolbradesco", + original_amount: 603, + total_amount: [{ title: "Taxa de serviço", label: "Taxa de R$ 3,49", amount: 3.49 }], + id: 1311772470, + operation_type: "regular_payment", + payment_type: "ticket", + status: { + payment_method: + "Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres.Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres.....", + original_amount: 603, + total_amount: 606.49, + id: [{ title: "Taxa de serviço", label: "Taxa de R$ 3,49", amount: 3.49 }], + operation_type: "regular_payment", + payment_type: "ticket", + currency_id: "BRL", + history_id: "1677138262468", + striue50: + "Valor da string maior Valor Valor da string maior Valor da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres... da string maior que 50 caracteres Valor da que 50 caracteres Valor da string maior que 50 caracteres...", + }, + status_detail: "pending_waiting_payment", + currency_id: "BRL", + history_id: "1677138262468", +}; + +const options = { assert_revision: "algum_valor" }; +const results = instance.set(path, value, options); + +console.log(JSON.stringify(results, null, 2)); \ No newline at end of file From b1d79a05123b96dcc612d660d58ff4dae1ec269e Mon Sep 17 00:00:00 2001 From: tiagoabranges Date: Fri, 15 Dec 2023 10:31:19 -0300 Subject: [PATCH 34/36] feat: add types set and verify --- src/server/services/database/MDE/index.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/server/services/database/MDE/index.ts b/src/server/services/database/MDE/index.ts index 8afa64b9..20928453 100644 --- a/src/server/services/database/MDE/index.ts +++ b/src/server/services/database/MDE/index.ts @@ -690,6 +690,7 @@ export default class MDE extends SimpleEventEmitter { if (!Array.isArray(value)) { const arrayResult = { path: currentPath.substring(1), + type: "VERIFY", content: { // type: nodeValueTypes.ARRAY, type: this.getType(value), @@ -716,6 +717,7 @@ export default class MDE extends SimpleEventEmitter { }; const arrayResult: Result = { path: currentPath, + type: "SET", content: { type: nodeValueTypes.ARRAY, value: processedValue, @@ -729,6 +731,7 @@ export default class MDE extends SimpleEventEmitter { }); const arrayResult: Result = { path: pathInfo.path, + type: "SET", content: { type: nodeValueTypes.ARRAY, value: {}, @@ -751,6 +754,7 @@ export default class MDE extends SimpleEventEmitter { }; const nonObjectResult: Result = { path: pathInfo.parentPath as string, + type: "SET", content: { type: valueType as any, value: processedValue, @@ -816,6 +820,7 @@ export default class MDE extends SimpleEventEmitter { }); const resultContent = { path: childPath, + type: "SET", content: { type: nodeValueTypes.ARRAY, value: {}, @@ -833,6 +838,7 @@ export default class MDE extends SimpleEventEmitter { if (String(value).length >= MAX_KEY_LENGTH) { const resultContent = { path: childPath, + type: "SET", content: { type: valueType, value: value, @@ -860,6 +866,7 @@ export default class MDE extends SimpleEventEmitter { if (Object.keys(nonObjectKeys).length > 0) { const resultContent = { path: currentPath, + type: "SET", content: { type: nodeValueTypes.OBJECT, value: otherObject || nonObjectKeys, @@ -875,6 +882,7 @@ export default class MDE extends SimpleEventEmitter { if (maior) { const resultContent = { path: `${currentPath}/maior`, + type: "SET", content: { type: nodeValueTypes.OBJECT, value: maior, @@ -892,6 +900,7 @@ export default class MDE extends SimpleEventEmitter { type Result = { path: string; + type: string, content: { type: (typeof nodeValueTypes)[keyof typeof nodeValueTypes]; value: Record | string | number; From 5804cc20ad61e55ea4849fe16f29795f35e2272b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?LU=C3=8DS=20DE=20=C3=81GUA-ROSADA?= <59142372+iamrosada@users.noreply.github.com> Date: Fri, 15 Dec 2023 17:47:10 +0300 Subject: [PATCH 35/36] feat: new changes --- .gitignore | 3 ++- src/server/services/database/MDE/index.ts | 8 +++----- src/server/services/database/Node/NodeRestructureJson.ts | 2 +- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 55c62fda..3da230a6 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ node_modules *.acebase package-lock.json previous_src -./src/settings.ts \ No newline at end of file +./src/settings.ts +**./src/settings.ts \ No newline at end of file diff --git a/src/server/services/database/MDE/index.ts b/src/server/services/database/MDE/index.ts index 2f39e328..c2d555ab 100644 --- a/src/server/services/database/MDE/index.ts +++ b/src/server/services/database/MDE/index.ts @@ -404,7 +404,7 @@ export default class MDE extends SimpleEventEmitter { * @returns {string} O caminho convertido em expressão regular. */ const replasePathToRegex = (path: string) => { - path = path.replace(/\/((\)|(\$[^/\$]))/g, "/([^/]*)"); + path = path.replace(/\/((\*)|(\$[^/\$]*))/g, "/([^/]*)"); path = path.replace(/\[\*\]/g, "\\[(\\d+)\\]"); return path; }; @@ -745,9 +745,7 @@ export default class MDE extends SimpleEventEmitter { const saveJsonIntoFile = restructurerInstance.convertToJsonAndSaveToFile(dataFromMongoConvertedToJSON); - console.log(saveJsonIntoFile) - - return undefined; + return dataFromMongoConvertedToJSON as any; } /** @@ -760,7 +758,7 @@ export default class MDE extends SimpleEventEmitter { * @returns {Promise} */ - set(path: string, value: any, options: { assert_revision?: string } = {}): Result[] { +set(path: string, value: any, options: { assert_revision?: string } = {}): Result[] { const results: Result[] = []; if (path.trim() === "") { diff --git a/src/server/services/database/Node/NodeRestructureJson.ts b/src/server/services/database/Node/NodeRestructureJson.ts index f085270f..53bfe588 100644 --- a/src/server/services/database/Node/NodeRestructureJson.ts +++ b/src/server/services/database/Node/NodeRestructureJson.ts @@ -70,7 +70,7 @@ export class NoderestructureJson { const part = parts[i]; if (i === parts.length - 1) { - let key = part.replace(/_+/g, "").replace(/^+|+$/g, ""); + let key = part.replace(/__+/g, "_").replace(/^_+|_+$/g, ""); const { value } = content; if (!current[key]) { From a75ad81a17ed3d22da24078a7e9c6ecf3e1a3acb Mon Sep 17 00:00:00 2001 From: tiagoabranges Date: Fri, 15 Dec 2023 11:50:07 -0300 Subject: [PATCH 36/36] feat: add randomuuid --- src/server/services/database/MDE/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/server/services/database/MDE/index.ts b/src/server/services/database/MDE/index.ts index c2d555ab..3f045f7b 100644 --- a/src/server/services/database/MDE/index.ts +++ b/src/server/services/database/MDE/index.ts @@ -1,6 +1,7 @@ import { PathInfo, PathReference, SimpleEventEmitter, Utils } from "ivipbase-core"; import { NoderestructureJson } from "../Node/NodeRestructureJson"; import settings from "../../../../settings"; +import { randomUUID } from "crypto"; const { encodeString, isDate } = Utils;